composer.lock 377 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360
  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": "8739e43f897a0a152c19196f8928c581",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  20. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-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.2.0"
  62. },
  63. "time": "2023-11-14T13:51:46+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.6.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab",
  76. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-beta3",
  95. "drupal/coder": "8.3.23",
  96. "drupal/core": "10.3.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.2",
  99. "phpunit/phpunit": "^9.6",
  100. "squizlabs/php_codesniffer": "^3.9",
  101. "symfony/var-dumper": "^6.4",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.22.2"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1"
  122. },
  123. "time": "2024-06-06T17:36:37+00:00"
  124. },
  125. {
  126. "name": "composer/installers",
  127. "version": "v1.12.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/composer/installers.git",
  131. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  136. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "composer-plugin-api": "^1.0 || ^2.0"
  141. },
  142. "replace": {
  143. "roundcube/plugin-installer": "*",
  144. "shama/baton": "*"
  145. },
  146. "require-dev": {
  147. "composer/composer": "1.6.* || ^2.0",
  148. "composer/semver": "^1 || ^3",
  149. "phpstan/phpstan": "^0.12.55",
  150. "phpstan/phpstan-phpunit": "^0.12.16",
  151. "symfony/phpunit-bridge": "^4.2 || ^5",
  152. "symfony/process": "^2.3"
  153. },
  154. "type": "composer-plugin",
  155. "extra": {
  156. "class": "Composer\\Installers\\Plugin",
  157. "branch-alias": {
  158. "dev-main": "1.x-dev"
  159. }
  160. },
  161. "autoload": {
  162. "psr-4": {
  163. "Composer\\Installers\\": "src/Composer/Installers"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Kyle Robinson Young",
  173. "email": "kyle@dontkry.com",
  174. "homepage": "https://github.com/shama"
  175. }
  176. ],
  177. "description": "A multi-framework Composer library installer",
  178. "homepage": "https://composer.github.io/installers/",
  179. "keywords": [
  180. "Craft",
  181. "Dolibarr",
  182. "Eliasis",
  183. "Hurad",
  184. "ImageCMS",
  185. "Kanboard",
  186. "Lan Management System",
  187. "MODX Evo",
  188. "MantisBT",
  189. "Mautic",
  190. "Maya",
  191. "OXID",
  192. "Plentymarkets",
  193. "Porto",
  194. "RadPHP",
  195. "SMF",
  196. "Starbug",
  197. "Thelia",
  198. "Whmcs",
  199. "WolfCMS",
  200. "agl",
  201. "aimeos",
  202. "annotatecms",
  203. "attogram",
  204. "bitrix",
  205. "cakephp",
  206. "chef",
  207. "cockpit",
  208. "codeigniter",
  209. "concrete5",
  210. "croogo",
  211. "dokuwiki",
  212. "drupal",
  213. "eZ Platform",
  214. "elgg",
  215. "expressionengine",
  216. "fuelphp",
  217. "grav",
  218. "installer",
  219. "itop",
  220. "joomla",
  221. "known",
  222. "kohana",
  223. "laravel",
  224. "lavalite",
  225. "lithium",
  226. "magento",
  227. "majima",
  228. "mako",
  229. "mediawiki",
  230. "miaoxing",
  231. "modulework",
  232. "modx",
  233. "moodle",
  234. "osclass",
  235. "pantheon",
  236. "phpbb",
  237. "piwik",
  238. "ppi",
  239. "processwire",
  240. "puppet",
  241. "pxcms",
  242. "reindex",
  243. "roundcube",
  244. "shopware",
  245. "silverstripe",
  246. "sydes",
  247. "sylius",
  248. "symfony",
  249. "tastyigniter",
  250. "typo3",
  251. "wordpress",
  252. "yawik",
  253. "zend",
  254. "zikula"
  255. ],
  256. "support": {
  257. "issues": "https://github.com/composer/installers/issues",
  258. "source": "https://github.com/composer/installers/tree/v1.12.0"
  259. },
  260. "funding": [
  261. {
  262. "url": "https://packagist.com",
  263. "type": "custom"
  264. },
  265. {
  266. "url": "https://github.com/composer",
  267. "type": "github"
  268. },
  269. {
  270. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  271. "type": "tidelift"
  272. }
  273. ],
  274. "time": "2021-09-13T08:19:44+00:00"
  275. },
  276. {
  277. "name": "composer/semver",
  278. "version": "3.4.2",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/composer/semver.git",
  282. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  287. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  288. "shasum": ""
  289. },
  290. "require": {
  291. "php": "^5.3.2 || ^7.0 || ^8.0"
  292. },
  293. "require-dev": {
  294. "phpstan/phpstan": "^1.4",
  295. "symfony/phpunit-bridge": "^4.2 || ^5"
  296. },
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-main": "3.x-dev"
  301. }
  302. },
  303. "autoload": {
  304. "psr-4": {
  305. "Composer\\Semver\\": "src"
  306. }
  307. },
  308. "notification-url": "https://packagist.org/downloads/",
  309. "license": [
  310. "MIT"
  311. ],
  312. "authors": [
  313. {
  314. "name": "Nils Adermann",
  315. "email": "naderman@naderman.de",
  316. "homepage": "http://www.naderman.de"
  317. },
  318. {
  319. "name": "Jordi Boggiano",
  320. "email": "j.boggiano@seld.be",
  321. "homepage": "http://seld.be"
  322. },
  323. {
  324. "name": "Rob Bast",
  325. "email": "rob.bast@gmail.com",
  326. "homepage": "http://robbast.nl"
  327. }
  328. ],
  329. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  330. "keywords": [
  331. "semantic",
  332. "semver",
  333. "validation",
  334. "versioning"
  335. ],
  336. "support": {
  337. "irc": "ircs://irc.libera.chat:6697/composer",
  338. "issues": "https://github.com/composer/semver/issues",
  339. "source": "https://github.com/composer/semver/tree/3.4.2"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://packagist.com",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://github.com/composer",
  348. "type": "github"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2024-07-12T11:35:52+00:00"
  356. },
  357. {
  358. "name": "consolidation/annotated-command",
  359. "version": "4.10.0",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/consolidation/annotated-command.git",
  363. "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/1e830ba908c9ffb1ba7ca056203531b27188812c",
  368. "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "consolidation/output-formatters": "^4.3.1",
  373. "php": ">=7.1.3",
  374. "psr/log": "^1 || ^2 || ^3",
  375. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  376. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  377. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  378. },
  379. "require-dev": {
  380. "composer-runtime-api": "^2.0",
  381. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  382. "squizlabs/php_codesniffer": "^3",
  383. "yoast/phpunit-polyfills": "^0.2.0"
  384. },
  385. "type": "library",
  386. "extra": {
  387. "branch-alias": {
  388. "dev-main": "4.x-dev"
  389. }
  390. },
  391. "autoload": {
  392. "psr-4": {
  393. "Consolidation\\AnnotatedCommand\\": "src"
  394. }
  395. },
  396. "notification-url": "https://packagist.org/downloads/",
  397. "license": [
  398. "MIT"
  399. ],
  400. "authors": [
  401. {
  402. "name": "Greg Anderson",
  403. "email": "greg.1.anderson@greenknowe.org"
  404. }
  405. ],
  406. "description": "Initialize Symfony Console commands from annotated command class methods.",
  407. "support": {
  408. "issues": "https://github.com/consolidation/annotated-command/issues",
  409. "source": "https://github.com/consolidation/annotated-command/tree/4.10.0"
  410. },
  411. "time": "2024-04-05T21:05:39+00:00"
  412. },
  413. {
  414. "name": "consolidation/config",
  415. "version": "2.1.2",
  416. "source": {
  417. "type": "git",
  418. "url": "https://github.com/consolidation/config.git",
  419. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  420. },
  421. "dist": {
  422. "type": "zip",
  423. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  424. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  425. "shasum": ""
  426. },
  427. "require": {
  428. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  429. "grasmash/expander": "^2.0.1 || ^3",
  430. "php": ">=7.1.3",
  431. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  432. },
  433. "require-dev": {
  434. "ext-json": "*",
  435. "phpunit/phpunit": ">=7.5.20",
  436. "squizlabs/php_codesniffer": "^3",
  437. "symfony/console": "^4 || ^5 || ^6",
  438. "symfony/yaml": "^4 || ^5 || ^6",
  439. "yoast/phpunit-polyfills": "^1"
  440. },
  441. "suggest": {
  442. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  443. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  444. },
  445. "type": "library",
  446. "extra": {
  447. "branch-alias": {
  448. "dev-main": "2.x-dev"
  449. }
  450. },
  451. "autoload": {
  452. "psr-4": {
  453. "Consolidation\\Config\\": "src"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Greg Anderson",
  463. "email": "greg.1.anderson@greenknowe.org"
  464. }
  465. ],
  466. "description": "Provide configuration services for a commandline tool.",
  467. "support": {
  468. "issues": "https://github.com/consolidation/config/issues",
  469. "source": "https://github.com/consolidation/config/tree/2.1.2"
  470. },
  471. "time": "2022-10-06T17:48:03+00:00"
  472. },
  473. {
  474. "name": "consolidation/filter-via-dot-access-data",
  475. "version": "2.0.2",
  476. "source": {
  477. "type": "git",
  478. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  479. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  480. },
  481. "dist": {
  482. "type": "zip",
  483. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  484. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  485. "shasum": ""
  486. },
  487. "require": {
  488. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  489. "php": ">=7.1.3"
  490. },
  491. "require-dev": {
  492. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  493. "squizlabs/php_codesniffer": "^3",
  494. "yoast/phpunit-polyfills": "^0.2.0"
  495. },
  496. "type": "library",
  497. "extra": {
  498. "branch-alias": {
  499. "dev-main": "2.x-dev"
  500. }
  501. },
  502. "autoload": {
  503. "psr-4": {
  504. "Consolidation\\Filter\\": "src"
  505. }
  506. },
  507. "notification-url": "https://packagist.org/downloads/",
  508. "license": [
  509. "MIT"
  510. ],
  511. "authors": [
  512. {
  513. "name": "Greg Anderson",
  514. "email": "greg.1.anderson@greenknowe.org"
  515. }
  516. ],
  517. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  518. "support": {
  519. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  520. },
  521. "time": "2021-12-30T03:56:08+00:00"
  522. },
  523. {
  524. "name": "consolidation/log",
  525. "version": "3.1.0",
  526. "source": {
  527. "type": "git",
  528. "url": "https://github.com/consolidation/log.git",
  529. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015"
  530. },
  531. "dist": {
  532. "type": "zip",
  533. "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015",
  534. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015",
  535. "shasum": ""
  536. },
  537. "require": {
  538. "php": ">=8.0.0",
  539. "psr/log": "^3",
  540. "symfony/console": "^5 || ^6 || ^7"
  541. },
  542. "require-dev": {
  543. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  544. "squizlabs/php_codesniffer": "^3",
  545. "yoast/phpunit-polyfills": "^0.2.0"
  546. },
  547. "type": "library",
  548. "extra": {
  549. "platform": {
  550. "php": "8.2.17"
  551. }
  552. },
  553. "autoload": {
  554. "psr-4": {
  555. "Consolidation\\Log\\": "src"
  556. }
  557. },
  558. "notification-url": "https://packagist.org/downloads/",
  559. "license": [
  560. "MIT"
  561. ],
  562. "authors": [
  563. {
  564. "name": "Greg Anderson",
  565. "email": "greg.1.anderson@greenknowe.org"
  566. }
  567. ],
  568. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  569. "support": {
  570. "issues": "https://github.com/consolidation/log/issues",
  571. "source": "https://github.com/consolidation/log/tree/3.1.0"
  572. },
  573. "time": "2024-04-04T23:50:25+00:00"
  574. },
  575. {
  576. "name": "consolidation/output-formatters",
  577. "version": "4.5.0",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/consolidation/output-formatters.git",
  581. "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/7a611b01eb48eb19cd54672339fc08c0985bf540",
  586. "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  591. "php": ">=7.1.3",
  592. "symfony/console": "^4 || ^5 || ^6 || ^7",
  593. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  594. },
  595. "require-dev": {
  596. "php-coveralls/php-coveralls": "^2.4.2",
  597. "phpunit/phpunit": "^7 || ^8 || ^9",
  598. "squizlabs/php_codesniffer": "^3",
  599. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  600. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  601. "yoast/phpunit-polyfills": "^1"
  602. },
  603. "suggest": {
  604. "symfony/var-dumper": "For using the var_dump formatter"
  605. },
  606. "type": "library",
  607. "autoload": {
  608. "psr-4": {
  609. "Consolidation\\OutputFormatters\\": "src"
  610. }
  611. },
  612. "notification-url": "https://packagist.org/downloads/",
  613. "license": [
  614. "MIT"
  615. ],
  616. "authors": [
  617. {
  618. "name": "Greg Anderson",
  619. "email": "greg.1.anderson@greenknowe.org"
  620. }
  621. ],
  622. "description": "Format text by applying transformations provided by plug-in formatters.",
  623. "support": {
  624. "issues": "https://github.com/consolidation/output-formatters/issues",
  625. "source": "https://github.com/consolidation/output-formatters/tree/4.5.0"
  626. },
  627. "time": "2024-04-02T15:18:52+00:00"
  628. },
  629. {
  630. "name": "consolidation/robo",
  631. "version": "4.0.6",
  632. "source": {
  633. "type": "git",
  634. "url": "https://github.com/consolidation/robo.git",
  635. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  636. },
  637. "dist": {
  638. "type": "zip",
  639. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  640. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  641. "shasum": ""
  642. },
  643. "require": {
  644. "consolidation/annotated-command": "^4.8.1",
  645. "consolidation/config": "^2.0.1",
  646. "consolidation/log": "^2.0.2 || ^3",
  647. "consolidation/output-formatters": "^4.1.2",
  648. "consolidation/self-update": "^2.0",
  649. "league/container": "^3.3.1 || ^4.0",
  650. "php": ">=8.0",
  651. "phpowermove/docblock": "^4.0",
  652. "symfony/console": "^6",
  653. "symfony/event-dispatcher": "^6",
  654. "symfony/filesystem": "^6",
  655. "symfony/finder": "^6",
  656. "symfony/process": "^6",
  657. "symfony/yaml": "^6"
  658. },
  659. "conflict": {
  660. "codegyre/robo": "*"
  661. },
  662. "require-dev": {
  663. "natxet/cssmin": "3.0.4",
  664. "patchwork/jsqueeze": "^2",
  665. "pear/archive_tar": "^1.4.4",
  666. "phpunit/phpunit": "^7.5.20 || ^8",
  667. "squizlabs/php_codesniffer": "^3.6",
  668. "yoast/phpunit-polyfills": "^0.2.0"
  669. },
  670. "suggest": {
  671. "natxet/cssmin": "For minifying CSS files in taskMinify",
  672. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  673. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  674. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  675. },
  676. "bin": [
  677. "robo"
  678. ],
  679. "type": "library",
  680. "autoload": {
  681. "psr-4": {
  682. "Robo\\": "src"
  683. }
  684. },
  685. "notification-url": "https://packagist.org/downloads/",
  686. "license": [
  687. "MIT"
  688. ],
  689. "authors": [
  690. {
  691. "name": "Davert",
  692. "email": "davert.php@resend.cc"
  693. }
  694. ],
  695. "description": "Modern task runner",
  696. "support": {
  697. "issues": "https://github.com/consolidation/robo/issues",
  698. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  699. },
  700. "time": "2023-04-30T21:49:04+00:00"
  701. },
  702. {
  703. "name": "consolidation/self-update",
  704. "version": "2.2.0",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/consolidation/self-update.git",
  708. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  713. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  714. "shasum": ""
  715. },
  716. "require": {
  717. "composer/semver": "^3.2",
  718. "php": ">=5.5.0",
  719. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  720. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  721. },
  722. "bin": [
  723. "scripts/release"
  724. ],
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-main": "2.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "SelfUpdate\\": "src"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Alexander Menk",
  743. "email": "menk@mestrona.net"
  744. },
  745. {
  746. "name": "Greg Anderson",
  747. "email": "greg.1.anderson@greenknowe.org"
  748. }
  749. ],
  750. "description": "Provides a self:update command for Symfony Console applications.",
  751. "support": {
  752. "issues": "https://github.com/consolidation/self-update/issues",
  753. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  754. },
  755. "time": "2023-03-18T01:37:41+00:00"
  756. },
  757. {
  758. "name": "consolidation/site-alias",
  759. "version": "4.1.0",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/site-alias.git",
  763. "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/1056ceb93f6aafe6f7600d7bbe1b62b8488abccf",
  768. "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/config": "^1.2.1 || ^2 || ^3",
  773. "php": ">=7.4",
  774. "symfony/filesystem": "^5.4 || ^6 || ^7",
  775. "symfony/finder": "^5 || ^6 || ^7"
  776. },
  777. "require-dev": {
  778. "php-coveralls/php-coveralls": "^2.4.2",
  779. "phpunit/phpunit": ">=7",
  780. "squizlabs/php_codesniffer": "^3",
  781. "symfony/var-dumper": "^4",
  782. "yoast/phpunit-polyfills": "^0.2.0"
  783. },
  784. "type": "library",
  785. "extra": {
  786. "branch-alias": {
  787. "dev-main": "4.x-dev"
  788. }
  789. },
  790. "autoload": {
  791. "psr-4": {
  792. "Consolidation\\SiteAlias\\": "src"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Greg Anderson",
  802. "email": "greg.1.anderson@greenknowe.org"
  803. },
  804. {
  805. "name": "Moshe Weitzman",
  806. "email": "weitzman@tejasa.com"
  807. }
  808. ],
  809. "description": "Manage alias records for local and remote sites.",
  810. "support": {
  811. "issues": "https://github.com/consolidation/site-alias/issues",
  812. "source": "https://github.com/consolidation/site-alias/tree/4.1.0"
  813. },
  814. "time": "2024-04-05T15:58:04+00:00"
  815. },
  816. {
  817. "name": "consolidation/site-process",
  818. "version": "5.4.0",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/consolidation/site-process.git",
  822. "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/consolidation/site-process/zipball/7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a",
  827. "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a",
  828. "shasum": ""
  829. },
  830. "require": {
  831. "consolidation/config": "^2 || ^3",
  832. "consolidation/site-alias": "^3 || ^4",
  833. "php": ">=8.0.14",
  834. "symfony/console": "^5.4 || ^6 || ^7",
  835. "symfony/process": "^6 || ^7"
  836. },
  837. "require-dev": {
  838. "phpunit/phpunit": "^9",
  839. "squizlabs/php_codesniffer": "^3"
  840. },
  841. "type": "library",
  842. "extra": {
  843. "branch-alias": {
  844. "dev-main": "5.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Consolidation\\SiteProcess\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Greg Anderson",
  859. "email": "greg.1.anderson@greenknowe.org"
  860. },
  861. {
  862. "name": "Moshe Weitzman",
  863. "email": "weitzman@tejasa.com"
  864. }
  865. ],
  866. "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.",
  867. "support": {
  868. "issues": "https://github.com/consolidation/site-process/issues",
  869. "source": "https://github.com/consolidation/site-process/tree/5.4.0"
  870. },
  871. "time": "2024-04-06T00:00:28+00:00"
  872. },
  873. {
  874. "name": "cweagans/composer-patches",
  875. "version": "1.7.3",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/cweagans/composer-patches.git",
  879. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  884. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "composer-plugin-api": "^1.0 || ^2.0",
  889. "php": ">=5.3.0"
  890. },
  891. "require-dev": {
  892. "composer/composer": "~1.0 || ~2.0",
  893. "phpunit/phpunit": "~4.6"
  894. },
  895. "type": "composer-plugin",
  896. "extra": {
  897. "class": "cweagans\\Composer\\Patches"
  898. },
  899. "autoload": {
  900. "psr-4": {
  901. "cweagans\\Composer\\": "src"
  902. }
  903. },
  904. "notification-url": "https://packagist.org/downloads/",
  905. "license": [
  906. "BSD-3-Clause"
  907. ],
  908. "authors": [
  909. {
  910. "name": "Cameron Eagans",
  911. "email": "me@cweagans.net"
  912. }
  913. ],
  914. "description": "Provides a way to patch Composer packages.",
  915. "support": {
  916. "issues": "https://github.com/cweagans/composer-patches/issues",
  917. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  918. },
  919. "time": "2022-12-20T22:53:13+00:00"
  920. },
  921. {
  922. "name": "dekor/php-array-table",
  923. "version": "2.0",
  924. "source": {
  925. "type": "git",
  926. "url": "https://github.com/deniskoronets/php-array-table.git",
  927. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  928. },
  929. "dist": {
  930. "type": "zip",
  931. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  932. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  933. "shasum": ""
  934. },
  935. "require": {
  936. "ext-mbstring": "*",
  937. "php": ">=5.6.0"
  938. },
  939. "require-dev": {
  940. "phpunit/phpunit": "^10"
  941. },
  942. "type": "library",
  943. "autoload": {
  944. "psr-4": {
  945. "dekor\\": "src"
  946. }
  947. },
  948. "notification-url": "https://packagist.org/downloads/",
  949. "license": [
  950. "BSD-3-Clause"
  951. ],
  952. "authors": [
  953. {
  954. "name": "Denis Koronets",
  955. "email": "deniskoronets@woo.zp.ua",
  956. "homepage": "https://woo.zp.ua/"
  957. }
  958. ],
  959. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  960. "keywords": [
  961. "library",
  962. "php"
  963. ],
  964. "support": {
  965. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  966. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  967. },
  968. "time": "2023-02-10T10:13:42+00:00"
  969. },
  970. {
  971. "name": "dflydev/dot-access-data",
  972. "version": "v3.0.3",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  976. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  981. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "php": "^7.1 || ^8.0"
  986. },
  987. "require-dev": {
  988. "phpstan/phpstan": "^0.12.42",
  989. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  990. "scrutinizer/ocular": "1.6.0",
  991. "squizlabs/php_codesniffer": "^3.5",
  992. "vimeo/psalm": "^4.0.0"
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-main": "3.x-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Dflydev\\DotAccessData\\": "src/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "authors": [
  1010. {
  1011. "name": "Dragonfly Development Inc.",
  1012. "email": "info@dflydev.com",
  1013. "homepage": "http://dflydev.com"
  1014. },
  1015. {
  1016. "name": "Beau Simensen",
  1017. "email": "beau@dflydev.com",
  1018. "homepage": "http://beausimensen.com"
  1019. },
  1020. {
  1021. "name": "Carlos Frutos",
  1022. "email": "carlos@kiwing.it",
  1023. "homepage": "https://github.com/cfrutos"
  1024. },
  1025. {
  1026. "name": "Colin O'Dell",
  1027. "email": "colinodell@gmail.com",
  1028. "homepage": "https://www.colinodell.com"
  1029. }
  1030. ],
  1031. "description": "Given a deep data structure, access data by dot notation.",
  1032. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1033. "keywords": [
  1034. "access",
  1035. "data",
  1036. "dot",
  1037. "notation"
  1038. ],
  1039. "support": {
  1040. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1041. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1042. },
  1043. "time": "2024-07-08T12:26:09+00:00"
  1044. },
  1045. {
  1046. "name": "doctrine/annotations",
  1047. "version": "1.14.4",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/doctrine/annotations.git",
  1051. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1056. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "doctrine/lexer": "^1 || ^2",
  1061. "ext-tokenizer": "*",
  1062. "php": "^7.1 || ^8.0",
  1063. "psr/cache": "^1 || ^2 || ^3"
  1064. },
  1065. "require-dev": {
  1066. "doctrine/cache": "^1.11 || ^2.0",
  1067. "doctrine/coding-standard": "^9 || ^12",
  1068. "phpstan/phpstan": "~1.4.10 || ^1.10.28",
  1069. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1070. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7",
  1071. "vimeo/psalm": "^4.30 || ^5.14"
  1072. },
  1073. "suggest": {
  1074. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1075. },
  1076. "type": "library",
  1077. "autoload": {
  1078. "psr-4": {
  1079. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1080. }
  1081. },
  1082. "notification-url": "https://packagist.org/downloads/",
  1083. "license": [
  1084. "MIT"
  1085. ],
  1086. "authors": [
  1087. {
  1088. "name": "Guilherme Blanco",
  1089. "email": "guilhermeblanco@gmail.com"
  1090. },
  1091. {
  1092. "name": "Roman Borschel",
  1093. "email": "roman@code-factory.org"
  1094. },
  1095. {
  1096. "name": "Benjamin Eberlei",
  1097. "email": "kontakt@beberlei.de"
  1098. },
  1099. {
  1100. "name": "Jonathan Wage",
  1101. "email": "jonwage@gmail.com"
  1102. },
  1103. {
  1104. "name": "Johannes Schmitt",
  1105. "email": "schmittjoh@gmail.com"
  1106. }
  1107. ],
  1108. "description": "Docblock Annotations Parser",
  1109. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1110. "keywords": [
  1111. "annotations",
  1112. "docblock",
  1113. "parser"
  1114. ],
  1115. "support": {
  1116. "issues": "https://github.com/doctrine/annotations/issues",
  1117. "source": "https://github.com/doctrine/annotations/tree/1.14.4"
  1118. },
  1119. "time": "2024-09-05T10:15:52+00:00"
  1120. },
  1121. {
  1122. "name": "doctrine/common",
  1123. "version": "3.4.4",
  1124. "source": {
  1125. "type": "git",
  1126. "url": "https://github.com/doctrine/common.git",
  1127. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a"
  1128. },
  1129. "dist": {
  1130. "type": "zip",
  1131. "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1132. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1133. "shasum": ""
  1134. },
  1135. "require": {
  1136. "doctrine/persistence": "^2.0 || ^3.0",
  1137. "php": "^7.1 || ^8.0"
  1138. },
  1139. "require-dev": {
  1140. "doctrine/coding-standard": "^9.0 || ^10.0",
  1141. "doctrine/collections": "^1",
  1142. "phpstan/phpstan": "^1.4.1",
  1143. "phpstan/phpstan-phpunit": "^1",
  1144. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1145. "squizlabs/php_codesniffer": "^3.0",
  1146. "symfony/phpunit-bridge": "^6.1",
  1147. "vimeo/psalm": "^4.4"
  1148. },
  1149. "type": "library",
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Doctrine\\Common\\": "src"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Guilherme Blanco",
  1162. "email": "guilhermeblanco@gmail.com"
  1163. },
  1164. {
  1165. "name": "Roman Borschel",
  1166. "email": "roman@code-factory.org"
  1167. },
  1168. {
  1169. "name": "Benjamin Eberlei",
  1170. "email": "kontakt@beberlei.de"
  1171. },
  1172. {
  1173. "name": "Jonathan Wage",
  1174. "email": "jonwage@gmail.com"
  1175. },
  1176. {
  1177. "name": "Johannes Schmitt",
  1178. "email": "schmittjoh@gmail.com"
  1179. },
  1180. {
  1181. "name": "Marco Pivetta",
  1182. "email": "ocramius@gmail.com"
  1183. }
  1184. ],
  1185. "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.",
  1186. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1187. "keywords": [
  1188. "common",
  1189. "doctrine",
  1190. "php"
  1191. ],
  1192. "support": {
  1193. "issues": "https://github.com/doctrine/common/issues",
  1194. "source": "https://github.com/doctrine/common/tree/3.4.4"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://www.doctrine-project.org/sponsorship.html",
  1199. "type": "custom"
  1200. },
  1201. {
  1202. "url": "https://www.patreon.com/phpdoctrine",
  1203. "type": "patreon"
  1204. },
  1205. {
  1206. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1207. "type": "tidelift"
  1208. }
  1209. ],
  1210. "time": "2024-04-16T13:35:33+00:00"
  1211. },
  1212. {
  1213. "name": "doctrine/deprecations",
  1214. "version": "1.1.3",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/doctrine/deprecations.git",
  1218. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1223. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": "^7.1 || ^8.0"
  1228. },
  1229. "require-dev": {
  1230. "doctrine/coding-standard": "^9",
  1231. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1232. "phpstan/phpstan-phpunit": "^1.0",
  1233. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1234. "psalm/plugin-phpunit": "0.18.4",
  1235. "psr/log": "^1 || ^2 || ^3",
  1236. "vimeo/psalm": "4.30.0 || 5.12.0"
  1237. },
  1238. "suggest": {
  1239. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1240. },
  1241. "type": "library",
  1242. "autoload": {
  1243. "psr-4": {
  1244. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1245. }
  1246. },
  1247. "notification-url": "https://packagist.org/downloads/",
  1248. "license": [
  1249. "MIT"
  1250. ],
  1251. "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.",
  1252. "homepage": "https://www.doctrine-project.org/",
  1253. "support": {
  1254. "issues": "https://github.com/doctrine/deprecations/issues",
  1255. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1256. },
  1257. "time": "2024-01-30T19:34:25+00:00"
  1258. },
  1259. {
  1260. "name": "doctrine/event-manager",
  1261. "version": "2.0.1",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/doctrine/event-manager.git",
  1265. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1270. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "php": "^8.1"
  1275. },
  1276. "conflict": {
  1277. "doctrine/common": "<2.9"
  1278. },
  1279. "require-dev": {
  1280. "doctrine/coding-standard": "^12",
  1281. "phpstan/phpstan": "^1.8.8",
  1282. "phpunit/phpunit": "^10.5",
  1283. "vimeo/psalm": "^5.24"
  1284. },
  1285. "type": "library",
  1286. "autoload": {
  1287. "psr-4": {
  1288. "Doctrine\\Common\\": "src"
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "authors": [
  1296. {
  1297. "name": "Guilherme Blanco",
  1298. "email": "guilhermeblanco@gmail.com"
  1299. },
  1300. {
  1301. "name": "Roman Borschel",
  1302. "email": "roman@code-factory.org"
  1303. },
  1304. {
  1305. "name": "Benjamin Eberlei",
  1306. "email": "kontakt@beberlei.de"
  1307. },
  1308. {
  1309. "name": "Jonathan Wage",
  1310. "email": "jonwage@gmail.com"
  1311. },
  1312. {
  1313. "name": "Johannes Schmitt",
  1314. "email": "schmittjoh@gmail.com"
  1315. },
  1316. {
  1317. "name": "Marco Pivetta",
  1318. "email": "ocramius@gmail.com"
  1319. }
  1320. ],
  1321. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1322. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1323. "keywords": [
  1324. "event",
  1325. "event dispatcher",
  1326. "event manager",
  1327. "event system",
  1328. "events"
  1329. ],
  1330. "support": {
  1331. "issues": "https://github.com/doctrine/event-manager/issues",
  1332. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1333. },
  1334. "funding": [
  1335. {
  1336. "url": "https://www.doctrine-project.org/sponsorship.html",
  1337. "type": "custom"
  1338. },
  1339. {
  1340. "url": "https://www.patreon.com/phpdoctrine",
  1341. "type": "patreon"
  1342. },
  1343. {
  1344. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1345. "type": "tidelift"
  1346. }
  1347. ],
  1348. "time": "2024-05-22T20:47:39+00:00"
  1349. },
  1350. {
  1351. "name": "doctrine/lexer",
  1352. "version": "2.1.1",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/doctrine/lexer.git",
  1356. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1361. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "doctrine/deprecations": "^1.0",
  1366. "php": "^7.1 || ^8.0"
  1367. },
  1368. "require-dev": {
  1369. "doctrine/coding-standard": "^9 || ^12",
  1370. "phpstan/phpstan": "^1.3",
  1371. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1372. "psalm/plugin-phpunit": "^0.18.3",
  1373. "vimeo/psalm": "^4.11 || ^5.21"
  1374. },
  1375. "type": "library",
  1376. "autoload": {
  1377. "psr-4": {
  1378. "Doctrine\\Common\\Lexer\\": "src"
  1379. }
  1380. },
  1381. "notification-url": "https://packagist.org/downloads/",
  1382. "license": [
  1383. "MIT"
  1384. ],
  1385. "authors": [
  1386. {
  1387. "name": "Guilherme Blanco",
  1388. "email": "guilhermeblanco@gmail.com"
  1389. },
  1390. {
  1391. "name": "Roman Borschel",
  1392. "email": "roman@code-factory.org"
  1393. },
  1394. {
  1395. "name": "Johannes Schmitt",
  1396. "email": "schmittjoh@gmail.com"
  1397. }
  1398. ],
  1399. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1400. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1401. "keywords": [
  1402. "annotations",
  1403. "docblock",
  1404. "lexer",
  1405. "parser",
  1406. "php"
  1407. ],
  1408. "support": {
  1409. "issues": "https://github.com/doctrine/lexer/issues",
  1410. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1411. },
  1412. "funding": [
  1413. {
  1414. "url": "https://www.doctrine-project.org/sponsorship.html",
  1415. "type": "custom"
  1416. },
  1417. {
  1418. "url": "https://www.patreon.com/phpdoctrine",
  1419. "type": "patreon"
  1420. },
  1421. {
  1422. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1423. "type": "tidelift"
  1424. }
  1425. ],
  1426. "time": "2024-02-05T11:35:39+00:00"
  1427. },
  1428. {
  1429. "name": "doctrine/persistence",
  1430. "version": "3.3.3",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/doctrine/persistence.git",
  1434. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1439. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1440. "shasum": ""
  1441. },
  1442. "require": {
  1443. "doctrine/event-manager": "^1 || ^2",
  1444. "php": "^7.2 || ^8.0",
  1445. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1446. },
  1447. "conflict": {
  1448. "doctrine/common": "<2.10"
  1449. },
  1450. "require-dev": {
  1451. "doctrine/coding-standard": "^12",
  1452. "doctrine/common": "^3.0",
  1453. "phpstan/phpstan": "1.11.1",
  1454. "phpstan/phpstan-phpunit": "^1",
  1455. "phpstan/phpstan-strict-rules": "^1.1",
  1456. "phpunit/phpunit": "^8.5 || ^9.5",
  1457. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1458. "vimeo/psalm": "4.30.0 || 5.24.0"
  1459. },
  1460. "type": "library",
  1461. "autoload": {
  1462. "psr-4": {
  1463. "Doctrine\\Persistence\\": "src/Persistence"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "Guilherme Blanco",
  1473. "email": "guilhermeblanco@gmail.com"
  1474. },
  1475. {
  1476. "name": "Roman Borschel",
  1477. "email": "roman@code-factory.org"
  1478. },
  1479. {
  1480. "name": "Benjamin Eberlei",
  1481. "email": "kontakt@beberlei.de"
  1482. },
  1483. {
  1484. "name": "Jonathan Wage",
  1485. "email": "jonwage@gmail.com"
  1486. },
  1487. {
  1488. "name": "Johannes Schmitt",
  1489. "email": "schmittjoh@gmail.com"
  1490. },
  1491. {
  1492. "name": "Marco Pivetta",
  1493. "email": "ocramius@gmail.com"
  1494. }
  1495. ],
  1496. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1497. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1498. "keywords": [
  1499. "mapper",
  1500. "object",
  1501. "odm",
  1502. "orm",
  1503. "persistence"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/doctrine/persistence/issues",
  1507. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://www.doctrine-project.org/sponsorship.html",
  1512. "type": "custom"
  1513. },
  1514. {
  1515. "url": "https://www.patreon.com/phpdoctrine",
  1516. "type": "patreon"
  1517. },
  1518. {
  1519. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1520. "type": "tidelift"
  1521. }
  1522. ],
  1523. "time": "2024-06-20T10:14:30+00:00"
  1524. },
  1525. {
  1526. "name": "drupal/addtoany",
  1527. "version": "2.0.5",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://git.drupalcode.org/project/addtoany.git",
  1531. "reference": "2.0.5"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.5.zip",
  1536. "reference": "2.0.5",
  1537. "shasum": "b3b26968548c1605a641b12ff25d03edc8497df6"
  1538. },
  1539. "require": {
  1540. "drupal/core": "^9.4 || ^10.0"
  1541. },
  1542. "type": "drupal-module",
  1543. "extra": {
  1544. "drupal": {
  1545. "version": "2.0.5",
  1546. "datestamp": "1698825601",
  1547. "security-coverage": {
  1548. "status": "covered",
  1549. "message": "Covered by Drupal's security advisory policy"
  1550. }
  1551. }
  1552. },
  1553. "notification-url": "https://packages.drupal.org/8/downloads",
  1554. "license": [
  1555. "GPL-2.0-or-later"
  1556. ],
  1557. "authors": [
  1558. {
  1559. "name": "AddToAny",
  1560. "homepage": "https://www.drupal.org/user/2640913"
  1561. },
  1562. {
  1563. "name": "micropat",
  1564. "homepage": "https://www.drupal.org/user/260224"
  1565. }
  1566. ],
  1567. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1568. "homepage": "https://www.drupal.org/project/addtoany",
  1569. "keywords": [
  1570. "Drupal"
  1571. ],
  1572. "support": {
  1573. "source": "https://git.drupalcode.org/project/addtoany",
  1574. "issues": "https://www.drupal.org/project/issues/addtoany"
  1575. }
  1576. },
  1577. {
  1578. "name": "drupal/admin_toolbar",
  1579. "version": "3.5.0",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1583. "reference": "3.5.0"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.0.zip",
  1588. "reference": "3.5.0",
  1589. "shasum": "099e8d4dc98e1d551b4f9cffdc39599eb8ad04e8"
  1590. },
  1591. "require": {
  1592. "drupal/core": "^9.5 || ^10 || ^11"
  1593. },
  1594. "require-dev": {
  1595. "drupal/admin_toolbar_tools": "*"
  1596. },
  1597. "type": "drupal-module",
  1598. "extra": {
  1599. "drupal": {
  1600. "version": "3.5.0",
  1601. "datestamp": "1722639094",
  1602. "security-coverage": {
  1603. "status": "covered",
  1604. "message": "Covered by Drupal's security advisory policy"
  1605. }
  1606. }
  1607. },
  1608. "notification-url": "https://packages.drupal.org/8/downloads",
  1609. "license": [
  1610. "GPL-2.0-or-later"
  1611. ],
  1612. "authors": [
  1613. {
  1614. "name": "Wilfrid Roze (eme)",
  1615. "homepage": "https://www.drupal.org/u/eme",
  1616. "role": "Maintainer"
  1617. },
  1618. {
  1619. "name": "Romain Jarraud (romainj)",
  1620. "homepage": "https://www.drupal.org/u/romainj",
  1621. "role": "Maintainer"
  1622. },
  1623. {
  1624. "name": "Adrian Cid Almaguer (adriancid)",
  1625. "homepage": "https://www.drupal.org/u/adriancid",
  1626. "email": "adriancid@gmail.com",
  1627. "role": "Maintainer"
  1628. },
  1629. {
  1630. "name": "Mohamed Anis Taktak (matio89)",
  1631. "homepage": "https://www.drupal.org/u/matio89",
  1632. "role": "Maintainer"
  1633. },
  1634. {
  1635. "name": "japerry",
  1636. "homepage": "https://www.drupal.org/user/45640"
  1637. },
  1638. {
  1639. "name": "matio89",
  1640. "homepage": "https://www.drupal.org/user/2320090"
  1641. },
  1642. {
  1643. "name": "musa.thomas",
  1644. "homepage": "https://www.drupal.org/user/1213824"
  1645. },
  1646. {
  1647. "name": "romainj",
  1648. "homepage": "https://www.drupal.org/user/370706"
  1649. }
  1650. ],
  1651. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1652. "homepage": "http://drupal.org/project/admin_toolbar",
  1653. "keywords": [
  1654. "Drupal",
  1655. "Toolbar"
  1656. ],
  1657. "support": {
  1658. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1659. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1660. }
  1661. },
  1662. {
  1663. "name": "drupal/adminimal_theme",
  1664. "version": "1.7.0",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1668. "reference": "8.x-1.7"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1673. "reference": "8.x-1.7",
  1674. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1675. },
  1676. "require": {
  1677. "drupal/core": "^9.3 || ^10",
  1678. "drupal/seven": "~1.0"
  1679. },
  1680. "type": "drupal-theme",
  1681. "extra": {
  1682. "drupal": {
  1683. "version": "8.x-1.7",
  1684. "datestamp": "1691504486",
  1685. "security-coverage": {
  1686. "status": "covered",
  1687. "message": "Covered by Drupal's security advisory policy"
  1688. }
  1689. }
  1690. },
  1691. "notification-url": "https://packages.drupal.org/8/downloads",
  1692. "license": [
  1693. "GPL-2.0+"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "ANDiTKO",
  1698. "homepage": "https://www.drupal.org/user/1428124"
  1699. },
  1700. {
  1701. "name": "andrey.troeglazov",
  1702. "homepage": "https://www.drupal.org/user/3145389"
  1703. },
  1704. {
  1705. "name": "realityloop",
  1706. "homepage": "https://www.drupal.org/user/139189"
  1707. },
  1708. {
  1709. "name": "rjjakes",
  1710. "homepage": "https://www.drupal.org/user/3457245"
  1711. }
  1712. ],
  1713. "description": "Drupal administration theme with modern minimalist design.",
  1714. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1715. "support": {
  1716. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1717. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1718. }
  1719. },
  1720. {
  1721. "name": "drupal/audiofield",
  1722. "version": "1.13.0",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://git.drupalcode.org/project/audiofield.git",
  1726. "reference": "8.x-1.13"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1731. "reference": "8.x-1.13",
  1732. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1733. },
  1734. "require": {
  1735. "drupal/core": "^8 || ^9 || ^10"
  1736. },
  1737. "type": "drupal-module",
  1738. "extra": {
  1739. "drupal": {
  1740. "version": "8.x-1.13",
  1741. "datestamp": "1681143245",
  1742. "security-coverage": {
  1743. "status": "covered",
  1744. "message": "Covered by Drupal's security advisory policy"
  1745. }
  1746. },
  1747. "drush": {
  1748. "services": {
  1749. "drush.services.yml": "^9"
  1750. }
  1751. }
  1752. },
  1753. "notification-url": "https://packages.drupal.org/8/downloads",
  1754. "license": [
  1755. "GPL-2.0-or-later"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "Daniel Moberly",
  1760. "homepage": "https://www.drupal.org/u/danielmoberly",
  1761. "role": "Maintainer"
  1762. },
  1763. {
  1764. "name": "tamerzg",
  1765. "homepage": "https://www.drupal.org/user/464564"
  1766. }
  1767. ],
  1768. "description": "AudioField Module",
  1769. "homepage": "https://www.drupal.org/project/audiofield",
  1770. "support": {
  1771. "source": "https://git.drupalcode.org/project/audiofield",
  1772. "issues": "https://www.drupal.org/project/issues/audiofield"
  1773. }
  1774. },
  1775. {
  1776. "name": "drupal/autologout",
  1777. "version": "2.0.0",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://git.drupalcode.org/project/autologout.git",
  1781. "reference": "2.0.0"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://ftp.drupal.org/files/projects/autologout-2.0.0.zip",
  1786. "reference": "2.0.0",
  1787. "shasum": "e9a1d4846cc323eef2eb54a0276023b1f0ff8bd2"
  1788. },
  1789. "require": {
  1790. "drupal/core": "^9.2 || ^10 || ^11",
  1791. "drupal/js_cookie": "^1.0"
  1792. },
  1793. "type": "drupal-module",
  1794. "extra": {
  1795. "drupal": {
  1796. "version": "2.0.0",
  1797. "datestamp": "1716413762",
  1798. "security-coverage": {
  1799. "status": "covered",
  1800. "message": "Covered by Drupal's security advisory policy"
  1801. }
  1802. }
  1803. },
  1804. "notification-url": "https://packages.drupal.org/8/downloads",
  1805. "license": [
  1806. "GPL-2.0-or-later"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "ajits",
  1811. "homepage": "https://www.drupal.org/user/981944"
  1812. },
  1813. {
  1814. "name": "AjK",
  1815. "homepage": "https://www.drupal.org/user/39030"
  1816. },
  1817. {
  1818. "name": "boshtian",
  1819. "homepage": "https://www.drupal.org/user/1773456"
  1820. },
  1821. {
  1822. "name": "dandrews",
  1823. "homepage": "https://www.drupal.org/user/2014490"
  1824. },
  1825. {
  1826. "name": "darksnow",
  1827. "homepage": "https://www.drupal.org/user/391915"
  1828. },
  1829. {
  1830. "name": "japerry",
  1831. "homepage": "https://www.drupal.org/user/45640"
  1832. },
  1833. {
  1834. "name": "johnennew",
  1835. "homepage": "https://www.drupal.org/user/1150042"
  1836. },
  1837. {
  1838. "name": "jrglasgow",
  1839. "homepage": "https://www.drupal.org/user/36590"
  1840. },
  1841. {
  1842. "name": "kmasood",
  1843. "homepage": "https://www.drupal.org/user/1262860"
  1844. },
  1845. {
  1846. "name": "levelos",
  1847. "homepage": "https://www.drupal.org/user/54135"
  1848. },
  1849. {
  1850. "name": "prabeen.giri",
  1851. "homepage": "https://www.drupal.org/user/913078"
  1852. },
  1853. {
  1854. "name": "scott_earnest",
  1855. "homepage": "https://www.drupal.org/user/416158"
  1856. },
  1857. {
  1858. "name": "str8",
  1859. "homepage": "https://www.drupal.org/user/2865063"
  1860. }
  1861. ],
  1862. "description": "Adds automated timed logout.",
  1863. "homepage": "http://drupal.org/project/autologout",
  1864. "support": {
  1865. "source": "https://git.drupalcode.org/project/autologout",
  1866. "issues": "https://www.drupal.org/project/issues/autologout"
  1867. }
  1868. },
  1869. {
  1870. "name": "drupal/basic",
  1871. "version": "3.0.0-alpha2",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://git.drupalcode.org/project/basic.git",
  1875. "reference": "3.0.0-alpha2"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  1880. "reference": "3.0.0-alpha2",
  1881. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  1882. },
  1883. "require": {
  1884. "drupal/core": "^9.3 || ^10"
  1885. },
  1886. "type": "drupal-theme",
  1887. "extra": {
  1888. "drupal": {
  1889. "version": "3.0.0-alpha2",
  1890. "datestamp": "1674980765",
  1891. "security-coverage": {
  1892. "status": "not-covered",
  1893. "message": "Alpha releases are not covered by Drupal security advisories."
  1894. }
  1895. }
  1896. },
  1897. "notification-url": "https://packages.drupal.org/8/downloads",
  1898. "license": [
  1899. "GPL-2.0+"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "Steve Krueger",
  1904. "homepage": "http://thejibe.com",
  1905. "email": "steve@thejibe.com",
  1906. "role": "Maintainer"
  1907. },
  1908. {
  1909. "name": "Joël Pittet",
  1910. "homepage": "https://www.drupal.org/u/joelpittet",
  1911. "email": "joel@pittet.ca",
  1912. "role": "Maintainer"
  1913. },
  1914. {
  1915. "name": "Leah Wagner",
  1916. "homepage": "http://thejibe.com",
  1917. "email": "leah@thejibe.com",
  1918. "role": "Maintainer"
  1919. },
  1920. {
  1921. "name": "Catherine Winters",
  1922. "homepage": "http://www.catherinewinters.com",
  1923. "email": "catherine@catherinewinters.com",
  1924. "role": "Maintainer"
  1925. },
  1926. {
  1927. "name": "Johannes Schmidt",
  1928. "homepage": "http://2tabs.com",
  1929. "email": "mail@2tabs.com",
  1930. "role": "Maintainer"
  1931. },
  1932. {
  1933. "name": "Chuck Kosman",
  1934. "homepage": "http://thejibe.com",
  1935. "email": "chuck@thejibe.com",
  1936. "role": "Maintainer"
  1937. },
  1938. {
  1939. "name": "SteveK",
  1940. "homepage": "https://www.drupal.org/user/111656"
  1941. }
  1942. ],
  1943. "description": "HTML5, SASS, Responsive grid starter theme.",
  1944. "homepage": "http://drupal.org/project/basic",
  1945. "support": {
  1946. "source": "http://cgit.drupalcode.org/basic",
  1947. "issues": "https://www.drupal.org/project/issues/basic",
  1948. "irc": "irc://irc.freenode.org/drupal-contribute"
  1949. }
  1950. },
  1951. {
  1952. "name": "drupal/bulkdelete",
  1953. "version": "dev-1.x",
  1954. "source": {
  1955. "type": "git",
  1956. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  1957. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  1958. },
  1959. "require": {
  1960. "drupal/core": "^8.7.7 || ^9 || ^10"
  1961. },
  1962. "type": "drupal-module",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-1.x": "1.x-dev"
  1966. },
  1967. "drupal": {
  1968. "version": "8.x-1.x-dev",
  1969. "datestamp": "1655322426",
  1970. "security-coverage": {
  1971. "status": "not-covered",
  1972. "message": "Dev releases are not covered by Drupal security advisories."
  1973. }
  1974. }
  1975. },
  1976. "notification-url": "https://packages.drupal.org/8/downloads",
  1977. "license": [
  1978. "GPL-2.0-or-later"
  1979. ],
  1980. "authors": [
  1981. {
  1982. "name": "Kars-T",
  1983. "homepage": "https://www.drupal.org/user/224499"
  1984. },
  1985. {
  1986. "name": "Rahul Seth",
  1987. "homepage": "https://www.drupal.org/user/2694359"
  1988. },
  1989. {
  1990. "name": "adriancid",
  1991. "homepage": "https://www.drupal.org/user/1962106"
  1992. },
  1993. {
  1994. "name": "robertDouglass",
  1995. "homepage": "https://www.drupal.org/user/5449"
  1996. }
  1997. ],
  1998. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  1999. "homepage": "https://www.drupal.org/project/bulkdelete",
  2000. "support": {
  2001. "source": "https://git.drupalcode.org/project/bulkdelete"
  2002. }
  2003. },
  2004. {
  2005. "name": "drupal/classy",
  2006. "version": "1.0.2",
  2007. "source": {
  2008. "type": "git",
  2009. "url": "https://git.drupalcode.org/project/classy.git",
  2010. "reference": "1.0.2"
  2011. },
  2012. "dist": {
  2013. "type": "zip",
  2014. "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip",
  2015. "reference": "1.0.2",
  2016. "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06"
  2017. },
  2018. "require": {
  2019. "drupal/core": "^9 || ^10",
  2020. "drupal/stable": "^2.0.0"
  2021. },
  2022. "type": "drupal-theme",
  2023. "extra": {
  2024. "drupal": {
  2025. "version": "1.0.2",
  2026. "datestamp": "1663949784",
  2027. "security-coverage": {
  2028. "status": "covered",
  2029. "message": "Covered by Drupal's security advisory policy"
  2030. }
  2031. }
  2032. },
  2033. "notification-url": "https://packages.drupal.org/8/downloads",
  2034. "license": [
  2035. "GPL-2.0-or-later"
  2036. ],
  2037. "authors": [
  2038. {
  2039. "name": "bnjmnm",
  2040. "homepage": "https://www.drupal.org/user/2369194"
  2041. },
  2042. {
  2043. "name": "davidhernandez",
  2044. "homepage": "https://www.drupal.org/user/274559"
  2045. },
  2046. {
  2047. "name": "lauriii",
  2048. "homepage": "https://www.drupal.org/user/1078742"
  2049. }
  2050. ],
  2051. "description": "The Classy base theme from Drupal 8/9 moved to contrib",
  2052. "homepage": "https://drupal.org/project/classy",
  2053. "support": {
  2054. "source": "https://git.drupalcode.org/project/classy",
  2055. "issues": "https://drupal.org/project/issues/classy"
  2056. }
  2057. },
  2058. {
  2059. "name": "drupal/color_field",
  2060. "version": "3.0.1",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://git.drupalcode.org/project/color_field.git",
  2064. "reference": "3.0.1"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  2069. "reference": "3.0.1",
  2070. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  2071. },
  2072. "require": {
  2073. "drupal/core": "^9 || ^10 || ^11"
  2074. },
  2075. "require-dev": {
  2076. "drupal/core-recommended": "^9 || ^10",
  2077. "drupal/feeds": "^3.0@beta",
  2078. "drupal/token": "~1.3"
  2079. },
  2080. "suggest": {
  2081. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2082. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2083. },
  2084. "type": "drupal-module",
  2085. "extra": {
  2086. "drupal": {
  2087. "version": "3.0.1",
  2088. "datestamp": "1717506868",
  2089. "security-coverage": {
  2090. "status": "covered",
  2091. "message": "Covered by Drupal's security advisory policy"
  2092. }
  2093. }
  2094. },
  2095. "notification-url": "https://packages.drupal.org/8/downloads",
  2096. "license": [
  2097. "GPL-2.0-or-later"
  2098. ],
  2099. "authors": [
  2100. {
  2101. "name": "targoo",
  2102. "homepage": "https://www.drupal.org/user/431910",
  2103. "role": "Maintainer"
  2104. },
  2105. {
  2106. "name": "Nick Wilde",
  2107. "homepage": "https://www.drupal.org/user/nickwilde",
  2108. "role": "Maintainer"
  2109. },
  2110. {
  2111. "name": "targoo",
  2112. "homepage": "https://www.drupal.org/user/431910"
  2113. }
  2114. ],
  2115. "description": "Provides a color field type to store the color value and opacity",
  2116. "homepage": "https://www.drupal.org/project/color_field",
  2117. "support": {
  2118. "source": "https://git.drupalcode.org/project/color_field",
  2119. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2120. }
  2121. },
  2122. {
  2123. "name": "drupal/composer_deploy",
  2124. "version": "1.7.0",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  2128. "reference": "8.x-1.7"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.7.zip",
  2133. "reference": "8.x-1.7",
  2134. "shasum": "545cb7d83c701fb68f4d95522f24d7270332ce8a"
  2135. },
  2136. "require": {
  2137. "drupal/core": "^8.8 || ^9 || ^10",
  2138. "webflo/drupal-finder": "^1.2"
  2139. },
  2140. "type": "drupal-module",
  2141. "extra": {
  2142. "drupal": {
  2143. "version": "8.x-1.7",
  2144. "datestamp": "1660818349",
  2145. "security-coverage": {
  2146. "status": "covered",
  2147. "message": "Covered by Drupal's security advisory policy"
  2148. }
  2149. }
  2150. },
  2151. "notification-url": "https://packages.drupal.org/8/downloads",
  2152. "license": [
  2153. "GPL-2.0+"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "jhedstrom",
  2158. "homepage": "https://www.drupal.org/user/208732"
  2159. },
  2160. {
  2161. "name": "joelpittet",
  2162. "homepage": "https://www.drupal.org/user/160302"
  2163. },
  2164. {
  2165. "name": "nerdstein",
  2166. "homepage": "https://www.drupal.org/user/1557710"
  2167. },
  2168. {
  2169. "name": "webflo",
  2170. "homepage": "https://www.drupal.org/user/254778"
  2171. }
  2172. ],
  2173. "description": "Provide version number from composers lockfile.",
  2174. "homepage": "https://www.drupal.org/project/composer_deploy",
  2175. "support": {
  2176. "source": "https://git.drupalcode.org/project/composer_deploy"
  2177. }
  2178. },
  2179. {
  2180. "name": "drupal/config_devel",
  2181. "version": "1.9.0",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://git.drupalcode.org/project/config_devel.git",
  2185. "reference": "8.x-1.9"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.9.zip",
  2190. "reference": "8.x-1.9",
  2191. "shasum": "a9cb90575ec854b8d8adb4633a0ddc47c490ca87"
  2192. },
  2193. "require": {
  2194. "drupal/core": "^9.3 || ^10"
  2195. },
  2196. "type": "drupal-module",
  2197. "extra": {
  2198. "drupal": {
  2199. "version": "8.x-1.9",
  2200. "datestamp": "1678264813",
  2201. "security-coverage": {
  2202. "status": "covered",
  2203. "message": "Covered by Drupal's security advisory policy"
  2204. }
  2205. }
  2206. },
  2207. "notification-url": "https://packages.drupal.org/8/downloads",
  2208. "license": [
  2209. "GPL-2.0+"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "alexpott",
  2214. "homepage": "https://www.drupal.org/user/157725"
  2215. },
  2216. {
  2217. "name": "benjy",
  2218. "homepage": "https://www.drupal.org/user/1852732"
  2219. },
  2220. {
  2221. "name": "chx",
  2222. "homepage": "https://www.drupal.org/user/9446"
  2223. },
  2224. {
  2225. "name": "joachim",
  2226. "homepage": "https://www.drupal.org/user/107701"
  2227. },
  2228. {
  2229. "name": "vijaycs85",
  2230. "homepage": "https://www.drupal.org/user/93488"
  2231. }
  2232. ],
  2233. "description": "Helps developers work with configuration.",
  2234. "homepage": "https://www.drupal.org/project/config_devel",
  2235. "support": {
  2236. "source": "https://git.drupalcode.org/project/config_devel"
  2237. }
  2238. },
  2239. {
  2240. "name": "drupal/config_filter",
  2241. "version": "2.6.0",
  2242. "source": {
  2243. "type": "git",
  2244. "url": "https://git.drupalcode.org/project/config_filter.git",
  2245. "reference": "8.x-2.6"
  2246. },
  2247. "dist": {
  2248. "type": "zip",
  2249. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2250. "reference": "8.x-2.6",
  2251. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2252. },
  2253. "require": {
  2254. "drupal/core": "^8.8 || ^9 || ^10"
  2255. },
  2256. "conflict": {
  2257. "drush/drush": "<10"
  2258. },
  2259. "suggest": {
  2260. "drupal/config_split": "Split site configuration for different environments."
  2261. },
  2262. "type": "drupal-module",
  2263. "extra": {
  2264. "drupal": {
  2265. "version": "8.x-2.6",
  2266. "datestamp": "1698308577",
  2267. "security-coverage": {
  2268. "status": "covered",
  2269. "message": "Covered by Drupal's security advisory policy"
  2270. }
  2271. }
  2272. },
  2273. "notification-url": "https://packages.drupal.org/8/downloads",
  2274. "license": [
  2275. "GPL-2.0-or-later"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "Fabian Bircher",
  2280. "homepage": "https://www.drupal.org/u/bircher",
  2281. "email": "opensource@fabianbircher.com",
  2282. "role": "Maintainer"
  2283. },
  2284. {
  2285. "name": "Nuvole Web",
  2286. "homepage": "http://nuvole.org",
  2287. "email": "info@nuvole.org",
  2288. "role": "Maintainer"
  2289. },
  2290. {
  2291. "name": "pescetti",
  2292. "homepage": "https://www.drupal.org/user/436244"
  2293. }
  2294. ],
  2295. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2296. "homepage": "https://www.drupal.org/project/config_filter",
  2297. "keywords": [
  2298. "Drupal",
  2299. "configuration",
  2300. "configuration management"
  2301. ],
  2302. "support": {
  2303. "source": "https://git.drupalcode.org/project/config_filter",
  2304. "issues": "https://www.drupal.org/project/issues/config_filter",
  2305. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2306. }
  2307. },
  2308. {
  2309. "name": "drupal/config_ignore",
  2310. "version": "3.3.0",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2314. "reference": "8.x-3.3"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2319. "reference": "8.x-3.3",
  2320. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2321. },
  2322. "require": {
  2323. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2324. },
  2325. "require-dev": {
  2326. "drupal/config_filter": "^1.8||^2.2",
  2327. "drush/drush": "^10 || ^11 || ^12"
  2328. },
  2329. "type": "drupal-module",
  2330. "extra": {
  2331. "drupal": {
  2332. "version": "8.x-3.3",
  2333. "datestamp": "1713299496",
  2334. "security-coverage": {
  2335. "status": "covered",
  2336. "message": "Covered by Drupal's security advisory policy"
  2337. }
  2338. }
  2339. },
  2340. "notification-url": "https://packages.drupal.org/8/downloads",
  2341. "license": [
  2342. "GPL-2.0-or-later"
  2343. ],
  2344. "authors": [
  2345. {
  2346. "name": "Tommy Lynge Jørgensen",
  2347. "homepage": "https://www.drupal.org/u/tlyngej",
  2348. "email": "tlyngej@gmail.com",
  2349. "role": "Maintainer"
  2350. },
  2351. {
  2352. "name": "Fabian Bircher",
  2353. "homepage": "https://www.drupal.org/u/bircher",
  2354. "role": "Maintainer"
  2355. },
  2356. {
  2357. "name": "tlyngej",
  2358. "homepage": "https://www.drupal.org/user/413139"
  2359. }
  2360. ],
  2361. "description": "Ignore certain configuration during import and export.",
  2362. "homepage": "http://drupal.org/project/config_ignore",
  2363. "support": {
  2364. "source": "https://git.drupalcode.org/project/config_ignore",
  2365. "issues": "http://drupal.org/project/config_ignore"
  2366. }
  2367. },
  2368. {
  2369. "name": "drupal/config_update",
  2370. "version": "2.0.0-alpha4",
  2371. "source": {
  2372. "type": "git",
  2373. "url": "https://git.drupalcode.org/project/config_update.git",
  2374. "reference": "2.0.0-alpha4"
  2375. },
  2376. "dist": {
  2377. "type": "zip",
  2378. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2379. "reference": "2.0.0-alpha4",
  2380. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2381. },
  2382. "require": {
  2383. "drupal/core": "^9.4 || ^10 || ^11"
  2384. },
  2385. "type": "drupal-module",
  2386. "extra": {
  2387. "drupal": {
  2388. "version": "2.0.0-alpha4",
  2389. "datestamp": "1724596931",
  2390. "security-coverage": {
  2391. "status": "not-covered",
  2392. "message": "Alpha releases are not covered by Drupal security advisories."
  2393. }
  2394. }
  2395. },
  2396. "notification-url": "https://packages.drupal.org/8/downloads",
  2397. "license": [
  2398. "GPL-2.0-or-later"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "codebymikey",
  2403. "homepage": "https://www.drupal.org/user/3573206"
  2404. },
  2405. {
  2406. "name": "pasqualle",
  2407. "homepage": "https://www.drupal.org/user/80733"
  2408. },
  2409. {
  2410. "name": "vishalkhode",
  2411. "homepage": "https://www.drupal.org/user/2439156"
  2412. }
  2413. ],
  2414. "description": "Provides basic revert and update functionality for other modules.",
  2415. "homepage": "https://www.drupal.org/project/config_update",
  2416. "support": {
  2417. "source": "https://git.drupalcode.org/project/config_update"
  2418. }
  2419. },
  2420. {
  2421. "name": "drupal/context",
  2422. "version": "5.0.0-rc1",
  2423. "source": {
  2424. "type": "git",
  2425. "url": "https://git.drupalcode.org/project/context.git",
  2426. "reference": "5.0.0-rc1"
  2427. },
  2428. "dist": {
  2429. "type": "zip",
  2430. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2431. "reference": "5.0.0-rc1",
  2432. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2433. },
  2434. "require": {
  2435. "drupal/core": "^9.3 || ^10"
  2436. },
  2437. "type": "drupal-module",
  2438. "extra": {
  2439. "drupal": {
  2440. "version": "5.0.0-rc1",
  2441. "datestamp": "1677054769",
  2442. "security-coverage": {
  2443. "status": "not-covered",
  2444. "message": "RC releases are not covered by Drupal security advisories."
  2445. }
  2446. }
  2447. },
  2448. "notification-url": "https://packages.drupal.org/8/downloads",
  2449. "license": [
  2450. "MIT"
  2451. ],
  2452. "authors": [
  2453. {
  2454. "name": "Christoffer Palm",
  2455. "homepage": "http://www.oddhill.se/",
  2456. "email": "christoffer.palm@oddhill.se",
  2457. "role": "Developer"
  2458. },
  2459. {
  2460. "name": "boshtian",
  2461. "homepage": "https://www.drupal.org/user/1773456"
  2462. },
  2463. {
  2464. "name": "colan",
  2465. "homepage": "https://www.drupal.org/user/58704"
  2466. },
  2467. {
  2468. "name": "emanaton",
  2469. "homepage": "https://www.drupal.org/user/120853"
  2470. },
  2471. {
  2472. "name": "febbraro",
  2473. "homepage": "https://www.drupal.org/user/43670"
  2474. },
  2475. {
  2476. "name": "fizk",
  2477. "homepage": "https://www.drupal.org/user/473174"
  2478. },
  2479. {
  2480. "name": "hass",
  2481. "homepage": "https://www.drupal.org/user/85918"
  2482. },
  2483. {
  2484. "name": "hefox",
  2485. "homepage": "https://www.drupal.org/user/426416"
  2486. },
  2487. {
  2488. "name": "jmiccolis",
  2489. "homepage": "https://www.drupal.org/user/31731"
  2490. },
  2491. {
  2492. "name": "Kristen Pol",
  2493. "homepage": "https://www.drupal.org/user/8389"
  2494. },
  2495. {
  2496. "name": "nedjo",
  2497. "homepage": "https://www.drupal.org/user/4481"
  2498. },
  2499. {
  2500. "name": "NormySan",
  2501. "homepage": "https://www.drupal.org/user/112352"
  2502. },
  2503. {
  2504. "name": "patricksettle",
  2505. "homepage": "https://www.drupal.org/user/26618"
  2506. },
  2507. {
  2508. "name": "paulocs",
  2509. "homepage": "https://www.drupal.org/user/3640109"
  2510. },
  2511. {
  2512. "name": "Steven Jones",
  2513. "homepage": "https://www.drupal.org/user/99644"
  2514. },
  2515. {
  2516. "name": "tekante",
  2517. "homepage": "https://www.drupal.org/user/640024"
  2518. },
  2519. {
  2520. "name": "yhahn",
  2521. "homepage": "https://www.drupal.org/user/264833"
  2522. }
  2523. ],
  2524. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2525. "homepage": "https://github.com/oddhill/context",
  2526. "keywords": [
  2527. "Drupal",
  2528. "block",
  2529. "conditions",
  2530. "context",
  2531. "visibility"
  2532. ],
  2533. "support": {
  2534. "source": "https://github.com/oddhill/context",
  2535. "issues": "https://github.com/oddhill/context/issues",
  2536. "docs": "https://github.com/oddhill/context"
  2537. }
  2538. },
  2539. {
  2540. "name": "drupal/core",
  2541. "version": "10.3.5",
  2542. "source": {
  2543. "type": "git",
  2544. "url": "https://github.com/drupal/core.git",
  2545. "reference": "831a269a4d99957638977ec325c3346f896d9f08"
  2546. },
  2547. "dist": {
  2548. "type": "zip",
  2549. "url": "https://api.github.com/repos/drupal/core/zipball/831a269a4d99957638977ec325c3346f896d9f08",
  2550. "reference": "831a269a4d99957638977ec325c3346f896d9f08",
  2551. "shasum": ""
  2552. },
  2553. "require": {
  2554. "asm89/stack-cors": "^2.1",
  2555. "composer-runtime-api": "^2.1",
  2556. "composer/semver": "^3.3",
  2557. "doctrine/annotations": "^1.14",
  2558. "egulias/email-validator": "^3.2.1|^4.0",
  2559. "ext-date": "*",
  2560. "ext-dom": "*",
  2561. "ext-filter": "*",
  2562. "ext-gd": "*",
  2563. "ext-hash": "*",
  2564. "ext-json": "*",
  2565. "ext-pcre": "*",
  2566. "ext-pdo": "*",
  2567. "ext-session": "*",
  2568. "ext-simplexml": "*",
  2569. "ext-spl": "*",
  2570. "ext-tokenizer": "*",
  2571. "ext-xml": "*",
  2572. "guzzlehttp/guzzle": "^7.5",
  2573. "guzzlehttp/psr7": "^2.4.5",
  2574. "masterminds/html5": "^2.7",
  2575. "mck89/peast": "^1.14",
  2576. "pear/archive_tar": "^1.4.14",
  2577. "php": ">=8.1.0",
  2578. "psr/log": "^3.0",
  2579. "sebastian/diff": "^4",
  2580. "symfony/console": "^6.4",
  2581. "symfony/dependency-injection": "^6.4",
  2582. "symfony/event-dispatcher": "^6.4",
  2583. "symfony/filesystem": "^6.4",
  2584. "symfony/finder": "^6.4",
  2585. "symfony/http-foundation": "^6.4",
  2586. "symfony/http-kernel": "^6.4",
  2587. "symfony/mailer": "^6.4",
  2588. "symfony/mime": "^6.4",
  2589. "symfony/polyfill-iconv": "^1.26",
  2590. "symfony/process": "^6.4",
  2591. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  2592. "symfony/routing": "^6.4",
  2593. "symfony/serializer": "^6.4",
  2594. "symfony/validator": "^6.4",
  2595. "symfony/yaml": "^6.4",
  2596. "twig/twig": "^3.14.0"
  2597. },
  2598. "conflict": {
  2599. "drush/drush": "<12.4.3"
  2600. },
  2601. "replace": {
  2602. "drupal/core-annotation": "self.version",
  2603. "drupal/core-assertion": "self.version",
  2604. "drupal/core-class-finder": "self.version",
  2605. "drupal/core-datetime": "self.version",
  2606. "drupal/core-dependency-injection": "self.version",
  2607. "drupal/core-diff": "self.version",
  2608. "drupal/core-discovery": "self.version",
  2609. "drupal/core-event-dispatcher": "self.version",
  2610. "drupal/core-file-cache": "self.version",
  2611. "drupal/core-file-security": "self.version",
  2612. "drupal/core-filesystem": "self.version",
  2613. "drupal/core-front-matter": "self.version",
  2614. "drupal/core-gettext": "self.version",
  2615. "drupal/core-graph": "self.version",
  2616. "drupal/core-http-foundation": "self.version",
  2617. "drupal/core-php-storage": "self.version",
  2618. "drupal/core-plugin": "self.version",
  2619. "drupal/core-proxy-builder": "self.version",
  2620. "drupal/core-render": "self.version",
  2621. "drupal/core-serialization": "self.version",
  2622. "drupal/core-transliteration": "self.version",
  2623. "drupal/core-utility": "self.version",
  2624. "drupal/core-uuid": "self.version",
  2625. "drupal/core-version": "self.version"
  2626. },
  2627. "suggest": {
  2628. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2629. },
  2630. "type": "drupal-core",
  2631. "extra": {
  2632. "drupal-scaffold": {
  2633. "file-mapping": {
  2634. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2635. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2636. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2637. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2638. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2639. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2640. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2641. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2642. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2643. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2644. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2645. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2646. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2647. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2648. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2649. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2650. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2651. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2652. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2653. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2654. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2655. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2656. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2657. }
  2658. }
  2659. },
  2660. "autoload": {
  2661. "files": [
  2662. "includes/bootstrap.inc"
  2663. ],
  2664. "psr-4": {
  2665. "Drupal\\Core\\": "lib/Drupal/Core",
  2666. "Drupal\\Component\\": "lib/Drupal/Component"
  2667. },
  2668. "classmap": [
  2669. "lib/Drupal.php",
  2670. "lib/Drupal/Component/DependencyInjection/Container.php",
  2671. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2672. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2673. "lib/Drupal/Component/Utility/Timer.php",
  2674. "lib/Drupal/Component/Utility/Unicode.php",
  2675. "lib/Drupal/Core/Cache/Cache.php",
  2676. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2677. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2678. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2679. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2680. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2681. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2682. "lib/Drupal/Core/Database/Connection.php",
  2683. "lib/Drupal/Core/Database/Database.php",
  2684. "lib/Drupal/Core/Database/StatementInterface.php",
  2685. "lib/Drupal/Core/DependencyInjection/Container.php",
  2686. "lib/Drupal/Core/DrupalKernel.php",
  2687. "lib/Drupal/Core/DrupalKernelInterface.php",
  2688. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2689. "lib/Drupal/Core/Site/Settings.php",
  2690. "lib/Drupal/Component/Datetime/Time.php"
  2691. ]
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "GPL-2.0-or-later"
  2696. ],
  2697. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2698. "support": {
  2699. "source": "https://github.com/drupal/core/tree/10.3.5"
  2700. },
  2701. "time": "2024-09-12T09:45:37+00:00"
  2702. },
  2703. {
  2704. "name": "drupal/core-composer-scaffold",
  2705. "version": "10.3.5",
  2706. "source": {
  2707. "type": "git",
  2708. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2709. "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc"
  2710. },
  2711. "dist": {
  2712. "type": "zip",
  2713. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/f58ab5c0d02d275c5aa226c4505b457e41b161cc",
  2714. "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc",
  2715. "shasum": ""
  2716. },
  2717. "require": {
  2718. "composer-plugin-api": "^2",
  2719. "php": ">=7.3.0"
  2720. },
  2721. "conflict": {
  2722. "drupal-composer/drupal-scaffold": "*"
  2723. },
  2724. "require-dev": {
  2725. "composer/composer": "^1.8@stable"
  2726. },
  2727. "type": "composer-plugin",
  2728. "extra": {
  2729. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2730. "branch-alias": {
  2731. "dev-master": "1.0.x-dev"
  2732. }
  2733. },
  2734. "autoload": {
  2735. "psr-4": {
  2736. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2737. }
  2738. },
  2739. "notification-url": "https://packagist.org/downloads/",
  2740. "license": [
  2741. "GPL-2.0-or-later"
  2742. ],
  2743. "description": "A flexible Composer project scaffold builder.",
  2744. "homepage": "https://www.drupal.org/project/drupal",
  2745. "keywords": [
  2746. "drupal"
  2747. ],
  2748. "support": {
  2749. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.3.5"
  2750. },
  2751. "time": "2024-08-22T14:31:34+00:00"
  2752. },
  2753. {
  2754. "name": "drupal/core-project-message",
  2755. "version": "10.3.5",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://github.com/drupal/core-project-message.git",
  2759. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2764. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2765. "shasum": ""
  2766. },
  2767. "require": {
  2768. "composer-plugin-api": "^2",
  2769. "php": ">=7.3.0"
  2770. },
  2771. "type": "composer-plugin",
  2772. "extra": {
  2773. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2774. },
  2775. "autoload": {
  2776. "psr-4": {
  2777. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2778. }
  2779. },
  2780. "notification-url": "https://packagist.org/downloads/",
  2781. "license": [
  2782. "GPL-2.0-or-later"
  2783. ],
  2784. "description": "Adds a message after Composer installation.",
  2785. "homepage": "https://www.drupal.org/project/drupal",
  2786. "keywords": [
  2787. "drupal"
  2788. ],
  2789. "support": {
  2790. "source": "https://github.com/drupal/core-project-message/tree/11.0.3"
  2791. },
  2792. "time": "2023-07-24T07:55:25+00:00"
  2793. },
  2794. {
  2795. "name": "drupal/core-recommended",
  2796. "version": "10.3.5",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/drupal/core-recommended.git",
  2800. "reference": "055a27d032e1fdcbac90976a14bdd152b368d761"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/055a27d032e1fdcbac90976a14bdd152b368d761",
  2805. "reference": "055a27d032e1fdcbac90976a14bdd152b368d761",
  2806. "shasum": ""
  2807. },
  2808. "require": {
  2809. "asm89/stack-cors": "~v2.2.0",
  2810. "composer/semver": "~3.4.0",
  2811. "doctrine/annotations": "~1.14.3",
  2812. "doctrine/deprecations": "~1.1.3",
  2813. "doctrine/lexer": "~2.1.1",
  2814. "drupal/core": "10.3.5",
  2815. "egulias/email-validator": "~4.0.2",
  2816. "guzzlehttp/guzzle": "~7.8.1",
  2817. "guzzlehttp/promises": "~2.0.2",
  2818. "guzzlehttp/psr7": "~2.6.2",
  2819. "masterminds/html5": "~2.9.0",
  2820. "mck89/peast": "~v1.16.2",
  2821. "pear/archive_tar": "~1.5.0",
  2822. "pear/console_getopt": "~v1.4.3",
  2823. "pear/pear-core-minimal": "~v1.10.15",
  2824. "pear/pear_exception": "~v1.0.2",
  2825. "psr/cache": "~3.0.0",
  2826. "psr/container": "~2.0.2",
  2827. "psr/event-dispatcher": "~1.0.0",
  2828. "psr/http-client": "~1.0.3",
  2829. "psr/http-factory": "~1.1.0",
  2830. "psr/log": "~3.0.0",
  2831. "ralouphie/getallheaders": "~3.0.3",
  2832. "sebastian/diff": "~4.0.6",
  2833. "symfony/console": "~v6.4.8",
  2834. "symfony/dependency-injection": "~v6.4.7",
  2835. "symfony/deprecation-contracts": "~v3.5.0",
  2836. "symfony/error-handler": "~v6.4.7",
  2837. "symfony/event-dispatcher": "~v6.4.7",
  2838. "symfony/event-dispatcher-contracts": "~v3.5.0",
  2839. "symfony/filesystem": "~v6.4.8",
  2840. "symfony/finder": "~v6.4.8",
  2841. "symfony/http-foundation": "~v6.4.7",
  2842. "symfony/http-kernel": "~v6.4.7",
  2843. "symfony/mailer": "~v6.4.7",
  2844. "symfony/mime": "~v6.4.7",
  2845. "symfony/polyfill-ctype": "~v1.29.0",
  2846. "symfony/polyfill-iconv": "~v1.29.0",
  2847. "symfony/polyfill-intl-grapheme": "~v1.29.0",
  2848. "symfony/polyfill-intl-idn": "~v1.29.0",
  2849. "symfony/polyfill-intl-normalizer": "~v1.29.0",
  2850. "symfony/polyfill-mbstring": "~v1.29.0",
  2851. "symfony/polyfill-php83": "~v1.29.0",
  2852. "symfony/process": "~v6.4.8",
  2853. "symfony/psr-http-message-bridge": "~v6.4.7",
  2854. "symfony/routing": "~v6.4.7",
  2855. "symfony/serializer": "~v6.4.7",
  2856. "symfony/service-contracts": "~v3.5.0",
  2857. "symfony/string": "~v6.4.8",
  2858. "symfony/translation-contracts": "~v3.5.0",
  2859. "symfony/validator": "~v6.4.7",
  2860. "symfony/var-dumper": "~v6.4.7",
  2861. "symfony/var-exporter": "~v6.4.7",
  2862. "symfony/yaml": "~v6.4.7",
  2863. "twig/twig": "~v3.14.0"
  2864. },
  2865. "conflict": {
  2866. "webflo/drupal-core-strict": "*"
  2867. },
  2868. "type": "metapackage",
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "GPL-2.0-or-later"
  2872. ],
  2873. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2874. "support": {
  2875. "source": "https://github.com/drupal/core-recommended/tree/10.3.5"
  2876. },
  2877. "time": "2024-09-12T09:45:37+00:00"
  2878. },
  2879. {
  2880. "name": "drupal/ctools",
  2881. "version": "4.1.0",
  2882. "source": {
  2883. "type": "git",
  2884. "url": "https://git.drupalcode.org/project/ctools.git",
  2885. "reference": "4.1.0"
  2886. },
  2887. "dist": {
  2888. "type": "zip",
  2889. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  2890. "reference": "4.1.0",
  2891. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  2892. },
  2893. "require": {
  2894. "drupal/core": "^9.5 || ^10 || ^11"
  2895. },
  2896. "type": "drupal-module",
  2897. "extra": {
  2898. "drupal": {
  2899. "version": "4.1.0",
  2900. "datestamp": "1718144949",
  2901. "security-coverage": {
  2902. "status": "covered",
  2903. "message": "Covered by Drupal's security advisory policy"
  2904. }
  2905. },
  2906. "branch-alias": {
  2907. "dev-8.x-3.x": "3.x-dev"
  2908. }
  2909. },
  2910. "notification-url": "https://packages.drupal.org/8/downloads",
  2911. "license": [
  2912. "GPL-2.0-or-later"
  2913. ],
  2914. "authors": [
  2915. {
  2916. "name": "Kris Vanderwater (EclipseGc)",
  2917. "homepage": "https://www.drupal.org/u/eclipsegc",
  2918. "role": "Maintainer"
  2919. },
  2920. {
  2921. "name": "Jakob Perry (japerry)",
  2922. "homepage": "https://www.drupal.org/u/japerry",
  2923. "role": "Maintainer"
  2924. },
  2925. {
  2926. "name": "Tim Plunkett (tim.plunkett)",
  2927. "homepage": "https://www.drupal.org/u/timplunkett",
  2928. "role": "Maintainer"
  2929. },
  2930. {
  2931. "name": "James Gilliland (neclimdul)",
  2932. "homepage": "https://www.drupal.org/u/neclimdul",
  2933. "role": "Maintainer"
  2934. },
  2935. {
  2936. "name": "Daniel Wehner (dawehner)",
  2937. "homepage": "https://www.drupal.org/u/dawehner",
  2938. "role": "Maintainer"
  2939. },
  2940. {
  2941. "name": "joelpittet",
  2942. "homepage": "https://www.drupal.org/user/160302"
  2943. },
  2944. {
  2945. "name": "merlinofchaos",
  2946. "homepage": "https://www.drupal.org/user/26979"
  2947. },
  2948. {
  2949. "name": "neclimdul",
  2950. "homepage": "https://www.drupal.org/user/48673"
  2951. },
  2952. {
  2953. "name": "sdboyer",
  2954. "homepage": "https://www.drupal.org/user/146719"
  2955. },
  2956. {
  2957. "name": "sun",
  2958. "homepage": "https://www.drupal.org/user/54136"
  2959. },
  2960. {
  2961. "name": "tim.plunkett",
  2962. "homepage": "https://www.drupal.org/user/241634"
  2963. }
  2964. ],
  2965. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2966. "homepage": "https://www.drupal.org/project/ctools",
  2967. "support": {
  2968. "source": "https://git.drupalcode.org/project/ctools",
  2969. "issues": "https://www.drupal.org/project/issues/ctools"
  2970. }
  2971. },
  2972. {
  2973. "name": "drupal/date_range_formatter",
  2974. "version": "4.0.2",
  2975. "source": {
  2976. "type": "git",
  2977. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  2978. "reference": "4.0.2"
  2979. },
  2980. "dist": {
  2981. "type": "zip",
  2982. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  2983. "reference": "4.0.2",
  2984. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  2985. },
  2986. "require": {
  2987. "drupal/core": "^8 || ^9 || ^10"
  2988. },
  2989. "type": "drupal-module",
  2990. "extra": {
  2991. "drupal": {
  2992. "version": "4.0.2",
  2993. "datestamp": "1703156621",
  2994. "security-coverage": {
  2995. "status": "covered",
  2996. "message": "Covered by Drupal's security advisory policy"
  2997. }
  2998. }
  2999. },
  3000. "notification-url": "https://packages.drupal.org/8/downloads",
  3001. "license": [
  3002. "GPL-2.0-or-later"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "maximpodorov",
  3007. "homepage": "https://www.drupal.org/user/515310"
  3008. },
  3009. {
  3010. "name": "sudishth",
  3011. "homepage": "https://www.drupal.org/user/1440562"
  3012. }
  3013. ],
  3014. "description": "Formats date ranges.",
  3015. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3016. "support": {
  3017. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3018. }
  3019. },
  3020. {
  3021. "name": "drupal/devel",
  3022. "version": "5.3.1",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://git.drupalcode.org/project/devel.git",
  3026. "reference": "5.3.1"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://ftp.drupal.org/files/projects/devel-5.3.1.zip",
  3031. "reference": "5.3.1",
  3032. "shasum": "6a5f13bdf93dc5f7f194b6af847589ae15e37b63"
  3033. },
  3034. "require": {
  3035. "doctrine/common": "^2.7 || ^3.4",
  3036. "drupal/core": "^10.3 || ^11 || ^12",
  3037. "php": ">=8.1",
  3038. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3039. },
  3040. "conflict": {
  3041. "drupal/core": "<10.3",
  3042. "drush/drush": "<12.5.1",
  3043. "kint-php/kint": "<3"
  3044. },
  3045. "require-dev": {
  3046. "drush/drush": "^13",
  3047. "firephp/firephp-core": "^0.5.3",
  3048. "kint-php/kint": "^5.1"
  3049. },
  3050. "suggest": {
  3051. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3052. },
  3053. "type": "drupal-module",
  3054. "extra": {
  3055. "drupal": {
  3056. "version": "5.3.1",
  3057. "datestamp": "1723258446",
  3058. "security-coverage": {
  3059. "status": "covered",
  3060. "message": "Covered by Drupal's security advisory policy"
  3061. }
  3062. }
  3063. },
  3064. "notification-url": "https://packages.drupal.org/8/downloads",
  3065. "license": [
  3066. "GPL-2.0-or-later"
  3067. ],
  3068. "authors": [
  3069. {
  3070. "name": "moshe weitzman",
  3071. "homepage": "https://www.drupal.org/user/23"
  3072. }
  3073. ],
  3074. "description": "Various blocks, pages, and functions for developers.",
  3075. "homepage": "https://www.drupal.org/project/devel",
  3076. "support": {
  3077. "source": "https://gitlab.com/drupalspoons/devel",
  3078. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3079. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3080. }
  3081. },
  3082. {
  3083. "name": "drupal/domain",
  3084. "version": "2.0.0-beta1",
  3085. "source": {
  3086. "type": "git",
  3087. "url": "https://git.drupalcode.org/project/domain.git",
  3088. "reference": "2.0.0-beta1"
  3089. },
  3090. "dist": {
  3091. "type": "zip",
  3092. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  3093. "reference": "2.0.0-beta1",
  3094. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  3095. },
  3096. "require": {
  3097. "drupal/core": "^9 || ^10"
  3098. },
  3099. "require-dev": {
  3100. "drupal/domain_access": "*",
  3101. "drupal/domain_config": "*"
  3102. },
  3103. "type": "drupal-module",
  3104. "extra": {
  3105. "drupal": {
  3106. "version": "2.0.0-beta1",
  3107. "datestamp": "1686067462",
  3108. "security-coverage": {
  3109. "status": "not-covered",
  3110. "message": "Beta releases are not covered by Drupal security advisories."
  3111. }
  3112. }
  3113. },
  3114. "notification-url": "https://packages.drupal.org/8/downloads",
  3115. "license": [
  3116. "GPL-2.0-or-later"
  3117. ],
  3118. "authors": [
  3119. {
  3120. "name": "agentrickard",
  3121. "homepage": "https://www.drupal.org/user/20975"
  3122. },
  3123. {
  3124. "name": "nonsie",
  3125. "homepage": "https://www.drupal.org/user/29899"
  3126. },
  3127. {
  3128. "name": "webflo",
  3129. "homepage": "https://www.drupal.org/user/254778"
  3130. }
  3131. ],
  3132. "description": "Creates domain records within a Drupal installation.",
  3133. "homepage": "https://www.drupal.org/project/domain",
  3134. "support": {
  3135. "source": "https://git.drupalcode.org/project/domain"
  3136. }
  3137. },
  3138. {
  3139. "name": "drupal/domain_config",
  3140. "version": "2.0.0-beta1",
  3141. "require": {
  3142. "drupal/core": "^9 || ^10",
  3143. "drupal/domain": "*"
  3144. },
  3145. "type": "metapackage",
  3146. "extra": {
  3147. "drupal": {
  3148. "version": "2.0.0-beta1",
  3149. "datestamp": "1686067462",
  3150. "security-coverage": {
  3151. "status": "not-covered",
  3152. "message": "Beta releases are not covered by Drupal security advisories."
  3153. }
  3154. }
  3155. },
  3156. "notification-url": "https://packages.drupal.org/8/downloads",
  3157. "license": [
  3158. "GPL-2.0-or-later"
  3159. ],
  3160. "authors": [
  3161. {
  3162. "name": "agentrickard",
  3163. "homepage": "https://www.drupal.org/user/20975"
  3164. },
  3165. {
  3166. "name": "nonsie",
  3167. "homepage": "https://www.drupal.org/user/29899"
  3168. },
  3169. {
  3170. "name": "webflo",
  3171. "homepage": "https://www.drupal.org/user/254778"
  3172. }
  3173. ],
  3174. "description": "Allows domain specific configuration.",
  3175. "homepage": "https://www.drupal.org/project/domain",
  3176. "support": {
  3177. "source": "https://git.drupalcode.org/project/domain"
  3178. }
  3179. },
  3180. {
  3181. "name": "drupal/domain_site_settings",
  3182. "version": "1.6.0",
  3183. "source": {
  3184. "type": "git",
  3185. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3186. "reference": "8.x-1.6"
  3187. },
  3188. "dist": {
  3189. "type": "zip",
  3190. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3191. "reference": "8.x-1.6",
  3192. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3193. },
  3194. "require": {
  3195. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3196. "drupal/domain": "^1.0 || ^2.0",
  3197. "drupal/domain_config": "*"
  3198. },
  3199. "type": "drupal-module",
  3200. "extra": {
  3201. "drupal": {
  3202. "version": "8.x-1.6",
  3203. "datestamp": "1726238712",
  3204. "security-coverage": {
  3205. "status": "covered",
  3206. "message": "Covered by Drupal's security advisory policy"
  3207. }
  3208. }
  3209. },
  3210. "notification-url": "https://packages.drupal.org/8/downloads",
  3211. "license": [
  3212. "GPL-2.0+"
  3213. ],
  3214. "authors": [
  3215. {
  3216. "name": "aloknarwaria",
  3217. "homepage": "https://www.drupal.org/user/906640"
  3218. },
  3219. {
  3220. "name": "jeroent",
  3221. "homepage": "https://www.drupal.org/user/2228934"
  3222. },
  3223. {
  3224. "name": "malaynayak",
  3225. "homepage": "https://www.drupal.org/user/3529755"
  3226. }
  3227. ],
  3228. "description": "Basic Site Setting for Domains.",
  3229. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3230. "keywords": [
  3231. "Drupal"
  3232. ],
  3233. "support": {
  3234. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3235. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3236. }
  3237. },
  3238. {
  3239. "name": "drupal/email_registration",
  3240. "version": "1.4.0",
  3241. "source": {
  3242. "type": "git",
  3243. "url": "https://git.drupalcode.org/project/email_registration.git",
  3244. "reference": "8.x-1.4"
  3245. },
  3246. "dist": {
  3247. "type": "zip",
  3248. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3249. "reference": "8.x-1.4",
  3250. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3251. },
  3252. "require": {
  3253. "drupal/core": "^9.1 || ^10"
  3254. },
  3255. "conflict": {
  3256. "drupal/commerce": "<2.12"
  3257. },
  3258. "require-dev": {
  3259. "drupal/commerce": "^2.0",
  3260. "drupal/token": "*"
  3261. },
  3262. "type": "drupal-module",
  3263. "extra": {
  3264. "drupal": {
  3265. "version": "8.x-1.4",
  3266. "datestamp": "1700548925",
  3267. "security-coverage": {
  3268. "status": "covered",
  3269. "message": "Covered by Drupal's security advisory policy"
  3270. }
  3271. }
  3272. },
  3273. "notification-url": "https://packages.drupal.org/8/downloads",
  3274. "license": [
  3275. "GPL-2.0-or-later"
  3276. ],
  3277. "authors": [
  3278. {
  3279. "name": "Greg Knaddison (greggles)",
  3280. "homepage": "https://www.drupal.org/u/greggles",
  3281. "role": "Maintainer"
  3282. },
  3283. {
  3284. "name": "Andrey Postnikov (andypost)",
  3285. "homepage": "https://www.drupal.org/u/andypost",
  3286. "role": "Maintainer"
  3287. },
  3288. {
  3289. "name": "Chris Herberte",
  3290. "homepage": "https://www.drupal.org/u/chris-herberte",
  3291. "role": "Maintainer"
  3292. },
  3293. {
  3294. "name": "Moshe Weitzman (moshe weitzman)",
  3295. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3296. "role": "Maintainer"
  3297. },
  3298. {
  3299. "name": "Grevil",
  3300. "homepage": "https://www.drupal.org/user/3668491"
  3301. },
  3302. {
  3303. "name": "moshe weitzman",
  3304. "homepage": "https://www.drupal.org/user/23"
  3305. }
  3306. ],
  3307. "description": "Allows users to register with an email address as their username.",
  3308. "homepage": "https://www.drupal.org/project/email_registration",
  3309. "support": {
  3310. "source": "https://git.drupalcode.org/project/email_registration",
  3311. "issues": "http://drupal.org/project/issues/email_registration"
  3312. }
  3313. },
  3314. {
  3315. "name": "drupal/entity",
  3316. "version": "1.5.0",
  3317. "source": {
  3318. "type": "git",
  3319. "url": "https://git.drupalcode.org/project/entity.git",
  3320. "reference": "8.x-1.5"
  3321. },
  3322. "dist": {
  3323. "type": "zip",
  3324. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.5.zip",
  3325. "reference": "8.x-1.5",
  3326. "shasum": "86c0b75c173144aaedde3e3258dc0d3ce11d1a22"
  3327. },
  3328. "require": {
  3329. "drupal/core": "^10.1 || ^11"
  3330. },
  3331. "type": "drupal-module",
  3332. "extra": {
  3333. "drupal": {
  3334. "version": "8.x-1.5",
  3335. "datestamp": "1723380062",
  3336. "security-coverage": {
  3337. "status": "covered",
  3338. "message": "Covered by Drupal's security advisory policy"
  3339. }
  3340. }
  3341. },
  3342. "notification-url": "https://packages.drupal.org/8/downloads",
  3343. "license": [
  3344. "GPL-2.0-or-later"
  3345. ],
  3346. "authors": [
  3347. {
  3348. "name": "berdir",
  3349. "homepage": "https://www.drupal.org/user/214652"
  3350. },
  3351. {
  3352. "name": "bojanz",
  3353. "homepage": "https://www.drupal.org/user/86106"
  3354. },
  3355. {
  3356. "name": "dawehner",
  3357. "homepage": "https://www.drupal.org/user/99340"
  3358. },
  3359. {
  3360. "name": "dixon_",
  3361. "homepage": "https://www.drupal.org/user/239911"
  3362. },
  3363. {
  3364. "name": "fago",
  3365. "homepage": "https://www.drupal.org/user/16747"
  3366. },
  3367. {
  3368. "name": "mglaman",
  3369. "homepage": "https://www.drupal.org/user/2416470"
  3370. },
  3371. {
  3372. "name": "TR",
  3373. "homepage": "https://www.drupal.org/user/202830"
  3374. }
  3375. ],
  3376. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3377. "homepage": "https://www.drupal.org/project/entity",
  3378. "support": {
  3379. "source": "https://git.drupalcode.org/project/entity",
  3380. "issues": "https://www.drupal.org/project/issues/entity"
  3381. }
  3382. },
  3383. {
  3384. "name": "drupal/field_group",
  3385. "version": "3.6.0",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://git.drupalcode.org/project/field_group.git",
  3389. "reference": "8.x-3.6"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3394. "reference": "8.x-3.6",
  3395. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3396. },
  3397. "require": {
  3398. "drupal/core": "^9.2 || ^10 || ^11"
  3399. },
  3400. "require-dev": {
  3401. "drupal/jquery_ui_accordion": "*"
  3402. },
  3403. "type": "drupal-module",
  3404. "extra": {
  3405. "drupal": {
  3406. "version": "8.x-3.6",
  3407. "datestamp": "1722672510",
  3408. "security-coverage": {
  3409. "status": "covered",
  3410. "message": "Covered by Drupal's security advisory policy"
  3411. }
  3412. }
  3413. },
  3414. "notification-url": "https://packages.drupal.org/8/downloads",
  3415. "license": [
  3416. "GPL-2.0-or-later"
  3417. ],
  3418. "authors": [
  3419. {
  3420. "name": "anybody",
  3421. "homepage": "https://www.drupal.org/user/291091"
  3422. },
  3423. {
  3424. "name": "grevil",
  3425. "homepage": "https://www.drupal.org/user/3668491"
  3426. },
  3427. {
  3428. "name": "hydra",
  3429. "homepage": "https://www.drupal.org/user/647364"
  3430. },
  3431. {
  3432. "name": "joevagyok",
  3433. "homepage": "https://www.drupal.org/user/2876343"
  3434. },
  3435. {
  3436. "name": "jyve",
  3437. "homepage": "https://www.drupal.org/user/591438"
  3438. },
  3439. {
  3440. "name": "nils.destoop",
  3441. "homepage": "https://www.drupal.org/user/361625"
  3442. },
  3443. {
  3444. "name": "Stalski",
  3445. "homepage": "https://www.drupal.org/user/322618"
  3446. },
  3447. {
  3448. "name": "swentel",
  3449. "homepage": "https://www.drupal.org/user/107403"
  3450. }
  3451. ],
  3452. "description": "Provides the field_group module.",
  3453. "homepage": "https://www.drupal.org/project/field_group",
  3454. "support": {
  3455. "source": "https://git.drupalcode.org/project/field_group",
  3456. "issues": "https://www.drupal.org/project/issues/field_group"
  3457. }
  3458. },
  3459. {
  3460. "name": "drupal/filefield_sources",
  3461. "version": "dev-2.0.x",
  3462. "source": {
  3463. "type": "git",
  3464. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3465. "reference": "3905bb005c2f96f7391abcd91004a81f13e83477"
  3466. },
  3467. "require": {
  3468. "drupal/core": "^9.2.0 | ^10"
  3469. },
  3470. "require-dev": {
  3471. "drupal/imce": "^3.0"
  3472. },
  3473. "type": "drupal-module",
  3474. "extra": {
  3475. "branch-alias": {
  3476. "dev-2.0.x": "2.0.x-dev"
  3477. },
  3478. "drupal": {
  3479. "version": "2.0.x-dev",
  3480. "datestamp": "1714083250",
  3481. "security-coverage": {
  3482. "status": "not-covered",
  3483. "message": "Dev releases are not covered by Drupal security advisories."
  3484. }
  3485. }
  3486. },
  3487. "notification-url": "https://packages.drupal.org/8/downloads",
  3488. "license": [
  3489. "GPL-2.0-or-later"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Nate Lampton (quicksketch)",
  3494. "homepage": "https://www.drupal.org/u/quicksketch",
  3495. "role": "Maintainer"
  3496. },
  3497. {
  3498. "name": "Andrey Khromyshev (profak)",
  3499. "homepage": "https://www.drupal.org/u/profak",
  3500. "role": "Maintainer"
  3501. },
  3502. {
  3503. "name": "David Valdez (gnuget)",
  3504. "homepage": "https://www.drupal.org/u/gnuget",
  3505. "role": "Maintainer"
  3506. },
  3507. {
  3508. "name": "quicksketch",
  3509. "homepage": "https://www.drupal.org/user/35821"
  3510. }
  3511. ],
  3512. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3513. "homepage": "https://www.drupal.org/project/filefield_sources",
  3514. "support": {
  3515. "source": "https://git.drupalcode.org/project/filefield_sources",
  3516. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3517. "irc": "irc://irc.freenode.org/drupal-contribute"
  3518. }
  3519. },
  3520. {
  3521. "name": "drupal/filter_perms",
  3522. "version": "2.0.1",
  3523. "source": {
  3524. "type": "git",
  3525. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3526. "reference": "2.0.1"
  3527. },
  3528. "dist": {
  3529. "type": "zip",
  3530. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.1.zip",
  3531. "reference": "2.0.1",
  3532. "shasum": "76949486b0a730c1fdfd9a8d773a3a96d2e0de7b"
  3533. },
  3534. "require": {
  3535. "drupal/core": "^9.0 || ^10.0 || ^11"
  3536. },
  3537. "type": "drupal-module",
  3538. "extra": {
  3539. "drupal": {
  3540. "version": "2.0.1",
  3541. "datestamp": "1722444219",
  3542. "security-coverage": {
  3543. "status": "covered",
  3544. "message": "Covered by Drupal's security advisory policy"
  3545. }
  3546. }
  3547. },
  3548. "notification-url": "https://packages.drupal.org/8/downloads",
  3549. "license": [
  3550. "GPL-2.0+"
  3551. ],
  3552. "authors": [
  3553. {
  3554. "name": "cYu",
  3555. "homepage": "https://www.drupal.org/user/202205"
  3556. },
  3557. {
  3558. "name": "deekayen",
  3559. "homepage": "https://www.drupal.org/user/972"
  3560. },
  3561. {
  3562. "name": "ivavictoria",
  3563. "homepage": "https://www.drupal.org/user/3061533"
  3564. },
  3565. {
  3566. "name": "justcaldwell",
  3567. "homepage": "https://www.drupal.org/user/290069"
  3568. },
  3569. {
  3570. "name": "mgbellaire",
  3571. "homepage": "https://www.drupal.org/user/1831932"
  3572. },
  3573. {
  3574. "name": "willzyx",
  3575. "homepage": "https://www.drupal.org/user/1043862"
  3576. }
  3577. ],
  3578. "description": "Provides role and module filters to simplify the user permissions page.",
  3579. "homepage": "https://www.drupal.org/project/filter_perms",
  3580. "support": {
  3581. "source": "http://cgit.drupalcode.org/filter_perms",
  3582. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3583. }
  3584. },
  3585. {
  3586. "name": "drupal/honeypot",
  3587. "version": "2.2.0",
  3588. "source": {
  3589. "type": "git",
  3590. "url": "https://git.drupalcode.org/project/honeypot.git",
  3591. "reference": "2.2.0"
  3592. },
  3593. "dist": {
  3594. "type": "zip",
  3595. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.0.zip",
  3596. "reference": "2.2.0",
  3597. "shasum": "56397c3779ebac1526cce9ecd39385017ee9a837"
  3598. },
  3599. "require": {
  3600. "drupal/core": "^10.3 || ^11"
  3601. },
  3602. "require-dev": {
  3603. "drupal/rules": "^4.0"
  3604. },
  3605. "type": "drupal-module",
  3606. "extra": {
  3607. "drupal": {
  3608. "version": "2.2.0",
  3609. "datestamp": "1723761042",
  3610. "security-coverage": {
  3611. "status": "covered",
  3612. "message": "Covered by Drupal's security advisory policy"
  3613. }
  3614. }
  3615. },
  3616. "notification-url": "https://packages.drupal.org/8/downloads",
  3617. "license": [
  3618. "GPL-2.0-or-later"
  3619. ],
  3620. "authors": [
  3621. {
  3622. "name": "Jeff Geerling",
  3623. "homepage": "https://www.drupal.org/user/389011",
  3624. "email": "geerlingguy@mac.com"
  3625. },
  3626. {
  3627. "name": "Manuel Garcia",
  3628. "homepage": "https://www.drupal.org/user/213194"
  3629. },
  3630. {
  3631. "name": "tr",
  3632. "homepage": "https://www.drupal.org/user/202830"
  3633. },
  3634. {
  3635. "name": "vijaycs85",
  3636. "homepage": "https://www.drupal.org/user/93488"
  3637. }
  3638. ],
  3639. "description": "Mitigates spam form submissions using the honeypot method.",
  3640. "homepage": "https://www.drupal.org/project/honeypot",
  3641. "keywords": [
  3642. "deterrent",
  3643. "form",
  3644. "honeypot",
  3645. "honeytrap",
  3646. "php",
  3647. "spam"
  3648. ],
  3649. "support": {
  3650. "source": "https://git.drupalcode.org/project/honeypot",
  3651. "issues": "https://www.drupal.org/project/issues/honeypot"
  3652. }
  3653. },
  3654. {
  3655. "name": "drupal/jquery_ui",
  3656. "version": "1.7.0",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3660. "reference": "8.x-1.7"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3665. "reference": "8.x-1.7",
  3666. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3667. },
  3668. "require": {
  3669. "drupal/core": "^9.2 || ^10 || ^11"
  3670. },
  3671. "type": "drupal-module",
  3672. "extra": {
  3673. "drupal": {
  3674. "version": "8.x-1.7",
  3675. "datestamp": "1717002098",
  3676. "security-coverage": {
  3677. "status": "covered",
  3678. "message": "Covered by Drupal's security advisory policy"
  3679. }
  3680. }
  3681. },
  3682. "notification-url": "https://packages.drupal.org/8/downloads",
  3683. "license": [
  3684. "GPL-2.0-or-later"
  3685. ],
  3686. "authors": [
  3687. {
  3688. "name": "bnjmnm",
  3689. "homepage": "https://www.drupal.org/user/2369194"
  3690. },
  3691. {
  3692. "name": "jjeff",
  3693. "homepage": "https://www.drupal.org/user/17190"
  3694. },
  3695. {
  3696. "name": "lauriii",
  3697. "homepage": "https://www.drupal.org/user/1078742"
  3698. },
  3699. {
  3700. "name": "litwol",
  3701. "homepage": "https://www.drupal.org/user/78134"
  3702. },
  3703. {
  3704. "name": "mfb",
  3705. "homepage": "https://www.drupal.org/user/12302"
  3706. },
  3707. {
  3708. "name": "mfer",
  3709. "homepage": "https://www.drupal.org/user/25701"
  3710. },
  3711. {
  3712. "name": "mikelutz",
  3713. "homepage": "https://www.drupal.org/user/2972409"
  3714. },
  3715. {
  3716. "name": "nod_",
  3717. "homepage": "https://www.drupal.org/user/598310"
  3718. },
  3719. {
  3720. "name": "phenaproxima",
  3721. "homepage": "https://www.drupal.org/user/205645"
  3722. },
  3723. {
  3724. "name": "RobLoach",
  3725. "homepage": "https://www.drupal.org/user/61114"
  3726. },
  3727. {
  3728. "name": "sun",
  3729. "homepage": "https://www.drupal.org/user/54136"
  3730. },
  3731. {
  3732. "name": "webchick",
  3733. "homepage": "https://www.drupal.org/user/24967"
  3734. },
  3735. {
  3736. "name": "Wim Leers",
  3737. "homepage": "https://www.drupal.org/user/99777"
  3738. },
  3739. {
  3740. "name": "zrpnr",
  3741. "homepage": "https://www.drupal.org/user/1448368"
  3742. }
  3743. ],
  3744. "description": "Provides jQuery UI library.",
  3745. "homepage": "https://www.drupal.org/project/jquery_ui",
  3746. "support": {
  3747. "source": "https://git.drupalcode.org/project/jquery_ui"
  3748. }
  3749. },
  3750. {
  3751. "name": "drupal/jquery_ui_draggable",
  3752. "version": "2.1.0",
  3753. "source": {
  3754. "type": "git",
  3755. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3756. "reference": "2.1.0"
  3757. },
  3758. "dist": {
  3759. "type": "zip",
  3760. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3761. "reference": "2.1.0",
  3762. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3763. },
  3764. "require": {
  3765. "drupal/core": "^9.2 || ^10 || ^11",
  3766. "drupal/jquery_ui": "^1.7"
  3767. },
  3768. "type": "drupal-module",
  3769. "extra": {
  3770. "drupal": {
  3771. "version": "2.1.0",
  3772. "datestamp": "1717015492",
  3773. "security-coverage": {
  3774. "status": "covered",
  3775. "message": "Covered by Drupal's security advisory policy"
  3776. }
  3777. }
  3778. },
  3779. "notification-url": "https://packages.drupal.org/8/downloads",
  3780. "license": [
  3781. "GPL-2.0-or-later"
  3782. ],
  3783. "authors": [
  3784. {
  3785. "name": "bnjmnm",
  3786. "homepage": "https://www.drupal.org/user/2369194"
  3787. },
  3788. {
  3789. "name": "lauriii",
  3790. "homepage": "https://www.drupal.org/user/1078742"
  3791. },
  3792. {
  3793. "name": "zrpnr",
  3794. "homepage": "https://www.drupal.org/user/1448368"
  3795. }
  3796. ],
  3797. "description": "Provides jQuery UI Draggable library.",
  3798. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3799. "support": {
  3800. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3801. }
  3802. },
  3803. {
  3804. "name": "drupal/jquery_ui_droppable",
  3805. "version": "2.1.0",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3809. "reference": "2.1.0"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3814. "reference": "2.1.0",
  3815. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3816. },
  3817. "require": {
  3818. "drupal/core": "^9.2 || ^10 || ^11",
  3819. "drupal/jquery_ui": "^1.7",
  3820. "drupal/jquery_ui_draggable": "^2.1"
  3821. },
  3822. "type": "drupal-module",
  3823. "extra": {
  3824. "drupal": {
  3825. "version": "2.1.0",
  3826. "datestamp": "1717031391",
  3827. "security-coverage": {
  3828. "status": "covered",
  3829. "message": "Covered by Drupal's security advisory policy"
  3830. }
  3831. }
  3832. },
  3833. "notification-url": "https://packages.drupal.org/8/downloads",
  3834. "license": [
  3835. "GPL-2.0-or-later"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "bnjmnm",
  3840. "homepage": "https://www.drupal.org/user/2369194"
  3841. },
  3842. {
  3843. "name": "lauriii",
  3844. "homepage": "https://www.drupal.org/user/1078742"
  3845. },
  3846. {
  3847. "name": "zrpnr",
  3848. "homepage": "https://www.drupal.org/user/1448368"
  3849. }
  3850. ],
  3851. "description": "Provides jQuery UI Droppable library.",
  3852. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3853. "support": {
  3854. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3855. }
  3856. },
  3857. {
  3858. "name": "drupal/jquery_ui_sortable",
  3859. "version": "2.0.1",
  3860. "source": {
  3861. "type": "git",
  3862. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3863. "reference": "2.0.1"
  3864. },
  3865. "dist": {
  3866. "type": "zip",
  3867. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  3868. "reference": "2.0.1",
  3869. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  3870. },
  3871. "require": {
  3872. "drupal/core": "^9.2 || ^10",
  3873. "drupal/jquery_ui": "^1.5"
  3874. },
  3875. "type": "drupal-module",
  3876. "extra": {
  3877. "drupal": {
  3878. "version": "2.0.1",
  3879. "datestamp": "1694604335",
  3880. "security-coverage": {
  3881. "status": "covered",
  3882. "message": "Covered by Drupal's security advisory policy"
  3883. }
  3884. }
  3885. },
  3886. "notification-url": "https://packages.drupal.org/8/downloads",
  3887. "license": [
  3888. "GPL-2.0-or-later"
  3889. ],
  3890. "authors": [
  3891. {
  3892. "name": "bnjmnm",
  3893. "homepage": "https://www.drupal.org/user/2369194"
  3894. },
  3895. {
  3896. "name": "lauriii",
  3897. "homepage": "https://www.drupal.org/user/1078742"
  3898. },
  3899. {
  3900. "name": "zrpnr",
  3901. "homepage": "https://www.drupal.org/user/1448368"
  3902. }
  3903. ],
  3904. "description": "Provides jQuery UI Sortable library.",
  3905. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  3906. "support": {
  3907. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  3908. }
  3909. },
  3910. {
  3911. "name": "drupal/js_cookie",
  3912. "version": "1.0.1",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://git.drupalcode.org/project/js_cookie.git",
  3916. "reference": "1.0.1"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  3921. "reference": "1.0.1",
  3922. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  3923. },
  3924. "require": {
  3925. "drupal/core": "^9 || ^10 || ^11"
  3926. },
  3927. "type": "drupal-module",
  3928. "extra": {
  3929. "drupal": {
  3930. "version": "1.0.1",
  3931. "datestamp": "1693951097",
  3932. "security-coverage": {
  3933. "status": "covered",
  3934. "message": "Covered by Drupal's security advisory policy"
  3935. }
  3936. }
  3937. },
  3938. "notification-url": "https://packages.drupal.org/8/downloads",
  3939. "license": [
  3940. "GPL-2.0-or-later"
  3941. ],
  3942. "authors": [
  3943. {
  3944. "name": "Dave Reid",
  3945. "homepage": "https://www.drupal.org/user/53892"
  3946. }
  3947. ],
  3948. "description": "Provides the js-cookie library as a dependency.",
  3949. "homepage": "https://www.drupal.org/project/js_cookie",
  3950. "support": {
  3951. "source": "https://git.drupalcode.org/project/js_cookie"
  3952. }
  3953. },
  3954. {
  3955. "name": "drupal/linkit",
  3956. "version": "6.1.4",
  3957. "source": {
  3958. "type": "git",
  3959. "url": "https://git.drupalcode.org/project/linkit.git",
  3960. "reference": "6.1.4"
  3961. },
  3962. "dist": {
  3963. "type": "zip",
  3964. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.4.zip",
  3965. "reference": "6.1.4",
  3966. "shasum": "f5544a39d691af5efd1532bd5403862a7153f60b"
  3967. },
  3968. "require": {
  3969. "drupal/core": "^10.1"
  3970. },
  3971. "require-dev": {
  3972. "drupal/ckeditor": "*",
  3973. "drupal/imce": "*"
  3974. },
  3975. "type": "drupal-module",
  3976. "extra": {
  3977. "drupal": {
  3978. "version": "6.1.4",
  3979. "datestamp": "1715203830",
  3980. "security-coverage": {
  3981. "status": "covered",
  3982. "message": "Covered by Drupal's security advisory policy"
  3983. }
  3984. }
  3985. },
  3986. "notification-url": "https://packages.drupal.org/8/downloads",
  3987. "license": [
  3988. "GPL-2.0-or-later"
  3989. ],
  3990. "authors": [
  3991. {
  3992. "name": "Emil Stjerneman",
  3993. "homepage": "https://stjerneman.com",
  3994. "email": "emil@stjerneman.com",
  3995. "role": "Maintainer"
  3996. },
  3997. {
  3998. "name": "johnwebdev",
  3999. "homepage": "https://www.drupal.org/user/3331569"
  4000. },
  4001. {
  4002. "name": "mark_fullmer",
  4003. "homepage": "https://www.drupal.org/user/2612816"
  4004. }
  4005. ],
  4006. "description": "Linkit - Enriched linking experience",
  4007. "homepage": "http://drupal.org/project/linkit",
  4008. "support": {
  4009. "source": "http://cgit.drupalcode.org/linkit",
  4010. "issues": "http://drupal.org/project/linkit"
  4011. }
  4012. },
  4013. {
  4014. "name": "drupal/login_emailusername",
  4015. "version": "2.1.0",
  4016. "source": {
  4017. "type": "git",
  4018. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4019. "reference": "2.1.0"
  4020. },
  4021. "dist": {
  4022. "type": "zip",
  4023. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4024. "reference": "2.1.0",
  4025. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4026. },
  4027. "require": {
  4028. "drupal/core": "^8.8 || ^9 || ^10"
  4029. },
  4030. "type": "drupal-module",
  4031. "extra": {
  4032. "drupal": {
  4033. "version": "2.1.0",
  4034. "datestamp": "1677072401",
  4035. "security-coverage": {
  4036. "status": "covered",
  4037. "message": "Covered by Drupal's security advisory policy"
  4038. }
  4039. },
  4040. "branch-alias": {
  4041. "dev-8.x-1.x": "8.1.x-dev"
  4042. }
  4043. },
  4044. "notification-url": "https://packages.drupal.org/8/downloads",
  4045. "license": [
  4046. "GPL-2.0-or-later"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "See contributors",
  4051. "homepage": "https://www.drupal.org/node/2820429/committers",
  4052. "role": "contributor"
  4053. },
  4054. {
  4055. "name": "rjjakes",
  4056. "homepage": "https://www.drupal.org/user/3457245"
  4057. },
  4058. {
  4059. "name": "VladimirAus",
  4060. "homepage": "https://www.drupal.org/user/673120"
  4061. }
  4062. ],
  4063. "description": "Login with the email as username.",
  4064. "homepage": "https://drupal.org/project/login_emailusername",
  4065. "support": {
  4066. "source": "https://git.drupalcode.org/project/login_emailusername",
  4067. "issues": "https://drupal.org/project/issues/login_emailusername"
  4068. }
  4069. },
  4070. {
  4071. "name": "drupal/maillog",
  4072. "version": "1.1.0",
  4073. "source": {
  4074. "type": "git",
  4075. "url": "https://git.drupalcode.org/project/maillog.git",
  4076. "reference": "8.x-1.1"
  4077. },
  4078. "dist": {
  4079. "type": "zip",
  4080. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.1.zip",
  4081. "reference": "8.x-1.1",
  4082. "shasum": "50199b2b37325f4a167a82ec2d1de366cda6f898"
  4083. },
  4084. "require": {
  4085. "drupal/core": "^9 || ^10"
  4086. },
  4087. "type": "drupal-module",
  4088. "extra": {
  4089. "drupal": {
  4090. "version": "8.x-1.1",
  4091. "datestamp": "1685616898",
  4092. "security-coverage": {
  4093. "status": "covered",
  4094. "message": "Covered by Drupal's security advisory policy"
  4095. }
  4096. }
  4097. },
  4098. "notification-url": "https://packages.drupal.org/8/downloads",
  4099. "license": [
  4100. "GPL-2.0-or-later"
  4101. ],
  4102. "authors": [
  4103. {
  4104. "name": "berdir",
  4105. "homepage": "https://www.drupal.org/user/214652"
  4106. },
  4107. {
  4108. "name": "damienmckenna",
  4109. "homepage": "https://www.drupal.org/user/108450"
  4110. },
  4111. {
  4112. "name": "miro_dietiker",
  4113. "homepage": "https://www.drupal.org/user/227761"
  4114. },
  4115. {
  4116. "name": "pluess",
  4117. "homepage": "https://www.drupal.org/user/84659"
  4118. }
  4119. ],
  4120. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4121. "homepage": "https://www.drupal.org/project/maillog",
  4122. "support": {
  4123. "source": "https://git.drupalcode.org/project/maillog"
  4124. }
  4125. },
  4126. {
  4127. "name": "drupal/menu_admin_per_menu",
  4128. "version": "1.6.0",
  4129. "source": {
  4130. "type": "git",
  4131. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4132. "reference": "8.x-1.6"
  4133. },
  4134. "dist": {
  4135. "type": "zip",
  4136. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.6.zip",
  4137. "reference": "8.x-1.6",
  4138. "shasum": "8ebbab26f0dad2b1f79d7aa185295ca033eece7a"
  4139. },
  4140. "require": {
  4141. "drupal/core": "^10.2 || ^11.0"
  4142. },
  4143. "type": "drupal-module",
  4144. "extra": {
  4145. "drupal": {
  4146. "version": "8.x-1.6",
  4147. "datestamp": "1726150514",
  4148. "security-coverage": {
  4149. "status": "covered",
  4150. "message": "Covered by Drupal's security advisory policy"
  4151. }
  4152. }
  4153. },
  4154. "notification-url": "https://packages.drupal.org/8/downloads",
  4155. "license": [
  4156. "GPL-2.0-or-later"
  4157. ],
  4158. "authors": [
  4159. {
  4160. "name": "anrikun",
  4161. "homepage": "https://www.drupal.org/user/410199"
  4162. },
  4163. {
  4164. "name": "jeroent",
  4165. "homepage": "https://www.drupal.org/user/2228934"
  4166. },
  4167. {
  4168. "name": "jonas139",
  4169. "homepage": "https://www.drupal.org/user/2873401"
  4170. },
  4171. {
  4172. "name": "mkdok",
  4173. "homepage": "https://www.drupal.org/user/3308753"
  4174. }
  4175. ],
  4176. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4177. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4178. "keywords": [
  4179. "Drupal"
  4180. ],
  4181. "support": {
  4182. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  4183. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  4184. }
  4185. },
  4186. {
  4187. "name": "drupal/metatag",
  4188. "version": "2.0.2",
  4189. "source": {
  4190. "type": "git",
  4191. "url": "https://git.drupalcode.org/project/metatag.git",
  4192. "reference": "2.0.2"
  4193. },
  4194. "dist": {
  4195. "type": "zip",
  4196. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4197. "reference": "2.0.2",
  4198. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4199. },
  4200. "require": {
  4201. "drupal/core": "^9.4 || ^10 || ^11",
  4202. "drupal/token": "^1.0",
  4203. "php": ">=8.0"
  4204. },
  4205. "require-dev": {
  4206. "drupal/hal": "^1 || ^2 || ^9",
  4207. "drupal/metatag_dc": "*",
  4208. "drupal/metatag_open_graph": "*",
  4209. "drupal/page_manager": "^4.0",
  4210. "drupal/redirect": "^1.0",
  4211. "ergebnis/composer-normalize": "*",
  4212. "mpyw/phpunit-patch-serializable-comparison": "*"
  4213. },
  4214. "type": "drupal-module",
  4215. "extra": {
  4216. "drupal": {
  4217. "version": "2.0.2",
  4218. "datestamp": "1722869772",
  4219. "security-coverage": {
  4220. "status": "covered",
  4221. "message": "Covered by Drupal's security advisory policy"
  4222. }
  4223. },
  4224. "composer-normalize": {
  4225. "indent-size": 2,
  4226. "indent-style": "space"
  4227. }
  4228. },
  4229. "notification-url": "https://packages.drupal.org/8/downloads",
  4230. "license": [
  4231. "GPL-2.0-or-later"
  4232. ],
  4233. "authors": [
  4234. {
  4235. "name": "See contributors",
  4236. "homepage": "https://www.drupal.org/node/640498/committers",
  4237. "role": "Developer"
  4238. },
  4239. {
  4240. "name": "dave reid",
  4241. "homepage": "https://www.drupal.org/user/53892"
  4242. }
  4243. ],
  4244. "description": "Manage meta tags for all entities.",
  4245. "homepage": "https://www.drupal.org/project/metatag",
  4246. "keywords": [
  4247. "Drupal",
  4248. "seo"
  4249. ],
  4250. "support": {
  4251. "source": "https://git.drupalcode.org/project/metatag",
  4252. "issues": "https://www.drupal.org/project/issues/metatag",
  4253. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4254. }
  4255. },
  4256. {
  4257. "name": "drupal/pathauto",
  4258. "version": "1.13.0",
  4259. "source": {
  4260. "type": "git",
  4261. "url": "https://git.drupalcode.org/project/pathauto.git",
  4262. "reference": "8.x-1.13"
  4263. },
  4264. "dist": {
  4265. "type": "zip",
  4266. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4267. "reference": "8.x-1.13",
  4268. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4269. },
  4270. "require": {
  4271. "drupal/core": "^9.4 || ^10 || ^11",
  4272. "drupal/ctools": "*",
  4273. "drupal/token": "*"
  4274. },
  4275. "require-dev": {
  4276. "drupal/forum": "*"
  4277. },
  4278. "suggest": {
  4279. "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."
  4280. },
  4281. "type": "drupal-module",
  4282. "extra": {
  4283. "drupal": {
  4284. "version": "8.x-1.13",
  4285. "datestamp": "1722507672",
  4286. "security-coverage": {
  4287. "status": "covered",
  4288. "message": "Covered by Drupal's security advisory policy"
  4289. }
  4290. },
  4291. "drush": {
  4292. "services": {
  4293. "drush.services.yml": "^9 || ^10"
  4294. }
  4295. }
  4296. },
  4297. "notification-url": "https://packages.drupal.org/8/downloads",
  4298. "license": [
  4299. "GPL-2.0-or-later"
  4300. ],
  4301. "authors": [
  4302. {
  4303. "name": "Berdir",
  4304. "homepage": "https://www.drupal.org/user/214652"
  4305. },
  4306. {
  4307. "name": "Dave Reid",
  4308. "homepage": "https://www.drupal.org/user/53892"
  4309. },
  4310. {
  4311. "name": "Freso",
  4312. "homepage": "https://www.drupal.org/user/27504"
  4313. },
  4314. {
  4315. "name": "greggles",
  4316. "homepage": "https://www.drupal.org/user/36762"
  4317. }
  4318. ],
  4319. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4320. "homepage": "https://www.drupal.org/project/pathauto",
  4321. "support": {
  4322. "source": "https://cgit.drupalcode.org/pathauto",
  4323. "issues": "https://www.drupal.org/project/issues/pathauto",
  4324. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4325. }
  4326. },
  4327. {
  4328. "name": "drupal/profile",
  4329. "version": "1.11.0",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://git.drupalcode.org/project/profile.git",
  4333. "reference": "8.x-1.11"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.11.zip",
  4338. "reference": "8.x-1.11",
  4339. "shasum": "cdb6c7180be1f0a2d8a03c1a933d939f3d878cfb"
  4340. },
  4341. "require": {
  4342. "drupal/core": "^9 || ^10 || ^11",
  4343. "drupal/entity": "^1.0",
  4344. "php": "^7.4 || ^8.0"
  4345. },
  4346. "require-dev": {
  4347. "drupal/search_api": "~1.30",
  4348. "drupal/token": "^1.7"
  4349. },
  4350. "type": "drupal-module",
  4351. "extra": {
  4352. "drupal": {
  4353. "version": "8.x-1.11",
  4354. "datestamp": "1721735588",
  4355. "security-coverage": {
  4356. "status": "covered",
  4357. "message": "Covered by Drupal's security advisory policy"
  4358. }
  4359. }
  4360. },
  4361. "notification-url": "https://packages.drupal.org/8/downloads",
  4362. "license": [
  4363. "GPL-2.0-or-later"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "bojanz",
  4368. "homepage": "https://www.drupal.org/user/86106"
  4369. },
  4370. {
  4371. "name": "daggerhart",
  4372. "homepage": "https://www.drupal.org/user/167806"
  4373. },
  4374. {
  4375. "name": "fago",
  4376. "homepage": "https://www.drupal.org/user/16747"
  4377. },
  4378. {
  4379. "name": "jsacksick",
  4380. "homepage": "https://www.drupal.org/user/972218"
  4381. },
  4382. {
  4383. "name": "mglaman",
  4384. "homepage": "https://www.drupal.org/user/2416470"
  4385. },
  4386. {
  4387. "name": "pcambra",
  4388. "homepage": "https://www.drupal.org/user/122101"
  4389. }
  4390. ],
  4391. "description": "Provides configurable user profiles.",
  4392. "homepage": "https://drupal.org/project/profile",
  4393. "support": {
  4394. "source": "https://git.drupalcode.org/project/profile"
  4395. }
  4396. },
  4397. {
  4398. "name": "drupal/redirect",
  4399. "version": "1.10.0",
  4400. "source": {
  4401. "type": "git",
  4402. "url": "https://git.drupalcode.org/project/redirect.git",
  4403. "reference": "8.x-1.10"
  4404. },
  4405. "dist": {
  4406. "type": "zip",
  4407. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4408. "reference": "8.x-1.10",
  4409. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4410. },
  4411. "require": {
  4412. "drupal/core": "^9.2 || ^10 || ^11"
  4413. },
  4414. "type": "drupal-module",
  4415. "extra": {
  4416. "drupal": {
  4417. "version": "8.x-1.10",
  4418. "datestamp": "1723277641",
  4419. "security-coverage": {
  4420. "status": "covered",
  4421. "message": "Covered by Drupal's security advisory policy"
  4422. }
  4423. }
  4424. },
  4425. "notification-url": "https://packages.drupal.org/8/downloads",
  4426. "license": [
  4427. "GPL-2.0-or-later"
  4428. ],
  4429. "authors": [
  4430. {
  4431. "name": "Berdir",
  4432. "homepage": "https://www.drupal.org/user/214652"
  4433. },
  4434. {
  4435. "name": "dave reid",
  4436. "homepage": "https://www.drupal.org/user/53892"
  4437. },
  4438. {
  4439. "name": "Kristen Pol",
  4440. "homepage": "https://www.drupal.org/user/8389"
  4441. },
  4442. {
  4443. "name": "pifagor",
  4444. "homepage": "https://www.drupal.org/user/2375692"
  4445. }
  4446. ],
  4447. "description": "Allows users to redirect from old URLs to new URLs.",
  4448. "homepage": "https://www.drupal.org/project/redirect",
  4449. "support": {
  4450. "source": "https://git.drupalcode.org/project/redirect"
  4451. }
  4452. },
  4453. {
  4454. "name": "drupal/redis",
  4455. "version": "1.8.0",
  4456. "source": {
  4457. "type": "git",
  4458. "url": "https://git.drupalcode.org/project/redis.git",
  4459. "reference": "8.x-1.8"
  4460. },
  4461. "dist": {
  4462. "type": "zip",
  4463. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4464. "reference": "8.x-1.8",
  4465. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4466. },
  4467. "require": {
  4468. "drupal/core": "^9.3 || ^10 || ^11"
  4469. },
  4470. "suggest": {
  4471. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4472. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4473. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4474. },
  4475. "type": "drupal-module",
  4476. "extra": {
  4477. "drupal": {
  4478. "version": "8.x-1.8",
  4479. "datestamp": "1723934771",
  4480. "security-coverage": {
  4481. "status": "covered",
  4482. "message": "Covered by Drupal's security advisory policy"
  4483. }
  4484. }
  4485. },
  4486. "autoload": {
  4487. "psr-4": {
  4488. "Drupal\\redis\\": "src"
  4489. }
  4490. },
  4491. "notification-url": "https://packages.drupal.org/8/downloads",
  4492. "license": [
  4493. "GPL-2.0-or-later"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "berdir",
  4498. "homepage": "https://www.drupal.org/user/214652"
  4499. },
  4500. {
  4501. "name": "greg.1.anderson",
  4502. "homepage": "https://www.drupal.org/user/438598"
  4503. },
  4504. {
  4505. "name": "kporras07",
  4506. "homepage": "https://www.drupal.org/user/1349780"
  4507. },
  4508. {
  4509. "name": "pounard",
  4510. "homepage": "https://www.drupal.org/user/240164"
  4511. }
  4512. ],
  4513. "description": "Integration of Drupal with the Redis key-value store.",
  4514. "homepage": "https://www.drupal.org/project/redis",
  4515. "support": {
  4516. "source": "https://git.drupalcode.org/project/redis"
  4517. }
  4518. },
  4519. {
  4520. "name": "drupal/restui",
  4521. "version": "1.22.0",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://git.drupalcode.org/project/restui.git",
  4525. "reference": "8.x-1.22"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.22.zip",
  4530. "reference": "8.x-1.22",
  4531. "shasum": "7c9fb14c574f8a4090b77b1bcbc5be141409a383"
  4532. },
  4533. "require": {
  4534. "drupal/core": "^9.5 || ^10 || ^11"
  4535. },
  4536. "type": "drupal-module",
  4537. "extra": {
  4538. "drupal": {
  4539. "version": "8.x-1.22",
  4540. "datestamp": "1721134189",
  4541. "security-coverage": {
  4542. "status": "covered",
  4543. "message": "Covered by Drupal's security advisory policy"
  4544. }
  4545. }
  4546. },
  4547. "notification-url": "https://packages.drupal.org/8/downloads",
  4548. "license": [
  4549. "GPL-2.0-or-later"
  4550. ],
  4551. "authors": [
  4552. {
  4553. "name": "-enzo-",
  4554. "homepage": "https://www.drupal.org/user/294937"
  4555. },
  4556. {
  4557. "name": "clemens.tolboom",
  4558. "homepage": "https://www.drupal.org/user/125814"
  4559. },
  4560. {
  4561. "name": "juampynr",
  4562. "homepage": "https://www.drupal.org/user/682736"
  4563. },
  4564. {
  4565. "name": "kamkejj",
  4566. "homepage": "https://www.drupal.org/user/81043"
  4567. },
  4568. {
  4569. "name": "vipin.mittal18",
  4570. "homepage": "https://www.drupal.org/user/319716"
  4571. }
  4572. ],
  4573. "description": "Provides a user interface to manage REST resources.",
  4574. "homepage": "https://www.drupal.org/project/restui",
  4575. "support": {
  4576. "source": "https://git.drupalcode.org/project/restui"
  4577. }
  4578. },
  4579. {
  4580. "name": "drupal/search_api",
  4581. "version": "1.35.0",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://git.drupalcode.org/project/search_api.git",
  4585. "reference": "8.x-1.35"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.35.zip",
  4590. "reference": "8.x-1.35",
  4591. "shasum": "d119726e870f793c6470d2a4fa9286662c5eb45d"
  4592. },
  4593. "require": {
  4594. "drupal/core": "^10.1 || ^11"
  4595. },
  4596. "conflict": {
  4597. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4598. },
  4599. "require-dev": {
  4600. "drupal/language_fallback_fix": "@dev",
  4601. "drupal/search_api_autocomplete": "@dev",
  4602. "drupal/search_api_db": "*"
  4603. },
  4604. "suggest": {
  4605. "drupal/facets": "Adds the ability to create faceted searches.",
  4606. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4607. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4608. },
  4609. "type": "drupal-module",
  4610. "extra": {
  4611. "drupal": {
  4612. "version": "8.x-1.35",
  4613. "datestamp": "1718551025",
  4614. "security-coverage": {
  4615. "status": "covered",
  4616. "message": "Covered by Drupal's security advisory policy"
  4617. }
  4618. },
  4619. "drush": {
  4620. "services": {
  4621. "drush.services.yml": "^9 || ^10 || ^11"
  4622. }
  4623. }
  4624. },
  4625. "notification-url": "https://packages.drupal.org/8/downloads",
  4626. "license": [
  4627. "GPL-2.0-or-later"
  4628. ],
  4629. "authors": [
  4630. {
  4631. "name": "Thomas Seidl",
  4632. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4633. },
  4634. {
  4635. "name": "Nick Veenhof",
  4636. "homepage": "https://www.drupal.org/u/nick_vh"
  4637. },
  4638. {
  4639. "name": "See other contributors",
  4640. "homepage": "https://www.drupal.org/node/790418/committers"
  4641. }
  4642. ],
  4643. "description": "Provides a generic framework for modules offering search capabilities.",
  4644. "homepage": "https://www.drupal.org/project/search_api",
  4645. "support": {
  4646. "source": "https://git.drupalcode.org/project/search_api",
  4647. "issues": "https://www.drupal.org/project/issues/search_api",
  4648. "irc": "irc://irc.freenode.org/drupal-search-api"
  4649. }
  4650. },
  4651. {
  4652. "name": "drupal/seven",
  4653. "version": "1.0.0",
  4654. "source": {
  4655. "type": "git",
  4656. "url": "https://git.drupalcode.org/project/seven.git",
  4657. "reference": "1.0.0"
  4658. },
  4659. "dist": {
  4660. "type": "zip",
  4661. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4662. "reference": "1.0.0",
  4663. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4664. },
  4665. "require": {
  4666. "drupal/core": "^9 || ^10"
  4667. },
  4668. "type": "drupal-theme",
  4669. "extra": {
  4670. "drupal": {
  4671. "version": "1.0.0",
  4672. "datestamp": "1683652106",
  4673. "security-coverage": {
  4674. "status": "covered",
  4675. "message": "Covered by Drupal's security advisory policy"
  4676. }
  4677. }
  4678. },
  4679. "notification-url": "https://packages.drupal.org/8/downloads",
  4680. "license": [
  4681. "GPL-2.0-or-later"
  4682. ],
  4683. "authors": [
  4684. {
  4685. "name": "bnjmnm",
  4686. "homepage": "https://www.drupal.org/user/2369194"
  4687. },
  4688. {
  4689. "name": "lauriii",
  4690. "homepage": "https://www.drupal.org/user/1078742"
  4691. },
  4692. {
  4693. "name": "mcrittenden",
  4694. "homepage": "https://www.drupal.org/user/420631"
  4695. },
  4696. {
  4697. "name": "mrfelton",
  4698. "homepage": "https://www.drupal.org/user/305669"
  4699. },
  4700. {
  4701. "name": "TravisCarden",
  4702. "homepage": "https://www.drupal.org/user/236758"
  4703. }
  4704. ],
  4705. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4706. "homepage": "https://www.drupal.org/project/seven",
  4707. "support": {
  4708. "source": "https://git.drupalcode.org/project/seven"
  4709. }
  4710. },
  4711. {
  4712. "name": "drupal/simple_sitemap",
  4713. "version": "4.2.1",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4717. "reference": "4.2.1"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.1.zip",
  4722. "reference": "4.2.1",
  4723. "shasum": "d96b481571ca2fecdb305e87d2557f9338116864"
  4724. },
  4725. "require": {
  4726. "drupal/core": "^10.2 || ^11",
  4727. "ext-xmlwriter": "*"
  4728. },
  4729. "type": "drupal-module",
  4730. "extra": {
  4731. "drupal": {
  4732. "version": "4.2.1",
  4733. "datestamp": "1723802052",
  4734. "security-coverage": {
  4735. "status": "covered",
  4736. "message": "Covered by Drupal's security advisory policy"
  4737. }
  4738. },
  4739. "drush": {
  4740. "services": {
  4741. "drush.services.yml": ">=9"
  4742. }
  4743. }
  4744. },
  4745. "notification-url": "https://packages.drupal.org/8/downloads",
  4746. "license": [
  4747. "GPL-2.0-or-later"
  4748. ],
  4749. "authors": [
  4750. {
  4751. "name": "Pawel Ginalski (gbyte)",
  4752. "homepage": "https://www.drupal.org/u/gbyte",
  4753. "email": "contact@gbyte.dev",
  4754. "role": "Maintainer"
  4755. },
  4756. {
  4757. "name": "walkingdexter",
  4758. "homepage": "https://www.drupal.org/user/3251330"
  4759. }
  4760. ],
  4761. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4762. "homepage": "https://drupal.org/project/simple_sitemap",
  4763. "support": {
  4764. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4765. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4766. }
  4767. },
  4768. {
  4769. "name": "drupal/stable",
  4770. "version": "2.1.0",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://git.drupalcode.org/project/stable.git",
  4774. "reference": "2.1.0"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip",
  4779. "reference": "2.1.0",
  4780. "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb"
  4781. },
  4782. "require": {
  4783. "drupal/core": "^10.3 || ^11"
  4784. },
  4785. "type": "drupal-theme",
  4786. "extra": {
  4787. "drupal": {
  4788. "version": "2.1.0",
  4789. "datestamp": "1721202956",
  4790. "security-coverage": {
  4791. "status": "covered",
  4792. "message": "Covered by Drupal's security advisory policy"
  4793. }
  4794. }
  4795. },
  4796. "notification-url": "https://packages.drupal.org/8/downloads",
  4797. "license": [
  4798. "GPL-2.0-or-later"
  4799. ],
  4800. "authors": [
  4801. {
  4802. "name": "bnjmnm",
  4803. "homepage": "https://www.drupal.org/user/2369194"
  4804. },
  4805. {
  4806. "name": "lauriii",
  4807. "homepage": "https://www.drupal.org/user/1078742"
  4808. },
  4809. {
  4810. "name": "Rajeshreeputra",
  4811. "homepage": "https://www.drupal.org/user/3418561"
  4812. },
  4813. {
  4814. "name": "star-szr",
  4815. "homepage": "https://www.drupal.org/user/1167326"
  4816. }
  4817. ],
  4818. "description": "A base theme using Drupal core markup and CSS.",
  4819. "homepage": "https://www.drupal.org/project/stable",
  4820. "support": {
  4821. "source": "https://git.drupalcode.org/project/stable"
  4822. }
  4823. },
  4824. {
  4825. "name": "drupal/synonyms",
  4826. "version": "2.1.4",
  4827. "source": {
  4828. "type": "git",
  4829. "url": "https://git.drupalcode.org/project/synonyms.git",
  4830. "reference": "2.1.4"
  4831. },
  4832. "dist": {
  4833. "type": "zip",
  4834. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4835. "reference": "2.1.4",
  4836. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4837. },
  4838. "require": {
  4839. "drupal/core": "^9 || ^10 || ^11"
  4840. },
  4841. "require-dev": {
  4842. "drupal/synonyms_list_field": "*"
  4843. },
  4844. "type": "drupal-module",
  4845. "extra": {
  4846. "drupal": {
  4847. "version": "2.1.4",
  4848. "datestamp": "1723069842",
  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": "Bojan Zivanovic",
  4862. "homepage": "https://www.drupal.org/u/bojanz",
  4863. "role": "Author and D5, D6 and D7 versions developer."
  4864. },
  4865. {
  4866. "name": "Alex Trosenko",
  4867. "homepage": "https://www.drupal.org/u/bucefal91",
  4868. "role": "D7 and D8 versions developer."
  4869. },
  4870. {
  4871. "name": "Duro Arezina",
  4872. "homepage": "https://www.drupal.org/u/devad",
  4873. "role": "D8+ versions maintenance"
  4874. },
  4875. {
  4876. "name": "See other contributors",
  4877. "homepage": "https://www.drupal.org/node/148775/committers"
  4878. }
  4879. ],
  4880. "description": "Provides synonyms feature for all entities.",
  4881. "homepage": "https://www.drupal.org/project/synonyms",
  4882. "support": {
  4883. "source": "https://git.drupalcode.org/project/synonyms",
  4884. "issues": "https://www.drupal.org/project/issues/synonyms"
  4885. }
  4886. },
  4887. {
  4888. "name": "drupal/token",
  4889. "version": "1.15.0",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://git.drupalcode.org/project/token.git",
  4893. "reference": "8.x-1.15"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  4898. "reference": "8.x-1.15",
  4899. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  4900. },
  4901. "require": {
  4902. "drupal/core": "^9.2 || ^10 || ^11"
  4903. },
  4904. "require-dev": {
  4905. "drupal/book": "*"
  4906. },
  4907. "type": "drupal-module",
  4908. "extra": {
  4909. "drupal": {
  4910. "version": "8.x-1.15",
  4911. "datestamp": "1722206211",
  4912. "security-coverage": {
  4913. "status": "covered",
  4914. "message": "Covered by Drupal's security advisory policy"
  4915. }
  4916. },
  4917. "drush": {
  4918. "services": {
  4919. "drush.services.yml": ">=9"
  4920. }
  4921. }
  4922. },
  4923. "notification-url": "https://packages.drupal.org/8/downloads",
  4924. "license": [
  4925. "GPL-2.0-or-later"
  4926. ],
  4927. "authors": [
  4928. {
  4929. "name": "Berdir",
  4930. "homepage": "https://www.drupal.org/user/214652"
  4931. },
  4932. {
  4933. "name": "Dave Reid",
  4934. "homepage": "https://www.drupal.org/user/53892"
  4935. },
  4936. {
  4937. "name": "eaton",
  4938. "homepage": "https://www.drupal.org/user/16496"
  4939. },
  4940. {
  4941. "name": "fago",
  4942. "homepage": "https://www.drupal.org/user/16747"
  4943. },
  4944. {
  4945. "name": "greggles",
  4946. "homepage": "https://www.drupal.org/user/36762"
  4947. },
  4948. {
  4949. "name": "mikeryan",
  4950. "homepage": "https://www.drupal.org/user/4420"
  4951. }
  4952. ],
  4953. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4954. "homepage": "https://www.drupal.org/project/token",
  4955. "support": {
  4956. "source": "https://git.drupalcode.org/project/token"
  4957. }
  4958. },
  4959. {
  4960. "name": "drupal/translation_views",
  4961. "version": "1.0.0-alpha11",
  4962. "source": {
  4963. "type": "git",
  4964. "url": "https://git.drupalcode.org/project/translation_views.git",
  4965. "reference": "8.x-1.0-alpha11"
  4966. },
  4967. "dist": {
  4968. "type": "zip",
  4969. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  4970. "reference": "8.x-1.0-alpha11",
  4971. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  4972. },
  4973. "require": {
  4974. "drupal/core": "^8.8 || ^9 || ^10"
  4975. },
  4976. "require-dev": {
  4977. "drupal/translators_content": "^1.0@alpha"
  4978. },
  4979. "type": "drupal-module",
  4980. "extra": {
  4981. "drupal": {
  4982. "version": "8.x-1.0-alpha11",
  4983. "datestamp": "1679660668",
  4984. "security-coverage": {
  4985. "status": "not-covered",
  4986. "message": "Project has not opted into security advisory coverage!"
  4987. }
  4988. }
  4989. },
  4990. "notification-url": "https://packages.drupal.org/8/downloads",
  4991. "license": [
  4992. "GPL-2.0-or-later"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "matsbla",
  4997. "homepage": "https://www.drupal.org/user/2325394"
  4998. },
  4999. {
  5000. "name": "vlad.dancer",
  5001. "homepage": "https://www.drupal.org/user/903844"
  5002. }
  5003. ],
  5004. "description": "Create customized lists and queries of translations from your database.",
  5005. "homepage": "https://www.drupal.org/project/translation_views",
  5006. "support": {
  5007. "source": "https://git.drupalcode.org/project/translation_views"
  5008. }
  5009. },
  5010. {
  5011. "name": "drupal/upgrade_status",
  5012. "version": "4.3.5",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5016. "reference": "4.3.5"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.5.zip",
  5021. "reference": "4.3.5",
  5022. "shasum": "353c17f14c855f5ba0fe48c6a4f6486360c066a7"
  5023. },
  5024. "require": {
  5025. "dekor/php-array-table": "^2.0",
  5026. "drupal/core": "^9 || ^10 || ^11",
  5027. "mglaman/phpstan-drupal": "^1.2.11",
  5028. "nikic/php-parser": "^4.0.0|^5.0.0",
  5029. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5030. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  5031. "webflo/drupal-finder": "^1.2"
  5032. },
  5033. "require-dev": {
  5034. "drush/drush": "^11|^12|^13"
  5035. },
  5036. "type": "drupal-module",
  5037. "extra": {
  5038. "drupal": {
  5039. "version": "4.3.5",
  5040. "datestamp": "1723044184",
  5041. "security-coverage": {
  5042. "status": "covered",
  5043. "message": "Covered by Drupal's security advisory policy"
  5044. }
  5045. },
  5046. "drush": {
  5047. "services": {
  5048. "drush.services.yml": "^9 || ^10"
  5049. }
  5050. }
  5051. },
  5052. "notification-url": "https://packages.drupal.org/8/downloads",
  5053. "license": [
  5054. "GPL-2.0-or-later"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "Gábor Hojtsy",
  5059. "homepage": "https://www.drupal.org/user/4166"
  5060. }
  5061. ],
  5062. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5063. "homepage": "http://drupal.org/project/upgrade_status",
  5064. "support": {
  5065. "source": "https://git.drupalcode.org/project/upgrade_status"
  5066. }
  5067. },
  5068. {
  5069. "name": "drupal/views_bulk_edit",
  5070. "version": "3.0.0",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5074. "reference": "3.0.0"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  5079. "reference": "3.0.0",
  5080. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  5081. },
  5082. "require": {
  5083. "drupal/core": "^9.4 || ^10 || ^11",
  5084. "php": ">=8.1"
  5085. },
  5086. "require-dev": {
  5087. "drupal/views_bulk_operations": "~4.2.4"
  5088. },
  5089. "suggest": {
  5090. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5091. },
  5092. "type": "drupal-module",
  5093. "extra": {
  5094. "drupal": {
  5095. "version": "3.0.0",
  5096. "datestamp": "1725358398",
  5097. "security-coverage": {
  5098. "status": "covered",
  5099. "message": "Covered by Drupal's security advisory policy"
  5100. }
  5101. }
  5102. },
  5103. "notification-url": "https://packages.drupal.org/8/downloads",
  5104. "license": [
  5105. "GPL-2.0+"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "Marcin Grabias",
  5110. "homepage": "https://www.drupal.org/u/graber"
  5111. },
  5112. {
  5113. "name": "benjy",
  5114. "homepage": "https://www.drupal.org/user/1852732"
  5115. },
  5116. {
  5117. "name": "graber",
  5118. "homepage": "https://www.drupal.org/user/1599440"
  5119. },
  5120. {
  5121. "name": "grevil",
  5122. "homepage": "https://www.drupal.org/user/3668491"
  5123. },
  5124. {
  5125. "name": "joseph.olstad",
  5126. "homepage": "https://www.drupal.org/user/1321830"
  5127. }
  5128. ],
  5129. "description": "Allows bulk edition of entity field values.",
  5130. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5131. "support": {
  5132. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5133. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5134. }
  5135. },
  5136. {
  5137. "name": "drupal/views_bulk_operations",
  5138. "version": "4.2.7",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5142. "reference": "4.2.7"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.7.zip",
  5147. "reference": "4.2.7",
  5148. "shasum": "25c9fa531ac49664a361fdd2202eec0a6e53bc61"
  5149. },
  5150. "require": {
  5151. "drupal/core": "^9.4 || ^10 || ^11",
  5152. "php": ">=7.4.0"
  5153. },
  5154. "require-dev": {
  5155. "drush/drush": "^12"
  5156. },
  5157. "suggest": {
  5158. "drush/drush": "^11 || ^12"
  5159. },
  5160. "type": "drupal-module",
  5161. "extra": {
  5162. "drupal": {
  5163. "version": "4.2.7",
  5164. "datestamp": "1717665214",
  5165. "security-coverage": {
  5166. "status": "covered",
  5167. "message": "Covered by Drupal's security advisory policy"
  5168. }
  5169. },
  5170. "drush": {
  5171. "services": {
  5172. "drush.services.yml": "^10 || ^11"
  5173. }
  5174. }
  5175. },
  5176. "notification-url": "https://packages.drupal.org/8/downloads",
  5177. "license": [
  5178. "GPL-2.0-or-later"
  5179. ],
  5180. "authors": [
  5181. {
  5182. "name": "Marcin Grabias",
  5183. "homepage": "https://www.drupal.org/u/graber"
  5184. },
  5185. {
  5186. "name": "graber",
  5187. "homepage": "https://www.drupal.org/user/1599440"
  5188. },
  5189. {
  5190. "name": "joelpittet",
  5191. "homepage": "https://www.drupal.org/user/160302"
  5192. }
  5193. ],
  5194. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5195. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5196. "support": {
  5197. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5198. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5199. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5200. }
  5201. },
  5202. {
  5203. "name": "drupal/workflow",
  5204. "version": "1.8.0",
  5205. "source": {
  5206. "type": "git",
  5207. "url": "https://git.drupalcode.org/project/workflow.git",
  5208. "reference": "8.x-1.8"
  5209. },
  5210. "dist": {
  5211. "type": "zip",
  5212. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5213. "reference": "8.x-1.8",
  5214. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5215. },
  5216. "require": {
  5217. "drupal/core": ">=8.8"
  5218. },
  5219. "type": "drupal-module",
  5220. "extra": {
  5221. "drupal": {
  5222. "version": "8.x-1.8",
  5223. "datestamp": "1717579628",
  5224. "security-coverage": {
  5225. "status": "covered",
  5226. "message": "Covered by Drupal's security advisory policy"
  5227. }
  5228. }
  5229. },
  5230. "notification-url": "https://packages.drupal.org/8/downloads",
  5231. "license": [
  5232. "GPL-2.0-or-later"
  5233. ],
  5234. "authors": [
  5235. {
  5236. "name": "Bastlynn",
  5237. "homepage": "https://www.drupal.org/user/275249"
  5238. },
  5239. {
  5240. "name": "eaton",
  5241. "homepage": "https://www.drupal.org/user/16496"
  5242. },
  5243. {
  5244. "name": "Heine",
  5245. "homepage": "https://www.drupal.org/user/17943"
  5246. },
  5247. {
  5248. "name": "JacobSingh",
  5249. "homepage": "https://www.drupal.org/user/68912"
  5250. },
  5251. {
  5252. "name": "johnv",
  5253. "homepage": "https://www.drupal.org/user/591042"
  5254. },
  5255. {
  5256. "name": "jvandyk",
  5257. "homepage": "https://www.drupal.org/user/2375"
  5258. },
  5259. {
  5260. "name": "mfredrickson",
  5261. "homepage": "https://www.drupal.org/user/31994"
  5262. },
  5263. {
  5264. "name": "NancyDru",
  5265. "homepage": "https://www.drupal.org/user/101412"
  5266. },
  5267. {
  5268. "name": "q0rban",
  5269. "homepage": "https://www.drupal.org/user/31022"
  5270. }
  5271. ],
  5272. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5273. "homepage": "https://www.drupal.org/project/workflow",
  5274. "support": {
  5275. "source": "https://git.drupalcode.org/project/workflow"
  5276. }
  5277. },
  5278. {
  5279. "name": "drush/drush",
  5280. "version": "12.5.3",
  5281. "source": {
  5282. "type": "git",
  5283. "url": "https://github.com/drush-ops/drush.git",
  5284. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  5285. },
  5286. "dist": {
  5287. "type": "zip",
  5288. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  5289. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  5290. "shasum": ""
  5291. },
  5292. "require": {
  5293. "chi-teck/drupal-code-generator": "^3.0",
  5294. "composer-runtime-api": "^2.2",
  5295. "composer/semver": "^1.4 || ^3",
  5296. "consolidation/annotated-command": "^4.9.2",
  5297. "consolidation/config": "^2.1.2",
  5298. "consolidation/filter-via-dot-access-data": "^2.0.2",
  5299. "consolidation/output-formatters": "^4.3.2",
  5300. "consolidation/robo": "^4.0.6",
  5301. "consolidation/site-alias": "^4",
  5302. "consolidation/site-process": "^5.2.0",
  5303. "ext-dom": "*",
  5304. "grasmash/yaml-cli": "^3.1",
  5305. "guzzlehttp/guzzle": "^7.0",
  5306. "league/container": "^4",
  5307. "php": ">=8.1",
  5308. "psy/psysh": "~0.11",
  5309. "symfony/event-dispatcher": "^6",
  5310. "symfony/filesystem": "^6.1",
  5311. "symfony/finder": "^6",
  5312. "symfony/var-dumper": "^6.0",
  5313. "symfony/yaml": "^6.0",
  5314. "webflo/drupal-finder": "^1.2"
  5315. },
  5316. "conflict": {
  5317. "drupal/core": "< 10.0",
  5318. "drupal/migrate_run": "*",
  5319. "drupal/migrate_tools": "<= 5"
  5320. },
  5321. "require-dev": {
  5322. "composer/installers": "^2",
  5323. "cweagans/composer-patches": "~1.0",
  5324. "drupal/core-recommended": "^10",
  5325. "drupal/semver_example": "2.3.0",
  5326. "phpunit/phpunit": "^9",
  5327. "rector/rector": "^0.12",
  5328. "squizlabs/php_codesniffer": "^3.7"
  5329. },
  5330. "bin": [
  5331. "drush"
  5332. ],
  5333. "type": "library",
  5334. "extra": {
  5335. "installer-paths": {
  5336. "sut/core": [
  5337. "type:drupal-core"
  5338. ],
  5339. "sut/libraries/{$name}": [
  5340. "type:drupal-library"
  5341. ],
  5342. "sut/modules/unish/{$name}": [
  5343. "drupal/devel"
  5344. ],
  5345. "sut/themes/unish/{$name}": [
  5346. "drupal/empty_theme"
  5347. ],
  5348. "sut/modules/contrib/{$name}": [
  5349. "type:drupal-module"
  5350. ],
  5351. "sut/profiles/contrib/{$name}": [
  5352. "type:drupal-profile"
  5353. ],
  5354. "sut/themes/contrib/{$name}": [
  5355. "type:drupal-theme"
  5356. ],
  5357. "sut/drush/contrib/{$name}": [
  5358. "type:drupal-drush"
  5359. ]
  5360. }
  5361. },
  5362. "autoload": {
  5363. "psr-4": {
  5364. "Drush\\": "src/"
  5365. }
  5366. },
  5367. "notification-url": "https://packagist.org/downloads/",
  5368. "license": [
  5369. "GPL-2.0-or-later"
  5370. ],
  5371. "authors": [
  5372. {
  5373. "name": "Moshe Weitzman",
  5374. "email": "weitzman@tejasa.com"
  5375. },
  5376. {
  5377. "name": "Owen Barton",
  5378. "email": "drupal@owenbarton.com"
  5379. },
  5380. {
  5381. "name": "Greg Anderson",
  5382. "email": "greg.1.anderson@greenknowe.org"
  5383. },
  5384. {
  5385. "name": "Jonathan Araña Cruz",
  5386. "email": "jonhattan@faita.net"
  5387. },
  5388. {
  5389. "name": "Jonathan Hedstrom",
  5390. "email": "jhedstrom@gmail.com"
  5391. },
  5392. {
  5393. "name": "Christopher Gervais",
  5394. "email": "chris@ergonlogic.com"
  5395. },
  5396. {
  5397. "name": "Dave Reid",
  5398. "email": "dave@davereid.net"
  5399. },
  5400. {
  5401. "name": "Damian Lee",
  5402. "email": "damiankloip@googlemail.com"
  5403. }
  5404. ],
  5405. "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.",
  5406. "homepage": "http://www.drush.org",
  5407. "support": {
  5408. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5409. "issues": "https://github.com/drush-ops/drush/issues",
  5410. "security": "https://github.com/drush-ops/drush/security/advisories",
  5411. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5412. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  5413. },
  5414. "funding": [
  5415. {
  5416. "url": "https://github.com/weitzman",
  5417. "type": "github"
  5418. }
  5419. ],
  5420. "time": "2024-08-02T11:57:29+00:00"
  5421. },
  5422. {
  5423. "name": "egulias/email-validator",
  5424. "version": "4.0.2",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://github.com/egulias/EmailValidator.git",
  5428. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  5433. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  5434. "shasum": ""
  5435. },
  5436. "require": {
  5437. "doctrine/lexer": "^2.0 || ^3.0",
  5438. "php": ">=8.1",
  5439. "symfony/polyfill-intl-idn": "^1.26"
  5440. },
  5441. "require-dev": {
  5442. "phpunit/phpunit": "^10.2",
  5443. "vimeo/psalm": "^5.12"
  5444. },
  5445. "suggest": {
  5446. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5447. },
  5448. "type": "library",
  5449. "extra": {
  5450. "branch-alias": {
  5451. "dev-master": "4.0.x-dev"
  5452. }
  5453. },
  5454. "autoload": {
  5455. "psr-4": {
  5456. "Egulias\\EmailValidator\\": "src"
  5457. }
  5458. },
  5459. "notification-url": "https://packagist.org/downloads/",
  5460. "license": [
  5461. "MIT"
  5462. ],
  5463. "authors": [
  5464. {
  5465. "name": "Eduardo Gulias Davis"
  5466. }
  5467. ],
  5468. "description": "A library for validating emails against several RFCs",
  5469. "homepage": "https://github.com/egulias/EmailValidator",
  5470. "keywords": [
  5471. "email",
  5472. "emailvalidation",
  5473. "emailvalidator",
  5474. "validation",
  5475. "validator"
  5476. ],
  5477. "support": {
  5478. "issues": "https://github.com/egulias/EmailValidator/issues",
  5479. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  5480. },
  5481. "funding": [
  5482. {
  5483. "url": "https://github.com/egulias",
  5484. "type": "github"
  5485. }
  5486. ],
  5487. "time": "2023-10-06T06:47:41+00:00"
  5488. },
  5489. {
  5490. "name": "grasmash/expander",
  5491. "version": "3.0.0",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://github.com/grasmash/expander.git",
  5495. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  5500. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  5501. "shasum": ""
  5502. },
  5503. "require": {
  5504. "dflydev/dot-access-data": "^3.0.0",
  5505. "php": ">=8.0",
  5506. "psr/log": "^2 | ^3"
  5507. },
  5508. "require-dev": {
  5509. "greg-1-anderson/composer-test-scenarios": "^1",
  5510. "php-coveralls/php-coveralls": "^2.5",
  5511. "phpunit/phpunit": "^9",
  5512. "squizlabs/php_codesniffer": "^3.3"
  5513. },
  5514. "type": "library",
  5515. "extra": {
  5516. "branch-alias": {
  5517. "dev-master": "1.x-dev"
  5518. }
  5519. },
  5520. "autoload": {
  5521. "psr-4": {
  5522. "Grasmash\\Expander\\": "src/"
  5523. }
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "MIT"
  5528. ],
  5529. "authors": [
  5530. {
  5531. "name": "Matthew Grasmick"
  5532. }
  5533. ],
  5534. "description": "Expands internal property references in PHP arrays file.",
  5535. "support": {
  5536. "issues": "https://github.com/grasmash/expander/issues",
  5537. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  5538. },
  5539. "time": "2022-05-10T13:14:49+00:00"
  5540. },
  5541. {
  5542. "name": "grasmash/yaml-cli",
  5543. "version": "3.2.1",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://github.com/grasmash/yaml-cli.git",
  5547. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  5552. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  5553. "shasum": ""
  5554. },
  5555. "require": {
  5556. "dflydev/dot-access-data": "^3",
  5557. "php": ">=8.0",
  5558. "symfony/console": "^6 || ^7",
  5559. "symfony/filesystem": "^6 || ^7",
  5560. "symfony/yaml": "^6 || ^7"
  5561. },
  5562. "require-dev": {
  5563. "php-coveralls/php-coveralls": "^2",
  5564. "phpunit/phpunit": "^9",
  5565. "squizlabs/php_codesniffer": "^3.0"
  5566. },
  5567. "bin": [
  5568. "bin/yaml-cli"
  5569. ],
  5570. "type": "library",
  5571. "extra": {
  5572. "branch-alias": {
  5573. "dev-master": "3.x-dev"
  5574. }
  5575. },
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Grasmash\\YamlCli\\": "src/"
  5579. }
  5580. },
  5581. "notification-url": "https://packagist.org/downloads/",
  5582. "license": [
  5583. "MIT"
  5584. ],
  5585. "authors": [
  5586. {
  5587. "name": "Matthew Grasmick"
  5588. }
  5589. ],
  5590. "description": "A command line tool for reading and manipulating yaml files.",
  5591. "support": {
  5592. "issues": "https://github.com/grasmash/yaml-cli/issues",
  5593. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  5594. },
  5595. "time": "2024-04-23T02:10:57+00:00"
  5596. },
  5597. {
  5598. "name": "guzzlehttp/guzzle",
  5599. "version": "7.8.2",
  5600. "source": {
  5601. "type": "git",
  5602. "url": "https://github.com/guzzle/guzzle.git",
  5603. "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2"
  5604. },
  5605. "dist": {
  5606. "type": "zip",
  5607. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4152d9eb85c445fe1f992001d1748e8bec070d2",
  5608. "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2",
  5609. "shasum": ""
  5610. },
  5611. "require": {
  5612. "ext-json": "*",
  5613. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  5614. "guzzlehttp/psr7": "^1.9.1 || ^2.6.3",
  5615. "php": "^7.2.5 || ^8.0",
  5616. "psr/http-client": "^1.0",
  5617. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5618. },
  5619. "provide": {
  5620. "psr/http-client-implementation": "1.0"
  5621. },
  5622. "require-dev": {
  5623. "bamarni/composer-bin-plugin": "^1.8.2",
  5624. "ext-curl": "*",
  5625. "guzzle/client-integration-tests": "3.0.2",
  5626. "php-http/message-factory": "^1.1",
  5627. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  5628. "psr/log": "^1.1 || ^2.0 || ^3.0"
  5629. },
  5630. "suggest": {
  5631. "ext-curl": "Required for CURL handler support",
  5632. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  5633. "psr/log": "Required for using the Log middleware"
  5634. },
  5635. "type": "library",
  5636. "extra": {
  5637. "bamarni-bin": {
  5638. "bin-links": true,
  5639. "forward-command": false
  5640. }
  5641. },
  5642. "autoload": {
  5643. "files": [
  5644. "src/functions_include.php"
  5645. ],
  5646. "psr-4": {
  5647. "GuzzleHttp\\": "src/"
  5648. }
  5649. },
  5650. "notification-url": "https://packagist.org/downloads/",
  5651. "license": [
  5652. "MIT"
  5653. ],
  5654. "authors": [
  5655. {
  5656. "name": "Graham Campbell",
  5657. "email": "hello@gjcampbell.co.uk",
  5658. "homepage": "https://github.com/GrahamCampbell"
  5659. },
  5660. {
  5661. "name": "Michael Dowling",
  5662. "email": "mtdowling@gmail.com",
  5663. "homepage": "https://github.com/mtdowling"
  5664. },
  5665. {
  5666. "name": "Jeremy Lindblom",
  5667. "email": "jeremeamia@gmail.com",
  5668. "homepage": "https://github.com/jeremeamia"
  5669. },
  5670. {
  5671. "name": "George Mponos",
  5672. "email": "gmponos@gmail.com",
  5673. "homepage": "https://github.com/gmponos"
  5674. },
  5675. {
  5676. "name": "Tobias Nyholm",
  5677. "email": "tobias.nyholm@gmail.com",
  5678. "homepage": "https://github.com/Nyholm"
  5679. },
  5680. {
  5681. "name": "Márk Sági-Kazár",
  5682. "email": "mark.sagikazar@gmail.com",
  5683. "homepage": "https://github.com/sagikazarmark"
  5684. },
  5685. {
  5686. "name": "Tobias Schultze",
  5687. "email": "webmaster@tubo-world.de",
  5688. "homepage": "https://github.com/Tobion"
  5689. }
  5690. ],
  5691. "description": "Guzzle is a PHP HTTP client library",
  5692. "keywords": [
  5693. "client",
  5694. "curl",
  5695. "framework",
  5696. "http",
  5697. "http client",
  5698. "psr-18",
  5699. "psr-7",
  5700. "rest",
  5701. "web service"
  5702. ],
  5703. "support": {
  5704. "issues": "https://github.com/guzzle/guzzle/issues",
  5705. "source": "https://github.com/guzzle/guzzle/tree/7.8.2"
  5706. },
  5707. "funding": [
  5708. {
  5709. "url": "https://github.com/GrahamCampbell",
  5710. "type": "github"
  5711. },
  5712. {
  5713. "url": "https://github.com/Nyholm",
  5714. "type": "github"
  5715. },
  5716. {
  5717. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5718. "type": "tidelift"
  5719. }
  5720. ],
  5721. "time": "2024-07-18T11:12:18+00:00"
  5722. },
  5723. {
  5724. "name": "guzzlehttp/promises",
  5725. "version": "2.0.3",
  5726. "source": {
  5727. "type": "git",
  5728. "url": "https://github.com/guzzle/promises.git",
  5729. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  5730. },
  5731. "dist": {
  5732. "type": "zip",
  5733. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  5734. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  5735. "shasum": ""
  5736. },
  5737. "require": {
  5738. "php": "^7.2.5 || ^8.0"
  5739. },
  5740. "require-dev": {
  5741. "bamarni/composer-bin-plugin": "^1.8.2",
  5742. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  5743. },
  5744. "type": "library",
  5745. "extra": {
  5746. "bamarni-bin": {
  5747. "bin-links": true,
  5748. "forward-command": false
  5749. }
  5750. },
  5751. "autoload": {
  5752. "psr-4": {
  5753. "GuzzleHttp\\Promise\\": "src/"
  5754. }
  5755. },
  5756. "notification-url": "https://packagist.org/downloads/",
  5757. "license": [
  5758. "MIT"
  5759. ],
  5760. "authors": [
  5761. {
  5762. "name": "Graham Campbell",
  5763. "email": "hello@gjcampbell.co.uk",
  5764. "homepage": "https://github.com/GrahamCampbell"
  5765. },
  5766. {
  5767. "name": "Michael Dowling",
  5768. "email": "mtdowling@gmail.com",
  5769. "homepage": "https://github.com/mtdowling"
  5770. },
  5771. {
  5772. "name": "Tobias Nyholm",
  5773. "email": "tobias.nyholm@gmail.com",
  5774. "homepage": "https://github.com/Nyholm"
  5775. },
  5776. {
  5777. "name": "Tobias Schultze",
  5778. "email": "webmaster@tubo-world.de",
  5779. "homepage": "https://github.com/Tobion"
  5780. }
  5781. ],
  5782. "description": "Guzzle promises library",
  5783. "keywords": [
  5784. "promise"
  5785. ],
  5786. "support": {
  5787. "issues": "https://github.com/guzzle/promises/issues",
  5788. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  5789. },
  5790. "funding": [
  5791. {
  5792. "url": "https://github.com/GrahamCampbell",
  5793. "type": "github"
  5794. },
  5795. {
  5796. "url": "https://github.com/Nyholm",
  5797. "type": "github"
  5798. },
  5799. {
  5800. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5801. "type": "tidelift"
  5802. }
  5803. ],
  5804. "time": "2024-07-18T10:29:17+00:00"
  5805. },
  5806. {
  5807. "name": "guzzlehttp/psr7",
  5808. "version": "2.6.3",
  5809. "source": {
  5810. "type": "git",
  5811. "url": "https://github.com/guzzle/psr7.git",
  5812. "reference": "6de29867b18790c0d2c846af4c13a24cc3ad56f3"
  5813. },
  5814. "dist": {
  5815. "type": "zip",
  5816. "url": "https://api.github.com/repos/guzzle/psr7/zipball/6de29867b18790c0d2c846af4c13a24cc3ad56f3",
  5817. "reference": "6de29867b18790c0d2c846af4c13a24cc3ad56f3",
  5818. "shasum": ""
  5819. },
  5820. "require": {
  5821. "php": "^7.2.5 || ^8.0",
  5822. "psr/http-factory": "^1.0",
  5823. "psr/http-message": "^1.1 || ^2.0",
  5824. "ralouphie/getallheaders": "^3.0"
  5825. },
  5826. "provide": {
  5827. "psr/http-factory-implementation": "1.0",
  5828. "psr/http-message-implementation": "1.0"
  5829. },
  5830. "require-dev": {
  5831. "bamarni/composer-bin-plugin": "^1.8.2",
  5832. "http-interop/http-factory-tests": "0.9.0",
  5833. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  5834. },
  5835. "suggest": {
  5836. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5837. },
  5838. "type": "library",
  5839. "extra": {
  5840. "bamarni-bin": {
  5841. "bin-links": true,
  5842. "forward-command": false
  5843. }
  5844. },
  5845. "autoload": {
  5846. "psr-4": {
  5847. "GuzzleHttp\\Psr7\\": "src/"
  5848. }
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Graham Campbell",
  5857. "email": "hello@gjcampbell.co.uk",
  5858. "homepage": "https://github.com/GrahamCampbell"
  5859. },
  5860. {
  5861. "name": "Michael Dowling",
  5862. "email": "mtdowling@gmail.com",
  5863. "homepage": "https://github.com/mtdowling"
  5864. },
  5865. {
  5866. "name": "George Mponos",
  5867. "email": "gmponos@gmail.com",
  5868. "homepage": "https://github.com/gmponos"
  5869. },
  5870. {
  5871. "name": "Tobias Nyholm",
  5872. "email": "tobias.nyholm@gmail.com",
  5873. "homepage": "https://github.com/Nyholm"
  5874. },
  5875. {
  5876. "name": "Márk Sági-Kazár",
  5877. "email": "mark.sagikazar@gmail.com",
  5878. "homepage": "https://github.com/sagikazarmark"
  5879. },
  5880. {
  5881. "name": "Tobias Schultze",
  5882. "email": "webmaster@tubo-world.de",
  5883. "homepage": "https://github.com/Tobion"
  5884. },
  5885. {
  5886. "name": "Márk Sági-Kazár",
  5887. "email": "mark.sagikazar@gmail.com",
  5888. "homepage": "https://sagikazarmark.hu"
  5889. }
  5890. ],
  5891. "description": "PSR-7 message implementation that also provides common utility methods",
  5892. "keywords": [
  5893. "http",
  5894. "message",
  5895. "psr-7",
  5896. "request",
  5897. "response",
  5898. "stream",
  5899. "uri",
  5900. "url"
  5901. ],
  5902. "support": {
  5903. "issues": "https://github.com/guzzle/psr7/issues",
  5904. "source": "https://github.com/guzzle/psr7/tree/2.6.3"
  5905. },
  5906. "funding": [
  5907. {
  5908. "url": "https://github.com/GrahamCampbell",
  5909. "type": "github"
  5910. },
  5911. {
  5912. "url": "https://github.com/Nyholm",
  5913. "type": "github"
  5914. },
  5915. {
  5916. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5917. "type": "tidelift"
  5918. }
  5919. ],
  5920. "time": "2024-07-18T09:59:12+00:00"
  5921. },
  5922. {
  5923. "name": "kint-php/kint",
  5924. "version": "5.1.1",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/kint-php/kint.git",
  5928. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5933. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5934. "shasum": ""
  5935. },
  5936. "require": {
  5937. "php": ">=7.1"
  5938. },
  5939. "require-dev": {
  5940. "friendsofphp/php-cs-fixer": "^3",
  5941. "phpspec/prophecy-phpunit": "^2",
  5942. "phpunit/phpunit": "^9",
  5943. "seld/phar-utils": "^1",
  5944. "symfony/finder": ">=4.0",
  5945. "vimeo/psalm": "^5"
  5946. },
  5947. "suggest": {
  5948. "kint-php/kint-helpers": "Provides extra helper functions",
  5949. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  5950. },
  5951. "type": "library",
  5952. "autoload": {
  5953. "files": [
  5954. "init.php"
  5955. ],
  5956. "psr-4": {
  5957. "Kint\\": "src/"
  5958. }
  5959. },
  5960. "notification-url": "https://packagist.org/downloads/",
  5961. "license": [
  5962. "MIT"
  5963. ],
  5964. "authors": [
  5965. {
  5966. "name": "Jonathan Vollebregt",
  5967. "homepage": "https://github.com/jnvsor"
  5968. },
  5969. {
  5970. "name": "Contributors",
  5971. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  5972. }
  5973. ],
  5974. "description": "Kint - debugging tool for PHP developers",
  5975. "homepage": "https://kint-php.github.io/kint/",
  5976. "keywords": [
  5977. "debug",
  5978. "kint",
  5979. "php"
  5980. ],
  5981. "support": {
  5982. "issues": "https://github.com/kint-php/kint/issues",
  5983. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  5984. },
  5985. "time": "2024-04-26T14:20:09+00:00"
  5986. },
  5987. {
  5988. "name": "league/container",
  5989. "version": "4.2.2",
  5990. "source": {
  5991. "type": "git",
  5992. "url": "https://github.com/thephpleague/container.git",
  5993. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88"
  5994. },
  5995. "dist": {
  5996. "type": "zip",
  5997. "url": "https://api.github.com/repos/thephpleague/container/zipball/ff346319ca1ff0e78277dc2311a42107cc1aab88",
  5998. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88",
  5999. "shasum": ""
  6000. },
  6001. "require": {
  6002. "php": "^7.2 || ^8.0",
  6003. "psr/container": "^1.1 || ^2.0"
  6004. },
  6005. "provide": {
  6006. "psr/container-implementation": "^1.0"
  6007. },
  6008. "replace": {
  6009. "orno/di": "~2.0"
  6010. },
  6011. "require-dev": {
  6012. "nette/php-generator": "^3.4",
  6013. "nikic/php-parser": "^4.10",
  6014. "phpstan/phpstan": "^0.12.47",
  6015. "phpunit/phpunit": "^8.5.17",
  6016. "roave/security-advisories": "dev-latest",
  6017. "scrutinizer/ocular": "^1.8",
  6018. "squizlabs/php_codesniffer": "^3.6"
  6019. },
  6020. "type": "library",
  6021. "extra": {
  6022. "branch-alias": {
  6023. "dev-master": "4.x-dev",
  6024. "dev-4.x": "4.x-dev",
  6025. "dev-3.x": "3.x-dev",
  6026. "dev-2.x": "2.x-dev",
  6027. "dev-1.x": "1.x-dev"
  6028. }
  6029. },
  6030. "autoload": {
  6031. "psr-4": {
  6032. "League\\Container\\": "src"
  6033. }
  6034. },
  6035. "notification-url": "https://packagist.org/downloads/",
  6036. "license": [
  6037. "MIT"
  6038. ],
  6039. "authors": [
  6040. {
  6041. "name": "Phil Bennett",
  6042. "email": "mail@philbennett.co.uk",
  6043. "role": "Developer"
  6044. }
  6045. ],
  6046. "description": "A fast and intuitive dependency injection container.",
  6047. "homepage": "https://github.com/thephpleague/container",
  6048. "keywords": [
  6049. "container",
  6050. "dependency",
  6051. "di",
  6052. "injection",
  6053. "league",
  6054. "provider",
  6055. "service"
  6056. ],
  6057. "support": {
  6058. "issues": "https://github.com/thephpleague/container/issues",
  6059. "source": "https://github.com/thephpleague/container/tree/4.2.2"
  6060. },
  6061. "funding": [
  6062. {
  6063. "url": "https://github.com/philipobenito",
  6064. "type": "github"
  6065. }
  6066. ],
  6067. "time": "2024-03-13T13:12:53+00:00"
  6068. },
  6069. {
  6070. "name": "masterminds/html5",
  6071. "version": "2.9.0",
  6072. "source": {
  6073. "type": "git",
  6074. "url": "https://github.com/Masterminds/html5-php.git",
  6075. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  6076. },
  6077. "dist": {
  6078. "type": "zip",
  6079. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  6080. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  6081. "shasum": ""
  6082. },
  6083. "require": {
  6084. "ext-dom": "*",
  6085. "php": ">=5.3.0"
  6086. },
  6087. "require-dev": {
  6088. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  6089. },
  6090. "type": "library",
  6091. "extra": {
  6092. "branch-alias": {
  6093. "dev-master": "2.7-dev"
  6094. }
  6095. },
  6096. "autoload": {
  6097. "psr-4": {
  6098. "Masterminds\\": "src"
  6099. }
  6100. },
  6101. "notification-url": "https://packagist.org/downloads/",
  6102. "license": [
  6103. "MIT"
  6104. ],
  6105. "authors": [
  6106. {
  6107. "name": "Matt Butcher",
  6108. "email": "technosophos@gmail.com"
  6109. },
  6110. {
  6111. "name": "Matt Farina",
  6112. "email": "matt@mattfarina.com"
  6113. },
  6114. {
  6115. "name": "Asmir Mustafic",
  6116. "email": "goetas@gmail.com"
  6117. }
  6118. ],
  6119. "description": "An HTML5 parser and serializer.",
  6120. "homepage": "http://masterminds.github.io/html5-php",
  6121. "keywords": [
  6122. "HTML5",
  6123. "dom",
  6124. "html",
  6125. "parser",
  6126. "querypath",
  6127. "serializer",
  6128. "xml"
  6129. ],
  6130. "support": {
  6131. "issues": "https://github.com/Masterminds/html5-php/issues",
  6132. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  6133. },
  6134. "time": "2024-03-31T07:05:07+00:00"
  6135. },
  6136. {
  6137. "name": "mck89/peast",
  6138. "version": "v1.16.3",
  6139. "source": {
  6140. "type": "git",
  6141. "url": "https://github.com/mck89/peast.git",
  6142. "reference": "645ec21b650bc2aced18285c85f220d22afc1430"
  6143. },
  6144. "dist": {
  6145. "type": "zip",
  6146. "url": "https://api.github.com/repos/mck89/peast/zipball/645ec21b650bc2aced18285c85f220d22afc1430",
  6147. "reference": "645ec21b650bc2aced18285c85f220d22afc1430",
  6148. "shasum": ""
  6149. },
  6150. "require": {
  6151. "ext-mbstring": "*",
  6152. "php": ">=5.4.0"
  6153. },
  6154. "require-dev": {
  6155. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6156. },
  6157. "type": "library",
  6158. "extra": {
  6159. "branch-alias": {
  6160. "dev-master": "1.16.3-dev"
  6161. }
  6162. },
  6163. "autoload": {
  6164. "psr-4": {
  6165. "Peast\\": "lib/Peast/"
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "BSD-3-Clause"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "Marco Marchiò",
  6175. "email": "marco.mm89@gmail.com"
  6176. }
  6177. ],
  6178. "description": "Peast is PHP library that generates AST for JavaScript code",
  6179. "support": {
  6180. "issues": "https://github.com/mck89/peast/issues",
  6181. "source": "https://github.com/mck89/peast/tree/v1.16.3"
  6182. },
  6183. "time": "2024-07-23T14:00:32+00:00"
  6184. },
  6185. {
  6186. "name": "mglaman/phpstan-drupal",
  6187. "version": "1.2.12",
  6188. "source": {
  6189. "type": "git",
  6190. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6191. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6192. },
  6193. "dist": {
  6194. "type": "zip",
  6195. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6196. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6197. "shasum": ""
  6198. },
  6199. "require": {
  6200. "php": "^8.1",
  6201. "phpstan/phpstan": "^1.10.56",
  6202. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6203. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6204. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6205. "webflo/drupal-finder": "^1.2"
  6206. },
  6207. "require-dev": {
  6208. "behat/mink": "^1.8",
  6209. "composer/installers": "^1.9",
  6210. "drupal/core-recommended": "^10",
  6211. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6212. "phpstan/extension-installer": "^1.1",
  6213. "phpstan/phpstan-strict-rules": "^1.0",
  6214. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6215. "slevomat/coding-standard": "^7.1",
  6216. "squizlabs/php_codesniffer": "^3.3",
  6217. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6218. },
  6219. "suggest": {
  6220. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6221. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6222. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6223. },
  6224. "type": "phpstan-extension",
  6225. "extra": {
  6226. "branch-alias": {
  6227. "dev-main": "1.0-dev"
  6228. },
  6229. "installer-paths": {
  6230. "tests/fixtures/drupal/core": [
  6231. "type:drupal-core"
  6232. ],
  6233. "tests/fixtures/drupal/libraries/{$name}": [
  6234. "type:drupal-library"
  6235. ],
  6236. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6237. "type:drupal-module"
  6238. ],
  6239. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6240. "type:drupal-profile"
  6241. ],
  6242. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6243. "type:drupal-theme"
  6244. ]
  6245. },
  6246. "phpstan": {
  6247. "includes": [
  6248. "extension.neon",
  6249. "rules.neon"
  6250. ]
  6251. }
  6252. },
  6253. "autoload": {
  6254. "psr-4": {
  6255. "mglaman\\PHPStanDrupal\\": "src/"
  6256. }
  6257. },
  6258. "notification-url": "https://packagist.org/downloads/",
  6259. "license": [
  6260. "MIT"
  6261. ],
  6262. "authors": [
  6263. {
  6264. "name": "Matt Glaman",
  6265. "email": "nmd.matt@gmail.com"
  6266. }
  6267. ],
  6268. "description": "Drupal extension and rules for PHPStan",
  6269. "support": {
  6270. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6271. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6272. },
  6273. "funding": [
  6274. {
  6275. "url": "https://github.com/mglaman",
  6276. "type": "github"
  6277. },
  6278. {
  6279. "url": "https://opencollective.com/phpstan-drupal",
  6280. "type": "open_collective"
  6281. },
  6282. {
  6283. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6284. "type": "tidelift"
  6285. }
  6286. ],
  6287. "time": "2024-08-07T21:15:21+00:00"
  6288. },
  6289. {
  6290. "name": "nikic/php-parser",
  6291. "version": "v5.2.0",
  6292. "source": {
  6293. "type": "git",
  6294. "url": "https://github.com/nikic/PHP-Parser.git",
  6295. "reference": "23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb"
  6296. },
  6297. "dist": {
  6298. "type": "zip",
  6299. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb",
  6300. "reference": "23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb",
  6301. "shasum": ""
  6302. },
  6303. "require": {
  6304. "ext-ctype": "*",
  6305. "ext-json": "*",
  6306. "ext-tokenizer": "*",
  6307. "php": ">=7.4"
  6308. },
  6309. "require-dev": {
  6310. "ircmaxell/php-yacc": "^0.0.7",
  6311. "phpunit/phpunit": "^9.0"
  6312. },
  6313. "bin": [
  6314. "bin/php-parse"
  6315. ],
  6316. "type": "library",
  6317. "extra": {
  6318. "branch-alias": {
  6319. "dev-master": "5.0-dev"
  6320. }
  6321. },
  6322. "autoload": {
  6323. "psr-4": {
  6324. "PhpParser\\": "lib/PhpParser"
  6325. }
  6326. },
  6327. "notification-url": "https://packagist.org/downloads/",
  6328. "license": [
  6329. "BSD-3-Clause"
  6330. ],
  6331. "authors": [
  6332. {
  6333. "name": "Nikita Popov"
  6334. }
  6335. ],
  6336. "description": "A PHP parser written in PHP",
  6337. "keywords": [
  6338. "parser",
  6339. "php"
  6340. ],
  6341. "support": {
  6342. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6343. "source": "https://github.com/nikic/PHP-Parser/tree/v5.2.0"
  6344. },
  6345. "time": "2024-09-15T16:40:33+00:00"
  6346. },
  6347. {
  6348. "name": "pear/archive_tar",
  6349. "version": "1.5.0",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://github.com/pear/Archive_Tar.git",
  6353. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
  6358. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
  6359. "shasum": ""
  6360. },
  6361. "require": {
  6362. "pear/pear-core-minimal": "^1.10.0alpha2",
  6363. "php": ">=5.2.0"
  6364. },
  6365. "require-dev": {
  6366. "phpunit/phpunit": "*"
  6367. },
  6368. "suggest": {
  6369. "ext-bz2": "Bz2 compression support.",
  6370. "ext-xz": "Lzma2 compression support.",
  6371. "ext-zlib": "Gzip compression support."
  6372. },
  6373. "type": "library",
  6374. "extra": {
  6375. "branch-alias": {
  6376. "dev-master": "1.4.x-dev"
  6377. }
  6378. },
  6379. "autoload": {
  6380. "psr-0": {
  6381. "Archive_Tar": ""
  6382. }
  6383. },
  6384. "notification-url": "https://packagist.org/downloads/",
  6385. "include-path": [
  6386. "./"
  6387. ],
  6388. "license": [
  6389. "BSD-2-Clause"
  6390. ],
  6391. "authors": [
  6392. {
  6393. "name": "Vincent Blavet",
  6394. "email": "vincent@phpconcept.net"
  6395. },
  6396. {
  6397. "name": "Greg Beaver",
  6398. "email": "greg@chiaraquartet.net"
  6399. },
  6400. {
  6401. "name": "Michiel Rook",
  6402. "email": "mrook@php.net"
  6403. }
  6404. ],
  6405. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6406. "homepage": "https://github.com/pear/Archive_Tar",
  6407. "keywords": [
  6408. "archive",
  6409. "tar"
  6410. ],
  6411. "support": {
  6412. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6413. "source": "https://github.com/pear/Archive_Tar"
  6414. },
  6415. "time": "2024-03-16T16:21:40+00:00"
  6416. },
  6417. {
  6418. "name": "pear/console_getopt",
  6419. "version": "v1.4.3",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/pear/Console_Getopt.git",
  6423. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6428. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6429. "shasum": ""
  6430. },
  6431. "type": "library",
  6432. "autoload": {
  6433. "psr-0": {
  6434. "Console": "./"
  6435. }
  6436. },
  6437. "notification-url": "https://packagist.org/downloads/",
  6438. "include-path": [
  6439. "./"
  6440. ],
  6441. "license": [
  6442. "BSD-2-Clause"
  6443. ],
  6444. "authors": [
  6445. {
  6446. "name": "Andrei Zmievski",
  6447. "email": "andrei@php.net",
  6448. "role": "Lead"
  6449. },
  6450. {
  6451. "name": "Stig Bakken",
  6452. "email": "stig@php.net",
  6453. "role": "Developer"
  6454. },
  6455. {
  6456. "name": "Greg Beaver",
  6457. "email": "cellog@php.net",
  6458. "role": "Helper"
  6459. }
  6460. ],
  6461. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6462. "support": {
  6463. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6464. "source": "https://github.com/pear/Console_Getopt"
  6465. },
  6466. "time": "2019-11-20T18:27:48+00:00"
  6467. },
  6468. {
  6469. "name": "pear/pear-core-minimal",
  6470. "version": "v1.10.15",
  6471. "source": {
  6472. "type": "git",
  6473. "url": "https://github.com/pear/pear-core-minimal.git",
  6474. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  6475. },
  6476. "dist": {
  6477. "type": "zip",
  6478. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  6479. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  6480. "shasum": ""
  6481. },
  6482. "require": {
  6483. "pear/console_getopt": "~1.4",
  6484. "pear/pear_exception": "~1.0",
  6485. "php": ">=5.4"
  6486. },
  6487. "replace": {
  6488. "rsky/pear-core-min": "self.version"
  6489. },
  6490. "type": "library",
  6491. "autoload": {
  6492. "classmap": [
  6493. "src/"
  6494. ]
  6495. },
  6496. "notification-url": "https://packagist.org/downloads/",
  6497. "include-path": [
  6498. "src/"
  6499. ],
  6500. "license": [
  6501. "BSD-3-Clause"
  6502. ],
  6503. "authors": [
  6504. {
  6505. "name": "Christian Weiske",
  6506. "email": "cweiske@php.net",
  6507. "role": "Lead"
  6508. }
  6509. ],
  6510. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6511. "support": {
  6512. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6513. "source": "https://github.com/pear/pear-core-minimal"
  6514. },
  6515. "time": "2024-03-16T18:41:45+00:00"
  6516. },
  6517. {
  6518. "name": "pear/pear_exception",
  6519. "version": "v1.0.2",
  6520. "source": {
  6521. "type": "git",
  6522. "url": "https://github.com/pear/PEAR_Exception.git",
  6523. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  6524. },
  6525. "dist": {
  6526. "type": "zip",
  6527. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6528. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6529. "shasum": ""
  6530. },
  6531. "require": {
  6532. "php": ">=5.2.0"
  6533. },
  6534. "require-dev": {
  6535. "phpunit/phpunit": "<9"
  6536. },
  6537. "type": "class",
  6538. "extra": {
  6539. "branch-alias": {
  6540. "dev-master": "1.0.x-dev"
  6541. }
  6542. },
  6543. "autoload": {
  6544. "classmap": [
  6545. "PEAR/"
  6546. ]
  6547. },
  6548. "notification-url": "https://packagist.org/downloads/",
  6549. "include-path": [
  6550. "."
  6551. ],
  6552. "license": [
  6553. "BSD-2-Clause"
  6554. ],
  6555. "authors": [
  6556. {
  6557. "name": "Helgi Thormar",
  6558. "email": "dufuz@php.net"
  6559. },
  6560. {
  6561. "name": "Greg Beaver",
  6562. "email": "cellog@php.net"
  6563. }
  6564. ],
  6565. "description": "The PEAR Exception base class.",
  6566. "homepage": "https://github.com/pear/PEAR_Exception",
  6567. "keywords": [
  6568. "exception"
  6569. ],
  6570. "support": {
  6571. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6572. "source": "https://github.com/pear/PEAR_Exception"
  6573. },
  6574. "time": "2021-03-21T15:43:46+00:00"
  6575. },
  6576. {
  6577. "name": "phootwork/collection",
  6578. "version": "v3.2.2",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/phootwork/collection.git",
  6582. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  6587. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  6588. "shasum": ""
  6589. },
  6590. "require": {
  6591. "phootwork/lang": "^3.0",
  6592. "php": ">=8.0"
  6593. },
  6594. "type": "library",
  6595. "autoload": {
  6596. "psr-4": {
  6597. "phootwork\\collection\\": ""
  6598. }
  6599. },
  6600. "notification-url": "https://packagist.org/downloads/",
  6601. "license": [
  6602. "MIT"
  6603. ],
  6604. "authors": [
  6605. {
  6606. "name": "Thomas Gossmann",
  6607. "homepage": "http://gos.si"
  6608. }
  6609. ],
  6610. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  6611. "homepage": "https://phootwork.github.io/collection/",
  6612. "keywords": [
  6613. "Array object",
  6614. "Text object",
  6615. "collection",
  6616. "collections",
  6617. "json",
  6618. "list",
  6619. "map",
  6620. "queue",
  6621. "set",
  6622. "stack",
  6623. "xml"
  6624. ],
  6625. "support": {
  6626. "issues": "https://github.com/phootwork/phootwork/issues",
  6627. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  6628. },
  6629. "time": "2022-08-27T12:51:24+00:00"
  6630. },
  6631. {
  6632. "name": "phootwork/lang",
  6633. "version": "v3.2.2",
  6634. "source": {
  6635. "type": "git",
  6636. "url": "https://github.com/phootwork/lang.git",
  6637. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  6638. },
  6639. "dist": {
  6640. "type": "zip",
  6641. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  6642. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  6643. "shasum": ""
  6644. },
  6645. "require": {
  6646. "php": ">=8.0",
  6647. "symfony/polyfill-mbstring": "^1.12",
  6648. "symfony/polyfill-php81": "^1.22"
  6649. },
  6650. "type": "library",
  6651. "autoload": {
  6652. "psr-4": {
  6653. "phootwork\\lang\\": ""
  6654. }
  6655. },
  6656. "notification-url": "https://packagist.org/downloads/",
  6657. "license": [
  6658. "MIT"
  6659. ],
  6660. "authors": [
  6661. {
  6662. "name": "Thomas Gossmann",
  6663. "homepage": "http://gos.si"
  6664. }
  6665. ],
  6666. "description": "Missing PHP language constructs",
  6667. "homepage": "https://phootwork.github.io/lang/",
  6668. "keywords": [
  6669. "array",
  6670. "comparator",
  6671. "comparison",
  6672. "string"
  6673. ],
  6674. "support": {
  6675. "issues": "https://github.com/phootwork/phootwork/issues",
  6676. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  6677. },
  6678. "time": "2023-05-26T05:37:59+00:00"
  6679. },
  6680. {
  6681. "name": "phpowermove/docblock",
  6682. "version": "v4.0",
  6683. "source": {
  6684. "type": "git",
  6685. "url": "https://github.com/phpowermove/docblock.git",
  6686. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  6687. },
  6688. "dist": {
  6689. "type": "zip",
  6690. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6691. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6692. "shasum": ""
  6693. },
  6694. "require": {
  6695. "phootwork/collection": "^3.0",
  6696. "phootwork/lang": "^3.0",
  6697. "php": ">=8.0"
  6698. },
  6699. "require-dev": {
  6700. "phootwork/php-cs-fixer-config": "^0.4",
  6701. "phpunit/phpunit": "^9.0",
  6702. "psalm/phar": "^4.3"
  6703. },
  6704. "type": "library",
  6705. "autoload": {
  6706. "psr-4": {
  6707. "phpowermove\\docblock\\": "src/"
  6708. }
  6709. },
  6710. "notification-url": "https://packagist.org/downloads/",
  6711. "license": [
  6712. "MIT"
  6713. ],
  6714. "authors": [
  6715. {
  6716. "name": "Thomas Gossmann",
  6717. "homepage": "http://gos.si"
  6718. }
  6719. ],
  6720. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  6721. "keywords": [
  6722. "docblock",
  6723. "generator",
  6724. "parser"
  6725. ],
  6726. "support": {
  6727. "issues": "https://github.com/phpowermove/docblock/issues",
  6728. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  6729. },
  6730. "time": "2021-09-22T16:57:06+00:00"
  6731. },
  6732. {
  6733. "name": "phpstan/phpstan",
  6734. "version": "1.12.3",
  6735. "source": {
  6736. "type": "git",
  6737. "url": "https://github.com/phpstan/phpstan.git",
  6738. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  6739. },
  6740. "dist": {
  6741. "type": "zip",
  6742. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6743. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6744. "shasum": ""
  6745. },
  6746. "require": {
  6747. "php": "^7.2|^8.0"
  6748. },
  6749. "conflict": {
  6750. "phpstan/phpstan-shim": "*"
  6751. },
  6752. "bin": [
  6753. "phpstan",
  6754. "phpstan.phar"
  6755. ],
  6756. "type": "library",
  6757. "autoload": {
  6758. "files": [
  6759. "bootstrap.php"
  6760. ]
  6761. },
  6762. "notification-url": "https://packagist.org/downloads/",
  6763. "license": [
  6764. "MIT"
  6765. ],
  6766. "description": "PHPStan - PHP Static Analysis Tool",
  6767. "keywords": [
  6768. "dev",
  6769. "static analysis"
  6770. ],
  6771. "support": {
  6772. "docs": "https://phpstan.org/user-guide/getting-started",
  6773. "forum": "https://github.com/phpstan/phpstan/discussions",
  6774. "issues": "https://github.com/phpstan/phpstan/issues",
  6775. "security": "https://github.com/phpstan/phpstan/security/policy",
  6776. "source": "https://github.com/phpstan/phpstan-src"
  6777. },
  6778. "funding": [
  6779. {
  6780. "url": "https://github.com/ondrejmirtes",
  6781. "type": "github"
  6782. },
  6783. {
  6784. "url": "https://github.com/phpstan",
  6785. "type": "github"
  6786. }
  6787. ],
  6788. "time": "2024-09-09T08:10:35+00:00"
  6789. },
  6790. {
  6791. "name": "phpstan/phpstan-deprecation-rules",
  6792. "version": "1.2.1",
  6793. "source": {
  6794. "type": "git",
  6795. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  6796. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  6797. },
  6798. "dist": {
  6799. "type": "zip",
  6800. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6801. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6802. "shasum": ""
  6803. },
  6804. "require": {
  6805. "php": "^7.2 || ^8.0",
  6806. "phpstan/phpstan": "^1.12"
  6807. },
  6808. "require-dev": {
  6809. "php-parallel-lint/php-parallel-lint": "^1.2",
  6810. "phpstan/phpstan-phpunit": "^1.0",
  6811. "phpunit/phpunit": "^9.5"
  6812. },
  6813. "type": "phpstan-extension",
  6814. "extra": {
  6815. "phpstan": {
  6816. "includes": [
  6817. "rules.neon"
  6818. ]
  6819. }
  6820. },
  6821. "autoload": {
  6822. "psr-4": {
  6823. "PHPStan\\": "src/"
  6824. }
  6825. },
  6826. "notification-url": "https://packagist.org/downloads/",
  6827. "license": [
  6828. "MIT"
  6829. ],
  6830. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  6831. "support": {
  6832. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  6833. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  6834. },
  6835. "time": "2024-09-11T15:52:35+00:00"
  6836. },
  6837. {
  6838. "name": "psr/cache",
  6839. "version": "3.0.0",
  6840. "source": {
  6841. "type": "git",
  6842. "url": "https://github.com/php-fig/cache.git",
  6843. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6844. },
  6845. "dist": {
  6846. "type": "zip",
  6847. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6848. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6849. "shasum": ""
  6850. },
  6851. "require": {
  6852. "php": ">=8.0.0"
  6853. },
  6854. "type": "library",
  6855. "extra": {
  6856. "branch-alias": {
  6857. "dev-master": "1.0.x-dev"
  6858. }
  6859. },
  6860. "autoload": {
  6861. "psr-4": {
  6862. "Psr\\Cache\\": "src/"
  6863. }
  6864. },
  6865. "notification-url": "https://packagist.org/downloads/",
  6866. "license": [
  6867. "MIT"
  6868. ],
  6869. "authors": [
  6870. {
  6871. "name": "PHP-FIG",
  6872. "homepage": "https://www.php-fig.org/"
  6873. }
  6874. ],
  6875. "description": "Common interface for caching libraries",
  6876. "keywords": [
  6877. "cache",
  6878. "psr",
  6879. "psr-6"
  6880. ],
  6881. "support": {
  6882. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6883. },
  6884. "time": "2021-02-03T23:26:27+00:00"
  6885. },
  6886. {
  6887. "name": "psr/container",
  6888. "version": "2.0.2",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://github.com/php-fig/container.git",
  6892. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6897. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6898. "shasum": ""
  6899. },
  6900. "require": {
  6901. "php": ">=7.4.0"
  6902. },
  6903. "type": "library",
  6904. "extra": {
  6905. "branch-alias": {
  6906. "dev-master": "2.0.x-dev"
  6907. }
  6908. },
  6909. "autoload": {
  6910. "psr-4": {
  6911. "Psr\\Container\\": "src/"
  6912. }
  6913. },
  6914. "notification-url": "https://packagist.org/downloads/",
  6915. "license": [
  6916. "MIT"
  6917. ],
  6918. "authors": [
  6919. {
  6920. "name": "PHP-FIG",
  6921. "homepage": "https://www.php-fig.org/"
  6922. }
  6923. ],
  6924. "description": "Common Container Interface (PHP FIG PSR-11)",
  6925. "homepage": "https://github.com/php-fig/container",
  6926. "keywords": [
  6927. "PSR-11",
  6928. "container",
  6929. "container-interface",
  6930. "container-interop",
  6931. "psr"
  6932. ],
  6933. "support": {
  6934. "issues": "https://github.com/php-fig/container/issues",
  6935. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6936. },
  6937. "time": "2021-11-05T16:47:00+00:00"
  6938. },
  6939. {
  6940. "name": "psr/event-dispatcher",
  6941. "version": "1.0.0",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/php-fig/event-dispatcher.git",
  6945. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6950. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "php": ">=7.2.0"
  6955. },
  6956. "type": "library",
  6957. "extra": {
  6958. "branch-alias": {
  6959. "dev-master": "1.0.x-dev"
  6960. }
  6961. },
  6962. "autoload": {
  6963. "psr-4": {
  6964. "Psr\\EventDispatcher\\": "src/"
  6965. }
  6966. },
  6967. "notification-url": "https://packagist.org/downloads/",
  6968. "license": [
  6969. "MIT"
  6970. ],
  6971. "authors": [
  6972. {
  6973. "name": "PHP-FIG",
  6974. "homepage": "http://www.php-fig.org/"
  6975. }
  6976. ],
  6977. "description": "Standard interfaces for event handling.",
  6978. "keywords": [
  6979. "events",
  6980. "psr",
  6981. "psr-14"
  6982. ],
  6983. "support": {
  6984. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6985. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6986. },
  6987. "time": "2019-01-08T18:20:26+00:00"
  6988. },
  6989. {
  6990. "name": "psr/http-client",
  6991. "version": "1.0.3",
  6992. "source": {
  6993. "type": "git",
  6994. "url": "https://github.com/php-fig/http-client.git",
  6995. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6996. },
  6997. "dist": {
  6998. "type": "zip",
  6999. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7000. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7001. "shasum": ""
  7002. },
  7003. "require": {
  7004. "php": "^7.0 || ^8.0",
  7005. "psr/http-message": "^1.0 || ^2.0"
  7006. },
  7007. "type": "library",
  7008. "extra": {
  7009. "branch-alias": {
  7010. "dev-master": "1.0.x-dev"
  7011. }
  7012. },
  7013. "autoload": {
  7014. "psr-4": {
  7015. "Psr\\Http\\Client\\": "src/"
  7016. }
  7017. },
  7018. "notification-url": "https://packagist.org/downloads/",
  7019. "license": [
  7020. "MIT"
  7021. ],
  7022. "authors": [
  7023. {
  7024. "name": "PHP-FIG",
  7025. "homepage": "https://www.php-fig.org/"
  7026. }
  7027. ],
  7028. "description": "Common interface for HTTP clients",
  7029. "homepage": "https://github.com/php-fig/http-client",
  7030. "keywords": [
  7031. "http",
  7032. "http-client",
  7033. "psr",
  7034. "psr-18"
  7035. ],
  7036. "support": {
  7037. "source": "https://github.com/php-fig/http-client"
  7038. },
  7039. "time": "2023-09-23T14:17:50+00:00"
  7040. },
  7041. {
  7042. "name": "psr/http-factory",
  7043. "version": "1.1.0",
  7044. "source": {
  7045. "type": "git",
  7046. "url": "https://github.com/php-fig/http-factory.git",
  7047. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7048. },
  7049. "dist": {
  7050. "type": "zip",
  7051. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7052. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7053. "shasum": ""
  7054. },
  7055. "require": {
  7056. "php": ">=7.1",
  7057. "psr/http-message": "^1.0 || ^2.0"
  7058. },
  7059. "type": "library",
  7060. "extra": {
  7061. "branch-alias": {
  7062. "dev-master": "1.0.x-dev"
  7063. }
  7064. },
  7065. "autoload": {
  7066. "psr-4": {
  7067. "Psr\\Http\\Message\\": "src/"
  7068. }
  7069. },
  7070. "notification-url": "https://packagist.org/downloads/",
  7071. "license": [
  7072. "MIT"
  7073. ],
  7074. "authors": [
  7075. {
  7076. "name": "PHP-FIG",
  7077. "homepage": "https://www.php-fig.org/"
  7078. }
  7079. ],
  7080. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7081. "keywords": [
  7082. "factory",
  7083. "http",
  7084. "message",
  7085. "psr",
  7086. "psr-17",
  7087. "psr-7",
  7088. "request",
  7089. "response"
  7090. ],
  7091. "support": {
  7092. "source": "https://github.com/php-fig/http-factory"
  7093. },
  7094. "time": "2024-04-15T12:06:14+00:00"
  7095. },
  7096. {
  7097. "name": "psr/http-message",
  7098. "version": "2.0",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/php-fig/http-message.git",
  7102. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7107. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7108. "shasum": ""
  7109. },
  7110. "require": {
  7111. "php": "^7.2 || ^8.0"
  7112. },
  7113. "type": "library",
  7114. "extra": {
  7115. "branch-alias": {
  7116. "dev-master": "2.0.x-dev"
  7117. }
  7118. },
  7119. "autoload": {
  7120. "psr-4": {
  7121. "Psr\\Http\\Message\\": "src/"
  7122. }
  7123. },
  7124. "notification-url": "https://packagist.org/downloads/",
  7125. "license": [
  7126. "MIT"
  7127. ],
  7128. "authors": [
  7129. {
  7130. "name": "PHP-FIG",
  7131. "homepage": "https://www.php-fig.org/"
  7132. }
  7133. ],
  7134. "description": "Common interface for HTTP messages",
  7135. "homepage": "https://github.com/php-fig/http-message",
  7136. "keywords": [
  7137. "http",
  7138. "http-message",
  7139. "psr",
  7140. "psr-7",
  7141. "request",
  7142. "response"
  7143. ],
  7144. "support": {
  7145. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7146. },
  7147. "time": "2023-04-04T09:54:51+00:00"
  7148. },
  7149. {
  7150. "name": "psr/log",
  7151. "version": "3.0.2",
  7152. "source": {
  7153. "type": "git",
  7154. "url": "https://github.com/php-fig/log.git",
  7155. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7156. },
  7157. "dist": {
  7158. "type": "zip",
  7159. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7160. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7161. "shasum": ""
  7162. },
  7163. "require": {
  7164. "php": ">=8.0.0"
  7165. },
  7166. "type": "library",
  7167. "extra": {
  7168. "branch-alias": {
  7169. "dev-master": "3.x-dev"
  7170. }
  7171. },
  7172. "autoload": {
  7173. "psr-4": {
  7174. "Psr\\Log\\": "src"
  7175. }
  7176. },
  7177. "notification-url": "https://packagist.org/downloads/",
  7178. "license": [
  7179. "MIT"
  7180. ],
  7181. "authors": [
  7182. {
  7183. "name": "PHP-FIG",
  7184. "homepage": "https://www.php-fig.org/"
  7185. }
  7186. ],
  7187. "description": "Common interface for logging libraries",
  7188. "homepage": "https://github.com/php-fig/log",
  7189. "keywords": [
  7190. "log",
  7191. "psr",
  7192. "psr-3"
  7193. ],
  7194. "support": {
  7195. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7196. },
  7197. "time": "2024-09-11T13:17:53+00:00"
  7198. },
  7199. {
  7200. "name": "psy/psysh",
  7201. "version": "v0.12.4",
  7202. "source": {
  7203. "type": "git",
  7204. "url": "https://github.com/bobthecow/psysh.git",
  7205. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  7206. },
  7207. "dist": {
  7208. "type": "zip",
  7209. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  7210. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  7211. "shasum": ""
  7212. },
  7213. "require": {
  7214. "ext-json": "*",
  7215. "ext-tokenizer": "*",
  7216. "nikic/php-parser": "^5.0 || ^4.0",
  7217. "php": "^8.0 || ^7.4",
  7218. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7219. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7220. },
  7221. "conflict": {
  7222. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7223. },
  7224. "require-dev": {
  7225. "bamarni/composer-bin-plugin": "^1.2"
  7226. },
  7227. "suggest": {
  7228. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7229. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7230. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7231. },
  7232. "bin": [
  7233. "bin/psysh"
  7234. ],
  7235. "type": "library",
  7236. "extra": {
  7237. "branch-alias": {
  7238. "dev-main": "0.12.x-dev"
  7239. },
  7240. "bamarni-bin": {
  7241. "bin-links": false,
  7242. "forward-command": false
  7243. }
  7244. },
  7245. "autoload": {
  7246. "files": [
  7247. "src/functions.php"
  7248. ],
  7249. "psr-4": {
  7250. "Psy\\": "src/"
  7251. }
  7252. },
  7253. "notification-url": "https://packagist.org/downloads/",
  7254. "license": [
  7255. "MIT"
  7256. ],
  7257. "authors": [
  7258. {
  7259. "name": "Justin Hileman",
  7260. "email": "justin@justinhileman.info",
  7261. "homepage": "http://justinhileman.com"
  7262. }
  7263. ],
  7264. "description": "An interactive shell for modern PHP.",
  7265. "homepage": "http://psysh.org",
  7266. "keywords": [
  7267. "REPL",
  7268. "console",
  7269. "interactive",
  7270. "shell"
  7271. ],
  7272. "support": {
  7273. "issues": "https://github.com/bobthecow/psysh/issues",
  7274. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  7275. },
  7276. "time": "2024-06-10T01:18:23+00:00"
  7277. },
  7278. {
  7279. "name": "ralouphie/getallheaders",
  7280. "version": "3.0.3",
  7281. "source": {
  7282. "type": "git",
  7283. "url": "https://github.com/ralouphie/getallheaders.git",
  7284. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7285. },
  7286. "dist": {
  7287. "type": "zip",
  7288. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7289. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7290. "shasum": ""
  7291. },
  7292. "require": {
  7293. "php": ">=5.6"
  7294. },
  7295. "require-dev": {
  7296. "php-coveralls/php-coveralls": "^2.1",
  7297. "phpunit/phpunit": "^5 || ^6.5"
  7298. },
  7299. "type": "library",
  7300. "autoload": {
  7301. "files": [
  7302. "src/getallheaders.php"
  7303. ]
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "MIT"
  7308. ],
  7309. "authors": [
  7310. {
  7311. "name": "Ralph Khattar",
  7312. "email": "ralph.khattar@gmail.com"
  7313. }
  7314. ],
  7315. "description": "A polyfill for getallheaders.",
  7316. "support": {
  7317. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7318. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7319. },
  7320. "time": "2019-03-08T08:55:37+00:00"
  7321. },
  7322. {
  7323. "name": "sebastian/diff",
  7324. "version": "4.0.6",
  7325. "source": {
  7326. "type": "git",
  7327. "url": "https://github.com/sebastianbergmann/diff.git",
  7328. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  7329. },
  7330. "dist": {
  7331. "type": "zip",
  7332. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7333. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7334. "shasum": ""
  7335. },
  7336. "require": {
  7337. "php": ">=7.3"
  7338. },
  7339. "require-dev": {
  7340. "phpunit/phpunit": "^9.3",
  7341. "symfony/process": "^4.2 || ^5"
  7342. },
  7343. "type": "library",
  7344. "extra": {
  7345. "branch-alias": {
  7346. "dev-master": "4.0-dev"
  7347. }
  7348. },
  7349. "autoload": {
  7350. "classmap": [
  7351. "src/"
  7352. ]
  7353. },
  7354. "notification-url": "https://packagist.org/downloads/",
  7355. "license": [
  7356. "BSD-3-Clause"
  7357. ],
  7358. "authors": [
  7359. {
  7360. "name": "Sebastian Bergmann",
  7361. "email": "sebastian@phpunit.de"
  7362. },
  7363. {
  7364. "name": "Kore Nordmann",
  7365. "email": "mail@kore-nordmann.de"
  7366. }
  7367. ],
  7368. "description": "Diff implementation",
  7369. "homepage": "https://github.com/sebastianbergmann/diff",
  7370. "keywords": [
  7371. "diff",
  7372. "udiff",
  7373. "unidiff",
  7374. "unified diff"
  7375. ],
  7376. "support": {
  7377. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7378. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  7379. },
  7380. "funding": [
  7381. {
  7382. "url": "https://github.com/sebastianbergmann",
  7383. "type": "github"
  7384. }
  7385. ],
  7386. "time": "2024-03-02T06:30:58+00:00"
  7387. },
  7388. {
  7389. "name": "symfony/console",
  7390. "version": "v6.4.11",
  7391. "source": {
  7392. "type": "git",
  7393. "url": "https://github.com/symfony/console.git",
  7394. "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998"
  7395. },
  7396. "dist": {
  7397. "type": "zip",
  7398. "url": "https://api.github.com/repos/symfony/console/zipball/42686880adaacdad1835ee8fc2a9ec5b7bd63998",
  7399. "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998",
  7400. "shasum": ""
  7401. },
  7402. "require": {
  7403. "php": ">=8.1",
  7404. "symfony/deprecation-contracts": "^2.5|^3",
  7405. "symfony/polyfill-mbstring": "~1.0",
  7406. "symfony/service-contracts": "^2.5|^3",
  7407. "symfony/string": "^5.4|^6.0|^7.0"
  7408. },
  7409. "conflict": {
  7410. "symfony/dependency-injection": "<5.4",
  7411. "symfony/dotenv": "<5.4",
  7412. "symfony/event-dispatcher": "<5.4",
  7413. "symfony/lock": "<5.4",
  7414. "symfony/process": "<5.4"
  7415. },
  7416. "provide": {
  7417. "psr/log-implementation": "1.0|2.0|3.0"
  7418. },
  7419. "require-dev": {
  7420. "psr/log": "^1|^2|^3",
  7421. "symfony/config": "^5.4|^6.0|^7.0",
  7422. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7423. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7424. "symfony/http-foundation": "^6.4|^7.0",
  7425. "symfony/http-kernel": "^6.4|^7.0",
  7426. "symfony/lock": "^5.4|^6.0|^7.0",
  7427. "symfony/messenger": "^5.4|^6.0|^7.0",
  7428. "symfony/process": "^5.4|^6.0|^7.0",
  7429. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7430. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7431. },
  7432. "type": "library",
  7433. "autoload": {
  7434. "psr-4": {
  7435. "Symfony\\Component\\Console\\": ""
  7436. },
  7437. "exclude-from-classmap": [
  7438. "/Tests/"
  7439. ]
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "MIT"
  7444. ],
  7445. "authors": [
  7446. {
  7447. "name": "Fabien Potencier",
  7448. "email": "fabien@symfony.com"
  7449. },
  7450. {
  7451. "name": "Symfony Community",
  7452. "homepage": "https://symfony.com/contributors"
  7453. }
  7454. ],
  7455. "description": "Eases the creation of beautiful and testable command line interfaces",
  7456. "homepage": "https://symfony.com",
  7457. "keywords": [
  7458. "cli",
  7459. "command-line",
  7460. "console",
  7461. "terminal"
  7462. ],
  7463. "support": {
  7464. "source": "https://github.com/symfony/console/tree/v6.4.11"
  7465. },
  7466. "funding": [
  7467. {
  7468. "url": "https://symfony.com/sponsor",
  7469. "type": "custom"
  7470. },
  7471. {
  7472. "url": "https://github.com/fabpot",
  7473. "type": "github"
  7474. },
  7475. {
  7476. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7477. "type": "tidelift"
  7478. }
  7479. ],
  7480. "time": "2024-08-15T22:48:29+00:00"
  7481. },
  7482. {
  7483. "name": "symfony/dependency-injection",
  7484. "version": "v6.4.11",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/symfony/dependency-injection.git",
  7488. "reference": "e93c8368dc9915c2fe12018ff22fcbbdd32c9a9e"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e93c8368dc9915c2fe12018ff22fcbbdd32c9a9e",
  7493. "reference": "e93c8368dc9915c2fe12018ff22fcbbdd32c9a9e",
  7494. "shasum": ""
  7495. },
  7496. "require": {
  7497. "php": ">=8.1",
  7498. "psr/container": "^1.1|^2.0",
  7499. "symfony/deprecation-contracts": "^2.5|^3",
  7500. "symfony/service-contracts": "^2.5|^3.0",
  7501. "symfony/var-exporter": "^6.2.10|^7.0"
  7502. },
  7503. "conflict": {
  7504. "ext-psr": "<1.1|>=2",
  7505. "symfony/config": "<6.1",
  7506. "symfony/finder": "<5.4",
  7507. "symfony/proxy-manager-bridge": "<6.3",
  7508. "symfony/yaml": "<5.4"
  7509. },
  7510. "provide": {
  7511. "psr/container-implementation": "1.1|2.0",
  7512. "symfony/service-implementation": "1.1|2.0|3.0"
  7513. },
  7514. "require-dev": {
  7515. "symfony/config": "^6.1|^7.0",
  7516. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7517. "symfony/yaml": "^5.4|^6.0|^7.0"
  7518. },
  7519. "type": "library",
  7520. "autoload": {
  7521. "psr-4": {
  7522. "Symfony\\Component\\DependencyInjection\\": ""
  7523. },
  7524. "exclude-from-classmap": [
  7525. "/Tests/"
  7526. ]
  7527. },
  7528. "notification-url": "https://packagist.org/downloads/",
  7529. "license": [
  7530. "MIT"
  7531. ],
  7532. "authors": [
  7533. {
  7534. "name": "Fabien Potencier",
  7535. "email": "fabien@symfony.com"
  7536. },
  7537. {
  7538. "name": "Symfony Community",
  7539. "homepage": "https://symfony.com/contributors"
  7540. }
  7541. ],
  7542. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7543. "homepage": "https://symfony.com",
  7544. "support": {
  7545. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.11"
  7546. },
  7547. "funding": [
  7548. {
  7549. "url": "https://symfony.com/sponsor",
  7550. "type": "custom"
  7551. },
  7552. {
  7553. "url": "https://github.com/fabpot",
  7554. "type": "github"
  7555. },
  7556. {
  7557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7558. "type": "tidelift"
  7559. }
  7560. ],
  7561. "time": "2024-08-29T08:15:38+00:00"
  7562. },
  7563. {
  7564. "name": "symfony/deprecation-contracts",
  7565. "version": "v3.5.0",
  7566. "source": {
  7567. "type": "git",
  7568. "url": "https://github.com/symfony/deprecation-contracts.git",
  7569. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  7570. },
  7571. "dist": {
  7572. "type": "zip",
  7573. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7574. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7575. "shasum": ""
  7576. },
  7577. "require": {
  7578. "php": ">=8.1"
  7579. },
  7580. "type": "library",
  7581. "extra": {
  7582. "branch-alias": {
  7583. "dev-main": "3.5-dev"
  7584. },
  7585. "thanks": {
  7586. "name": "symfony/contracts",
  7587. "url": "https://github.com/symfony/contracts"
  7588. }
  7589. },
  7590. "autoload": {
  7591. "files": [
  7592. "function.php"
  7593. ]
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "MIT"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Nicolas Grekas",
  7602. "email": "p@tchwork.com"
  7603. },
  7604. {
  7605. "name": "Symfony Community",
  7606. "homepage": "https://symfony.com/contributors"
  7607. }
  7608. ],
  7609. "description": "A generic function and convention to trigger deprecation notices",
  7610. "homepage": "https://symfony.com",
  7611. "support": {
  7612. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7613. },
  7614. "funding": [
  7615. {
  7616. "url": "https://symfony.com/sponsor",
  7617. "type": "custom"
  7618. },
  7619. {
  7620. "url": "https://github.com/fabpot",
  7621. "type": "github"
  7622. },
  7623. {
  7624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7625. "type": "tidelift"
  7626. }
  7627. ],
  7628. "time": "2024-04-18T09:32:20+00:00"
  7629. },
  7630. {
  7631. "name": "symfony/error-handler",
  7632. "version": "v6.4.10",
  7633. "source": {
  7634. "type": "git",
  7635. "url": "https://github.com/symfony/error-handler.git",
  7636. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0"
  7637. },
  7638. "dist": {
  7639. "type": "zip",
  7640. "url": "https://api.github.com/repos/symfony/error-handler/zipball/231f1b2ee80f72daa1972f7340297d67439224f0",
  7641. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0",
  7642. "shasum": ""
  7643. },
  7644. "require": {
  7645. "php": ">=8.1",
  7646. "psr/log": "^1|^2|^3",
  7647. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7648. },
  7649. "conflict": {
  7650. "symfony/deprecation-contracts": "<2.5",
  7651. "symfony/http-kernel": "<6.4"
  7652. },
  7653. "require-dev": {
  7654. "symfony/deprecation-contracts": "^2.5|^3",
  7655. "symfony/http-kernel": "^6.4|^7.0",
  7656. "symfony/serializer": "^5.4|^6.0|^7.0"
  7657. },
  7658. "bin": [
  7659. "Resources/bin/patch-type-declarations"
  7660. ],
  7661. "type": "library",
  7662. "autoload": {
  7663. "psr-4": {
  7664. "Symfony\\Component\\ErrorHandler\\": ""
  7665. },
  7666. "exclude-from-classmap": [
  7667. "/Tests/"
  7668. ]
  7669. },
  7670. "notification-url": "https://packagist.org/downloads/",
  7671. "license": [
  7672. "MIT"
  7673. ],
  7674. "authors": [
  7675. {
  7676. "name": "Fabien Potencier",
  7677. "email": "fabien@symfony.com"
  7678. },
  7679. {
  7680. "name": "Symfony Community",
  7681. "homepage": "https://symfony.com/contributors"
  7682. }
  7683. ],
  7684. "description": "Provides tools to manage errors and ease debugging PHP code",
  7685. "homepage": "https://symfony.com",
  7686. "support": {
  7687. "source": "https://github.com/symfony/error-handler/tree/v6.4.10"
  7688. },
  7689. "funding": [
  7690. {
  7691. "url": "https://symfony.com/sponsor",
  7692. "type": "custom"
  7693. },
  7694. {
  7695. "url": "https://github.com/fabpot",
  7696. "type": "github"
  7697. },
  7698. {
  7699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7700. "type": "tidelift"
  7701. }
  7702. ],
  7703. "time": "2024-07-26T12:30:32+00:00"
  7704. },
  7705. {
  7706. "name": "symfony/event-dispatcher",
  7707. "version": "v6.4.8",
  7708. "source": {
  7709. "type": "git",
  7710. "url": "https://github.com/symfony/event-dispatcher.git",
  7711. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  7712. },
  7713. "dist": {
  7714. "type": "zip",
  7715. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  7716. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  7717. "shasum": ""
  7718. },
  7719. "require": {
  7720. "php": ">=8.1",
  7721. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7722. },
  7723. "conflict": {
  7724. "symfony/dependency-injection": "<5.4",
  7725. "symfony/service-contracts": "<2.5"
  7726. },
  7727. "provide": {
  7728. "psr/event-dispatcher-implementation": "1.0",
  7729. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7730. },
  7731. "require-dev": {
  7732. "psr/log": "^1|^2|^3",
  7733. "symfony/config": "^5.4|^6.0|^7.0",
  7734. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7735. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7736. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7737. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7738. "symfony/service-contracts": "^2.5|^3",
  7739. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  7740. },
  7741. "type": "library",
  7742. "autoload": {
  7743. "psr-4": {
  7744. "Symfony\\Component\\EventDispatcher\\": ""
  7745. },
  7746. "exclude-from-classmap": [
  7747. "/Tests/"
  7748. ]
  7749. },
  7750. "notification-url": "https://packagist.org/downloads/",
  7751. "license": [
  7752. "MIT"
  7753. ],
  7754. "authors": [
  7755. {
  7756. "name": "Fabien Potencier",
  7757. "email": "fabien@symfony.com"
  7758. },
  7759. {
  7760. "name": "Symfony Community",
  7761. "homepage": "https://symfony.com/contributors"
  7762. }
  7763. ],
  7764. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7765. "homepage": "https://symfony.com",
  7766. "support": {
  7767. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  7768. },
  7769. "funding": [
  7770. {
  7771. "url": "https://symfony.com/sponsor",
  7772. "type": "custom"
  7773. },
  7774. {
  7775. "url": "https://github.com/fabpot",
  7776. "type": "github"
  7777. },
  7778. {
  7779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7780. "type": "tidelift"
  7781. }
  7782. ],
  7783. "time": "2024-05-31T14:49:08+00:00"
  7784. },
  7785. {
  7786. "name": "symfony/event-dispatcher-contracts",
  7787. "version": "v3.5.0",
  7788. "source": {
  7789. "type": "git",
  7790. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7791. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  7792. },
  7793. "dist": {
  7794. "type": "zip",
  7795. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  7796. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  7797. "shasum": ""
  7798. },
  7799. "require": {
  7800. "php": ">=8.1",
  7801. "psr/event-dispatcher": "^1"
  7802. },
  7803. "type": "library",
  7804. "extra": {
  7805. "branch-alias": {
  7806. "dev-main": "3.5-dev"
  7807. },
  7808. "thanks": {
  7809. "name": "symfony/contracts",
  7810. "url": "https://github.com/symfony/contracts"
  7811. }
  7812. },
  7813. "autoload": {
  7814. "psr-4": {
  7815. "Symfony\\Contracts\\EventDispatcher\\": ""
  7816. }
  7817. },
  7818. "notification-url": "https://packagist.org/downloads/",
  7819. "license": [
  7820. "MIT"
  7821. ],
  7822. "authors": [
  7823. {
  7824. "name": "Nicolas Grekas",
  7825. "email": "p@tchwork.com"
  7826. },
  7827. {
  7828. "name": "Symfony Community",
  7829. "homepage": "https://symfony.com/contributors"
  7830. }
  7831. ],
  7832. "description": "Generic abstractions related to dispatching event",
  7833. "homepage": "https://symfony.com",
  7834. "keywords": [
  7835. "abstractions",
  7836. "contracts",
  7837. "decoupling",
  7838. "interfaces",
  7839. "interoperability",
  7840. "standards"
  7841. ],
  7842. "support": {
  7843. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  7844. },
  7845. "funding": [
  7846. {
  7847. "url": "https://symfony.com/sponsor",
  7848. "type": "custom"
  7849. },
  7850. {
  7851. "url": "https://github.com/fabpot",
  7852. "type": "github"
  7853. },
  7854. {
  7855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7856. "type": "tidelift"
  7857. }
  7858. ],
  7859. "time": "2024-04-18T09:32:20+00:00"
  7860. },
  7861. {
  7862. "name": "symfony/filesystem",
  7863. "version": "v6.4.9",
  7864. "source": {
  7865. "type": "git",
  7866. "url": "https://github.com/symfony/filesystem.git",
  7867. "reference": "b51ef8059159330b74a4d52f68e671033c0fe463"
  7868. },
  7869. "dist": {
  7870. "type": "zip",
  7871. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b51ef8059159330b74a4d52f68e671033c0fe463",
  7872. "reference": "b51ef8059159330b74a4d52f68e671033c0fe463",
  7873. "shasum": ""
  7874. },
  7875. "require": {
  7876. "php": ">=8.1",
  7877. "symfony/polyfill-ctype": "~1.8",
  7878. "symfony/polyfill-mbstring": "~1.8"
  7879. },
  7880. "require-dev": {
  7881. "symfony/process": "^5.4|^6.4|^7.0"
  7882. },
  7883. "type": "library",
  7884. "autoload": {
  7885. "psr-4": {
  7886. "Symfony\\Component\\Filesystem\\": ""
  7887. },
  7888. "exclude-from-classmap": [
  7889. "/Tests/"
  7890. ]
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "MIT"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Fabien Potencier",
  7899. "email": "fabien@symfony.com"
  7900. },
  7901. {
  7902. "name": "Symfony Community",
  7903. "homepage": "https://symfony.com/contributors"
  7904. }
  7905. ],
  7906. "description": "Provides basic utilities for the filesystem",
  7907. "homepage": "https://symfony.com",
  7908. "support": {
  7909. "source": "https://github.com/symfony/filesystem/tree/v6.4.9"
  7910. },
  7911. "funding": [
  7912. {
  7913. "url": "https://symfony.com/sponsor",
  7914. "type": "custom"
  7915. },
  7916. {
  7917. "url": "https://github.com/fabpot",
  7918. "type": "github"
  7919. },
  7920. {
  7921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7922. "type": "tidelift"
  7923. }
  7924. ],
  7925. "time": "2024-06-28T09:49:33+00:00"
  7926. },
  7927. {
  7928. "name": "symfony/finder",
  7929. "version": "v6.4.11",
  7930. "source": {
  7931. "type": "git",
  7932. "url": "https://github.com/symfony/finder.git",
  7933. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453"
  7934. },
  7935. "dist": {
  7936. "type": "zip",
  7937. "url": "https://api.github.com/repos/symfony/finder/zipball/d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  7938. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  7939. "shasum": ""
  7940. },
  7941. "require": {
  7942. "php": ">=8.1"
  7943. },
  7944. "require-dev": {
  7945. "symfony/filesystem": "^6.0|^7.0"
  7946. },
  7947. "type": "library",
  7948. "autoload": {
  7949. "psr-4": {
  7950. "Symfony\\Component\\Finder\\": ""
  7951. },
  7952. "exclude-from-classmap": [
  7953. "/Tests/"
  7954. ]
  7955. },
  7956. "notification-url": "https://packagist.org/downloads/",
  7957. "license": [
  7958. "MIT"
  7959. ],
  7960. "authors": [
  7961. {
  7962. "name": "Fabien Potencier",
  7963. "email": "fabien@symfony.com"
  7964. },
  7965. {
  7966. "name": "Symfony Community",
  7967. "homepage": "https://symfony.com/contributors"
  7968. }
  7969. ],
  7970. "description": "Finds files and directories via an intuitive fluent interface",
  7971. "homepage": "https://symfony.com",
  7972. "support": {
  7973. "source": "https://github.com/symfony/finder/tree/v6.4.11"
  7974. },
  7975. "funding": [
  7976. {
  7977. "url": "https://symfony.com/sponsor",
  7978. "type": "custom"
  7979. },
  7980. {
  7981. "url": "https://github.com/fabpot",
  7982. "type": "github"
  7983. },
  7984. {
  7985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7986. "type": "tidelift"
  7987. }
  7988. ],
  7989. "time": "2024-08-13T14:27:37+00:00"
  7990. },
  7991. {
  7992. "name": "symfony/http-foundation",
  7993. "version": "v6.4.10",
  7994. "source": {
  7995. "type": "git",
  7996. "url": "https://github.com/symfony/http-foundation.git",
  7997. "reference": "117f1f20a7ade7bcea28b861fb79160a21a1e37b"
  7998. },
  7999. "dist": {
  8000. "type": "zip",
  8001. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/117f1f20a7ade7bcea28b861fb79160a21a1e37b",
  8002. "reference": "117f1f20a7ade7bcea28b861fb79160a21a1e37b",
  8003. "shasum": ""
  8004. },
  8005. "require": {
  8006. "php": ">=8.1",
  8007. "symfony/deprecation-contracts": "^2.5|^3",
  8008. "symfony/polyfill-mbstring": "~1.1",
  8009. "symfony/polyfill-php83": "^1.27"
  8010. },
  8011. "conflict": {
  8012. "symfony/cache": "<6.3"
  8013. },
  8014. "require-dev": {
  8015. "doctrine/dbal": "^2.13.1|^3|^4",
  8016. "predis/predis": "^1.1|^2.0",
  8017. "symfony/cache": "^6.3|^7.0",
  8018. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8019. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8020. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  8021. "symfony/mime": "^5.4|^6.0|^7.0",
  8022. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  8023. },
  8024. "type": "library",
  8025. "autoload": {
  8026. "psr-4": {
  8027. "Symfony\\Component\\HttpFoundation\\": ""
  8028. },
  8029. "exclude-from-classmap": [
  8030. "/Tests/"
  8031. ]
  8032. },
  8033. "notification-url": "https://packagist.org/downloads/",
  8034. "license": [
  8035. "MIT"
  8036. ],
  8037. "authors": [
  8038. {
  8039. "name": "Fabien Potencier",
  8040. "email": "fabien@symfony.com"
  8041. },
  8042. {
  8043. "name": "Symfony Community",
  8044. "homepage": "https://symfony.com/contributors"
  8045. }
  8046. ],
  8047. "description": "Defines an object-oriented layer for the HTTP specification",
  8048. "homepage": "https://symfony.com",
  8049. "support": {
  8050. "source": "https://github.com/symfony/http-foundation/tree/v6.4.10"
  8051. },
  8052. "funding": [
  8053. {
  8054. "url": "https://symfony.com/sponsor",
  8055. "type": "custom"
  8056. },
  8057. {
  8058. "url": "https://github.com/fabpot",
  8059. "type": "github"
  8060. },
  8061. {
  8062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8063. "type": "tidelift"
  8064. }
  8065. ],
  8066. "time": "2024-07-26T12:36:27+00:00"
  8067. },
  8068. {
  8069. "name": "symfony/http-kernel",
  8070. "version": "v6.4.11",
  8071. "source": {
  8072. "type": "git",
  8073. "url": "https://github.com/symfony/http-kernel.git",
  8074. "reference": "1ba6b89d781cb47448155cc70dd2e0f1b0584c79"
  8075. },
  8076. "dist": {
  8077. "type": "zip",
  8078. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1ba6b89d781cb47448155cc70dd2e0f1b0584c79",
  8079. "reference": "1ba6b89d781cb47448155cc70dd2e0f1b0584c79",
  8080. "shasum": ""
  8081. },
  8082. "require": {
  8083. "php": ">=8.1",
  8084. "psr/log": "^1|^2|^3",
  8085. "symfony/deprecation-contracts": "^2.5|^3",
  8086. "symfony/error-handler": "^6.4|^7.0",
  8087. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8088. "symfony/http-foundation": "^6.4|^7.0",
  8089. "symfony/polyfill-ctype": "^1.8"
  8090. },
  8091. "conflict": {
  8092. "symfony/browser-kit": "<5.4",
  8093. "symfony/cache": "<5.4",
  8094. "symfony/config": "<6.1",
  8095. "symfony/console": "<5.4",
  8096. "symfony/dependency-injection": "<6.4",
  8097. "symfony/doctrine-bridge": "<5.4",
  8098. "symfony/form": "<5.4",
  8099. "symfony/http-client": "<5.4",
  8100. "symfony/http-client-contracts": "<2.5",
  8101. "symfony/mailer": "<5.4",
  8102. "symfony/messenger": "<5.4",
  8103. "symfony/translation": "<5.4",
  8104. "symfony/translation-contracts": "<2.5",
  8105. "symfony/twig-bridge": "<5.4",
  8106. "symfony/validator": "<6.4",
  8107. "symfony/var-dumper": "<6.3",
  8108. "twig/twig": "<2.13"
  8109. },
  8110. "provide": {
  8111. "psr/log-implementation": "1.0|2.0|3.0"
  8112. },
  8113. "require-dev": {
  8114. "psr/cache": "^1.0|^2.0|^3.0",
  8115. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8116. "symfony/clock": "^6.2|^7.0",
  8117. "symfony/config": "^6.1|^7.0",
  8118. "symfony/console": "^5.4|^6.0|^7.0",
  8119. "symfony/css-selector": "^5.4|^6.0|^7.0",
  8120. "symfony/dependency-injection": "^6.4|^7.0",
  8121. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  8122. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8123. "symfony/finder": "^5.4|^6.0|^7.0",
  8124. "symfony/http-client-contracts": "^2.5|^3",
  8125. "symfony/process": "^5.4|^6.0|^7.0",
  8126. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  8127. "symfony/routing": "^5.4|^6.0|^7.0",
  8128. "symfony/serializer": "^6.4.4|^7.0.4",
  8129. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8130. "symfony/translation": "^5.4|^6.0|^7.0",
  8131. "symfony/translation-contracts": "^2.5|^3",
  8132. "symfony/uid": "^5.4|^6.0|^7.0",
  8133. "symfony/validator": "^6.4|^7.0",
  8134. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  8135. "symfony/var-exporter": "^6.2|^7.0",
  8136. "twig/twig": "^2.13|^3.0.4"
  8137. },
  8138. "type": "library",
  8139. "autoload": {
  8140. "psr-4": {
  8141. "Symfony\\Component\\HttpKernel\\": ""
  8142. },
  8143. "exclude-from-classmap": [
  8144. "/Tests/"
  8145. ]
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Fabien Potencier",
  8154. "email": "fabien@symfony.com"
  8155. },
  8156. {
  8157. "name": "Symfony Community",
  8158. "homepage": "https://symfony.com/contributors"
  8159. }
  8160. ],
  8161. "description": "Provides a structured process for converting a Request into a Response",
  8162. "homepage": "https://symfony.com",
  8163. "support": {
  8164. "source": "https://github.com/symfony/http-kernel/tree/v6.4.11"
  8165. },
  8166. "funding": [
  8167. {
  8168. "url": "https://symfony.com/sponsor",
  8169. "type": "custom"
  8170. },
  8171. {
  8172. "url": "https://github.com/fabpot",
  8173. "type": "github"
  8174. },
  8175. {
  8176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8177. "type": "tidelift"
  8178. }
  8179. ],
  8180. "time": "2024-08-30T16:57:20+00:00"
  8181. },
  8182. {
  8183. "name": "symfony/mailer",
  8184. "version": "v6.4.9",
  8185. "source": {
  8186. "type": "git",
  8187. "url": "https://github.com/symfony/mailer.git",
  8188. "reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45"
  8189. },
  8190. "dist": {
  8191. "type": "zip",
  8192. "url": "https://api.github.com/repos/symfony/mailer/zipball/e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45",
  8193. "reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45",
  8194. "shasum": ""
  8195. },
  8196. "require": {
  8197. "egulias/email-validator": "^2.1.10|^3|^4",
  8198. "php": ">=8.1",
  8199. "psr/event-dispatcher": "^1",
  8200. "psr/log": "^1|^2|^3",
  8201. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8202. "symfony/mime": "^6.2|^7.0",
  8203. "symfony/service-contracts": "^2.5|^3"
  8204. },
  8205. "conflict": {
  8206. "symfony/http-client-contracts": "<2.5",
  8207. "symfony/http-kernel": "<5.4",
  8208. "symfony/messenger": "<6.2",
  8209. "symfony/mime": "<6.2",
  8210. "symfony/twig-bridge": "<6.2.1"
  8211. },
  8212. "require-dev": {
  8213. "symfony/console": "^5.4|^6.0|^7.0",
  8214. "symfony/http-client": "^5.4|^6.0|^7.0",
  8215. "symfony/messenger": "^6.2|^7.0",
  8216. "symfony/twig-bridge": "^6.2|^7.0"
  8217. },
  8218. "type": "library",
  8219. "autoload": {
  8220. "psr-4": {
  8221. "Symfony\\Component\\Mailer\\": ""
  8222. },
  8223. "exclude-from-classmap": [
  8224. "/Tests/"
  8225. ]
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "MIT"
  8230. ],
  8231. "authors": [
  8232. {
  8233. "name": "Fabien Potencier",
  8234. "email": "fabien@symfony.com"
  8235. },
  8236. {
  8237. "name": "Symfony Community",
  8238. "homepage": "https://symfony.com/contributors"
  8239. }
  8240. ],
  8241. "description": "Helps sending emails",
  8242. "homepage": "https://symfony.com",
  8243. "support": {
  8244. "source": "https://github.com/symfony/mailer/tree/v6.4.9"
  8245. },
  8246. "funding": [
  8247. {
  8248. "url": "https://symfony.com/sponsor",
  8249. "type": "custom"
  8250. },
  8251. {
  8252. "url": "https://github.com/fabpot",
  8253. "type": "github"
  8254. },
  8255. {
  8256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8257. "type": "tidelift"
  8258. }
  8259. ],
  8260. "time": "2024-06-28T07:59:05+00:00"
  8261. },
  8262. {
  8263. "name": "symfony/mime",
  8264. "version": "v6.4.11",
  8265. "source": {
  8266. "type": "git",
  8267. "url": "https://github.com/symfony/mime.git",
  8268. "reference": "dba5d5f6073baf7a3576b580cc4a208b4ca00553"
  8269. },
  8270. "dist": {
  8271. "type": "zip",
  8272. "url": "https://api.github.com/repos/symfony/mime/zipball/dba5d5f6073baf7a3576b580cc4a208b4ca00553",
  8273. "reference": "dba5d5f6073baf7a3576b580cc4a208b4ca00553",
  8274. "shasum": ""
  8275. },
  8276. "require": {
  8277. "php": ">=8.1",
  8278. "symfony/deprecation-contracts": "^2.5|^3",
  8279. "symfony/polyfill-intl-idn": "^1.10",
  8280. "symfony/polyfill-mbstring": "^1.0"
  8281. },
  8282. "conflict": {
  8283. "egulias/email-validator": "~3.0.0",
  8284. "phpdocumentor/reflection-docblock": "<3.2.2",
  8285. "phpdocumentor/type-resolver": "<1.4.0",
  8286. "symfony/mailer": "<5.4",
  8287. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8288. },
  8289. "require-dev": {
  8290. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8291. "league/html-to-markdown": "^5.0",
  8292. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8293. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8294. "symfony/process": "^5.4|^6.4|^7.0",
  8295. "symfony/property-access": "^5.4|^6.0|^7.0",
  8296. "symfony/property-info": "^5.4|^6.0|^7.0",
  8297. "symfony/serializer": "^6.4.3|^7.0.3"
  8298. },
  8299. "type": "library",
  8300. "autoload": {
  8301. "psr-4": {
  8302. "Symfony\\Component\\Mime\\": ""
  8303. },
  8304. "exclude-from-classmap": [
  8305. "/Tests/"
  8306. ]
  8307. },
  8308. "notification-url": "https://packagist.org/downloads/",
  8309. "license": [
  8310. "MIT"
  8311. ],
  8312. "authors": [
  8313. {
  8314. "name": "Fabien Potencier",
  8315. "email": "fabien@symfony.com"
  8316. },
  8317. {
  8318. "name": "Symfony Community",
  8319. "homepage": "https://symfony.com/contributors"
  8320. }
  8321. ],
  8322. "description": "Allows manipulating MIME messages",
  8323. "homepage": "https://symfony.com",
  8324. "keywords": [
  8325. "mime",
  8326. "mime-type"
  8327. ],
  8328. "support": {
  8329. "source": "https://github.com/symfony/mime/tree/v6.4.11"
  8330. },
  8331. "funding": [
  8332. {
  8333. "url": "https://symfony.com/sponsor",
  8334. "type": "custom"
  8335. },
  8336. {
  8337. "url": "https://github.com/fabpot",
  8338. "type": "github"
  8339. },
  8340. {
  8341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8342. "type": "tidelift"
  8343. }
  8344. ],
  8345. "time": "2024-08-13T12:15:02+00:00"
  8346. },
  8347. {
  8348. "name": "symfony/polyfill-ctype",
  8349. "version": "v1.29.0",
  8350. "source": {
  8351. "type": "git",
  8352. "url": "https://github.com/symfony/polyfill-ctype.git",
  8353. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  8354. },
  8355. "dist": {
  8356. "type": "zip",
  8357. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  8358. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  8359. "shasum": ""
  8360. },
  8361. "require": {
  8362. "php": ">=7.1"
  8363. },
  8364. "provide": {
  8365. "ext-ctype": "*"
  8366. },
  8367. "suggest": {
  8368. "ext-ctype": "For best performance"
  8369. },
  8370. "type": "library",
  8371. "extra": {
  8372. "thanks": {
  8373. "name": "symfony/polyfill",
  8374. "url": "https://github.com/symfony/polyfill"
  8375. }
  8376. },
  8377. "autoload": {
  8378. "files": [
  8379. "bootstrap.php"
  8380. ],
  8381. "psr-4": {
  8382. "Symfony\\Polyfill\\Ctype\\": ""
  8383. }
  8384. },
  8385. "notification-url": "https://packagist.org/downloads/",
  8386. "license": [
  8387. "MIT"
  8388. ],
  8389. "authors": [
  8390. {
  8391. "name": "Gert de Pagter",
  8392. "email": "BackEndTea@gmail.com"
  8393. },
  8394. {
  8395. "name": "Symfony Community",
  8396. "homepage": "https://symfony.com/contributors"
  8397. }
  8398. ],
  8399. "description": "Symfony polyfill for ctype functions",
  8400. "homepage": "https://symfony.com",
  8401. "keywords": [
  8402. "compatibility",
  8403. "ctype",
  8404. "polyfill",
  8405. "portable"
  8406. ],
  8407. "support": {
  8408. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  8409. },
  8410. "funding": [
  8411. {
  8412. "url": "https://symfony.com/sponsor",
  8413. "type": "custom"
  8414. },
  8415. {
  8416. "url": "https://github.com/fabpot",
  8417. "type": "github"
  8418. },
  8419. {
  8420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8421. "type": "tidelift"
  8422. }
  8423. ],
  8424. "time": "2024-01-29T20:11:03+00:00"
  8425. },
  8426. {
  8427. "name": "symfony/polyfill-iconv",
  8428. "version": "v1.29.0",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/symfony/polyfill-iconv.git",
  8432. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  8437. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  8438. "shasum": ""
  8439. },
  8440. "require": {
  8441. "php": ">=7.1"
  8442. },
  8443. "provide": {
  8444. "ext-iconv": "*"
  8445. },
  8446. "suggest": {
  8447. "ext-iconv": "For best performance"
  8448. },
  8449. "type": "library",
  8450. "extra": {
  8451. "thanks": {
  8452. "name": "symfony/polyfill",
  8453. "url": "https://github.com/symfony/polyfill"
  8454. }
  8455. },
  8456. "autoload": {
  8457. "files": [
  8458. "bootstrap.php"
  8459. ],
  8460. "psr-4": {
  8461. "Symfony\\Polyfill\\Iconv\\": ""
  8462. }
  8463. },
  8464. "notification-url": "https://packagist.org/downloads/",
  8465. "license": [
  8466. "MIT"
  8467. ],
  8468. "authors": [
  8469. {
  8470. "name": "Nicolas Grekas",
  8471. "email": "p@tchwork.com"
  8472. },
  8473. {
  8474. "name": "Symfony Community",
  8475. "homepage": "https://symfony.com/contributors"
  8476. }
  8477. ],
  8478. "description": "Symfony polyfill for the Iconv extension",
  8479. "homepage": "https://symfony.com",
  8480. "keywords": [
  8481. "compatibility",
  8482. "iconv",
  8483. "polyfill",
  8484. "portable",
  8485. "shim"
  8486. ],
  8487. "support": {
  8488. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  8489. },
  8490. "funding": [
  8491. {
  8492. "url": "https://symfony.com/sponsor",
  8493. "type": "custom"
  8494. },
  8495. {
  8496. "url": "https://github.com/fabpot",
  8497. "type": "github"
  8498. },
  8499. {
  8500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8501. "type": "tidelift"
  8502. }
  8503. ],
  8504. "time": "2024-01-29T20:11:03+00:00"
  8505. },
  8506. {
  8507. "name": "symfony/polyfill-intl-grapheme",
  8508. "version": "v1.29.0",
  8509. "source": {
  8510. "type": "git",
  8511. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8512. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  8513. },
  8514. "dist": {
  8515. "type": "zip",
  8516. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  8517. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  8518. "shasum": ""
  8519. },
  8520. "require": {
  8521. "php": ">=7.1"
  8522. },
  8523. "suggest": {
  8524. "ext-intl": "For best performance"
  8525. },
  8526. "type": "library",
  8527. "extra": {
  8528. "thanks": {
  8529. "name": "symfony/polyfill",
  8530. "url": "https://github.com/symfony/polyfill"
  8531. }
  8532. },
  8533. "autoload": {
  8534. "files": [
  8535. "bootstrap.php"
  8536. ],
  8537. "psr-4": {
  8538. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8539. }
  8540. },
  8541. "notification-url": "https://packagist.org/downloads/",
  8542. "license": [
  8543. "MIT"
  8544. ],
  8545. "authors": [
  8546. {
  8547. "name": "Nicolas Grekas",
  8548. "email": "p@tchwork.com"
  8549. },
  8550. {
  8551. "name": "Symfony Community",
  8552. "homepage": "https://symfony.com/contributors"
  8553. }
  8554. ],
  8555. "description": "Symfony polyfill for intl's grapheme_* functions",
  8556. "homepage": "https://symfony.com",
  8557. "keywords": [
  8558. "compatibility",
  8559. "grapheme",
  8560. "intl",
  8561. "polyfill",
  8562. "portable",
  8563. "shim"
  8564. ],
  8565. "support": {
  8566. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  8567. },
  8568. "funding": [
  8569. {
  8570. "url": "https://symfony.com/sponsor",
  8571. "type": "custom"
  8572. },
  8573. {
  8574. "url": "https://github.com/fabpot",
  8575. "type": "github"
  8576. },
  8577. {
  8578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8579. "type": "tidelift"
  8580. }
  8581. ],
  8582. "time": "2024-01-29T20:11:03+00:00"
  8583. },
  8584. {
  8585. "name": "symfony/polyfill-intl-idn",
  8586. "version": "v1.29.0",
  8587. "source": {
  8588. "type": "git",
  8589. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8590. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  8591. },
  8592. "dist": {
  8593. "type": "zip",
  8594. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  8595. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  8596. "shasum": ""
  8597. },
  8598. "require": {
  8599. "php": ">=7.1",
  8600. "symfony/polyfill-intl-normalizer": "^1.10",
  8601. "symfony/polyfill-php72": "^1.10"
  8602. },
  8603. "suggest": {
  8604. "ext-intl": "For best performance"
  8605. },
  8606. "type": "library",
  8607. "extra": {
  8608. "thanks": {
  8609. "name": "symfony/polyfill",
  8610. "url": "https://github.com/symfony/polyfill"
  8611. }
  8612. },
  8613. "autoload": {
  8614. "files": [
  8615. "bootstrap.php"
  8616. ],
  8617. "psr-4": {
  8618. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8619. }
  8620. },
  8621. "notification-url": "https://packagist.org/downloads/",
  8622. "license": [
  8623. "MIT"
  8624. ],
  8625. "authors": [
  8626. {
  8627. "name": "Laurent Bassin",
  8628. "email": "laurent@bassin.info"
  8629. },
  8630. {
  8631. "name": "Trevor Rowbotham",
  8632. "email": "trevor.rowbotham@pm.me"
  8633. },
  8634. {
  8635. "name": "Symfony Community",
  8636. "homepage": "https://symfony.com/contributors"
  8637. }
  8638. ],
  8639. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8640. "homepage": "https://symfony.com",
  8641. "keywords": [
  8642. "compatibility",
  8643. "idn",
  8644. "intl",
  8645. "polyfill",
  8646. "portable",
  8647. "shim"
  8648. ],
  8649. "support": {
  8650. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  8651. },
  8652. "funding": [
  8653. {
  8654. "url": "https://symfony.com/sponsor",
  8655. "type": "custom"
  8656. },
  8657. {
  8658. "url": "https://github.com/fabpot",
  8659. "type": "github"
  8660. },
  8661. {
  8662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8663. "type": "tidelift"
  8664. }
  8665. ],
  8666. "time": "2024-01-29T20:11:03+00:00"
  8667. },
  8668. {
  8669. "name": "symfony/polyfill-intl-normalizer",
  8670. "version": "v1.29.0",
  8671. "source": {
  8672. "type": "git",
  8673. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8674. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  8675. },
  8676. "dist": {
  8677. "type": "zip",
  8678. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  8679. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  8680. "shasum": ""
  8681. },
  8682. "require": {
  8683. "php": ">=7.1"
  8684. },
  8685. "suggest": {
  8686. "ext-intl": "For best performance"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "thanks": {
  8691. "name": "symfony/polyfill",
  8692. "url": "https://github.com/symfony/polyfill"
  8693. }
  8694. },
  8695. "autoload": {
  8696. "files": [
  8697. "bootstrap.php"
  8698. ],
  8699. "psr-4": {
  8700. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8701. },
  8702. "classmap": [
  8703. "Resources/stubs"
  8704. ]
  8705. },
  8706. "notification-url": "https://packagist.org/downloads/",
  8707. "license": [
  8708. "MIT"
  8709. ],
  8710. "authors": [
  8711. {
  8712. "name": "Nicolas Grekas",
  8713. "email": "p@tchwork.com"
  8714. },
  8715. {
  8716. "name": "Symfony Community",
  8717. "homepage": "https://symfony.com/contributors"
  8718. }
  8719. ],
  8720. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8721. "homepage": "https://symfony.com",
  8722. "keywords": [
  8723. "compatibility",
  8724. "intl",
  8725. "normalizer",
  8726. "polyfill",
  8727. "portable",
  8728. "shim"
  8729. ],
  8730. "support": {
  8731. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  8732. },
  8733. "funding": [
  8734. {
  8735. "url": "https://symfony.com/sponsor",
  8736. "type": "custom"
  8737. },
  8738. {
  8739. "url": "https://github.com/fabpot",
  8740. "type": "github"
  8741. },
  8742. {
  8743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8744. "type": "tidelift"
  8745. }
  8746. ],
  8747. "time": "2024-01-29T20:11:03+00:00"
  8748. },
  8749. {
  8750. "name": "symfony/polyfill-mbstring",
  8751. "version": "v1.29.0",
  8752. "source": {
  8753. "type": "git",
  8754. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8755. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  8756. },
  8757. "dist": {
  8758. "type": "zip",
  8759. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  8760. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  8761. "shasum": ""
  8762. },
  8763. "require": {
  8764. "php": ">=7.1"
  8765. },
  8766. "provide": {
  8767. "ext-mbstring": "*"
  8768. },
  8769. "suggest": {
  8770. "ext-mbstring": "For best performance"
  8771. },
  8772. "type": "library",
  8773. "extra": {
  8774. "thanks": {
  8775. "name": "symfony/polyfill",
  8776. "url": "https://github.com/symfony/polyfill"
  8777. }
  8778. },
  8779. "autoload": {
  8780. "files": [
  8781. "bootstrap.php"
  8782. ],
  8783. "psr-4": {
  8784. "Symfony\\Polyfill\\Mbstring\\": ""
  8785. }
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "license": [
  8789. "MIT"
  8790. ],
  8791. "authors": [
  8792. {
  8793. "name": "Nicolas Grekas",
  8794. "email": "p@tchwork.com"
  8795. },
  8796. {
  8797. "name": "Symfony Community",
  8798. "homepage": "https://symfony.com/contributors"
  8799. }
  8800. ],
  8801. "description": "Symfony polyfill for the Mbstring extension",
  8802. "homepage": "https://symfony.com",
  8803. "keywords": [
  8804. "compatibility",
  8805. "mbstring",
  8806. "polyfill",
  8807. "portable",
  8808. "shim"
  8809. ],
  8810. "support": {
  8811. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  8812. },
  8813. "funding": [
  8814. {
  8815. "url": "https://symfony.com/sponsor",
  8816. "type": "custom"
  8817. },
  8818. {
  8819. "url": "https://github.com/fabpot",
  8820. "type": "github"
  8821. },
  8822. {
  8823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8824. "type": "tidelift"
  8825. }
  8826. ],
  8827. "time": "2024-01-29T20:11:03+00:00"
  8828. },
  8829. {
  8830. "name": "symfony/polyfill-php72",
  8831. "version": "v1.31.0",
  8832. "source": {
  8833. "type": "git",
  8834. "url": "https://github.com/symfony/polyfill-php72.git",
  8835. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  8836. },
  8837. "dist": {
  8838. "type": "zip",
  8839. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  8840. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  8841. "shasum": ""
  8842. },
  8843. "require": {
  8844. "php": ">=7.2"
  8845. },
  8846. "type": "metapackage",
  8847. "extra": {
  8848. "thanks": {
  8849. "name": "symfony/polyfill",
  8850. "url": "https://github.com/symfony/polyfill"
  8851. }
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Nicolas Grekas",
  8860. "email": "p@tchwork.com"
  8861. },
  8862. {
  8863. "name": "Symfony Community",
  8864. "homepage": "https://symfony.com/contributors"
  8865. }
  8866. ],
  8867. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8868. "homepage": "https://symfony.com",
  8869. "keywords": [
  8870. "compatibility",
  8871. "polyfill",
  8872. "portable",
  8873. "shim"
  8874. ],
  8875. "support": {
  8876. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  8877. },
  8878. "funding": [
  8879. {
  8880. "url": "https://symfony.com/sponsor",
  8881. "type": "custom"
  8882. },
  8883. {
  8884. "url": "https://github.com/fabpot",
  8885. "type": "github"
  8886. },
  8887. {
  8888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8889. "type": "tidelift"
  8890. }
  8891. ],
  8892. "time": "2024-09-09T11:45:10+00:00"
  8893. },
  8894. {
  8895. "name": "symfony/polyfill-php80",
  8896. "version": "v1.31.0",
  8897. "source": {
  8898. "type": "git",
  8899. "url": "https://github.com/symfony/polyfill-php80.git",
  8900. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8901. },
  8902. "dist": {
  8903. "type": "zip",
  8904. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8905. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8906. "shasum": ""
  8907. },
  8908. "require": {
  8909. "php": ">=7.2"
  8910. },
  8911. "type": "library",
  8912. "extra": {
  8913. "thanks": {
  8914. "name": "symfony/polyfill",
  8915. "url": "https://github.com/symfony/polyfill"
  8916. }
  8917. },
  8918. "autoload": {
  8919. "files": [
  8920. "bootstrap.php"
  8921. ],
  8922. "psr-4": {
  8923. "Symfony\\Polyfill\\Php80\\": ""
  8924. },
  8925. "classmap": [
  8926. "Resources/stubs"
  8927. ]
  8928. },
  8929. "notification-url": "https://packagist.org/downloads/",
  8930. "license": [
  8931. "MIT"
  8932. ],
  8933. "authors": [
  8934. {
  8935. "name": "Ion Bazan",
  8936. "email": "ion.bazan@gmail.com"
  8937. },
  8938. {
  8939. "name": "Nicolas Grekas",
  8940. "email": "p@tchwork.com"
  8941. },
  8942. {
  8943. "name": "Symfony Community",
  8944. "homepage": "https://symfony.com/contributors"
  8945. }
  8946. ],
  8947. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8948. "homepage": "https://symfony.com",
  8949. "keywords": [
  8950. "compatibility",
  8951. "polyfill",
  8952. "portable",
  8953. "shim"
  8954. ],
  8955. "support": {
  8956. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8957. },
  8958. "funding": [
  8959. {
  8960. "url": "https://symfony.com/sponsor",
  8961. "type": "custom"
  8962. },
  8963. {
  8964. "url": "https://github.com/fabpot",
  8965. "type": "github"
  8966. },
  8967. {
  8968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8969. "type": "tidelift"
  8970. }
  8971. ],
  8972. "time": "2024-09-09T11:45:10+00:00"
  8973. },
  8974. {
  8975. "name": "symfony/polyfill-php81",
  8976. "version": "v1.31.0",
  8977. "source": {
  8978. "type": "git",
  8979. "url": "https://github.com/symfony/polyfill-php81.git",
  8980. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  8981. },
  8982. "dist": {
  8983. "type": "zip",
  8984. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8985. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8986. "shasum": ""
  8987. },
  8988. "require": {
  8989. "php": ">=7.2"
  8990. },
  8991. "type": "library",
  8992. "extra": {
  8993. "thanks": {
  8994. "name": "symfony/polyfill",
  8995. "url": "https://github.com/symfony/polyfill"
  8996. }
  8997. },
  8998. "autoload": {
  8999. "files": [
  9000. "bootstrap.php"
  9001. ],
  9002. "psr-4": {
  9003. "Symfony\\Polyfill\\Php81\\": ""
  9004. },
  9005. "classmap": [
  9006. "Resources/stubs"
  9007. ]
  9008. },
  9009. "notification-url": "https://packagist.org/downloads/",
  9010. "license": [
  9011. "MIT"
  9012. ],
  9013. "authors": [
  9014. {
  9015. "name": "Nicolas Grekas",
  9016. "email": "p@tchwork.com"
  9017. },
  9018. {
  9019. "name": "Symfony Community",
  9020. "homepage": "https://symfony.com/contributors"
  9021. }
  9022. ],
  9023. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9024. "homepage": "https://symfony.com",
  9025. "keywords": [
  9026. "compatibility",
  9027. "polyfill",
  9028. "portable",
  9029. "shim"
  9030. ],
  9031. "support": {
  9032. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  9033. },
  9034. "funding": [
  9035. {
  9036. "url": "https://symfony.com/sponsor",
  9037. "type": "custom"
  9038. },
  9039. {
  9040. "url": "https://github.com/fabpot",
  9041. "type": "github"
  9042. },
  9043. {
  9044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9045. "type": "tidelift"
  9046. }
  9047. ],
  9048. "time": "2024-09-09T11:45:10+00:00"
  9049. },
  9050. {
  9051. "name": "symfony/polyfill-php83",
  9052. "version": "v1.29.0",
  9053. "source": {
  9054. "type": "git",
  9055. "url": "https://github.com/symfony/polyfill-php83.git",
  9056. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  9057. },
  9058. "dist": {
  9059. "type": "zip",
  9060. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  9061. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  9062. "shasum": ""
  9063. },
  9064. "require": {
  9065. "php": ">=7.1",
  9066. "symfony/polyfill-php80": "^1.14"
  9067. },
  9068. "type": "library",
  9069. "extra": {
  9070. "thanks": {
  9071. "name": "symfony/polyfill",
  9072. "url": "https://github.com/symfony/polyfill"
  9073. }
  9074. },
  9075. "autoload": {
  9076. "files": [
  9077. "bootstrap.php"
  9078. ],
  9079. "psr-4": {
  9080. "Symfony\\Polyfill\\Php83\\": ""
  9081. },
  9082. "classmap": [
  9083. "Resources/stubs"
  9084. ]
  9085. },
  9086. "notification-url": "https://packagist.org/downloads/",
  9087. "license": [
  9088. "MIT"
  9089. ],
  9090. "authors": [
  9091. {
  9092. "name": "Nicolas Grekas",
  9093. "email": "p@tchwork.com"
  9094. },
  9095. {
  9096. "name": "Symfony Community",
  9097. "homepage": "https://symfony.com/contributors"
  9098. }
  9099. ],
  9100. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9101. "homepage": "https://symfony.com",
  9102. "keywords": [
  9103. "compatibility",
  9104. "polyfill",
  9105. "portable",
  9106. "shim"
  9107. ],
  9108. "support": {
  9109. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  9110. },
  9111. "funding": [
  9112. {
  9113. "url": "https://symfony.com/sponsor",
  9114. "type": "custom"
  9115. },
  9116. {
  9117. "url": "https://github.com/fabpot",
  9118. "type": "github"
  9119. },
  9120. {
  9121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9122. "type": "tidelift"
  9123. }
  9124. ],
  9125. "time": "2024-01-29T20:11:03+00:00"
  9126. },
  9127. {
  9128. "name": "symfony/process",
  9129. "version": "v6.4.8",
  9130. "source": {
  9131. "type": "git",
  9132. "url": "https://github.com/symfony/process.git",
  9133. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  9134. },
  9135. "dist": {
  9136. "type": "zip",
  9137. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  9138. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  9139. "shasum": ""
  9140. },
  9141. "require": {
  9142. "php": ">=8.1"
  9143. },
  9144. "type": "library",
  9145. "autoload": {
  9146. "psr-4": {
  9147. "Symfony\\Component\\Process\\": ""
  9148. },
  9149. "exclude-from-classmap": [
  9150. "/Tests/"
  9151. ]
  9152. },
  9153. "notification-url": "https://packagist.org/downloads/",
  9154. "license": [
  9155. "MIT"
  9156. ],
  9157. "authors": [
  9158. {
  9159. "name": "Fabien Potencier",
  9160. "email": "fabien@symfony.com"
  9161. },
  9162. {
  9163. "name": "Symfony Community",
  9164. "homepage": "https://symfony.com/contributors"
  9165. }
  9166. ],
  9167. "description": "Executes commands in sub-processes",
  9168. "homepage": "https://symfony.com",
  9169. "support": {
  9170. "source": "https://github.com/symfony/process/tree/v6.4.8"
  9171. },
  9172. "funding": [
  9173. {
  9174. "url": "https://symfony.com/sponsor",
  9175. "type": "custom"
  9176. },
  9177. {
  9178. "url": "https://github.com/fabpot",
  9179. "type": "github"
  9180. },
  9181. {
  9182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9183. "type": "tidelift"
  9184. }
  9185. ],
  9186. "time": "2024-05-31T14:49:08+00:00"
  9187. },
  9188. {
  9189. "name": "symfony/psr-http-message-bridge",
  9190. "version": "v6.4.11",
  9191. "source": {
  9192. "type": "git",
  9193. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9194. "reference": "74835ba54eca99a38f374f7a6d932fa510124773"
  9195. },
  9196. "dist": {
  9197. "type": "zip",
  9198. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/74835ba54eca99a38f374f7a6d932fa510124773",
  9199. "reference": "74835ba54eca99a38f374f7a6d932fa510124773",
  9200. "shasum": ""
  9201. },
  9202. "require": {
  9203. "php": ">=8.1",
  9204. "psr/http-message": "^1.0|^2.0",
  9205. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  9206. },
  9207. "conflict": {
  9208. "php-http/discovery": "<1.15",
  9209. "symfony/http-kernel": "<6.2"
  9210. },
  9211. "require-dev": {
  9212. "nyholm/psr7": "^1.1",
  9213. "php-http/discovery": "^1.15",
  9214. "psr/log": "^1.1.4|^2|^3",
  9215. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9216. "symfony/config": "^5.4|^6.0|^7.0",
  9217. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  9218. "symfony/framework-bundle": "^6.2|^7.0",
  9219. "symfony/http-kernel": "^6.2|^7.0"
  9220. },
  9221. "type": "symfony-bridge",
  9222. "autoload": {
  9223. "psr-4": {
  9224. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9225. },
  9226. "exclude-from-classmap": [
  9227. "/Tests/"
  9228. ]
  9229. },
  9230. "notification-url": "https://packagist.org/downloads/",
  9231. "license": [
  9232. "MIT"
  9233. ],
  9234. "authors": [
  9235. {
  9236. "name": "Fabien Potencier",
  9237. "email": "fabien@symfony.com"
  9238. },
  9239. {
  9240. "name": "Symfony Community",
  9241. "homepage": "https://symfony.com/contributors"
  9242. }
  9243. ],
  9244. "description": "PSR HTTP message bridge",
  9245. "homepage": "https://symfony.com",
  9246. "keywords": [
  9247. "http",
  9248. "http-message",
  9249. "psr-17",
  9250. "psr-7"
  9251. ],
  9252. "support": {
  9253. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.11"
  9254. },
  9255. "funding": [
  9256. {
  9257. "url": "https://symfony.com/sponsor",
  9258. "type": "custom"
  9259. },
  9260. {
  9261. "url": "https://github.com/fabpot",
  9262. "type": "github"
  9263. },
  9264. {
  9265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9266. "type": "tidelift"
  9267. }
  9268. ],
  9269. "time": "2024-08-14T13:55:58+00:00"
  9270. },
  9271. {
  9272. "name": "symfony/routing",
  9273. "version": "v6.4.11",
  9274. "source": {
  9275. "type": "git",
  9276. "url": "https://github.com/symfony/routing.git",
  9277. "reference": "8ee0c24c1bf61c263a26f1b9b6d19e83b1121f2a"
  9278. },
  9279. "dist": {
  9280. "type": "zip",
  9281. "url": "https://api.github.com/repos/symfony/routing/zipball/8ee0c24c1bf61c263a26f1b9b6d19e83b1121f2a",
  9282. "reference": "8ee0c24c1bf61c263a26f1b9b6d19e83b1121f2a",
  9283. "shasum": ""
  9284. },
  9285. "require": {
  9286. "php": ">=8.1",
  9287. "symfony/deprecation-contracts": "^2.5|^3"
  9288. },
  9289. "conflict": {
  9290. "doctrine/annotations": "<1.12",
  9291. "symfony/config": "<6.2",
  9292. "symfony/dependency-injection": "<5.4",
  9293. "symfony/yaml": "<5.4"
  9294. },
  9295. "require-dev": {
  9296. "doctrine/annotations": "^1.12|^2",
  9297. "psr/log": "^1|^2|^3",
  9298. "symfony/config": "^6.2|^7.0",
  9299. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9300. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9301. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9302. "symfony/yaml": "^5.4|^6.0|^7.0"
  9303. },
  9304. "type": "library",
  9305. "autoload": {
  9306. "psr-4": {
  9307. "Symfony\\Component\\Routing\\": ""
  9308. },
  9309. "exclude-from-classmap": [
  9310. "/Tests/"
  9311. ]
  9312. },
  9313. "notification-url": "https://packagist.org/downloads/",
  9314. "license": [
  9315. "MIT"
  9316. ],
  9317. "authors": [
  9318. {
  9319. "name": "Fabien Potencier",
  9320. "email": "fabien@symfony.com"
  9321. },
  9322. {
  9323. "name": "Symfony Community",
  9324. "homepage": "https://symfony.com/contributors"
  9325. }
  9326. ],
  9327. "description": "Maps an HTTP request to a set of configuration variables",
  9328. "homepage": "https://symfony.com",
  9329. "keywords": [
  9330. "router",
  9331. "routing",
  9332. "uri",
  9333. "url"
  9334. ],
  9335. "support": {
  9336. "source": "https://github.com/symfony/routing/tree/v6.4.11"
  9337. },
  9338. "funding": [
  9339. {
  9340. "url": "https://symfony.com/sponsor",
  9341. "type": "custom"
  9342. },
  9343. {
  9344. "url": "https://github.com/fabpot",
  9345. "type": "github"
  9346. },
  9347. {
  9348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9349. "type": "tidelift"
  9350. }
  9351. ],
  9352. "time": "2024-08-29T08:15:38+00:00"
  9353. },
  9354. {
  9355. "name": "symfony/serializer",
  9356. "version": "v6.4.11",
  9357. "source": {
  9358. "type": "git",
  9359. "url": "https://github.com/symfony/serializer.git",
  9360. "reference": "a75d03d7720417f8a654e73e8f02acdea8779cd0"
  9361. },
  9362. "dist": {
  9363. "type": "zip",
  9364. "url": "https://api.github.com/repos/symfony/serializer/zipball/a75d03d7720417f8a654e73e8f02acdea8779cd0",
  9365. "reference": "a75d03d7720417f8a654e73e8f02acdea8779cd0",
  9366. "shasum": ""
  9367. },
  9368. "require": {
  9369. "php": ">=8.1",
  9370. "symfony/deprecation-contracts": "^2.5|^3",
  9371. "symfony/polyfill-ctype": "~1.8"
  9372. },
  9373. "conflict": {
  9374. "doctrine/annotations": "<1.12",
  9375. "phpdocumentor/reflection-docblock": "<3.2.2",
  9376. "phpdocumentor/type-resolver": "<1.4.0",
  9377. "symfony/dependency-injection": "<5.4",
  9378. "symfony/property-access": "<5.4",
  9379. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  9380. "symfony/uid": "<5.4",
  9381. "symfony/validator": "<6.4",
  9382. "symfony/yaml": "<5.4"
  9383. },
  9384. "require-dev": {
  9385. "doctrine/annotations": "^1.12|^2",
  9386. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9387. "seld/jsonlint": "^1.10",
  9388. "symfony/cache": "^5.4|^6.0|^7.0",
  9389. "symfony/config": "^5.4|^6.0|^7.0",
  9390. "symfony/console": "^5.4|^6.0|^7.0",
  9391. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9392. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9393. "symfony/filesystem": "^5.4|^6.0|^7.0",
  9394. "symfony/form": "^5.4|^6.0|^7.0",
  9395. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9396. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9397. "symfony/messenger": "^5.4|^6.0|^7.0",
  9398. "symfony/mime": "^5.4|^6.0|^7.0",
  9399. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  9400. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  9401. "symfony/translation-contracts": "^2.5|^3",
  9402. "symfony/uid": "^5.4|^6.0|^7.0",
  9403. "symfony/validator": "^6.4|^7.0",
  9404. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  9405. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  9406. "symfony/yaml": "^5.4|^6.0|^7.0"
  9407. },
  9408. "type": "library",
  9409. "autoload": {
  9410. "psr-4": {
  9411. "Symfony\\Component\\Serializer\\": ""
  9412. },
  9413. "exclude-from-classmap": [
  9414. "/Tests/"
  9415. ]
  9416. },
  9417. "notification-url": "https://packagist.org/downloads/",
  9418. "license": [
  9419. "MIT"
  9420. ],
  9421. "authors": [
  9422. {
  9423. "name": "Fabien Potencier",
  9424. "email": "fabien@symfony.com"
  9425. },
  9426. {
  9427. "name": "Symfony Community",
  9428. "homepage": "https://symfony.com/contributors"
  9429. }
  9430. ],
  9431. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9432. "homepage": "https://symfony.com",
  9433. "support": {
  9434. "source": "https://github.com/symfony/serializer/tree/v6.4.11"
  9435. },
  9436. "funding": [
  9437. {
  9438. "url": "https://symfony.com/sponsor",
  9439. "type": "custom"
  9440. },
  9441. {
  9442. "url": "https://github.com/fabpot",
  9443. "type": "github"
  9444. },
  9445. {
  9446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9447. "type": "tidelift"
  9448. }
  9449. ],
  9450. "time": "2024-08-17T07:51:47+00:00"
  9451. },
  9452. {
  9453. "name": "symfony/service-contracts",
  9454. "version": "v3.5.0",
  9455. "source": {
  9456. "type": "git",
  9457. "url": "https://github.com/symfony/service-contracts.git",
  9458. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  9459. },
  9460. "dist": {
  9461. "type": "zip",
  9462. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  9463. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  9464. "shasum": ""
  9465. },
  9466. "require": {
  9467. "php": ">=8.1",
  9468. "psr/container": "^1.1|^2.0",
  9469. "symfony/deprecation-contracts": "^2.5|^3"
  9470. },
  9471. "conflict": {
  9472. "ext-psr": "<1.1|>=2"
  9473. },
  9474. "type": "library",
  9475. "extra": {
  9476. "branch-alias": {
  9477. "dev-main": "3.5-dev"
  9478. },
  9479. "thanks": {
  9480. "name": "symfony/contracts",
  9481. "url": "https://github.com/symfony/contracts"
  9482. }
  9483. },
  9484. "autoload": {
  9485. "psr-4": {
  9486. "Symfony\\Contracts\\Service\\": ""
  9487. },
  9488. "exclude-from-classmap": [
  9489. "/Test/"
  9490. ]
  9491. },
  9492. "notification-url": "https://packagist.org/downloads/",
  9493. "license": [
  9494. "MIT"
  9495. ],
  9496. "authors": [
  9497. {
  9498. "name": "Nicolas Grekas",
  9499. "email": "p@tchwork.com"
  9500. },
  9501. {
  9502. "name": "Symfony Community",
  9503. "homepage": "https://symfony.com/contributors"
  9504. }
  9505. ],
  9506. "description": "Generic abstractions related to writing services",
  9507. "homepage": "https://symfony.com",
  9508. "keywords": [
  9509. "abstractions",
  9510. "contracts",
  9511. "decoupling",
  9512. "interfaces",
  9513. "interoperability",
  9514. "standards"
  9515. ],
  9516. "support": {
  9517. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  9518. },
  9519. "funding": [
  9520. {
  9521. "url": "https://symfony.com/sponsor",
  9522. "type": "custom"
  9523. },
  9524. {
  9525. "url": "https://github.com/fabpot",
  9526. "type": "github"
  9527. },
  9528. {
  9529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9530. "type": "tidelift"
  9531. }
  9532. ],
  9533. "time": "2024-04-18T09:32:20+00:00"
  9534. },
  9535. {
  9536. "name": "symfony/string",
  9537. "version": "v6.4.11",
  9538. "source": {
  9539. "type": "git",
  9540. "url": "https://github.com/symfony/string.git",
  9541. "reference": "5bc3eb632cf9c8dbfd6529d89be9950d1518883b"
  9542. },
  9543. "dist": {
  9544. "type": "zip",
  9545. "url": "https://api.github.com/repos/symfony/string/zipball/5bc3eb632cf9c8dbfd6529d89be9950d1518883b",
  9546. "reference": "5bc3eb632cf9c8dbfd6529d89be9950d1518883b",
  9547. "shasum": ""
  9548. },
  9549. "require": {
  9550. "php": ">=8.1",
  9551. "symfony/polyfill-ctype": "~1.8",
  9552. "symfony/polyfill-intl-grapheme": "~1.0",
  9553. "symfony/polyfill-intl-normalizer": "~1.0",
  9554. "symfony/polyfill-mbstring": "~1.0"
  9555. },
  9556. "conflict": {
  9557. "symfony/translation-contracts": "<2.5"
  9558. },
  9559. "require-dev": {
  9560. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9561. "symfony/http-client": "^5.4|^6.0|^7.0",
  9562. "symfony/intl": "^6.2|^7.0",
  9563. "symfony/translation-contracts": "^2.5|^3.0",
  9564. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9565. },
  9566. "type": "library",
  9567. "autoload": {
  9568. "files": [
  9569. "Resources/functions.php"
  9570. ],
  9571. "psr-4": {
  9572. "Symfony\\Component\\String\\": ""
  9573. },
  9574. "exclude-from-classmap": [
  9575. "/Tests/"
  9576. ]
  9577. },
  9578. "notification-url": "https://packagist.org/downloads/",
  9579. "license": [
  9580. "MIT"
  9581. ],
  9582. "authors": [
  9583. {
  9584. "name": "Nicolas Grekas",
  9585. "email": "p@tchwork.com"
  9586. },
  9587. {
  9588. "name": "Symfony Community",
  9589. "homepage": "https://symfony.com/contributors"
  9590. }
  9591. ],
  9592. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9593. "homepage": "https://symfony.com",
  9594. "keywords": [
  9595. "grapheme",
  9596. "i18n",
  9597. "string",
  9598. "unicode",
  9599. "utf-8",
  9600. "utf8"
  9601. ],
  9602. "support": {
  9603. "source": "https://github.com/symfony/string/tree/v6.4.11"
  9604. },
  9605. "funding": [
  9606. {
  9607. "url": "https://symfony.com/sponsor",
  9608. "type": "custom"
  9609. },
  9610. {
  9611. "url": "https://github.com/fabpot",
  9612. "type": "github"
  9613. },
  9614. {
  9615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9616. "type": "tidelift"
  9617. }
  9618. ],
  9619. "time": "2024-08-12T09:55:28+00:00"
  9620. },
  9621. {
  9622. "name": "symfony/translation-contracts",
  9623. "version": "v3.5.0",
  9624. "source": {
  9625. "type": "git",
  9626. "url": "https://github.com/symfony/translation-contracts.git",
  9627. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  9628. },
  9629. "dist": {
  9630. "type": "zip",
  9631. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  9632. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  9633. "shasum": ""
  9634. },
  9635. "require": {
  9636. "php": ">=8.1"
  9637. },
  9638. "type": "library",
  9639. "extra": {
  9640. "branch-alias": {
  9641. "dev-main": "3.5-dev"
  9642. },
  9643. "thanks": {
  9644. "name": "symfony/contracts",
  9645. "url": "https://github.com/symfony/contracts"
  9646. }
  9647. },
  9648. "autoload": {
  9649. "psr-4": {
  9650. "Symfony\\Contracts\\Translation\\": ""
  9651. },
  9652. "exclude-from-classmap": [
  9653. "/Test/"
  9654. ]
  9655. },
  9656. "notification-url": "https://packagist.org/downloads/",
  9657. "license": [
  9658. "MIT"
  9659. ],
  9660. "authors": [
  9661. {
  9662. "name": "Nicolas Grekas",
  9663. "email": "p@tchwork.com"
  9664. },
  9665. {
  9666. "name": "Symfony Community",
  9667. "homepage": "https://symfony.com/contributors"
  9668. }
  9669. ],
  9670. "description": "Generic abstractions related to translation",
  9671. "homepage": "https://symfony.com",
  9672. "keywords": [
  9673. "abstractions",
  9674. "contracts",
  9675. "decoupling",
  9676. "interfaces",
  9677. "interoperability",
  9678. "standards"
  9679. ],
  9680. "support": {
  9681. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  9682. },
  9683. "funding": [
  9684. {
  9685. "url": "https://symfony.com/sponsor",
  9686. "type": "custom"
  9687. },
  9688. {
  9689. "url": "https://github.com/fabpot",
  9690. "type": "github"
  9691. },
  9692. {
  9693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9694. "type": "tidelift"
  9695. }
  9696. ],
  9697. "time": "2024-04-18T09:32:20+00:00"
  9698. },
  9699. {
  9700. "name": "symfony/validator",
  9701. "version": "v6.4.11",
  9702. "source": {
  9703. "type": "git",
  9704. "url": "https://github.com/symfony/validator.git",
  9705. "reference": "4ff41cf10af1de99ad92895411b55c9f309bc2d8"
  9706. },
  9707. "dist": {
  9708. "type": "zip",
  9709. "url": "https://api.github.com/repos/symfony/validator/zipball/4ff41cf10af1de99ad92895411b55c9f309bc2d8",
  9710. "reference": "4ff41cf10af1de99ad92895411b55c9f309bc2d8",
  9711. "shasum": ""
  9712. },
  9713. "require": {
  9714. "php": ">=8.1",
  9715. "symfony/deprecation-contracts": "^2.5|^3",
  9716. "symfony/polyfill-ctype": "~1.8",
  9717. "symfony/polyfill-mbstring": "~1.0",
  9718. "symfony/polyfill-php83": "^1.27",
  9719. "symfony/translation-contracts": "^2.5|^3"
  9720. },
  9721. "conflict": {
  9722. "doctrine/annotations": "<1.13",
  9723. "doctrine/lexer": "<1.1",
  9724. "symfony/dependency-injection": "<5.4",
  9725. "symfony/expression-language": "<5.4",
  9726. "symfony/http-kernel": "<5.4",
  9727. "symfony/intl": "<5.4",
  9728. "symfony/property-info": "<5.4",
  9729. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  9730. "symfony/yaml": "<5.4"
  9731. },
  9732. "require-dev": {
  9733. "doctrine/annotations": "^1.13|^2",
  9734. "egulias/email-validator": "^2.1.10|^3|^4",
  9735. "symfony/cache": "^5.4|^6.0|^7.0",
  9736. "symfony/config": "^5.4|^6.0|^7.0",
  9737. "symfony/console": "^5.4|^6.0|^7.0",
  9738. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9739. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9740. "symfony/finder": "^5.4|^6.0|^7.0",
  9741. "symfony/http-client": "^5.4|^6.0|^7.0",
  9742. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9743. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9744. "symfony/intl": "^5.4|^6.0|^7.0",
  9745. "symfony/mime": "^5.4|^6.0|^7.0",
  9746. "symfony/property-access": "^5.4|^6.0|^7.0",
  9747. "symfony/property-info": "^5.4|^6.0|^7.0",
  9748. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  9749. "symfony/yaml": "^5.4|^6.0|^7.0"
  9750. },
  9751. "type": "library",
  9752. "autoload": {
  9753. "psr-4": {
  9754. "Symfony\\Component\\Validator\\": ""
  9755. },
  9756. "exclude-from-classmap": [
  9757. "/Tests/",
  9758. "/Resources/bin/"
  9759. ]
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "MIT"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Fabien Potencier",
  9768. "email": "fabien@symfony.com"
  9769. },
  9770. {
  9771. "name": "Symfony Community",
  9772. "homepage": "https://symfony.com/contributors"
  9773. }
  9774. ],
  9775. "description": "Provides tools to validate values",
  9776. "homepage": "https://symfony.com",
  9777. "support": {
  9778. "source": "https://github.com/symfony/validator/tree/v6.4.11"
  9779. },
  9780. "funding": [
  9781. {
  9782. "url": "https://symfony.com/sponsor",
  9783. "type": "custom"
  9784. },
  9785. {
  9786. "url": "https://github.com/fabpot",
  9787. "type": "github"
  9788. },
  9789. {
  9790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9791. "type": "tidelift"
  9792. }
  9793. ],
  9794. "time": "2024-08-30T15:57:55+00:00"
  9795. },
  9796. {
  9797. "name": "symfony/var-dumper",
  9798. "version": "v6.4.11",
  9799. "source": {
  9800. "type": "git",
  9801. "url": "https://github.com/symfony/var-dumper.git",
  9802. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694"
  9803. },
  9804. "dist": {
  9805. "type": "zip",
  9806. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ee14c8254a480913268b1e3b1cba8045ed122694",
  9807. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694",
  9808. "shasum": ""
  9809. },
  9810. "require": {
  9811. "php": ">=8.1",
  9812. "symfony/deprecation-contracts": "^2.5|^3",
  9813. "symfony/polyfill-mbstring": "~1.0"
  9814. },
  9815. "conflict": {
  9816. "symfony/console": "<5.4"
  9817. },
  9818. "require-dev": {
  9819. "ext-iconv": "*",
  9820. "symfony/console": "^5.4|^6.0|^7.0",
  9821. "symfony/error-handler": "^6.3|^7.0",
  9822. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9823. "symfony/process": "^5.4|^6.0|^7.0",
  9824. "symfony/uid": "^5.4|^6.0|^7.0",
  9825. "twig/twig": "^2.13|^3.0.4"
  9826. },
  9827. "bin": [
  9828. "Resources/bin/var-dump-server"
  9829. ],
  9830. "type": "library",
  9831. "autoload": {
  9832. "files": [
  9833. "Resources/functions/dump.php"
  9834. ],
  9835. "psr-4": {
  9836. "Symfony\\Component\\VarDumper\\": ""
  9837. },
  9838. "exclude-from-classmap": [
  9839. "/Tests/"
  9840. ]
  9841. },
  9842. "notification-url": "https://packagist.org/downloads/",
  9843. "license": [
  9844. "MIT"
  9845. ],
  9846. "authors": [
  9847. {
  9848. "name": "Nicolas Grekas",
  9849. "email": "p@tchwork.com"
  9850. },
  9851. {
  9852. "name": "Symfony Community",
  9853. "homepage": "https://symfony.com/contributors"
  9854. }
  9855. ],
  9856. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9857. "homepage": "https://symfony.com",
  9858. "keywords": [
  9859. "debug",
  9860. "dump"
  9861. ],
  9862. "support": {
  9863. "source": "https://github.com/symfony/var-dumper/tree/v6.4.11"
  9864. },
  9865. "funding": [
  9866. {
  9867. "url": "https://symfony.com/sponsor",
  9868. "type": "custom"
  9869. },
  9870. {
  9871. "url": "https://github.com/fabpot",
  9872. "type": "github"
  9873. },
  9874. {
  9875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9876. "type": "tidelift"
  9877. }
  9878. ],
  9879. "time": "2024-08-30T16:03:21+00:00"
  9880. },
  9881. {
  9882. "name": "symfony/var-exporter",
  9883. "version": "v6.4.9",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/symfony/var-exporter.git",
  9887. "reference": "f9a060622e0d93777b7f8687ec4860191e16802e"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f9a060622e0d93777b7f8687ec4860191e16802e",
  9892. "reference": "f9a060622e0d93777b7f8687ec4860191e16802e",
  9893. "shasum": ""
  9894. },
  9895. "require": {
  9896. "php": ">=8.1",
  9897. "symfony/deprecation-contracts": "^2.5|^3"
  9898. },
  9899. "require-dev": {
  9900. "symfony/property-access": "^6.4|^7.0",
  9901. "symfony/serializer": "^6.4|^7.0",
  9902. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9903. },
  9904. "type": "library",
  9905. "autoload": {
  9906. "psr-4": {
  9907. "Symfony\\Component\\VarExporter\\": ""
  9908. },
  9909. "exclude-from-classmap": [
  9910. "/Tests/"
  9911. ]
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "MIT"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Nicolas Grekas",
  9920. "email": "p@tchwork.com"
  9921. },
  9922. {
  9923. "name": "Symfony Community",
  9924. "homepage": "https://symfony.com/contributors"
  9925. }
  9926. ],
  9927. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9928. "homepage": "https://symfony.com",
  9929. "keywords": [
  9930. "clone",
  9931. "construct",
  9932. "export",
  9933. "hydrate",
  9934. "instantiate",
  9935. "lazy-loading",
  9936. "proxy",
  9937. "serialize"
  9938. ],
  9939. "support": {
  9940. "source": "https://github.com/symfony/var-exporter/tree/v6.4.9"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://symfony.com/sponsor",
  9945. "type": "custom"
  9946. },
  9947. {
  9948. "url": "https://github.com/fabpot",
  9949. "type": "github"
  9950. },
  9951. {
  9952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9953. "type": "tidelift"
  9954. }
  9955. ],
  9956. "time": "2024-06-24T15:53:56+00:00"
  9957. },
  9958. {
  9959. "name": "symfony/yaml",
  9960. "version": "v6.4.11",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/symfony/yaml.git",
  9964. "reference": "be37e7f13195e05ab84ca5269365591edd240335"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/symfony/yaml/zipball/be37e7f13195e05ab84ca5269365591edd240335",
  9969. "reference": "be37e7f13195e05ab84ca5269365591edd240335",
  9970. "shasum": ""
  9971. },
  9972. "require": {
  9973. "php": ">=8.1",
  9974. "symfony/deprecation-contracts": "^2.5|^3",
  9975. "symfony/polyfill-ctype": "^1.8"
  9976. },
  9977. "conflict": {
  9978. "symfony/console": "<5.4"
  9979. },
  9980. "require-dev": {
  9981. "symfony/console": "^5.4|^6.0|^7.0"
  9982. },
  9983. "bin": [
  9984. "Resources/bin/yaml-lint"
  9985. ],
  9986. "type": "library",
  9987. "autoload": {
  9988. "psr-4": {
  9989. "Symfony\\Component\\Yaml\\": ""
  9990. },
  9991. "exclude-from-classmap": [
  9992. "/Tests/"
  9993. ]
  9994. },
  9995. "notification-url": "https://packagist.org/downloads/",
  9996. "license": [
  9997. "MIT"
  9998. ],
  9999. "authors": [
  10000. {
  10001. "name": "Fabien Potencier",
  10002. "email": "fabien@symfony.com"
  10003. },
  10004. {
  10005. "name": "Symfony Community",
  10006. "homepage": "https://symfony.com/contributors"
  10007. }
  10008. ],
  10009. "description": "Loads and dumps YAML files",
  10010. "homepage": "https://symfony.com",
  10011. "support": {
  10012. "source": "https://github.com/symfony/yaml/tree/v6.4.11"
  10013. },
  10014. "funding": [
  10015. {
  10016. "url": "https://symfony.com/sponsor",
  10017. "type": "custom"
  10018. },
  10019. {
  10020. "url": "https://github.com/fabpot",
  10021. "type": "github"
  10022. },
  10023. {
  10024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10025. "type": "tidelift"
  10026. }
  10027. ],
  10028. "time": "2024-08-12T09:55:28+00:00"
  10029. },
  10030. {
  10031. "name": "twig/twig",
  10032. "version": "v3.14.0",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/twigphp/Twig.git",
  10036. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  10041. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "php": ">=8.0.2",
  10046. "symfony/deprecation-contracts": "^2.5|^3",
  10047. "symfony/polyfill-ctype": "^1.8",
  10048. "symfony/polyfill-mbstring": "^1.3",
  10049. "symfony/polyfill-php81": "^1.29"
  10050. },
  10051. "require-dev": {
  10052. "psr/container": "^1.0|^2.0",
  10053. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  10054. },
  10055. "type": "library",
  10056. "autoload": {
  10057. "files": [
  10058. "src/Resources/core.php",
  10059. "src/Resources/debug.php",
  10060. "src/Resources/escaper.php",
  10061. "src/Resources/string_loader.php"
  10062. ],
  10063. "psr-4": {
  10064. "Twig\\": "src/"
  10065. }
  10066. },
  10067. "notification-url": "https://packagist.org/downloads/",
  10068. "license": [
  10069. "BSD-3-Clause"
  10070. ],
  10071. "authors": [
  10072. {
  10073. "name": "Fabien Potencier",
  10074. "email": "fabien@symfony.com",
  10075. "homepage": "http://fabien.potencier.org",
  10076. "role": "Lead Developer"
  10077. },
  10078. {
  10079. "name": "Twig Team",
  10080. "role": "Contributors"
  10081. },
  10082. {
  10083. "name": "Armin Ronacher",
  10084. "email": "armin.ronacher@active-4.com",
  10085. "role": "Project Founder"
  10086. }
  10087. ],
  10088. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10089. "homepage": "https://twig.symfony.com",
  10090. "keywords": [
  10091. "templating"
  10092. ],
  10093. "support": {
  10094. "issues": "https://github.com/twigphp/Twig/issues",
  10095. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  10096. },
  10097. "funding": [
  10098. {
  10099. "url": "https://github.com/fabpot",
  10100. "type": "github"
  10101. },
  10102. {
  10103. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10104. "type": "tidelift"
  10105. }
  10106. ],
  10107. "time": "2024-09-09T17:55:12+00:00"
  10108. },
  10109. {
  10110. "name": "vlucas/phpdotenv",
  10111. "version": "v2.6.9",
  10112. "source": {
  10113. "type": "git",
  10114. "url": "https://github.com/vlucas/phpdotenv.git",
  10115. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10116. },
  10117. "dist": {
  10118. "type": "zip",
  10119. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10120. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10121. "shasum": ""
  10122. },
  10123. "require": {
  10124. "php": "^5.3.9 || ^7.0 || ^8.0",
  10125. "symfony/polyfill-ctype": "^1.17"
  10126. },
  10127. "require-dev": {
  10128. "ext-filter": "*",
  10129. "ext-pcre": "*",
  10130. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10131. },
  10132. "suggest": {
  10133. "ext-filter": "Required to use the boolean validator.",
  10134. "ext-pcre": "Required to use most of the library."
  10135. },
  10136. "type": "library",
  10137. "extra": {
  10138. "branch-alias": {
  10139. "dev-master": "2.6-dev"
  10140. }
  10141. },
  10142. "autoload": {
  10143. "psr-4": {
  10144. "Dotenv\\": "src/"
  10145. }
  10146. },
  10147. "notification-url": "https://packagist.org/downloads/",
  10148. "license": [
  10149. "BSD-3-Clause"
  10150. ],
  10151. "authors": [
  10152. {
  10153. "name": "Graham Campbell",
  10154. "email": "hello@gjcampbell.co.uk",
  10155. "homepage": "https://github.com/GrahamCampbell"
  10156. },
  10157. {
  10158. "name": "Vance Lucas",
  10159. "email": "vance@vancelucas.com",
  10160. "homepage": "https://github.com/vlucas"
  10161. }
  10162. ],
  10163. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10164. "keywords": [
  10165. "dotenv",
  10166. "env",
  10167. "environment"
  10168. ],
  10169. "support": {
  10170. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10171. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10172. },
  10173. "funding": [
  10174. {
  10175. "url": "https://github.com/GrahamCampbell",
  10176. "type": "github"
  10177. },
  10178. {
  10179. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10180. "type": "tidelift"
  10181. }
  10182. ],
  10183. "time": "2021-12-12T22:59:22+00:00"
  10184. },
  10185. {
  10186. "name": "webflo/drupal-finder",
  10187. "version": "1.3.1",
  10188. "source": {
  10189. "type": "git",
  10190. "url": "https://github.com/webflo/drupal-finder.git",
  10191. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10192. },
  10193. "dist": {
  10194. "type": "zip",
  10195. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10196. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10197. "shasum": ""
  10198. },
  10199. "require": {
  10200. "composer-runtime-api": "^2.2",
  10201. "php": ">=8.1"
  10202. },
  10203. "require-dev": {
  10204. "mikey179/vfsstream": "^1.6",
  10205. "phpunit/phpunit": "^10.4",
  10206. "symfony/process": "^6.4"
  10207. },
  10208. "type": "library",
  10209. "autoload": {
  10210. "psr-4": {
  10211. "DrupalFinder\\": "src/"
  10212. }
  10213. },
  10214. "notification-url": "https://packagist.org/downloads/",
  10215. "license": [
  10216. "GPL-2.0-or-later"
  10217. ],
  10218. "authors": [
  10219. {
  10220. "name": "Florian Weber",
  10221. "email": "florian@webflo.org"
  10222. }
  10223. ],
  10224. "description": "Helper class to locate a Drupal installation.",
  10225. "support": {
  10226. "issues": "https://github.com/webflo/drupal-finder/issues",
  10227. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10228. },
  10229. "time": "2024-06-28T13:45:36+00:00"
  10230. },
  10231. {
  10232. "name": "webmozart/assert",
  10233. "version": "1.11.0",
  10234. "source": {
  10235. "type": "git",
  10236. "url": "https://github.com/webmozarts/assert.git",
  10237. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10238. },
  10239. "dist": {
  10240. "type": "zip",
  10241. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10242. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10243. "shasum": ""
  10244. },
  10245. "require": {
  10246. "ext-ctype": "*",
  10247. "php": "^7.2 || ^8.0"
  10248. },
  10249. "conflict": {
  10250. "phpstan/phpstan": "<0.12.20",
  10251. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10252. },
  10253. "require-dev": {
  10254. "phpunit/phpunit": "^8.5.13"
  10255. },
  10256. "type": "library",
  10257. "extra": {
  10258. "branch-alias": {
  10259. "dev-master": "1.10-dev"
  10260. }
  10261. },
  10262. "autoload": {
  10263. "psr-4": {
  10264. "Webmozart\\Assert\\": "src/"
  10265. }
  10266. },
  10267. "notification-url": "https://packagist.org/downloads/",
  10268. "license": [
  10269. "MIT"
  10270. ],
  10271. "authors": [
  10272. {
  10273. "name": "Bernhard Schussek",
  10274. "email": "bschussek@gmail.com"
  10275. }
  10276. ],
  10277. "description": "Assertions to validate method input/output with nice error messages.",
  10278. "keywords": [
  10279. "assert",
  10280. "check",
  10281. "validate"
  10282. ],
  10283. "support": {
  10284. "issues": "https://github.com/webmozarts/assert/issues",
  10285. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10286. },
  10287. "time": "2022-06-03T18:03:27+00:00"
  10288. },
  10289. {
  10290. "name": "webmozart/path-util",
  10291. "version": "2.3.0",
  10292. "source": {
  10293. "type": "git",
  10294. "url": "https://github.com/webmozart/path-util.git",
  10295. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10296. },
  10297. "dist": {
  10298. "type": "zip",
  10299. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10300. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10301. "shasum": ""
  10302. },
  10303. "require": {
  10304. "php": ">=5.3.3",
  10305. "webmozart/assert": "~1.0"
  10306. },
  10307. "require-dev": {
  10308. "phpunit/phpunit": "^4.6",
  10309. "sebastian/version": "^1.0.1"
  10310. },
  10311. "type": "library",
  10312. "extra": {
  10313. "branch-alias": {
  10314. "dev-master": "2.3-dev"
  10315. }
  10316. },
  10317. "autoload": {
  10318. "psr-4": {
  10319. "Webmozart\\PathUtil\\": "src/"
  10320. }
  10321. },
  10322. "notification-url": "https://packagist.org/downloads/",
  10323. "license": [
  10324. "MIT"
  10325. ],
  10326. "authors": [
  10327. {
  10328. "name": "Bernhard Schussek",
  10329. "email": "bschussek@gmail.com"
  10330. }
  10331. ],
  10332. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10333. "support": {
  10334. "issues": "https://github.com/webmozart/path-util/issues",
  10335. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10336. },
  10337. "abandoned": "symfony/filesystem",
  10338. "time": "2015-12-17T08:42:14+00:00"
  10339. }
  10340. ],
  10341. "packages-dev": [],
  10342. "aliases": [],
  10343. "minimum-stability": "dev",
  10344. "stability-flags": {
  10345. "drupal/basic": 15,
  10346. "drupal/bulkdelete": 20,
  10347. "drupal/config_update": 15,
  10348. "drupal/context": 5,
  10349. "drupal/domain": 10,
  10350. "drupal/filefield_sources": 20,
  10351. "drupal/linkit": 10
  10352. },
  10353. "prefer-stable": true,
  10354. "prefer-lowest": false,
  10355. "platform": {
  10356. "php": ">=5.6"
  10357. },
  10358. "platform-dev": [],
  10359. "plugin-api-version": "2.6.0"
  10360. }