composer.lock 439 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049
  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": "f3a46febfc931a863009278833fe7464",
  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/profile",
  6054. "version": "1.7.0",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://git.drupalcode.org/project/profile.git",
  6058. "reference": "8.x-1.7"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6063. "reference": "8.x-1.7",
  6064. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6065. },
  6066. "require": {
  6067. "drupal/core": "^9 || ^10",
  6068. "drupal/entity": "^1.0"
  6069. },
  6070. "require-dev": {
  6071. "drupal/token": "^1.7"
  6072. },
  6073. "type": "drupal-module",
  6074. "extra": {
  6075. "drupal": {
  6076. "version": "8.x-1.7",
  6077. "datestamp": "1665131792",
  6078. "security-coverage": {
  6079. "status": "covered",
  6080. "message": "Covered by Drupal's security advisory policy"
  6081. }
  6082. }
  6083. },
  6084. "notification-url": "https://packages.drupal.org/8/downloads",
  6085. "license": [
  6086. "GPL-2.0-or-later"
  6087. ],
  6088. "authors": [
  6089. {
  6090. "name": "bojanz",
  6091. "homepage": "https://www.drupal.org/user/86106"
  6092. },
  6093. {
  6094. "name": "daggerhart",
  6095. "homepage": "https://www.drupal.org/user/167806"
  6096. },
  6097. {
  6098. "name": "fago",
  6099. "homepage": "https://www.drupal.org/user/16747"
  6100. },
  6101. {
  6102. "name": "jsacksick",
  6103. "homepage": "https://www.drupal.org/user/972218"
  6104. },
  6105. {
  6106. "name": "mglaman",
  6107. "homepage": "https://www.drupal.org/user/2416470"
  6108. },
  6109. {
  6110. "name": "pcambra",
  6111. "homepage": "https://www.drupal.org/user/122101"
  6112. }
  6113. ],
  6114. "description": "Provides configurable user profiles.",
  6115. "homepage": "https://drupal.org/project/profile",
  6116. "support": {
  6117. "source": "https://git.drupalcode.org/project/profile"
  6118. }
  6119. },
  6120. {
  6121. "name": "drupal/redirect",
  6122. "version": "1.9.0",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://git.drupalcode.org/project/redirect.git",
  6126. "reference": "8.x-1.9"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  6131. "reference": "8.x-1.9",
  6132. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  6133. },
  6134. "require": {
  6135. "drupal/core": "^9.2 || ^10"
  6136. },
  6137. "type": "drupal-module",
  6138. "extra": {
  6139. "drupal": {
  6140. "version": "8.x-1.9",
  6141. "datestamp": "1693393506",
  6142. "security-coverage": {
  6143. "status": "covered",
  6144. "message": "Covered by Drupal's security advisory policy"
  6145. }
  6146. }
  6147. },
  6148. "notification-url": "https://packages.drupal.org/8/downloads",
  6149. "license": [
  6150. "GPL-2.0-or-later"
  6151. ],
  6152. "authors": [
  6153. {
  6154. "name": "Berdir",
  6155. "homepage": "https://www.drupal.org/user/214652"
  6156. },
  6157. {
  6158. "name": "Dave Reid",
  6159. "homepage": "https://www.drupal.org/user/53892"
  6160. },
  6161. {
  6162. "name": "Kristen Pol",
  6163. "homepage": "https://www.drupal.org/user/8389"
  6164. },
  6165. {
  6166. "name": "pifagor",
  6167. "homepage": "https://www.drupal.org/user/2375692"
  6168. }
  6169. ],
  6170. "description": "Allows users to redirect from old URLs to new URLs.",
  6171. "homepage": "https://www.drupal.org/project/redirect",
  6172. "support": {
  6173. "source": "https://git.drupalcode.org/project/redirect"
  6174. }
  6175. },
  6176. {
  6177. "name": "drupal/redis",
  6178. "version": "1.7.0",
  6179. "source": {
  6180. "type": "git",
  6181. "url": "https://git.drupalcode.org/project/redis.git",
  6182. "reference": "8.x-1.7"
  6183. },
  6184. "dist": {
  6185. "type": "zip",
  6186. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  6187. "reference": "8.x-1.7",
  6188. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  6189. },
  6190. "require": {
  6191. "drupal/core": "^9.3 || ^10"
  6192. },
  6193. "suggest": {
  6194. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6195. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6196. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6197. },
  6198. "type": "drupal-module",
  6199. "extra": {
  6200. "drupal": {
  6201. "version": "8.x-1.7",
  6202. "datestamp": "1686175620",
  6203. "security-coverage": {
  6204. "status": "covered",
  6205. "message": "Covered by Drupal's security advisory policy"
  6206. }
  6207. }
  6208. },
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Drupal\\redis\\": "src"
  6212. }
  6213. },
  6214. "notification-url": "https://packages.drupal.org/8/downloads",
  6215. "license": [
  6216. "GPL-2.0-or-later"
  6217. ],
  6218. "authors": [
  6219. {
  6220. "name": "Berdir",
  6221. "homepage": "https://www.drupal.org/user/214652"
  6222. },
  6223. {
  6224. "name": "greg.1.anderson",
  6225. "homepage": "https://www.drupal.org/user/438598"
  6226. },
  6227. {
  6228. "name": "kporras07",
  6229. "homepage": "https://www.drupal.org/user/1349780"
  6230. },
  6231. {
  6232. "name": "pounard",
  6233. "homepage": "https://www.drupal.org/user/240164"
  6234. }
  6235. ],
  6236. "description": "Integration of Drupal with the Redis key-value store.",
  6237. "homepage": "https://www.drupal.org/project/redis",
  6238. "support": {
  6239. "source": "https://git.drupalcode.org/project/redis"
  6240. }
  6241. },
  6242. {
  6243. "name": "drupal/search_api",
  6244. "version": "1.30.0",
  6245. "source": {
  6246. "type": "git",
  6247. "url": "https://git.drupalcode.org/project/search_api.git",
  6248. "reference": "8.x-1.30"
  6249. },
  6250. "dist": {
  6251. "type": "zip",
  6252. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  6253. "reference": "8.x-1.30",
  6254. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  6255. },
  6256. "require": {
  6257. "drupal/core": "^9.3 || ^10.0"
  6258. },
  6259. "conflict": {
  6260. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6261. },
  6262. "require-dev": {
  6263. "drupal/language_fallback_fix": "@dev",
  6264. "drupal/search_api_autocomplete": "@dev",
  6265. "drupal/search_api_db": "*"
  6266. },
  6267. "suggest": {
  6268. "drupal/facets": "Adds the ability to create faceted searches.",
  6269. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6270. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6271. },
  6272. "type": "drupal-module",
  6273. "extra": {
  6274. "drupal": {
  6275. "version": "8.x-1.30",
  6276. "datestamp": "1697366291",
  6277. "security-coverage": {
  6278. "status": "covered",
  6279. "message": "Covered by Drupal's security advisory policy"
  6280. }
  6281. },
  6282. "drush": {
  6283. "services": {
  6284. "drush.services.yml": "^9 || ^10 || ^11"
  6285. }
  6286. }
  6287. },
  6288. "notification-url": "https://packages.drupal.org/8/downloads",
  6289. "license": [
  6290. "GPL-2.0-or-later"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "Thomas Seidl",
  6295. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6296. },
  6297. {
  6298. "name": "Nick Veenhof",
  6299. "homepage": "https://www.drupal.org/u/nick_vh"
  6300. },
  6301. {
  6302. "name": "See other contributors",
  6303. "homepage": "https://www.drupal.org/node/790418/committers"
  6304. }
  6305. ],
  6306. "description": "Provides a generic framework for modules offering search capabilities.",
  6307. "homepage": "https://www.drupal.org/project/search_api",
  6308. "support": {
  6309. "source": "https://git.drupalcode.org/project/search_api",
  6310. "issues": "https://www.drupal.org/project/issues/search_api",
  6311. "irc": "irc://irc.freenode.org/drupal-search-api"
  6312. }
  6313. },
  6314. {
  6315. "name": "drupal/search_api_db",
  6316. "version": "1.30.0",
  6317. "require": {
  6318. "drupal/core": "^9.2 || ^10.0",
  6319. "drupal/search_api": "*"
  6320. },
  6321. "type": "metapackage",
  6322. "extra": {
  6323. "drupal": {
  6324. "version": "8.x-1.30",
  6325. "datestamp": "1697366291",
  6326. "security-coverage": {
  6327. "status": "covered",
  6328. "message": "Covered by Drupal's security advisory policy"
  6329. }
  6330. }
  6331. },
  6332. "notification-url": "https://packages.drupal.org/8/downloads",
  6333. "license": [
  6334. "GPL-2.0-or-later"
  6335. ],
  6336. "authors": [
  6337. {
  6338. "name": "borisson_",
  6339. "homepage": "https://www.drupal.org/user/2393360"
  6340. },
  6341. {
  6342. "name": "drunken monkey",
  6343. "homepage": "https://www.drupal.org/user/205582"
  6344. },
  6345. {
  6346. "name": "Nick_vh",
  6347. "homepage": "https://www.drupal.org/user/122682"
  6348. }
  6349. ],
  6350. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6351. "homepage": "https://www.drupal.org/project/search_api",
  6352. "support": {
  6353. "source": "https://git.drupalcode.org/project/search_api"
  6354. }
  6355. },
  6356. {
  6357. "name": "drupal/seven",
  6358. "version": "1.0.0",
  6359. "source": {
  6360. "type": "git",
  6361. "url": "https://git.drupalcode.org/project/seven.git",
  6362. "reference": "1.0.0"
  6363. },
  6364. "dist": {
  6365. "type": "zip",
  6366. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6367. "reference": "1.0.0",
  6368. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6369. },
  6370. "require": {
  6371. "drupal/core": "^9 || ^10"
  6372. },
  6373. "type": "drupal-theme",
  6374. "extra": {
  6375. "drupal": {
  6376. "version": "1.0.0",
  6377. "datestamp": "1683652106",
  6378. "security-coverage": {
  6379. "status": "covered",
  6380. "message": "Covered by Drupal's security advisory policy"
  6381. }
  6382. }
  6383. },
  6384. "notification-url": "https://packages.drupal.org/8/downloads",
  6385. "license": [
  6386. "GPL-2.0-or-later"
  6387. ],
  6388. "authors": [
  6389. {
  6390. "name": "bnjmnm",
  6391. "homepage": "https://www.drupal.org/user/2369194"
  6392. },
  6393. {
  6394. "name": "lauriii",
  6395. "homepage": "https://www.drupal.org/user/1078742"
  6396. },
  6397. {
  6398. "name": "mcrittenden",
  6399. "homepage": "https://www.drupal.org/user/420631"
  6400. },
  6401. {
  6402. "name": "mrfelton",
  6403. "homepage": "https://www.drupal.org/user/305669"
  6404. },
  6405. {
  6406. "name": "TravisCarden",
  6407. "homepage": "https://www.drupal.org/user/236758"
  6408. }
  6409. ],
  6410. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6411. "homepage": "https://www.drupal.org/project/seven",
  6412. "support": {
  6413. "source": "https://git.drupalcode.org/project/seven"
  6414. }
  6415. },
  6416. {
  6417. "name": "drupal/smart_trim",
  6418. "version": "2.1.0",
  6419. "source": {
  6420. "type": "git",
  6421. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6422. "reference": "2.1.0"
  6423. },
  6424. "dist": {
  6425. "type": "zip",
  6426. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  6427. "reference": "2.1.0",
  6428. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  6429. },
  6430. "require": {
  6431. "drupal/core": "^8 || ^9 || ^10",
  6432. "drupal/token": "^1.0",
  6433. "php": ">=7.4.0"
  6434. },
  6435. "require-dev": {
  6436. "drupal/token_filter": "^2.0"
  6437. },
  6438. "type": "drupal-module",
  6439. "extra": {
  6440. "drupal": {
  6441. "version": "2.1.0",
  6442. "datestamp": "1686152417",
  6443. "security-coverage": {
  6444. "status": "covered",
  6445. "message": "Covered by Drupal's security advisory policy"
  6446. }
  6447. }
  6448. },
  6449. "notification-url": "https://packages.drupal.org/8/downloads",
  6450. "license": [
  6451. "GPL-2.0-or-later"
  6452. ],
  6453. "authors": [
  6454. {
  6455. "name": "Mark Casias (markie)",
  6456. "homepage": "https://www.drupal.org/u/markie",
  6457. "role": "Maintainer"
  6458. },
  6459. {
  6460. "name": "AmyJune Hineline (volkswagenchick)",
  6461. "homepage": "https://www.drupal.org/u/volkswagenchick",
  6462. "role": "Maintainer"
  6463. },
  6464. {
  6465. "name": "Michael Anello (ultimike)",
  6466. "homepage": "https://www.drupal.org/u/ultimike",
  6467. "role": "Maintainer"
  6468. }
  6469. ],
  6470. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6471. "homepage": "https://drupal.org/project/smart_trim",
  6472. "support": {
  6473. "source": "https://git.drupalcode.org/project/smart_trim",
  6474. "issues": "https://drupal.org/project/issues/smart_trim"
  6475. }
  6476. },
  6477. {
  6478. "name": "drupal/smtp",
  6479. "version": "1.2.0",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://git.drupalcode.org/project/smtp.git",
  6483. "reference": "8.x-1.2"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  6488. "reference": "8.x-1.2",
  6489. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  6490. },
  6491. "require": {
  6492. "drupal/core": ">=8.9 <11",
  6493. "phpmailer/phpmailer": "^6.1.7"
  6494. },
  6495. "suggest": {
  6496. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  6497. },
  6498. "type": "drupal-module",
  6499. "extra": {
  6500. "drupal": {
  6501. "version": "8.x-1.2",
  6502. "datestamp": "1667416337",
  6503. "security-coverage": {
  6504. "status": "covered",
  6505. "message": "Covered by Drupal's security advisory policy"
  6506. }
  6507. },
  6508. "branch-alias": {
  6509. "dev-8.x-1.x": "1.x-dev"
  6510. }
  6511. },
  6512. "notification-url": "https://packages.drupal.org/8/downloads",
  6513. "license": [
  6514. "GPL-2.0-or-later"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "japerry",
  6519. "homepage": "https://www.drupal.org/user/45640"
  6520. },
  6521. {
  6522. "name": "joseph.olstad",
  6523. "homepage": "https://www.drupal.org/user/1321830"
  6524. },
  6525. {
  6526. "name": "josesanmartin",
  6527. "homepage": "https://www.drupal.org/user/72012"
  6528. },
  6529. {
  6530. "name": "LukeLast",
  6531. "homepage": "https://www.drupal.org/user/30151"
  6532. },
  6533. {
  6534. "name": "oadaeh",
  6535. "homepage": "https://www.drupal.org/user/4649"
  6536. },
  6537. {
  6538. "name": "sadashiv",
  6539. "homepage": "https://www.drupal.org/user/1773304"
  6540. },
  6541. {
  6542. "name": "wundo",
  6543. "homepage": "https://www.drupal.org/user/25523"
  6544. },
  6545. {
  6546. "name": "yettyn",
  6547. "homepage": "https://www.drupal.org/user/93281"
  6548. }
  6549. ],
  6550. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6551. "homepage": "https://www.drupal.org/project/smtp",
  6552. "support": {
  6553. "source": "https://git.drupalcode.org/project/smtp",
  6554. "issues": "https://www.drupal.org/project/issues/smtp"
  6555. }
  6556. },
  6557. {
  6558. "name": "drupal/sophron",
  6559. "version": "2.0.1",
  6560. "source": {
  6561. "type": "git",
  6562. "url": "https://git.drupalcode.org/project/sophron.git",
  6563. "reference": "2.0.1"
  6564. },
  6565. "dist": {
  6566. "type": "zip",
  6567. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  6568. "reference": "2.0.1",
  6569. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  6570. },
  6571. "require": {
  6572. "drupal/core": "^10",
  6573. "fileeye/mimemap": "^2.0.1"
  6574. },
  6575. "type": "drupal-module",
  6576. "extra": {
  6577. "drupal": {
  6578. "version": "2.0.1",
  6579. "datestamp": "1676319965",
  6580. "security-coverage": {
  6581. "status": "covered",
  6582. "message": "Covered by Drupal's security advisory policy"
  6583. }
  6584. }
  6585. },
  6586. "autoload": {
  6587. "psr-4": {
  6588. "Drupal\\sophron\\": "src/"
  6589. }
  6590. },
  6591. "notification-url": "https://packages.drupal.org/8/downloads",
  6592. "license": [
  6593. "GPL-2.0-or-later"
  6594. ],
  6595. "authors": [
  6596. {
  6597. "name": "mondrake",
  6598. "homepage": "https://www.drupal.org/user/1307444"
  6599. }
  6600. ],
  6601. "description": "Provides an extensive MIME types management API",
  6602. "homepage": "https://www.drupal.org/project/sophron",
  6603. "support": {
  6604. "source": "https://git.drupalcode.org/project/sophron"
  6605. }
  6606. },
  6607. {
  6608. "name": "drupal/synonyms",
  6609. "version": "2.1.2",
  6610. "source": {
  6611. "type": "git",
  6612. "url": "https://git.drupalcode.org/project/synonyms.git",
  6613. "reference": "2.1.2"
  6614. },
  6615. "dist": {
  6616. "type": "zip",
  6617. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  6618. "reference": "2.1.2",
  6619. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  6620. },
  6621. "require": {
  6622. "drupal/core": "^9 || ^10"
  6623. },
  6624. "require-dev": {
  6625. "drupal/synonyms_list_field": "*"
  6626. },
  6627. "type": "drupal-module",
  6628. "extra": {
  6629. "drupal": {
  6630. "version": "2.1.2",
  6631. "datestamp": "1665785027",
  6632. "security-coverage": {
  6633. "status": "covered",
  6634. "message": "Covered by Drupal's security advisory policy"
  6635. }
  6636. }
  6637. },
  6638. "notification-url": "https://packages.drupal.org/8/downloads",
  6639. "license": [
  6640. "GPL-2.0-or-later"
  6641. ],
  6642. "authors": [
  6643. {
  6644. "name": "Bojan Zivanovic",
  6645. "homepage": "https://www.drupal.org/u/bojanz",
  6646. "role": "Author and D5, D6 and D7 versions developer."
  6647. },
  6648. {
  6649. "name": "Alex Trosenko",
  6650. "homepage": "https://www.drupal.org/u/bucefal91",
  6651. "role": "D7 and D8 versions developer."
  6652. },
  6653. {
  6654. "name": "Duro Arezina",
  6655. "homepage": "https://www.drupal.org/u/devad",
  6656. "role": "D8, D9 and D10 versions maintenance"
  6657. },
  6658. {
  6659. "name": "See other contributors",
  6660. "homepage": "https://www.drupal.org/node/148775/committers"
  6661. }
  6662. ],
  6663. "description": "Provides synonyms feature for all entities.",
  6664. "homepage": "https://www.drupal.org/project/synonyms",
  6665. "support": {
  6666. "source": "https://git.drupalcode.org/project/synonyms",
  6667. "issues": "https://www.drupal.org/project/issues/synonyms"
  6668. }
  6669. },
  6670. {
  6671. "name": "drupal/token",
  6672. "version": "1.13.0",
  6673. "source": {
  6674. "type": "git",
  6675. "url": "https://git.drupalcode.org/project/token.git",
  6676. "reference": "8.x-1.13"
  6677. },
  6678. "dist": {
  6679. "type": "zip",
  6680. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  6681. "reference": "8.x-1.13",
  6682. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  6683. },
  6684. "require": {
  6685. "drupal/core": "^9.2 || ^10"
  6686. },
  6687. "type": "drupal-module",
  6688. "extra": {
  6689. "drupal": {
  6690. "version": "8.x-1.13",
  6691. "datestamp": "1697885927",
  6692. "security-coverage": {
  6693. "status": "covered",
  6694. "message": "Covered by Drupal's security advisory policy"
  6695. }
  6696. },
  6697. "drush": {
  6698. "services": {
  6699. "drush.services.yml": ">=9"
  6700. }
  6701. }
  6702. },
  6703. "notification-url": "https://packages.drupal.org/8/downloads",
  6704. "license": [
  6705. "GPL-2.0-or-later"
  6706. ],
  6707. "authors": [
  6708. {
  6709. "name": "Berdir",
  6710. "homepage": "https://www.drupal.org/user/214652"
  6711. },
  6712. {
  6713. "name": "Dave Reid",
  6714. "homepage": "https://www.drupal.org/user/53892"
  6715. },
  6716. {
  6717. "name": "eaton",
  6718. "homepage": "https://www.drupal.org/user/16496"
  6719. },
  6720. {
  6721. "name": "fago",
  6722. "homepage": "https://www.drupal.org/user/16747"
  6723. },
  6724. {
  6725. "name": "greggles",
  6726. "homepage": "https://www.drupal.org/user/36762"
  6727. },
  6728. {
  6729. "name": "mikeryan",
  6730. "homepage": "https://www.drupal.org/user/4420"
  6731. }
  6732. ],
  6733. "description": "Provides a user interface for the Token API, some missing core tokens.",
  6734. "homepage": "https://www.drupal.org/project/token",
  6735. "support": {
  6736. "source": "https://git.drupalcode.org/project/token"
  6737. }
  6738. },
  6739. {
  6740. "name": "drupal/translation_views",
  6741. "version": "1.0.0-alpha11",
  6742. "source": {
  6743. "type": "git",
  6744. "url": "https://git.drupalcode.org/project/translation_views.git",
  6745. "reference": "8.x-1.0-alpha11"
  6746. },
  6747. "dist": {
  6748. "type": "zip",
  6749. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  6750. "reference": "8.x-1.0-alpha11",
  6751. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  6752. },
  6753. "require": {
  6754. "drupal/core": "^8.8 || ^9 || ^10"
  6755. },
  6756. "require-dev": {
  6757. "drupal/translators_content": "^1.0@alpha"
  6758. },
  6759. "type": "drupal-module",
  6760. "extra": {
  6761. "drupal": {
  6762. "version": "8.x-1.0-alpha11",
  6763. "datestamp": "1679660668",
  6764. "security-coverage": {
  6765. "status": "not-covered",
  6766. "message": "Project has not opted into security advisory coverage!"
  6767. }
  6768. }
  6769. },
  6770. "notification-url": "https://packages.drupal.org/8/downloads",
  6771. "license": [
  6772. "GPL-2.0-or-later"
  6773. ],
  6774. "authors": [
  6775. {
  6776. "name": "matsbla",
  6777. "homepage": "https://www.drupal.org/user/2325394"
  6778. },
  6779. {
  6780. "name": "vlad.dancer",
  6781. "homepage": "https://www.drupal.org/user/903844"
  6782. }
  6783. ],
  6784. "description": "Create customized lists and queries of translations from your database.",
  6785. "homepage": "https://www.drupal.org/project/translation_views",
  6786. "support": {
  6787. "source": "https://git.drupalcode.org/project/translation_views"
  6788. }
  6789. },
  6790. {
  6791. "name": "drupal/ultimate_cron",
  6792. "version": "2.0.0-alpha6",
  6793. "source": {
  6794. "type": "git",
  6795. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  6796. "reference": "8.x-2.0-alpha6"
  6797. },
  6798. "dist": {
  6799. "type": "zip",
  6800. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  6801. "reference": "8.x-2.0-alpha6",
  6802. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  6803. },
  6804. "require": {
  6805. "drupal/core": "^9 || ^10"
  6806. },
  6807. "type": "drupal-module",
  6808. "extra": {
  6809. "drupal": {
  6810. "version": "8.x-2.0-alpha6",
  6811. "datestamp": "1666471448",
  6812. "security-coverage": {
  6813. "status": "not-covered",
  6814. "message": "Alpha releases are not covered by Drupal security advisories."
  6815. }
  6816. },
  6817. "drush": {
  6818. "services": {
  6819. "drush.services.yml": "^9 || ^10 || ^11"
  6820. }
  6821. }
  6822. },
  6823. "notification-url": "https://packages.drupal.org/8/downloads",
  6824. "license": [
  6825. "GPL-2.0+"
  6826. ],
  6827. "authors": [
  6828. {
  6829. "name": "arnested",
  6830. "homepage": "https://www.drupal.org/user/245635"
  6831. },
  6832. {
  6833. "name": "Berdir",
  6834. "homepage": "https://www.drupal.org/user/214652"
  6835. },
  6836. {
  6837. "name": "Dane Powell",
  6838. "homepage": "https://www.drupal.org/user/339326"
  6839. },
  6840. {
  6841. "name": "gielfeldt",
  6842. "homepage": "https://www.drupal.org/user/366993"
  6843. },
  6844. {
  6845. "name": "miro_dietiker",
  6846. "homepage": "https://www.drupal.org/user/227761"
  6847. },
  6848. {
  6849. "name": "Primsi",
  6850. "homepage": "https://www.drupal.org/user/282629"
  6851. }
  6852. ],
  6853. "description": "Ultimate cron",
  6854. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6855. "support": {
  6856. "source": "https://git.drupalcode.org/project/ultimate_cron"
  6857. }
  6858. },
  6859. {
  6860. "name": "drupal/video_embed_field",
  6861. "version": "2.5.0",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  6865. "reference": "8.x-2.5"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  6870. "reference": "8.x-2.5",
  6871. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  6872. },
  6873. "require": {
  6874. "drupal/core": "^9.2 || ^10"
  6875. },
  6876. "require-dev": {
  6877. "drupal/ckeditor": "^1",
  6878. "drupal/colorbox": "^2",
  6879. "drupal/video_embed_media": "*"
  6880. },
  6881. "type": "drupal-module",
  6882. "extra": {
  6883. "drupal": {
  6884. "version": "8.x-2.5",
  6885. "datestamp": "1671413311",
  6886. "security-coverage": {
  6887. "status": "covered",
  6888. "message": "Covered by Drupal's security advisory policy"
  6889. }
  6890. }
  6891. },
  6892. "notification-url": "https://packages.drupal.org/8/downloads",
  6893. "license": [
  6894. "GPL-2.0-or-later"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "abhinesh",
  6899. "homepage": "https://www.drupal.org/user/3645979"
  6900. },
  6901. {
  6902. "name": "jec006",
  6903. "homepage": "https://www.drupal.org/user/855980"
  6904. },
  6905. {
  6906. "name": "plopesc",
  6907. "homepage": "https://www.drupal.org/user/282415"
  6908. },
  6909. {
  6910. "name": "Sam152",
  6911. "homepage": "https://www.drupal.org/user/1485048"
  6912. }
  6913. ],
  6914. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6915. "homepage": "https://www.drupal.org/project/video_embed_field",
  6916. "support": {
  6917. "source": "https://git.drupalcode.org/project/video_embed_field"
  6918. }
  6919. },
  6920. {
  6921. "name": "drupal/views_bulk_edit",
  6922. "version": "2.9.0",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  6926. "reference": "8.x-2.9"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  6931. "reference": "8.x-2.9",
  6932. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  6933. },
  6934. "require": {
  6935. "drupal/core": "^9.4 || ^10"
  6936. },
  6937. "require-dev": {
  6938. "drupal/views_bulk_operations": "~4.2.4"
  6939. },
  6940. "suggest": {
  6941. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  6942. },
  6943. "type": "drupal-module",
  6944. "extra": {
  6945. "drupal": {
  6946. "version": "8.x-2.9",
  6947. "datestamp": "1690222256",
  6948. "security-coverage": {
  6949. "status": "covered",
  6950. "message": "Covered by Drupal's security advisory policy"
  6951. }
  6952. }
  6953. },
  6954. "notification-url": "https://packages.drupal.org/8/downloads",
  6955. "license": [
  6956. "GPL-2.0+"
  6957. ],
  6958. "authors": [
  6959. {
  6960. "name": "Marcin Grabias",
  6961. "homepage": "https://www.drupal.org/u/graber"
  6962. },
  6963. {
  6964. "name": "Graber",
  6965. "homepage": "https://www.drupal.org/user/1599440"
  6966. },
  6967. {
  6968. "name": "joseph.olstad",
  6969. "homepage": "https://www.drupal.org/user/1321830"
  6970. }
  6971. ],
  6972. "description": "Allows bulk edition of entity field values.",
  6973. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6974. "support": {
  6975. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  6976. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6977. }
  6978. },
  6979. {
  6980. "name": "drupal/views_bulk_operations",
  6981. "version": "4.2.5",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  6985. "reference": "4.2.5"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  6990. "reference": "4.2.5",
  6991. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  6992. },
  6993. "require": {
  6994. "drupal/core": "^9.4 || ^10",
  6995. "php": ">=7.4.0"
  6996. },
  6997. "require-dev": {
  6998. "drush/drush": "^11"
  6999. },
  7000. "suggest": {
  7001. "drush/drush": "^10 || ^11"
  7002. },
  7003. "type": "drupal-module",
  7004. "extra": {
  7005. "drupal": {
  7006. "version": "4.2.5",
  7007. "datestamp": "1691066184",
  7008. "security-coverage": {
  7009. "status": "covered",
  7010. "message": "Covered by Drupal's security advisory policy"
  7011. }
  7012. },
  7013. "drush": {
  7014. "services": {
  7015. "drush.services.yml": "^10 || ^11"
  7016. }
  7017. }
  7018. },
  7019. "notification-url": "https://packages.drupal.org/8/downloads",
  7020. "license": [
  7021. "GPL-2.0-or-later"
  7022. ],
  7023. "authors": [
  7024. {
  7025. "name": "Marcin Grabias",
  7026. "homepage": "https://www.drupal.org/u/graber"
  7027. },
  7028. {
  7029. "name": "Graber",
  7030. "homepage": "https://www.drupal.org/user/1599440"
  7031. },
  7032. {
  7033. "name": "joelpittet",
  7034. "homepage": "https://www.drupal.org/user/160302"
  7035. }
  7036. ],
  7037. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7038. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7039. "support": {
  7040. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7041. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7042. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7043. }
  7044. },
  7045. {
  7046. "name": "drush/drush",
  7047. "version": "11.6.0",
  7048. "source": {
  7049. "type": "git",
  7050. "url": "https://github.com/drush-ops/drush.git",
  7051. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  7052. },
  7053. "dist": {
  7054. "type": "zip",
  7055. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7056. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7057. "shasum": ""
  7058. },
  7059. "require": {
  7060. "chi-teck/drupal-code-generator": "^2.4",
  7061. "composer/semver": "^1.4 || ^3",
  7062. "consolidation/annotated-command": "^4.8.2",
  7063. "consolidation/config": "^2",
  7064. "consolidation/filter-via-dot-access-data": "^2",
  7065. "consolidation/robo": "^3.0.9 || ^4.0.1",
  7066. "consolidation/site-alias": "^3.1.6 || ^4",
  7067. "consolidation/site-process": "^4.1.3 || ^5",
  7068. "enlightn/security-checker": "^1",
  7069. "ext-dom": "*",
  7070. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7071. "league/container": "^3.4 || ^4",
  7072. "php": ">=7.4",
  7073. "psy/psysh": "~0.11",
  7074. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  7075. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  7076. "symfony/finder": "^4.0 || ^5 || ^6",
  7077. "symfony/polyfill-php80": "^1.23",
  7078. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  7079. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  7080. "webflo/drupal-finder": "^1.2"
  7081. },
  7082. "conflict": {
  7083. "drupal/core": "< 9.2",
  7084. "drupal/migrate_run": "*",
  7085. "drupal/migrate_tools": "<= 5"
  7086. },
  7087. "require-dev": {
  7088. "composer/installers": "^1.7",
  7089. "cweagans/composer-patches": "~1.0",
  7090. "david-garcia/phpwhois": "4.3.0",
  7091. "drupal/core-recommended": "^9 || ^10",
  7092. "drupal/semver_example": "2.3.0",
  7093. "phpunit/phpunit": ">=7.5.20",
  7094. "rector/rector": "^0.12",
  7095. "squizlabs/php_codesniffer": "^3.6",
  7096. "vlucas/phpdotenv": "^2.4",
  7097. "yoast/phpunit-polyfills": "^0.2.0"
  7098. },
  7099. "bin": [
  7100. "drush"
  7101. ],
  7102. "type": "library",
  7103. "extra": {
  7104. "installer-paths": {
  7105. "sut/core": [
  7106. "type:drupal-core"
  7107. ],
  7108. "sut/libraries/{$name}": [
  7109. "type:drupal-library"
  7110. ],
  7111. "sut/modules/unish/{$name}": [
  7112. "drupal/devel"
  7113. ],
  7114. "sut/themes/unish/{$name}": [
  7115. "drupal/empty_theme"
  7116. ],
  7117. "sut/modules/contrib/{$name}": [
  7118. "type:drupal-module"
  7119. ],
  7120. "sut/profiles/contrib/{$name}": [
  7121. "type:drupal-profile"
  7122. ],
  7123. "sut/themes/contrib/{$name}": [
  7124. "type:drupal-theme"
  7125. ],
  7126. "sut/drush/contrib/{$name}": [
  7127. "type:drupal-drush"
  7128. ]
  7129. }
  7130. },
  7131. "autoload": {
  7132. "psr-4": {
  7133. "Drush\\": "src/"
  7134. }
  7135. },
  7136. "notification-url": "https://packagist.org/downloads/",
  7137. "license": [
  7138. "GPL-2.0-or-later"
  7139. ],
  7140. "authors": [
  7141. {
  7142. "name": "Moshe Weitzman",
  7143. "email": "weitzman@tejasa.com"
  7144. },
  7145. {
  7146. "name": "Owen Barton",
  7147. "email": "drupal@owenbarton.com"
  7148. },
  7149. {
  7150. "name": "Greg Anderson",
  7151. "email": "greg.1.anderson@greenknowe.org"
  7152. },
  7153. {
  7154. "name": "Jonathan Araña Cruz",
  7155. "email": "jonhattan@faita.net"
  7156. },
  7157. {
  7158. "name": "Jonathan Hedstrom",
  7159. "email": "jhedstrom@gmail.com"
  7160. },
  7161. {
  7162. "name": "Christopher Gervais",
  7163. "email": "chris@ergonlogic.com"
  7164. },
  7165. {
  7166. "name": "Dave Reid",
  7167. "email": "dave@davereid.net"
  7168. },
  7169. {
  7170. "name": "Damian Lee",
  7171. "email": "damiankloip@googlemail.com"
  7172. }
  7173. ],
  7174. "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.",
  7175. "homepage": "http://www.drush.org",
  7176. "support": {
  7177. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  7178. "issues": "https://github.com/drush-ops/drush/issues",
  7179. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  7180. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  7181. },
  7182. "funding": [
  7183. {
  7184. "url": "https://github.com/weitzman",
  7185. "type": "github"
  7186. }
  7187. ],
  7188. "time": "2023-06-06T18:46:18+00:00"
  7189. },
  7190. {
  7191. "name": "egulias/email-validator",
  7192. "version": "4.0.2",
  7193. "source": {
  7194. "type": "git",
  7195. "url": "https://github.com/egulias/EmailValidator.git",
  7196. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  7197. },
  7198. "dist": {
  7199. "type": "zip",
  7200. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  7201. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  7202. "shasum": ""
  7203. },
  7204. "require": {
  7205. "doctrine/lexer": "^2.0 || ^3.0",
  7206. "php": ">=8.1",
  7207. "symfony/polyfill-intl-idn": "^1.26"
  7208. },
  7209. "require-dev": {
  7210. "phpunit/phpunit": "^10.2",
  7211. "vimeo/psalm": "^5.12"
  7212. },
  7213. "suggest": {
  7214. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7215. },
  7216. "type": "library",
  7217. "extra": {
  7218. "branch-alias": {
  7219. "dev-master": "4.0.x-dev"
  7220. }
  7221. },
  7222. "autoload": {
  7223. "psr-4": {
  7224. "Egulias\\EmailValidator\\": "src"
  7225. }
  7226. },
  7227. "notification-url": "https://packagist.org/downloads/",
  7228. "license": [
  7229. "MIT"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "Eduardo Gulias Davis"
  7234. }
  7235. ],
  7236. "description": "A library for validating emails against several RFCs",
  7237. "homepage": "https://github.com/egulias/EmailValidator",
  7238. "keywords": [
  7239. "email",
  7240. "emailvalidation",
  7241. "emailvalidator",
  7242. "validation",
  7243. "validator"
  7244. ],
  7245. "support": {
  7246. "issues": "https://github.com/egulias/EmailValidator/issues",
  7247. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  7248. },
  7249. "funding": [
  7250. {
  7251. "url": "https://github.com/egulias",
  7252. "type": "github"
  7253. }
  7254. ],
  7255. "time": "2023-10-06T06:47:41+00:00"
  7256. },
  7257. {
  7258. "name": "enlightn/security-checker",
  7259. "version": "v1.10.0",
  7260. "source": {
  7261. "type": "git",
  7262. "url": "https://github.com/enlightn/security-checker.git",
  7263. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  7264. },
  7265. "dist": {
  7266. "type": "zip",
  7267. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  7268. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  7269. "shasum": ""
  7270. },
  7271. "require": {
  7272. "ext-json": "*",
  7273. "guzzlehttp/guzzle": "^6.3|^7.0",
  7274. "php": ">=5.6",
  7275. "symfony/console": "^3.4|^4|^5|^6",
  7276. "symfony/finder": "^3|^4|^5|^6",
  7277. "symfony/process": "^3.4|^4|^5|^6",
  7278. "symfony/yaml": "^3.4|^4|^5|^6"
  7279. },
  7280. "require-dev": {
  7281. "ext-zip": "*",
  7282. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  7283. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  7284. },
  7285. "bin": [
  7286. "security-checker"
  7287. ],
  7288. "type": "library",
  7289. "autoload": {
  7290. "psr-4": {
  7291. "Enlightn\\SecurityChecker\\": "src"
  7292. }
  7293. },
  7294. "notification-url": "https://packagist.org/downloads/",
  7295. "license": [
  7296. "MIT"
  7297. ],
  7298. "authors": [
  7299. {
  7300. "name": "Paras Malhotra",
  7301. "email": "paras@laravel-enlightn.com"
  7302. },
  7303. {
  7304. "name": "Miguel Piedrafita",
  7305. "email": "soy@miguelpiedrafita.com"
  7306. }
  7307. ],
  7308. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  7309. "keywords": [
  7310. "package",
  7311. "php",
  7312. "scanner",
  7313. "security",
  7314. "security advisories",
  7315. "vulnerability scanner"
  7316. ],
  7317. "support": {
  7318. "issues": "https://github.com/enlightn/security-checker/issues",
  7319. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  7320. },
  7321. "time": "2022-02-21T22:40:16+00:00"
  7322. },
  7323. {
  7324. "name": "fileeye/mimemap",
  7325. "version": "2.0.2",
  7326. "source": {
  7327. "type": "git",
  7328. "url": "https://github.com/FileEye/MimeMap.git",
  7329. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  7330. },
  7331. "dist": {
  7332. "type": "zip",
  7333. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7334. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7335. "shasum": ""
  7336. },
  7337. "require": {
  7338. "php": ">=7.3"
  7339. },
  7340. "require-dev": {
  7341. "composer-runtime-api": "^2.0.0",
  7342. "phpstan/phpstan": "^1.2",
  7343. "phpunit/phpunit": "^9 | ^10",
  7344. "sebastian/comparator": ">=4",
  7345. "sebastian/diff": ">=4",
  7346. "squizlabs/php_codesniffer": ">=3.6",
  7347. "symfony/console": ">=5.4",
  7348. "symfony/filesystem": ">=5.4",
  7349. "symfony/var-dumper": ">=5.4",
  7350. "symfony/yaml": ">=5.4",
  7351. "vimeo/psalm": "^4.23 | ^5"
  7352. },
  7353. "bin": [
  7354. "bin/fileeye-mimemap"
  7355. ],
  7356. "type": "library",
  7357. "extra": {
  7358. "branch-alias": {
  7359. "dev-master": "2.x-dev"
  7360. }
  7361. },
  7362. "autoload": {
  7363. "psr-4": {
  7364. "FileEye\\MimeMap\\": "src/"
  7365. }
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "LGPL-3.0-or-later"
  7370. ],
  7371. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7372. "homepage": "https://github.com/FileEye/MimeMap",
  7373. "keywords": [
  7374. "mime",
  7375. "mime-database",
  7376. "mime-parser",
  7377. "mime-type"
  7378. ],
  7379. "support": {
  7380. "issues": "https://github.com/FileEye/MimeMap/issues",
  7381. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  7382. },
  7383. "time": "2023-08-29T16:20:26+00:00"
  7384. },
  7385. {
  7386. "name": "fileeye/pel",
  7387. "version": "0.9.20",
  7388. "source": {
  7389. "type": "git",
  7390. "url": "https://github.com/FileEye/pel.git",
  7391. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  7392. },
  7393. "dist": {
  7394. "type": "zip",
  7395. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7396. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7397. "shasum": ""
  7398. },
  7399. "require": {
  7400. "php": ">=7.1.0"
  7401. },
  7402. "require-dev": {
  7403. "ext-exif": "*",
  7404. "ext-gd": "*",
  7405. "php-coveralls/php-coveralls": ">2.4",
  7406. "phpstan/phpstan": "^1.4",
  7407. "squizlabs/php_codesniffer": ">3.5",
  7408. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  7409. },
  7410. "type": "library",
  7411. "autoload": {
  7412. "psr-4": {
  7413. "lsolesen\\pel\\": "src/"
  7414. }
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "GPL-2.0"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Lars Olesen",
  7423. "email": "lars@intraface.dk",
  7424. "homepage": "http://intraface.dk",
  7425. "role": "Developer"
  7426. },
  7427. {
  7428. "name": "Martin Geisler",
  7429. "email": "martin@geisler.net",
  7430. "homepage": "http://geisler.net",
  7431. "role": "Developer"
  7432. }
  7433. ],
  7434. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7435. "homepage": "https://github.com/FileEye/pel",
  7436. "keywords": [
  7437. "exif",
  7438. "image"
  7439. ],
  7440. "support": {
  7441. "issues": "https://github.com/FileEye/pel/issues",
  7442. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  7443. },
  7444. "time": "2023-06-20T07:10:35+00:00"
  7445. },
  7446. {
  7447. "name": "grasmash/expander",
  7448. "version": "3.0.0",
  7449. "source": {
  7450. "type": "git",
  7451. "url": "https://github.com/grasmash/expander.git",
  7452. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  7453. },
  7454. "dist": {
  7455. "type": "zip",
  7456. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  7457. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  7458. "shasum": ""
  7459. },
  7460. "require": {
  7461. "dflydev/dot-access-data": "^3.0.0",
  7462. "php": ">=8.0",
  7463. "psr/log": "^2 | ^3"
  7464. },
  7465. "require-dev": {
  7466. "greg-1-anderson/composer-test-scenarios": "^1",
  7467. "php-coveralls/php-coveralls": "^2.5",
  7468. "phpunit/phpunit": "^9",
  7469. "squizlabs/php_codesniffer": "^3.3"
  7470. },
  7471. "type": "library",
  7472. "extra": {
  7473. "branch-alias": {
  7474. "dev-master": "1.x-dev"
  7475. }
  7476. },
  7477. "autoload": {
  7478. "psr-4": {
  7479. "Grasmash\\Expander\\": "src/"
  7480. }
  7481. },
  7482. "notification-url": "https://packagist.org/downloads/",
  7483. "license": [
  7484. "MIT"
  7485. ],
  7486. "authors": [
  7487. {
  7488. "name": "Matthew Grasmick"
  7489. }
  7490. ],
  7491. "description": "Expands internal property references in PHP arrays file.",
  7492. "support": {
  7493. "issues": "https://github.com/grasmash/expander/issues",
  7494. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  7495. },
  7496. "time": "2022-05-10T13:14:49+00:00"
  7497. },
  7498. {
  7499. "name": "guzzlehttp/guzzle",
  7500. "version": "7.7.1",
  7501. "source": {
  7502. "type": "git",
  7503. "url": "https://github.com/guzzle/guzzle.git",
  7504. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  7505. },
  7506. "dist": {
  7507. "type": "zip",
  7508. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  7509. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  7510. "shasum": ""
  7511. },
  7512. "require": {
  7513. "ext-json": "*",
  7514. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  7515. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  7516. "php": "^7.2.5 || ^8.0",
  7517. "psr/http-client": "^1.0",
  7518. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7519. },
  7520. "provide": {
  7521. "psr/http-client-implementation": "1.0"
  7522. },
  7523. "require-dev": {
  7524. "bamarni/composer-bin-plugin": "^1.8.1",
  7525. "ext-curl": "*",
  7526. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  7527. "php-http/message-factory": "^1.1",
  7528. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  7529. "psr/log": "^1.1 || ^2.0 || ^3.0"
  7530. },
  7531. "suggest": {
  7532. "ext-curl": "Required for CURL handler support",
  7533. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  7534. "psr/log": "Required for using the Log middleware"
  7535. },
  7536. "type": "library",
  7537. "extra": {
  7538. "bamarni-bin": {
  7539. "bin-links": true,
  7540. "forward-command": false
  7541. }
  7542. },
  7543. "autoload": {
  7544. "files": [
  7545. "src/functions_include.php"
  7546. ],
  7547. "psr-4": {
  7548. "GuzzleHttp\\": "src/"
  7549. }
  7550. },
  7551. "notification-url": "https://packagist.org/downloads/",
  7552. "license": [
  7553. "MIT"
  7554. ],
  7555. "authors": [
  7556. {
  7557. "name": "Graham Campbell",
  7558. "email": "hello@gjcampbell.co.uk",
  7559. "homepage": "https://github.com/GrahamCampbell"
  7560. },
  7561. {
  7562. "name": "Michael Dowling",
  7563. "email": "mtdowling@gmail.com",
  7564. "homepage": "https://github.com/mtdowling"
  7565. },
  7566. {
  7567. "name": "Jeremy Lindblom",
  7568. "email": "jeremeamia@gmail.com",
  7569. "homepage": "https://github.com/jeremeamia"
  7570. },
  7571. {
  7572. "name": "George Mponos",
  7573. "email": "gmponos@gmail.com",
  7574. "homepage": "https://github.com/gmponos"
  7575. },
  7576. {
  7577. "name": "Tobias Nyholm",
  7578. "email": "tobias.nyholm@gmail.com",
  7579. "homepage": "https://github.com/Nyholm"
  7580. },
  7581. {
  7582. "name": "Márk Sági-Kazár",
  7583. "email": "mark.sagikazar@gmail.com",
  7584. "homepage": "https://github.com/sagikazarmark"
  7585. },
  7586. {
  7587. "name": "Tobias Schultze",
  7588. "email": "webmaster@tubo-world.de",
  7589. "homepage": "https://github.com/Tobion"
  7590. }
  7591. ],
  7592. "description": "Guzzle is a PHP HTTP client library",
  7593. "keywords": [
  7594. "client",
  7595. "curl",
  7596. "framework",
  7597. "http",
  7598. "http client",
  7599. "psr-18",
  7600. "psr-7",
  7601. "rest",
  7602. "web service"
  7603. ],
  7604. "support": {
  7605. "issues": "https://github.com/guzzle/guzzle/issues",
  7606. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  7607. },
  7608. "funding": [
  7609. {
  7610. "url": "https://github.com/GrahamCampbell",
  7611. "type": "github"
  7612. },
  7613. {
  7614. "url": "https://github.com/Nyholm",
  7615. "type": "github"
  7616. },
  7617. {
  7618. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  7619. "type": "tidelift"
  7620. }
  7621. ],
  7622. "time": "2023-08-27T10:02:06+00:00"
  7623. },
  7624. {
  7625. "name": "guzzlehttp/promises",
  7626. "version": "2.0.1",
  7627. "source": {
  7628. "type": "git",
  7629. "url": "https://github.com/guzzle/promises.git",
  7630. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  7631. },
  7632. "dist": {
  7633. "type": "zip",
  7634. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  7635. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  7636. "shasum": ""
  7637. },
  7638. "require": {
  7639. "php": "^7.2.5 || ^8.0"
  7640. },
  7641. "require-dev": {
  7642. "bamarni/composer-bin-plugin": "^1.8.1",
  7643. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  7644. },
  7645. "type": "library",
  7646. "extra": {
  7647. "bamarni-bin": {
  7648. "bin-links": true,
  7649. "forward-command": false
  7650. }
  7651. },
  7652. "autoload": {
  7653. "psr-4": {
  7654. "GuzzleHttp\\Promise\\": "src/"
  7655. }
  7656. },
  7657. "notification-url": "https://packagist.org/downloads/",
  7658. "license": [
  7659. "MIT"
  7660. ],
  7661. "authors": [
  7662. {
  7663. "name": "Graham Campbell",
  7664. "email": "hello@gjcampbell.co.uk",
  7665. "homepage": "https://github.com/GrahamCampbell"
  7666. },
  7667. {
  7668. "name": "Michael Dowling",
  7669. "email": "mtdowling@gmail.com",
  7670. "homepage": "https://github.com/mtdowling"
  7671. },
  7672. {
  7673. "name": "Tobias Nyholm",
  7674. "email": "tobias.nyholm@gmail.com",
  7675. "homepage": "https://github.com/Nyholm"
  7676. },
  7677. {
  7678. "name": "Tobias Schultze",
  7679. "email": "webmaster@tubo-world.de",
  7680. "homepage": "https://github.com/Tobion"
  7681. }
  7682. ],
  7683. "description": "Guzzle promises library",
  7684. "keywords": [
  7685. "promise"
  7686. ],
  7687. "support": {
  7688. "issues": "https://github.com/guzzle/promises/issues",
  7689. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  7690. },
  7691. "funding": [
  7692. {
  7693. "url": "https://github.com/GrahamCampbell",
  7694. "type": "github"
  7695. },
  7696. {
  7697. "url": "https://github.com/Nyholm",
  7698. "type": "github"
  7699. },
  7700. {
  7701. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  7702. "type": "tidelift"
  7703. }
  7704. ],
  7705. "time": "2023-08-03T15:11:55+00:00"
  7706. },
  7707. {
  7708. "name": "guzzlehttp/psr7",
  7709. "version": "2.5.1",
  7710. "source": {
  7711. "type": "git",
  7712. "url": "https://github.com/guzzle/psr7.git",
  7713. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  7714. },
  7715. "dist": {
  7716. "type": "zip",
  7717. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  7718. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  7719. "shasum": ""
  7720. },
  7721. "require": {
  7722. "php": "^7.2.5 || ^8.0",
  7723. "psr/http-factory": "^1.0",
  7724. "psr/http-message": "^1.1 || ^2.0",
  7725. "ralouphie/getallheaders": "^3.0"
  7726. },
  7727. "provide": {
  7728. "psr/http-factory-implementation": "1.0",
  7729. "psr/http-message-implementation": "1.0"
  7730. },
  7731. "require-dev": {
  7732. "bamarni/composer-bin-plugin": "^1.8.1",
  7733. "http-interop/http-factory-tests": "^0.9",
  7734. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  7735. },
  7736. "suggest": {
  7737. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  7738. },
  7739. "type": "library",
  7740. "extra": {
  7741. "bamarni-bin": {
  7742. "bin-links": true,
  7743. "forward-command": false
  7744. }
  7745. },
  7746. "autoload": {
  7747. "psr-4": {
  7748. "GuzzleHttp\\Psr7\\": "src/"
  7749. }
  7750. },
  7751. "notification-url": "https://packagist.org/downloads/",
  7752. "license": [
  7753. "MIT"
  7754. ],
  7755. "authors": [
  7756. {
  7757. "name": "Graham Campbell",
  7758. "email": "hello@gjcampbell.co.uk",
  7759. "homepage": "https://github.com/GrahamCampbell"
  7760. },
  7761. {
  7762. "name": "Michael Dowling",
  7763. "email": "mtdowling@gmail.com",
  7764. "homepage": "https://github.com/mtdowling"
  7765. },
  7766. {
  7767. "name": "George Mponos",
  7768. "email": "gmponos@gmail.com",
  7769. "homepage": "https://github.com/gmponos"
  7770. },
  7771. {
  7772. "name": "Tobias Nyholm",
  7773. "email": "tobias.nyholm@gmail.com",
  7774. "homepage": "https://github.com/Nyholm"
  7775. },
  7776. {
  7777. "name": "Márk Sági-Kazár",
  7778. "email": "mark.sagikazar@gmail.com",
  7779. "homepage": "https://github.com/sagikazarmark"
  7780. },
  7781. {
  7782. "name": "Tobias Schultze",
  7783. "email": "webmaster@tubo-world.de",
  7784. "homepage": "https://github.com/Tobion"
  7785. },
  7786. {
  7787. "name": "Márk Sági-Kazár",
  7788. "email": "mark.sagikazar@gmail.com",
  7789. "homepage": "https://sagikazarmark.hu"
  7790. }
  7791. ],
  7792. "description": "PSR-7 message implementation that also provides common utility methods",
  7793. "keywords": [
  7794. "http",
  7795. "message",
  7796. "psr-7",
  7797. "request",
  7798. "response",
  7799. "stream",
  7800. "uri",
  7801. "url"
  7802. ],
  7803. "support": {
  7804. "issues": "https://github.com/guzzle/psr7/issues",
  7805. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  7806. },
  7807. "funding": [
  7808. {
  7809. "url": "https://github.com/GrahamCampbell",
  7810. "type": "github"
  7811. },
  7812. {
  7813. "url": "https://github.com/Nyholm",
  7814. "type": "github"
  7815. },
  7816. {
  7817. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  7818. "type": "tidelift"
  7819. }
  7820. ],
  7821. "time": "2023-08-03T15:02:42+00:00"
  7822. },
  7823. {
  7824. "name": "kint-php/kint",
  7825. "version": "3.3",
  7826. "source": {
  7827. "type": "git",
  7828. "url": "https://github.com/kint-php/kint.git",
  7829. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  7830. },
  7831. "dist": {
  7832. "type": "zip",
  7833. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  7834. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  7835. "shasum": ""
  7836. },
  7837. "require": {
  7838. "php": ">=5.3.6"
  7839. },
  7840. "require-dev": {
  7841. "friendsofphp/php-cs-fixer": "^2.0",
  7842. "phpunit/phpunit": "^4.0",
  7843. "seld/phar-utils": "^1.0",
  7844. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  7845. "vimeo/psalm": "^3.0"
  7846. },
  7847. "suggest": {
  7848. "ext-ctype": "Simple data type tests",
  7849. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  7850. "ext-mbstring": "Provides string encoding detection",
  7851. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  7852. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  7853. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  7854. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  7855. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  7856. },
  7857. "type": "library",
  7858. "autoload": {
  7859. "files": [
  7860. "init.php"
  7861. ],
  7862. "psr-4": {
  7863. "Kint\\": "src/"
  7864. }
  7865. },
  7866. "notification-url": "https://packagist.org/downloads/",
  7867. "license": [
  7868. "MIT"
  7869. ],
  7870. "authors": [
  7871. {
  7872. "name": "Jonathan Vollebregt",
  7873. "homepage": "https://github.com/jnvsor"
  7874. },
  7875. {
  7876. "name": "Rokas Šleinius",
  7877. "homepage": "https://github.com/raveren"
  7878. },
  7879. {
  7880. "name": "Contributors",
  7881. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  7882. }
  7883. ],
  7884. "description": "Kint - debugging tool for PHP developers",
  7885. "homepage": "https://kint-php.github.io/kint/",
  7886. "keywords": [
  7887. "debug",
  7888. "kint",
  7889. "php"
  7890. ],
  7891. "support": {
  7892. "issues": "https://github.com/kint-php/kint/issues",
  7893. "source": "https://github.com/kint-php/kint/tree/master"
  7894. },
  7895. "time": "2019-10-17T18:05:24+00:00"
  7896. },
  7897. {
  7898. "name": "league/container",
  7899. "version": "4.2.0",
  7900. "source": {
  7901. "type": "git",
  7902. "url": "https://github.com/thephpleague/container.git",
  7903. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  7904. },
  7905. "dist": {
  7906. "type": "zip",
  7907. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7908. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7909. "shasum": ""
  7910. },
  7911. "require": {
  7912. "php": "^7.2 || ^8.0",
  7913. "psr/container": "^1.1 || ^2.0"
  7914. },
  7915. "provide": {
  7916. "psr/container-implementation": "^1.0"
  7917. },
  7918. "replace": {
  7919. "orno/di": "~2.0"
  7920. },
  7921. "require-dev": {
  7922. "nette/php-generator": "^3.4",
  7923. "nikic/php-parser": "^4.10",
  7924. "phpstan/phpstan": "^0.12.47",
  7925. "phpunit/phpunit": "^8.5.17",
  7926. "roave/security-advisories": "dev-latest",
  7927. "scrutinizer/ocular": "^1.8",
  7928. "squizlabs/php_codesniffer": "^3.6"
  7929. },
  7930. "type": "library",
  7931. "extra": {
  7932. "branch-alias": {
  7933. "dev-master": "4.x-dev",
  7934. "dev-4.x": "4.x-dev",
  7935. "dev-3.x": "3.x-dev",
  7936. "dev-2.x": "2.x-dev",
  7937. "dev-1.x": "1.x-dev"
  7938. }
  7939. },
  7940. "autoload": {
  7941. "psr-4": {
  7942. "League\\Container\\": "src"
  7943. }
  7944. },
  7945. "notification-url": "https://packagist.org/downloads/",
  7946. "license": [
  7947. "MIT"
  7948. ],
  7949. "authors": [
  7950. {
  7951. "name": "Phil Bennett",
  7952. "email": "mail@philbennett.co.uk",
  7953. "role": "Developer"
  7954. }
  7955. ],
  7956. "description": "A fast and intuitive dependency injection container.",
  7957. "homepage": "https://github.com/thephpleague/container",
  7958. "keywords": [
  7959. "container",
  7960. "dependency",
  7961. "di",
  7962. "injection",
  7963. "league",
  7964. "provider",
  7965. "service"
  7966. ],
  7967. "support": {
  7968. "issues": "https://github.com/thephpleague/container/issues",
  7969. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  7970. },
  7971. "funding": [
  7972. {
  7973. "url": "https://github.com/philipobenito",
  7974. "type": "github"
  7975. }
  7976. ],
  7977. "time": "2021-11-16T10:29:06+00:00"
  7978. },
  7979. {
  7980. "name": "masterminds/html5",
  7981. "version": "2.8.1",
  7982. "source": {
  7983. "type": "git",
  7984. "url": "https://github.com/Masterminds/html5-php.git",
  7985. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  7986. },
  7987. "dist": {
  7988. "type": "zip",
  7989. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  7990. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  7991. "shasum": ""
  7992. },
  7993. "require": {
  7994. "ext-dom": "*",
  7995. "php": ">=5.3.0"
  7996. },
  7997. "require-dev": {
  7998. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  7999. },
  8000. "type": "library",
  8001. "extra": {
  8002. "branch-alias": {
  8003. "dev-master": "2.7-dev"
  8004. }
  8005. },
  8006. "autoload": {
  8007. "psr-4": {
  8008. "Masterminds\\": "src"
  8009. }
  8010. },
  8011. "notification-url": "https://packagist.org/downloads/",
  8012. "license": [
  8013. "MIT"
  8014. ],
  8015. "authors": [
  8016. {
  8017. "name": "Matt Butcher",
  8018. "email": "technosophos@gmail.com"
  8019. },
  8020. {
  8021. "name": "Matt Farina",
  8022. "email": "matt@mattfarina.com"
  8023. },
  8024. {
  8025. "name": "Asmir Mustafic",
  8026. "email": "goetas@gmail.com"
  8027. }
  8028. ],
  8029. "description": "An HTML5 parser and serializer.",
  8030. "homepage": "http://masterminds.github.io/html5-php",
  8031. "keywords": [
  8032. "HTML5",
  8033. "dom",
  8034. "html",
  8035. "parser",
  8036. "querypath",
  8037. "serializer",
  8038. "xml"
  8039. ],
  8040. "support": {
  8041. "issues": "https://github.com/Masterminds/html5-php/issues",
  8042. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  8043. },
  8044. "time": "2023-05-10T11:58:31+00:00"
  8045. },
  8046. {
  8047. "name": "mck89/peast",
  8048. "version": "v1.15.4",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/mck89/peast.git",
  8052. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8057. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "ext-mbstring": "*",
  8062. "php": ">=5.4.0"
  8063. },
  8064. "require-dev": {
  8065. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  8066. },
  8067. "type": "library",
  8068. "extra": {
  8069. "branch-alias": {
  8070. "dev-master": "1.15.4-dev"
  8071. }
  8072. },
  8073. "autoload": {
  8074. "psr-4": {
  8075. "Peast\\": "lib/Peast/"
  8076. }
  8077. },
  8078. "notification-url": "https://packagist.org/downloads/",
  8079. "license": [
  8080. "BSD-3-Clause"
  8081. ],
  8082. "authors": [
  8083. {
  8084. "name": "Marco Marchiò",
  8085. "email": "marco.mm89@gmail.com"
  8086. }
  8087. ],
  8088. "description": "Peast is PHP library that generates AST for JavaScript code",
  8089. "support": {
  8090. "issues": "https://github.com/mck89/peast/issues",
  8091. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  8092. },
  8093. "time": "2023-08-12T08:29:29+00:00"
  8094. },
  8095. {
  8096. "name": "nikic/php-parser",
  8097. "version": "v4.17.1",
  8098. "source": {
  8099. "type": "git",
  8100. "url": "https://github.com/nikic/PHP-Parser.git",
  8101. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  8102. },
  8103. "dist": {
  8104. "type": "zip",
  8105. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8106. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8107. "shasum": ""
  8108. },
  8109. "require": {
  8110. "ext-tokenizer": "*",
  8111. "php": ">=7.0"
  8112. },
  8113. "require-dev": {
  8114. "ircmaxell/php-yacc": "^0.0.7",
  8115. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8116. },
  8117. "bin": [
  8118. "bin/php-parse"
  8119. ],
  8120. "type": "library",
  8121. "extra": {
  8122. "branch-alias": {
  8123. "dev-master": "4.9-dev"
  8124. }
  8125. },
  8126. "autoload": {
  8127. "psr-4": {
  8128. "PhpParser\\": "lib/PhpParser"
  8129. }
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "BSD-3-Clause"
  8134. ],
  8135. "authors": [
  8136. {
  8137. "name": "Nikita Popov"
  8138. }
  8139. ],
  8140. "description": "A PHP parser written in PHP",
  8141. "keywords": [
  8142. "parser",
  8143. "php"
  8144. ],
  8145. "support": {
  8146. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8147. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  8148. },
  8149. "time": "2023-08-13T19:53:39+00:00"
  8150. },
  8151. {
  8152. "name": "pear/archive_tar",
  8153. "version": "1.4.14",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/pear/Archive_Tar.git",
  8157. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  8162. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  8163. "shasum": ""
  8164. },
  8165. "require": {
  8166. "pear/pear-core-minimal": "^1.10.0alpha2",
  8167. "php": ">=5.2.0"
  8168. },
  8169. "require-dev": {
  8170. "phpunit/phpunit": "*"
  8171. },
  8172. "suggest": {
  8173. "ext-bz2": "Bz2 compression support.",
  8174. "ext-xz": "Lzma2 compression support.",
  8175. "ext-zlib": "Gzip compression support."
  8176. },
  8177. "type": "library",
  8178. "extra": {
  8179. "branch-alias": {
  8180. "dev-master": "1.4.x-dev"
  8181. }
  8182. },
  8183. "autoload": {
  8184. "psr-0": {
  8185. "Archive_Tar": ""
  8186. }
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "include-path": [
  8190. "./"
  8191. ],
  8192. "license": [
  8193. "BSD-3-Clause"
  8194. ],
  8195. "authors": [
  8196. {
  8197. "name": "Vincent Blavet",
  8198. "email": "vincent@phpconcept.net"
  8199. },
  8200. {
  8201. "name": "Greg Beaver",
  8202. "email": "greg@chiaraquartet.net"
  8203. },
  8204. {
  8205. "name": "Michiel Rook",
  8206. "email": "mrook@php.net"
  8207. }
  8208. ],
  8209. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8210. "homepage": "https://github.com/pear/Archive_Tar",
  8211. "keywords": [
  8212. "archive",
  8213. "tar"
  8214. ],
  8215. "support": {
  8216. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  8217. "source": "https://github.com/pear/Archive_Tar"
  8218. },
  8219. "funding": [
  8220. {
  8221. "url": "https://github.com/mrook",
  8222. "type": "github"
  8223. },
  8224. {
  8225. "url": "https://www.patreon.com/michielrook",
  8226. "type": "patreon"
  8227. }
  8228. ],
  8229. "time": "2021-07-20T13:53:39+00:00"
  8230. },
  8231. {
  8232. "name": "pear/console_getopt",
  8233. "version": "v1.4.3",
  8234. "source": {
  8235. "type": "git",
  8236. "url": "https://github.com/pear/Console_Getopt.git",
  8237. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8238. },
  8239. "dist": {
  8240. "type": "zip",
  8241. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8242. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8243. "shasum": ""
  8244. },
  8245. "type": "library",
  8246. "autoload": {
  8247. "psr-0": {
  8248. "Console": "./"
  8249. }
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "include-path": [
  8253. "./"
  8254. ],
  8255. "license": [
  8256. "BSD-2-Clause"
  8257. ],
  8258. "authors": [
  8259. {
  8260. "name": "Andrei Zmievski",
  8261. "email": "andrei@php.net",
  8262. "role": "Lead"
  8263. },
  8264. {
  8265. "name": "Stig Bakken",
  8266. "email": "stig@php.net",
  8267. "role": "Developer"
  8268. },
  8269. {
  8270. "name": "Greg Beaver",
  8271. "email": "cellog@php.net",
  8272. "role": "Helper"
  8273. }
  8274. ],
  8275. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8276. "support": {
  8277. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  8278. "source": "https://github.com/pear/Console_Getopt"
  8279. },
  8280. "time": "2019-11-20T18:27:48+00:00"
  8281. },
  8282. {
  8283. "name": "pear/pear-core-minimal",
  8284. "version": "v1.10.13",
  8285. "source": {
  8286. "type": "git",
  8287. "url": "https://github.com/pear/pear-core-minimal.git",
  8288. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
  8289. },
  8290. "dist": {
  8291. "type": "zip",
  8292. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8293. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8294. "shasum": ""
  8295. },
  8296. "require": {
  8297. "pear/console_getopt": "~1.4",
  8298. "pear/pear_exception": "~1.0"
  8299. },
  8300. "replace": {
  8301. "rsky/pear-core-min": "self.version"
  8302. },
  8303. "type": "library",
  8304. "autoload": {
  8305. "psr-0": {
  8306. "": "src/"
  8307. }
  8308. },
  8309. "notification-url": "https://packagist.org/downloads/",
  8310. "include-path": [
  8311. "src/"
  8312. ],
  8313. "license": [
  8314. "BSD-3-Clause"
  8315. ],
  8316. "authors": [
  8317. {
  8318. "name": "Christian Weiske",
  8319. "email": "cweiske@php.net",
  8320. "role": "Lead"
  8321. }
  8322. ],
  8323. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8324. "support": {
  8325. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  8326. "source": "https://github.com/pear/pear-core-minimal"
  8327. },
  8328. "time": "2023-04-19T19:15:47+00:00"
  8329. },
  8330. {
  8331. "name": "pear/pear_exception",
  8332. "version": "v1.0.2",
  8333. "source": {
  8334. "type": "git",
  8335. "url": "https://github.com/pear/PEAR_Exception.git",
  8336. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  8337. },
  8338. "dist": {
  8339. "type": "zip",
  8340. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8341. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8342. "shasum": ""
  8343. },
  8344. "require": {
  8345. "php": ">=5.2.0"
  8346. },
  8347. "require-dev": {
  8348. "phpunit/phpunit": "<9"
  8349. },
  8350. "type": "class",
  8351. "extra": {
  8352. "branch-alias": {
  8353. "dev-master": "1.0.x-dev"
  8354. }
  8355. },
  8356. "autoload": {
  8357. "classmap": [
  8358. "PEAR/"
  8359. ]
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "include-path": [
  8363. "."
  8364. ],
  8365. "license": [
  8366. "BSD-2-Clause"
  8367. ],
  8368. "authors": [
  8369. {
  8370. "name": "Helgi Thormar",
  8371. "email": "dufuz@php.net"
  8372. },
  8373. {
  8374. "name": "Greg Beaver",
  8375. "email": "cellog@php.net"
  8376. }
  8377. ],
  8378. "description": "The PEAR Exception base class.",
  8379. "homepage": "https://github.com/pear/PEAR_Exception",
  8380. "keywords": [
  8381. "exception"
  8382. ],
  8383. "support": {
  8384. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  8385. "source": "https://github.com/pear/PEAR_Exception"
  8386. },
  8387. "time": "2021-03-21T15:43:46+00:00"
  8388. },
  8389. {
  8390. "name": "phenx/php-font-lib",
  8391. "version": "0.5.4",
  8392. "source": {
  8393. "type": "git",
  8394. "url": "https://github.com/dompdf/php-font-lib.git",
  8395. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  8396. },
  8397. "dist": {
  8398. "type": "zip",
  8399. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  8400. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  8401. "shasum": ""
  8402. },
  8403. "require": {
  8404. "ext-mbstring": "*"
  8405. },
  8406. "require-dev": {
  8407. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  8408. },
  8409. "type": "library",
  8410. "autoload": {
  8411. "psr-4": {
  8412. "FontLib\\": "src/FontLib"
  8413. }
  8414. },
  8415. "notification-url": "https://packagist.org/downloads/",
  8416. "license": [
  8417. "LGPL-3.0"
  8418. ],
  8419. "authors": [
  8420. {
  8421. "name": "Fabien Ménager",
  8422. "email": "fabien.menager@gmail.com"
  8423. }
  8424. ],
  8425. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8426. "homepage": "https://github.com/PhenX/php-font-lib",
  8427. "support": {
  8428. "issues": "https://github.com/dompdf/php-font-lib/issues",
  8429. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  8430. },
  8431. "time": "2021-12-17T19:44:54+00:00"
  8432. },
  8433. {
  8434. "name": "phootwork/collection",
  8435. "version": "v3.2.2",
  8436. "source": {
  8437. "type": "git",
  8438. "url": "https://github.com/phootwork/collection.git",
  8439. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  8440. },
  8441. "dist": {
  8442. "type": "zip",
  8443. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  8444. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  8445. "shasum": ""
  8446. },
  8447. "require": {
  8448. "phootwork/lang": "^3.0",
  8449. "php": ">=8.0"
  8450. },
  8451. "type": "library",
  8452. "autoload": {
  8453. "psr-4": {
  8454. "phootwork\\collection\\": ""
  8455. }
  8456. },
  8457. "notification-url": "https://packagist.org/downloads/",
  8458. "license": [
  8459. "MIT"
  8460. ],
  8461. "authors": [
  8462. {
  8463. "name": "Thomas Gossmann",
  8464. "homepage": "http://gos.si"
  8465. }
  8466. ],
  8467. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  8468. "homepage": "https://phootwork.github.io/collection/",
  8469. "keywords": [
  8470. "Array object",
  8471. "Text object",
  8472. "collection",
  8473. "collections",
  8474. "json",
  8475. "list",
  8476. "map",
  8477. "queue",
  8478. "set",
  8479. "stack",
  8480. "xml"
  8481. ],
  8482. "support": {
  8483. "issues": "https://github.com/phootwork/phootwork/issues",
  8484. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  8485. },
  8486. "time": "2022-08-27T12:51:24+00:00"
  8487. },
  8488. {
  8489. "name": "phootwork/lang",
  8490. "version": "v3.2.2",
  8491. "source": {
  8492. "type": "git",
  8493. "url": "https://github.com/phootwork/lang.git",
  8494. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  8495. },
  8496. "dist": {
  8497. "type": "zip",
  8498. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  8499. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  8500. "shasum": ""
  8501. },
  8502. "require": {
  8503. "php": ">=8.0",
  8504. "symfony/polyfill-mbstring": "^1.12",
  8505. "symfony/polyfill-php81": "^1.22"
  8506. },
  8507. "type": "library",
  8508. "autoload": {
  8509. "psr-4": {
  8510. "phootwork\\lang\\": ""
  8511. }
  8512. },
  8513. "notification-url": "https://packagist.org/downloads/",
  8514. "license": [
  8515. "MIT"
  8516. ],
  8517. "authors": [
  8518. {
  8519. "name": "Thomas Gossmann",
  8520. "homepage": "http://gos.si"
  8521. }
  8522. ],
  8523. "description": "Missing PHP language constructs",
  8524. "homepage": "https://phootwork.github.io/lang/",
  8525. "keywords": [
  8526. "array",
  8527. "comparator",
  8528. "comparison",
  8529. "string"
  8530. ],
  8531. "support": {
  8532. "issues": "https://github.com/phootwork/phootwork/issues",
  8533. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  8534. },
  8535. "time": "2023-05-26T05:37:59+00:00"
  8536. },
  8537. {
  8538. "name": "phpmailer/phpmailer",
  8539. "version": "v6.8.1",
  8540. "source": {
  8541. "type": "git",
  8542. "url": "https://github.com/PHPMailer/PHPMailer.git",
  8543. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  8544. },
  8545. "dist": {
  8546. "type": "zip",
  8547. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  8548. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  8549. "shasum": ""
  8550. },
  8551. "require": {
  8552. "ext-ctype": "*",
  8553. "ext-filter": "*",
  8554. "ext-hash": "*",
  8555. "php": ">=5.5.0"
  8556. },
  8557. "require-dev": {
  8558. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  8559. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  8560. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  8561. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  8562. "phpcompatibility/php-compatibility": "^9.3.5",
  8563. "roave/security-advisories": "dev-latest",
  8564. "squizlabs/php_codesniffer": "^3.7.2",
  8565. "yoast/phpunit-polyfills": "^1.0.4"
  8566. },
  8567. "suggest": {
  8568. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  8569. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  8570. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  8571. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  8572. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  8573. "psr/log": "For optional PSR-3 debug logging",
  8574. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  8575. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  8576. },
  8577. "type": "library",
  8578. "autoload": {
  8579. "psr-4": {
  8580. "PHPMailer\\PHPMailer\\": "src/"
  8581. }
  8582. },
  8583. "notification-url": "https://packagist.org/downloads/",
  8584. "license": [
  8585. "LGPL-2.1-only"
  8586. ],
  8587. "authors": [
  8588. {
  8589. "name": "Marcus Bointon",
  8590. "email": "phpmailer@synchromedia.co.uk"
  8591. },
  8592. {
  8593. "name": "Jim Jagielski",
  8594. "email": "jimjag@gmail.com"
  8595. },
  8596. {
  8597. "name": "Andy Prevost",
  8598. "email": "codeworxtech@users.sourceforge.net"
  8599. },
  8600. {
  8601. "name": "Brent R. Matzelle"
  8602. }
  8603. ],
  8604. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  8605. "support": {
  8606. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  8607. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  8608. },
  8609. "funding": [
  8610. {
  8611. "url": "https://github.com/Synchro",
  8612. "type": "github"
  8613. }
  8614. ],
  8615. "time": "2023-08-29T08:26:30+00:00"
  8616. },
  8617. {
  8618. "name": "phpowermove/docblock",
  8619. "version": "v4.0",
  8620. "source": {
  8621. "type": "git",
  8622. "url": "https://github.com/phpowermove/docblock.git",
  8623. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  8624. },
  8625. "dist": {
  8626. "type": "zip",
  8627. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8628. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8629. "shasum": ""
  8630. },
  8631. "require": {
  8632. "phootwork/collection": "^3.0",
  8633. "phootwork/lang": "^3.0",
  8634. "php": ">=8.0"
  8635. },
  8636. "require-dev": {
  8637. "phootwork/php-cs-fixer-config": "^0.4",
  8638. "phpunit/phpunit": "^9.0",
  8639. "psalm/phar": "^4.3"
  8640. },
  8641. "type": "library",
  8642. "autoload": {
  8643. "psr-4": {
  8644. "phpowermove\\docblock\\": "src/"
  8645. }
  8646. },
  8647. "notification-url": "https://packagist.org/downloads/",
  8648. "license": [
  8649. "MIT"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "Thomas Gossmann",
  8654. "homepage": "http://gos.si"
  8655. }
  8656. ],
  8657. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  8658. "keywords": [
  8659. "docblock",
  8660. "generator",
  8661. "parser"
  8662. ],
  8663. "support": {
  8664. "issues": "https://github.com/phpowermove/docblock/issues",
  8665. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  8666. },
  8667. "time": "2021-09-22T16:57:06+00:00"
  8668. },
  8669. {
  8670. "name": "politsin/jquery-ui-touch-punch",
  8671. "version": "1.0",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  8675. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  8680. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  8681. "shasum": ""
  8682. },
  8683. "type": "drupal-library",
  8684. "notification-url": "https://packagist.org/downloads/",
  8685. "license": [
  8686. "MIT"
  8687. ],
  8688. "authors": [
  8689. {
  8690. "name": "Dave Furfero",
  8691. "email": "furf@furf.com"
  8692. }
  8693. ],
  8694. "description": "Extension to jQuery UI for mobile touch event support.",
  8695. "homepage": "http://touchpunch.furf.com/",
  8696. "keywords": [
  8697. "gestures",
  8698. "mobile",
  8699. "touch"
  8700. ],
  8701. "support": {
  8702. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  8703. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  8704. },
  8705. "time": "2020-12-15T10:26:18+00:00"
  8706. },
  8707. {
  8708. "name": "psr/cache",
  8709. "version": "3.0.0",
  8710. "source": {
  8711. "type": "git",
  8712. "url": "https://github.com/php-fig/cache.git",
  8713. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8714. },
  8715. "dist": {
  8716. "type": "zip",
  8717. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8718. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8719. "shasum": ""
  8720. },
  8721. "require": {
  8722. "php": ">=8.0.0"
  8723. },
  8724. "type": "library",
  8725. "extra": {
  8726. "branch-alias": {
  8727. "dev-master": "1.0.x-dev"
  8728. }
  8729. },
  8730. "autoload": {
  8731. "psr-4": {
  8732. "Psr\\Cache\\": "src/"
  8733. }
  8734. },
  8735. "notification-url": "https://packagist.org/downloads/",
  8736. "license": [
  8737. "MIT"
  8738. ],
  8739. "authors": [
  8740. {
  8741. "name": "PHP-FIG",
  8742. "homepage": "https://www.php-fig.org/"
  8743. }
  8744. ],
  8745. "description": "Common interface for caching libraries",
  8746. "keywords": [
  8747. "cache",
  8748. "psr",
  8749. "psr-6"
  8750. ],
  8751. "support": {
  8752. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8753. },
  8754. "time": "2021-02-03T23:26:27+00:00"
  8755. },
  8756. {
  8757. "name": "psr/container",
  8758. "version": "2.0.2",
  8759. "source": {
  8760. "type": "git",
  8761. "url": "https://github.com/php-fig/container.git",
  8762. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  8763. },
  8764. "dist": {
  8765. "type": "zip",
  8766. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  8767. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  8768. "shasum": ""
  8769. },
  8770. "require": {
  8771. "php": ">=7.4.0"
  8772. },
  8773. "type": "library",
  8774. "extra": {
  8775. "branch-alias": {
  8776. "dev-master": "2.0.x-dev"
  8777. }
  8778. },
  8779. "autoload": {
  8780. "psr-4": {
  8781. "Psr\\Container\\": "src/"
  8782. }
  8783. },
  8784. "notification-url": "https://packagist.org/downloads/",
  8785. "license": [
  8786. "MIT"
  8787. ],
  8788. "authors": [
  8789. {
  8790. "name": "PHP-FIG",
  8791. "homepage": "https://www.php-fig.org/"
  8792. }
  8793. ],
  8794. "description": "Common Container Interface (PHP FIG PSR-11)",
  8795. "homepage": "https://github.com/php-fig/container",
  8796. "keywords": [
  8797. "PSR-11",
  8798. "container",
  8799. "container-interface",
  8800. "container-interop",
  8801. "psr"
  8802. ],
  8803. "support": {
  8804. "issues": "https://github.com/php-fig/container/issues",
  8805. "source": "https://github.com/php-fig/container/tree/2.0.2"
  8806. },
  8807. "time": "2021-11-05T16:47:00+00:00"
  8808. },
  8809. {
  8810. "name": "psr/event-dispatcher",
  8811. "version": "1.0.0",
  8812. "source": {
  8813. "type": "git",
  8814. "url": "https://github.com/php-fig/event-dispatcher.git",
  8815. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  8816. },
  8817. "dist": {
  8818. "type": "zip",
  8819. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  8820. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  8821. "shasum": ""
  8822. },
  8823. "require": {
  8824. "php": ">=7.2.0"
  8825. },
  8826. "type": "library",
  8827. "extra": {
  8828. "branch-alias": {
  8829. "dev-master": "1.0.x-dev"
  8830. }
  8831. },
  8832. "autoload": {
  8833. "psr-4": {
  8834. "Psr\\EventDispatcher\\": "src/"
  8835. }
  8836. },
  8837. "notification-url": "https://packagist.org/downloads/",
  8838. "license": [
  8839. "MIT"
  8840. ],
  8841. "authors": [
  8842. {
  8843. "name": "PHP-FIG",
  8844. "homepage": "http://www.php-fig.org/"
  8845. }
  8846. ],
  8847. "description": "Standard interfaces for event handling.",
  8848. "keywords": [
  8849. "events",
  8850. "psr",
  8851. "psr-14"
  8852. ],
  8853. "support": {
  8854. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  8855. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  8856. },
  8857. "time": "2019-01-08T18:20:26+00:00"
  8858. },
  8859. {
  8860. "name": "psr/http-client",
  8861. "version": "1.0.3",
  8862. "source": {
  8863. "type": "git",
  8864. "url": "https://github.com/php-fig/http-client.git",
  8865. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  8866. },
  8867. "dist": {
  8868. "type": "zip",
  8869. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  8870. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  8871. "shasum": ""
  8872. },
  8873. "require": {
  8874. "php": "^7.0 || ^8.0",
  8875. "psr/http-message": "^1.0 || ^2.0"
  8876. },
  8877. "type": "library",
  8878. "extra": {
  8879. "branch-alias": {
  8880. "dev-master": "1.0.x-dev"
  8881. }
  8882. },
  8883. "autoload": {
  8884. "psr-4": {
  8885. "Psr\\Http\\Client\\": "src/"
  8886. }
  8887. },
  8888. "notification-url": "https://packagist.org/downloads/",
  8889. "license": [
  8890. "MIT"
  8891. ],
  8892. "authors": [
  8893. {
  8894. "name": "PHP-FIG",
  8895. "homepage": "https://www.php-fig.org/"
  8896. }
  8897. ],
  8898. "description": "Common interface for HTTP clients",
  8899. "homepage": "https://github.com/php-fig/http-client",
  8900. "keywords": [
  8901. "http",
  8902. "http-client",
  8903. "psr",
  8904. "psr-18"
  8905. ],
  8906. "support": {
  8907. "source": "https://github.com/php-fig/http-client"
  8908. },
  8909. "time": "2023-09-23T14:17:50+00:00"
  8910. },
  8911. {
  8912. "name": "psr/http-factory",
  8913. "version": "1.0.2",
  8914. "source": {
  8915. "type": "git",
  8916. "url": "https://github.com/php-fig/http-factory.git",
  8917. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  8918. },
  8919. "dist": {
  8920. "type": "zip",
  8921. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  8922. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  8923. "shasum": ""
  8924. },
  8925. "require": {
  8926. "php": ">=7.0.0",
  8927. "psr/http-message": "^1.0 || ^2.0"
  8928. },
  8929. "type": "library",
  8930. "extra": {
  8931. "branch-alias": {
  8932. "dev-master": "1.0.x-dev"
  8933. }
  8934. },
  8935. "autoload": {
  8936. "psr-4": {
  8937. "Psr\\Http\\Message\\": "src/"
  8938. }
  8939. },
  8940. "notification-url": "https://packagist.org/downloads/",
  8941. "license": [
  8942. "MIT"
  8943. ],
  8944. "authors": [
  8945. {
  8946. "name": "PHP-FIG",
  8947. "homepage": "https://www.php-fig.org/"
  8948. }
  8949. ],
  8950. "description": "Common interfaces for PSR-7 HTTP message factories",
  8951. "keywords": [
  8952. "factory",
  8953. "http",
  8954. "message",
  8955. "psr",
  8956. "psr-17",
  8957. "psr-7",
  8958. "request",
  8959. "response"
  8960. ],
  8961. "support": {
  8962. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  8963. },
  8964. "time": "2023-04-10T20:10:41+00:00"
  8965. },
  8966. {
  8967. "name": "psr/http-message",
  8968. "version": "2.0",
  8969. "source": {
  8970. "type": "git",
  8971. "url": "https://github.com/php-fig/http-message.git",
  8972. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  8973. },
  8974. "dist": {
  8975. "type": "zip",
  8976. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  8977. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  8978. "shasum": ""
  8979. },
  8980. "require": {
  8981. "php": "^7.2 || ^8.0"
  8982. },
  8983. "type": "library",
  8984. "extra": {
  8985. "branch-alias": {
  8986. "dev-master": "2.0.x-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "psr-4": {
  8991. "Psr\\Http\\Message\\": "src/"
  8992. }
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "MIT"
  8997. ],
  8998. "authors": [
  8999. {
  9000. "name": "PHP-FIG",
  9001. "homepage": "https://www.php-fig.org/"
  9002. }
  9003. ],
  9004. "description": "Common interface for HTTP messages",
  9005. "homepage": "https://github.com/php-fig/http-message",
  9006. "keywords": [
  9007. "http",
  9008. "http-message",
  9009. "psr",
  9010. "psr-7",
  9011. "request",
  9012. "response"
  9013. ],
  9014. "support": {
  9015. "source": "https://github.com/php-fig/http-message/tree/2.0"
  9016. },
  9017. "time": "2023-04-04T09:54:51+00:00"
  9018. },
  9019. {
  9020. "name": "psr/log",
  9021. "version": "3.0.0",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/php-fig/log.git",
  9025. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9030. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "php": ">=8.0.0"
  9035. },
  9036. "type": "library",
  9037. "extra": {
  9038. "branch-alias": {
  9039. "dev-master": "3.x-dev"
  9040. }
  9041. },
  9042. "autoload": {
  9043. "psr-4": {
  9044. "Psr\\Log\\": "src"
  9045. }
  9046. },
  9047. "notification-url": "https://packagist.org/downloads/",
  9048. "license": [
  9049. "MIT"
  9050. ],
  9051. "authors": [
  9052. {
  9053. "name": "PHP-FIG",
  9054. "homepage": "https://www.php-fig.org/"
  9055. }
  9056. ],
  9057. "description": "Common interface for logging libraries",
  9058. "homepage": "https://github.com/php-fig/log",
  9059. "keywords": [
  9060. "log",
  9061. "psr",
  9062. "psr-3"
  9063. ],
  9064. "support": {
  9065. "source": "https://github.com/php-fig/log/tree/3.0.0"
  9066. },
  9067. "time": "2021-07-14T16:46:02+00:00"
  9068. },
  9069. {
  9070. "name": "psy/psysh",
  9071. "version": "v0.11.22",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/bobthecow/psysh.git",
  9075. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  9080. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  9081. "shasum": ""
  9082. },
  9083. "require": {
  9084. "ext-json": "*",
  9085. "ext-tokenizer": "*",
  9086. "nikic/php-parser": "^4.0 || ^3.1",
  9087. "php": "^8.0 || ^7.0.8",
  9088. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  9089. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  9090. },
  9091. "conflict": {
  9092. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  9093. },
  9094. "require-dev": {
  9095. "bamarni/composer-bin-plugin": "^1.2"
  9096. },
  9097. "suggest": {
  9098. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9099. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9100. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9101. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  9102. },
  9103. "bin": [
  9104. "bin/psysh"
  9105. ],
  9106. "type": "library",
  9107. "extra": {
  9108. "branch-alias": {
  9109. "dev-0.11": "0.11.x-dev"
  9110. },
  9111. "bamarni-bin": {
  9112. "bin-links": false,
  9113. "forward-command": false
  9114. }
  9115. },
  9116. "autoload": {
  9117. "files": [
  9118. "src/functions.php"
  9119. ],
  9120. "psr-4": {
  9121. "Psy\\": "src/"
  9122. }
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "MIT"
  9127. ],
  9128. "authors": [
  9129. {
  9130. "name": "Justin Hileman",
  9131. "email": "justin@justinhileman.info",
  9132. "homepage": "http://justinhileman.com"
  9133. }
  9134. ],
  9135. "description": "An interactive shell for modern PHP.",
  9136. "homepage": "http://psysh.org",
  9137. "keywords": [
  9138. "REPL",
  9139. "console",
  9140. "interactive",
  9141. "shell"
  9142. ],
  9143. "support": {
  9144. "issues": "https://github.com/bobthecow/psysh/issues",
  9145. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  9146. },
  9147. "time": "2023-10-14T21:56:36+00:00"
  9148. },
  9149. {
  9150. "name": "ralouphie/getallheaders",
  9151. "version": "3.0.3",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/ralouphie/getallheaders.git",
  9155. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9160. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9161. "shasum": ""
  9162. },
  9163. "require": {
  9164. "php": ">=5.6"
  9165. },
  9166. "require-dev": {
  9167. "php-coveralls/php-coveralls": "^2.1",
  9168. "phpunit/phpunit": "^5 || ^6.5"
  9169. },
  9170. "type": "library",
  9171. "autoload": {
  9172. "files": [
  9173. "src/getallheaders.php"
  9174. ]
  9175. },
  9176. "notification-url": "https://packagist.org/downloads/",
  9177. "license": [
  9178. "MIT"
  9179. ],
  9180. "authors": [
  9181. {
  9182. "name": "Ralph Khattar",
  9183. "email": "ralph.khattar@gmail.com"
  9184. }
  9185. ],
  9186. "description": "A polyfill for getallheaders.",
  9187. "support": {
  9188. "issues": "https://github.com/ralouphie/getallheaders/issues",
  9189. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  9190. },
  9191. "time": "2019-03-08T08:55:37+00:00"
  9192. },
  9193. {
  9194. "name": "sebastian/diff",
  9195. "version": "4.0.5",
  9196. "source": {
  9197. "type": "git",
  9198. "url": "https://github.com/sebastianbergmann/diff.git",
  9199. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9200. },
  9201. "dist": {
  9202. "type": "zip",
  9203. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9204. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9205. "shasum": ""
  9206. },
  9207. "require": {
  9208. "php": ">=7.3"
  9209. },
  9210. "require-dev": {
  9211. "phpunit/phpunit": "^9.3",
  9212. "symfony/process": "^4.2 || ^5"
  9213. },
  9214. "type": "library",
  9215. "extra": {
  9216. "branch-alias": {
  9217. "dev-master": "4.0-dev"
  9218. }
  9219. },
  9220. "autoload": {
  9221. "classmap": [
  9222. "src/"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "BSD-3-Clause"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Sebastian Bergmann",
  9232. "email": "sebastian@phpunit.de"
  9233. },
  9234. {
  9235. "name": "Kore Nordmann",
  9236. "email": "mail@kore-nordmann.de"
  9237. }
  9238. ],
  9239. "description": "Diff implementation",
  9240. "homepage": "https://github.com/sebastianbergmann/diff",
  9241. "keywords": [
  9242. "diff",
  9243. "udiff",
  9244. "unidiff",
  9245. "unified diff"
  9246. ],
  9247. "support": {
  9248. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9249. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9250. },
  9251. "funding": [
  9252. {
  9253. "url": "https://github.com/sebastianbergmann",
  9254. "type": "github"
  9255. }
  9256. ],
  9257. "time": "2023-05-07T05:35:17+00:00"
  9258. },
  9259. {
  9260. "name": "symfony/console",
  9261. "version": "v6.3.8",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/symfony/console.git",
  9265. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/symfony/console/zipball/0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9270. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9271. "shasum": ""
  9272. },
  9273. "require": {
  9274. "php": ">=8.1",
  9275. "symfony/deprecation-contracts": "^2.5|^3",
  9276. "symfony/polyfill-mbstring": "~1.0",
  9277. "symfony/service-contracts": "^2.5|^3",
  9278. "symfony/string": "^5.4|^6.0"
  9279. },
  9280. "conflict": {
  9281. "symfony/dependency-injection": "<5.4",
  9282. "symfony/dotenv": "<5.4",
  9283. "symfony/event-dispatcher": "<5.4",
  9284. "symfony/lock": "<5.4",
  9285. "symfony/process": "<5.4"
  9286. },
  9287. "provide": {
  9288. "psr/log-implementation": "1.0|2.0|3.0"
  9289. },
  9290. "require-dev": {
  9291. "psr/log": "^1|^2|^3",
  9292. "symfony/config": "^5.4|^6.0",
  9293. "symfony/dependency-injection": "^5.4|^6.0",
  9294. "symfony/event-dispatcher": "^5.4|^6.0",
  9295. "symfony/lock": "^5.4|^6.0",
  9296. "symfony/process": "^5.4|^6.0",
  9297. "symfony/var-dumper": "^5.4|^6.0"
  9298. },
  9299. "type": "library",
  9300. "autoload": {
  9301. "psr-4": {
  9302. "Symfony\\Component\\Console\\": ""
  9303. },
  9304. "exclude-from-classmap": [
  9305. "/Tests/"
  9306. ]
  9307. },
  9308. "notification-url": "https://packagist.org/downloads/",
  9309. "license": [
  9310. "MIT"
  9311. ],
  9312. "authors": [
  9313. {
  9314. "name": "Fabien Potencier",
  9315. "email": "fabien@symfony.com"
  9316. },
  9317. {
  9318. "name": "Symfony Community",
  9319. "homepage": "https://symfony.com/contributors"
  9320. }
  9321. ],
  9322. "description": "Eases the creation of beautiful and testable command line interfaces",
  9323. "homepage": "https://symfony.com",
  9324. "keywords": [
  9325. "cli",
  9326. "command-line",
  9327. "console",
  9328. "terminal"
  9329. ],
  9330. "support": {
  9331. "source": "https://github.com/symfony/console/tree/v6.3.8"
  9332. },
  9333. "funding": [
  9334. {
  9335. "url": "https://symfony.com/sponsor",
  9336. "type": "custom"
  9337. },
  9338. {
  9339. "url": "https://github.com/fabpot",
  9340. "type": "github"
  9341. },
  9342. {
  9343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9344. "type": "tidelift"
  9345. }
  9346. ],
  9347. "time": "2023-10-31T08:09:35+00:00"
  9348. },
  9349. {
  9350. "name": "symfony/dependency-injection",
  9351. "version": "v6.3.8",
  9352. "source": {
  9353. "type": "git",
  9354. "url": "https://github.com/symfony/dependency-injection.git",
  9355. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc"
  9356. },
  9357. "dist": {
  9358. "type": "zip",
  9359. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9360. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9361. "shasum": ""
  9362. },
  9363. "require": {
  9364. "php": ">=8.1",
  9365. "psr/container": "^1.1|^2.0",
  9366. "symfony/deprecation-contracts": "^2.5|^3",
  9367. "symfony/service-contracts": "^2.5|^3.0",
  9368. "symfony/var-exporter": "^6.2.10"
  9369. },
  9370. "conflict": {
  9371. "ext-psr": "<1.1|>=2",
  9372. "symfony/config": "<6.1",
  9373. "symfony/finder": "<5.4",
  9374. "symfony/proxy-manager-bridge": "<6.3",
  9375. "symfony/yaml": "<5.4"
  9376. },
  9377. "provide": {
  9378. "psr/container-implementation": "1.1|2.0",
  9379. "symfony/service-implementation": "1.1|2.0|3.0"
  9380. },
  9381. "require-dev": {
  9382. "symfony/config": "^6.1",
  9383. "symfony/expression-language": "^5.4|^6.0",
  9384. "symfony/yaml": "^5.4|^6.0"
  9385. },
  9386. "type": "library",
  9387. "autoload": {
  9388. "psr-4": {
  9389. "Symfony\\Component\\DependencyInjection\\": ""
  9390. },
  9391. "exclude-from-classmap": [
  9392. "/Tests/"
  9393. ]
  9394. },
  9395. "notification-url": "https://packagist.org/downloads/",
  9396. "license": [
  9397. "MIT"
  9398. ],
  9399. "authors": [
  9400. {
  9401. "name": "Fabien Potencier",
  9402. "email": "fabien@symfony.com"
  9403. },
  9404. {
  9405. "name": "Symfony Community",
  9406. "homepage": "https://symfony.com/contributors"
  9407. }
  9408. ],
  9409. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  9410. "homepage": "https://symfony.com",
  9411. "support": {
  9412. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.8"
  9413. },
  9414. "funding": [
  9415. {
  9416. "url": "https://symfony.com/sponsor",
  9417. "type": "custom"
  9418. },
  9419. {
  9420. "url": "https://github.com/fabpot",
  9421. "type": "github"
  9422. },
  9423. {
  9424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9425. "type": "tidelift"
  9426. }
  9427. ],
  9428. "time": "2023-10-31T08:07:48+00:00"
  9429. },
  9430. {
  9431. "name": "symfony/deprecation-contracts",
  9432. "version": "v3.3.0",
  9433. "source": {
  9434. "type": "git",
  9435. "url": "https://github.com/symfony/deprecation-contracts.git",
  9436. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  9437. },
  9438. "dist": {
  9439. "type": "zip",
  9440. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  9441. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  9442. "shasum": ""
  9443. },
  9444. "require": {
  9445. "php": ">=8.1"
  9446. },
  9447. "type": "library",
  9448. "extra": {
  9449. "branch-alias": {
  9450. "dev-main": "3.4-dev"
  9451. },
  9452. "thanks": {
  9453. "name": "symfony/contracts",
  9454. "url": "https://github.com/symfony/contracts"
  9455. }
  9456. },
  9457. "autoload": {
  9458. "files": [
  9459. "function.php"
  9460. ]
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "MIT"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Nicolas Grekas",
  9469. "email": "p@tchwork.com"
  9470. },
  9471. {
  9472. "name": "Symfony Community",
  9473. "homepage": "https://symfony.com/contributors"
  9474. }
  9475. ],
  9476. "description": "A generic function and convention to trigger deprecation notices",
  9477. "homepage": "https://symfony.com",
  9478. "support": {
  9479. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  9480. },
  9481. "funding": [
  9482. {
  9483. "url": "https://symfony.com/sponsor",
  9484. "type": "custom"
  9485. },
  9486. {
  9487. "url": "https://github.com/fabpot",
  9488. "type": "github"
  9489. },
  9490. {
  9491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9492. "type": "tidelift"
  9493. }
  9494. ],
  9495. "time": "2023-05-23T14:45:45+00:00"
  9496. },
  9497. {
  9498. "name": "symfony/error-handler",
  9499. "version": "v6.3.5",
  9500. "source": {
  9501. "type": "git",
  9502. "url": "https://github.com/symfony/error-handler.git",
  9503. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  9504. },
  9505. "dist": {
  9506. "type": "zip",
  9507. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  9508. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  9509. "shasum": ""
  9510. },
  9511. "require": {
  9512. "php": ">=8.1",
  9513. "psr/log": "^1|^2|^3",
  9514. "symfony/var-dumper": "^5.4|^6.0"
  9515. },
  9516. "conflict": {
  9517. "symfony/deprecation-contracts": "<2.5"
  9518. },
  9519. "require-dev": {
  9520. "symfony/deprecation-contracts": "^2.5|^3",
  9521. "symfony/http-kernel": "^5.4|^6.0",
  9522. "symfony/serializer": "^5.4|^6.0"
  9523. },
  9524. "bin": [
  9525. "Resources/bin/patch-type-declarations"
  9526. ],
  9527. "type": "library",
  9528. "autoload": {
  9529. "psr-4": {
  9530. "Symfony\\Component\\ErrorHandler\\": ""
  9531. },
  9532. "exclude-from-classmap": [
  9533. "/Tests/"
  9534. ]
  9535. },
  9536. "notification-url": "https://packagist.org/downloads/",
  9537. "license": [
  9538. "MIT"
  9539. ],
  9540. "authors": [
  9541. {
  9542. "name": "Fabien Potencier",
  9543. "email": "fabien@symfony.com"
  9544. },
  9545. {
  9546. "name": "Symfony Community",
  9547. "homepage": "https://symfony.com/contributors"
  9548. }
  9549. ],
  9550. "description": "Provides tools to manage errors and ease debugging PHP code",
  9551. "homepage": "https://symfony.com",
  9552. "support": {
  9553. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  9554. },
  9555. "funding": [
  9556. {
  9557. "url": "https://symfony.com/sponsor",
  9558. "type": "custom"
  9559. },
  9560. {
  9561. "url": "https://github.com/fabpot",
  9562. "type": "github"
  9563. },
  9564. {
  9565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9566. "type": "tidelift"
  9567. }
  9568. ],
  9569. "time": "2023-09-12T06:57:20+00:00"
  9570. },
  9571. {
  9572. "name": "symfony/event-dispatcher",
  9573. "version": "v6.3.2",
  9574. "source": {
  9575. "type": "git",
  9576. "url": "https://github.com/symfony/event-dispatcher.git",
  9577. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  9578. },
  9579. "dist": {
  9580. "type": "zip",
  9581. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  9582. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  9583. "shasum": ""
  9584. },
  9585. "require": {
  9586. "php": ">=8.1",
  9587. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9588. },
  9589. "conflict": {
  9590. "symfony/dependency-injection": "<5.4",
  9591. "symfony/service-contracts": "<2.5"
  9592. },
  9593. "provide": {
  9594. "psr/event-dispatcher-implementation": "1.0",
  9595. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9596. },
  9597. "require-dev": {
  9598. "psr/log": "^1|^2|^3",
  9599. "symfony/config": "^5.4|^6.0",
  9600. "symfony/dependency-injection": "^5.4|^6.0",
  9601. "symfony/error-handler": "^5.4|^6.0",
  9602. "symfony/expression-language": "^5.4|^6.0",
  9603. "symfony/http-foundation": "^5.4|^6.0",
  9604. "symfony/service-contracts": "^2.5|^3",
  9605. "symfony/stopwatch": "^5.4|^6.0"
  9606. },
  9607. "type": "library",
  9608. "autoload": {
  9609. "psr-4": {
  9610. "Symfony\\Component\\EventDispatcher\\": ""
  9611. },
  9612. "exclude-from-classmap": [
  9613. "/Tests/"
  9614. ]
  9615. },
  9616. "notification-url": "https://packagist.org/downloads/",
  9617. "license": [
  9618. "MIT"
  9619. ],
  9620. "authors": [
  9621. {
  9622. "name": "Fabien Potencier",
  9623. "email": "fabien@symfony.com"
  9624. },
  9625. {
  9626. "name": "Symfony Community",
  9627. "homepage": "https://symfony.com/contributors"
  9628. }
  9629. ],
  9630. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9631. "homepage": "https://symfony.com",
  9632. "support": {
  9633. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  9634. },
  9635. "funding": [
  9636. {
  9637. "url": "https://symfony.com/sponsor",
  9638. "type": "custom"
  9639. },
  9640. {
  9641. "url": "https://github.com/fabpot",
  9642. "type": "github"
  9643. },
  9644. {
  9645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9646. "type": "tidelift"
  9647. }
  9648. ],
  9649. "time": "2023-07-06T06:56:43+00:00"
  9650. },
  9651. {
  9652. "name": "symfony/event-dispatcher-contracts",
  9653. "version": "v3.3.0",
  9654. "source": {
  9655. "type": "git",
  9656. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9657. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  9658. },
  9659. "dist": {
  9660. "type": "zip",
  9661. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  9662. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  9663. "shasum": ""
  9664. },
  9665. "require": {
  9666. "php": ">=8.1",
  9667. "psr/event-dispatcher": "^1"
  9668. },
  9669. "type": "library",
  9670. "extra": {
  9671. "branch-alias": {
  9672. "dev-main": "3.4-dev"
  9673. },
  9674. "thanks": {
  9675. "name": "symfony/contracts",
  9676. "url": "https://github.com/symfony/contracts"
  9677. }
  9678. },
  9679. "autoload": {
  9680. "psr-4": {
  9681. "Symfony\\Contracts\\EventDispatcher\\": ""
  9682. }
  9683. },
  9684. "notification-url": "https://packagist.org/downloads/",
  9685. "license": [
  9686. "MIT"
  9687. ],
  9688. "authors": [
  9689. {
  9690. "name": "Nicolas Grekas",
  9691. "email": "p@tchwork.com"
  9692. },
  9693. {
  9694. "name": "Symfony Community",
  9695. "homepage": "https://symfony.com/contributors"
  9696. }
  9697. ],
  9698. "description": "Generic abstractions related to dispatching event",
  9699. "homepage": "https://symfony.com",
  9700. "keywords": [
  9701. "abstractions",
  9702. "contracts",
  9703. "decoupling",
  9704. "interfaces",
  9705. "interoperability",
  9706. "standards"
  9707. ],
  9708. "support": {
  9709. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  9710. },
  9711. "funding": [
  9712. {
  9713. "url": "https://symfony.com/sponsor",
  9714. "type": "custom"
  9715. },
  9716. {
  9717. "url": "https://github.com/fabpot",
  9718. "type": "github"
  9719. },
  9720. {
  9721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9722. "type": "tidelift"
  9723. }
  9724. ],
  9725. "time": "2023-05-23T14:45:45+00:00"
  9726. },
  9727. {
  9728. "name": "symfony/filesystem",
  9729. "version": "v6.3.1",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/symfony/filesystem.git",
  9733. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  9738. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  9739. "shasum": ""
  9740. },
  9741. "require": {
  9742. "php": ">=8.1",
  9743. "symfony/polyfill-ctype": "~1.8",
  9744. "symfony/polyfill-mbstring": "~1.8"
  9745. },
  9746. "type": "library",
  9747. "autoload": {
  9748. "psr-4": {
  9749. "Symfony\\Component\\Filesystem\\": ""
  9750. },
  9751. "exclude-from-classmap": [
  9752. "/Tests/"
  9753. ]
  9754. },
  9755. "notification-url": "https://packagist.org/downloads/",
  9756. "license": [
  9757. "MIT"
  9758. ],
  9759. "authors": [
  9760. {
  9761. "name": "Fabien Potencier",
  9762. "email": "fabien@symfony.com"
  9763. },
  9764. {
  9765. "name": "Symfony Community",
  9766. "homepage": "https://symfony.com/contributors"
  9767. }
  9768. ],
  9769. "description": "Provides basic utilities for the filesystem",
  9770. "homepage": "https://symfony.com",
  9771. "support": {
  9772. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  9773. },
  9774. "funding": [
  9775. {
  9776. "url": "https://symfony.com/sponsor",
  9777. "type": "custom"
  9778. },
  9779. {
  9780. "url": "https://github.com/fabpot",
  9781. "type": "github"
  9782. },
  9783. {
  9784. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9785. "type": "tidelift"
  9786. }
  9787. ],
  9788. "time": "2023-06-01T08:30:39+00:00"
  9789. },
  9790. {
  9791. "name": "symfony/finder",
  9792. "version": "v6.3.5",
  9793. "source": {
  9794. "type": "git",
  9795. "url": "https://github.com/symfony/finder.git",
  9796. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  9797. },
  9798. "dist": {
  9799. "type": "zip",
  9800. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  9801. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  9802. "shasum": ""
  9803. },
  9804. "require": {
  9805. "php": ">=8.1"
  9806. },
  9807. "require-dev": {
  9808. "symfony/filesystem": "^6.0"
  9809. },
  9810. "type": "library",
  9811. "autoload": {
  9812. "psr-4": {
  9813. "Symfony\\Component\\Finder\\": ""
  9814. },
  9815. "exclude-from-classmap": [
  9816. "/Tests/"
  9817. ]
  9818. },
  9819. "notification-url": "https://packagist.org/downloads/",
  9820. "license": [
  9821. "MIT"
  9822. ],
  9823. "authors": [
  9824. {
  9825. "name": "Fabien Potencier",
  9826. "email": "fabien@symfony.com"
  9827. },
  9828. {
  9829. "name": "Symfony Community",
  9830. "homepage": "https://symfony.com/contributors"
  9831. }
  9832. ],
  9833. "description": "Finds files and directories via an intuitive fluent interface",
  9834. "homepage": "https://symfony.com",
  9835. "support": {
  9836. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  9837. },
  9838. "funding": [
  9839. {
  9840. "url": "https://symfony.com/sponsor",
  9841. "type": "custom"
  9842. },
  9843. {
  9844. "url": "https://github.com/fabpot",
  9845. "type": "github"
  9846. },
  9847. {
  9848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9849. "type": "tidelift"
  9850. }
  9851. ],
  9852. "time": "2023-09-26T12:56:25+00:00"
  9853. },
  9854. {
  9855. "name": "symfony/http-foundation",
  9856. "version": "v6.3.8",
  9857. "source": {
  9858. "type": "git",
  9859. "url": "https://github.com/symfony/http-foundation.git",
  9860. "reference": "ce332676de1912c4389222987193c3ef38033df6"
  9861. },
  9862. "dist": {
  9863. "type": "zip",
  9864. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce332676de1912c4389222987193c3ef38033df6",
  9865. "reference": "ce332676de1912c4389222987193c3ef38033df6",
  9866. "shasum": ""
  9867. },
  9868. "require": {
  9869. "php": ">=8.1",
  9870. "symfony/deprecation-contracts": "^2.5|^3",
  9871. "symfony/polyfill-mbstring": "~1.1",
  9872. "symfony/polyfill-php83": "^1.27"
  9873. },
  9874. "conflict": {
  9875. "symfony/cache": "<6.3"
  9876. },
  9877. "require-dev": {
  9878. "doctrine/dbal": "^2.13.1|^3|^4",
  9879. "predis/predis": "^1.1|^2.0",
  9880. "symfony/cache": "^6.3",
  9881. "symfony/dependency-injection": "^5.4|^6.0",
  9882. "symfony/expression-language": "^5.4|^6.0",
  9883. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  9884. "symfony/mime": "^5.4|^6.0",
  9885. "symfony/rate-limiter": "^5.2|^6.0"
  9886. },
  9887. "type": "library",
  9888. "autoload": {
  9889. "psr-4": {
  9890. "Symfony\\Component\\HttpFoundation\\": ""
  9891. },
  9892. "exclude-from-classmap": [
  9893. "/Tests/"
  9894. ]
  9895. },
  9896. "notification-url": "https://packagist.org/downloads/",
  9897. "license": [
  9898. "MIT"
  9899. ],
  9900. "authors": [
  9901. {
  9902. "name": "Fabien Potencier",
  9903. "email": "fabien@symfony.com"
  9904. },
  9905. {
  9906. "name": "Symfony Community",
  9907. "homepage": "https://symfony.com/contributors"
  9908. }
  9909. ],
  9910. "description": "Defines an object-oriented layer for the HTTP specification",
  9911. "homepage": "https://symfony.com",
  9912. "support": {
  9913. "source": "https://github.com/symfony/http-foundation/tree/v6.3.8"
  9914. },
  9915. "funding": [
  9916. {
  9917. "url": "https://symfony.com/sponsor",
  9918. "type": "custom"
  9919. },
  9920. {
  9921. "url": "https://github.com/fabpot",
  9922. "type": "github"
  9923. },
  9924. {
  9925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9926. "type": "tidelift"
  9927. }
  9928. ],
  9929. "time": "2023-11-07T10:17:15+00:00"
  9930. },
  9931. {
  9932. "name": "symfony/http-kernel",
  9933. "version": "v6.3.8",
  9934. "source": {
  9935. "type": "git",
  9936. "url": "https://github.com/symfony/http-kernel.git",
  9937. "reference": "929202375ccf44a309c34aeca8305408442ebcc1"
  9938. },
  9939. "dist": {
  9940. "type": "zip",
  9941. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/929202375ccf44a309c34aeca8305408442ebcc1",
  9942. "reference": "929202375ccf44a309c34aeca8305408442ebcc1",
  9943. "shasum": ""
  9944. },
  9945. "require": {
  9946. "php": ">=8.1",
  9947. "psr/log": "^1|^2|^3",
  9948. "symfony/deprecation-contracts": "^2.5|^3",
  9949. "symfony/error-handler": "^6.3",
  9950. "symfony/event-dispatcher": "^5.4|^6.0",
  9951. "symfony/http-foundation": "^6.3.4",
  9952. "symfony/polyfill-ctype": "^1.8"
  9953. },
  9954. "conflict": {
  9955. "symfony/browser-kit": "<5.4",
  9956. "symfony/cache": "<5.4",
  9957. "symfony/config": "<6.1",
  9958. "symfony/console": "<5.4",
  9959. "symfony/dependency-injection": "<6.3.4",
  9960. "symfony/doctrine-bridge": "<5.4",
  9961. "symfony/form": "<5.4",
  9962. "symfony/http-client": "<5.4",
  9963. "symfony/http-client-contracts": "<2.5",
  9964. "symfony/mailer": "<5.4",
  9965. "symfony/messenger": "<5.4",
  9966. "symfony/translation": "<5.4",
  9967. "symfony/translation-contracts": "<2.5",
  9968. "symfony/twig-bridge": "<5.4",
  9969. "symfony/validator": "<5.4",
  9970. "symfony/var-dumper": "<6.3",
  9971. "twig/twig": "<2.13"
  9972. },
  9973. "provide": {
  9974. "psr/log-implementation": "1.0|2.0|3.0"
  9975. },
  9976. "require-dev": {
  9977. "psr/cache": "^1.0|^2.0|^3.0",
  9978. "symfony/browser-kit": "^5.4|^6.0",
  9979. "symfony/clock": "^6.2",
  9980. "symfony/config": "^6.1",
  9981. "symfony/console": "^5.4|^6.0",
  9982. "symfony/css-selector": "^5.4|^6.0",
  9983. "symfony/dependency-injection": "^6.3.4",
  9984. "symfony/dom-crawler": "^5.4|^6.0",
  9985. "symfony/expression-language": "^5.4|^6.0",
  9986. "symfony/finder": "^5.4|^6.0",
  9987. "symfony/http-client-contracts": "^2.5|^3",
  9988. "symfony/process": "^5.4|^6.0",
  9989. "symfony/property-access": "^5.4.5|^6.0.5",
  9990. "symfony/routing": "^5.4|^6.0",
  9991. "symfony/serializer": "^6.3",
  9992. "symfony/stopwatch": "^5.4|^6.0",
  9993. "symfony/translation": "^5.4|^6.0",
  9994. "symfony/translation-contracts": "^2.5|^3",
  9995. "symfony/uid": "^5.4|^6.0",
  9996. "symfony/validator": "^6.3",
  9997. "symfony/var-exporter": "^6.2",
  9998. "twig/twig": "^2.13|^3.0.4"
  9999. },
  10000. "type": "library",
  10001. "autoload": {
  10002. "psr-4": {
  10003. "Symfony\\Component\\HttpKernel\\": ""
  10004. },
  10005. "exclude-from-classmap": [
  10006. "/Tests/"
  10007. ]
  10008. },
  10009. "notification-url": "https://packagist.org/downloads/",
  10010. "license": [
  10011. "MIT"
  10012. ],
  10013. "authors": [
  10014. {
  10015. "name": "Fabien Potencier",
  10016. "email": "fabien@symfony.com"
  10017. },
  10018. {
  10019. "name": "Symfony Community",
  10020. "homepage": "https://symfony.com/contributors"
  10021. }
  10022. ],
  10023. "description": "Provides a structured process for converting a Request into a Response",
  10024. "homepage": "https://symfony.com",
  10025. "support": {
  10026. "source": "https://github.com/symfony/http-kernel/tree/v6.3.8"
  10027. },
  10028. "funding": [
  10029. {
  10030. "url": "https://symfony.com/sponsor",
  10031. "type": "custom"
  10032. },
  10033. {
  10034. "url": "https://github.com/fabpot",
  10035. "type": "github"
  10036. },
  10037. {
  10038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10039. "type": "tidelift"
  10040. }
  10041. ],
  10042. "time": "2023-11-10T13:47:32+00:00"
  10043. },
  10044. {
  10045. "name": "symfony/mime",
  10046. "version": "v6.3.5",
  10047. "source": {
  10048. "type": "git",
  10049. "url": "https://github.com/symfony/mime.git",
  10050. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  10051. },
  10052. "dist": {
  10053. "type": "zip",
  10054. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10055. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10056. "shasum": ""
  10057. },
  10058. "require": {
  10059. "php": ">=8.1",
  10060. "symfony/deprecation-contracts": "^2.5|^3",
  10061. "symfony/polyfill-intl-idn": "^1.10",
  10062. "symfony/polyfill-mbstring": "^1.0"
  10063. },
  10064. "conflict": {
  10065. "egulias/email-validator": "~3.0.0",
  10066. "phpdocumentor/reflection-docblock": "<3.2.2",
  10067. "phpdocumentor/type-resolver": "<1.4.0",
  10068. "symfony/mailer": "<5.4",
  10069. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  10070. },
  10071. "require-dev": {
  10072. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10073. "league/html-to-markdown": "^5.0",
  10074. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10075. "symfony/dependency-injection": "^5.4|^6.0",
  10076. "symfony/property-access": "^5.4|^6.0",
  10077. "symfony/property-info": "^5.4|^6.0",
  10078. "symfony/serializer": "~6.2.13|^6.3.2"
  10079. },
  10080. "type": "library",
  10081. "autoload": {
  10082. "psr-4": {
  10083. "Symfony\\Component\\Mime\\": ""
  10084. },
  10085. "exclude-from-classmap": [
  10086. "/Tests/"
  10087. ]
  10088. },
  10089. "notification-url": "https://packagist.org/downloads/",
  10090. "license": [
  10091. "MIT"
  10092. ],
  10093. "authors": [
  10094. {
  10095. "name": "Fabien Potencier",
  10096. "email": "fabien@symfony.com"
  10097. },
  10098. {
  10099. "name": "Symfony Community",
  10100. "homepage": "https://symfony.com/contributors"
  10101. }
  10102. ],
  10103. "description": "Allows manipulating MIME messages",
  10104. "homepage": "https://symfony.com",
  10105. "keywords": [
  10106. "mime",
  10107. "mime-type"
  10108. ],
  10109. "support": {
  10110. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  10111. },
  10112. "funding": [
  10113. {
  10114. "url": "https://symfony.com/sponsor",
  10115. "type": "custom"
  10116. },
  10117. {
  10118. "url": "https://github.com/fabpot",
  10119. "type": "github"
  10120. },
  10121. {
  10122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10123. "type": "tidelift"
  10124. }
  10125. ],
  10126. "time": "2023-09-29T06:59:36+00:00"
  10127. },
  10128. {
  10129. "name": "symfony/polyfill-ctype",
  10130. "version": "v1.27.0",
  10131. "source": {
  10132. "type": "git",
  10133. "url": "https://github.com/symfony/polyfill-ctype.git",
  10134. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  10135. },
  10136. "dist": {
  10137. "type": "zip",
  10138. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  10139. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  10140. "shasum": ""
  10141. },
  10142. "require": {
  10143. "php": ">=7.1"
  10144. },
  10145. "provide": {
  10146. "ext-ctype": "*"
  10147. },
  10148. "suggest": {
  10149. "ext-ctype": "For best performance"
  10150. },
  10151. "type": "library",
  10152. "extra": {
  10153. "branch-alias": {
  10154. "dev-main": "1.27-dev"
  10155. },
  10156. "thanks": {
  10157. "name": "symfony/polyfill",
  10158. "url": "https://github.com/symfony/polyfill"
  10159. }
  10160. },
  10161. "autoload": {
  10162. "files": [
  10163. "bootstrap.php"
  10164. ],
  10165. "psr-4": {
  10166. "Symfony\\Polyfill\\Ctype\\": ""
  10167. }
  10168. },
  10169. "notification-url": "https://packagist.org/downloads/",
  10170. "license": [
  10171. "MIT"
  10172. ],
  10173. "authors": [
  10174. {
  10175. "name": "Gert de Pagter",
  10176. "email": "BackEndTea@gmail.com"
  10177. },
  10178. {
  10179. "name": "Symfony Community",
  10180. "homepage": "https://symfony.com/contributors"
  10181. }
  10182. ],
  10183. "description": "Symfony polyfill for ctype functions",
  10184. "homepage": "https://symfony.com",
  10185. "keywords": [
  10186. "compatibility",
  10187. "ctype",
  10188. "polyfill",
  10189. "portable"
  10190. ],
  10191. "support": {
  10192. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  10193. },
  10194. "funding": [
  10195. {
  10196. "url": "https://symfony.com/sponsor",
  10197. "type": "custom"
  10198. },
  10199. {
  10200. "url": "https://github.com/fabpot",
  10201. "type": "github"
  10202. },
  10203. {
  10204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10205. "type": "tidelift"
  10206. }
  10207. ],
  10208. "time": "2022-11-03T14:55:06+00:00"
  10209. },
  10210. {
  10211. "name": "symfony/polyfill-iconv",
  10212. "version": "v1.27.0",
  10213. "source": {
  10214. "type": "git",
  10215. "url": "https://github.com/symfony/polyfill-iconv.git",
  10216. "reference": "927013f3aac555983a5059aada98e1907d842695"
  10217. },
  10218. "dist": {
  10219. "type": "zip",
  10220. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  10221. "reference": "927013f3aac555983a5059aada98e1907d842695",
  10222. "shasum": ""
  10223. },
  10224. "require": {
  10225. "php": ">=7.1"
  10226. },
  10227. "provide": {
  10228. "ext-iconv": "*"
  10229. },
  10230. "suggest": {
  10231. "ext-iconv": "For best performance"
  10232. },
  10233. "type": "library",
  10234. "extra": {
  10235. "branch-alias": {
  10236. "dev-main": "1.27-dev"
  10237. },
  10238. "thanks": {
  10239. "name": "symfony/polyfill",
  10240. "url": "https://github.com/symfony/polyfill"
  10241. }
  10242. },
  10243. "autoload": {
  10244. "files": [
  10245. "bootstrap.php"
  10246. ],
  10247. "psr-4": {
  10248. "Symfony\\Polyfill\\Iconv\\": ""
  10249. }
  10250. },
  10251. "notification-url": "https://packagist.org/downloads/",
  10252. "license": [
  10253. "MIT"
  10254. ],
  10255. "authors": [
  10256. {
  10257. "name": "Nicolas Grekas",
  10258. "email": "p@tchwork.com"
  10259. },
  10260. {
  10261. "name": "Symfony Community",
  10262. "homepage": "https://symfony.com/contributors"
  10263. }
  10264. ],
  10265. "description": "Symfony polyfill for the Iconv extension",
  10266. "homepage": "https://symfony.com",
  10267. "keywords": [
  10268. "compatibility",
  10269. "iconv",
  10270. "polyfill",
  10271. "portable",
  10272. "shim"
  10273. ],
  10274. "support": {
  10275. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  10276. },
  10277. "funding": [
  10278. {
  10279. "url": "https://symfony.com/sponsor",
  10280. "type": "custom"
  10281. },
  10282. {
  10283. "url": "https://github.com/fabpot",
  10284. "type": "github"
  10285. },
  10286. {
  10287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10288. "type": "tidelift"
  10289. }
  10290. ],
  10291. "time": "2022-11-03T14:55:06+00:00"
  10292. },
  10293. {
  10294. "name": "symfony/polyfill-intl-grapheme",
  10295. "version": "v1.27.0",
  10296. "source": {
  10297. "type": "git",
  10298. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  10299. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  10300. },
  10301. "dist": {
  10302. "type": "zip",
  10303. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  10304. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  10305. "shasum": ""
  10306. },
  10307. "require": {
  10308. "php": ">=7.1"
  10309. },
  10310. "suggest": {
  10311. "ext-intl": "For best performance"
  10312. },
  10313. "type": "library",
  10314. "extra": {
  10315. "branch-alias": {
  10316. "dev-main": "1.27-dev"
  10317. },
  10318. "thanks": {
  10319. "name": "symfony/polyfill",
  10320. "url": "https://github.com/symfony/polyfill"
  10321. }
  10322. },
  10323. "autoload": {
  10324. "files": [
  10325. "bootstrap.php"
  10326. ],
  10327. "psr-4": {
  10328. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  10329. }
  10330. },
  10331. "notification-url": "https://packagist.org/downloads/",
  10332. "license": [
  10333. "MIT"
  10334. ],
  10335. "authors": [
  10336. {
  10337. "name": "Nicolas Grekas",
  10338. "email": "p@tchwork.com"
  10339. },
  10340. {
  10341. "name": "Symfony Community",
  10342. "homepage": "https://symfony.com/contributors"
  10343. }
  10344. ],
  10345. "description": "Symfony polyfill for intl's grapheme_* functions",
  10346. "homepage": "https://symfony.com",
  10347. "keywords": [
  10348. "compatibility",
  10349. "grapheme",
  10350. "intl",
  10351. "polyfill",
  10352. "portable",
  10353. "shim"
  10354. ],
  10355. "support": {
  10356. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  10357. },
  10358. "funding": [
  10359. {
  10360. "url": "https://symfony.com/sponsor",
  10361. "type": "custom"
  10362. },
  10363. {
  10364. "url": "https://github.com/fabpot",
  10365. "type": "github"
  10366. },
  10367. {
  10368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10369. "type": "tidelift"
  10370. }
  10371. ],
  10372. "time": "2022-11-03T14:55:06+00:00"
  10373. },
  10374. {
  10375. "name": "symfony/polyfill-intl-idn",
  10376. "version": "v1.27.0",
  10377. "source": {
  10378. "type": "git",
  10379. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10380. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  10381. },
  10382. "dist": {
  10383. "type": "zip",
  10384. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  10385. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  10386. "shasum": ""
  10387. },
  10388. "require": {
  10389. "php": ">=7.1",
  10390. "symfony/polyfill-intl-normalizer": "^1.10",
  10391. "symfony/polyfill-php72": "^1.10"
  10392. },
  10393. "suggest": {
  10394. "ext-intl": "For best performance"
  10395. },
  10396. "type": "library",
  10397. "extra": {
  10398. "branch-alias": {
  10399. "dev-main": "1.27-dev"
  10400. },
  10401. "thanks": {
  10402. "name": "symfony/polyfill",
  10403. "url": "https://github.com/symfony/polyfill"
  10404. }
  10405. },
  10406. "autoload": {
  10407. "files": [
  10408. "bootstrap.php"
  10409. ],
  10410. "psr-4": {
  10411. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10412. }
  10413. },
  10414. "notification-url": "https://packagist.org/downloads/",
  10415. "license": [
  10416. "MIT"
  10417. ],
  10418. "authors": [
  10419. {
  10420. "name": "Laurent Bassin",
  10421. "email": "laurent@bassin.info"
  10422. },
  10423. {
  10424. "name": "Trevor Rowbotham",
  10425. "email": "trevor.rowbotham@pm.me"
  10426. },
  10427. {
  10428. "name": "Symfony Community",
  10429. "homepage": "https://symfony.com/contributors"
  10430. }
  10431. ],
  10432. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10433. "homepage": "https://symfony.com",
  10434. "keywords": [
  10435. "compatibility",
  10436. "idn",
  10437. "intl",
  10438. "polyfill",
  10439. "portable",
  10440. "shim"
  10441. ],
  10442. "support": {
  10443. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  10444. },
  10445. "funding": [
  10446. {
  10447. "url": "https://symfony.com/sponsor",
  10448. "type": "custom"
  10449. },
  10450. {
  10451. "url": "https://github.com/fabpot",
  10452. "type": "github"
  10453. },
  10454. {
  10455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10456. "type": "tidelift"
  10457. }
  10458. ],
  10459. "time": "2022-11-03T14:55:06+00:00"
  10460. },
  10461. {
  10462. "name": "symfony/polyfill-intl-normalizer",
  10463. "version": "v1.27.0",
  10464. "source": {
  10465. "type": "git",
  10466. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10467. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  10468. },
  10469. "dist": {
  10470. "type": "zip",
  10471. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  10472. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  10473. "shasum": ""
  10474. },
  10475. "require": {
  10476. "php": ">=7.1"
  10477. },
  10478. "suggest": {
  10479. "ext-intl": "For best performance"
  10480. },
  10481. "type": "library",
  10482. "extra": {
  10483. "branch-alias": {
  10484. "dev-main": "1.27-dev"
  10485. },
  10486. "thanks": {
  10487. "name": "symfony/polyfill",
  10488. "url": "https://github.com/symfony/polyfill"
  10489. }
  10490. },
  10491. "autoload": {
  10492. "files": [
  10493. "bootstrap.php"
  10494. ],
  10495. "psr-4": {
  10496. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10497. },
  10498. "classmap": [
  10499. "Resources/stubs"
  10500. ]
  10501. },
  10502. "notification-url": "https://packagist.org/downloads/",
  10503. "license": [
  10504. "MIT"
  10505. ],
  10506. "authors": [
  10507. {
  10508. "name": "Nicolas Grekas",
  10509. "email": "p@tchwork.com"
  10510. },
  10511. {
  10512. "name": "Symfony Community",
  10513. "homepage": "https://symfony.com/contributors"
  10514. }
  10515. ],
  10516. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10517. "homepage": "https://symfony.com",
  10518. "keywords": [
  10519. "compatibility",
  10520. "intl",
  10521. "normalizer",
  10522. "polyfill",
  10523. "portable",
  10524. "shim"
  10525. ],
  10526. "support": {
  10527. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  10528. },
  10529. "funding": [
  10530. {
  10531. "url": "https://symfony.com/sponsor",
  10532. "type": "custom"
  10533. },
  10534. {
  10535. "url": "https://github.com/fabpot",
  10536. "type": "github"
  10537. },
  10538. {
  10539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10540. "type": "tidelift"
  10541. }
  10542. ],
  10543. "time": "2022-11-03T14:55:06+00:00"
  10544. },
  10545. {
  10546. "name": "symfony/polyfill-mbstring",
  10547. "version": "v1.27.0",
  10548. "source": {
  10549. "type": "git",
  10550. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10551. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  10552. },
  10553. "dist": {
  10554. "type": "zip",
  10555. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  10556. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  10557. "shasum": ""
  10558. },
  10559. "require": {
  10560. "php": ">=7.1"
  10561. },
  10562. "provide": {
  10563. "ext-mbstring": "*"
  10564. },
  10565. "suggest": {
  10566. "ext-mbstring": "For best performance"
  10567. },
  10568. "type": "library",
  10569. "extra": {
  10570. "branch-alias": {
  10571. "dev-main": "1.27-dev"
  10572. },
  10573. "thanks": {
  10574. "name": "symfony/polyfill",
  10575. "url": "https://github.com/symfony/polyfill"
  10576. }
  10577. },
  10578. "autoload": {
  10579. "files": [
  10580. "bootstrap.php"
  10581. ],
  10582. "psr-4": {
  10583. "Symfony\\Polyfill\\Mbstring\\": ""
  10584. }
  10585. },
  10586. "notification-url": "https://packagist.org/downloads/",
  10587. "license": [
  10588. "MIT"
  10589. ],
  10590. "authors": [
  10591. {
  10592. "name": "Nicolas Grekas",
  10593. "email": "p@tchwork.com"
  10594. },
  10595. {
  10596. "name": "Symfony Community",
  10597. "homepage": "https://symfony.com/contributors"
  10598. }
  10599. ],
  10600. "description": "Symfony polyfill for the Mbstring extension",
  10601. "homepage": "https://symfony.com",
  10602. "keywords": [
  10603. "compatibility",
  10604. "mbstring",
  10605. "polyfill",
  10606. "portable",
  10607. "shim"
  10608. ],
  10609. "support": {
  10610. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  10611. },
  10612. "funding": [
  10613. {
  10614. "url": "https://symfony.com/sponsor",
  10615. "type": "custom"
  10616. },
  10617. {
  10618. "url": "https://github.com/fabpot",
  10619. "type": "github"
  10620. },
  10621. {
  10622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10623. "type": "tidelift"
  10624. }
  10625. ],
  10626. "time": "2022-11-03T14:55:06+00:00"
  10627. },
  10628. {
  10629. "name": "symfony/polyfill-php72",
  10630. "version": "v1.28.0",
  10631. "source": {
  10632. "type": "git",
  10633. "url": "https://github.com/symfony/polyfill-php72.git",
  10634. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  10635. },
  10636. "dist": {
  10637. "type": "zip",
  10638. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  10639. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  10640. "shasum": ""
  10641. },
  10642. "require": {
  10643. "php": ">=7.1"
  10644. },
  10645. "type": "library",
  10646. "extra": {
  10647. "branch-alias": {
  10648. "dev-main": "1.28-dev"
  10649. },
  10650. "thanks": {
  10651. "name": "symfony/polyfill",
  10652. "url": "https://github.com/symfony/polyfill"
  10653. }
  10654. },
  10655. "autoload": {
  10656. "files": [
  10657. "bootstrap.php"
  10658. ],
  10659. "psr-4": {
  10660. "Symfony\\Polyfill\\Php72\\": ""
  10661. }
  10662. },
  10663. "notification-url": "https://packagist.org/downloads/",
  10664. "license": [
  10665. "MIT"
  10666. ],
  10667. "authors": [
  10668. {
  10669. "name": "Nicolas Grekas",
  10670. "email": "p@tchwork.com"
  10671. },
  10672. {
  10673. "name": "Symfony Community",
  10674. "homepage": "https://symfony.com/contributors"
  10675. }
  10676. ],
  10677. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  10678. "homepage": "https://symfony.com",
  10679. "keywords": [
  10680. "compatibility",
  10681. "polyfill",
  10682. "portable",
  10683. "shim"
  10684. ],
  10685. "support": {
  10686. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  10687. },
  10688. "funding": [
  10689. {
  10690. "url": "https://symfony.com/sponsor",
  10691. "type": "custom"
  10692. },
  10693. {
  10694. "url": "https://github.com/fabpot",
  10695. "type": "github"
  10696. },
  10697. {
  10698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10699. "type": "tidelift"
  10700. }
  10701. ],
  10702. "time": "2023-01-26T09:26:14+00:00"
  10703. },
  10704. {
  10705. "name": "symfony/polyfill-php80",
  10706. "version": "v1.28.0",
  10707. "source": {
  10708. "type": "git",
  10709. "url": "https://github.com/symfony/polyfill-php80.git",
  10710. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  10711. },
  10712. "dist": {
  10713. "type": "zip",
  10714. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  10715. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  10716. "shasum": ""
  10717. },
  10718. "require": {
  10719. "php": ">=7.1"
  10720. },
  10721. "type": "library",
  10722. "extra": {
  10723. "branch-alias": {
  10724. "dev-main": "1.28-dev"
  10725. },
  10726. "thanks": {
  10727. "name": "symfony/polyfill",
  10728. "url": "https://github.com/symfony/polyfill"
  10729. }
  10730. },
  10731. "autoload": {
  10732. "files": [
  10733. "bootstrap.php"
  10734. ],
  10735. "psr-4": {
  10736. "Symfony\\Polyfill\\Php80\\": ""
  10737. },
  10738. "classmap": [
  10739. "Resources/stubs"
  10740. ]
  10741. },
  10742. "notification-url": "https://packagist.org/downloads/",
  10743. "license": [
  10744. "MIT"
  10745. ],
  10746. "authors": [
  10747. {
  10748. "name": "Ion Bazan",
  10749. "email": "ion.bazan@gmail.com"
  10750. },
  10751. {
  10752. "name": "Nicolas Grekas",
  10753. "email": "p@tchwork.com"
  10754. },
  10755. {
  10756. "name": "Symfony Community",
  10757. "homepage": "https://symfony.com/contributors"
  10758. }
  10759. ],
  10760. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  10761. "homepage": "https://symfony.com",
  10762. "keywords": [
  10763. "compatibility",
  10764. "polyfill",
  10765. "portable",
  10766. "shim"
  10767. ],
  10768. "support": {
  10769. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  10770. },
  10771. "funding": [
  10772. {
  10773. "url": "https://symfony.com/sponsor",
  10774. "type": "custom"
  10775. },
  10776. {
  10777. "url": "https://github.com/fabpot",
  10778. "type": "github"
  10779. },
  10780. {
  10781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10782. "type": "tidelift"
  10783. }
  10784. ],
  10785. "time": "2023-01-26T09:26:14+00:00"
  10786. },
  10787. {
  10788. "name": "symfony/polyfill-php81",
  10789. "version": "v1.28.0",
  10790. "source": {
  10791. "type": "git",
  10792. "url": "https://github.com/symfony/polyfill-php81.git",
  10793. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  10794. },
  10795. "dist": {
  10796. "type": "zip",
  10797. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  10798. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  10799. "shasum": ""
  10800. },
  10801. "require": {
  10802. "php": ">=7.1"
  10803. },
  10804. "type": "library",
  10805. "extra": {
  10806. "branch-alias": {
  10807. "dev-main": "1.28-dev"
  10808. },
  10809. "thanks": {
  10810. "name": "symfony/polyfill",
  10811. "url": "https://github.com/symfony/polyfill"
  10812. }
  10813. },
  10814. "autoload": {
  10815. "files": [
  10816. "bootstrap.php"
  10817. ],
  10818. "psr-4": {
  10819. "Symfony\\Polyfill\\Php81\\": ""
  10820. },
  10821. "classmap": [
  10822. "Resources/stubs"
  10823. ]
  10824. },
  10825. "notification-url": "https://packagist.org/downloads/",
  10826. "license": [
  10827. "MIT"
  10828. ],
  10829. "authors": [
  10830. {
  10831. "name": "Nicolas Grekas",
  10832. "email": "p@tchwork.com"
  10833. },
  10834. {
  10835. "name": "Symfony Community",
  10836. "homepage": "https://symfony.com/contributors"
  10837. }
  10838. ],
  10839. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10840. "homepage": "https://symfony.com",
  10841. "keywords": [
  10842. "compatibility",
  10843. "polyfill",
  10844. "portable",
  10845. "shim"
  10846. ],
  10847. "support": {
  10848. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  10849. },
  10850. "funding": [
  10851. {
  10852. "url": "https://symfony.com/sponsor",
  10853. "type": "custom"
  10854. },
  10855. {
  10856. "url": "https://github.com/fabpot",
  10857. "type": "github"
  10858. },
  10859. {
  10860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10861. "type": "tidelift"
  10862. }
  10863. ],
  10864. "time": "2023-01-26T09:26:14+00:00"
  10865. },
  10866. {
  10867. "name": "symfony/polyfill-php83",
  10868. "version": "v1.27.0",
  10869. "source": {
  10870. "type": "git",
  10871. "url": "https://github.com/symfony/polyfill-php83.git",
  10872. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  10873. },
  10874. "dist": {
  10875. "type": "zip",
  10876. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  10877. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  10878. "shasum": ""
  10879. },
  10880. "require": {
  10881. "php": ">=7.1",
  10882. "symfony/polyfill-php80": "^1.14"
  10883. },
  10884. "type": "library",
  10885. "extra": {
  10886. "branch-alias": {
  10887. "dev-main": "1.27-dev"
  10888. },
  10889. "thanks": {
  10890. "name": "symfony/polyfill",
  10891. "url": "https://github.com/symfony/polyfill"
  10892. }
  10893. },
  10894. "autoload": {
  10895. "files": [
  10896. "bootstrap.php"
  10897. ],
  10898. "psr-4": {
  10899. "Symfony\\Polyfill\\Php83\\": ""
  10900. }
  10901. },
  10902. "notification-url": "https://packagist.org/downloads/",
  10903. "license": [
  10904. "MIT"
  10905. ],
  10906. "authors": [
  10907. {
  10908. "name": "Nicolas Grekas",
  10909. "email": "p@tchwork.com"
  10910. },
  10911. {
  10912. "name": "Symfony Community",
  10913. "homepage": "https://symfony.com/contributors"
  10914. }
  10915. ],
  10916. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10917. "homepage": "https://symfony.com",
  10918. "keywords": [
  10919. "compatibility",
  10920. "polyfill",
  10921. "portable",
  10922. "shim"
  10923. ],
  10924. "support": {
  10925. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  10926. },
  10927. "funding": [
  10928. {
  10929. "url": "https://symfony.com/sponsor",
  10930. "type": "custom"
  10931. },
  10932. {
  10933. "url": "https://github.com/fabpot",
  10934. "type": "github"
  10935. },
  10936. {
  10937. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10938. "type": "tidelift"
  10939. }
  10940. ],
  10941. "time": "2022-11-03T14:55:06+00:00"
  10942. },
  10943. {
  10944. "name": "symfony/process",
  10945. "version": "v6.3.4",
  10946. "source": {
  10947. "type": "git",
  10948. "url": "https://github.com/symfony/process.git",
  10949. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  10950. },
  10951. "dist": {
  10952. "type": "zip",
  10953. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  10954. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  10955. "shasum": ""
  10956. },
  10957. "require": {
  10958. "php": ">=8.1"
  10959. },
  10960. "type": "library",
  10961. "autoload": {
  10962. "psr-4": {
  10963. "Symfony\\Component\\Process\\": ""
  10964. },
  10965. "exclude-from-classmap": [
  10966. "/Tests/"
  10967. ]
  10968. },
  10969. "notification-url": "https://packagist.org/downloads/",
  10970. "license": [
  10971. "MIT"
  10972. ],
  10973. "authors": [
  10974. {
  10975. "name": "Fabien Potencier",
  10976. "email": "fabien@symfony.com"
  10977. },
  10978. {
  10979. "name": "Symfony Community",
  10980. "homepage": "https://symfony.com/contributors"
  10981. }
  10982. ],
  10983. "description": "Executes commands in sub-processes",
  10984. "homepage": "https://symfony.com",
  10985. "support": {
  10986. "source": "https://github.com/symfony/process/tree/v6.3.4"
  10987. },
  10988. "funding": [
  10989. {
  10990. "url": "https://symfony.com/sponsor",
  10991. "type": "custom"
  10992. },
  10993. {
  10994. "url": "https://github.com/fabpot",
  10995. "type": "github"
  10996. },
  10997. {
  10998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10999. "type": "tidelift"
  11000. }
  11001. ],
  11002. "time": "2023-08-07T10:39:22+00:00"
  11003. },
  11004. {
  11005. "name": "symfony/psr-http-message-bridge",
  11006. "version": "v2.2.0",
  11007. "source": {
  11008. "type": "git",
  11009. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11010. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  11011. },
  11012. "dist": {
  11013. "type": "zip",
  11014. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  11015. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  11016. "shasum": ""
  11017. },
  11018. "require": {
  11019. "php": ">=7.2.5",
  11020. "psr/http-message": "^1.0 || ^2.0",
  11021. "symfony/http-foundation": "^5.4 || ^6.0"
  11022. },
  11023. "require-dev": {
  11024. "nyholm/psr7": "^1.1",
  11025. "psr/log": "^1.1 || ^2 || ^3",
  11026. "symfony/browser-kit": "^5.4 || ^6.0",
  11027. "symfony/config": "^5.4 || ^6.0",
  11028. "symfony/event-dispatcher": "^5.4 || ^6.0",
  11029. "symfony/framework-bundle": "^5.4 || ^6.0",
  11030. "symfony/http-kernel": "^5.4 || ^6.0",
  11031. "symfony/phpunit-bridge": "^6.2"
  11032. },
  11033. "suggest": {
  11034. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11035. },
  11036. "type": "symfony-bridge",
  11037. "extra": {
  11038. "branch-alias": {
  11039. "dev-main": "2.2-dev"
  11040. }
  11041. },
  11042. "autoload": {
  11043. "psr-4": {
  11044. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11045. },
  11046. "exclude-from-classmap": [
  11047. "/Tests/"
  11048. ]
  11049. },
  11050. "notification-url": "https://packagist.org/downloads/",
  11051. "license": [
  11052. "MIT"
  11053. ],
  11054. "authors": [
  11055. {
  11056. "name": "Fabien Potencier",
  11057. "email": "fabien@symfony.com"
  11058. },
  11059. {
  11060. "name": "Symfony Community",
  11061. "homepage": "http://symfony.com/contributors"
  11062. }
  11063. ],
  11064. "description": "PSR HTTP message bridge",
  11065. "homepage": "http://symfony.com",
  11066. "keywords": [
  11067. "http",
  11068. "http-message",
  11069. "psr-17",
  11070. "psr-7"
  11071. ],
  11072. "support": {
  11073. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  11074. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  11075. },
  11076. "funding": [
  11077. {
  11078. "url": "https://symfony.com/sponsor",
  11079. "type": "custom"
  11080. },
  11081. {
  11082. "url": "https://github.com/fabpot",
  11083. "type": "github"
  11084. },
  11085. {
  11086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11087. "type": "tidelift"
  11088. }
  11089. ],
  11090. "time": "2023-04-21T08:40:19+00:00"
  11091. },
  11092. {
  11093. "name": "symfony/routing",
  11094. "version": "v6.3.5",
  11095. "source": {
  11096. "type": "git",
  11097. "url": "https://github.com/symfony/routing.git",
  11098. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  11099. },
  11100. "dist": {
  11101. "type": "zip",
  11102. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  11103. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  11104. "shasum": ""
  11105. },
  11106. "require": {
  11107. "php": ">=8.1",
  11108. "symfony/deprecation-contracts": "^2.5|^3"
  11109. },
  11110. "conflict": {
  11111. "doctrine/annotations": "<1.12",
  11112. "symfony/config": "<6.2",
  11113. "symfony/dependency-injection": "<5.4",
  11114. "symfony/yaml": "<5.4"
  11115. },
  11116. "require-dev": {
  11117. "doctrine/annotations": "^1.12|^2",
  11118. "psr/log": "^1|^2|^3",
  11119. "symfony/config": "^6.2",
  11120. "symfony/dependency-injection": "^5.4|^6.0",
  11121. "symfony/expression-language": "^5.4|^6.0",
  11122. "symfony/http-foundation": "^5.4|^6.0",
  11123. "symfony/yaml": "^5.4|^6.0"
  11124. },
  11125. "type": "library",
  11126. "autoload": {
  11127. "psr-4": {
  11128. "Symfony\\Component\\Routing\\": ""
  11129. },
  11130. "exclude-from-classmap": [
  11131. "/Tests/"
  11132. ]
  11133. },
  11134. "notification-url": "https://packagist.org/downloads/",
  11135. "license": [
  11136. "MIT"
  11137. ],
  11138. "authors": [
  11139. {
  11140. "name": "Fabien Potencier",
  11141. "email": "fabien@symfony.com"
  11142. },
  11143. {
  11144. "name": "Symfony Community",
  11145. "homepage": "https://symfony.com/contributors"
  11146. }
  11147. ],
  11148. "description": "Maps an HTTP request to a set of configuration variables",
  11149. "homepage": "https://symfony.com",
  11150. "keywords": [
  11151. "router",
  11152. "routing",
  11153. "uri",
  11154. "url"
  11155. ],
  11156. "support": {
  11157. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  11158. },
  11159. "funding": [
  11160. {
  11161. "url": "https://symfony.com/sponsor",
  11162. "type": "custom"
  11163. },
  11164. {
  11165. "url": "https://github.com/fabpot",
  11166. "type": "github"
  11167. },
  11168. {
  11169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11170. "type": "tidelift"
  11171. }
  11172. ],
  11173. "time": "2023-09-20T16:05:51+00:00"
  11174. },
  11175. {
  11176. "name": "symfony/serializer",
  11177. "version": "v6.3.8",
  11178. "source": {
  11179. "type": "git",
  11180. "url": "https://github.com/symfony/serializer.git",
  11181. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf"
  11182. },
  11183. "dist": {
  11184. "type": "zip",
  11185. "url": "https://api.github.com/repos/symfony/serializer/zipball/b3ad1515a276473f7919ac97e560017284a7c4bf",
  11186. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf",
  11187. "shasum": ""
  11188. },
  11189. "require": {
  11190. "php": ">=8.1",
  11191. "symfony/deprecation-contracts": "^2.5|^3",
  11192. "symfony/polyfill-ctype": "~1.8"
  11193. },
  11194. "conflict": {
  11195. "doctrine/annotations": "<1.12",
  11196. "phpdocumentor/reflection-docblock": "<3.2.2",
  11197. "phpdocumentor/type-resolver": "<1.4.0",
  11198. "symfony/dependency-injection": "<5.4",
  11199. "symfony/property-access": "<5.4",
  11200. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  11201. "symfony/uid": "<5.4",
  11202. "symfony/yaml": "<5.4"
  11203. },
  11204. "require-dev": {
  11205. "doctrine/annotations": "^1.12|^2",
  11206. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  11207. "symfony/cache": "^5.4|^6.0",
  11208. "symfony/config": "^5.4|^6.0",
  11209. "symfony/console": "^5.4|^6.0",
  11210. "symfony/dependency-injection": "^5.4|^6.0",
  11211. "symfony/error-handler": "^5.4|^6.0",
  11212. "symfony/filesystem": "^5.4|^6.0",
  11213. "symfony/form": "^5.4|^6.0",
  11214. "symfony/http-foundation": "^5.4|^6.0",
  11215. "symfony/http-kernel": "^5.4|^6.0",
  11216. "symfony/mime": "^5.4|^6.0",
  11217. "symfony/property-access": "^5.4|^6.0",
  11218. "symfony/property-info": "^5.4.24|^6.2.11",
  11219. "symfony/uid": "^5.4|^6.0",
  11220. "symfony/validator": "^5.4|^6.0",
  11221. "symfony/var-dumper": "^5.4|^6.0",
  11222. "symfony/var-exporter": "^5.4|^6.0",
  11223. "symfony/yaml": "^5.4|^6.0"
  11224. },
  11225. "type": "library",
  11226. "autoload": {
  11227. "psr-4": {
  11228. "Symfony\\Component\\Serializer\\": ""
  11229. },
  11230. "exclude-from-classmap": [
  11231. "/Tests/"
  11232. ]
  11233. },
  11234. "notification-url": "https://packagist.org/downloads/",
  11235. "license": [
  11236. "MIT"
  11237. ],
  11238. "authors": [
  11239. {
  11240. "name": "Fabien Potencier",
  11241. "email": "fabien@symfony.com"
  11242. },
  11243. {
  11244. "name": "Symfony Community",
  11245. "homepage": "https://symfony.com/contributors"
  11246. }
  11247. ],
  11248. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  11249. "homepage": "https://symfony.com",
  11250. "support": {
  11251. "source": "https://github.com/symfony/serializer/tree/v6.3.8"
  11252. },
  11253. "funding": [
  11254. {
  11255. "url": "https://symfony.com/sponsor",
  11256. "type": "custom"
  11257. },
  11258. {
  11259. "url": "https://github.com/fabpot",
  11260. "type": "github"
  11261. },
  11262. {
  11263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11264. "type": "tidelift"
  11265. }
  11266. ],
  11267. "time": "2023-11-07T10:11:25+00:00"
  11268. },
  11269. {
  11270. "name": "symfony/service-contracts",
  11271. "version": "v3.3.0",
  11272. "source": {
  11273. "type": "git",
  11274. "url": "https://github.com/symfony/service-contracts.git",
  11275. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  11276. },
  11277. "dist": {
  11278. "type": "zip",
  11279. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11280. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11281. "shasum": ""
  11282. },
  11283. "require": {
  11284. "php": ">=8.1",
  11285. "psr/container": "^2.0"
  11286. },
  11287. "conflict": {
  11288. "ext-psr": "<1.1|>=2"
  11289. },
  11290. "type": "library",
  11291. "extra": {
  11292. "branch-alias": {
  11293. "dev-main": "3.4-dev"
  11294. },
  11295. "thanks": {
  11296. "name": "symfony/contracts",
  11297. "url": "https://github.com/symfony/contracts"
  11298. }
  11299. },
  11300. "autoload": {
  11301. "psr-4": {
  11302. "Symfony\\Contracts\\Service\\": ""
  11303. },
  11304. "exclude-from-classmap": [
  11305. "/Test/"
  11306. ]
  11307. },
  11308. "notification-url": "https://packagist.org/downloads/",
  11309. "license": [
  11310. "MIT"
  11311. ],
  11312. "authors": [
  11313. {
  11314. "name": "Nicolas Grekas",
  11315. "email": "p@tchwork.com"
  11316. },
  11317. {
  11318. "name": "Symfony Community",
  11319. "homepage": "https://symfony.com/contributors"
  11320. }
  11321. ],
  11322. "description": "Generic abstractions related to writing services",
  11323. "homepage": "https://symfony.com",
  11324. "keywords": [
  11325. "abstractions",
  11326. "contracts",
  11327. "decoupling",
  11328. "interfaces",
  11329. "interoperability",
  11330. "standards"
  11331. ],
  11332. "support": {
  11333. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  11334. },
  11335. "funding": [
  11336. {
  11337. "url": "https://symfony.com/sponsor",
  11338. "type": "custom"
  11339. },
  11340. {
  11341. "url": "https://github.com/fabpot",
  11342. "type": "github"
  11343. },
  11344. {
  11345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11346. "type": "tidelift"
  11347. }
  11348. ],
  11349. "time": "2023-05-23T14:45:45+00:00"
  11350. },
  11351. {
  11352. "name": "symfony/string",
  11353. "version": "v6.3.8",
  11354. "source": {
  11355. "type": "git",
  11356. "url": "https://github.com/symfony/string.git",
  11357. "reference": "13880a87790c76ef994c91e87efb96134522577a"
  11358. },
  11359. "dist": {
  11360. "type": "zip",
  11361. "url": "https://api.github.com/repos/symfony/string/zipball/13880a87790c76ef994c91e87efb96134522577a",
  11362. "reference": "13880a87790c76ef994c91e87efb96134522577a",
  11363. "shasum": ""
  11364. },
  11365. "require": {
  11366. "php": ">=8.1",
  11367. "symfony/polyfill-ctype": "~1.8",
  11368. "symfony/polyfill-intl-grapheme": "~1.0",
  11369. "symfony/polyfill-intl-normalizer": "~1.0",
  11370. "symfony/polyfill-mbstring": "~1.0"
  11371. },
  11372. "conflict": {
  11373. "symfony/translation-contracts": "<2.5"
  11374. },
  11375. "require-dev": {
  11376. "symfony/error-handler": "^5.4|^6.0",
  11377. "symfony/http-client": "^5.4|^6.0",
  11378. "symfony/intl": "^6.2",
  11379. "symfony/translation-contracts": "^2.5|^3.0",
  11380. "symfony/var-exporter": "^5.4|^6.0"
  11381. },
  11382. "type": "library",
  11383. "autoload": {
  11384. "files": [
  11385. "Resources/functions.php"
  11386. ],
  11387. "psr-4": {
  11388. "Symfony\\Component\\String\\": ""
  11389. },
  11390. "exclude-from-classmap": [
  11391. "/Tests/"
  11392. ]
  11393. },
  11394. "notification-url": "https://packagist.org/downloads/",
  11395. "license": [
  11396. "MIT"
  11397. ],
  11398. "authors": [
  11399. {
  11400. "name": "Nicolas Grekas",
  11401. "email": "p@tchwork.com"
  11402. },
  11403. {
  11404. "name": "Symfony Community",
  11405. "homepage": "https://symfony.com/contributors"
  11406. }
  11407. ],
  11408. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  11409. "homepage": "https://symfony.com",
  11410. "keywords": [
  11411. "grapheme",
  11412. "i18n",
  11413. "string",
  11414. "unicode",
  11415. "utf-8",
  11416. "utf8"
  11417. ],
  11418. "support": {
  11419. "source": "https://github.com/symfony/string/tree/v6.3.8"
  11420. },
  11421. "funding": [
  11422. {
  11423. "url": "https://symfony.com/sponsor",
  11424. "type": "custom"
  11425. },
  11426. {
  11427. "url": "https://github.com/fabpot",
  11428. "type": "github"
  11429. },
  11430. {
  11431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11432. "type": "tidelift"
  11433. }
  11434. ],
  11435. "time": "2023-11-09T08:28:21+00:00"
  11436. },
  11437. {
  11438. "name": "symfony/translation-contracts",
  11439. "version": "v3.3.0",
  11440. "source": {
  11441. "type": "git",
  11442. "url": "https://github.com/symfony/translation-contracts.git",
  11443. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  11444. },
  11445. "dist": {
  11446. "type": "zip",
  11447. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  11448. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  11449. "shasum": ""
  11450. },
  11451. "require": {
  11452. "php": ">=8.1"
  11453. },
  11454. "type": "library",
  11455. "extra": {
  11456. "branch-alias": {
  11457. "dev-main": "3.4-dev"
  11458. },
  11459. "thanks": {
  11460. "name": "symfony/contracts",
  11461. "url": "https://github.com/symfony/contracts"
  11462. }
  11463. },
  11464. "autoload": {
  11465. "psr-4": {
  11466. "Symfony\\Contracts\\Translation\\": ""
  11467. },
  11468. "exclude-from-classmap": [
  11469. "/Test/"
  11470. ]
  11471. },
  11472. "notification-url": "https://packagist.org/downloads/",
  11473. "license": [
  11474. "MIT"
  11475. ],
  11476. "authors": [
  11477. {
  11478. "name": "Nicolas Grekas",
  11479. "email": "p@tchwork.com"
  11480. },
  11481. {
  11482. "name": "Symfony Community",
  11483. "homepage": "https://symfony.com/contributors"
  11484. }
  11485. ],
  11486. "description": "Generic abstractions related to translation",
  11487. "homepage": "https://symfony.com",
  11488. "keywords": [
  11489. "abstractions",
  11490. "contracts",
  11491. "decoupling",
  11492. "interfaces",
  11493. "interoperability",
  11494. "standards"
  11495. ],
  11496. "support": {
  11497. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  11498. },
  11499. "funding": [
  11500. {
  11501. "url": "https://symfony.com/sponsor",
  11502. "type": "custom"
  11503. },
  11504. {
  11505. "url": "https://github.com/fabpot",
  11506. "type": "github"
  11507. },
  11508. {
  11509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11510. "type": "tidelift"
  11511. }
  11512. ],
  11513. "time": "2023-05-30T17:17:10+00:00"
  11514. },
  11515. {
  11516. "name": "symfony/validator",
  11517. "version": "v6.3.8",
  11518. "source": {
  11519. "type": "git",
  11520. "url": "https://github.com/symfony/validator.git",
  11521. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e"
  11522. },
  11523. "dist": {
  11524. "type": "zip",
  11525. "url": "https://api.github.com/repos/symfony/validator/zipball/f75b40e088d095db1e788b81605a76f4563cb80e",
  11526. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e",
  11527. "shasum": ""
  11528. },
  11529. "require": {
  11530. "php": ">=8.1",
  11531. "symfony/deprecation-contracts": "^2.5|^3",
  11532. "symfony/polyfill-ctype": "~1.8",
  11533. "symfony/polyfill-mbstring": "~1.0",
  11534. "symfony/polyfill-php83": "^1.27",
  11535. "symfony/translation-contracts": "^2.5|^3"
  11536. },
  11537. "conflict": {
  11538. "doctrine/annotations": "<1.13",
  11539. "doctrine/lexer": "<1.1",
  11540. "symfony/dependency-injection": "<5.4",
  11541. "symfony/expression-language": "<5.4",
  11542. "symfony/http-kernel": "<5.4",
  11543. "symfony/intl": "<5.4",
  11544. "symfony/property-info": "<5.4",
  11545. "symfony/translation": "<5.4",
  11546. "symfony/yaml": "<5.4"
  11547. },
  11548. "require-dev": {
  11549. "doctrine/annotations": "^1.13|^2",
  11550. "egulias/email-validator": "^2.1.10|^3|^4",
  11551. "symfony/cache": "^5.4|^6.0",
  11552. "symfony/config": "^5.4|^6.0",
  11553. "symfony/console": "^5.4|^6.0",
  11554. "symfony/dependency-injection": "^5.4|^6.0",
  11555. "symfony/expression-language": "^5.4|^6.0",
  11556. "symfony/finder": "^5.4|^6.0",
  11557. "symfony/http-client": "^5.4|^6.0",
  11558. "symfony/http-foundation": "^5.4|^6.0",
  11559. "symfony/http-kernel": "^5.4|^6.0",
  11560. "symfony/intl": "^5.4|^6.0",
  11561. "symfony/mime": "^5.4|^6.0",
  11562. "symfony/property-access": "^5.4|^6.0",
  11563. "symfony/property-info": "^5.4|^6.0",
  11564. "symfony/translation": "^5.4|^6.0",
  11565. "symfony/yaml": "^5.4|^6.0"
  11566. },
  11567. "type": "library",
  11568. "autoload": {
  11569. "psr-4": {
  11570. "Symfony\\Component\\Validator\\": ""
  11571. },
  11572. "exclude-from-classmap": [
  11573. "/Tests/"
  11574. ]
  11575. },
  11576. "notification-url": "https://packagist.org/downloads/",
  11577. "license": [
  11578. "MIT"
  11579. ],
  11580. "authors": [
  11581. {
  11582. "name": "Fabien Potencier",
  11583. "email": "fabien@symfony.com"
  11584. },
  11585. {
  11586. "name": "Symfony Community",
  11587. "homepage": "https://symfony.com/contributors"
  11588. }
  11589. ],
  11590. "description": "Provides tools to validate values",
  11591. "homepage": "https://symfony.com",
  11592. "support": {
  11593. "source": "https://github.com/symfony/validator/tree/v6.3.8"
  11594. },
  11595. "funding": [
  11596. {
  11597. "url": "https://symfony.com/sponsor",
  11598. "type": "custom"
  11599. },
  11600. {
  11601. "url": "https://github.com/fabpot",
  11602. "type": "github"
  11603. },
  11604. {
  11605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11606. "type": "tidelift"
  11607. }
  11608. ],
  11609. "time": "2023-11-07T10:17:15+00:00"
  11610. },
  11611. {
  11612. "name": "symfony/var-dumper",
  11613. "version": "v6.3.8",
  11614. "source": {
  11615. "type": "git",
  11616. "url": "https://github.com/symfony/var-dumper.git",
  11617. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  11618. },
  11619. "dist": {
  11620. "type": "zip",
  11621. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  11622. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  11623. "shasum": ""
  11624. },
  11625. "require": {
  11626. "php": ">=8.1",
  11627. "symfony/deprecation-contracts": "^2.5|^3",
  11628. "symfony/polyfill-mbstring": "~1.0"
  11629. },
  11630. "conflict": {
  11631. "symfony/console": "<5.4"
  11632. },
  11633. "require-dev": {
  11634. "ext-iconv": "*",
  11635. "symfony/console": "^5.4|^6.0",
  11636. "symfony/http-kernel": "^5.4|^6.0",
  11637. "symfony/process": "^5.4|^6.0",
  11638. "symfony/uid": "^5.4|^6.0",
  11639. "twig/twig": "^2.13|^3.0.4"
  11640. },
  11641. "bin": [
  11642. "Resources/bin/var-dump-server"
  11643. ],
  11644. "type": "library",
  11645. "autoload": {
  11646. "files": [
  11647. "Resources/functions/dump.php"
  11648. ],
  11649. "psr-4": {
  11650. "Symfony\\Component\\VarDumper\\": ""
  11651. },
  11652. "exclude-from-classmap": [
  11653. "/Tests/"
  11654. ]
  11655. },
  11656. "notification-url": "https://packagist.org/downloads/",
  11657. "license": [
  11658. "MIT"
  11659. ],
  11660. "authors": [
  11661. {
  11662. "name": "Nicolas Grekas",
  11663. "email": "p@tchwork.com"
  11664. },
  11665. {
  11666. "name": "Symfony Community",
  11667. "homepage": "https://symfony.com/contributors"
  11668. }
  11669. ],
  11670. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  11671. "homepage": "https://symfony.com",
  11672. "keywords": [
  11673. "debug",
  11674. "dump"
  11675. ],
  11676. "support": {
  11677. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  11678. },
  11679. "funding": [
  11680. {
  11681. "url": "https://symfony.com/sponsor",
  11682. "type": "custom"
  11683. },
  11684. {
  11685. "url": "https://github.com/fabpot",
  11686. "type": "github"
  11687. },
  11688. {
  11689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11690. "type": "tidelift"
  11691. }
  11692. ],
  11693. "time": "2023-11-08T10:42:36+00:00"
  11694. },
  11695. {
  11696. "name": "symfony/var-exporter",
  11697. "version": "v6.3.6",
  11698. "source": {
  11699. "type": "git",
  11700. "url": "https://github.com/symfony/var-exporter.git",
  11701. "reference": "374d289c13cb989027274c86206ddc63b16a2441"
  11702. },
  11703. "dist": {
  11704. "type": "zip",
  11705. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
  11706. "reference": "374d289c13cb989027274c86206ddc63b16a2441",
  11707. "shasum": ""
  11708. },
  11709. "require": {
  11710. "php": ">=8.1"
  11711. },
  11712. "require-dev": {
  11713. "symfony/var-dumper": "^5.4|^6.0"
  11714. },
  11715. "type": "library",
  11716. "autoload": {
  11717. "psr-4": {
  11718. "Symfony\\Component\\VarExporter\\": ""
  11719. },
  11720. "exclude-from-classmap": [
  11721. "/Tests/"
  11722. ]
  11723. },
  11724. "notification-url": "https://packagist.org/downloads/",
  11725. "license": [
  11726. "MIT"
  11727. ],
  11728. "authors": [
  11729. {
  11730. "name": "Nicolas Grekas",
  11731. "email": "p@tchwork.com"
  11732. },
  11733. {
  11734. "name": "Symfony Community",
  11735. "homepage": "https://symfony.com/contributors"
  11736. }
  11737. ],
  11738. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  11739. "homepage": "https://symfony.com",
  11740. "keywords": [
  11741. "clone",
  11742. "construct",
  11743. "export",
  11744. "hydrate",
  11745. "instantiate",
  11746. "lazy-loading",
  11747. "proxy",
  11748. "serialize"
  11749. ],
  11750. "support": {
  11751. "source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
  11752. },
  11753. "funding": [
  11754. {
  11755. "url": "https://symfony.com/sponsor",
  11756. "type": "custom"
  11757. },
  11758. {
  11759. "url": "https://github.com/fabpot",
  11760. "type": "github"
  11761. },
  11762. {
  11763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11764. "type": "tidelift"
  11765. }
  11766. ],
  11767. "time": "2023-10-13T09:16:49+00:00"
  11768. },
  11769. {
  11770. "name": "symfony/yaml",
  11771. "version": "v6.3.8",
  11772. "source": {
  11773. "type": "git",
  11774. "url": "https://github.com/symfony/yaml.git",
  11775. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  11776. },
  11777. "dist": {
  11778. "type": "zip",
  11779. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  11780. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  11781. "shasum": ""
  11782. },
  11783. "require": {
  11784. "php": ">=8.1",
  11785. "symfony/deprecation-contracts": "^2.5|^3",
  11786. "symfony/polyfill-ctype": "^1.8"
  11787. },
  11788. "conflict": {
  11789. "symfony/console": "<5.4"
  11790. },
  11791. "require-dev": {
  11792. "symfony/console": "^5.4|^6.0"
  11793. },
  11794. "bin": [
  11795. "Resources/bin/yaml-lint"
  11796. ],
  11797. "type": "library",
  11798. "autoload": {
  11799. "psr-4": {
  11800. "Symfony\\Component\\Yaml\\": ""
  11801. },
  11802. "exclude-from-classmap": [
  11803. "/Tests/"
  11804. ]
  11805. },
  11806. "notification-url": "https://packagist.org/downloads/",
  11807. "license": [
  11808. "MIT"
  11809. ],
  11810. "authors": [
  11811. {
  11812. "name": "Fabien Potencier",
  11813. "email": "fabien@symfony.com"
  11814. },
  11815. {
  11816. "name": "Symfony Community",
  11817. "homepage": "https://symfony.com/contributors"
  11818. }
  11819. ],
  11820. "description": "Loads and dumps YAML files",
  11821. "homepage": "https://symfony.com",
  11822. "support": {
  11823. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  11824. },
  11825. "funding": [
  11826. {
  11827. "url": "https://symfony.com/sponsor",
  11828. "type": "custom"
  11829. },
  11830. {
  11831. "url": "https://github.com/fabpot",
  11832. "type": "github"
  11833. },
  11834. {
  11835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11836. "type": "tidelift"
  11837. }
  11838. ],
  11839. "time": "2023-11-06T10:58:05+00:00"
  11840. },
  11841. {
  11842. "name": "twig/twig",
  11843. "version": "v3.6.1",
  11844. "source": {
  11845. "type": "git",
  11846. "url": "https://github.com/twigphp/Twig.git",
  11847. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  11848. },
  11849. "dist": {
  11850. "type": "zip",
  11851. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  11852. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  11853. "shasum": ""
  11854. },
  11855. "require": {
  11856. "php": ">=7.2.5",
  11857. "symfony/polyfill-ctype": "^1.8",
  11858. "symfony/polyfill-mbstring": "^1.3"
  11859. },
  11860. "require-dev": {
  11861. "psr/container": "^1.0|^2.0",
  11862. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  11863. },
  11864. "type": "library",
  11865. "autoload": {
  11866. "psr-4": {
  11867. "Twig\\": "src/"
  11868. }
  11869. },
  11870. "notification-url": "https://packagist.org/downloads/",
  11871. "license": [
  11872. "BSD-3-Clause"
  11873. ],
  11874. "authors": [
  11875. {
  11876. "name": "Fabien Potencier",
  11877. "email": "fabien@symfony.com",
  11878. "homepage": "http://fabien.potencier.org",
  11879. "role": "Lead Developer"
  11880. },
  11881. {
  11882. "name": "Twig Team",
  11883. "role": "Contributors"
  11884. },
  11885. {
  11886. "name": "Armin Ronacher",
  11887. "email": "armin.ronacher@active-4.com",
  11888. "role": "Project Founder"
  11889. }
  11890. ],
  11891. "description": "Twig, the flexible, fast, and secure template language for PHP",
  11892. "homepage": "https://twig.symfony.com",
  11893. "keywords": [
  11894. "templating"
  11895. ],
  11896. "support": {
  11897. "issues": "https://github.com/twigphp/Twig/issues",
  11898. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  11899. },
  11900. "funding": [
  11901. {
  11902. "url": "https://github.com/fabpot",
  11903. "type": "github"
  11904. },
  11905. {
  11906. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  11907. "type": "tidelift"
  11908. }
  11909. ],
  11910. "time": "2023-06-08T12:52:13+00:00"
  11911. },
  11912. {
  11913. "name": "webflo/drupal-finder",
  11914. "version": "1.2.2",
  11915. "source": {
  11916. "type": "git",
  11917. "url": "https://github.com/webflo/drupal-finder.git",
  11918. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  11919. },
  11920. "dist": {
  11921. "type": "zip",
  11922. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  11923. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  11924. "shasum": ""
  11925. },
  11926. "require": {
  11927. "ext-json": "*"
  11928. },
  11929. "require-dev": {
  11930. "mikey179/vfsstream": "^1.6",
  11931. "phpunit/phpunit": "^4.8"
  11932. },
  11933. "type": "library",
  11934. "autoload": {
  11935. "classmap": [
  11936. "src/DrupalFinder.php"
  11937. ]
  11938. },
  11939. "notification-url": "https://packagist.org/downloads/",
  11940. "license": [
  11941. "GPL-2.0-or-later"
  11942. ],
  11943. "authors": [
  11944. {
  11945. "name": "Florian Weber",
  11946. "email": "florian@webflo.org"
  11947. }
  11948. ],
  11949. "description": "Helper class to locate a Drupal installation from a given path.",
  11950. "support": {
  11951. "issues": "https://github.com/webflo/drupal-finder/issues",
  11952. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  11953. },
  11954. "time": "2020-10-27T09:42:17+00:00"
  11955. },
  11956. {
  11957. "name": "wikimedia/composer-merge-plugin",
  11958. "version": "v2.1.0",
  11959. "source": {
  11960. "type": "git",
  11961. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  11962. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  11963. },
  11964. "dist": {
  11965. "type": "zip",
  11966. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  11967. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  11968. "shasum": ""
  11969. },
  11970. "require": {
  11971. "composer-plugin-api": "^1.1||^2.0",
  11972. "php": ">=7.2.0"
  11973. },
  11974. "require-dev": {
  11975. "composer/composer": "^1.1||^2.0",
  11976. "ext-json": "*",
  11977. "mediawiki/mediawiki-phan-config": "0.11.1",
  11978. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  11979. "phpspec/prophecy": "~1.15.0",
  11980. "phpunit/phpunit": "^8.5||^9.0",
  11981. "squizlabs/php_codesniffer": "~3.7.1"
  11982. },
  11983. "type": "composer-plugin",
  11984. "extra": {
  11985. "branch-alias": {
  11986. "dev-master": "2.x-dev"
  11987. },
  11988. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  11989. },
  11990. "autoload": {
  11991. "psr-4": {
  11992. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  11993. }
  11994. },
  11995. "notification-url": "https://packagist.org/downloads/",
  11996. "license": [
  11997. "MIT"
  11998. ],
  11999. "authors": [
  12000. {
  12001. "name": "Bryan Davis",
  12002. "email": "bd808@wikimedia.org"
  12003. }
  12004. ],
  12005. "description": "Composer plugin to merge multiple composer.json files",
  12006. "support": {
  12007. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  12008. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  12009. },
  12010. "time": "2023-04-15T19:07:00+00:00"
  12011. }
  12012. ],
  12013. "packages-dev": [],
  12014. "aliases": [],
  12015. "minimum-stability": "stable",
  12016. "stability-flags": {
  12017. "drupal/page_manager": 5,
  12018. "drupal/advanced_text_formatter": 5,
  12019. "drupal/bulkdelete": 20,
  12020. "drupal/config_ignore": 5,
  12021. "drupal/config_devel": 20,
  12022. "drupal/config_update": 15,
  12023. "drupal/context": 5,
  12024. "drupal/date_range_formatter": 20,
  12025. "drupal/email_registration": 5,
  12026. "drupal/entity_clone": 20,
  12027. "drupal/field_group": 20,
  12028. "drupal/filter_perms": 20,
  12029. "drupal/inline_entity_form": 5,
  12030. "drupal/linkit": 10,
  12031. "drupal/login_destination": 20,
  12032. "drupal/maillog": 20,
  12033. "drupal/maxlength": 10,
  12034. "drupal/menu_block": 20,
  12035. "drupal/menu_position": 20,
  12036. "drupal/path_alias_xt": 20,
  12037. "drupal/pathologic": 15,
  12038. "drupal/profile": 5,
  12039. "drupal/smtp": 10,
  12040. "drupal/synonyms": 10,
  12041. "drupal/translation_views": 15,
  12042. "drupal/ultimate_cron": 15
  12043. },
  12044. "prefer-stable": true,
  12045. "prefer-lowest": false,
  12046. "platform": [],
  12047. "platform-dev": [],
  12048. "plugin-api-version": "2.6.0"
  12049. }