composer.lock 320 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828
  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": "602626547ffbe26791edab4c9aad31ec",
  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.3.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/56da9209b24a5a5b5d27bec9e523f02bdd101770",
  76. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770",
  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-alpha4",
  95. "drupal/coder": "8.3.22",
  96. "drupal/core": "10.1.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.0",
  99. "phpunit/phpunit": "^9.5",
  100. "squizlabs/php_codesniffer": "^3.7",
  101. "symfony/var-dumper": "^6.3",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.14.0"
  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.3.0"
  122. },
  123. "time": "2023-10-21T12:57:05+00:00"
  124. },
  125. {
  126. "name": "commerceguys/addressing",
  127. "version": "v2.2.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/commerceguys/addressing.git",
  131. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  136. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "doctrine/collections": "^1.6 || ^2.0",
  141. "php": ">=8.0"
  142. },
  143. "require-dev": {
  144. "ext-json": "*",
  145. "mikey179/vfsstream": "^1.6.11",
  146. "phpunit/phpunit": "^9.6",
  147. "squizlabs/php_codesniffer": "^3.7",
  148. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  149. },
  150. "suggest": {
  151. "symfony/validator": "to validate addresses"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "2.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "CommerceGuys\\Addressing\\": "src"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Bojan Zivanovic"
  171. },
  172. {
  173. "name": "Damien Tournoud"
  174. }
  175. ],
  176. "description": "Addressing library powered by CLDR and Google's address data.",
  177. "keywords": [
  178. "address",
  179. "internationalization",
  180. "localization",
  181. "postal"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/commerceguys/addressing/issues",
  185. "source": "https://github.com/commerceguys/addressing/tree/v2.2.0"
  186. },
  187. "time": "2024-02-25T11:22:16+00:00"
  188. },
  189. {
  190. "name": "composer/installers",
  191. "version": "v1.12.0",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/composer/installers.git",
  195. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  200. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "composer-plugin-api": "^1.0 || ^2.0"
  205. },
  206. "replace": {
  207. "roundcube/plugin-installer": "*",
  208. "shama/baton": "*"
  209. },
  210. "require-dev": {
  211. "composer/composer": "1.6.* || ^2.0",
  212. "composer/semver": "^1 || ^3",
  213. "phpstan/phpstan": "^0.12.55",
  214. "phpstan/phpstan-phpunit": "^0.12.16",
  215. "symfony/phpunit-bridge": "^4.2 || ^5",
  216. "symfony/process": "^2.3"
  217. },
  218. "type": "composer-plugin",
  219. "extra": {
  220. "class": "Composer\\Installers\\Plugin",
  221. "branch-alias": {
  222. "dev-main": "1.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "Composer\\Installers\\": "src/Composer/Installers"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Kyle Robinson Young",
  237. "email": "kyle@dontkry.com",
  238. "homepage": "https://github.com/shama"
  239. }
  240. ],
  241. "description": "A multi-framework Composer library installer",
  242. "homepage": "https://composer.github.io/installers/",
  243. "keywords": [
  244. "Craft",
  245. "Dolibarr",
  246. "Eliasis",
  247. "Hurad",
  248. "ImageCMS",
  249. "Kanboard",
  250. "Lan Management System",
  251. "MODX Evo",
  252. "MantisBT",
  253. "Mautic",
  254. "Maya",
  255. "OXID",
  256. "Plentymarkets",
  257. "Porto",
  258. "RadPHP",
  259. "SMF",
  260. "Starbug",
  261. "Thelia",
  262. "Whmcs",
  263. "WolfCMS",
  264. "agl",
  265. "aimeos",
  266. "annotatecms",
  267. "attogram",
  268. "bitrix",
  269. "cakephp",
  270. "chef",
  271. "cockpit",
  272. "codeigniter",
  273. "concrete5",
  274. "croogo",
  275. "dokuwiki",
  276. "drupal",
  277. "eZ Platform",
  278. "elgg",
  279. "expressionengine",
  280. "fuelphp",
  281. "grav",
  282. "installer",
  283. "itop",
  284. "joomla",
  285. "known",
  286. "kohana",
  287. "laravel",
  288. "lavalite",
  289. "lithium",
  290. "magento",
  291. "majima",
  292. "mako",
  293. "mediawiki",
  294. "miaoxing",
  295. "modulework",
  296. "modx",
  297. "moodle",
  298. "osclass",
  299. "pantheon",
  300. "phpbb",
  301. "piwik",
  302. "ppi",
  303. "processwire",
  304. "puppet",
  305. "pxcms",
  306. "reindex",
  307. "roundcube",
  308. "shopware",
  309. "silverstripe",
  310. "sydes",
  311. "sylius",
  312. "symfony",
  313. "tastyigniter",
  314. "typo3",
  315. "wordpress",
  316. "yawik",
  317. "zend",
  318. "zikula"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/composer/installers/issues",
  322. "source": "https://github.com/composer/installers/tree/v1.12.0"
  323. },
  324. "funding": [
  325. {
  326. "url": "https://packagist.com",
  327. "type": "custom"
  328. },
  329. {
  330. "url": "https://github.com/composer",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  335. "type": "tidelift"
  336. }
  337. ],
  338. "time": "2021-09-13T08:19:44+00:00"
  339. },
  340. {
  341. "name": "composer/semver",
  342. "version": "3.4.0",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/composer/semver.git",
  346. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  351. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "^5.3.2 || ^7.0 || ^8.0"
  356. },
  357. "require-dev": {
  358. "phpstan/phpstan": "^1.4",
  359. "symfony/phpunit-bridge": "^4.2 || ^5"
  360. },
  361. "type": "library",
  362. "extra": {
  363. "branch-alias": {
  364. "dev-main": "3.x-dev"
  365. }
  366. },
  367. "autoload": {
  368. "psr-4": {
  369. "Composer\\Semver\\": "src"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Nils Adermann",
  379. "email": "naderman@naderman.de",
  380. "homepage": "http://www.naderman.de"
  381. },
  382. {
  383. "name": "Jordi Boggiano",
  384. "email": "j.boggiano@seld.be",
  385. "homepage": "http://seld.be"
  386. },
  387. {
  388. "name": "Rob Bast",
  389. "email": "rob.bast@gmail.com",
  390. "homepage": "http://robbast.nl"
  391. }
  392. ],
  393. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  394. "keywords": [
  395. "semantic",
  396. "semver",
  397. "validation",
  398. "versioning"
  399. ],
  400. "support": {
  401. "irc": "ircs://irc.libera.chat:6697/composer",
  402. "issues": "https://github.com/composer/semver/issues",
  403. "source": "https://github.com/composer/semver/tree/3.4.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://packagist.com",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://github.com/composer",
  412. "type": "github"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2023-08-31T09:50:34+00:00"
  420. },
  421. {
  422. "name": "consolidation/annotated-command",
  423. "version": "4.9.2",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/consolidation/annotated-command.git",
  427. "reference": "b5255dcbee1de95036185062a103dabc622224de"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de",
  432. "reference": "b5255dcbee1de95036185062a103dabc622224de",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "consolidation/output-formatters": "^4.3.1",
  437. "php": ">=7.1.3",
  438. "psr/log": "^1 || ^2 || ^3",
  439. "symfony/console": "^4.4.8 || ^5 || ^6",
  440. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  441. "symfony/finder": "^4.4.8 || ^5 || ^6"
  442. },
  443. "require-dev": {
  444. "composer-runtime-api": "^2.0",
  445. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  446. "squizlabs/php_codesniffer": "^3",
  447. "yoast/phpunit-polyfills": "^0.2.0"
  448. },
  449. "type": "library",
  450. "extra": {
  451. "branch-alias": {
  452. "dev-main": "4.x-dev"
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Consolidation\\AnnotatedCommand\\": "src"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Greg Anderson",
  467. "email": "greg.1.anderson@greenknowe.org"
  468. }
  469. ],
  470. "description": "Initialize Symfony Console commands from annotated command class methods.",
  471. "support": {
  472. "issues": "https://github.com/consolidation/annotated-command/issues",
  473. "source": "https://github.com/consolidation/annotated-command/tree/4.9.2"
  474. },
  475. "time": "2023-12-26T14:30:50+00:00"
  476. },
  477. {
  478. "name": "consolidation/config",
  479. "version": "2.1.2",
  480. "source": {
  481. "type": "git",
  482. "url": "https://github.com/consolidation/config.git",
  483. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  484. },
  485. "dist": {
  486. "type": "zip",
  487. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  488. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  489. "shasum": ""
  490. },
  491. "require": {
  492. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  493. "grasmash/expander": "^2.0.1 || ^3",
  494. "php": ">=7.1.3",
  495. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  496. },
  497. "require-dev": {
  498. "ext-json": "*",
  499. "phpunit/phpunit": ">=7.5.20",
  500. "squizlabs/php_codesniffer": "^3",
  501. "symfony/console": "^4 || ^5 || ^6",
  502. "symfony/yaml": "^4 || ^5 || ^6",
  503. "yoast/phpunit-polyfills": "^1"
  504. },
  505. "suggest": {
  506. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  507. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-main": "2.x-dev"
  513. }
  514. },
  515. "autoload": {
  516. "psr-4": {
  517. "Consolidation\\Config\\": "src"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Greg Anderson",
  527. "email": "greg.1.anderson@greenknowe.org"
  528. }
  529. ],
  530. "description": "Provide configuration services for a commandline tool.",
  531. "support": {
  532. "issues": "https://github.com/consolidation/config/issues",
  533. "source": "https://github.com/consolidation/config/tree/2.1.2"
  534. },
  535. "time": "2022-10-06T17:48:03+00:00"
  536. },
  537. {
  538. "name": "consolidation/filter-via-dot-access-data",
  539. "version": "2.0.2",
  540. "source": {
  541. "type": "git",
  542. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  543. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  544. },
  545. "dist": {
  546. "type": "zip",
  547. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  548. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  549. "shasum": ""
  550. },
  551. "require": {
  552. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  553. "php": ">=7.1.3"
  554. },
  555. "require-dev": {
  556. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  557. "squizlabs/php_codesniffer": "^3",
  558. "yoast/phpunit-polyfills": "^0.2.0"
  559. },
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-main": "2.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-4": {
  568. "Consolidation\\Filter\\": "src"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Greg Anderson",
  578. "email": "greg.1.anderson@greenknowe.org"
  579. }
  580. ],
  581. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  582. "support": {
  583. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  584. },
  585. "time": "2021-12-30T03:56:08+00:00"
  586. },
  587. {
  588. "name": "consolidation/log",
  589. "version": "3.0.0",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/consolidation/log.git",
  593. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  598. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  599. "shasum": ""
  600. },
  601. "require": {
  602. "php": ">=8.0.0",
  603. "psr/log": "^3",
  604. "symfony/console": "^5 || ^6"
  605. },
  606. "require-dev": {
  607. "phpunit/phpunit": ">=7.5.20",
  608. "squizlabs/php_codesniffer": "^3",
  609. "yoast/phpunit-polyfills": "^0.2.0"
  610. },
  611. "type": "library",
  612. "extra": {
  613. "branch-alias": {
  614. "dev-main": "2.x-dev"
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Consolidation\\Log\\": "src"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "MIT"
  625. ],
  626. "authors": [
  627. {
  628. "name": "Greg Anderson",
  629. "email": "greg.1.anderson@greenknowe.org"
  630. }
  631. ],
  632. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  633. "support": {
  634. "issues": "https://github.com/consolidation/log/issues",
  635. "source": "https://github.com/consolidation/log/tree/3.0.0"
  636. },
  637. "time": "2022-04-05T16:53:32+00:00"
  638. },
  639. {
  640. "name": "consolidation/output-formatters",
  641. "version": "4.3.2",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/consolidation/output-formatters.git",
  645. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  650. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  655. "php": ">=7.1.3",
  656. "symfony/console": "^4 || ^5 || ^6",
  657. "symfony/finder": "^4 || ^5 || ^6"
  658. },
  659. "require-dev": {
  660. "php-coveralls/php-coveralls": "^2.4.2",
  661. "phpunit/phpunit": "^7 || ^8 || ^9",
  662. "squizlabs/php_codesniffer": "^3",
  663. "symfony/var-dumper": "^4 || ^5 || ^6",
  664. "symfony/yaml": "^4 || ^5 || ^6",
  665. "yoast/phpunit-polyfills": "^1"
  666. },
  667. "suggest": {
  668. "symfony/var-dumper": "For using the var_dump formatter"
  669. },
  670. "type": "library",
  671. "autoload": {
  672. "psr-4": {
  673. "Consolidation\\OutputFormatters\\": "src"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Greg Anderson",
  683. "email": "greg.1.anderson@greenknowe.org"
  684. }
  685. ],
  686. "description": "Format text by applying transformations provided by plug-in formatters.",
  687. "support": {
  688. "issues": "https://github.com/consolidation/output-formatters/issues",
  689. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  690. },
  691. "time": "2023-07-06T04:45:41+00:00"
  692. },
  693. {
  694. "name": "consolidation/robo",
  695. "version": "4.0.6",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/consolidation/robo.git",
  699. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  704. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  705. "shasum": ""
  706. },
  707. "require": {
  708. "consolidation/annotated-command": "^4.8.1",
  709. "consolidation/config": "^2.0.1",
  710. "consolidation/log": "^2.0.2 || ^3",
  711. "consolidation/output-formatters": "^4.1.2",
  712. "consolidation/self-update": "^2.0",
  713. "league/container": "^3.3.1 || ^4.0",
  714. "php": ">=8.0",
  715. "phpowermove/docblock": "^4.0",
  716. "symfony/console": "^6",
  717. "symfony/event-dispatcher": "^6",
  718. "symfony/filesystem": "^6",
  719. "symfony/finder": "^6",
  720. "symfony/process": "^6",
  721. "symfony/yaml": "^6"
  722. },
  723. "conflict": {
  724. "codegyre/robo": "*"
  725. },
  726. "require-dev": {
  727. "natxet/cssmin": "3.0.4",
  728. "patchwork/jsqueeze": "^2",
  729. "pear/archive_tar": "^1.4.4",
  730. "phpunit/phpunit": "^7.5.20 || ^8",
  731. "squizlabs/php_codesniffer": "^3.6",
  732. "yoast/phpunit-polyfills": "^0.2.0"
  733. },
  734. "suggest": {
  735. "natxet/cssmin": "For minifying CSS files in taskMinify",
  736. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  737. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  738. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  739. },
  740. "bin": [
  741. "robo"
  742. ],
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "Robo\\": "src"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Davert",
  756. "email": "davert.php@resend.cc"
  757. }
  758. ],
  759. "description": "Modern task runner",
  760. "support": {
  761. "issues": "https://github.com/consolidation/robo/issues",
  762. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  763. },
  764. "time": "2023-04-30T21:49:04+00:00"
  765. },
  766. {
  767. "name": "consolidation/self-update",
  768. "version": "2.2.0",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/consolidation/self-update.git",
  772. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  777. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  778. "shasum": ""
  779. },
  780. "require": {
  781. "composer/semver": "^3.2",
  782. "php": ">=5.5.0",
  783. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  784. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  785. },
  786. "bin": [
  787. "scripts/release"
  788. ],
  789. "type": "library",
  790. "extra": {
  791. "branch-alias": {
  792. "dev-main": "2.x-dev"
  793. }
  794. },
  795. "autoload": {
  796. "psr-4": {
  797. "SelfUpdate\\": "src"
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "MIT"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Alexander Menk",
  807. "email": "menk@mestrona.net"
  808. },
  809. {
  810. "name": "Greg Anderson",
  811. "email": "greg.1.anderson@greenknowe.org"
  812. }
  813. ],
  814. "description": "Provides a self:update command for Symfony Console applications.",
  815. "support": {
  816. "issues": "https://github.com/consolidation/self-update/issues",
  817. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  818. },
  819. "time": "2023-03-18T01:37:41+00:00"
  820. },
  821. {
  822. "name": "consolidation/site-alias",
  823. "version": "4.0.1",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/consolidation/site-alias.git",
  827. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  832. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "consolidation/config": "^1.2.1 || ^2",
  837. "php": ">=7.4",
  838. "symfony/filesystem": "^5.4 || ^6",
  839. "symfony/finder": "^5 || ^6"
  840. },
  841. "require-dev": {
  842. "php-coveralls/php-coveralls": "^2.4.2",
  843. "phpunit/phpunit": ">=7",
  844. "squizlabs/php_codesniffer": "^3",
  845. "symfony/var-dumper": "^4",
  846. "yoast/phpunit-polyfills": "^0.2.0"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-main": "4.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "Consolidation\\SiteAlias\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Moshe Weitzman",
  870. "email": "weitzman@tejasa.com"
  871. }
  872. ],
  873. "description": "Manage alias records for local and remote sites.",
  874. "support": {
  875. "issues": "https://github.com/consolidation/site-alias/issues",
  876. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  877. },
  878. "time": "2023-04-29T17:18:10+00:00"
  879. },
  880. {
  881. "name": "consolidation/site-process",
  882. "version": "5.2.0",
  883. "source": {
  884. "type": "git",
  885. "url": "https://github.com/consolidation/site-process.git",
  886. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  887. },
  888. "dist": {
  889. "type": "zip",
  890. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  891. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  892. "shasum": ""
  893. },
  894. "require": {
  895. "consolidation/config": "^2",
  896. "consolidation/site-alias": "^3 || ^4",
  897. "php": ">=8.0.14",
  898. "symfony/console": "^5.4 || ^6",
  899. "symfony/process": "^6"
  900. },
  901. "require-dev": {
  902. "phpunit/phpunit": "^9",
  903. "squizlabs/php_codesniffer": "^3"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-main": "5.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Consolidation\\SiteProcess\\": "src"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Greg Anderson",
  923. "email": "greg.1.anderson@greenknowe.org"
  924. },
  925. {
  926. "name": "Moshe Weitzman",
  927. "email": "weitzman@tejasa.com"
  928. }
  929. ],
  930. "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.",
  931. "support": {
  932. "issues": "https://github.com/consolidation/site-process/issues",
  933. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  934. },
  935. "time": "2022-12-06T17:57:16+00:00"
  936. },
  937. {
  938. "name": "dflydev/dot-access-data",
  939. "version": "v3.0.2",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  943. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  948. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  949. "shasum": ""
  950. },
  951. "require": {
  952. "php": "^7.1 || ^8.0"
  953. },
  954. "require-dev": {
  955. "phpstan/phpstan": "^0.12.42",
  956. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  957. "scrutinizer/ocular": "1.6.0",
  958. "squizlabs/php_codesniffer": "^3.5",
  959. "vimeo/psalm": "^4.0.0"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-main": "3.x-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "Dflydev\\DotAccessData\\": "src/"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Dragonfly Development Inc.",
  979. "email": "info@dflydev.com",
  980. "homepage": "http://dflydev.com"
  981. },
  982. {
  983. "name": "Beau Simensen",
  984. "email": "beau@dflydev.com",
  985. "homepage": "http://beausimensen.com"
  986. },
  987. {
  988. "name": "Carlos Frutos",
  989. "email": "carlos@kiwing.it",
  990. "homepage": "https://github.com/cfrutos"
  991. },
  992. {
  993. "name": "Colin O'Dell",
  994. "email": "colinodell@gmail.com",
  995. "homepage": "https://www.colinodell.com"
  996. }
  997. ],
  998. "description": "Given a deep data structure, access data by dot notation.",
  999. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1000. "keywords": [
  1001. "access",
  1002. "data",
  1003. "dot",
  1004. "notation"
  1005. ],
  1006. "support": {
  1007. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1008. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1009. },
  1010. "time": "2022-10-27T11:44:00+00:00"
  1011. },
  1012. {
  1013. "name": "doctrine/annotations",
  1014. "version": "1.14.3",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/doctrine/annotations.git",
  1018. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1023. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "doctrine/lexer": "^1 || ^2",
  1028. "ext-tokenizer": "*",
  1029. "php": "^7.1 || ^8.0",
  1030. "psr/cache": "^1 || ^2 || ^3"
  1031. },
  1032. "require-dev": {
  1033. "doctrine/cache": "^1.11 || ^2.0",
  1034. "doctrine/coding-standard": "^9 || ^10",
  1035. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1036. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1037. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1038. "vimeo/psalm": "^4.10"
  1039. },
  1040. "suggest": {
  1041. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1042. },
  1043. "type": "library",
  1044. "autoload": {
  1045. "psr-4": {
  1046. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Guilherme Blanco",
  1056. "email": "guilhermeblanco@gmail.com"
  1057. },
  1058. {
  1059. "name": "Roman Borschel",
  1060. "email": "roman@code-factory.org"
  1061. },
  1062. {
  1063. "name": "Benjamin Eberlei",
  1064. "email": "kontakt@beberlei.de"
  1065. },
  1066. {
  1067. "name": "Jonathan Wage",
  1068. "email": "jonwage@gmail.com"
  1069. },
  1070. {
  1071. "name": "Johannes Schmitt",
  1072. "email": "schmittjoh@gmail.com"
  1073. }
  1074. ],
  1075. "description": "Docblock Annotations Parser",
  1076. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1077. "keywords": [
  1078. "annotations",
  1079. "docblock",
  1080. "parser"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/doctrine/annotations/issues",
  1084. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1085. },
  1086. "time": "2023-02-01T09:20:38+00:00"
  1087. },
  1088. {
  1089. "name": "doctrine/collections",
  1090. "version": "2.2.0",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/doctrine/collections.git",
  1094. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/doctrine/collections/zipball/07e16cd7b80a2cffed99e36b541876af172f0257",
  1099. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "doctrine/deprecations": "^1",
  1104. "php": "^8.1"
  1105. },
  1106. "require-dev": {
  1107. "doctrine/coding-standard": "^12",
  1108. "ext-json": "*",
  1109. "phpstan/phpstan": "^1.8",
  1110. "phpstan/phpstan-phpunit": "^1.0",
  1111. "phpunit/phpunit": "^10.5",
  1112. "vimeo/psalm": "^5.11"
  1113. },
  1114. "type": "library",
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Doctrine\\Common\\Collections\\": "src"
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Guilherme Blanco",
  1127. "email": "guilhermeblanco@gmail.com"
  1128. },
  1129. {
  1130. "name": "Roman Borschel",
  1131. "email": "roman@code-factory.org"
  1132. },
  1133. {
  1134. "name": "Benjamin Eberlei",
  1135. "email": "kontakt@beberlei.de"
  1136. },
  1137. {
  1138. "name": "Jonathan Wage",
  1139. "email": "jonwage@gmail.com"
  1140. },
  1141. {
  1142. "name": "Johannes Schmitt",
  1143. "email": "schmittjoh@gmail.com"
  1144. }
  1145. ],
  1146. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1147. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1148. "keywords": [
  1149. "array",
  1150. "collections",
  1151. "iterators",
  1152. "php"
  1153. ],
  1154. "support": {
  1155. "issues": "https://github.com/doctrine/collections/issues",
  1156. "source": "https://github.com/doctrine/collections/tree/2.2.0"
  1157. },
  1158. "funding": [
  1159. {
  1160. "url": "https://www.doctrine-project.org/sponsorship.html",
  1161. "type": "custom"
  1162. },
  1163. {
  1164. "url": "https://www.patreon.com/phpdoctrine",
  1165. "type": "patreon"
  1166. },
  1167. {
  1168. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1169. "type": "tidelift"
  1170. }
  1171. ],
  1172. "time": "2024-02-25T22:55:36+00:00"
  1173. },
  1174. {
  1175. "name": "doctrine/deprecations",
  1176. "version": "1.1.3",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/doctrine/deprecations.git",
  1180. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1185. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "php": "^7.1 || ^8.0"
  1190. },
  1191. "require-dev": {
  1192. "doctrine/coding-standard": "^9",
  1193. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1194. "phpstan/phpstan-phpunit": "^1.0",
  1195. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1196. "psalm/plugin-phpunit": "0.18.4",
  1197. "psr/log": "^1 || ^2 || ^3",
  1198. "vimeo/psalm": "4.30.0 || 5.12.0"
  1199. },
  1200. "suggest": {
  1201. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1202. },
  1203. "type": "library",
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1207. }
  1208. },
  1209. "notification-url": "https://packagist.org/downloads/",
  1210. "license": [
  1211. "MIT"
  1212. ],
  1213. "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.",
  1214. "homepage": "https://www.doctrine-project.org/",
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/deprecations/issues",
  1217. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1218. },
  1219. "time": "2024-01-30T19:34:25+00:00"
  1220. },
  1221. {
  1222. "name": "doctrine/lexer",
  1223. "version": "2.1.1",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/doctrine/lexer.git",
  1227. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1232. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1233. "shasum": ""
  1234. },
  1235. "require": {
  1236. "doctrine/deprecations": "^1.0",
  1237. "php": "^7.1 || ^8.0"
  1238. },
  1239. "require-dev": {
  1240. "doctrine/coding-standard": "^9 || ^12",
  1241. "phpstan/phpstan": "^1.3",
  1242. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1243. "psalm/plugin-phpunit": "^0.18.3",
  1244. "vimeo/psalm": "^4.11 || ^5.21"
  1245. },
  1246. "type": "library",
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Doctrine\\Common\\Lexer\\": "src"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Guilherme Blanco",
  1259. "email": "guilhermeblanco@gmail.com"
  1260. },
  1261. {
  1262. "name": "Roman Borschel",
  1263. "email": "roman@code-factory.org"
  1264. },
  1265. {
  1266. "name": "Johannes Schmitt",
  1267. "email": "schmittjoh@gmail.com"
  1268. }
  1269. ],
  1270. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1271. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1272. "keywords": [
  1273. "annotations",
  1274. "docblock",
  1275. "lexer",
  1276. "parser",
  1277. "php"
  1278. ],
  1279. "support": {
  1280. "issues": "https://github.com/doctrine/lexer/issues",
  1281. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1282. },
  1283. "funding": [
  1284. {
  1285. "url": "https://www.doctrine-project.org/sponsorship.html",
  1286. "type": "custom"
  1287. },
  1288. {
  1289. "url": "https://www.patreon.com/phpdoctrine",
  1290. "type": "patreon"
  1291. },
  1292. {
  1293. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1294. "type": "tidelift"
  1295. }
  1296. ],
  1297. "time": "2024-02-05T11:35:39+00:00"
  1298. },
  1299. {
  1300. "name": "drupal/address",
  1301. "version": "2.0.1",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://git.drupalcode.org/project/address.git",
  1305. "reference": "2.0.1"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://ftp.drupal.org/files/projects/address-2.0.1.zip",
  1310. "reference": "2.0.1",
  1311. "shasum": "47e166dc46b1a2e17470738e8321bc20fa9e8e24"
  1312. },
  1313. "require": {
  1314. "commerceguys/addressing": "^2.1.1",
  1315. "drupal/core": "^9.5 || ^10",
  1316. "php": "^8.0"
  1317. },
  1318. "require-dev": {
  1319. "drupal/diff": "^1",
  1320. "drupal/feeds": "^3",
  1321. "drupal/token": "^1"
  1322. },
  1323. "type": "drupal-module",
  1324. "extra": {
  1325. "drupal": {
  1326. "version": "2.0.1",
  1327. "datestamp": "1708373992",
  1328. "security-coverage": {
  1329. "status": "covered",
  1330. "message": "Covered by Drupal's security advisory policy"
  1331. }
  1332. }
  1333. },
  1334. "notification-url": "https://packages.drupal.org/8/downloads",
  1335. "license": [
  1336. "GPL-2.0-or-later"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "bojanz",
  1341. "homepage": "https://www.drupal.org/user/86106"
  1342. },
  1343. {
  1344. "name": "Centarro",
  1345. "homepage": "https://www.drupal.org/user/3661446"
  1346. },
  1347. {
  1348. "name": "dww",
  1349. "homepage": "https://www.drupal.org/user/46549"
  1350. },
  1351. {
  1352. "name": "jsacksick",
  1353. "homepage": "https://www.drupal.org/user/972218"
  1354. },
  1355. {
  1356. "name": "rszrama",
  1357. "homepage": "https://www.drupal.org/user/49344"
  1358. }
  1359. ],
  1360. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1361. "homepage": "http://drupal.org/project/address",
  1362. "support": {
  1363. "source": "https://git.drupalcode.org/project/address"
  1364. }
  1365. },
  1366. {
  1367. "name": "drupal/address_map_link",
  1368. "version": "1.4.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://git.drupalcode.org/project/address_map_link.git",
  1372. "reference": "8.x-1.4"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://ftp.drupal.org/files/projects/address_map_link-8.x-1.4.zip",
  1377. "reference": "8.x-1.4",
  1378. "shasum": "854c86a4e4ac6ef492e502659acf8eed89e56058"
  1379. },
  1380. "require": {
  1381. "drupal/address": "^1.0 || ^2.0",
  1382. "drupal/core": "^9.2 || ^10",
  1383. "php": "^7.3 || ^8.0"
  1384. },
  1385. "type": "drupal-module",
  1386. "extra": {
  1387. "drupal": {
  1388. "version": "8.x-1.4",
  1389. "datestamp": "1708441555",
  1390. "security-coverage": {
  1391. "status": "covered",
  1392. "message": "Covered by Drupal's security advisory policy"
  1393. }
  1394. }
  1395. },
  1396. "notification-url": "https://packages.drupal.org/8/downloads",
  1397. "license": [
  1398. "GPL-2.0-or-later"
  1399. ],
  1400. "authors": [
  1401. {
  1402. "name": "Chris Snyder",
  1403. "homepage": "https://www.drupal.org/u/chrissnyder",
  1404. "email": "chris@chrissnyder.org",
  1405. "role": "Maintainer"
  1406. }
  1407. ],
  1408. "description": "Provides a link to an external mapping site for an address field.",
  1409. "homepage": "https://www.drupal.org/project/address_map_link",
  1410. "keywords": [
  1411. "Drupal"
  1412. ],
  1413. "support": {
  1414. "source": "https://cgit.drupalcode.org/address_map_link",
  1415. "issues": "https://www.drupal.org/project/issues/address_map_link"
  1416. }
  1417. },
  1418. {
  1419. "name": "drupal/audiofield",
  1420. "version": "1.13.0",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://git.drupalcode.org/project/audiofield.git",
  1424. "reference": "8.x-1.13"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1429. "reference": "8.x-1.13",
  1430. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1431. },
  1432. "require": {
  1433. "drupal/core": "^8 || ^9 || ^10"
  1434. },
  1435. "type": "drupal-module",
  1436. "extra": {
  1437. "drupal": {
  1438. "version": "8.x-1.13",
  1439. "datestamp": "1681143245",
  1440. "security-coverage": {
  1441. "status": "covered",
  1442. "message": "Covered by Drupal's security advisory policy"
  1443. }
  1444. },
  1445. "drush": {
  1446. "services": {
  1447. "drush.services.yml": "^9"
  1448. }
  1449. }
  1450. },
  1451. "notification-url": "https://packages.drupal.org/8/downloads",
  1452. "license": [
  1453. "GPL-2.0-or-later"
  1454. ],
  1455. "authors": [
  1456. {
  1457. "name": "Daniel Moberly",
  1458. "homepage": "https://www.drupal.org/u/danielmoberly",
  1459. "role": "Maintainer"
  1460. },
  1461. {
  1462. "name": "tamerzg",
  1463. "homepage": "https://www.drupal.org/user/464564"
  1464. }
  1465. ],
  1466. "description": "AudioField Module",
  1467. "homepage": "https://www.drupal.org/project/audiofield",
  1468. "support": {
  1469. "source": "https://git.drupalcode.org/project/audiofield",
  1470. "issues": "https://www.drupal.org/project/issues/audiofield"
  1471. }
  1472. },
  1473. {
  1474. "name": "drupal/backup_migrate",
  1475. "version": "5.0.3",
  1476. "source": {
  1477. "type": "git",
  1478. "url": "https://git.drupalcode.org/project/backup_migrate.git",
  1479. "reference": "5.0.3"
  1480. },
  1481. "dist": {
  1482. "type": "zip",
  1483. "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip",
  1484. "reference": "5.0.3",
  1485. "shasum": "bc263f601f7a21248d4000a372d04a417df7e326"
  1486. },
  1487. "require": {
  1488. "drupal/core": "^9.3 || ^10"
  1489. },
  1490. "suggest": {
  1491. "defuse/php-encryption": "Optional encryption of saved backups."
  1492. },
  1493. "type": "drupal-module",
  1494. "extra": {
  1495. "drupal": {
  1496. "version": "5.0.3",
  1497. "datestamp": "1671366510",
  1498. "security-coverage": {
  1499. "status": "covered",
  1500. "message": "Covered by Drupal's security advisory policy"
  1501. }
  1502. }
  1503. },
  1504. "notification-url": "https://packages.drupal.org/8/downloads",
  1505. "license": [
  1506. "GPL-2.0-or-later"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "See contributors",
  1511. "homepage": "https://www.drupal.org/node/189065/committers",
  1512. "role": "Developer"
  1513. },
  1514. {
  1515. "name": "DamienMcKenna",
  1516. "homepage": "https://www.drupal.org/user/108450"
  1517. },
  1518. {
  1519. "name": "dgorton",
  1520. "homepage": "https://www.drupal.org/user/19044"
  1521. },
  1522. {
  1523. "name": "ikit-claw",
  1524. "homepage": "https://www.drupal.org/user/3285813"
  1525. },
  1526. {
  1527. "name": "ronan",
  1528. "homepage": "https://www.drupal.org/user/72815"
  1529. }
  1530. ],
  1531. "description": "Backup and Migrate Drupal Module",
  1532. "homepage": "https://www.drupal.org/project/backup_migrate",
  1533. "support": {
  1534. "source": "https://git.drupalcode.org/project/backup_migrate",
  1535. "issues": "https://www.drupal.org/project/issues/backup_migrate",
  1536. "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
  1537. }
  1538. },
  1539. {
  1540. "name": "drupal/charts",
  1541. "version": "5.0.11",
  1542. "source": {
  1543. "type": "git",
  1544. "url": "https://git.drupalcode.org/project/charts.git",
  1545. "reference": "5.0.11"
  1546. },
  1547. "dist": {
  1548. "type": "zip",
  1549. "url": "https://ftp.drupal.org/files/projects/charts-5.0.11.zip",
  1550. "reference": "5.0.11",
  1551. "shasum": "fcffd70c4bbaf74809528993ed42ad0fb6db2b75"
  1552. },
  1553. "require": {
  1554. "drupal/core": "^9.2 || ^10"
  1555. },
  1556. "type": "drupal-module",
  1557. "extra": {
  1558. "drupal": {
  1559. "version": "5.0.11",
  1560. "datestamp": "1706650372",
  1561. "security-coverage": {
  1562. "status": "covered",
  1563. "message": "Covered by Drupal's security advisory policy"
  1564. }
  1565. }
  1566. },
  1567. "notification-url": "https://packages.drupal.org/8/downloads",
  1568. "license": [
  1569. "GPL-2.0-or-later"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "andileco",
  1574. "homepage": "https://www.drupal.org/user/2054544"
  1575. },
  1576. {
  1577. "name": "nikathone",
  1578. "homepage": "https://www.drupal.org/user/2421800"
  1579. },
  1580. {
  1581. "name": "quicksketch",
  1582. "homepage": "https://www.drupal.org/user/35821"
  1583. }
  1584. ],
  1585. "description": "A charting API for Drupal that provides chart elements and integration with Views.",
  1586. "homepage": "https://www.drupal.org/project/charts",
  1587. "support": {
  1588. "source": "https://git.drupalcode.org/project/charts"
  1589. }
  1590. },
  1591. {
  1592. "name": "drupal/core",
  1593. "version": "10.2.3",
  1594. "source": {
  1595. "type": "git",
  1596. "url": "https://github.com/drupal/core.git",
  1597. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7"
  1598. },
  1599. "dist": {
  1600. "type": "zip",
  1601. "url": "https://api.github.com/repos/drupal/core/zipball/cc8c7952f7013795b735f5c15290e76937163bb7",
  1602. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7",
  1603. "shasum": ""
  1604. },
  1605. "require": {
  1606. "asm89/stack-cors": "^2.1",
  1607. "composer-runtime-api": "^2.1",
  1608. "composer/semver": "^3.3",
  1609. "doctrine/annotations": "^1.14",
  1610. "egulias/email-validator": "^3.2.1|^4.0",
  1611. "ext-date": "*",
  1612. "ext-dom": "*",
  1613. "ext-filter": "*",
  1614. "ext-gd": "*",
  1615. "ext-hash": "*",
  1616. "ext-json": "*",
  1617. "ext-pcre": "*",
  1618. "ext-pdo": "*",
  1619. "ext-session": "*",
  1620. "ext-simplexml": "*",
  1621. "ext-spl": "*",
  1622. "ext-tokenizer": "*",
  1623. "ext-xml": "*",
  1624. "guzzlehttp/guzzle": "^7.5",
  1625. "guzzlehttp/psr7": "^2.4.5",
  1626. "masterminds/html5": "^2.7",
  1627. "mck89/peast": "^1.14",
  1628. "pear/archive_tar": "^1.4.14",
  1629. "php": ">=8.1.0",
  1630. "psr/log": "^3.0",
  1631. "sebastian/diff": "^4",
  1632. "symfony/console": "^6.4",
  1633. "symfony/dependency-injection": "^6.4",
  1634. "symfony/event-dispatcher": "^6.4",
  1635. "symfony/filesystem": "^6.4",
  1636. "symfony/finder": "^6.4",
  1637. "symfony/http-foundation": "^6.4",
  1638. "symfony/http-kernel": "^6.4",
  1639. "symfony/mailer": "^6.4",
  1640. "symfony/mime": "^6.4",
  1641. "symfony/polyfill-iconv": "^1.26",
  1642. "symfony/process": "^6.4",
  1643. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  1644. "symfony/routing": "^6.4",
  1645. "symfony/serializer": "^6.4",
  1646. "symfony/validator": "^6.4",
  1647. "symfony/yaml": "^6.4",
  1648. "twig/twig": "^3.5.0"
  1649. },
  1650. "conflict": {
  1651. "drush/drush": "<12.4.3"
  1652. },
  1653. "replace": {
  1654. "drupal/core-annotation": "self.version",
  1655. "drupal/core-assertion": "self.version",
  1656. "drupal/core-class-finder": "self.version",
  1657. "drupal/core-datetime": "self.version",
  1658. "drupal/core-dependency-injection": "self.version",
  1659. "drupal/core-diff": "self.version",
  1660. "drupal/core-discovery": "self.version",
  1661. "drupal/core-event-dispatcher": "self.version",
  1662. "drupal/core-file-cache": "self.version",
  1663. "drupal/core-file-security": "self.version",
  1664. "drupal/core-filesystem": "self.version",
  1665. "drupal/core-front-matter": "self.version",
  1666. "drupal/core-gettext": "self.version",
  1667. "drupal/core-graph": "self.version",
  1668. "drupal/core-http-foundation": "self.version",
  1669. "drupal/core-php-storage": "self.version",
  1670. "drupal/core-plugin": "self.version",
  1671. "drupal/core-proxy-builder": "self.version",
  1672. "drupal/core-render": "self.version",
  1673. "drupal/core-serialization": "self.version",
  1674. "drupal/core-transliteration": "self.version",
  1675. "drupal/core-utility": "self.version",
  1676. "drupal/core-uuid": "self.version",
  1677. "drupal/core-version": "self.version"
  1678. },
  1679. "suggest": {
  1680. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  1681. },
  1682. "type": "drupal-core",
  1683. "extra": {
  1684. "drupal-scaffold": {
  1685. "file-mapping": {
  1686. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  1687. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  1688. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  1689. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  1690. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  1691. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  1692. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  1693. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  1694. "[web-root]/index.php": "assets/scaffold/files/index.php",
  1695. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  1696. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  1697. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  1698. "[web-root]/update.php": "assets/scaffold/files/update.php",
  1699. "[web-root]/web.config": "assets/scaffold/files/web.config",
  1700. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  1701. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  1702. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  1703. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  1704. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  1705. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  1706. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  1707. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  1708. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  1709. }
  1710. }
  1711. },
  1712. "autoload": {
  1713. "files": [
  1714. "includes/bootstrap.inc"
  1715. ],
  1716. "psr-4": {
  1717. "Drupal\\Core\\": "lib/Drupal/Core",
  1718. "Drupal\\Component\\": "lib/Drupal/Component"
  1719. },
  1720. "classmap": [
  1721. "lib/Drupal.php",
  1722. "lib/Drupal/Component/DependencyInjection/Container.php",
  1723. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  1724. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  1725. "lib/Drupal/Component/Utility/Timer.php",
  1726. "lib/Drupal/Component/Utility/Unicode.php",
  1727. "lib/Drupal/Core/Cache/Cache.php",
  1728. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  1729. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  1730. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  1731. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  1732. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  1733. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  1734. "lib/Drupal/Core/Database/Connection.php",
  1735. "lib/Drupal/Core/Database/Database.php",
  1736. "lib/Drupal/Core/Database/StatementInterface.php",
  1737. "lib/Drupal/Core/DependencyInjection/Container.php",
  1738. "lib/Drupal/Core/DrupalKernel.php",
  1739. "lib/Drupal/Core/DrupalKernelInterface.php",
  1740. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  1741. "lib/Drupal/Core/Site/Settings.php"
  1742. ]
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "GPL-2.0-or-later"
  1747. ],
  1748. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  1749. "support": {
  1750. "source": "https://github.com/drupal/core/tree/10.2.3"
  1751. },
  1752. "time": "2024-02-07T22:44:48+00:00"
  1753. },
  1754. {
  1755. "name": "drupal/core-composer-scaffold",
  1756. "version": "10.2.3",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/drupal/core-composer-scaffold.git",
  1760. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/63effa1bc644e80a269e8b4415e627491d26fd3f",
  1765. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f",
  1766. "shasum": ""
  1767. },
  1768. "require": {
  1769. "composer-plugin-api": "^2",
  1770. "php": ">=7.3.0"
  1771. },
  1772. "conflict": {
  1773. "drupal-composer/drupal-scaffold": "*"
  1774. },
  1775. "require-dev": {
  1776. "composer/composer": "^1.8@stable"
  1777. },
  1778. "type": "composer-plugin",
  1779. "extra": {
  1780. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  1781. "branch-alias": {
  1782. "dev-master": "1.0.x-dev"
  1783. }
  1784. },
  1785. "autoload": {
  1786. "psr-4": {
  1787. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  1788. }
  1789. },
  1790. "notification-url": "https://packagist.org/downloads/",
  1791. "license": [
  1792. "GPL-2.0-or-later"
  1793. ],
  1794. "description": "A flexible Composer project scaffold builder.",
  1795. "homepage": "https://www.drupal.org/project/drupal",
  1796. "keywords": [
  1797. "drupal"
  1798. ],
  1799. "support": {
  1800. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.3"
  1801. },
  1802. "time": "2024-01-26T14:59:30+00:00"
  1803. },
  1804. {
  1805. "name": "drupal/core-project-message",
  1806. "version": "10.2.3",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/drupal/core-project-message.git",
  1810. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  1815. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  1816. "shasum": ""
  1817. },
  1818. "require": {
  1819. "composer-plugin-api": "^2",
  1820. "php": ">=7.3.0"
  1821. },
  1822. "type": "composer-plugin",
  1823. "extra": {
  1824. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  1825. },
  1826. "autoload": {
  1827. "psr-4": {
  1828. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  1829. }
  1830. },
  1831. "notification-url": "https://packagist.org/downloads/",
  1832. "license": [
  1833. "GPL-2.0-or-later"
  1834. ],
  1835. "description": "Adds a message after Composer installation.",
  1836. "homepage": "https://www.drupal.org/project/drupal",
  1837. "keywords": [
  1838. "drupal"
  1839. ],
  1840. "support": {
  1841. "source": "https://github.com/drupal/core-project-message/tree/10.2.3"
  1842. },
  1843. "time": "2023-07-24T07:55:25+00:00"
  1844. },
  1845. {
  1846. "name": "drupal/core-recommended",
  1847. "version": "10.2.3",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/drupal/core-recommended.git",
  1851. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ee5d148455ca5792108a1fd007ae162ea2ffe859",
  1856. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "asm89/stack-cors": "~v2.2.0",
  1861. "composer/semver": "~3.4.0",
  1862. "doctrine/annotations": "~1.14.3",
  1863. "doctrine/deprecations": "~1.1.2",
  1864. "doctrine/lexer": "~2.1.0",
  1865. "drupal/core": "10.2.3",
  1866. "egulias/email-validator": "~4.0.2",
  1867. "guzzlehttp/guzzle": "~7.8.1",
  1868. "guzzlehttp/promises": "~2.0.2",
  1869. "guzzlehttp/psr7": "~2.6.2",
  1870. "masterminds/html5": "~2.8.1",
  1871. "mck89/peast": "~v1.15.4",
  1872. "pear/archive_tar": "~1.4.14",
  1873. "pear/console_getopt": "~v1.4.3",
  1874. "pear/pear-core-minimal": "~v1.10.14",
  1875. "pear/pear_exception": "~v1.0.2",
  1876. "psr/cache": "~3.0.0",
  1877. "psr/container": "~2.0.2",
  1878. "psr/event-dispatcher": "~1.0.0",
  1879. "psr/http-client": "~1.0.3",
  1880. "psr/http-factory": "~1.0.2",
  1881. "psr/log": "~3.0.0",
  1882. "ralouphie/getallheaders": "~3.0.3",
  1883. "sebastian/diff": "~4.0.5",
  1884. "symfony/console": "~v6.4.1",
  1885. "symfony/dependency-injection": "~v6.4.1",
  1886. "symfony/deprecation-contracts": "~v3.4.0",
  1887. "symfony/error-handler": "~v6.4.0",
  1888. "symfony/event-dispatcher": "~v6.4.0",
  1889. "symfony/event-dispatcher-contracts": "~v3.4.0",
  1890. "symfony/filesystem": "~v6.4.0",
  1891. "symfony/finder": "~v6.4.0",
  1892. "symfony/http-foundation": "~v6.4.0",
  1893. "symfony/http-kernel": "~v6.4.1",
  1894. "symfony/mailer": "~v6.4.0",
  1895. "symfony/mime": "~v6.4.0",
  1896. "symfony/polyfill-ctype": "~v1.28.0",
  1897. "symfony/polyfill-iconv": "~v1.28.0",
  1898. "symfony/polyfill-intl-grapheme": "~v1.28.0",
  1899. "symfony/polyfill-intl-idn": "~v1.28.0",
  1900. "symfony/polyfill-intl-normalizer": "~v1.28.0",
  1901. "symfony/polyfill-mbstring": "~v1.28.0",
  1902. "symfony/polyfill-php83": "~v1.28.0",
  1903. "symfony/process": "~v6.4.0",
  1904. "symfony/psr-http-message-bridge": "~v6.4.0",
  1905. "symfony/routing": "~v6.4.1",
  1906. "symfony/serializer": "~v6.4.1",
  1907. "symfony/service-contracts": "~v3.4.0",
  1908. "symfony/string": "~v6.4.0",
  1909. "symfony/translation-contracts": "~v3.4.0",
  1910. "symfony/validator": "~v6.4.0",
  1911. "symfony/var-dumper": "~v6.4.0",
  1912. "symfony/var-exporter": "~v6.4.1",
  1913. "symfony/yaml": "~v6.4.0",
  1914. "twig/twig": "~v3.8.0"
  1915. },
  1916. "conflict": {
  1917. "webflo/drupal-core-strict": "*"
  1918. },
  1919. "type": "metapackage",
  1920. "notification-url": "https://packagist.org/downloads/",
  1921. "license": [
  1922. "GPL-2.0-or-later"
  1923. ],
  1924. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  1925. "support": {
  1926. "source": "https://github.com/drupal/core-recommended/tree/10.2.3"
  1927. },
  1928. "time": "2024-02-07T22:44:48+00:00"
  1929. },
  1930. {
  1931. "name": "drupal/ctools",
  1932. "version": "4.0.4",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://git.drupalcode.org/project/ctools.git",
  1936. "reference": "4.0.4"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip",
  1941. "reference": "4.0.4",
  1942. "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70"
  1943. },
  1944. "require": {
  1945. "drupal/core": "^9.3 || ^10"
  1946. },
  1947. "type": "drupal-module",
  1948. "extra": {
  1949. "drupal": {
  1950. "version": "4.0.4",
  1951. "datestamp": "1684299878",
  1952. "security-coverage": {
  1953. "status": "covered",
  1954. "message": "Covered by Drupal's security advisory policy"
  1955. }
  1956. },
  1957. "branch-alias": {
  1958. "dev-8.x-3.x": "3.x-dev"
  1959. }
  1960. },
  1961. "notification-url": "https://packages.drupal.org/8/downloads",
  1962. "license": [
  1963. "GPL-2.0-or-later"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "Kris Vanderwater (EclipseGc)",
  1968. "homepage": "https://www.drupal.org/u/eclipsegc",
  1969. "role": "Maintainer"
  1970. },
  1971. {
  1972. "name": "Jakob Perry (japerry)",
  1973. "homepage": "https://www.drupal.org/u/japerry",
  1974. "role": "Maintainer"
  1975. },
  1976. {
  1977. "name": "Tim Plunkett (tim.plunkett)",
  1978. "homepage": "https://www.drupal.org/u/timplunkett",
  1979. "role": "Maintainer"
  1980. },
  1981. {
  1982. "name": "James Gilliland (neclimdul)",
  1983. "homepage": "https://www.drupal.org/u/neclimdul",
  1984. "role": "Maintainer"
  1985. },
  1986. {
  1987. "name": "Daniel Wehner (dawehner)",
  1988. "homepage": "https://www.drupal.org/u/dawehner",
  1989. "role": "Maintainer"
  1990. },
  1991. {
  1992. "name": "joelpittet",
  1993. "homepage": "https://www.drupal.org/user/160302"
  1994. },
  1995. {
  1996. "name": "merlinofchaos",
  1997. "homepage": "https://www.drupal.org/user/26979"
  1998. },
  1999. {
  2000. "name": "neclimdul",
  2001. "homepage": "https://www.drupal.org/user/48673"
  2002. },
  2003. {
  2004. "name": "sdboyer",
  2005. "homepage": "https://www.drupal.org/user/146719"
  2006. },
  2007. {
  2008. "name": "sun",
  2009. "homepage": "https://www.drupal.org/user/54136"
  2010. },
  2011. {
  2012. "name": "tim.plunkett",
  2013. "homepage": "https://www.drupal.org/user/241634"
  2014. }
  2015. ],
  2016. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2017. "homepage": "https://www.drupal.org/project/ctools",
  2018. "support": {
  2019. "source": "https://git.drupalcode.org/project/ctools",
  2020. "issues": "https://www.drupal.org/project/issues/ctools"
  2021. }
  2022. },
  2023. {
  2024. "name": "drupal/entity_browser",
  2025. "version": "2.10.0",
  2026. "source": {
  2027. "type": "git",
  2028. "url": "https://git.drupalcode.org/project/entity_browser.git",
  2029. "reference": "8.x-2.10"
  2030. },
  2031. "dist": {
  2032. "type": "zip",
  2033. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.10.zip",
  2034. "reference": "8.x-2.10",
  2035. "shasum": "d52548ea66dc56108c2e211aeaff6e1cc0522e85"
  2036. },
  2037. "require": {
  2038. "drupal/core": "^9.5 || ^10"
  2039. },
  2040. "conflict": {
  2041. "drupal/media_entity": "1.*"
  2042. },
  2043. "require-dev": {
  2044. "drupal/ckeditor": "^1.0",
  2045. "drupal/embed": "^1.0",
  2046. "drupal/entity_embed": "^1.0",
  2047. "drupal/entity_reference_revisions": "^1.0",
  2048. "drupal/entityqueue": "^1.0",
  2049. "drupal/inline_entity_form": "^1.0@rc",
  2050. "drupal/paragraphs": "^1.0",
  2051. "drupal/token": "^1.0"
  2052. },
  2053. "type": "drupal-module",
  2054. "extra": {
  2055. "drupal": {
  2056. "version": "8.x-2.10",
  2057. "datestamp": "1702325310",
  2058. "security-coverage": {
  2059. "status": "covered",
  2060. "message": "Covered by Drupal's security advisory policy"
  2061. }
  2062. }
  2063. },
  2064. "notification-url": "https://packages.drupal.org/8/downloads",
  2065. "license": [
  2066. "GPL-2.0+"
  2067. ],
  2068. "authors": [
  2069. {
  2070. "name": "Janez Urevc",
  2071. "homepage": "https://github.com/slashrsm",
  2072. "role": "Maintainer"
  2073. },
  2074. {
  2075. "name": "Primoz Hmeljak",
  2076. "homepage": "https://github.com/primsi",
  2077. "role": "Maintainer"
  2078. },
  2079. {
  2080. "name": "See other contributors",
  2081. "homepage": "https://www.drupal.org/node/1943336/committers",
  2082. "role": "contributor"
  2083. },
  2084. {
  2085. "name": "Drupal Media Team",
  2086. "homepage": "https://www.drupal.org/user/3260690"
  2087. },
  2088. {
  2089. "name": "marcingy",
  2090. "homepage": "https://www.drupal.org/user/77320"
  2091. },
  2092. {
  2093. "name": "oknate",
  2094. "homepage": "https://www.drupal.org/user/471638"
  2095. },
  2096. {
  2097. "name": "Primsi",
  2098. "homepage": "https://www.drupal.org/user/282629"
  2099. },
  2100. {
  2101. "name": "samuel.mortenson",
  2102. "homepage": "https://www.drupal.org/user/2582268"
  2103. },
  2104. {
  2105. "name": "slashrsm",
  2106. "homepage": "https://www.drupal.org/user/744628"
  2107. }
  2108. ],
  2109. "description": "Entity browsing and selecting component.",
  2110. "homepage": "https://drupal.org/project/entity_browser",
  2111. "support": {
  2112. "source": "https://git.drupalcode.org/project/entity_browser",
  2113. "issues": "https://www.drupal.org/project/issues/entity_browser",
  2114. "irc": "irc://irc.freenode.org/drupal-contribute"
  2115. }
  2116. },
  2117. {
  2118. "name": "drupal/entity_browser_enhanced",
  2119. "version": "2.0.0",
  2120. "source": {
  2121. "type": "git",
  2122. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  2123. "reference": "2.0.0"
  2124. },
  2125. "dist": {
  2126. "type": "zip",
  2127. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  2128. "reference": "2.0.0",
  2129. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  2130. },
  2131. "require": {
  2132. "drupal/core": "^9 || ^10",
  2133. "drupal/entity_browser": "~2.0"
  2134. },
  2135. "type": "drupal-module",
  2136. "extra": {
  2137. "drupal": {
  2138. "version": "2.0.0",
  2139. "datestamp": "1697211243",
  2140. "security-coverage": {
  2141. "status": "covered",
  2142. "message": "Covered by Drupal's security advisory policy"
  2143. }
  2144. }
  2145. },
  2146. "notification-url": "https://packages.drupal.org/8/downloads",
  2147. "license": [
  2148. "GPL-2.0-or-later"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Vardot",
  2153. "homepage": "https://www.drupal.org/vardot",
  2154. "role": "Maintainer"
  2155. },
  2156. {
  2157. "name": "Rajab Natshah",
  2158. "homepage": "https://www.drupal.org/user/1414312"
  2159. }
  2160. ],
  2161. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  2162. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  2163. "support": {
  2164. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  2165. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  2166. }
  2167. },
  2168. {
  2169. "name": "drupal/entity_reference_revisions",
  2170. "version": "1.11.0",
  2171. "source": {
  2172. "type": "git",
  2173. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  2174. "reference": "8.x-1.11"
  2175. },
  2176. "dist": {
  2177. "type": "zip",
  2178. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.11.zip",
  2179. "reference": "8.x-1.11",
  2180. "shasum": "de21cbb0d8a0344dc3496addcad4ed536747cec5"
  2181. },
  2182. "require": {
  2183. "drupal/core": "^9 || ^10"
  2184. },
  2185. "require-dev": {
  2186. "drupal/diff": "1.x-dev"
  2187. },
  2188. "type": "drupal-module",
  2189. "extra": {
  2190. "drupal": {
  2191. "version": "8.x-1.11",
  2192. "datestamp": "1705140721",
  2193. "security-coverage": {
  2194. "status": "covered",
  2195. "message": "Covered by Drupal's security advisory policy"
  2196. }
  2197. },
  2198. "drush": {
  2199. "services": {
  2200. "drush.services.yml": "^9 || ^10 || ^11"
  2201. }
  2202. }
  2203. },
  2204. "notification-url": "https://packages.drupal.org/8/downloads",
  2205. "license": [
  2206. "GPL-2.0-or-later"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "Berdir",
  2211. "homepage": "https://www.drupal.org/user/214652"
  2212. },
  2213. {
  2214. "name": "Frans",
  2215. "homepage": "https://www.drupal.org/user/514222"
  2216. },
  2217. {
  2218. "name": "jeroen.b",
  2219. "homepage": "https://www.drupal.org/user/1853532"
  2220. },
  2221. {
  2222. "name": "miro_dietiker",
  2223. "homepage": "https://www.drupal.org/user/227761"
  2224. }
  2225. ],
  2226. "description": "Entity Reference Revisions",
  2227. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  2228. "support": {
  2229. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  2230. }
  2231. },
  2232. {
  2233. "name": "drupal/field_group",
  2234. "version": "3.4.0",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://git.drupalcode.org/project/field_group.git",
  2238. "reference": "8.x-3.4"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip",
  2243. "reference": "8.x-3.4",
  2244. "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94"
  2245. },
  2246. "require": {
  2247. "drupal/core": "^9.2 || ^10"
  2248. },
  2249. "type": "drupal-module",
  2250. "extra": {
  2251. "drupal": {
  2252. "version": "8.x-3.4",
  2253. "datestamp": "1667241979",
  2254. "security-coverage": {
  2255. "status": "covered",
  2256. "message": "Covered by Drupal's security advisory policy"
  2257. }
  2258. }
  2259. },
  2260. "notification-url": "https://packages.drupal.org/8/downloads",
  2261. "license": [
  2262. "GPL-2.0-or-later"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Anybody",
  2267. "homepage": "https://www.drupal.org/user/291091"
  2268. },
  2269. {
  2270. "name": "Hydra",
  2271. "homepage": "https://www.drupal.org/user/647364"
  2272. },
  2273. {
  2274. "name": "jyve",
  2275. "homepage": "https://www.drupal.org/user/591438"
  2276. },
  2277. {
  2278. "name": "nils.destoop",
  2279. "homepage": "https://www.drupal.org/user/361625"
  2280. },
  2281. {
  2282. "name": "Stalski",
  2283. "homepage": "https://www.drupal.org/user/322618"
  2284. },
  2285. {
  2286. "name": "swentel",
  2287. "homepage": "https://www.drupal.org/user/107403"
  2288. }
  2289. ],
  2290. "description": "Provides the field_group module.",
  2291. "homepage": "https://www.drupal.org/project/field_group",
  2292. "support": {
  2293. "source": "https://git.drupalcode.org/project/field_group",
  2294. "issues": "https://www.drupal.org/project/issues/field_group"
  2295. }
  2296. },
  2297. {
  2298. "name": "drupal/field_pager",
  2299. "version": "2.0.0-beta2",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://git.drupalcode.org/project/field_pager.git",
  2303. "reference": "2.0.0-beta2"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://ftp.drupal.org/files/projects/field_pager-2.0.0-beta2.zip",
  2308. "reference": "2.0.0-beta2",
  2309. "shasum": "33a7589e908c5b86b928e8e0e4bb562d7337dc15"
  2310. },
  2311. "require": {
  2312. "drupal/core": "^8 || ^9 || ^10"
  2313. },
  2314. "type": "drupal-module",
  2315. "extra": {
  2316. "drupal": {
  2317. "version": "2.0.0-beta2",
  2318. "datestamp": "1678960516",
  2319. "security-coverage": {
  2320. "status": "not-covered",
  2321. "message": "Project has not opted into security advisory coverage!"
  2322. }
  2323. }
  2324. },
  2325. "notification-url": "https://packages.drupal.org/8/downloads",
  2326. "license": [
  2327. "GPL-2.0-or-later"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "NuWans",
  2332. "homepage": "https://www.drupal.org/user/3250178"
  2333. }
  2334. ],
  2335. "description": "Field Pager (field_pager) To use fields as multiple pages",
  2336. "homepage": "https://www.drupal.org/project/field_pager",
  2337. "support": {
  2338. "source": "https://git.drupalcode.org/project/field_pager"
  2339. }
  2340. },
  2341. {
  2342. "name": "drupal/field_token_value",
  2343. "version": "3.0.2",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://git.drupalcode.org/project/field_token_value.git",
  2347. "reference": "3.0.2"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://ftp.drupal.org/files/projects/field_token_value-3.0.2.zip",
  2352. "reference": "3.0.2",
  2353. "shasum": "91ad476dd57a95086fa51fbc8fa0eb6a1b99f1ad"
  2354. },
  2355. "require": {
  2356. "drupal/core": "^8 || ^9 || ^10",
  2357. "drupal/token": "*"
  2358. },
  2359. "type": "drupal-module",
  2360. "extra": {
  2361. "drupal": {
  2362. "version": "3.0.2",
  2363. "datestamp": "1696584829",
  2364. "security-coverage": {
  2365. "status": "covered",
  2366. "message": "Covered by Drupal's security advisory policy"
  2367. }
  2368. }
  2369. },
  2370. "notification-url": "https://packages.drupal.org/8/downloads",
  2371. "license": [
  2372. "GPL-2.0-or-later"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "haydent",
  2377. "homepage": "https://www.drupal.org/user/2763191"
  2378. }
  2379. ],
  2380. "description": "Provides a field allowing the value to be set using a string containing tokens.",
  2381. "homepage": "https://www.drupal.org/project/field_token_value",
  2382. "support": {
  2383. "source": "https://git.drupalcode.org/project/field_token_value"
  2384. }
  2385. },
  2386. {
  2387. "name": "drupal/geolocation",
  2388. "version": "3.12.0",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://git.drupalcode.org/project/geolocation.git",
  2392. "reference": "8.x-3.12"
  2393. },
  2394. "dist": {
  2395. "type": "zip",
  2396. "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip",
  2397. "reference": "8.x-3.12",
  2398. "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a"
  2399. },
  2400. "require": {
  2401. "drupal/core": "^9.3 || ^10",
  2402. "drupal/jquery_ui": "*",
  2403. "drupal/jquery_ui_autocomplete": "^2.0",
  2404. "php": "^7.3 || ^8.0"
  2405. },
  2406. "require-dev": {
  2407. "drupal/address": "*",
  2408. "drupal/geofield": "*",
  2409. "drupal/geolocation_demo": "*",
  2410. "drupal/geolocation_geometry": "*",
  2411. "drupal/geolocation_geometry_data": "*",
  2412. "drupal/geolocation_google_maps": "*",
  2413. "drupal/geolocation_google_maps_demo": "*",
  2414. "drupal/geolocation_google_static_maps": "*",
  2415. "drupal/geolocation_leaflet": "*",
  2416. "drupal/geolocation_leaflet_demo": "*",
  2417. "drupal/search_api": "*",
  2418. "drupal/search_api_location": "*",
  2419. "drupal/search_api_location_views": "*"
  2420. },
  2421. "type": "drupal-module",
  2422. "extra": {
  2423. "drupal": {
  2424. "version": "8.x-3.12",
  2425. "datestamp": "1673282362",
  2426. "security-coverage": {
  2427. "status": "covered",
  2428. "message": "Covered by Drupal's security advisory policy"
  2429. }
  2430. }
  2431. },
  2432. "notification-url": "https://packages.drupal.org/8/downloads",
  2433. "license": [
  2434. "GPL-2.0-or-later"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "derjochenmeyer",
  2439. "homepage": "https://www.drupal.org/u/derjochenmeyer"
  2440. },
  2441. {
  2442. "name": "cadamski",
  2443. "homepage": "https://www.drupal.org/u/cadamski"
  2444. }
  2445. ],
  2446. "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).",
  2447. "homepage": "https://www.drupal.org/project/geolocation",
  2448. "support": {
  2449. "source": "https://git.drupal.org/project/geolocation.git",
  2450. "issues": "https://www.drupal.org/project/issues/geolocation"
  2451. }
  2452. },
  2453. {
  2454. "name": "drupal/jquery_ui",
  2455. "version": "1.6.0",
  2456. "source": {
  2457. "type": "git",
  2458. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  2459. "reference": "8.x-1.6"
  2460. },
  2461. "dist": {
  2462. "type": "zip",
  2463. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  2464. "reference": "8.x-1.6",
  2465. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  2466. },
  2467. "require": {
  2468. "drupal/core": "^9.2 || ^10"
  2469. },
  2470. "type": "drupal-module",
  2471. "extra": {
  2472. "drupal": {
  2473. "version": "8.x-1.6",
  2474. "datestamp": "1668521197",
  2475. "security-coverage": {
  2476. "status": "covered",
  2477. "message": "Covered by Drupal's security advisory policy"
  2478. }
  2479. }
  2480. },
  2481. "notification-url": "https://packages.drupal.org/8/downloads",
  2482. "license": [
  2483. "GPL-2.0-or-later"
  2484. ],
  2485. "authors": [
  2486. {
  2487. "name": "bnjmnm",
  2488. "homepage": "https://www.drupal.org/user/2369194"
  2489. },
  2490. {
  2491. "name": "jjeff",
  2492. "homepage": "https://www.drupal.org/user/17190"
  2493. },
  2494. {
  2495. "name": "lauriii",
  2496. "homepage": "https://www.drupal.org/user/1078742"
  2497. },
  2498. {
  2499. "name": "litwol",
  2500. "homepage": "https://www.drupal.org/user/78134"
  2501. },
  2502. {
  2503. "name": "mfb",
  2504. "homepage": "https://www.drupal.org/user/12302"
  2505. },
  2506. {
  2507. "name": "mfer",
  2508. "homepage": "https://www.drupal.org/user/25701"
  2509. },
  2510. {
  2511. "name": "mikelutz",
  2512. "homepage": "https://www.drupal.org/user/2972409"
  2513. },
  2514. {
  2515. "name": "nod_",
  2516. "homepage": "https://www.drupal.org/user/598310"
  2517. },
  2518. {
  2519. "name": "phenaproxima",
  2520. "homepage": "https://www.drupal.org/user/205645"
  2521. },
  2522. {
  2523. "name": "RobLoach",
  2524. "homepage": "https://www.drupal.org/user/61114"
  2525. },
  2526. {
  2527. "name": "sun",
  2528. "homepage": "https://www.drupal.org/user/54136"
  2529. },
  2530. {
  2531. "name": "webchick",
  2532. "homepage": "https://www.drupal.org/user/24967"
  2533. },
  2534. {
  2535. "name": "Wim Leers",
  2536. "homepage": "https://www.drupal.org/user/99777"
  2537. },
  2538. {
  2539. "name": "zrpnr",
  2540. "homepage": "https://www.drupal.org/user/1448368"
  2541. }
  2542. ],
  2543. "description": "Provides jQuery UI library.",
  2544. "homepage": "https://www.drupal.org/project/jquery_ui",
  2545. "support": {
  2546. "source": "https://git.drupalcode.org/project/jquery_ui"
  2547. }
  2548. },
  2549. {
  2550. "name": "drupal/jquery_ui_autocomplete",
  2551. "version": "2.0.0",
  2552. "source": {
  2553. "type": "git",
  2554. "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git",
  2555. "reference": "2.0.0"
  2556. },
  2557. "dist": {
  2558. "type": "zip",
  2559. "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip",
  2560. "reference": "2.0.0",
  2561. "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7"
  2562. },
  2563. "require": {
  2564. "drupal/core": "^9.2 || ^10",
  2565. "drupal/jquery_ui": "^1.6",
  2566. "drupal/jquery_ui_menu": "^2"
  2567. },
  2568. "type": "drupal-module",
  2569. "extra": {
  2570. "drupal": {
  2571. "version": "2.0.0",
  2572. "datestamp": "1670871461",
  2573. "security-coverage": {
  2574. "status": "covered",
  2575. "message": "Covered by Drupal's security advisory policy"
  2576. }
  2577. }
  2578. },
  2579. "notification-url": "https://packages.drupal.org/8/downloads",
  2580. "license": [
  2581. "GPL-2.0-or-later"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "bnjmnm",
  2586. "homepage": "https://www.drupal.org/user/2369194"
  2587. },
  2588. {
  2589. "name": "lauriii",
  2590. "homepage": "https://www.drupal.org/user/1078742"
  2591. },
  2592. {
  2593. "name": "nod_",
  2594. "homepage": "https://www.drupal.org/user/598310"
  2595. },
  2596. {
  2597. "name": "phenaproxima",
  2598. "homepage": "https://www.drupal.org/user/205645"
  2599. },
  2600. {
  2601. "name": "Wim Leers",
  2602. "homepage": "https://www.drupal.org/user/99777"
  2603. },
  2604. {
  2605. "name": "zrpnr",
  2606. "homepage": "https://www.drupal.org/user/1448368"
  2607. }
  2608. ],
  2609. "description": "Provides jQuery UI Autocomplete library.",
  2610. "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete",
  2611. "support": {
  2612. "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete"
  2613. }
  2614. },
  2615. {
  2616. "name": "drupal/jquery_ui_draggable",
  2617. "version": "2.0.0",
  2618. "source": {
  2619. "type": "git",
  2620. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  2621. "reference": "2.0.0"
  2622. },
  2623. "dist": {
  2624. "type": "zip",
  2625. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  2626. "reference": "2.0.0",
  2627. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  2628. },
  2629. "require": {
  2630. "drupal/core": "^9.2 || ^10",
  2631. "drupal/jquery_ui": "^1.6"
  2632. },
  2633. "type": "drupal-module",
  2634. "extra": {
  2635. "drupal": {
  2636. "version": "2.0.0",
  2637. "datestamp": "1670871516",
  2638. "security-coverage": {
  2639. "status": "covered",
  2640. "message": "Covered by Drupal's security advisory policy"
  2641. }
  2642. }
  2643. },
  2644. "notification-url": "https://packages.drupal.org/8/downloads",
  2645. "license": [
  2646. "GPL-2.0-or-later"
  2647. ],
  2648. "authors": [
  2649. {
  2650. "name": "bnjmnm",
  2651. "homepage": "https://www.drupal.org/user/2369194"
  2652. },
  2653. {
  2654. "name": "lauriii",
  2655. "homepage": "https://www.drupal.org/user/1078742"
  2656. },
  2657. {
  2658. "name": "zrpnr",
  2659. "homepage": "https://www.drupal.org/user/1448368"
  2660. }
  2661. ],
  2662. "description": "Provides jQuery UI Draggable library.",
  2663. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  2664. "support": {
  2665. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  2666. }
  2667. },
  2668. {
  2669. "name": "drupal/jquery_ui_droppable",
  2670. "version": "2.0.0",
  2671. "source": {
  2672. "type": "git",
  2673. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  2674. "reference": "2.0.0"
  2675. },
  2676. "dist": {
  2677. "type": "zip",
  2678. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.0.0.zip",
  2679. "reference": "2.0.0",
  2680. "shasum": "758f52e68b04e74f1a96240b22090fcae1945898"
  2681. },
  2682. "require": {
  2683. "drupal/core": "^9.2 || ^10",
  2684. "drupal/jquery_ui": "^1.6",
  2685. "drupal/jquery_ui_draggable": "^2"
  2686. },
  2687. "type": "drupal-module",
  2688. "extra": {
  2689. "drupal": {
  2690. "version": "2.0.0",
  2691. "datestamp": "1670871520",
  2692. "security-coverage": {
  2693. "status": "covered",
  2694. "message": "Covered by Drupal's security advisory policy"
  2695. }
  2696. }
  2697. },
  2698. "notification-url": "https://packages.drupal.org/8/downloads",
  2699. "license": [
  2700. "GPL-2.0-or-later"
  2701. ],
  2702. "authors": [
  2703. {
  2704. "name": "bnjmnm",
  2705. "homepage": "https://www.drupal.org/user/2369194"
  2706. },
  2707. {
  2708. "name": "lauriii",
  2709. "homepage": "https://www.drupal.org/user/1078742"
  2710. },
  2711. {
  2712. "name": "zrpnr",
  2713. "homepage": "https://www.drupal.org/user/1448368"
  2714. }
  2715. ],
  2716. "description": "Provides jQuery UI Droppable library.",
  2717. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  2718. "support": {
  2719. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  2720. }
  2721. },
  2722. {
  2723. "name": "drupal/jquery_ui_menu",
  2724. "version": "2.0.0",
  2725. "source": {
  2726. "type": "git",
  2727. "url": "https://git.drupalcode.org/project/jquery_ui_menu.git",
  2728. "reference": "2.0.0"
  2729. },
  2730. "dist": {
  2731. "type": "zip",
  2732. "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip",
  2733. "reference": "2.0.0",
  2734. "shasum": "5e1b56bf457669c7779a81784f49da63e3956854"
  2735. },
  2736. "require": {
  2737. "drupal/core": "^9.2 || ^10",
  2738. "drupal/jquery_ui": "^1.6"
  2739. },
  2740. "type": "drupal-module",
  2741. "extra": {
  2742. "drupal": {
  2743. "version": "2.0.0",
  2744. "datestamp": "1670871546",
  2745. "security-coverage": {
  2746. "status": "covered",
  2747. "message": "Covered by Drupal's security advisory policy"
  2748. }
  2749. }
  2750. },
  2751. "notification-url": "https://packages.drupal.org/8/downloads",
  2752. "license": [
  2753. "GPL-2.0-or-later"
  2754. ],
  2755. "authors": [
  2756. {
  2757. "name": "bnjmnm",
  2758. "homepage": "https://www.drupal.org/user/2369194"
  2759. },
  2760. {
  2761. "name": "lauriii",
  2762. "homepage": "https://www.drupal.org/user/1078742"
  2763. },
  2764. {
  2765. "name": "nod_",
  2766. "homepage": "https://www.drupal.org/user/598310"
  2767. },
  2768. {
  2769. "name": "phenaproxima",
  2770. "homepage": "https://www.drupal.org/user/205645"
  2771. },
  2772. {
  2773. "name": "Wim Leers",
  2774. "homepage": "https://www.drupal.org/user/99777"
  2775. },
  2776. {
  2777. "name": "zrpnr",
  2778. "homepage": "https://www.drupal.org/user/1448368"
  2779. }
  2780. ],
  2781. "description": "Provides jQuery UI Menu library.",
  2782. "homepage": "https://www.drupal.org/project/jquery_ui_menu",
  2783. "support": {
  2784. "source": "https://git.drupalcode.org/project/jquery_ui_menu"
  2785. }
  2786. },
  2787. {
  2788. "name": "drupal/linkit",
  2789. "version": "6.1.2",
  2790. "source": {
  2791. "type": "git",
  2792. "url": "https://git.drupalcode.org/project/linkit.git",
  2793. "reference": "6.1.2"
  2794. },
  2795. "dist": {
  2796. "type": "zip",
  2797. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  2798. "reference": "6.1.2",
  2799. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  2800. },
  2801. "require": {
  2802. "drupal/core": "^10.1"
  2803. },
  2804. "require-dev": {
  2805. "drupal/ckeditor": "*",
  2806. "drupal/imce": "*"
  2807. },
  2808. "type": "drupal-module",
  2809. "extra": {
  2810. "drupal": {
  2811. "version": "6.1.2",
  2812. "datestamp": "1696865478",
  2813. "security-coverage": {
  2814. "status": "covered",
  2815. "message": "Covered by Drupal's security advisory policy"
  2816. }
  2817. }
  2818. },
  2819. "notification-url": "https://packages.drupal.org/8/downloads",
  2820. "license": [
  2821. "GPL-2.0-or-later"
  2822. ],
  2823. "authors": [
  2824. {
  2825. "name": "Emil Stjerneman",
  2826. "homepage": "https://stjerneman.com",
  2827. "email": "emil@stjerneman.com",
  2828. "role": "Maintainer"
  2829. },
  2830. {
  2831. "name": "johnwebdev",
  2832. "homepage": "https://www.drupal.org/user/3331569"
  2833. },
  2834. {
  2835. "name": "mark_fullmer",
  2836. "homepage": "https://www.drupal.org/user/2612816"
  2837. }
  2838. ],
  2839. "description": "Linkit - Enriched linking experience",
  2840. "homepage": "http://drupal.org/project/linkit",
  2841. "support": {
  2842. "source": "http://cgit.drupalcode.org/linkit",
  2843. "issues": "http://drupal.org/project/linkit"
  2844. }
  2845. },
  2846. {
  2847. "name": "drupal/masonry",
  2848. "version": "4.0.0",
  2849. "source": {
  2850. "type": "git",
  2851. "url": "https://git.drupalcode.org/project/masonry.git",
  2852. "reference": "4.0.0"
  2853. },
  2854. "dist": {
  2855. "type": "zip",
  2856. "url": "https://ftp.drupal.org/files/projects/masonry-4.0.0.zip",
  2857. "reference": "4.0.0",
  2858. "shasum": "5062350d5f68d84077a393ce5b8cdc11ff66d0cd"
  2859. },
  2860. "require": {
  2861. "drupal/core": "^8 || ^9 || ^10"
  2862. },
  2863. "type": "drupal-module",
  2864. "extra": {
  2865. "drupal": {
  2866. "version": "4.0.0",
  2867. "datestamp": "1690017720",
  2868. "security-coverage": {
  2869. "status": "covered",
  2870. "message": "Covered by Drupal's security advisory policy"
  2871. }
  2872. }
  2873. },
  2874. "notification-url": "https://packages.drupal.org/8/downloads",
  2875. "license": [
  2876. "GPL-2.0-or-later"
  2877. ],
  2878. "authors": [
  2879. {
  2880. "name": "Dominique Clause (Dom.)",
  2881. "homepage": "https://www.drupal.org/u/dom",
  2882. "role": "Maintainer"
  2883. },
  2884. {
  2885. "name": "Dom.",
  2886. "homepage": "https://www.drupal.org/user/801982"
  2887. }
  2888. ],
  2889. "description": "Masonry integrates with Masonry library",
  2890. "homepage": "https://www.drupal.org/project/masonry",
  2891. "support": {
  2892. "source": "https://git.drupalcode.org/project/masonry",
  2893. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  2894. }
  2895. },
  2896. {
  2897. "name": "drupal/matomo",
  2898. "version": "1.23.0",
  2899. "source": {
  2900. "type": "git",
  2901. "url": "https://git.drupalcode.org/project/matomo.git",
  2902. "reference": "8.x-1.23"
  2903. },
  2904. "dist": {
  2905. "type": "zip",
  2906. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  2907. "reference": "8.x-1.23",
  2908. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  2909. },
  2910. "require": {
  2911. "drupal/core": "^9.0 || ^10"
  2912. },
  2913. "conflict": {
  2914. "drupal/csp": "<1.12"
  2915. },
  2916. "require-dev": {
  2917. "drupal/csp": "~1.12",
  2918. "drupal/php": "~1.1",
  2919. "drupal/token": "~1.9"
  2920. },
  2921. "type": "drupal-module",
  2922. "extra": {
  2923. "drupal": {
  2924. "version": "8.x-1.23",
  2925. "datestamp": "1700936102",
  2926. "security-coverage": {
  2927. "status": "covered",
  2928. "message": "Covered by Drupal's security advisory policy"
  2929. }
  2930. }
  2931. },
  2932. "notification-url": "https://packages.drupal.org/8/downloads",
  2933. "license": [
  2934. "GPL-2.0-or-later"
  2935. ],
  2936. "authors": [
  2937. {
  2938. "name": "C-Logemann",
  2939. "homepage": "https://www.drupal.org/user/218368"
  2940. },
  2941. {
  2942. "name": "Grimreaper",
  2943. "homepage": "https://www.drupal.org/user/2388214"
  2944. },
  2945. {
  2946. "name": "hass",
  2947. "homepage": "https://www.drupal.org/user/85918"
  2948. },
  2949. {
  2950. "name": "shelane",
  2951. "homepage": "https://www.drupal.org/user/2674989"
  2952. }
  2953. ],
  2954. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  2955. "homepage": "https://www.drupal.org/project/matomo",
  2956. "support": {
  2957. "source": "https://git.drupalcode.org/project/matomo"
  2958. }
  2959. },
  2960. {
  2961. "name": "drupal/mediteran",
  2962. "version": "1.32.0",
  2963. "source": {
  2964. "type": "git",
  2965. "url": "https://git.drupalcode.org/project/mediteran.git",
  2966. "reference": "8.x-1.32"
  2967. },
  2968. "dist": {
  2969. "type": "zip",
  2970. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.32.zip",
  2971. "reference": "8.x-1.32",
  2972. "shasum": "85e0a94bf5f98626e1eb2c88f6b9467c1fdaf9ec"
  2973. },
  2974. "require": {
  2975. "drupal/core": "^9.2 || ^10"
  2976. },
  2977. "type": "drupal-theme",
  2978. "extra": {
  2979. "drupal": {
  2980. "version": "8.x-1.32",
  2981. "datestamp": "1699979844",
  2982. "security-coverage": {
  2983. "status": "covered",
  2984. "message": "Covered by Drupal's security advisory policy"
  2985. }
  2986. }
  2987. },
  2988. "notification-url": "https://packages.drupal.org/8/downloads",
  2989. "license": [
  2990. "GPL-2.0-or-later"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "bataboza",
  2995. "homepage": "https://www.drupal.org/user/3581173"
  2996. },
  2997. {
  2998. "name": "doxigo",
  2999. "homepage": "https://www.drupal.org/user/1331334"
  3000. },
  3001. {
  3002. "name": "dqd",
  3003. "homepage": "https://www.drupal.org/user/1001934"
  3004. },
  3005. {
  3006. "name": "Hosisam",
  3007. "homepage": "https://www.drupal.org/user/3449435"
  3008. },
  3009. {
  3010. "name": "Nitin shrivastava",
  3011. "homepage": "https://www.drupal.org/user/3725211"
  3012. },
  3013. {
  3014. "name": "paulrad",
  3015. "homepage": "https://www.drupal.org/user/3722439"
  3016. },
  3017. {
  3018. "name": "szeidler",
  3019. "homepage": "https://www.drupal.org/user/767652"
  3020. }
  3021. ],
  3022. "description": "Mediteran is a clean and simple administration theme designed by <a href=\"https://drupalation.com\" target=\"_blank\">Drupalation</a> and supported by <a href=\"https://ramsalt.com\" target=\"_blank\">Ramsalt</a>.",
  3023. "homepage": "https://www.drupal.org/project/mediteran",
  3024. "support": {
  3025. "source": "https://git.drupalcode.org/project/mediteran"
  3026. }
  3027. },
  3028. {
  3029. "name": "drupal/metatag",
  3030. "version": "1.26.0",
  3031. "source": {
  3032. "type": "git",
  3033. "url": "https://git.drupalcode.org/project/metatag.git",
  3034. "reference": "8.x-1.26"
  3035. },
  3036. "dist": {
  3037. "type": "zip",
  3038. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip",
  3039. "reference": "8.x-1.26",
  3040. "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8"
  3041. },
  3042. "require": {
  3043. "drupal/core": "^9.3 || ^10",
  3044. "drupal/token": "^1.0"
  3045. },
  3046. "require-dev": {
  3047. "drupal/devel": "^4.0 || ^5.0",
  3048. "drupal/hal": "^9 || ^1 || ^2",
  3049. "drupal/metatag_dc": "*",
  3050. "drupal/metatag_open_graph": "*",
  3051. "drupal/page_manager": "^4.0",
  3052. "drupal/panelizer": "^4.0",
  3053. "drupal/redirect": "^1.0",
  3054. "drupal/webprofiler": "^9 || ^10",
  3055. "mpyw/phpunit-patch-serializable-comparison": "*"
  3056. },
  3057. "type": "drupal-module",
  3058. "extra": {
  3059. "drupal": {
  3060. "version": "8.x-1.26",
  3061. "datestamp": "1687856123",
  3062. "security-coverage": {
  3063. "status": "covered",
  3064. "message": "Covered by Drupal's security advisory policy"
  3065. }
  3066. }
  3067. },
  3068. "notification-url": "https://packages.drupal.org/8/downloads",
  3069. "license": [
  3070. "GPL-2.0-or-later"
  3071. ],
  3072. "authors": [
  3073. {
  3074. "name": "See contributors",
  3075. "homepage": "https://www.drupal.org/node/640498/committers",
  3076. "role": "Developer"
  3077. },
  3078. {
  3079. "name": "Dave Reid",
  3080. "homepage": "https://www.drupal.org/user/53892"
  3081. }
  3082. ],
  3083. "description": "Manage meta tags for all entities.",
  3084. "homepage": "https://www.drupal.org/project/metatag",
  3085. "keywords": [
  3086. "Drupal",
  3087. "seo"
  3088. ],
  3089. "support": {
  3090. "source": "https://git.drupalcode.org/project/metatag",
  3091. "issues": "https://www.drupal.org/project/issues/metatag",
  3092. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3093. }
  3094. },
  3095. {
  3096. "name": "drupal/page_manager",
  3097. "version": "4.0.0-rc2",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://git.drupalcode.org/project/page_manager.git",
  3101. "reference": "8.x-4.0-rc2"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  3106. "reference": "8.x-4.0-rc2",
  3107. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  3108. },
  3109. "require": {
  3110. "drupal/core": "^9.3 || ^10",
  3111. "drupal/ctools": "^3.11 || ^4.0"
  3112. },
  3113. "type": "drupal-module",
  3114. "extra": {
  3115. "drupal": {
  3116. "version": "8.x-4.0-rc2",
  3117. "datestamp": "1671210021",
  3118. "security-coverage": {
  3119. "status": "not-covered",
  3120. "message": "RC releases are not covered by Drupal security advisories."
  3121. }
  3122. },
  3123. "branch-alias": {
  3124. "dev-8.x-4.x": "4.x-dev"
  3125. }
  3126. },
  3127. "notification-url": "https://packages.drupal.org/8/downloads",
  3128. "license": [
  3129. "GPL-2.0-or-later"
  3130. ],
  3131. "authors": [
  3132. {
  3133. "name": "Tim Plunkett",
  3134. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3135. "role": "Maintainer"
  3136. },
  3137. {
  3138. "name": "EclipseGc",
  3139. "homepage": "https://www.drupal.org/user/61203"
  3140. },
  3141. {
  3142. "name": "ivnish",
  3143. "homepage": "https://www.drupal.org/user/3547706"
  3144. },
  3145. {
  3146. "name": "japerry",
  3147. "homepage": "https://www.drupal.org/user/45640"
  3148. },
  3149. {
  3150. "name": "joelpittet",
  3151. "homepage": "https://www.drupal.org/user/160302"
  3152. },
  3153. {
  3154. "name": "manuel.adan",
  3155. "homepage": "https://www.drupal.org/user/516420"
  3156. },
  3157. {
  3158. "name": "phenaproxima",
  3159. "homepage": "https://www.drupal.org/user/205645"
  3160. }
  3161. ],
  3162. "description": "Provides a way to place blocks on a custom page.",
  3163. "homepage": "https://www.drupal.org/project/page_manager",
  3164. "support": {
  3165. "source": "https://git.drupal.org/project/page_manager.git",
  3166. "issues": "https://www.drupal.org/project/issues/page_manager",
  3167. "irc": "irc://irc.freenode.org/drupal-contribute"
  3168. }
  3169. },
  3170. {
  3171. "name": "drupal/panels",
  3172. "version": "dev-4.x",
  3173. "source": {
  3174. "type": "git",
  3175. "url": "https://git.drupalcode.org/project/panels.git",
  3176. "reference": "4dfd6a07adac69525832b94f6745ac3247a6cd92"
  3177. },
  3178. "require": {
  3179. "drupal/core": "^9.2 || ^10",
  3180. "drupal/ctools": "^3.12 || ^4.0",
  3181. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  3182. },
  3183. "require-dev": {
  3184. "drupal/jquery_ui_droppable": "*",
  3185. "drupal/page_manager": "^4"
  3186. },
  3187. "type": "drupal-module",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-4.x": "4.x-dev",
  3191. "dev-8.x-4.x": "4.x-dev"
  3192. },
  3193. "drupal": {
  3194. "version": "8.x-4.7+5-dev",
  3195. "datestamp": "1693457160",
  3196. "security-coverage": {
  3197. "status": "not-covered",
  3198. "message": "Dev releases are not covered by Drupal security advisories."
  3199. }
  3200. }
  3201. },
  3202. "notification-url": "https://packages.drupal.org/8/downloads",
  3203. "license": [
  3204. "GPL-2.0+"
  3205. ],
  3206. "authors": [
  3207. {
  3208. "name": "Jakob Perry",
  3209. "homepage": "https://www.drupal.org/u/japerry"
  3210. },
  3211. {
  3212. "name": "Samuel Mortenson",
  3213. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3214. },
  3215. {
  3216. "name": "See other contributors",
  3217. "homepage": "https://www.drupal.org/node/74958/committers"
  3218. },
  3219. {
  3220. "name": "joelpittet",
  3221. "homepage": "https://www.drupal.org/user/160302"
  3222. },
  3223. {
  3224. "name": "Letharion",
  3225. "homepage": "https://www.drupal.org/user/373603"
  3226. },
  3227. {
  3228. "name": "merlinofchaos",
  3229. "homepage": "https://www.drupal.org/user/26979"
  3230. },
  3231. {
  3232. "name": "neclimdul",
  3233. "homepage": "https://www.drupal.org/user/48673"
  3234. },
  3235. {
  3236. "name": "phenaproxima",
  3237. "homepage": "https://www.drupal.org/user/205645"
  3238. },
  3239. {
  3240. "name": "samuel.mortenson",
  3241. "homepage": "https://www.drupal.org/user/2582268"
  3242. }
  3243. ],
  3244. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3245. "homepage": "https://www.drupal.org/project/panels",
  3246. "support": {
  3247. "source": "http://git.drupal.org/project/panels.git",
  3248. "issues": "https://www.drupal.org/project/issues/panels",
  3249. "irc": "irc://irc.freenode.org/drupal-scotch"
  3250. }
  3251. },
  3252. {
  3253. "name": "drupal/paragraphs",
  3254. "version": "1.17.0",
  3255. "source": {
  3256. "type": "git",
  3257. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3258. "reference": "8.x-1.17"
  3259. },
  3260. "dist": {
  3261. "type": "zip",
  3262. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip",
  3263. "reference": "8.x-1.17",
  3264. "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72"
  3265. },
  3266. "require": {
  3267. "drupal/core": "^9.3 || ^10",
  3268. "drupal/entity_reference_revisions": "~1.3"
  3269. },
  3270. "require-dev": {
  3271. "drupal/block_field": "1.x-dev",
  3272. "drupal/diff": "1.x-dev",
  3273. "drupal/entity_browser": "2.x-dev",
  3274. "drupal/entity_usage": "2.x-dev",
  3275. "drupal/field_group": "3.x-dev",
  3276. "drupal/inline_entity_form": "1.x-dev",
  3277. "drupal/paragraphs-paragraphs_library": "*",
  3278. "drupal/replicate": "1.x-dev",
  3279. "drupal/search_api": "^1",
  3280. "drupal/search_api_db": "*"
  3281. },
  3282. "suggest": {
  3283. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3284. },
  3285. "type": "drupal-module",
  3286. "extra": {
  3287. "drupal": {
  3288. "version": "8.x-1.17",
  3289. "datestamp": "1705234146",
  3290. "security-coverage": {
  3291. "status": "covered",
  3292. "message": "Covered by Drupal's security advisory policy"
  3293. }
  3294. }
  3295. },
  3296. "notification-url": "https://packages.drupal.org/8/downloads",
  3297. "license": [
  3298. "GPL-2.0-or-later"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Berdir",
  3303. "homepage": "https://www.drupal.org/user/214652"
  3304. },
  3305. {
  3306. "name": "Frans",
  3307. "homepage": "https://www.drupal.org/user/514222"
  3308. },
  3309. {
  3310. "name": "jeroen.b",
  3311. "homepage": "https://www.drupal.org/user/1853532"
  3312. },
  3313. {
  3314. "name": "jstoller",
  3315. "homepage": "https://www.drupal.org/user/99012"
  3316. },
  3317. {
  3318. "name": "miro_dietiker",
  3319. "homepage": "https://www.drupal.org/user/227761"
  3320. },
  3321. {
  3322. "name": "Primsi",
  3323. "homepage": "https://www.drupal.org/user/282629"
  3324. }
  3325. ],
  3326. "description": "Enables the creation of Paragraphs entities.",
  3327. "homepage": "https://www.drupal.org/project/paragraphs",
  3328. "support": {
  3329. "source": "https://git.drupalcode.org/project/paragraphs"
  3330. }
  3331. },
  3332. {
  3333. "name": "drupal/pathauto",
  3334. "version": "1.12.0",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://git.drupalcode.org/project/pathauto.git",
  3338. "reference": "8.x-1.12"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  3343. "reference": "8.x-1.12",
  3344. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  3345. },
  3346. "require": {
  3347. "drupal/core": "^9.3 || ^10",
  3348. "drupal/ctools": "*",
  3349. "drupal/token": "*"
  3350. },
  3351. "suggest": {
  3352. "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."
  3353. },
  3354. "type": "drupal-module",
  3355. "extra": {
  3356. "drupal": {
  3357. "version": "8.x-1.12",
  3358. "datestamp": "1696776683",
  3359. "security-coverage": {
  3360. "status": "covered",
  3361. "message": "Covered by Drupal's security advisory policy"
  3362. }
  3363. },
  3364. "drush": {
  3365. "services": {
  3366. "drush.services.yml": "^9 || ^10"
  3367. }
  3368. }
  3369. },
  3370. "notification-url": "https://packages.drupal.org/8/downloads",
  3371. "license": [
  3372. "GPL-2.0-or-later"
  3373. ],
  3374. "authors": [
  3375. {
  3376. "name": "Berdir",
  3377. "homepage": "https://www.drupal.org/user/214652"
  3378. },
  3379. {
  3380. "name": "Dave Reid",
  3381. "homepage": "https://www.drupal.org/user/53892"
  3382. },
  3383. {
  3384. "name": "Freso",
  3385. "homepage": "https://www.drupal.org/user/27504"
  3386. },
  3387. {
  3388. "name": "greggles",
  3389. "homepage": "https://www.drupal.org/user/36762"
  3390. }
  3391. ],
  3392. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  3393. "homepage": "https://www.drupal.org/project/pathauto",
  3394. "support": {
  3395. "source": "https://cgit.drupalcode.org/pathauto",
  3396. "issues": "https://www.drupal.org/project/issues/pathauto",
  3397. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  3398. }
  3399. },
  3400. {
  3401. "name": "drupal/redirect",
  3402. "version": "1.9.0",
  3403. "source": {
  3404. "type": "git",
  3405. "url": "https://git.drupalcode.org/project/redirect.git",
  3406. "reference": "8.x-1.9"
  3407. },
  3408. "dist": {
  3409. "type": "zip",
  3410. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  3411. "reference": "8.x-1.9",
  3412. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  3413. },
  3414. "require": {
  3415. "drupal/core": "^9.2 || ^10"
  3416. },
  3417. "type": "drupal-module",
  3418. "extra": {
  3419. "drupal": {
  3420. "version": "8.x-1.9",
  3421. "datestamp": "1693393506",
  3422. "security-coverage": {
  3423. "status": "covered",
  3424. "message": "Covered by Drupal's security advisory policy"
  3425. }
  3426. }
  3427. },
  3428. "notification-url": "https://packages.drupal.org/8/downloads",
  3429. "license": [
  3430. "GPL-2.0-or-later"
  3431. ],
  3432. "authors": [
  3433. {
  3434. "name": "Berdir",
  3435. "homepage": "https://www.drupal.org/user/214652"
  3436. },
  3437. {
  3438. "name": "Dave Reid",
  3439. "homepage": "https://www.drupal.org/user/53892"
  3440. },
  3441. {
  3442. "name": "Kristen Pol",
  3443. "homepage": "https://www.drupal.org/user/8389"
  3444. },
  3445. {
  3446. "name": "pifagor",
  3447. "homepage": "https://www.drupal.org/user/2375692"
  3448. }
  3449. ],
  3450. "description": "Allows users to redirect from old URLs to new URLs.",
  3451. "homepage": "https://www.drupal.org/project/redirect",
  3452. "support": {
  3453. "source": "https://git.drupalcode.org/project/redirect"
  3454. }
  3455. },
  3456. {
  3457. "name": "drupal/redirect_after_login",
  3458. "version": "2.8.0",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  3462. "reference": "8.x-2.8"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.8.zip",
  3467. "reference": "8.x-2.8",
  3468. "shasum": "01781d0265c85a8ffa55842c34813daceba995e6"
  3469. },
  3470. "require": {
  3471. "drupal/core": "^9.3 || ^10"
  3472. },
  3473. "type": "drupal-module",
  3474. "extra": {
  3475. "drupal": {
  3476. "version": "8.x-2.8",
  3477. "datestamp": "1698918366",
  3478. "security-coverage": {
  3479. "status": "covered",
  3480. "message": "Covered by Drupal's security advisory policy"
  3481. }
  3482. }
  3483. },
  3484. "notification-url": "https://packages.drupal.org/8/downloads",
  3485. "license": [
  3486. "GPL-2.0-or-later"
  3487. ],
  3488. "authors": [
  3489. {
  3490. "name": "Shamsher Alam",
  3491. "homepage": "https://www.drupal.org/u/shamsher_alam",
  3492. "role": "Author"
  3493. },
  3494. {
  3495. "name": "prempatel2447",
  3496. "homepage": "https://www.drupal.org/user/3250112"
  3497. },
  3498. {
  3499. "name": "rahul-kr-sh",
  3500. "homepage": "https://www.drupal.org/user/3561577"
  3501. },
  3502. {
  3503. "name": "Shamsher_Alam",
  3504. "homepage": "https://www.drupal.org/user/2742027"
  3505. },
  3506. {
  3507. "name": "VladimirAus",
  3508. "homepage": "https://www.drupal.org/user/673120"
  3509. }
  3510. ],
  3511. "description": "Redirect user after login to a configured url",
  3512. "homepage": "https://drupal.org/project/redirect_after_login",
  3513. "support": {
  3514. "source": "https://git.drupalcode.org/project/redirect_after_login"
  3515. }
  3516. },
  3517. {
  3518. "name": "drupal/redis",
  3519. "version": "1.7.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://git.drupalcode.org/project/redis.git",
  3523. "reference": "8.x-1.7"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  3528. "reference": "8.x-1.7",
  3529. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  3530. },
  3531. "require": {
  3532. "drupal/core": "^9.3 || ^10"
  3533. },
  3534. "suggest": {
  3535. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  3536. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  3537. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  3538. },
  3539. "type": "drupal-module",
  3540. "extra": {
  3541. "drupal": {
  3542. "version": "8.x-1.7",
  3543. "datestamp": "1686175620",
  3544. "security-coverage": {
  3545. "status": "covered",
  3546. "message": "Covered by Drupal's security advisory policy"
  3547. }
  3548. }
  3549. },
  3550. "autoload": {
  3551. "psr-4": {
  3552. "Drupal\\redis\\": "src"
  3553. }
  3554. },
  3555. "notification-url": "https://packages.drupal.org/8/downloads",
  3556. "license": [
  3557. "GPL-2.0-or-later"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "Berdir",
  3562. "homepage": "https://www.drupal.org/user/214652"
  3563. },
  3564. {
  3565. "name": "greg.1.anderson",
  3566. "homepage": "https://www.drupal.org/user/438598"
  3567. },
  3568. {
  3569. "name": "kporras07",
  3570. "homepage": "https://www.drupal.org/user/1349780"
  3571. },
  3572. {
  3573. "name": "pounard",
  3574. "homepage": "https://www.drupal.org/user/240164"
  3575. }
  3576. ],
  3577. "description": "Integration of Drupal with the Redis key-value store.",
  3578. "homepage": "https://www.drupal.org/project/redis",
  3579. "support": {
  3580. "source": "https://git.drupalcode.org/project/redis"
  3581. }
  3582. },
  3583. {
  3584. "name": "drupal/schema_metatag",
  3585. "version": "2.5.0",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  3589. "reference": "8.x-2.5"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip",
  3594. "reference": "8.x-2.5",
  3595. "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87"
  3596. },
  3597. "require": {
  3598. "drupal/core": "^9.0 || ^10",
  3599. "drupal/metatag": "^1.0"
  3600. },
  3601. "require-dev": {
  3602. "drupal/coder": "^8.3",
  3603. "drupal/metatag_views": "*",
  3604. "drupal/schema_article": "*",
  3605. "drupal/schema_organization": "*",
  3606. "phpcompatibility/php-compatibility": "^9.3"
  3607. },
  3608. "type": "drupal-module",
  3609. "extra": {
  3610. "drupal": {
  3611. "version": "8.x-2.5",
  3612. "datestamp": "1687460392",
  3613. "security-coverage": {
  3614. "status": "covered",
  3615. "message": "Covered by Drupal's security advisory policy"
  3616. }
  3617. }
  3618. },
  3619. "notification-url": "https://packages.drupal.org/8/downloads",
  3620. "license": [
  3621. "GPL-2.0-or-later"
  3622. ],
  3623. "authors": [
  3624. {
  3625. "name": "DamienMcKenna",
  3626. "homepage": "https://www.drupal.org/user/108450"
  3627. },
  3628. {
  3629. "name": "KarenS",
  3630. "homepage": "https://www.drupal.org/user/45874"
  3631. },
  3632. {
  3633. "name": "wells",
  3634. "homepage": "https://www.drupal.org/user/2452278"
  3635. }
  3636. ],
  3637. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  3638. "homepage": "https://www.drupal.org/project/schema_metatag",
  3639. "keywords": [
  3640. "Drupal"
  3641. ],
  3642. "support": {
  3643. "source": "https://git.drupalcode.org/project/schema_metatag",
  3644. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  3645. }
  3646. },
  3647. {
  3648. "name": "drupal/search_api",
  3649. "version": "1.31.0",
  3650. "source": {
  3651. "type": "git",
  3652. "url": "https://git.drupalcode.org/project/search_api.git",
  3653. "reference": "8.x-1.31"
  3654. },
  3655. "dist": {
  3656. "type": "zip",
  3657. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip",
  3658. "reference": "8.x-1.31",
  3659. "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc"
  3660. },
  3661. "require": {
  3662. "drupal/core": "^10.0"
  3663. },
  3664. "conflict": {
  3665. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  3666. },
  3667. "require-dev": {
  3668. "drupal/language_fallback_fix": "@dev",
  3669. "drupal/search_api_autocomplete": "@dev",
  3670. "drupal/search_api_db": "*"
  3671. },
  3672. "suggest": {
  3673. "drupal/facets": "Adds the ability to create faceted searches.",
  3674. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  3675. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  3676. },
  3677. "type": "drupal-module",
  3678. "extra": {
  3679. "drupal": {
  3680. "version": "8.x-1.31",
  3681. "datestamp": "1700926323",
  3682. "security-coverage": {
  3683. "status": "covered",
  3684. "message": "Covered by Drupal's security advisory policy"
  3685. }
  3686. },
  3687. "drush": {
  3688. "services": {
  3689. "drush.services.yml": "^9 || ^10 || ^11"
  3690. }
  3691. }
  3692. },
  3693. "notification-url": "https://packages.drupal.org/8/downloads",
  3694. "license": [
  3695. "GPL-2.0-or-later"
  3696. ],
  3697. "authors": [
  3698. {
  3699. "name": "Thomas Seidl",
  3700. "homepage": "https://www.drupal.org/u/drunken-monkey"
  3701. },
  3702. {
  3703. "name": "Nick Veenhof",
  3704. "homepage": "https://www.drupal.org/u/nick_vh"
  3705. },
  3706. {
  3707. "name": "See other contributors",
  3708. "homepage": "https://www.drupal.org/node/790418/committers"
  3709. }
  3710. ],
  3711. "description": "Provides a generic framework for modules offering search capabilities.",
  3712. "homepage": "https://www.drupal.org/project/search_api",
  3713. "support": {
  3714. "source": "https://git.drupalcode.org/project/search_api",
  3715. "issues": "https://www.drupal.org/project/issues/search_api",
  3716. "irc": "irc://irc.freenode.org/drupal-search-api"
  3717. }
  3718. },
  3719. {
  3720. "name": "drupal/site_settings",
  3721. "version": "1.20.0",
  3722. "source": {
  3723. "type": "git",
  3724. "url": "https://git.drupalcode.org/project/site_settings.git",
  3725. "reference": "8.x-1.20"
  3726. },
  3727. "dist": {
  3728. "type": "zip",
  3729. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.20.zip",
  3730. "reference": "8.x-1.20",
  3731. "shasum": "b1e3b07437ef0ff7a907b7b6319f16db3942fb1c"
  3732. },
  3733. "require": {
  3734. "drupal/core": "^8 || ^9 || ^10"
  3735. },
  3736. "type": "drupal-module",
  3737. "extra": {
  3738. "drupal": {
  3739. "version": "8.x-1.20",
  3740. "datestamp": "1669790573",
  3741. "security-coverage": {
  3742. "status": "covered",
  3743. "message": "Covered by Drupal's security advisory policy"
  3744. }
  3745. }
  3746. },
  3747. "notification-url": "https://packages.drupal.org/8/downloads",
  3748. "license": [
  3749. "GPL-2.0+"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "bobi-mel",
  3754. "homepage": "https://www.drupal.org/user/3741631"
  3755. },
  3756. {
  3757. "name": "bohart",
  3758. "homepage": "https://www.drupal.org/user/289861"
  3759. },
  3760. {
  3761. "name": "scott_euser",
  3762. "homepage": "https://www.drupal.org/user/3267594"
  3763. }
  3764. ],
  3765. "description": "Provides a site settings entity",
  3766. "homepage": "https://www.drupal.org/project/site_settings",
  3767. "keywords": [
  3768. "Drupal"
  3769. ],
  3770. "support": {
  3771. "source": "http://cgit.drupalcode.org/site_settings",
  3772. "issues": "http://drupal.org/project/issues/site_settings"
  3773. }
  3774. },
  3775. {
  3776. "name": "drupal/subpathauto",
  3777. "version": "1.3.0",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://git.drupalcode.org/project/subpathauto.git",
  3781. "reference": "8.x-1.3"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip",
  3786. "reference": "8.x-1.3",
  3787. "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d"
  3788. },
  3789. "require": {
  3790. "drupal/core": "^8.8 || ^9 || ^10"
  3791. },
  3792. "require-dev": {
  3793. "drupal/redirect": "*"
  3794. },
  3795. "type": "drupal-module",
  3796. "extra": {
  3797. "drupal": {
  3798. "version": "8.x-1.3",
  3799. "datestamp": "1676316639",
  3800. "security-coverage": {
  3801. "status": "covered",
  3802. "message": "Covered by Drupal's security advisory policy"
  3803. }
  3804. }
  3805. },
  3806. "notification-url": "https://packages.drupal.org/8/downloads",
  3807. "license": [
  3808. "GPL-2.0-or-later"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "Dave Reid",
  3813. "homepage": "https://www.drupal.org/user/53892"
  3814. },
  3815. {
  3816. "name": "lauriii",
  3817. "homepage": "https://www.drupal.org/user/1078742"
  3818. },
  3819. {
  3820. "name": "NickDickinsonWilde",
  3821. "homepage": "https://www.drupal.org/user/3094661"
  3822. }
  3823. ],
  3824. "description": "Provides support for extending sub-paths of URL aliases.",
  3825. "homepage": "https://www.drupal.org/project/subpathauto",
  3826. "support": {
  3827. "source": "https://cgit.drupalcode.org/subpathauto",
  3828. "issues": "https://www.drupal.org/project/issues/subpathauto"
  3829. }
  3830. },
  3831. {
  3832. "name": "drupal/tacjs",
  3833. "version": "6.4.0",
  3834. "source": {
  3835. "type": "git",
  3836. "url": "https://git.drupalcode.org/project/tacjs.git",
  3837. "reference": "8.x-6.4"
  3838. },
  3839. "dist": {
  3840. "type": "zip",
  3841. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-6.4.zip",
  3842. "reference": "8.x-6.4",
  3843. "shasum": "20a23611b6ea7a5f3b8d2d5ec9ce714cd3e00d77"
  3844. },
  3845. "require": {
  3846. "drupal/core": "^8.8 || ^9 || ^10"
  3847. },
  3848. "type": "drupal-module",
  3849. "extra": {
  3850. "drupal": {
  3851. "version": "8.x-6.4",
  3852. "datestamp": "1687974794",
  3853. "security-coverage": {
  3854. "status": "covered",
  3855. "message": "Covered by Drupal's security advisory policy"
  3856. }
  3857. }
  3858. },
  3859. "notification-url": "https://packages.drupal.org/8/downloads",
  3860. "license": [
  3861. "GPL-2.0-or-later"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "asmaakhalfi",
  3866. "homepage": "https://www.drupal.org/user/3587145"
  3867. },
  3868. {
  3869. "name": "boulaffasae",
  3870. "homepage": "https://www.drupal.org/user/3584750"
  3871. },
  3872. {
  3873. "name": "chaimaariz",
  3874. "homepage": "https://www.drupal.org/user/3549766"
  3875. },
  3876. {
  3877. "name": "k.asmouh",
  3878. "homepage": "https://www.drupal.org/user/3135943"
  3879. },
  3880. {
  3881. "name": "lamlih",
  3882. "homepage": "https://www.drupal.org/user/3708454"
  3883. },
  3884. {
  3885. "name": "mably",
  3886. "homepage": "https://www.drupal.org/user/3375160"
  3887. },
  3888. {
  3889. "name": "netsliver",
  3890. "homepage": "https://www.drupal.org/user/3082011"
  3891. },
  3892. {
  3893. "name": "prudloff",
  3894. "homepage": "https://www.drupal.org/user/3611858"
  3895. }
  3896. ],
  3897. "description": "Comply to the European cookie law using tarteaucitron.js.",
  3898. "homepage": "https://www.drupal.org/project/tacjs",
  3899. "keywords": [
  3900. "Drupal",
  3901. "tacjs"
  3902. ],
  3903. "support": {
  3904. "source": "https://git.drupalcode.org/project/tacjs",
  3905. "issues": "https://www.drupal.org/project/issues/tacjs"
  3906. }
  3907. },
  3908. {
  3909. "name": "drupal/time_range",
  3910. "version": "9.0.2",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://git.drupalcode.org/project/time_range.git",
  3914. "reference": "9.0.2"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://ftp.drupal.org/files/projects/time_range-9.0.2.zip",
  3919. "reference": "9.0.2",
  3920. "shasum": "e0de44c4fc10f86b9ea001458deb7eac02f2ff28"
  3921. },
  3922. "require": {
  3923. "drupal/core": "^8 || ^9 || ^10"
  3924. },
  3925. "type": "drupal-module",
  3926. "extra": {
  3927. "drupal": {
  3928. "version": "9.0.2",
  3929. "datestamp": "1688992195",
  3930. "security-coverage": {
  3931. "status": "covered",
  3932. "message": "Covered by Drupal's security advisory policy"
  3933. }
  3934. }
  3935. },
  3936. "notification-url": "https://packages.drupal.org/8/downloads",
  3937. "license": [
  3938. "GPL-2.0+"
  3939. ],
  3940. "authors": [
  3941. {
  3942. "name": "dravenk",
  3943. "homepage": "https://www.drupal.org/user/3452417"
  3944. }
  3945. ],
  3946. "description": "Provides the form widget to fill in time range.",
  3947. "homepage": "https://github.com/DravenK/time-range.git",
  3948. "support": {
  3949. "source": "https://github.com/DravenK/time-range.git",
  3950. "issues": "https://github.com/DravenK/time-range/issues"
  3951. }
  3952. },
  3953. {
  3954. "name": "drupal/token",
  3955. "version": "1.13.0",
  3956. "source": {
  3957. "type": "git",
  3958. "url": "https://git.drupalcode.org/project/token.git",
  3959. "reference": "8.x-1.13"
  3960. },
  3961. "dist": {
  3962. "type": "zip",
  3963. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  3964. "reference": "8.x-1.13",
  3965. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  3966. },
  3967. "require": {
  3968. "drupal/core": "^9.2 || ^10"
  3969. },
  3970. "type": "drupal-module",
  3971. "extra": {
  3972. "drupal": {
  3973. "version": "8.x-1.13",
  3974. "datestamp": "1697885927",
  3975. "security-coverage": {
  3976. "status": "covered",
  3977. "message": "Covered by Drupal's security advisory policy"
  3978. }
  3979. },
  3980. "drush": {
  3981. "services": {
  3982. "drush.services.yml": ">=9"
  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": "Berdir",
  3993. "homepage": "https://www.drupal.org/user/214652"
  3994. },
  3995. {
  3996. "name": "Dave Reid",
  3997. "homepage": "https://www.drupal.org/user/53892"
  3998. },
  3999. {
  4000. "name": "eaton",
  4001. "homepage": "https://www.drupal.org/user/16496"
  4002. },
  4003. {
  4004. "name": "fago",
  4005. "homepage": "https://www.drupal.org/user/16747"
  4006. },
  4007. {
  4008. "name": "greggles",
  4009. "homepage": "https://www.drupal.org/user/36762"
  4010. },
  4011. {
  4012. "name": "mikeryan",
  4013. "homepage": "https://www.drupal.org/user/4420"
  4014. }
  4015. ],
  4016. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4017. "homepage": "https://www.drupal.org/project/token",
  4018. "support": {
  4019. "source": "https://git.drupalcode.org/project/token"
  4020. }
  4021. },
  4022. {
  4023. "name": "drupal/video_embed_field",
  4024. "version": "2.5.0",
  4025. "source": {
  4026. "type": "git",
  4027. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4028. "reference": "8.x-2.5"
  4029. },
  4030. "dist": {
  4031. "type": "zip",
  4032. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  4033. "reference": "8.x-2.5",
  4034. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  4035. },
  4036. "require": {
  4037. "drupal/core": "^9.2 || ^10"
  4038. },
  4039. "require-dev": {
  4040. "drupal/ckeditor": "^1",
  4041. "drupal/colorbox": "^2",
  4042. "drupal/video_embed_media": "*"
  4043. },
  4044. "type": "drupal-module",
  4045. "extra": {
  4046. "drupal": {
  4047. "version": "8.x-2.5",
  4048. "datestamp": "1671413311",
  4049. "security-coverage": {
  4050. "status": "covered",
  4051. "message": "Covered by Drupal's security advisory policy"
  4052. }
  4053. }
  4054. },
  4055. "notification-url": "https://packages.drupal.org/8/downloads",
  4056. "license": [
  4057. "GPL-2.0-or-later"
  4058. ],
  4059. "authors": [
  4060. {
  4061. "name": "abhinesh",
  4062. "homepage": "https://www.drupal.org/user/3645979"
  4063. },
  4064. {
  4065. "name": "jec006",
  4066. "homepage": "https://www.drupal.org/user/855980"
  4067. },
  4068. {
  4069. "name": "plopesc",
  4070. "homepage": "https://www.drupal.org/user/282415"
  4071. },
  4072. {
  4073. "name": "Sam152",
  4074. "homepage": "https://www.drupal.org/user/1485048"
  4075. }
  4076. ],
  4077. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4078. "homepage": "https://www.drupal.org/project/video_embed_field",
  4079. "support": {
  4080. "source": "https://git.drupalcode.org/project/video_embed_field"
  4081. }
  4082. },
  4083. {
  4084. "name": "drupal/views_url_path_arguments",
  4085. "version": "1.2.0",
  4086. "source": {
  4087. "type": "git",
  4088. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4089. "reference": "8.x-1.2"
  4090. },
  4091. "dist": {
  4092. "type": "zip",
  4093. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.2.zip",
  4094. "reference": "8.x-1.2",
  4095. "shasum": "949023c9c1dd31f91d60e76580dc9d5c2e0732d4"
  4096. },
  4097. "require": {
  4098. "drupal/core": "^8 || ^9 || ^10"
  4099. },
  4100. "type": "drupal-module",
  4101. "extra": {
  4102. "drupal": {
  4103. "version": "8.x-1.2",
  4104. "datestamp": "1689607584",
  4105. "security-coverage": {
  4106. "status": "covered",
  4107. "message": "Covered by Drupal's security advisory policy"
  4108. }
  4109. }
  4110. },
  4111. "notification-url": "https://packages.drupal.org/8/downloads",
  4112. "license": [
  4113. "GPL-2.0+"
  4114. ],
  4115. "authors": [
  4116. {
  4117. "name": "heddn",
  4118. "homepage": "https://www.drupal.org/user/1463982"
  4119. }
  4120. ],
  4121. "description": "Simple module to convert a view argument's entity id into its url path.",
  4122. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4123. "keywords": [
  4124. "Drupal"
  4125. ],
  4126. "support": {
  4127. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4128. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4129. }
  4130. },
  4131. {
  4132. "name": "drush/drush",
  4133. "version": "12.4.3",
  4134. "source": {
  4135. "type": "git",
  4136. "url": "https://github.com/drush-ops/drush.git",
  4137. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971"
  4138. },
  4139. "dist": {
  4140. "type": "zip",
  4141. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4142. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4143. "shasum": ""
  4144. },
  4145. "require": {
  4146. "chi-teck/drupal-code-generator": "^3.0",
  4147. "composer-runtime-api": "^2.2",
  4148. "composer/semver": "^1.4 || ^3",
  4149. "consolidation/annotated-command": "^4.9.1",
  4150. "consolidation/config": "^2.1.2",
  4151. "consolidation/filter-via-dot-access-data": "^2.0.2",
  4152. "consolidation/output-formatters": "^4.3.2",
  4153. "consolidation/robo": "^4.0.6",
  4154. "consolidation/site-alias": "^4",
  4155. "consolidation/site-process": "^5.2.0",
  4156. "ext-dom": "*",
  4157. "grasmash/yaml-cli": "^3.1",
  4158. "guzzlehttp/guzzle": "^7.0",
  4159. "league/container": "^4",
  4160. "php": ">=8.1",
  4161. "psy/psysh": "~0.11",
  4162. "symfony/event-dispatcher": "^6",
  4163. "symfony/filesystem": "^6.1",
  4164. "symfony/finder": "^6",
  4165. "symfony/var-dumper": "^6.0",
  4166. "symfony/yaml": "^6.0",
  4167. "webflo/drupal-finder": "^1.2"
  4168. },
  4169. "conflict": {
  4170. "drupal/core": "< 10.0",
  4171. "drupal/migrate_run": "*",
  4172. "drupal/migrate_tools": "<= 5"
  4173. },
  4174. "require-dev": {
  4175. "composer/installers": "^2",
  4176. "cweagans/composer-patches": "~1.0",
  4177. "drupal/core-recommended": "^10",
  4178. "drupal/semver_example": "2.3.0",
  4179. "phpunit/phpunit": "^9",
  4180. "rector/rector": "^0.12",
  4181. "squizlabs/php_codesniffer": "^3.7"
  4182. },
  4183. "bin": [
  4184. "drush"
  4185. ],
  4186. "type": "library",
  4187. "extra": {
  4188. "installer-paths": {
  4189. "sut/core": [
  4190. "type:drupal-core"
  4191. ],
  4192. "sut/libraries/{$name}": [
  4193. "type:drupal-library"
  4194. ],
  4195. "sut/modules/unish/{$name}": [
  4196. "drupal/devel"
  4197. ],
  4198. "sut/themes/unish/{$name}": [
  4199. "drupal/empty_theme"
  4200. ],
  4201. "sut/modules/contrib/{$name}": [
  4202. "type:drupal-module"
  4203. ],
  4204. "sut/profiles/contrib/{$name}": [
  4205. "type:drupal-profile"
  4206. ],
  4207. "sut/themes/contrib/{$name}": [
  4208. "type:drupal-theme"
  4209. ],
  4210. "sut/drush/contrib/{$name}": [
  4211. "type:drupal-drush"
  4212. ]
  4213. }
  4214. },
  4215. "autoload": {
  4216. "psr-4": {
  4217. "Drush\\": "src/"
  4218. }
  4219. },
  4220. "notification-url": "https://packagist.org/downloads/",
  4221. "license": [
  4222. "GPL-2.0-or-later"
  4223. ],
  4224. "authors": [
  4225. {
  4226. "name": "Moshe Weitzman",
  4227. "email": "weitzman@tejasa.com"
  4228. },
  4229. {
  4230. "name": "Owen Barton",
  4231. "email": "drupal@owenbarton.com"
  4232. },
  4233. {
  4234. "name": "Greg Anderson",
  4235. "email": "greg.1.anderson@greenknowe.org"
  4236. },
  4237. {
  4238. "name": "Jonathan Araña Cruz",
  4239. "email": "jonhattan@faita.net"
  4240. },
  4241. {
  4242. "name": "Jonathan Hedstrom",
  4243. "email": "jhedstrom@gmail.com"
  4244. },
  4245. {
  4246. "name": "Christopher Gervais",
  4247. "email": "chris@ergonlogic.com"
  4248. },
  4249. {
  4250. "name": "Dave Reid",
  4251. "email": "dave@davereid.net"
  4252. },
  4253. {
  4254. "name": "Damian Lee",
  4255. "email": "damiankloip@googlemail.com"
  4256. }
  4257. ],
  4258. "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.",
  4259. "homepage": "http://www.drush.org",
  4260. "support": {
  4261. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  4262. "issues": "https://github.com/drush-ops/drush/issues",
  4263. "security": "https://github.com/drush-ops/drush/security/advisories",
  4264. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  4265. "source": "https://github.com/drush-ops/drush/tree/12.4.3"
  4266. },
  4267. "funding": [
  4268. {
  4269. "url": "https://github.com/weitzman",
  4270. "type": "github"
  4271. }
  4272. ],
  4273. "time": "2023-11-16T22:57:24+00:00"
  4274. },
  4275. {
  4276. "name": "egulias/email-validator",
  4277. "version": "4.0.2",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://github.com/egulias/EmailValidator.git",
  4281. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  4286. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  4287. "shasum": ""
  4288. },
  4289. "require": {
  4290. "doctrine/lexer": "^2.0 || ^3.0",
  4291. "php": ">=8.1",
  4292. "symfony/polyfill-intl-idn": "^1.26"
  4293. },
  4294. "require-dev": {
  4295. "phpunit/phpunit": "^10.2",
  4296. "vimeo/psalm": "^5.12"
  4297. },
  4298. "suggest": {
  4299. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4300. },
  4301. "type": "library",
  4302. "extra": {
  4303. "branch-alias": {
  4304. "dev-master": "4.0.x-dev"
  4305. }
  4306. },
  4307. "autoload": {
  4308. "psr-4": {
  4309. "Egulias\\EmailValidator\\": "src"
  4310. }
  4311. },
  4312. "notification-url": "https://packagist.org/downloads/",
  4313. "license": [
  4314. "MIT"
  4315. ],
  4316. "authors": [
  4317. {
  4318. "name": "Eduardo Gulias Davis"
  4319. }
  4320. ],
  4321. "description": "A library for validating emails against several RFCs",
  4322. "homepage": "https://github.com/egulias/EmailValidator",
  4323. "keywords": [
  4324. "email",
  4325. "emailvalidation",
  4326. "emailvalidator",
  4327. "validation",
  4328. "validator"
  4329. ],
  4330. "support": {
  4331. "issues": "https://github.com/egulias/EmailValidator/issues",
  4332. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  4333. },
  4334. "funding": [
  4335. {
  4336. "url": "https://github.com/egulias",
  4337. "type": "github"
  4338. }
  4339. ],
  4340. "time": "2023-10-06T06:47:41+00:00"
  4341. },
  4342. {
  4343. "name": "grasmash/expander",
  4344. "version": "3.0.0",
  4345. "source": {
  4346. "type": "git",
  4347. "url": "https://github.com/grasmash/expander.git",
  4348. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  4349. },
  4350. "dist": {
  4351. "type": "zip",
  4352. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4353. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4354. "shasum": ""
  4355. },
  4356. "require": {
  4357. "dflydev/dot-access-data": "^3.0.0",
  4358. "php": ">=8.0",
  4359. "psr/log": "^2 | ^3"
  4360. },
  4361. "require-dev": {
  4362. "greg-1-anderson/composer-test-scenarios": "^1",
  4363. "php-coveralls/php-coveralls": "^2.5",
  4364. "phpunit/phpunit": "^9",
  4365. "squizlabs/php_codesniffer": "^3.3"
  4366. },
  4367. "type": "library",
  4368. "extra": {
  4369. "branch-alias": {
  4370. "dev-master": "1.x-dev"
  4371. }
  4372. },
  4373. "autoload": {
  4374. "psr-4": {
  4375. "Grasmash\\Expander\\": "src/"
  4376. }
  4377. },
  4378. "notification-url": "https://packagist.org/downloads/",
  4379. "license": [
  4380. "MIT"
  4381. ],
  4382. "authors": [
  4383. {
  4384. "name": "Matthew Grasmick"
  4385. }
  4386. ],
  4387. "description": "Expands internal property references in PHP arrays file.",
  4388. "support": {
  4389. "issues": "https://github.com/grasmash/expander/issues",
  4390. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  4391. },
  4392. "time": "2022-05-10T13:14:49+00:00"
  4393. },
  4394. {
  4395. "name": "grasmash/yaml-cli",
  4396. "version": "3.1.0",
  4397. "source": {
  4398. "type": "git",
  4399. "url": "https://github.com/grasmash/yaml-cli.git",
  4400. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0"
  4401. },
  4402. "dist": {
  4403. "type": "zip",
  4404. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4405. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4406. "shasum": ""
  4407. },
  4408. "require": {
  4409. "dflydev/dot-access-data": "^3",
  4410. "php": ">=8.0",
  4411. "symfony/console": "^6",
  4412. "symfony/filesystem": "^6",
  4413. "symfony/yaml": "^6"
  4414. },
  4415. "require-dev": {
  4416. "php-coveralls/php-coveralls": "^2",
  4417. "phpunit/phpunit": "^9",
  4418. "squizlabs/php_codesniffer": "^3.0"
  4419. },
  4420. "bin": [
  4421. "bin/yaml-cli"
  4422. ],
  4423. "type": "library",
  4424. "extra": {
  4425. "branch-alias": {
  4426. "dev-master": "3.x-dev"
  4427. }
  4428. },
  4429. "autoload": {
  4430. "psr-4": {
  4431. "Grasmash\\YamlCli\\": "src/"
  4432. }
  4433. },
  4434. "notification-url": "https://packagist.org/downloads/",
  4435. "license": [
  4436. "MIT"
  4437. ],
  4438. "authors": [
  4439. {
  4440. "name": "Matthew Grasmick"
  4441. }
  4442. ],
  4443. "description": "A command line tool for reading and manipulating yaml files.",
  4444. "support": {
  4445. "issues": "https://github.com/grasmash/yaml-cli/issues",
  4446. "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0"
  4447. },
  4448. "time": "2022-05-09T20:22:34+00:00"
  4449. },
  4450. {
  4451. "name": "guzzlehttp/guzzle",
  4452. "version": "7.8.1",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/guzzle/guzzle.git",
  4456. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  4461. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  4462. "shasum": ""
  4463. },
  4464. "require": {
  4465. "ext-json": "*",
  4466. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  4467. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  4468. "php": "^7.2.5 || ^8.0",
  4469. "psr/http-client": "^1.0",
  4470. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4471. },
  4472. "provide": {
  4473. "psr/http-client-implementation": "1.0"
  4474. },
  4475. "require-dev": {
  4476. "bamarni/composer-bin-plugin": "^1.8.2",
  4477. "ext-curl": "*",
  4478. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  4479. "php-http/message-factory": "^1.1",
  4480. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  4481. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4482. },
  4483. "suggest": {
  4484. "ext-curl": "Required for CURL handler support",
  4485. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4486. "psr/log": "Required for using the Log middleware"
  4487. },
  4488. "type": "library",
  4489. "extra": {
  4490. "bamarni-bin": {
  4491. "bin-links": true,
  4492. "forward-command": false
  4493. }
  4494. },
  4495. "autoload": {
  4496. "files": [
  4497. "src/functions_include.php"
  4498. ],
  4499. "psr-4": {
  4500. "GuzzleHttp\\": "src/"
  4501. }
  4502. },
  4503. "notification-url": "https://packagist.org/downloads/",
  4504. "license": [
  4505. "MIT"
  4506. ],
  4507. "authors": [
  4508. {
  4509. "name": "Graham Campbell",
  4510. "email": "hello@gjcampbell.co.uk",
  4511. "homepage": "https://github.com/GrahamCampbell"
  4512. },
  4513. {
  4514. "name": "Michael Dowling",
  4515. "email": "mtdowling@gmail.com",
  4516. "homepage": "https://github.com/mtdowling"
  4517. },
  4518. {
  4519. "name": "Jeremy Lindblom",
  4520. "email": "jeremeamia@gmail.com",
  4521. "homepage": "https://github.com/jeremeamia"
  4522. },
  4523. {
  4524. "name": "George Mponos",
  4525. "email": "gmponos@gmail.com",
  4526. "homepage": "https://github.com/gmponos"
  4527. },
  4528. {
  4529. "name": "Tobias Nyholm",
  4530. "email": "tobias.nyholm@gmail.com",
  4531. "homepage": "https://github.com/Nyholm"
  4532. },
  4533. {
  4534. "name": "Márk Sági-Kazár",
  4535. "email": "mark.sagikazar@gmail.com",
  4536. "homepage": "https://github.com/sagikazarmark"
  4537. },
  4538. {
  4539. "name": "Tobias Schultze",
  4540. "email": "webmaster@tubo-world.de",
  4541. "homepage": "https://github.com/Tobion"
  4542. }
  4543. ],
  4544. "description": "Guzzle is a PHP HTTP client library",
  4545. "keywords": [
  4546. "client",
  4547. "curl",
  4548. "framework",
  4549. "http",
  4550. "http client",
  4551. "psr-18",
  4552. "psr-7",
  4553. "rest",
  4554. "web service"
  4555. ],
  4556. "support": {
  4557. "issues": "https://github.com/guzzle/guzzle/issues",
  4558. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  4559. },
  4560. "funding": [
  4561. {
  4562. "url": "https://github.com/GrahamCampbell",
  4563. "type": "github"
  4564. },
  4565. {
  4566. "url": "https://github.com/Nyholm",
  4567. "type": "github"
  4568. },
  4569. {
  4570. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  4571. "type": "tidelift"
  4572. }
  4573. ],
  4574. "time": "2023-12-03T20:35:24+00:00"
  4575. },
  4576. {
  4577. "name": "guzzlehttp/promises",
  4578. "version": "2.0.2",
  4579. "source": {
  4580. "type": "git",
  4581. "url": "https://github.com/guzzle/promises.git",
  4582. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  4583. },
  4584. "dist": {
  4585. "type": "zip",
  4586. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  4587. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  4588. "shasum": ""
  4589. },
  4590. "require": {
  4591. "php": "^7.2.5 || ^8.0"
  4592. },
  4593. "require-dev": {
  4594. "bamarni/composer-bin-plugin": "^1.8.2",
  4595. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4596. },
  4597. "type": "library",
  4598. "extra": {
  4599. "bamarni-bin": {
  4600. "bin-links": true,
  4601. "forward-command": false
  4602. }
  4603. },
  4604. "autoload": {
  4605. "psr-4": {
  4606. "GuzzleHttp\\Promise\\": "src/"
  4607. }
  4608. },
  4609. "notification-url": "https://packagist.org/downloads/",
  4610. "license": [
  4611. "MIT"
  4612. ],
  4613. "authors": [
  4614. {
  4615. "name": "Graham Campbell",
  4616. "email": "hello@gjcampbell.co.uk",
  4617. "homepage": "https://github.com/GrahamCampbell"
  4618. },
  4619. {
  4620. "name": "Michael Dowling",
  4621. "email": "mtdowling@gmail.com",
  4622. "homepage": "https://github.com/mtdowling"
  4623. },
  4624. {
  4625. "name": "Tobias Nyholm",
  4626. "email": "tobias.nyholm@gmail.com",
  4627. "homepage": "https://github.com/Nyholm"
  4628. },
  4629. {
  4630. "name": "Tobias Schultze",
  4631. "email": "webmaster@tubo-world.de",
  4632. "homepage": "https://github.com/Tobion"
  4633. }
  4634. ],
  4635. "description": "Guzzle promises library",
  4636. "keywords": [
  4637. "promise"
  4638. ],
  4639. "support": {
  4640. "issues": "https://github.com/guzzle/promises/issues",
  4641. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  4642. },
  4643. "funding": [
  4644. {
  4645. "url": "https://github.com/GrahamCampbell",
  4646. "type": "github"
  4647. },
  4648. {
  4649. "url": "https://github.com/Nyholm",
  4650. "type": "github"
  4651. },
  4652. {
  4653. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  4654. "type": "tidelift"
  4655. }
  4656. ],
  4657. "time": "2023-12-03T20:19:20+00:00"
  4658. },
  4659. {
  4660. "name": "guzzlehttp/psr7",
  4661. "version": "2.6.2",
  4662. "source": {
  4663. "type": "git",
  4664. "url": "https://github.com/guzzle/psr7.git",
  4665. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  4666. },
  4667. "dist": {
  4668. "type": "zip",
  4669. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4670. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4671. "shasum": ""
  4672. },
  4673. "require": {
  4674. "php": "^7.2.5 || ^8.0",
  4675. "psr/http-factory": "^1.0",
  4676. "psr/http-message": "^1.1 || ^2.0",
  4677. "ralouphie/getallheaders": "^3.0"
  4678. },
  4679. "provide": {
  4680. "psr/http-factory-implementation": "1.0",
  4681. "psr/http-message-implementation": "1.0"
  4682. },
  4683. "require-dev": {
  4684. "bamarni/composer-bin-plugin": "^1.8.2",
  4685. "http-interop/http-factory-tests": "^0.9",
  4686. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4687. },
  4688. "suggest": {
  4689. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  4690. },
  4691. "type": "library",
  4692. "extra": {
  4693. "bamarni-bin": {
  4694. "bin-links": true,
  4695. "forward-command": false
  4696. }
  4697. },
  4698. "autoload": {
  4699. "psr-4": {
  4700. "GuzzleHttp\\Psr7\\": "src/"
  4701. }
  4702. },
  4703. "notification-url": "https://packagist.org/downloads/",
  4704. "license": [
  4705. "MIT"
  4706. ],
  4707. "authors": [
  4708. {
  4709. "name": "Graham Campbell",
  4710. "email": "hello@gjcampbell.co.uk",
  4711. "homepage": "https://github.com/GrahamCampbell"
  4712. },
  4713. {
  4714. "name": "Michael Dowling",
  4715. "email": "mtdowling@gmail.com",
  4716. "homepage": "https://github.com/mtdowling"
  4717. },
  4718. {
  4719. "name": "George Mponos",
  4720. "email": "gmponos@gmail.com",
  4721. "homepage": "https://github.com/gmponos"
  4722. },
  4723. {
  4724. "name": "Tobias Nyholm",
  4725. "email": "tobias.nyholm@gmail.com",
  4726. "homepage": "https://github.com/Nyholm"
  4727. },
  4728. {
  4729. "name": "Márk Sági-Kazár",
  4730. "email": "mark.sagikazar@gmail.com",
  4731. "homepage": "https://github.com/sagikazarmark"
  4732. },
  4733. {
  4734. "name": "Tobias Schultze",
  4735. "email": "webmaster@tubo-world.de",
  4736. "homepage": "https://github.com/Tobion"
  4737. },
  4738. {
  4739. "name": "Márk Sági-Kazár",
  4740. "email": "mark.sagikazar@gmail.com",
  4741. "homepage": "https://sagikazarmark.hu"
  4742. }
  4743. ],
  4744. "description": "PSR-7 message implementation that also provides common utility methods",
  4745. "keywords": [
  4746. "http",
  4747. "message",
  4748. "psr-7",
  4749. "request",
  4750. "response",
  4751. "stream",
  4752. "uri",
  4753. "url"
  4754. ],
  4755. "support": {
  4756. "issues": "https://github.com/guzzle/psr7/issues",
  4757. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  4758. },
  4759. "funding": [
  4760. {
  4761. "url": "https://github.com/GrahamCampbell",
  4762. "type": "github"
  4763. },
  4764. {
  4765. "url": "https://github.com/Nyholm",
  4766. "type": "github"
  4767. },
  4768. {
  4769. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  4770. "type": "tidelift"
  4771. }
  4772. ],
  4773. "time": "2023-12-03T20:05:35+00:00"
  4774. },
  4775. {
  4776. "name": "league/container",
  4777. "version": "4.2.0",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/thephpleague/container.git",
  4781. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  4786. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "php": "^7.2 || ^8.0",
  4791. "psr/container": "^1.1 || ^2.0"
  4792. },
  4793. "provide": {
  4794. "psr/container-implementation": "^1.0"
  4795. },
  4796. "replace": {
  4797. "orno/di": "~2.0"
  4798. },
  4799. "require-dev": {
  4800. "nette/php-generator": "^3.4",
  4801. "nikic/php-parser": "^4.10",
  4802. "phpstan/phpstan": "^0.12.47",
  4803. "phpunit/phpunit": "^8.5.17",
  4804. "roave/security-advisories": "dev-latest",
  4805. "scrutinizer/ocular": "^1.8",
  4806. "squizlabs/php_codesniffer": "^3.6"
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "branch-alias": {
  4811. "dev-master": "4.x-dev",
  4812. "dev-4.x": "4.x-dev",
  4813. "dev-3.x": "3.x-dev",
  4814. "dev-2.x": "2.x-dev",
  4815. "dev-1.x": "1.x-dev"
  4816. }
  4817. },
  4818. "autoload": {
  4819. "psr-4": {
  4820. "League\\Container\\": "src"
  4821. }
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "MIT"
  4826. ],
  4827. "authors": [
  4828. {
  4829. "name": "Phil Bennett",
  4830. "email": "mail@philbennett.co.uk",
  4831. "role": "Developer"
  4832. }
  4833. ],
  4834. "description": "A fast and intuitive dependency injection container.",
  4835. "homepage": "https://github.com/thephpleague/container",
  4836. "keywords": [
  4837. "container",
  4838. "dependency",
  4839. "di",
  4840. "injection",
  4841. "league",
  4842. "provider",
  4843. "service"
  4844. ],
  4845. "support": {
  4846. "issues": "https://github.com/thephpleague/container/issues",
  4847. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  4848. },
  4849. "funding": [
  4850. {
  4851. "url": "https://github.com/philipobenito",
  4852. "type": "github"
  4853. }
  4854. ],
  4855. "time": "2021-11-16T10:29:06+00:00"
  4856. },
  4857. {
  4858. "name": "masterminds/html5",
  4859. "version": "2.8.1",
  4860. "source": {
  4861. "type": "git",
  4862. "url": "https://github.com/Masterminds/html5-php.git",
  4863. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  4864. },
  4865. "dist": {
  4866. "type": "zip",
  4867. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  4868. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  4869. "shasum": ""
  4870. },
  4871. "require": {
  4872. "ext-dom": "*",
  4873. "php": ">=5.3.0"
  4874. },
  4875. "require-dev": {
  4876. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  4877. },
  4878. "type": "library",
  4879. "extra": {
  4880. "branch-alias": {
  4881. "dev-master": "2.7-dev"
  4882. }
  4883. },
  4884. "autoload": {
  4885. "psr-4": {
  4886. "Masterminds\\": "src"
  4887. }
  4888. },
  4889. "notification-url": "https://packagist.org/downloads/",
  4890. "license": [
  4891. "MIT"
  4892. ],
  4893. "authors": [
  4894. {
  4895. "name": "Matt Butcher",
  4896. "email": "technosophos@gmail.com"
  4897. },
  4898. {
  4899. "name": "Matt Farina",
  4900. "email": "matt@mattfarina.com"
  4901. },
  4902. {
  4903. "name": "Asmir Mustafic",
  4904. "email": "goetas@gmail.com"
  4905. }
  4906. ],
  4907. "description": "An HTML5 parser and serializer.",
  4908. "homepage": "http://masterminds.github.io/html5-php",
  4909. "keywords": [
  4910. "HTML5",
  4911. "dom",
  4912. "html",
  4913. "parser",
  4914. "querypath",
  4915. "serializer",
  4916. "xml"
  4917. ],
  4918. "support": {
  4919. "issues": "https://github.com/Masterminds/html5-php/issues",
  4920. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  4921. },
  4922. "time": "2023-05-10T11:58:31+00:00"
  4923. },
  4924. {
  4925. "name": "mck89/peast",
  4926. "version": "v1.15.4",
  4927. "source": {
  4928. "type": "git",
  4929. "url": "https://github.com/mck89/peast.git",
  4930. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  4931. },
  4932. "dist": {
  4933. "type": "zip",
  4934. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  4935. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  4936. "shasum": ""
  4937. },
  4938. "require": {
  4939. "ext-mbstring": "*",
  4940. "php": ">=5.4.0"
  4941. },
  4942. "require-dev": {
  4943. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4944. },
  4945. "type": "library",
  4946. "extra": {
  4947. "branch-alias": {
  4948. "dev-master": "1.15.4-dev"
  4949. }
  4950. },
  4951. "autoload": {
  4952. "psr-4": {
  4953. "Peast\\": "lib/Peast/"
  4954. }
  4955. },
  4956. "notification-url": "https://packagist.org/downloads/",
  4957. "license": [
  4958. "BSD-3-Clause"
  4959. ],
  4960. "authors": [
  4961. {
  4962. "name": "Marco Marchiò",
  4963. "email": "marco.mm89@gmail.com"
  4964. }
  4965. ],
  4966. "description": "Peast is PHP library that generates AST for JavaScript code",
  4967. "support": {
  4968. "issues": "https://github.com/mck89/peast/issues",
  4969. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  4970. },
  4971. "time": "2023-08-12T08:29:29+00:00"
  4972. },
  4973. {
  4974. "name": "nikic/php-parser",
  4975. "version": "v5.0.1",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://github.com/nikic/PHP-Parser.git",
  4979. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69",
  4984. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69",
  4985. "shasum": ""
  4986. },
  4987. "require": {
  4988. "ext-ctype": "*",
  4989. "ext-json": "*",
  4990. "ext-tokenizer": "*",
  4991. "php": ">=7.4"
  4992. },
  4993. "require-dev": {
  4994. "ircmaxell/php-yacc": "^0.0.7",
  4995. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4996. },
  4997. "bin": [
  4998. "bin/php-parse"
  4999. ],
  5000. "type": "library",
  5001. "extra": {
  5002. "branch-alias": {
  5003. "dev-master": "5.0-dev"
  5004. }
  5005. },
  5006. "autoload": {
  5007. "psr-4": {
  5008. "PhpParser\\": "lib/PhpParser"
  5009. }
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "BSD-3-Clause"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "Nikita Popov"
  5018. }
  5019. ],
  5020. "description": "A PHP parser written in PHP",
  5021. "keywords": [
  5022. "parser",
  5023. "php"
  5024. ],
  5025. "support": {
  5026. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5027. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1"
  5028. },
  5029. "time": "2024-02-21T19:24:10+00:00"
  5030. },
  5031. {
  5032. "name": "pear/archive_tar",
  5033. "version": "1.4.14",
  5034. "source": {
  5035. "type": "git",
  5036. "url": "https://github.com/pear/Archive_Tar.git",
  5037. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  5038. },
  5039. "dist": {
  5040. "type": "zip",
  5041. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  5042. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  5043. "shasum": ""
  5044. },
  5045. "require": {
  5046. "pear/pear-core-minimal": "^1.10.0alpha2",
  5047. "php": ">=5.2.0"
  5048. },
  5049. "require-dev": {
  5050. "phpunit/phpunit": "*"
  5051. },
  5052. "suggest": {
  5053. "ext-bz2": "Bz2 compression support.",
  5054. "ext-xz": "Lzma2 compression support.",
  5055. "ext-zlib": "Gzip compression support."
  5056. },
  5057. "type": "library",
  5058. "extra": {
  5059. "branch-alias": {
  5060. "dev-master": "1.4.x-dev"
  5061. }
  5062. },
  5063. "autoload": {
  5064. "psr-0": {
  5065. "Archive_Tar": ""
  5066. }
  5067. },
  5068. "notification-url": "https://packagist.org/downloads/",
  5069. "include-path": [
  5070. "./"
  5071. ],
  5072. "license": [
  5073. "BSD-3-Clause"
  5074. ],
  5075. "authors": [
  5076. {
  5077. "name": "Vincent Blavet",
  5078. "email": "vincent@phpconcept.net"
  5079. },
  5080. {
  5081. "name": "Greg Beaver",
  5082. "email": "greg@chiaraquartet.net"
  5083. },
  5084. {
  5085. "name": "Michiel Rook",
  5086. "email": "mrook@php.net"
  5087. }
  5088. ],
  5089. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  5090. "homepage": "https://github.com/pear/Archive_Tar",
  5091. "keywords": [
  5092. "archive",
  5093. "tar"
  5094. ],
  5095. "support": {
  5096. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  5097. "source": "https://github.com/pear/Archive_Tar"
  5098. },
  5099. "funding": [
  5100. {
  5101. "url": "https://github.com/mrook",
  5102. "type": "github"
  5103. },
  5104. {
  5105. "url": "https://www.patreon.com/michielrook",
  5106. "type": "patreon"
  5107. }
  5108. ],
  5109. "time": "2021-07-20T13:53:39+00:00"
  5110. },
  5111. {
  5112. "name": "pear/console_getopt",
  5113. "version": "v1.4.3",
  5114. "source": {
  5115. "type": "git",
  5116. "url": "https://github.com/pear/Console_Getopt.git",
  5117. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  5118. },
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5122. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5123. "shasum": ""
  5124. },
  5125. "type": "library",
  5126. "autoload": {
  5127. "psr-0": {
  5128. "Console": "./"
  5129. }
  5130. },
  5131. "notification-url": "https://packagist.org/downloads/",
  5132. "include-path": [
  5133. "./"
  5134. ],
  5135. "license": [
  5136. "BSD-2-Clause"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Andrei Zmievski",
  5141. "email": "andrei@php.net",
  5142. "role": "Lead"
  5143. },
  5144. {
  5145. "name": "Stig Bakken",
  5146. "email": "stig@php.net",
  5147. "role": "Developer"
  5148. },
  5149. {
  5150. "name": "Greg Beaver",
  5151. "email": "cellog@php.net",
  5152. "role": "Helper"
  5153. }
  5154. ],
  5155. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  5156. "support": {
  5157. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  5158. "source": "https://github.com/pear/Console_Getopt"
  5159. },
  5160. "time": "2019-11-20T18:27:48+00:00"
  5161. },
  5162. {
  5163. "name": "pear/pear-core-minimal",
  5164. "version": "v1.10.14",
  5165. "source": {
  5166. "type": "git",
  5167. "url": "https://github.com/pear/pear-core-minimal.git",
  5168. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
  5169. },
  5170. "dist": {
  5171. "type": "zip",
  5172. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5173. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5174. "shasum": ""
  5175. },
  5176. "require": {
  5177. "pear/console_getopt": "~1.4",
  5178. "pear/pear_exception": "~1.0",
  5179. "php": ">=5.4"
  5180. },
  5181. "replace": {
  5182. "rsky/pear-core-min": "self.version"
  5183. },
  5184. "type": "library",
  5185. "autoload": {
  5186. "psr-0": {
  5187. "": "src/"
  5188. }
  5189. },
  5190. "notification-url": "https://packagist.org/downloads/",
  5191. "include-path": [
  5192. "src/"
  5193. ],
  5194. "license": [
  5195. "BSD-3-Clause"
  5196. ],
  5197. "authors": [
  5198. {
  5199. "name": "Christian Weiske",
  5200. "email": "cweiske@php.net",
  5201. "role": "Lead"
  5202. }
  5203. ],
  5204. "description": "Minimal set of PEAR core files to be used as composer dependency",
  5205. "support": {
  5206. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  5207. "source": "https://github.com/pear/pear-core-minimal"
  5208. },
  5209. "time": "2023-11-26T16:15:38+00:00"
  5210. },
  5211. {
  5212. "name": "pear/pear_exception",
  5213. "version": "v1.0.2",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/pear/PEAR_Exception.git",
  5217. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5222. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5223. "shasum": ""
  5224. },
  5225. "require": {
  5226. "php": ">=5.2.0"
  5227. },
  5228. "require-dev": {
  5229. "phpunit/phpunit": "<9"
  5230. },
  5231. "type": "class",
  5232. "extra": {
  5233. "branch-alias": {
  5234. "dev-master": "1.0.x-dev"
  5235. }
  5236. },
  5237. "autoload": {
  5238. "classmap": [
  5239. "PEAR/"
  5240. ]
  5241. },
  5242. "notification-url": "https://packagist.org/downloads/",
  5243. "include-path": [
  5244. "."
  5245. ],
  5246. "license": [
  5247. "BSD-2-Clause"
  5248. ],
  5249. "authors": [
  5250. {
  5251. "name": "Helgi Thormar",
  5252. "email": "dufuz@php.net"
  5253. },
  5254. {
  5255. "name": "Greg Beaver",
  5256. "email": "cellog@php.net"
  5257. }
  5258. ],
  5259. "description": "The PEAR Exception base class.",
  5260. "homepage": "https://github.com/pear/PEAR_Exception",
  5261. "keywords": [
  5262. "exception"
  5263. ],
  5264. "support": {
  5265. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  5266. "source": "https://github.com/pear/PEAR_Exception"
  5267. },
  5268. "time": "2021-03-21T15:43:46+00:00"
  5269. },
  5270. {
  5271. "name": "phootwork/collection",
  5272. "version": "v3.2.2",
  5273. "source": {
  5274. "type": "git",
  5275. "url": "https://github.com/phootwork/collection.git",
  5276. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  5277. },
  5278. "dist": {
  5279. "type": "zip",
  5280. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  5281. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  5282. "shasum": ""
  5283. },
  5284. "require": {
  5285. "phootwork/lang": "^3.0",
  5286. "php": ">=8.0"
  5287. },
  5288. "type": "library",
  5289. "autoload": {
  5290. "psr-4": {
  5291. "phootwork\\collection\\": ""
  5292. }
  5293. },
  5294. "notification-url": "https://packagist.org/downloads/",
  5295. "license": [
  5296. "MIT"
  5297. ],
  5298. "authors": [
  5299. {
  5300. "name": "Thomas Gossmann",
  5301. "homepage": "http://gos.si"
  5302. }
  5303. ],
  5304. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  5305. "homepage": "https://phootwork.github.io/collection/",
  5306. "keywords": [
  5307. "Array object",
  5308. "Text object",
  5309. "collection",
  5310. "collections",
  5311. "json",
  5312. "list",
  5313. "map",
  5314. "queue",
  5315. "set",
  5316. "stack",
  5317. "xml"
  5318. ],
  5319. "support": {
  5320. "issues": "https://github.com/phootwork/phootwork/issues",
  5321. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  5322. },
  5323. "time": "2022-08-27T12:51:24+00:00"
  5324. },
  5325. {
  5326. "name": "phootwork/lang",
  5327. "version": "v3.2.2",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/phootwork/lang.git",
  5331. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5336. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "php": ">=8.0",
  5341. "symfony/polyfill-mbstring": "^1.12",
  5342. "symfony/polyfill-php81": "^1.22"
  5343. },
  5344. "type": "library",
  5345. "autoload": {
  5346. "psr-4": {
  5347. "phootwork\\lang\\": ""
  5348. }
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "MIT"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Thomas Gossmann",
  5357. "homepage": "http://gos.si"
  5358. }
  5359. ],
  5360. "description": "Missing PHP language constructs",
  5361. "homepage": "https://phootwork.github.io/lang/",
  5362. "keywords": [
  5363. "array",
  5364. "comparator",
  5365. "comparison",
  5366. "string"
  5367. ],
  5368. "support": {
  5369. "issues": "https://github.com/phootwork/phootwork/issues",
  5370. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  5371. },
  5372. "time": "2023-05-26T05:37:59+00:00"
  5373. },
  5374. {
  5375. "name": "phpowermove/docblock",
  5376. "version": "v4.0",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://github.com/phpowermove/docblock.git",
  5380. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5385. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5386. "shasum": ""
  5387. },
  5388. "require": {
  5389. "phootwork/collection": "^3.0",
  5390. "phootwork/lang": "^3.0",
  5391. "php": ">=8.0"
  5392. },
  5393. "require-dev": {
  5394. "phootwork/php-cs-fixer-config": "^0.4",
  5395. "phpunit/phpunit": "^9.0",
  5396. "psalm/phar": "^4.3"
  5397. },
  5398. "type": "library",
  5399. "autoload": {
  5400. "psr-4": {
  5401. "phpowermove\\docblock\\": "src/"
  5402. }
  5403. },
  5404. "notification-url": "https://packagist.org/downloads/",
  5405. "license": [
  5406. "MIT"
  5407. ],
  5408. "authors": [
  5409. {
  5410. "name": "Thomas Gossmann",
  5411. "homepage": "http://gos.si"
  5412. }
  5413. ],
  5414. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  5415. "keywords": [
  5416. "docblock",
  5417. "generator",
  5418. "parser"
  5419. ],
  5420. "support": {
  5421. "issues": "https://github.com/phpowermove/docblock/issues",
  5422. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  5423. },
  5424. "time": "2021-09-22T16:57:06+00:00"
  5425. },
  5426. {
  5427. "name": "psr/cache",
  5428. "version": "3.0.0",
  5429. "source": {
  5430. "type": "git",
  5431. "url": "https://github.com/php-fig/cache.git",
  5432. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5433. },
  5434. "dist": {
  5435. "type": "zip",
  5436. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5437. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5438. "shasum": ""
  5439. },
  5440. "require": {
  5441. "php": ">=8.0.0"
  5442. },
  5443. "type": "library",
  5444. "extra": {
  5445. "branch-alias": {
  5446. "dev-master": "1.0.x-dev"
  5447. }
  5448. },
  5449. "autoload": {
  5450. "psr-4": {
  5451. "Psr\\Cache\\": "src/"
  5452. }
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "MIT"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "PHP-FIG",
  5461. "homepage": "https://www.php-fig.org/"
  5462. }
  5463. ],
  5464. "description": "Common interface for caching libraries",
  5465. "keywords": [
  5466. "cache",
  5467. "psr",
  5468. "psr-6"
  5469. ],
  5470. "support": {
  5471. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5472. },
  5473. "time": "2021-02-03T23:26:27+00:00"
  5474. },
  5475. {
  5476. "name": "psr/container",
  5477. "version": "2.0.2",
  5478. "source": {
  5479. "type": "git",
  5480. "url": "https://github.com/php-fig/container.git",
  5481. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5482. },
  5483. "dist": {
  5484. "type": "zip",
  5485. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5486. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5487. "shasum": ""
  5488. },
  5489. "require": {
  5490. "php": ">=7.4.0"
  5491. },
  5492. "type": "library",
  5493. "extra": {
  5494. "branch-alias": {
  5495. "dev-master": "2.0.x-dev"
  5496. }
  5497. },
  5498. "autoload": {
  5499. "psr-4": {
  5500. "Psr\\Container\\": "src/"
  5501. }
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "MIT"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "PHP-FIG",
  5510. "homepage": "https://www.php-fig.org/"
  5511. }
  5512. ],
  5513. "description": "Common Container Interface (PHP FIG PSR-11)",
  5514. "homepage": "https://github.com/php-fig/container",
  5515. "keywords": [
  5516. "PSR-11",
  5517. "container",
  5518. "container-interface",
  5519. "container-interop",
  5520. "psr"
  5521. ],
  5522. "support": {
  5523. "issues": "https://github.com/php-fig/container/issues",
  5524. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5525. },
  5526. "time": "2021-11-05T16:47:00+00:00"
  5527. },
  5528. {
  5529. "name": "psr/event-dispatcher",
  5530. "version": "1.0.0",
  5531. "source": {
  5532. "type": "git",
  5533. "url": "https://github.com/php-fig/event-dispatcher.git",
  5534. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5535. },
  5536. "dist": {
  5537. "type": "zip",
  5538. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5539. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5540. "shasum": ""
  5541. },
  5542. "require": {
  5543. "php": ">=7.2.0"
  5544. },
  5545. "type": "library",
  5546. "extra": {
  5547. "branch-alias": {
  5548. "dev-master": "1.0.x-dev"
  5549. }
  5550. },
  5551. "autoload": {
  5552. "psr-4": {
  5553. "Psr\\EventDispatcher\\": "src/"
  5554. }
  5555. },
  5556. "notification-url": "https://packagist.org/downloads/",
  5557. "license": [
  5558. "MIT"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "PHP-FIG",
  5563. "homepage": "http://www.php-fig.org/"
  5564. }
  5565. ],
  5566. "description": "Standard interfaces for event handling.",
  5567. "keywords": [
  5568. "events",
  5569. "psr",
  5570. "psr-14"
  5571. ],
  5572. "support": {
  5573. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5574. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5575. },
  5576. "time": "2019-01-08T18:20:26+00:00"
  5577. },
  5578. {
  5579. "name": "psr/http-client",
  5580. "version": "1.0.3",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/php-fig/http-client.git",
  5584. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5589. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5590. "shasum": ""
  5591. },
  5592. "require": {
  5593. "php": "^7.0 || ^8.0",
  5594. "psr/http-message": "^1.0 || ^2.0"
  5595. },
  5596. "type": "library",
  5597. "extra": {
  5598. "branch-alias": {
  5599. "dev-master": "1.0.x-dev"
  5600. }
  5601. },
  5602. "autoload": {
  5603. "psr-4": {
  5604. "Psr\\Http\\Client\\": "src/"
  5605. }
  5606. },
  5607. "notification-url": "https://packagist.org/downloads/",
  5608. "license": [
  5609. "MIT"
  5610. ],
  5611. "authors": [
  5612. {
  5613. "name": "PHP-FIG",
  5614. "homepage": "https://www.php-fig.org/"
  5615. }
  5616. ],
  5617. "description": "Common interface for HTTP clients",
  5618. "homepage": "https://github.com/php-fig/http-client",
  5619. "keywords": [
  5620. "http",
  5621. "http-client",
  5622. "psr",
  5623. "psr-18"
  5624. ],
  5625. "support": {
  5626. "source": "https://github.com/php-fig/http-client"
  5627. },
  5628. "time": "2023-09-23T14:17:50+00:00"
  5629. },
  5630. {
  5631. "name": "psr/http-factory",
  5632. "version": "1.0.2",
  5633. "source": {
  5634. "type": "git",
  5635. "url": "https://github.com/php-fig/http-factory.git",
  5636. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5637. },
  5638. "dist": {
  5639. "type": "zip",
  5640. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5641. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5642. "shasum": ""
  5643. },
  5644. "require": {
  5645. "php": ">=7.0.0",
  5646. "psr/http-message": "^1.0 || ^2.0"
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "branch-alias": {
  5651. "dev-master": "1.0.x-dev"
  5652. }
  5653. },
  5654. "autoload": {
  5655. "psr-4": {
  5656. "Psr\\Http\\Message\\": "src/"
  5657. }
  5658. },
  5659. "notification-url": "https://packagist.org/downloads/",
  5660. "license": [
  5661. "MIT"
  5662. ],
  5663. "authors": [
  5664. {
  5665. "name": "PHP-FIG",
  5666. "homepage": "https://www.php-fig.org/"
  5667. }
  5668. ],
  5669. "description": "Common interfaces for PSR-7 HTTP message factories",
  5670. "keywords": [
  5671. "factory",
  5672. "http",
  5673. "message",
  5674. "psr",
  5675. "psr-17",
  5676. "psr-7",
  5677. "request",
  5678. "response"
  5679. ],
  5680. "support": {
  5681. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5682. },
  5683. "time": "2023-04-10T20:10:41+00:00"
  5684. },
  5685. {
  5686. "name": "psr/http-message",
  5687. "version": "2.0",
  5688. "source": {
  5689. "type": "git",
  5690. "url": "https://github.com/php-fig/http-message.git",
  5691. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5692. },
  5693. "dist": {
  5694. "type": "zip",
  5695. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5696. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5697. "shasum": ""
  5698. },
  5699. "require": {
  5700. "php": "^7.2 || ^8.0"
  5701. },
  5702. "type": "library",
  5703. "extra": {
  5704. "branch-alias": {
  5705. "dev-master": "2.0.x-dev"
  5706. }
  5707. },
  5708. "autoload": {
  5709. "psr-4": {
  5710. "Psr\\Http\\Message\\": "src/"
  5711. }
  5712. },
  5713. "notification-url": "https://packagist.org/downloads/",
  5714. "license": [
  5715. "MIT"
  5716. ],
  5717. "authors": [
  5718. {
  5719. "name": "PHP-FIG",
  5720. "homepage": "https://www.php-fig.org/"
  5721. }
  5722. ],
  5723. "description": "Common interface for HTTP messages",
  5724. "homepage": "https://github.com/php-fig/http-message",
  5725. "keywords": [
  5726. "http",
  5727. "http-message",
  5728. "psr",
  5729. "psr-7",
  5730. "request",
  5731. "response"
  5732. ],
  5733. "support": {
  5734. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5735. },
  5736. "time": "2023-04-04T09:54:51+00:00"
  5737. },
  5738. {
  5739. "name": "psr/log",
  5740. "version": "3.0.0",
  5741. "source": {
  5742. "type": "git",
  5743. "url": "https://github.com/php-fig/log.git",
  5744. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5745. },
  5746. "dist": {
  5747. "type": "zip",
  5748. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5749. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5750. "shasum": ""
  5751. },
  5752. "require": {
  5753. "php": ">=8.0.0"
  5754. },
  5755. "type": "library",
  5756. "extra": {
  5757. "branch-alias": {
  5758. "dev-master": "3.x-dev"
  5759. }
  5760. },
  5761. "autoload": {
  5762. "psr-4": {
  5763. "Psr\\Log\\": "src"
  5764. }
  5765. },
  5766. "notification-url": "https://packagist.org/downloads/",
  5767. "license": [
  5768. "MIT"
  5769. ],
  5770. "authors": [
  5771. {
  5772. "name": "PHP-FIG",
  5773. "homepage": "https://www.php-fig.org/"
  5774. }
  5775. ],
  5776. "description": "Common interface for logging libraries",
  5777. "homepage": "https://github.com/php-fig/log",
  5778. "keywords": [
  5779. "log",
  5780. "psr",
  5781. "psr-3"
  5782. ],
  5783. "support": {
  5784. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5785. },
  5786. "time": "2021-07-14T16:46:02+00:00"
  5787. },
  5788. {
  5789. "name": "psy/psysh",
  5790. "version": "v0.12.0",
  5791. "source": {
  5792. "type": "git",
  5793. "url": "https://github.com/bobthecow/psysh.git",
  5794. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  5795. },
  5796. "dist": {
  5797. "type": "zip",
  5798. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5799. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5800. "shasum": ""
  5801. },
  5802. "require": {
  5803. "ext-json": "*",
  5804. "ext-tokenizer": "*",
  5805. "nikic/php-parser": "^5.0 || ^4.0",
  5806. "php": "^8.0 || ^7.4",
  5807. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5808. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5809. },
  5810. "conflict": {
  5811. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5812. },
  5813. "require-dev": {
  5814. "bamarni/composer-bin-plugin": "^1.2"
  5815. },
  5816. "suggest": {
  5817. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5818. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5819. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5820. },
  5821. "bin": [
  5822. "bin/psysh"
  5823. ],
  5824. "type": "library",
  5825. "extra": {
  5826. "branch-alias": {
  5827. "dev-main": "0.12.x-dev"
  5828. },
  5829. "bamarni-bin": {
  5830. "bin-links": false,
  5831. "forward-command": false
  5832. }
  5833. },
  5834. "autoload": {
  5835. "files": [
  5836. "src/functions.php"
  5837. ],
  5838. "psr-4": {
  5839. "Psy\\": "src/"
  5840. }
  5841. },
  5842. "notification-url": "https://packagist.org/downloads/",
  5843. "license": [
  5844. "MIT"
  5845. ],
  5846. "authors": [
  5847. {
  5848. "name": "Justin Hileman",
  5849. "email": "justin@justinhileman.info",
  5850. "homepage": "http://justinhileman.com"
  5851. }
  5852. ],
  5853. "description": "An interactive shell for modern PHP.",
  5854. "homepage": "http://psysh.org",
  5855. "keywords": [
  5856. "REPL",
  5857. "console",
  5858. "interactive",
  5859. "shell"
  5860. ],
  5861. "support": {
  5862. "issues": "https://github.com/bobthecow/psysh/issues",
  5863. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  5864. },
  5865. "time": "2023-12-20T15:28:09+00:00"
  5866. },
  5867. {
  5868. "name": "ralouphie/getallheaders",
  5869. "version": "3.0.3",
  5870. "source": {
  5871. "type": "git",
  5872. "url": "https://github.com/ralouphie/getallheaders.git",
  5873. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5874. },
  5875. "dist": {
  5876. "type": "zip",
  5877. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5878. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5879. "shasum": ""
  5880. },
  5881. "require": {
  5882. "php": ">=5.6"
  5883. },
  5884. "require-dev": {
  5885. "php-coveralls/php-coveralls": "^2.1",
  5886. "phpunit/phpunit": "^5 || ^6.5"
  5887. },
  5888. "type": "library",
  5889. "autoload": {
  5890. "files": [
  5891. "src/getallheaders.php"
  5892. ]
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "MIT"
  5897. ],
  5898. "authors": [
  5899. {
  5900. "name": "Ralph Khattar",
  5901. "email": "ralph.khattar@gmail.com"
  5902. }
  5903. ],
  5904. "description": "A polyfill for getallheaders.",
  5905. "support": {
  5906. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5907. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5908. },
  5909. "time": "2019-03-08T08:55:37+00:00"
  5910. },
  5911. {
  5912. "name": "sebastian/diff",
  5913. "version": "4.0.6",
  5914. "source": {
  5915. "type": "git",
  5916. "url": "https://github.com/sebastianbergmann/diff.git",
  5917. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  5918. },
  5919. "dist": {
  5920. "type": "zip",
  5921. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  5922. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  5923. "shasum": ""
  5924. },
  5925. "require": {
  5926. "php": ">=7.3"
  5927. },
  5928. "require-dev": {
  5929. "phpunit/phpunit": "^9.3",
  5930. "symfony/process": "^4.2 || ^5"
  5931. },
  5932. "type": "library",
  5933. "extra": {
  5934. "branch-alias": {
  5935. "dev-master": "4.0-dev"
  5936. }
  5937. },
  5938. "autoload": {
  5939. "classmap": [
  5940. "src/"
  5941. ]
  5942. },
  5943. "notification-url": "https://packagist.org/downloads/",
  5944. "license": [
  5945. "BSD-3-Clause"
  5946. ],
  5947. "authors": [
  5948. {
  5949. "name": "Sebastian Bergmann",
  5950. "email": "sebastian@phpunit.de"
  5951. },
  5952. {
  5953. "name": "Kore Nordmann",
  5954. "email": "mail@kore-nordmann.de"
  5955. }
  5956. ],
  5957. "description": "Diff implementation",
  5958. "homepage": "https://github.com/sebastianbergmann/diff",
  5959. "keywords": [
  5960. "diff",
  5961. "udiff",
  5962. "unidiff",
  5963. "unified diff"
  5964. ],
  5965. "support": {
  5966. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5967. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  5968. },
  5969. "funding": [
  5970. {
  5971. "url": "https://github.com/sebastianbergmann",
  5972. "type": "github"
  5973. }
  5974. ],
  5975. "time": "2024-03-02T06:30:58+00:00"
  5976. },
  5977. {
  5978. "name": "symfony/console",
  5979. "version": "v6.4.4",
  5980. "source": {
  5981. "type": "git",
  5982. "url": "https://github.com/symfony/console.git",
  5983. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
  5984. },
  5985. "dist": {
  5986. "type": "zip",
  5987. "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
  5988. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
  5989. "shasum": ""
  5990. },
  5991. "require": {
  5992. "php": ">=8.1",
  5993. "symfony/deprecation-contracts": "^2.5|^3",
  5994. "symfony/polyfill-mbstring": "~1.0",
  5995. "symfony/service-contracts": "^2.5|^3",
  5996. "symfony/string": "^5.4|^6.0|^7.0"
  5997. },
  5998. "conflict": {
  5999. "symfony/dependency-injection": "<5.4",
  6000. "symfony/dotenv": "<5.4",
  6001. "symfony/event-dispatcher": "<5.4",
  6002. "symfony/lock": "<5.4",
  6003. "symfony/process": "<5.4"
  6004. },
  6005. "provide": {
  6006. "psr/log-implementation": "1.0|2.0|3.0"
  6007. },
  6008. "require-dev": {
  6009. "psr/log": "^1|^2|^3",
  6010. "symfony/config": "^5.4|^6.0|^7.0",
  6011. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6012. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6013. "symfony/http-foundation": "^6.4|^7.0",
  6014. "symfony/http-kernel": "^6.4|^7.0",
  6015. "symfony/lock": "^5.4|^6.0|^7.0",
  6016. "symfony/messenger": "^5.4|^6.0|^7.0",
  6017. "symfony/process": "^5.4|^6.0|^7.0",
  6018. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6019. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6020. },
  6021. "type": "library",
  6022. "autoload": {
  6023. "psr-4": {
  6024. "Symfony\\Component\\Console\\": ""
  6025. },
  6026. "exclude-from-classmap": [
  6027. "/Tests/"
  6028. ]
  6029. },
  6030. "notification-url": "https://packagist.org/downloads/",
  6031. "license": [
  6032. "MIT"
  6033. ],
  6034. "authors": [
  6035. {
  6036. "name": "Fabien Potencier",
  6037. "email": "fabien@symfony.com"
  6038. },
  6039. {
  6040. "name": "Symfony Community",
  6041. "homepage": "https://symfony.com/contributors"
  6042. }
  6043. ],
  6044. "description": "Eases the creation of beautiful and testable command line interfaces",
  6045. "homepage": "https://symfony.com",
  6046. "keywords": [
  6047. "cli",
  6048. "command-line",
  6049. "console",
  6050. "terminal"
  6051. ],
  6052. "support": {
  6053. "source": "https://github.com/symfony/console/tree/v6.4.4"
  6054. },
  6055. "funding": [
  6056. {
  6057. "url": "https://symfony.com/sponsor",
  6058. "type": "custom"
  6059. },
  6060. {
  6061. "url": "https://github.com/fabpot",
  6062. "type": "github"
  6063. },
  6064. {
  6065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6066. "type": "tidelift"
  6067. }
  6068. ],
  6069. "time": "2024-02-22T20:27:10+00:00"
  6070. },
  6071. {
  6072. "name": "symfony/dependency-injection",
  6073. "version": "v6.4.4",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/symfony/dependency-injection.git",
  6077. "reference": "6236e5e843cb763e9d0f74245678b994afea5363"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6236e5e843cb763e9d0f74245678b994afea5363",
  6082. "reference": "6236e5e843cb763e9d0f74245678b994afea5363",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=8.1",
  6087. "psr/container": "^1.1|^2.0",
  6088. "symfony/deprecation-contracts": "^2.5|^3",
  6089. "symfony/service-contracts": "^2.5|^3.0",
  6090. "symfony/var-exporter": "^6.2.10|^7.0"
  6091. },
  6092. "conflict": {
  6093. "ext-psr": "<1.1|>=2",
  6094. "symfony/config": "<6.1",
  6095. "symfony/finder": "<5.4",
  6096. "symfony/proxy-manager-bridge": "<6.3",
  6097. "symfony/yaml": "<5.4"
  6098. },
  6099. "provide": {
  6100. "psr/container-implementation": "1.1|2.0",
  6101. "symfony/service-implementation": "1.1|2.0|3.0"
  6102. },
  6103. "require-dev": {
  6104. "symfony/config": "^6.1|^7.0",
  6105. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6106. "symfony/yaml": "^5.4|^6.0|^7.0"
  6107. },
  6108. "type": "library",
  6109. "autoload": {
  6110. "psr-4": {
  6111. "Symfony\\Component\\DependencyInjection\\": ""
  6112. },
  6113. "exclude-from-classmap": [
  6114. "/Tests/"
  6115. ]
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "MIT"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Fabien Potencier",
  6124. "email": "fabien@symfony.com"
  6125. },
  6126. {
  6127. "name": "Symfony Community",
  6128. "homepage": "https://symfony.com/contributors"
  6129. }
  6130. ],
  6131. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  6132. "homepage": "https://symfony.com",
  6133. "support": {
  6134. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.4"
  6135. },
  6136. "funding": [
  6137. {
  6138. "url": "https://symfony.com/sponsor",
  6139. "type": "custom"
  6140. },
  6141. {
  6142. "url": "https://github.com/fabpot",
  6143. "type": "github"
  6144. },
  6145. {
  6146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6147. "type": "tidelift"
  6148. }
  6149. ],
  6150. "time": "2024-02-22T20:27:10+00:00"
  6151. },
  6152. {
  6153. "name": "symfony/deprecation-contracts",
  6154. "version": "v3.4.0",
  6155. "source": {
  6156. "type": "git",
  6157. "url": "https://github.com/symfony/deprecation-contracts.git",
  6158. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6159. },
  6160. "dist": {
  6161. "type": "zip",
  6162. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6163. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6164. "shasum": ""
  6165. },
  6166. "require": {
  6167. "php": ">=8.1"
  6168. },
  6169. "type": "library",
  6170. "extra": {
  6171. "branch-alias": {
  6172. "dev-main": "3.4-dev"
  6173. },
  6174. "thanks": {
  6175. "name": "symfony/contracts",
  6176. "url": "https://github.com/symfony/contracts"
  6177. }
  6178. },
  6179. "autoload": {
  6180. "files": [
  6181. "function.php"
  6182. ]
  6183. },
  6184. "notification-url": "https://packagist.org/downloads/",
  6185. "license": [
  6186. "MIT"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "Nicolas Grekas",
  6191. "email": "p@tchwork.com"
  6192. },
  6193. {
  6194. "name": "Symfony Community",
  6195. "homepage": "https://symfony.com/contributors"
  6196. }
  6197. ],
  6198. "description": "A generic function and convention to trigger deprecation notices",
  6199. "homepage": "https://symfony.com",
  6200. "support": {
  6201. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  6202. },
  6203. "funding": [
  6204. {
  6205. "url": "https://symfony.com/sponsor",
  6206. "type": "custom"
  6207. },
  6208. {
  6209. "url": "https://github.com/fabpot",
  6210. "type": "github"
  6211. },
  6212. {
  6213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6214. "type": "tidelift"
  6215. }
  6216. ],
  6217. "time": "2023-05-23T14:45:45+00:00"
  6218. },
  6219. {
  6220. "name": "symfony/error-handler",
  6221. "version": "v6.4.4",
  6222. "source": {
  6223. "type": "git",
  6224. "url": "https://github.com/symfony/error-handler.git",
  6225. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
  6226. },
  6227. "dist": {
  6228. "type": "zip",
  6229. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
  6230. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
  6231. "shasum": ""
  6232. },
  6233. "require": {
  6234. "php": ">=8.1",
  6235. "psr/log": "^1|^2|^3",
  6236. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6237. },
  6238. "conflict": {
  6239. "symfony/deprecation-contracts": "<2.5",
  6240. "symfony/http-kernel": "<6.4"
  6241. },
  6242. "require-dev": {
  6243. "symfony/deprecation-contracts": "^2.5|^3",
  6244. "symfony/http-kernel": "^6.4|^7.0",
  6245. "symfony/serializer": "^5.4|^6.0|^7.0"
  6246. },
  6247. "bin": [
  6248. "Resources/bin/patch-type-declarations"
  6249. ],
  6250. "type": "library",
  6251. "autoload": {
  6252. "psr-4": {
  6253. "Symfony\\Component\\ErrorHandler\\": ""
  6254. },
  6255. "exclude-from-classmap": [
  6256. "/Tests/"
  6257. ]
  6258. },
  6259. "notification-url": "https://packagist.org/downloads/",
  6260. "license": [
  6261. "MIT"
  6262. ],
  6263. "authors": [
  6264. {
  6265. "name": "Fabien Potencier",
  6266. "email": "fabien@symfony.com"
  6267. },
  6268. {
  6269. "name": "Symfony Community",
  6270. "homepage": "https://symfony.com/contributors"
  6271. }
  6272. ],
  6273. "description": "Provides tools to manage errors and ease debugging PHP code",
  6274. "homepage": "https://symfony.com",
  6275. "support": {
  6276. "source": "https://github.com/symfony/error-handler/tree/v6.4.4"
  6277. },
  6278. "funding": [
  6279. {
  6280. "url": "https://symfony.com/sponsor",
  6281. "type": "custom"
  6282. },
  6283. {
  6284. "url": "https://github.com/fabpot",
  6285. "type": "github"
  6286. },
  6287. {
  6288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6289. "type": "tidelift"
  6290. }
  6291. ],
  6292. "time": "2024-02-22T20:27:10+00:00"
  6293. },
  6294. {
  6295. "name": "symfony/event-dispatcher",
  6296. "version": "v6.4.3",
  6297. "source": {
  6298. "type": "git",
  6299. "url": "https://github.com/symfony/event-dispatcher.git",
  6300. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  6301. },
  6302. "dist": {
  6303. "type": "zip",
  6304. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6305. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6306. "shasum": ""
  6307. },
  6308. "require": {
  6309. "php": ">=8.1",
  6310. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6311. },
  6312. "conflict": {
  6313. "symfony/dependency-injection": "<5.4",
  6314. "symfony/service-contracts": "<2.5"
  6315. },
  6316. "provide": {
  6317. "psr/event-dispatcher-implementation": "1.0",
  6318. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6319. },
  6320. "require-dev": {
  6321. "psr/log": "^1|^2|^3",
  6322. "symfony/config": "^5.4|^6.0|^7.0",
  6323. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6324. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6325. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6326. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6327. "symfony/service-contracts": "^2.5|^3",
  6328. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  6329. },
  6330. "type": "library",
  6331. "autoload": {
  6332. "psr-4": {
  6333. "Symfony\\Component\\EventDispatcher\\": ""
  6334. },
  6335. "exclude-from-classmap": [
  6336. "/Tests/"
  6337. ]
  6338. },
  6339. "notification-url": "https://packagist.org/downloads/",
  6340. "license": [
  6341. "MIT"
  6342. ],
  6343. "authors": [
  6344. {
  6345. "name": "Fabien Potencier",
  6346. "email": "fabien@symfony.com"
  6347. },
  6348. {
  6349. "name": "Symfony Community",
  6350. "homepage": "https://symfony.com/contributors"
  6351. }
  6352. ],
  6353. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6354. "homepage": "https://symfony.com",
  6355. "support": {
  6356. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  6357. },
  6358. "funding": [
  6359. {
  6360. "url": "https://symfony.com/sponsor",
  6361. "type": "custom"
  6362. },
  6363. {
  6364. "url": "https://github.com/fabpot",
  6365. "type": "github"
  6366. },
  6367. {
  6368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6369. "type": "tidelift"
  6370. }
  6371. ],
  6372. "time": "2024-01-23T14:51:35+00:00"
  6373. },
  6374. {
  6375. "name": "symfony/event-dispatcher-contracts",
  6376. "version": "v3.4.0",
  6377. "source": {
  6378. "type": "git",
  6379. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6380. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6381. },
  6382. "dist": {
  6383. "type": "zip",
  6384. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6385. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6386. "shasum": ""
  6387. },
  6388. "require": {
  6389. "php": ">=8.1",
  6390. "psr/event-dispatcher": "^1"
  6391. },
  6392. "type": "library",
  6393. "extra": {
  6394. "branch-alias": {
  6395. "dev-main": "3.4-dev"
  6396. },
  6397. "thanks": {
  6398. "name": "symfony/contracts",
  6399. "url": "https://github.com/symfony/contracts"
  6400. }
  6401. },
  6402. "autoload": {
  6403. "psr-4": {
  6404. "Symfony\\Contracts\\EventDispatcher\\": ""
  6405. }
  6406. },
  6407. "notification-url": "https://packagist.org/downloads/",
  6408. "license": [
  6409. "MIT"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Nicolas Grekas",
  6414. "email": "p@tchwork.com"
  6415. },
  6416. {
  6417. "name": "Symfony Community",
  6418. "homepage": "https://symfony.com/contributors"
  6419. }
  6420. ],
  6421. "description": "Generic abstractions related to dispatching event",
  6422. "homepage": "https://symfony.com",
  6423. "keywords": [
  6424. "abstractions",
  6425. "contracts",
  6426. "decoupling",
  6427. "interfaces",
  6428. "interoperability",
  6429. "standards"
  6430. ],
  6431. "support": {
  6432. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  6433. },
  6434. "funding": [
  6435. {
  6436. "url": "https://symfony.com/sponsor",
  6437. "type": "custom"
  6438. },
  6439. {
  6440. "url": "https://github.com/fabpot",
  6441. "type": "github"
  6442. },
  6443. {
  6444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6445. "type": "tidelift"
  6446. }
  6447. ],
  6448. "time": "2023-05-23T14:45:45+00:00"
  6449. },
  6450. {
  6451. "name": "symfony/filesystem",
  6452. "version": "v6.4.3",
  6453. "source": {
  6454. "type": "git",
  6455. "url": "https://github.com/symfony/filesystem.git",
  6456. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  6457. },
  6458. "dist": {
  6459. "type": "zip",
  6460. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6461. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6462. "shasum": ""
  6463. },
  6464. "require": {
  6465. "php": ">=8.1",
  6466. "symfony/polyfill-ctype": "~1.8",
  6467. "symfony/polyfill-mbstring": "~1.8"
  6468. },
  6469. "type": "library",
  6470. "autoload": {
  6471. "psr-4": {
  6472. "Symfony\\Component\\Filesystem\\": ""
  6473. },
  6474. "exclude-from-classmap": [
  6475. "/Tests/"
  6476. ]
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "MIT"
  6481. ],
  6482. "authors": [
  6483. {
  6484. "name": "Fabien Potencier",
  6485. "email": "fabien@symfony.com"
  6486. },
  6487. {
  6488. "name": "Symfony Community",
  6489. "homepage": "https://symfony.com/contributors"
  6490. }
  6491. ],
  6492. "description": "Provides basic utilities for the filesystem",
  6493. "homepage": "https://symfony.com",
  6494. "support": {
  6495. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  6496. },
  6497. "funding": [
  6498. {
  6499. "url": "https://symfony.com/sponsor",
  6500. "type": "custom"
  6501. },
  6502. {
  6503. "url": "https://github.com/fabpot",
  6504. "type": "github"
  6505. },
  6506. {
  6507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6508. "type": "tidelift"
  6509. }
  6510. ],
  6511. "time": "2024-01-23T14:51:35+00:00"
  6512. },
  6513. {
  6514. "name": "symfony/finder",
  6515. "version": "v6.4.0",
  6516. "source": {
  6517. "type": "git",
  6518. "url": "https://github.com/symfony/finder.git",
  6519. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  6520. },
  6521. "dist": {
  6522. "type": "zip",
  6523. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  6524. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  6525. "shasum": ""
  6526. },
  6527. "require": {
  6528. "php": ">=8.1"
  6529. },
  6530. "require-dev": {
  6531. "symfony/filesystem": "^6.0|^7.0"
  6532. },
  6533. "type": "library",
  6534. "autoload": {
  6535. "psr-4": {
  6536. "Symfony\\Component\\Finder\\": ""
  6537. },
  6538. "exclude-from-classmap": [
  6539. "/Tests/"
  6540. ]
  6541. },
  6542. "notification-url": "https://packagist.org/downloads/",
  6543. "license": [
  6544. "MIT"
  6545. ],
  6546. "authors": [
  6547. {
  6548. "name": "Fabien Potencier",
  6549. "email": "fabien@symfony.com"
  6550. },
  6551. {
  6552. "name": "Symfony Community",
  6553. "homepage": "https://symfony.com/contributors"
  6554. }
  6555. ],
  6556. "description": "Finds files and directories via an intuitive fluent interface",
  6557. "homepage": "https://symfony.com",
  6558. "support": {
  6559. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  6560. },
  6561. "funding": [
  6562. {
  6563. "url": "https://symfony.com/sponsor",
  6564. "type": "custom"
  6565. },
  6566. {
  6567. "url": "https://github.com/fabpot",
  6568. "type": "github"
  6569. },
  6570. {
  6571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6572. "type": "tidelift"
  6573. }
  6574. ],
  6575. "time": "2023-10-31T17:30:12+00:00"
  6576. },
  6577. {
  6578. "name": "symfony/http-foundation",
  6579. "version": "v6.4.4",
  6580. "source": {
  6581. "type": "git",
  6582. "url": "https://github.com/symfony/http-foundation.git",
  6583. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
  6584. },
  6585. "dist": {
  6586. "type": "zip",
  6587. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6588. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6589. "shasum": ""
  6590. },
  6591. "require": {
  6592. "php": ">=8.1",
  6593. "symfony/deprecation-contracts": "^2.5|^3",
  6594. "symfony/polyfill-mbstring": "~1.1",
  6595. "symfony/polyfill-php83": "^1.27"
  6596. },
  6597. "conflict": {
  6598. "symfony/cache": "<6.3"
  6599. },
  6600. "require-dev": {
  6601. "doctrine/dbal": "^2.13.1|^3|^4",
  6602. "predis/predis": "^1.1|^2.0",
  6603. "symfony/cache": "^6.3|^7.0",
  6604. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6605. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6606. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  6607. "symfony/mime": "^5.4|^6.0|^7.0",
  6608. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  6609. },
  6610. "type": "library",
  6611. "autoload": {
  6612. "psr-4": {
  6613. "Symfony\\Component\\HttpFoundation\\": ""
  6614. },
  6615. "exclude-from-classmap": [
  6616. "/Tests/"
  6617. ]
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Fabien Potencier",
  6626. "email": "fabien@symfony.com"
  6627. },
  6628. {
  6629. "name": "Symfony Community",
  6630. "homepage": "https://symfony.com/contributors"
  6631. }
  6632. ],
  6633. "description": "Defines an object-oriented layer for the HTTP specification",
  6634. "homepage": "https://symfony.com",
  6635. "support": {
  6636. "source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
  6637. },
  6638. "funding": [
  6639. {
  6640. "url": "https://symfony.com/sponsor",
  6641. "type": "custom"
  6642. },
  6643. {
  6644. "url": "https://github.com/fabpot",
  6645. "type": "github"
  6646. },
  6647. {
  6648. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6649. "type": "tidelift"
  6650. }
  6651. ],
  6652. "time": "2024-02-08T15:01:18+00:00"
  6653. },
  6654. {
  6655. "name": "symfony/http-kernel",
  6656. "version": "v6.4.4",
  6657. "source": {
  6658. "type": "git",
  6659. "url": "https://github.com/symfony/http-kernel.git",
  6660. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
  6661. },
  6662. "dist": {
  6663. "type": "zip",
  6664. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
  6665. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
  6666. "shasum": ""
  6667. },
  6668. "require": {
  6669. "php": ">=8.1",
  6670. "psr/log": "^1|^2|^3",
  6671. "symfony/deprecation-contracts": "^2.5|^3",
  6672. "symfony/error-handler": "^6.4|^7.0",
  6673. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6674. "symfony/http-foundation": "^6.4|^7.0",
  6675. "symfony/polyfill-ctype": "^1.8"
  6676. },
  6677. "conflict": {
  6678. "symfony/browser-kit": "<5.4",
  6679. "symfony/cache": "<5.4",
  6680. "symfony/config": "<6.1",
  6681. "symfony/console": "<5.4",
  6682. "symfony/dependency-injection": "<6.4",
  6683. "symfony/doctrine-bridge": "<5.4",
  6684. "symfony/form": "<5.4",
  6685. "symfony/http-client": "<5.4",
  6686. "symfony/http-client-contracts": "<2.5",
  6687. "symfony/mailer": "<5.4",
  6688. "symfony/messenger": "<5.4",
  6689. "symfony/translation": "<5.4",
  6690. "symfony/translation-contracts": "<2.5",
  6691. "symfony/twig-bridge": "<5.4",
  6692. "symfony/validator": "<6.4",
  6693. "symfony/var-dumper": "<6.3",
  6694. "twig/twig": "<2.13"
  6695. },
  6696. "provide": {
  6697. "psr/log-implementation": "1.0|2.0|3.0"
  6698. },
  6699. "require-dev": {
  6700. "psr/cache": "^1.0|^2.0|^3.0",
  6701. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  6702. "symfony/clock": "^6.2|^7.0",
  6703. "symfony/config": "^6.1|^7.0",
  6704. "symfony/console": "^5.4|^6.0|^7.0",
  6705. "symfony/css-selector": "^5.4|^6.0|^7.0",
  6706. "symfony/dependency-injection": "^6.4|^7.0",
  6707. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  6708. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6709. "symfony/finder": "^5.4|^6.0|^7.0",
  6710. "symfony/http-client-contracts": "^2.5|^3",
  6711. "symfony/process": "^5.4|^6.0|^7.0",
  6712. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  6713. "symfony/routing": "^5.4|^6.0|^7.0",
  6714. "symfony/serializer": "^6.4.4|^7.0.4",
  6715. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6716. "symfony/translation": "^5.4|^6.0|^7.0",
  6717. "symfony/translation-contracts": "^2.5|^3",
  6718. "symfony/uid": "^5.4|^6.0|^7.0",
  6719. "symfony/validator": "^6.4|^7.0",
  6720. "symfony/var-exporter": "^6.2|^7.0",
  6721. "twig/twig": "^2.13|^3.0.4"
  6722. },
  6723. "type": "library",
  6724. "autoload": {
  6725. "psr-4": {
  6726. "Symfony\\Component\\HttpKernel\\": ""
  6727. },
  6728. "exclude-from-classmap": [
  6729. "/Tests/"
  6730. ]
  6731. },
  6732. "notification-url": "https://packagist.org/downloads/",
  6733. "license": [
  6734. "MIT"
  6735. ],
  6736. "authors": [
  6737. {
  6738. "name": "Fabien Potencier",
  6739. "email": "fabien@symfony.com"
  6740. },
  6741. {
  6742. "name": "Symfony Community",
  6743. "homepage": "https://symfony.com/contributors"
  6744. }
  6745. ],
  6746. "description": "Provides a structured process for converting a Request into a Response",
  6747. "homepage": "https://symfony.com",
  6748. "support": {
  6749. "source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
  6750. },
  6751. "funding": [
  6752. {
  6753. "url": "https://symfony.com/sponsor",
  6754. "type": "custom"
  6755. },
  6756. {
  6757. "url": "https://github.com/fabpot",
  6758. "type": "github"
  6759. },
  6760. {
  6761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6762. "type": "tidelift"
  6763. }
  6764. ],
  6765. "time": "2024-02-27T06:32:13+00:00"
  6766. },
  6767. {
  6768. "name": "symfony/mailer",
  6769. "version": "v6.4.4",
  6770. "source": {
  6771. "type": "git",
  6772. "url": "https://github.com/symfony/mailer.git",
  6773. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
  6774. },
  6775. "dist": {
  6776. "type": "zip",
  6777. "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
  6778. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
  6779. "shasum": ""
  6780. },
  6781. "require": {
  6782. "egulias/email-validator": "^2.1.10|^3|^4",
  6783. "php": ">=8.1",
  6784. "psr/event-dispatcher": "^1",
  6785. "psr/log": "^1|^2|^3",
  6786. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6787. "symfony/mime": "^6.2|^7.0",
  6788. "symfony/service-contracts": "^2.5|^3"
  6789. },
  6790. "conflict": {
  6791. "symfony/http-client-contracts": "<2.5",
  6792. "symfony/http-kernel": "<5.4",
  6793. "symfony/messenger": "<6.2",
  6794. "symfony/mime": "<6.2",
  6795. "symfony/twig-bridge": "<6.2.1"
  6796. },
  6797. "require-dev": {
  6798. "symfony/console": "^5.4|^6.0|^7.0",
  6799. "symfony/http-client": "^5.4|^6.0|^7.0",
  6800. "symfony/messenger": "^6.2|^7.0",
  6801. "symfony/twig-bridge": "^6.2|^7.0"
  6802. },
  6803. "type": "library",
  6804. "autoload": {
  6805. "psr-4": {
  6806. "Symfony\\Component\\Mailer\\": ""
  6807. },
  6808. "exclude-from-classmap": [
  6809. "/Tests/"
  6810. ]
  6811. },
  6812. "notification-url": "https://packagist.org/downloads/",
  6813. "license": [
  6814. "MIT"
  6815. ],
  6816. "authors": [
  6817. {
  6818. "name": "Fabien Potencier",
  6819. "email": "fabien@symfony.com"
  6820. },
  6821. {
  6822. "name": "Symfony Community",
  6823. "homepage": "https://symfony.com/contributors"
  6824. }
  6825. ],
  6826. "description": "Helps sending emails",
  6827. "homepage": "https://symfony.com",
  6828. "support": {
  6829. "source": "https://github.com/symfony/mailer/tree/v6.4.4"
  6830. },
  6831. "funding": [
  6832. {
  6833. "url": "https://symfony.com/sponsor",
  6834. "type": "custom"
  6835. },
  6836. {
  6837. "url": "https://github.com/fabpot",
  6838. "type": "github"
  6839. },
  6840. {
  6841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6842. "type": "tidelift"
  6843. }
  6844. ],
  6845. "time": "2024-02-03T21:33:47+00:00"
  6846. },
  6847. {
  6848. "name": "symfony/mime",
  6849. "version": "v6.4.3",
  6850. "source": {
  6851. "type": "git",
  6852. "url": "https://github.com/symfony/mime.git",
  6853. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  6854. },
  6855. "dist": {
  6856. "type": "zip",
  6857. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  6858. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  6859. "shasum": ""
  6860. },
  6861. "require": {
  6862. "php": ">=8.1",
  6863. "symfony/deprecation-contracts": "^2.5|^3",
  6864. "symfony/polyfill-intl-idn": "^1.10",
  6865. "symfony/polyfill-mbstring": "^1.0"
  6866. },
  6867. "conflict": {
  6868. "egulias/email-validator": "~3.0.0",
  6869. "phpdocumentor/reflection-docblock": "<3.2.2",
  6870. "phpdocumentor/type-resolver": "<1.4.0",
  6871. "symfony/mailer": "<5.4",
  6872. "symfony/serializer": "<6.3.2"
  6873. },
  6874. "require-dev": {
  6875. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6876. "league/html-to-markdown": "^5.0",
  6877. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6878. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6879. "symfony/property-access": "^5.4|^6.0|^7.0",
  6880. "symfony/property-info": "^5.4|^6.0|^7.0",
  6881. "symfony/serializer": "^6.3.2|^7.0"
  6882. },
  6883. "type": "library",
  6884. "autoload": {
  6885. "psr-4": {
  6886. "Symfony\\Component\\Mime\\": ""
  6887. },
  6888. "exclude-from-classmap": [
  6889. "/Tests/"
  6890. ]
  6891. },
  6892. "notification-url": "https://packagist.org/downloads/",
  6893. "license": [
  6894. "MIT"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Fabien Potencier",
  6899. "email": "fabien@symfony.com"
  6900. },
  6901. {
  6902. "name": "Symfony Community",
  6903. "homepage": "https://symfony.com/contributors"
  6904. }
  6905. ],
  6906. "description": "Allows manipulating MIME messages",
  6907. "homepage": "https://symfony.com",
  6908. "keywords": [
  6909. "mime",
  6910. "mime-type"
  6911. ],
  6912. "support": {
  6913. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  6914. },
  6915. "funding": [
  6916. {
  6917. "url": "https://symfony.com/sponsor",
  6918. "type": "custom"
  6919. },
  6920. {
  6921. "url": "https://github.com/fabpot",
  6922. "type": "github"
  6923. },
  6924. {
  6925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6926. "type": "tidelift"
  6927. }
  6928. ],
  6929. "time": "2024-01-30T08:32:12+00:00"
  6930. },
  6931. {
  6932. "name": "symfony/polyfill-ctype",
  6933. "version": "v1.28.0",
  6934. "source": {
  6935. "type": "git",
  6936. "url": "https://github.com/symfony/polyfill-ctype.git",
  6937. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6938. },
  6939. "dist": {
  6940. "type": "zip",
  6941. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6942. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6943. "shasum": ""
  6944. },
  6945. "require": {
  6946. "php": ">=7.1"
  6947. },
  6948. "provide": {
  6949. "ext-ctype": "*"
  6950. },
  6951. "suggest": {
  6952. "ext-ctype": "For best performance"
  6953. },
  6954. "type": "library",
  6955. "extra": {
  6956. "branch-alias": {
  6957. "dev-main": "1.28-dev"
  6958. },
  6959. "thanks": {
  6960. "name": "symfony/polyfill",
  6961. "url": "https://github.com/symfony/polyfill"
  6962. }
  6963. },
  6964. "autoload": {
  6965. "files": [
  6966. "bootstrap.php"
  6967. ],
  6968. "psr-4": {
  6969. "Symfony\\Polyfill\\Ctype\\": ""
  6970. }
  6971. },
  6972. "notification-url": "https://packagist.org/downloads/",
  6973. "license": [
  6974. "MIT"
  6975. ],
  6976. "authors": [
  6977. {
  6978. "name": "Gert de Pagter",
  6979. "email": "BackEndTea@gmail.com"
  6980. },
  6981. {
  6982. "name": "Symfony Community",
  6983. "homepage": "https://symfony.com/contributors"
  6984. }
  6985. ],
  6986. "description": "Symfony polyfill for ctype functions",
  6987. "homepage": "https://symfony.com",
  6988. "keywords": [
  6989. "compatibility",
  6990. "ctype",
  6991. "polyfill",
  6992. "portable"
  6993. ],
  6994. "support": {
  6995. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6996. },
  6997. "funding": [
  6998. {
  6999. "url": "https://symfony.com/sponsor",
  7000. "type": "custom"
  7001. },
  7002. {
  7003. "url": "https://github.com/fabpot",
  7004. "type": "github"
  7005. },
  7006. {
  7007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7008. "type": "tidelift"
  7009. }
  7010. ],
  7011. "time": "2023-01-26T09:26:14+00:00"
  7012. },
  7013. {
  7014. "name": "symfony/polyfill-iconv",
  7015. "version": "v1.28.0",
  7016. "source": {
  7017. "type": "git",
  7018. "url": "https://github.com/symfony/polyfill-iconv.git",
  7019. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7020. },
  7021. "dist": {
  7022. "type": "zip",
  7023. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7024. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7025. "shasum": ""
  7026. },
  7027. "require": {
  7028. "php": ">=7.1"
  7029. },
  7030. "provide": {
  7031. "ext-iconv": "*"
  7032. },
  7033. "suggest": {
  7034. "ext-iconv": "For best performance"
  7035. },
  7036. "type": "library",
  7037. "extra": {
  7038. "branch-alias": {
  7039. "dev-main": "1.28-dev"
  7040. },
  7041. "thanks": {
  7042. "name": "symfony/polyfill",
  7043. "url": "https://github.com/symfony/polyfill"
  7044. }
  7045. },
  7046. "autoload": {
  7047. "files": [
  7048. "bootstrap.php"
  7049. ],
  7050. "psr-4": {
  7051. "Symfony\\Polyfill\\Iconv\\": ""
  7052. }
  7053. },
  7054. "notification-url": "https://packagist.org/downloads/",
  7055. "license": [
  7056. "MIT"
  7057. ],
  7058. "authors": [
  7059. {
  7060. "name": "Nicolas Grekas",
  7061. "email": "p@tchwork.com"
  7062. },
  7063. {
  7064. "name": "Symfony Community",
  7065. "homepage": "https://symfony.com/contributors"
  7066. }
  7067. ],
  7068. "description": "Symfony polyfill for the Iconv extension",
  7069. "homepage": "https://symfony.com",
  7070. "keywords": [
  7071. "compatibility",
  7072. "iconv",
  7073. "polyfill",
  7074. "portable",
  7075. "shim"
  7076. ],
  7077. "support": {
  7078. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7079. },
  7080. "funding": [
  7081. {
  7082. "url": "https://symfony.com/sponsor",
  7083. "type": "custom"
  7084. },
  7085. {
  7086. "url": "https://github.com/fabpot",
  7087. "type": "github"
  7088. },
  7089. {
  7090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7091. "type": "tidelift"
  7092. }
  7093. ],
  7094. "time": "2023-01-26T09:26:14+00:00"
  7095. },
  7096. {
  7097. "name": "symfony/polyfill-intl-grapheme",
  7098. "version": "v1.28.0",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7102. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7107. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7108. "shasum": ""
  7109. },
  7110. "require": {
  7111. "php": ">=7.1"
  7112. },
  7113. "suggest": {
  7114. "ext-intl": "For best performance"
  7115. },
  7116. "type": "library",
  7117. "extra": {
  7118. "branch-alias": {
  7119. "dev-main": "1.28-dev"
  7120. },
  7121. "thanks": {
  7122. "name": "symfony/polyfill",
  7123. "url": "https://github.com/symfony/polyfill"
  7124. }
  7125. },
  7126. "autoload": {
  7127. "files": [
  7128. "bootstrap.php"
  7129. ],
  7130. "psr-4": {
  7131. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7132. }
  7133. },
  7134. "notification-url": "https://packagist.org/downloads/",
  7135. "license": [
  7136. "MIT"
  7137. ],
  7138. "authors": [
  7139. {
  7140. "name": "Nicolas Grekas",
  7141. "email": "p@tchwork.com"
  7142. },
  7143. {
  7144. "name": "Symfony Community",
  7145. "homepage": "https://symfony.com/contributors"
  7146. }
  7147. ],
  7148. "description": "Symfony polyfill for intl's grapheme_* functions",
  7149. "homepage": "https://symfony.com",
  7150. "keywords": [
  7151. "compatibility",
  7152. "grapheme",
  7153. "intl",
  7154. "polyfill",
  7155. "portable",
  7156. "shim"
  7157. ],
  7158. "support": {
  7159. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7160. },
  7161. "funding": [
  7162. {
  7163. "url": "https://symfony.com/sponsor",
  7164. "type": "custom"
  7165. },
  7166. {
  7167. "url": "https://github.com/fabpot",
  7168. "type": "github"
  7169. },
  7170. {
  7171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7172. "type": "tidelift"
  7173. }
  7174. ],
  7175. "time": "2023-01-26T09:26:14+00:00"
  7176. },
  7177. {
  7178. "name": "symfony/polyfill-intl-idn",
  7179. "version": "v1.28.0",
  7180. "source": {
  7181. "type": "git",
  7182. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7183. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7184. },
  7185. "dist": {
  7186. "type": "zip",
  7187. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7188. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7189. "shasum": ""
  7190. },
  7191. "require": {
  7192. "php": ">=7.1",
  7193. "symfony/polyfill-intl-normalizer": "^1.10",
  7194. "symfony/polyfill-php72": "^1.10"
  7195. },
  7196. "suggest": {
  7197. "ext-intl": "For best performance"
  7198. },
  7199. "type": "library",
  7200. "extra": {
  7201. "branch-alias": {
  7202. "dev-main": "1.28-dev"
  7203. },
  7204. "thanks": {
  7205. "name": "symfony/polyfill",
  7206. "url": "https://github.com/symfony/polyfill"
  7207. }
  7208. },
  7209. "autoload": {
  7210. "files": [
  7211. "bootstrap.php"
  7212. ],
  7213. "psr-4": {
  7214. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7215. }
  7216. },
  7217. "notification-url": "https://packagist.org/downloads/",
  7218. "license": [
  7219. "MIT"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "Laurent Bassin",
  7224. "email": "laurent@bassin.info"
  7225. },
  7226. {
  7227. "name": "Trevor Rowbotham",
  7228. "email": "trevor.rowbotham@pm.me"
  7229. },
  7230. {
  7231. "name": "Symfony Community",
  7232. "homepage": "https://symfony.com/contributors"
  7233. }
  7234. ],
  7235. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7236. "homepage": "https://symfony.com",
  7237. "keywords": [
  7238. "compatibility",
  7239. "idn",
  7240. "intl",
  7241. "polyfill",
  7242. "portable",
  7243. "shim"
  7244. ],
  7245. "support": {
  7246. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7247. },
  7248. "funding": [
  7249. {
  7250. "url": "https://symfony.com/sponsor",
  7251. "type": "custom"
  7252. },
  7253. {
  7254. "url": "https://github.com/fabpot",
  7255. "type": "github"
  7256. },
  7257. {
  7258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7259. "type": "tidelift"
  7260. }
  7261. ],
  7262. "time": "2023-01-26T09:30:37+00:00"
  7263. },
  7264. {
  7265. "name": "symfony/polyfill-intl-normalizer",
  7266. "version": "v1.28.0",
  7267. "source": {
  7268. "type": "git",
  7269. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7270. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7271. },
  7272. "dist": {
  7273. "type": "zip",
  7274. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7275. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7276. "shasum": ""
  7277. },
  7278. "require": {
  7279. "php": ">=7.1"
  7280. },
  7281. "suggest": {
  7282. "ext-intl": "For best performance"
  7283. },
  7284. "type": "library",
  7285. "extra": {
  7286. "branch-alias": {
  7287. "dev-main": "1.28-dev"
  7288. },
  7289. "thanks": {
  7290. "name": "symfony/polyfill",
  7291. "url": "https://github.com/symfony/polyfill"
  7292. }
  7293. },
  7294. "autoload": {
  7295. "files": [
  7296. "bootstrap.php"
  7297. ],
  7298. "psr-4": {
  7299. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7300. },
  7301. "classmap": [
  7302. "Resources/stubs"
  7303. ]
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "MIT"
  7308. ],
  7309. "authors": [
  7310. {
  7311. "name": "Nicolas Grekas",
  7312. "email": "p@tchwork.com"
  7313. },
  7314. {
  7315. "name": "Symfony Community",
  7316. "homepage": "https://symfony.com/contributors"
  7317. }
  7318. ],
  7319. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7320. "homepage": "https://symfony.com",
  7321. "keywords": [
  7322. "compatibility",
  7323. "intl",
  7324. "normalizer",
  7325. "polyfill",
  7326. "portable",
  7327. "shim"
  7328. ],
  7329. "support": {
  7330. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7331. },
  7332. "funding": [
  7333. {
  7334. "url": "https://symfony.com/sponsor",
  7335. "type": "custom"
  7336. },
  7337. {
  7338. "url": "https://github.com/fabpot",
  7339. "type": "github"
  7340. },
  7341. {
  7342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7343. "type": "tidelift"
  7344. }
  7345. ],
  7346. "time": "2023-01-26T09:26:14+00:00"
  7347. },
  7348. {
  7349. "name": "symfony/polyfill-mbstring",
  7350. "version": "v1.28.0",
  7351. "source": {
  7352. "type": "git",
  7353. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7354. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7355. },
  7356. "dist": {
  7357. "type": "zip",
  7358. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7359. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7360. "shasum": ""
  7361. },
  7362. "require": {
  7363. "php": ">=7.1"
  7364. },
  7365. "provide": {
  7366. "ext-mbstring": "*"
  7367. },
  7368. "suggest": {
  7369. "ext-mbstring": "For best performance"
  7370. },
  7371. "type": "library",
  7372. "extra": {
  7373. "branch-alias": {
  7374. "dev-main": "1.28-dev"
  7375. },
  7376. "thanks": {
  7377. "name": "symfony/polyfill",
  7378. "url": "https://github.com/symfony/polyfill"
  7379. }
  7380. },
  7381. "autoload": {
  7382. "files": [
  7383. "bootstrap.php"
  7384. ],
  7385. "psr-4": {
  7386. "Symfony\\Polyfill\\Mbstring\\": ""
  7387. }
  7388. },
  7389. "notification-url": "https://packagist.org/downloads/",
  7390. "license": [
  7391. "MIT"
  7392. ],
  7393. "authors": [
  7394. {
  7395. "name": "Nicolas Grekas",
  7396. "email": "p@tchwork.com"
  7397. },
  7398. {
  7399. "name": "Symfony Community",
  7400. "homepage": "https://symfony.com/contributors"
  7401. }
  7402. ],
  7403. "description": "Symfony polyfill for the Mbstring extension",
  7404. "homepage": "https://symfony.com",
  7405. "keywords": [
  7406. "compatibility",
  7407. "mbstring",
  7408. "polyfill",
  7409. "portable",
  7410. "shim"
  7411. ],
  7412. "support": {
  7413. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7414. },
  7415. "funding": [
  7416. {
  7417. "url": "https://symfony.com/sponsor",
  7418. "type": "custom"
  7419. },
  7420. {
  7421. "url": "https://github.com/fabpot",
  7422. "type": "github"
  7423. },
  7424. {
  7425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7426. "type": "tidelift"
  7427. }
  7428. ],
  7429. "time": "2023-07-28T09:04:16+00:00"
  7430. },
  7431. {
  7432. "name": "symfony/polyfill-php72",
  7433. "version": "v1.29.0",
  7434. "source": {
  7435. "type": "git",
  7436. "url": "https://github.com/symfony/polyfill-php72.git",
  7437. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7438. },
  7439. "dist": {
  7440. "type": "zip",
  7441. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7442. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7443. "shasum": ""
  7444. },
  7445. "require": {
  7446. "php": ">=7.1"
  7447. },
  7448. "type": "library",
  7449. "extra": {
  7450. "thanks": {
  7451. "name": "symfony/polyfill",
  7452. "url": "https://github.com/symfony/polyfill"
  7453. }
  7454. },
  7455. "autoload": {
  7456. "files": [
  7457. "bootstrap.php"
  7458. ],
  7459. "psr-4": {
  7460. "Symfony\\Polyfill\\Php72\\": ""
  7461. }
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "MIT"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Nicolas Grekas",
  7470. "email": "p@tchwork.com"
  7471. },
  7472. {
  7473. "name": "Symfony Community",
  7474. "homepage": "https://symfony.com/contributors"
  7475. }
  7476. ],
  7477. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7478. "homepage": "https://symfony.com",
  7479. "keywords": [
  7480. "compatibility",
  7481. "polyfill",
  7482. "portable",
  7483. "shim"
  7484. ],
  7485. "support": {
  7486. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7487. },
  7488. "funding": [
  7489. {
  7490. "url": "https://symfony.com/sponsor",
  7491. "type": "custom"
  7492. },
  7493. {
  7494. "url": "https://github.com/fabpot",
  7495. "type": "github"
  7496. },
  7497. {
  7498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7499. "type": "tidelift"
  7500. }
  7501. ],
  7502. "time": "2024-01-29T20:11:03+00:00"
  7503. },
  7504. {
  7505. "name": "symfony/polyfill-php80",
  7506. "version": "v1.29.0",
  7507. "source": {
  7508. "type": "git",
  7509. "url": "https://github.com/symfony/polyfill-php80.git",
  7510. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7511. },
  7512. "dist": {
  7513. "type": "zip",
  7514. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7515. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7516. "shasum": ""
  7517. },
  7518. "require": {
  7519. "php": ">=7.1"
  7520. },
  7521. "type": "library",
  7522. "extra": {
  7523. "thanks": {
  7524. "name": "symfony/polyfill",
  7525. "url": "https://github.com/symfony/polyfill"
  7526. }
  7527. },
  7528. "autoload": {
  7529. "files": [
  7530. "bootstrap.php"
  7531. ],
  7532. "psr-4": {
  7533. "Symfony\\Polyfill\\Php80\\": ""
  7534. },
  7535. "classmap": [
  7536. "Resources/stubs"
  7537. ]
  7538. },
  7539. "notification-url": "https://packagist.org/downloads/",
  7540. "license": [
  7541. "MIT"
  7542. ],
  7543. "authors": [
  7544. {
  7545. "name": "Ion Bazan",
  7546. "email": "ion.bazan@gmail.com"
  7547. },
  7548. {
  7549. "name": "Nicolas Grekas",
  7550. "email": "p@tchwork.com"
  7551. },
  7552. {
  7553. "name": "Symfony Community",
  7554. "homepage": "https://symfony.com/contributors"
  7555. }
  7556. ],
  7557. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7558. "homepage": "https://symfony.com",
  7559. "keywords": [
  7560. "compatibility",
  7561. "polyfill",
  7562. "portable",
  7563. "shim"
  7564. ],
  7565. "support": {
  7566. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7567. },
  7568. "funding": [
  7569. {
  7570. "url": "https://symfony.com/sponsor",
  7571. "type": "custom"
  7572. },
  7573. {
  7574. "url": "https://github.com/fabpot",
  7575. "type": "github"
  7576. },
  7577. {
  7578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7579. "type": "tidelift"
  7580. }
  7581. ],
  7582. "time": "2024-01-29T20:11:03+00:00"
  7583. },
  7584. {
  7585. "name": "symfony/polyfill-php81",
  7586. "version": "v1.29.0",
  7587. "source": {
  7588. "type": "git",
  7589. "url": "https://github.com/symfony/polyfill-php81.git",
  7590. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  7591. },
  7592. "dist": {
  7593. "type": "zip",
  7594. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  7595. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  7596. "shasum": ""
  7597. },
  7598. "require": {
  7599. "php": ">=7.1"
  7600. },
  7601. "type": "library",
  7602. "extra": {
  7603. "thanks": {
  7604. "name": "symfony/polyfill",
  7605. "url": "https://github.com/symfony/polyfill"
  7606. }
  7607. },
  7608. "autoload": {
  7609. "files": [
  7610. "bootstrap.php"
  7611. ],
  7612. "psr-4": {
  7613. "Symfony\\Polyfill\\Php81\\": ""
  7614. },
  7615. "classmap": [
  7616. "Resources/stubs"
  7617. ]
  7618. },
  7619. "notification-url": "https://packagist.org/downloads/",
  7620. "license": [
  7621. "MIT"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "Nicolas Grekas",
  7626. "email": "p@tchwork.com"
  7627. },
  7628. {
  7629. "name": "Symfony Community",
  7630. "homepage": "https://symfony.com/contributors"
  7631. }
  7632. ],
  7633. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7634. "homepage": "https://symfony.com",
  7635. "keywords": [
  7636. "compatibility",
  7637. "polyfill",
  7638. "portable",
  7639. "shim"
  7640. ],
  7641. "support": {
  7642. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  7643. },
  7644. "funding": [
  7645. {
  7646. "url": "https://symfony.com/sponsor",
  7647. "type": "custom"
  7648. },
  7649. {
  7650. "url": "https://github.com/fabpot",
  7651. "type": "github"
  7652. },
  7653. {
  7654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7655. "type": "tidelift"
  7656. }
  7657. ],
  7658. "time": "2024-01-29T20:11:03+00:00"
  7659. },
  7660. {
  7661. "name": "symfony/polyfill-php83",
  7662. "version": "v1.28.0",
  7663. "source": {
  7664. "type": "git",
  7665. "url": "https://github.com/symfony/polyfill-php83.git",
  7666. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  7667. },
  7668. "dist": {
  7669. "type": "zip",
  7670. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7671. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7672. "shasum": ""
  7673. },
  7674. "require": {
  7675. "php": ">=7.1",
  7676. "symfony/polyfill-php80": "^1.14"
  7677. },
  7678. "type": "library",
  7679. "extra": {
  7680. "branch-alias": {
  7681. "dev-main": "1.28-dev"
  7682. },
  7683. "thanks": {
  7684. "name": "symfony/polyfill",
  7685. "url": "https://github.com/symfony/polyfill"
  7686. }
  7687. },
  7688. "autoload": {
  7689. "files": [
  7690. "bootstrap.php"
  7691. ],
  7692. "psr-4": {
  7693. "Symfony\\Polyfill\\Php83\\": ""
  7694. },
  7695. "classmap": [
  7696. "Resources/stubs"
  7697. ]
  7698. },
  7699. "notification-url": "https://packagist.org/downloads/",
  7700. "license": [
  7701. "MIT"
  7702. ],
  7703. "authors": [
  7704. {
  7705. "name": "Nicolas Grekas",
  7706. "email": "p@tchwork.com"
  7707. },
  7708. {
  7709. "name": "Symfony Community",
  7710. "homepage": "https://symfony.com/contributors"
  7711. }
  7712. ],
  7713. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7714. "homepage": "https://symfony.com",
  7715. "keywords": [
  7716. "compatibility",
  7717. "polyfill",
  7718. "portable",
  7719. "shim"
  7720. ],
  7721. "support": {
  7722. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  7723. },
  7724. "funding": [
  7725. {
  7726. "url": "https://symfony.com/sponsor",
  7727. "type": "custom"
  7728. },
  7729. {
  7730. "url": "https://github.com/fabpot",
  7731. "type": "github"
  7732. },
  7733. {
  7734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7735. "type": "tidelift"
  7736. }
  7737. ],
  7738. "time": "2023-08-16T06:22:46+00:00"
  7739. },
  7740. {
  7741. "name": "symfony/process",
  7742. "version": "v6.4.4",
  7743. "source": {
  7744. "type": "git",
  7745. "url": "https://github.com/symfony/process.git",
  7746. "reference": "710e27879e9be3395de2b98da3f52a946039f297"
  7747. },
  7748. "dist": {
  7749. "type": "zip",
  7750. "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
  7751. "reference": "710e27879e9be3395de2b98da3f52a946039f297",
  7752. "shasum": ""
  7753. },
  7754. "require": {
  7755. "php": ">=8.1"
  7756. },
  7757. "type": "library",
  7758. "autoload": {
  7759. "psr-4": {
  7760. "Symfony\\Component\\Process\\": ""
  7761. },
  7762. "exclude-from-classmap": [
  7763. "/Tests/"
  7764. ]
  7765. },
  7766. "notification-url": "https://packagist.org/downloads/",
  7767. "license": [
  7768. "MIT"
  7769. ],
  7770. "authors": [
  7771. {
  7772. "name": "Fabien Potencier",
  7773. "email": "fabien@symfony.com"
  7774. },
  7775. {
  7776. "name": "Symfony Community",
  7777. "homepage": "https://symfony.com/contributors"
  7778. }
  7779. ],
  7780. "description": "Executes commands in sub-processes",
  7781. "homepage": "https://symfony.com",
  7782. "support": {
  7783. "source": "https://github.com/symfony/process/tree/v6.4.4"
  7784. },
  7785. "funding": [
  7786. {
  7787. "url": "https://symfony.com/sponsor",
  7788. "type": "custom"
  7789. },
  7790. {
  7791. "url": "https://github.com/fabpot",
  7792. "type": "github"
  7793. },
  7794. {
  7795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7796. "type": "tidelift"
  7797. }
  7798. ],
  7799. "time": "2024-02-20T12:31:00+00:00"
  7800. },
  7801. {
  7802. "name": "symfony/psr-http-message-bridge",
  7803. "version": "v6.4.3",
  7804. "source": {
  7805. "type": "git",
  7806. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7807. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47"
  7808. },
  7809. "dist": {
  7810. "type": "zip",
  7811. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  7812. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  7813. "shasum": ""
  7814. },
  7815. "require": {
  7816. "php": ">=8.1",
  7817. "psr/http-message": "^1.0|^2.0",
  7818. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  7819. },
  7820. "conflict": {
  7821. "php-http/discovery": "<1.15",
  7822. "symfony/http-kernel": "<6.2"
  7823. },
  7824. "require-dev": {
  7825. "nyholm/psr7": "^1.1",
  7826. "php-http/discovery": "^1.15",
  7827. "psr/log": "^1.1.4|^2|^3",
  7828. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  7829. "symfony/config": "^5.4|^6.0|^7.0",
  7830. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7831. "symfony/framework-bundle": "^6.2|^7.0",
  7832. "symfony/http-kernel": "^6.2|^7.0"
  7833. },
  7834. "type": "symfony-bridge",
  7835. "autoload": {
  7836. "psr-4": {
  7837. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7838. },
  7839. "exclude-from-classmap": [
  7840. "/Tests/"
  7841. ]
  7842. },
  7843. "notification-url": "https://packagist.org/downloads/",
  7844. "license": [
  7845. "MIT"
  7846. ],
  7847. "authors": [
  7848. {
  7849. "name": "Fabien Potencier",
  7850. "email": "fabien@symfony.com"
  7851. },
  7852. {
  7853. "name": "Symfony Community",
  7854. "homepage": "https://symfony.com/contributors"
  7855. }
  7856. ],
  7857. "description": "PSR HTTP message bridge",
  7858. "homepage": "https://symfony.com",
  7859. "keywords": [
  7860. "http",
  7861. "http-message",
  7862. "psr-17",
  7863. "psr-7"
  7864. ],
  7865. "support": {
  7866. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3"
  7867. },
  7868. "funding": [
  7869. {
  7870. "url": "https://symfony.com/sponsor",
  7871. "type": "custom"
  7872. },
  7873. {
  7874. "url": "https://github.com/fabpot",
  7875. "type": "github"
  7876. },
  7877. {
  7878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7879. "type": "tidelift"
  7880. }
  7881. ],
  7882. "time": "2024-01-23T14:51:35+00:00"
  7883. },
  7884. {
  7885. "name": "symfony/routing",
  7886. "version": "v6.4.3",
  7887. "source": {
  7888. "type": "git",
  7889. "url": "https://github.com/symfony/routing.git",
  7890. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  7891. },
  7892. "dist": {
  7893. "type": "zip",
  7894. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  7895. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  7896. "shasum": ""
  7897. },
  7898. "require": {
  7899. "php": ">=8.1",
  7900. "symfony/deprecation-contracts": "^2.5|^3"
  7901. },
  7902. "conflict": {
  7903. "doctrine/annotations": "<1.12",
  7904. "symfony/config": "<6.2",
  7905. "symfony/dependency-injection": "<5.4",
  7906. "symfony/yaml": "<5.4"
  7907. },
  7908. "require-dev": {
  7909. "doctrine/annotations": "^1.12|^2",
  7910. "psr/log": "^1|^2|^3",
  7911. "symfony/config": "^6.2|^7.0",
  7912. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7913. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7914. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7915. "symfony/yaml": "^5.4|^6.0|^7.0"
  7916. },
  7917. "type": "library",
  7918. "autoload": {
  7919. "psr-4": {
  7920. "Symfony\\Component\\Routing\\": ""
  7921. },
  7922. "exclude-from-classmap": [
  7923. "/Tests/"
  7924. ]
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "MIT"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Fabien Potencier",
  7933. "email": "fabien@symfony.com"
  7934. },
  7935. {
  7936. "name": "Symfony Community",
  7937. "homepage": "https://symfony.com/contributors"
  7938. }
  7939. ],
  7940. "description": "Maps an HTTP request to a set of configuration variables",
  7941. "homepage": "https://symfony.com",
  7942. "keywords": [
  7943. "router",
  7944. "routing",
  7945. "uri",
  7946. "url"
  7947. ],
  7948. "support": {
  7949. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  7950. },
  7951. "funding": [
  7952. {
  7953. "url": "https://symfony.com/sponsor",
  7954. "type": "custom"
  7955. },
  7956. {
  7957. "url": "https://github.com/fabpot",
  7958. "type": "github"
  7959. },
  7960. {
  7961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7962. "type": "tidelift"
  7963. }
  7964. ],
  7965. "time": "2024-01-30T13:55:02+00:00"
  7966. },
  7967. {
  7968. "name": "symfony/serializer",
  7969. "version": "v6.4.4",
  7970. "source": {
  7971. "type": "git",
  7972. "url": "https://github.com/symfony/serializer.git",
  7973. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872"
  7974. },
  7975. "dist": {
  7976. "type": "zip",
  7977. "url": "https://api.github.com/repos/symfony/serializer/zipball/88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  7978. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  7979. "shasum": ""
  7980. },
  7981. "require": {
  7982. "php": ">=8.1",
  7983. "symfony/deprecation-contracts": "^2.5|^3",
  7984. "symfony/polyfill-ctype": "~1.8"
  7985. },
  7986. "conflict": {
  7987. "doctrine/annotations": "<1.12",
  7988. "phpdocumentor/reflection-docblock": "<3.2.2",
  7989. "phpdocumentor/type-resolver": "<1.4.0",
  7990. "symfony/dependency-injection": "<5.4",
  7991. "symfony/property-access": "<5.4",
  7992. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  7993. "symfony/uid": "<5.4",
  7994. "symfony/validator": "<6.4",
  7995. "symfony/yaml": "<5.4"
  7996. },
  7997. "require-dev": {
  7998. "doctrine/annotations": "^1.12|^2",
  7999. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8000. "seld/jsonlint": "^1.10",
  8001. "symfony/cache": "^5.4|^6.0|^7.0",
  8002. "symfony/config": "^5.4|^6.0|^7.0",
  8003. "symfony/console": "^5.4|^6.0|^7.0",
  8004. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8005. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8006. "symfony/filesystem": "^5.4|^6.0|^7.0",
  8007. "symfony/form": "^5.4|^6.0|^7.0",
  8008. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8009. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8010. "symfony/messenger": "^5.4|^6.0|^7.0",
  8011. "symfony/mime": "^5.4|^6.0|^7.0",
  8012. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  8013. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  8014. "symfony/translation-contracts": "^2.5|^3",
  8015. "symfony/uid": "^5.4|^6.0|^7.0",
  8016. "symfony/validator": "^6.4|^7.0",
  8017. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8018. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  8019. "symfony/yaml": "^5.4|^6.0|^7.0"
  8020. },
  8021. "type": "library",
  8022. "autoload": {
  8023. "psr-4": {
  8024. "Symfony\\Component\\Serializer\\": ""
  8025. },
  8026. "exclude-from-classmap": [
  8027. "/Tests/"
  8028. ]
  8029. },
  8030. "notification-url": "https://packagist.org/downloads/",
  8031. "license": [
  8032. "MIT"
  8033. ],
  8034. "authors": [
  8035. {
  8036. "name": "Fabien Potencier",
  8037. "email": "fabien@symfony.com"
  8038. },
  8039. {
  8040. "name": "Symfony Community",
  8041. "homepage": "https://symfony.com/contributors"
  8042. }
  8043. ],
  8044. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8045. "homepage": "https://symfony.com",
  8046. "support": {
  8047. "source": "https://github.com/symfony/serializer/tree/v6.4.4"
  8048. },
  8049. "funding": [
  8050. {
  8051. "url": "https://symfony.com/sponsor",
  8052. "type": "custom"
  8053. },
  8054. {
  8055. "url": "https://github.com/fabpot",
  8056. "type": "github"
  8057. },
  8058. {
  8059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8060. "type": "tidelift"
  8061. }
  8062. ],
  8063. "time": "2024-02-22T20:27:10+00:00"
  8064. },
  8065. {
  8066. "name": "symfony/service-contracts",
  8067. "version": "v3.4.1",
  8068. "source": {
  8069. "type": "git",
  8070. "url": "https://github.com/symfony/service-contracts.git",
  8071. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  8072. },
  8073. "dist": {
  8074. "type": "zip",
  8075. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  8076. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  8077. "shasum": ""
  8078. },
  8079. "require": {
  8080. "php": ">=8.1",
  8081. "psr/container": "^1.1|^2.0"
  8082. },
  8083. "conflict": {
  8084. "ext-psr": "<1.1|>=2"
  8085. },
  8086. "type": "library",
  8087. "extra": {
  8088. "branch-alias": {
  8089. "dev-main": "3.4-dev"
  8090. },
  8091. "thanks": {
  8092. "name": "symfony/contracts",
  8093. "url": "https://github.com/symfony/contracts"
  8094. }
  8095. },
  8096. "autoload": {
  8097. "psr-4": {
  8098. "Symfony\\Contracts\\Service\\": ""
  8099. },
  8100. "exclude-from-classmap": [
  8101. "/Test/"
  8102. ]
  8103. },
  8104. "notification-url": "https://packagist.org/downloads/",
  8105. "license": [
  8106. "MIT"
  8107. ],
  8108. "authors": [
  8109. {
  8110. "name": "Nicolas Grekas",
  8111. "email": "p@tchwork.com"
  8112. },
  8113. {
  8114. "name": "Symfony Community",
  8115. "homepage": "https://symfony.com/contributors"
  8116. }
  8117. ],
  8118. "description": "Generic abstractions related to writing services",
  8119. "homepage": "https://symfony.com",
  8120. "keywords": [
  8121. "abstractions",
  8122. "contracts",
  8123. "decoupling",
  8124. "interfaces",
  8125. "interoperability",
  8126. "standards"
  8127. ],
  8128. "support": {
  8129. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  8130. },
  8131. "funding": [
  8132. {
  8133. "url": "https://symfony.com/sponsor",
  8134. "type": "custom"
  8135. },
  8136. {
  8137. "url": "https://github.com/fabpot",
  8138. "type": "github"
  8139. },
  8140. {
  8141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8142. "type": "tidelift"
  8143. }
  8144. ],
  8145. "time": "2023-12-26T14:02:43+00:00"
  8146. },
  8147. {
  8148. "name": "symfony/string",
  8149. "version": "v6.4.4",
  8150. "source": {
  8151. "type": "git",
  8152. "url": "https://github.com/symfony/string.git",
  8153. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9"
  8154. },
  8155. "dist": {
  8156. "type": "zip",
  8157. "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8158. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8159. "shasum": ""
  8160. },
  8161. "require": {
  8162. "php": ">=8.1",
  8163. "symfony/polyfill-ctype": "~1.8",
  8164. "symfony/polyfill-intl-grapheme": "~1.0",
  8165. "symfony/polyfill-intl-normalizer": "~1.0",
  8166. "symfony/polyfill-mbstring": "~1.0"
  8167. },
  8168. "conflict": {
  8169. "symfony/translation-contracts": "<2.5"
  8170. },
  8171. "require-dev": {
  8172. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8173. "symfony/http-client": "^5.4|^6.0|^7.0",
  8174. "symfony/intl": "^6.2|^7.0",
  8175. "symfony/translation-contracts": "^2.5|^3.0",
  8176. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8177. },
  8178. "type": "library",
  8179. "autoload": {
  8180. "files": [
  8181. "Resources/functions.php"
  8182. ],
  8183. "psr-4": {
  8184. "Symfony\\Component\\String\\": ""
  8185. },
  8186. "exclude-from-classmap": [
  8187. "/Tests/"
  8188. ]
  8189. },
  8190. "notification-url": "https://packagist.org/downloads/",
  8191. "license": [
  8192. "MIT"
  8193. ],
  8194. "authors": [
  8195. {
  8196. "name": "Nicolas Grekas",
  8197. "email": "p@tchwork.com"
  8198. },
  8199. {
  8200. "name": "Symfony Community",
  8201. "homepage": "https://symfony.com/contributors"
  8202. }
  8203. ],
  8204. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8205. "homepage": "https://symfony.com",
  8206. "keywords": [
  8207. "grapheme",
  8208. "i18n",
  8209. "string",
  8210. "unicode",
  8211. "utf-8",
  8212. "utf8"
  8213. ],
  8214. "support": {
  8215. "source": "https://github.com/symfony/string/tree/v6.4.4"
  8216. },
  8217. "funding": [
  8218. {
  8219. "url": "https://symfony.com/sponsor",
  8220. "type": "custom"
  8221. },
  8222. {
  8223. "url": "https://github.com/fabpot",
  8224. "type": "github"
  8225. },
  8226. {
  8227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8228. "type": "tidelift"
  8229. }
  8230. ],
  8231. "time": "2024-02-01T13:16:41+00:00"
  8232. },
  8233. {
  8234. "name": "symfony/translation-contracts",
  8235. "version": "v3.4.1",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/symfony/translation-contracts.git",
  8239. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  8244. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": ">=8.1"
  8249. },
  8250. "type": "library",
  8251. "extra": {
  8252. "branch-alias": {
  8253. "dev-main": "3.4-dev"
  8254. },
  8255. "thanks": {
  8256. "name": "symfony/contracts",
  8257. "url": "https://github.com/symfony/contracts"
  8258. }
  8259. },
  8260. "autoload": {
  8261. "psr-4": {
  8262. "Symfony\\Contracts\\Translation\\": ""
  8263. },
  8264. "exclude-from-classmap": [
  8265. "/Test/"
  8266. ]
  8267. },
  8268. "notification-url": "https://packagist.org/downloads/",
  8269. "license": [
  8270. "MIT"
  8271. ],
  8272. "authors": [
  8273. {
  8274. "name": "Nicolas Grekas",
  8275. "email": "p@tchwork.com"
  8276. },
  8277. {
  8278. "name": "Symfony Community",
  8279. "homepage": "https://symfony.com/contributors"
  8280. }
  8281. ],
  8282. "description": "Generic abstractions related to translation",
  8283. "homepage": "https://symfony.com",
  8284. "keywords": [
  8285. "abstractions",
  8286. "contracts",
  8287. "decoupling",
  8288. "interfaces",
  8289. "interoperability",
  8290. "standards"
  8291. ],
  8292. "support": {
  8293. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://symfony.com/sponsor",
  8298. "type": "custom"
  8299. },
  8300. {
  8301. "url": "https://github.com/fabpot",
  8302. "type": "github"
  8303. },
  8304. {
  8305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8306. "type": "tidelift"
  8307. }
  8308. ],
  8309. "time": "2023-12-26T14:02:43+00:00"
  8310. },
  8311. {
  8312. "name": "symfony/validator",
  8313. "version": "v6.4.4",
  8314. "source": {
  8315. "type": "git",
  8316. "url": "https://github.com/symfony/validator.git",
  8317. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47"
  8318. },
  8319. "dist": {
  8320. "type": "zip",
  8321. "url": "https://api.github.com/repos/symfony/validator/zipball/1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8322. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8323. "shasum": ""
  8324. },
  8325. "require": {
  8326. "php": ">=8.1",
  8327. "symfony/deprecation-contracts": "^2.5|^3",
  8328. "symfony/polyfill-ctype": "~1.8",
  8329. "symfony/polyfill-mbstring": "~1.0",
  8330. "symfony/polyfill-php83": "^1.27",
  8331. "symfony/translation-contracts": "^2.5|^3"
  8332. },
  8333. "conflict": {
  8334. "doctrine/annotations": "<1.13",
  8335. "doctrine/lexer": "<1.1",
  8336. "symfony/dependency-injection": "<5.4",
  8337. "symfony/expression-language": "<5.4",
  8338. "symfony/http-kernel": "<5.4",
  8339. "symfony/intl": "<5.4",
  8340. "symfony/property-info": "<5.4",
  8341. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  8342. "symfony/yaml": "<5.4"
  8343. },
  8344. "require-dev": {
  8345. "doctrine/annotations": "^1.13|^2",
  8346. "egulias/email-validator": "^2.1.10|^3|^4",
  8347. "symfony/cache": "^5.4|^6.0|^7.0",
  8348. "symfony/config": "^5.4|^6.0|^7.0",
  8349. "symfony/console": "^5.4|^6.0|^7.0",
  8350. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8351. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8352. "symfony/finder": "^5.4|^6.0|^7.0",
  8353. "symfony/http-client": "^5.4|^6.0|^7.0",
  8354. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8355. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8356. "symfony/intl": "^5.4|^6.0|^7.0",
  8357. "symfony/mime": "^5.4|^6.0|^7.0",
  8358. "symfony/property-access": "^5.4|^6.0|^7.0",
  8359. "symfony/property-info": "^5.4|^6.0|^7.0",
  8360. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  8361. "symfony/yaml": "^5.4|^6.0|^7.0"
  8362. },
  8363. "type": "library",
  8364. "autoload": {
  8365. "psr-4": {
  8366. "Symfony\\Component\\Validator\\": ""
  8367. },
  8368. "exclude-from-classmap": [
  8369. "/Tests/"
  8370. ]
  8371. },
  8372. "notification-url": "https://packagist.org/downloads/",
  8373. "license": [
  8374. "MIT"
  8375. ],
  8376. "authors": [
  8377. {
  8378. "name": "Fabien Potencier",
  8379. "email": "fabien@symfony.com"
  8380. },
  8381. {
  8382. "name": "Symfony Community",
  8383. "homepage": "https://symfony.com/contributors"
  8384. }
  8385. ],
  8386. "description": "Provides tools to validate values",
  8387. "homepage": "https://symfony.com",
  8388. "support": {
  8389. "source": "https://github.com/symfony/validator/tree/v6.4.4"
  8390. },
  8391. "funding": [
  8392. {
  8393. "url": "https://symfony.com/sponsor",
  8394. "type": "custom"
  8395. },
  8396. {
  8397. "url": "https://github.com/fabpot",
  8398. "type": "github"
  8399. },
  8400. {
  8401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8402. "type": "tidelift"
  8403. }
  8404. ],
  8405. "time": "2024-02-22T20:27:10+00:00"
  8406. },
  8407. {
  8408. "name": "symfony/var-dumper",
  8409. "version": "v6.4.4",
  8410. "source": {
  8411. "type": "git",
  8412. "url": "https://github.com/symfony/var-dumper.git",
  8413. "reference": "b439823f04c98b84d4366c79507e9da6230944b1"
  8414. },
  8415. "dist": {
  8416. "type": "zip",
  8417. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
  8418. "reference": "b439823f04c98b84d4366c79507e9da6230944b1",
  8419. "shasum": ""
  8420. },
  8421. "require": {
  8422. "php": ">=8.1",
  8423. "symfony/deprecation-contracts": "^2.5|^3",
  8424. "symfony/polyfill-mbstring": "~1.0"
  8425. },
  8426. "conflict": {
  8427. "symfony/console": "<5.4"
  8428. },
  8429. "require-dev": {
  8430. "ext-iconv": "*",
  8431. "symfony/console": "^5.4|^6.0|^7.0",
  8432. "symfony/error-handler": "^6.3|^7.0",
  8433. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8434. "symfony/process": "^5.4|^6.0|^7.0",
  8435. "symfony/uid": "^5.4|^6.0|^7.0",
  8436. "twig/twig": "^2.13|^3.0.4"
  8437. },
  8438. "bin": [
  8439. "Resources/bin/var-dump-server"
  8440. ],
  8441. "type": "library",
  8442. "autoload": {
  8443. "files": [
  8444. "Resources/functions/dump.php"
  8445. ],
  8446. "psr-4": {
  8447. "Symfony\\Component\\VarDumper\\": ""
  8448. },
  8449. "exclude-from-classmap": [
  8450. "/Tests/"
  8451. ]
  8452. },
  8453. "notification-url": "https://packagist.org/downloads/",
  8454. "license": [
  8455. "MIT"
  8456. ],
  8457. "authors": [
  8458. {
  8459. "name": "Nicolas Grekas",
  8460. "email": "p@tchwork.com"
  8461. },
  8462. {
  8463. "name": "Symfony Community",
  8464. "homepage": "https://symfony.com/contributors"
  8465. }
  8466. ],
  8467. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8468. "homepage": "https://symfony.com",
  8469. "keywords": [
  8470. "debug",
  8471. "dump"
  8472. ],
  8473. "support": {
  8474. "source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
  8475. },
  8476. "funding": [
  8477. {
  8478. "url": "https://symfony.com/sponsor",
  8479. "type": "custom"
  8480. },
  8481. {
  8482. "url": "https://github.com/fabpot",
  8483. "type": "github"
  8484. },
  8485. {
  8486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8487. "type": "tidelift"
  8488. }
  8489. ],
  8490. "time": "2024-02-15T11:23:52+00:00"
  8491. },
  8492. {
  8493. "name": "symfony/var-exporter",
  8494. "version": "v6.4.4",
  8495. "source": {
  8496. "type": "git",
  8497. "url": "https://github.com/symfony/var-exporter.git",
  8498. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b"
  8499. },
  8500. "dist": {
  8501. "type": "zip",
  8502. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8503. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8504. "shasum": ""
  8505. },
  8506. "require": {
  8507. "php": ">=8.1",
  8508. "symfony/deprecation-contracts": "^2.5|^3"
  8509. },
  8510. "require-dev": {
  8511. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8512. },
  8513. "type": "library",
  8514. "autoload": {
  8515. "psr-4": {
  8516. "Symfony\\Component\\VarExporter\\": ""
  8517. },
  8518. "exclude-from-classmap": [
  8519. "/Tests/"
  8520. ]
  8521. },
  8522. "notification-url": "https://packagist.org/downloads/",
  8523. "license": [
  8524. "MIT"
  8525. ],
  8526. "authors": [
  8527. {
  8528. "name": "Nicolas Grekas",
  8529. "email": "p@tchwork.com"
  8530. },
  8531. {
  8532. "name": "Symfony Community",
  8533. "homepage": "https://symfony.com/contributors"
  8534. }
  8535. ],
  8536. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8537. "homepage": "https://symfony.com",
  8538. "keywords": [
  8539. "clone",
  8540. "construct",
  8541. "export",
  8542. "hydrate",
  8543. "instantiate",
  8544. "lazy-loading",
  8545. "proxy",
  8546. "serialize"
  8547. ],
  8548. "support": {
  8549. "source": "https://github.com/symfony/var-exporter/tree/v6.4.4"
  8550. },
  8551. "funding": [
  8552. {
  8553. "url": "https://symfony.com/sponsor",
  8554. "type": "custom"
  8555. },
  8556. {
  8557. "url": "https://github.com/fabpot",
  8558. "type": "github"
  8559. },
  8560. {
  8561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8562. "type": "tidelift"
  8563. }
  8564. ],
  8565. "time": "2024-02-26T08:37:45+00:00"
  8566. },
  8567. {
  8568. "name": "symfony/yaml",
  8569. "version": "v6.4.3",
  8570. "source": {
  8571. "type": "git",
  8572. "url": "https://github.com/symfony/yaml.git",
  8573. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
  8574. },
  8575. "dist": {
  8576. "type": "zip",
  8577. "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
  8578. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
  8579. "shasum": ""
  8580. },
  8581. "require": {
  8582. "php": ">=8.1",
  8583. "symfony/deprecation-contracts": "^2.5|^3",
  8584. "symfony/polyfill-ctype": "^1.8"
  8585. },
  8586. "conflict": {
  8587. "symfony/console": "<5.4"
  8588. },
  8589. "require-dev": {
  8590. "symfony/console": "^5.4|^6.0|^7.0"
  8591. },
  8592. "bin": [
  8593. "Resources/bin/yaml-lint"
  8594. ],
  8595. "type": "library",
  8596. "autoload": {
  8597. "psr-4": {
  8598. "Symfony\\Component\\Yaml\\": ""
  8599. },
  8600. "exclude-from-classmap": [
  8601. "/Tests/"
  8602. ]
  8603. },
  8604. "notification-url": "https://packagist.org/downloads/",
  8605. "license": [
  8606. "MIT"
  8607. ],
  8608. "authors": [
  8609. {
  8610. "name": "Fabien Potencier",
  8611. "email": "fabien@symfony.com"
  8612. },
  8613. {
  8614. "name": "Symfony Community",
  8615. "homepage": "https://symfony.com/contributors"
  8616. }
  8617. ],
  8618. "description": "Loads and dumps YAML files",
  8619. "homepage": "https://symfony.com",
  8620. "support": {
  8621. "source": "https://github.com/symfony/yaml/tree/v6.4.3"
  8622. },
  8623. "funding": [
  8624. {
  8625. "url": "https://symfony.com/sponsor",
  8626. "type": "custom"
  8627. },
  8628. {
  8629. "url": "https://github.com/fabpot",
  8630. "type": "github"
  8631. },
  8632. {
  8633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8634. "type": "tidelift"
  8635. }
  8636. ],
  8637. "time": "2024-01-23T14:51:35+00:00"
  8638. },
  8639. {
  8640. "name": "twbs/bootstrap",
  8641. "version": "v4.5.0",
  8642. "source": {
  8643. "type": "git",
  8644. "url": "https://github.com/twbs/bootstrap.git",
  8645. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  8646. },
  8647. "dist": {
  8648. "type": "zip",
  8649. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8650. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8651. "shasum": ""
  8652. },
  8653. "replace": {
  8654. "twitter/bootstrap": "self.version"
  8655. },
  8656. "type": "library",
  8657. "extra": {
  8658. "branch-alias": {
  8659. "dev-master": "3.3.x-dev"
  8660. }
  8661. },
  8662. "notification-url": "https://packagist.org/downloads/",
  8663. "license": [
  8664. "MIT"
  8665. ],
  8666. "authors": [
  8667. {
  8668. "name": "Mark Otto",
  8669. "email": "markdotto@gmail.com"
  8670. },
  8671. {
  8672. "name": "Jacob Thornton",
  8673. "email": "jacobthornton@gmail.com"
  8674. }
  8675. ],
  8676. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  8677. "homepage": "https://getbootstrap.com/",
  8678. "keywords": [
  8679. "JS",
  8680. "css",
  8681. "framework",
  8682. "front-end",
  8683. "mobile-first",
  8684. "responsive",
  8685. "sass",
  8686. "web"
  8687. ],
  8688. "support": {
  8689. "issues": "https://github.com/twbs/bootstrap/issues",
  8690. "source": "https://github.com/twbs/bootstrap/tree/v4-dev"
  8691. },
  8692. "funding": [
  8693. {
  8694. "url": "https://opencollective.com/bootstrap",
  8695. "type": "open_collective"
  8696. }
  8697. ],
  8698. "time": "2020-05-12T17:44:42+00:00"
  8699. },
  8700. {
  8701. "name": "twig/twig",
  8702. "version": "v3.8.0",
  8703. "source": {
  8704. "type": "git",
  8705. "url": "https://github.com/twigphp/Twig.git",
  8706. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  8707. },
  8708. "dist": {
  8709. "type": "zip",
  8710. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8711. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8712. "shasum": ""
  8713. },
  8714. "require": {
  8715. "php": ">=7.2.5",
  8716. "symfony/polyfill-ctype": "^1.8",
  8717. "symfony/polyfill-mbstring": "^1.3",
  8718. "symfony/polyfill-php80": "^1.22"
  8719. },
  8720. "require-dev": {
  8721. "psr/container": "^1.0|^2.0",
  8722. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  8723. },
  8724. "type": "library",
  8725. "autoload": {
  8726. "psr-4": {
  8727. "Twig\\": "src/"
  8728. }
  8729. },
  8730. "notification-url": "https://packagist.org/downloads/",
  8731. "license": [
  8732. "BSD-3-Clause"
  8733. ],
  8734. "authors": [
  8735. {
  8736. "name": "Fabien Potencier",
  8737. "email": "fabien@symfony.com",
  8738. "homepage": "http://fabien.potencier.org",
  8739. "role": "Lead Developer"
  8740. },
  8741. {
  8742. "name": "Twig Team",
  8743. "role": "Contributors"
  8744. },
  8745. {
  8746. "name": "Armin Ronacher",
  8747. "email": "armin.ronacher@active-4.com",
  8748. "role": "Project Founder"
  8749. }
  8750. ],
  8751. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8752. "homepage": "https://twig.symfony.com",
  8753. "keywords": [
  8754. "templating"
  8755. ],
  8756. "support": {
  8757. "issues": "https://github.com/twigphp/Twig/issues",
  8758. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  8759. },
  8760. "funding": [
  8761. {
  8762. "url": "https://github.com/fabpot",
  8763. "type": "github"
  8764. },
  8765. {
  8766. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8767. "type": "tidelift"
  8768. }
  8769. ],
  8770. "time": "2023-11-21T18:54:41+00:00"
  8771. },
  8772. {
  8773. "name": "webflo/drupal-finder",
  8774. "version": "1.2.2",
  8775. "source": {
  8776. "type": "git",
  8777. "url": "https://github.com/webflo/drupal-finder.git",
  8778. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  8779. },
  8780. "dist": {
  8781. "type": "zip",
  8782. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  8783. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  8784. "shasum": ""
  8785. },
  8786. "require": {
  8787. "ext-json": "*"
  8788. },
  8789. "require-dev": {
  8790. "mikey179/vfsstream": "^1.6",
  8791. "phpunit/phpunit": "^4.8"
  8792. },
  8793. "type": "library",
  8794. "autoload": {
  8795. "classmap": [
  8796. "src/DrupalFinder.php"
  8797. ]
  8798. },
  8799. "notification-url": "https://packagist.org/downloads/",
  8800. "license": [
  8801. "GPL-2.0-or-later"
  8802. ],
  8803. "authors": [
  8804. {
  8805. "name": "Florian Weber",
  8806. "email": "florian@webflo.org"
  8807. }
  8808. ],
  8809. "description": "Helper class to locate a Drupal installation from a given path.",
  8810. "support": {
  8811. "issues": "https://github.com/webflo/drupal-finder/issues",
  8812. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  8813. },
  8814. "time": "2020-10-27T09:42:17+00:00"
  8815. }
  8816. ],
  8817. "packages-dev": [],
  8818. "aliases": [],
  8819. "minimum-stability": "dev",
  8820. "stability-flags": {
  8821. "drupal/field_pager": 10
  8822. },
  8823. "prefer-stable": true,
  8824. "prefer-lowest": false,
  8825. "platform": [],
  8826. "platform-dev": [],
  8827. "plugin-api-version": "2.6.0"
  8828. }