composer.lock 325 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936
  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": "12afacd9707a9b1fa408079e38c9fc65",
  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/geofield",
  2388. "version": "1.57.0",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://git.drupalcode.org/project/geofield.git",
  2392. "reference": "8.x-1.57"
  2393. },
  2394. "dist": {
  2395. "type": "zip",
  2396. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.57.zip",
  2397. "reference": "8.x-1.57",
  2398. "shasum": "17155834e7abe78b5710907d1f2897f3a01c5702"
  2399. },
  2400. "require": {
  2401. "drupal/core": "^8.8 || ^9 || ^10",
  2402. "itamair/geophp": "^1.3"
  2403. },
  2404. "require-dev": {
  2405. "drupal/diff": "^1.1",
  2406. "drupal/feeds": "^3.0@beta"
  2407. },
  2408. "type": "drupal-module",
  2409. "extra": {
  2410. "drupal": {
  2411. "version": "8.x-1.57",
  2412. "datestamp": "1701039529",
  2413. "security-coverage": {
  2414. "status": "covered",
  2415. "message": "Covered by Drupal's security advisory policy"
  2416. }
  2417. }
  2418. },
  2419. "notification-url": "https://packages.drupal.org/8/downloads",
  2420. "license": [
  2421. "GPL-2.0+"
  2422. ],
  2423. "authors": [
  2424. {
  2425. "name": "Italo Mairo",
  2426. "homepage": "https://www.drupal.org/u/itamair",
  2427. "role": "Drupal 8+ Maintainer"
  2428. },
  2429. {
  2430. "name": "Brandon Morrison",
  2431. "homepage": "https://www.drupal.org/u/brandonian",
  2432. "role": "Drupal 7 Maintainer"
  2433. },
  2434. {
  2435. "name": "Pablo López",
  2436. "homepage": "https://www.drupal.org/u/plopesc",
  2437. "role": "Drupal 7 Maintainer"
  2438. }
  2439. ],
  2440. "description": "Stores geographic and location data (points, lines, and polygons).",
  2441. "homepage": "https://www.drupal.org/project/geofield",
  2442. "support": {
  2443. "source": "https://git.drupalcode.org/project/geofield",
  2444. "issues": "https://www.drupal.org/project/issues/geofield",
  2445. "irc": "irc://irc.freenode.org/drupal-contribute"
  2446. }
  2447. },
  2448. {
  2449. "name": "drupal/geolocation",
  2450. "version": "3.12.0",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://git.drupalcode.org/project/geolocation.git",
  2454. "reference": "8.x-3.12"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip",
  2459. "reference": "8.x-3.12",
  2460. "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a"
  2461. },
  2462. "require": {
  2463. "drupal/core": "^9.3 || ^10",
  2464. "drupal/jquery_ui": "*",
  2465. "drupal/jquery_ui_autocomplete": "^2.0",
  2466. "php": "^7.3 || ^8.0"
  2467. },
  2468. "require-dev": {
  2469. "drupal/address": "*",
  2470. "drupal/geofield": "*",
  2471. "drupal/geolocation_demo": "*",
  2472. "drupal/geolocation_geometry": "*",
  2473. "drupal/geolocation_geometry_data": "*",
  2474. "drupal/geolocation_google_maps": "*",
  2475. "drupal/geolocation_google_maps_demo": "*",
  2476. "drupal/geolocation_google_static_maps": "*",
  2477. "drupal/geolocation_leaflet": "*",
  2478. "drupal/geolocation_leaflet_demo": "*",
  2479. "drupal/search_api": "*",
  2480. "drupal/search_api_location": "*",
  2481. "drupal/search_api_location_views": "*"
  2482. },
  2483. "type": "drupal-module",
  2484. "extra": {
  2485. "drupal": {
  2486. "version": "8.x-3.12",
  2487. "datestamp": "1673282362",
  2488. "security-coverage": {
  2489. "status": "covered",
  2490. "message": "Covered by Drupal's security advisory policy"
  2491. }
  2492. }
  2493. },
  2494. "notification-url": "https://packages.drupal.org/8/downloads",
  2495. "license": [
  2496. "GPL-2.0-or-later"
  2497. ],
  2498. "authors": [
  2499. {
  2500. "name": "derjochenmeyer",
  2501. "homepage": "https://www.drupal.org/u/derjochenmeyer"
  2502. },
  2503. {
  2504. "name": "cadamski",
  2505. "homepage": "https://www.drupal.org/u/cadamski"
  2506. }
  2507. ],
  2508. "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).",
  2509. "homepage": "https://www.drupal.org/project/geolocation",
  2510. "support": {
  2511. "source": "https://git.drupal.org/project/geolocation.git",
  2512. "issues": "https://www.drupal.org/project/issues/geolocation"
  2513. }
  2514. },
  2515. {
  2516. "name": "drupal/jquery_ui",
  2517. "version": "1.6.0",
  2518. "source": {
  2519. "type": "git",
  2520. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  2521. "reference": "8.x-1.6"
  2522. },
  2523. "dist": {
  2524. "type": "zip",
  2525. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  2526. "reference": "8.x-1.6",
  2527. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  2528. },
  2529. "require": {
  2530. "drupal/core": "^9.2 || ^10"
  2531. },
  2532. "type": "drupal-module",
  2533. "extra": {
  2534. "drupal": {
  2535. "version": "8.x-1.6",
  2536. "datestamp": "1668521197",
  2537. "security-coverage": {
  2538. "status": "covered",
  2539. "message": "Covered by Drupal's security advisory policy"
  2540. }
  2541. }
  2542. },
  2543. "notification-url": "https://packages.drupal.org/8/downloads",
  2544. "license": [
  2545. "GPL-2.0-or-later"
  2546. ],
  2547. "authors": [
  2548. {
  2549. "name": "bnjmnm",
  2550. "homepage": "https://www.drupal.org/user/2369194"
  2551. },
  2552. {
  2553. "name": "jjeff",
  2554. "homepage": "https://www.drupal.org/user/17190"
  2555. },
  2556. {
  2557. "name": "lauriii",
  2558. "homepage": "https://www.drupal.org/user/1078742"
  2559. },
  2560. {
  2561. "name": "litwol",
  2562. "homepage": "https://www.drupal.org/user/78134"
  2563. },
  2564. {
  2565. "name": "mfb",
  2566. "homepage": "https://www.drupal.org/user/12302"
  2567. },
  2568. {
  2569. "name": "mfer",
  2570. "homepage": "https://www.drupal.org/user/25701"
  2571. },
  2572. {
  2573. "name": "mikelutz",
  2574. "homepage": "https://www.drupal.org/user/2972409"
  2575. },
  2576. {
  2577. "name": "nod_",
  2578. "homepage": "https://www.drupal.org/user/598310"
  2579. },
  2580. {
  2581. "name": "phenaproxima",
  2582. "homepage": "https://www.drupal.org/user/205645"
  2583. },
  2584. {
  2585. "name": "RobLoach",
  2586. "homepage": "https://www.drupal.org/user/61114"
  2587. },
  2588. {
  2589. "name": "sun",
  2590. "homepage": "https://www.drupal.org/user/54136"
  2591. },
  2592. {
  2593. "name": "webchick",
  2594. "homepage": "https://www.drupal.org/user/24967"
  2595. },
  2596. {
  2597. "name": "Wim Leers",
  2598. "homepage": "https://www.drupal.org/user/99777"
  2599. },
  2600. {
  2601. "name": "zrpnr",
  2602. "homepage": "https://www.drupal.org/user/1448368"
  2603. }
  2604. ],
  2605. "description": "Provides jQuery UI library.",
  2606. "homepage": "https://www.drupal.org/project/jquery_ui",
  2607. "support": {
  2608. "source": "https://git.drupalcode.org/project/jquery_ui"
  2609. }
  2610. },
  2611. {
  2612. "name": "drupal/jquery_ui_autocomplete",
  2613. "version": "2.0.0",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git",
  2617. "reference": "2.0.0"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip",
  2622. "reference": "2.0.0",
  2623. "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7"
  2624. },
  2625. "require": {
  2626. "drupal/core": "^9.2 || ^10",
  2627. "drupal/jquery_ui": "^1.6",
  2628. "drupal/jquery_ui_menu": "^2"
  2629. },
  2630. "type": "drupal-module",
  2631. "extra": {
  2632. "drupal": {
  2633. "version": "2.0.0",
  2634. "datestamp": "1670871461",
  2635. "security-coverage": {
  2636. "status": "covered",
  2637. "message": "Covered by Drupal's security advisory policy"
  2638. }
  2639. }
  2640. },
  2641. "notification-url": "https://packages.drupal.org/8/downloads",
  2642. "license": [
  2643. "GPL-2.0-or-later"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "bnjmnm",
  2648. "homepage": "https://www.drupal.org/user/2369194"
  2649. },
  2650. {
  2651. "name": "lauriii",
  2652. "homepage": "https://www.drupal.org/user/1078742"
  2653. },
  2654. {
  2655. "name": "nod_",
  2656. "homepage": "https://www.drupal.org/user/598310"
  2657. },
  2658. {
  2659. "name": "phenaproxima",
  2660. "homepage": "https://www.drupal.org/user/205645"
  2661. },
  2662. {
  2663. "name": "Wim Leers",
  2664. "homepage": "https://www.drupal.org/user/99777"
  2665. },
  2666. {
  2667. "name": "zrpnr",
  2668. "homepage": "https://www.drupal.org/user/1448368"
  2669. }
  2670. ],
  2671. "description": "Provides jQuery UI Autocomplete library.",
  2672. "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete",
  2673. "support": {
  2674. "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete"
  2675. }
  2676. },
  2677. {
  2678. "name": "drupal/jquery_ui_draggable",
  2679. "version": "2.0.0",
  2680. "source": {
  2681. "type": "git",
  2682. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  2683. "reference": "2.0.0"
  2684. },
  2685. "dist": {
  2686. "type": "zip",
  2687. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  2688. "reference": "2.0.0",
  2689. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  2690. },
  2691. "require": {
  2692. "drupal/core": "^9.2 || ^10",
  2693. "drupal/jquery_ui": "^1.6"
  2694. },
  2695. "type": "drupal-module",
  2696. "extra": {
  2697. "drupal": {
  2698. "version": "2.0.0",
  2699. "datestamp": "1670871516",
  2700. "security-coverage": {
  2701. "status": "covered",
  2702. "message": "Covered by Drupal's security advisory policy"
  2703. }
  2704. }
  2705. },
  2706. "notification-url": "https://packages.drupal.org/8/downloads",
  2707. "license": [
  2708. "GPL-2.0-or-later"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "bnjmnm",
  2713. "homepage": "https://www.drupal.org/user/2369194"
  2714. },
  2715. {
  2716. "name": "lauriii",
  2717. "homepage": "https://www.drupal.org/user/1078742"
  2718. },
  2719. {
  2720. "name": "zrpnr",
  2721. "homepage": "https://www.drupal.org/user/1448368"
  2722. }
  2723. ],
  2724. "description": "Provides jQuery UI Draggable library.",
  2725. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  2726. "support": {
  2727. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  2728. }
  2729. },
  2730. {
  2731. "name": "drupal/jquery_ui_droppable",
  2732. "version": "2.0.0",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  2736. "reference": "2.0.0"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.0.0.zip",
  2741. "reference": "2.0.0",
  2742. "shasum": "758f52e68b04e74f1a96240b22090fcae1945898"
  2743. },
  2744. "require": {
  2745. "drupal/core": "^9.2 || ^10",
  2746. "drupal/jquery_ui": "^1.6",
  2747. "drupal/jquery_ui_draggable": "^2"
  2748. },
  2749. "type": "drupal-module",
  2750. "extra": {
  2751. "drupal": {
  2752. "version": "2.0.0",
  2753. "datestamp": "1670871520",
  2754. "security-coverage": {
  2755. "status": "covered",
  2756. "message": "Covered by Drupal's security advisory policy"
  2757. }
  2758. }
  2759. },
  2760. "notification-url": "https://packages.drupal.org/8/downloads",
  2761. "license": [
  2762. "GPL-2.0-or-later"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "bnjmnm",
  2767. "homepage": "https://www.drupal.org/user/2369194"
  2768. },
  2769. {
  2770. "name": "lauriii",
  2771. "homepage": "https://www.drupal.org/user/1078742"
  2772. },
  2773. {
  2774. "name": "zrpnr",
  2775. "homepage": "https://www.drupal.org/user/1448368"
  2776. }
  2777. ],
  2778. "description": "Provides jQuery UI Droppable library.",
  2779. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  2780. "support": {
  2781. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  2782. }
  2783. },
  2784. {
  2785. "name": "drupal/jquery_ui_menu",
  2786. "version": "2.0.0",
  2787. "source": {
  2788. "type": "git",
  2789. "url": "https://git.drupalcode.org/project/jquery_ui_menu.git",
  2790. "reference": "2.0.0"
  2791. },
  2792. "dist": {
  2793. "type": "zip",
  2794. "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip",
  2795. "reference": "2.0.0",
  2796. "shasum": "5e1b56bf457669c7779a81784f49da63e3956854"
  2797. },
  2798. "require": {
  2799. "drupal/core": "^9.2 || ^10",
  2800. "drupal/jquery_ui": "^1.6"
  2801. },
  2802. "type": "drupal-module",
  2803. "extra": {
  2804. "drupal": {
  2805. "version": "2.0.0",
  2806. "datestamp": "1670871546",
  2807. "security-coverage": {
  2808. "status": "covered",
  2809. "message": "Covered by Drupal's security advisory policy"
  2810. }
  2811. }
  2812. },
  2813. "notification-url": "https://packages.drupal.org/8/downloads",
  2814. "license": [
  2815. "GPL-2.0-or-later"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "bnjmnm",
  2820. "homepage": "https://www.drupal.org/user/2369194"
  2821. },
  2822. {
  2823. "name": "lauriii",
  2824. "homepage": "https://www.drupal.org/user/1078742"
  2825. },
  2826. {
  2827. "name": "nod_",
  2828. "homepage": "https://www.drupal.org/user/598310"
  2829. },
  2830. {
  2831. "name": "phenaproxima",
  2832. "homepage": "https://www.drupal.org/user/205645"
  2833. },
  2834. {
  2835. "name": "Wim Leers",
  2836. "homepage": "https://www.drupal.org/user/99777"
  2837. },
  2838. {
  2839. "name": "zrpnr",
  2840. "homepage": "https://www.drupal.org/user/1448368"
  2841. }
  2842. ],
  2843. "description": "Provides jQuery UI Menu library.",
  2844. "homepage": "https://www.drupal.org/project/jquery_ui_menu",
  2845. "support": {
  2846. "source": "https://git.drupalcode.org/project/jquery_ui_menu"
  2847. }
  2848. },
  2849. {
  2850. "name": "drupal/linkit",
  2851. "version": "6.1.2",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://git.drupalcode.org/project/linkit.git",
  2855. "reference": "6.1.2"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  2860. "reference": "6.1.2",
  2861. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  2862. },
  2863. "require": {
  2864. "drupal/core": "^10.1"
  2865. },
  2866. "require-dev": {
  2867. "drupal/ckeditor": "*",
  2868. "drupal/imce": "*"
  2869. },
  2870. "type": "drupal-module",
  2871. "extra": {
  2872. "drupal": {
  2873. "version": "6.1.2",
  2874. "datestamp": "1696865478",
  2875. "security-coverage": {
  2876. "status": "covered",
  2877. "message": "Covered by Drupal's security advisory policy"
  2878. }
  2879. }
  2880. },
  2881. "notification-url": "https://packages.drupal.org/8/downloads",
  2882. "license": [
  2883. "GPL-2.0-or-later"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "Emil Stjerneman",
  2888. "homepage": "https://stjerneman.com",
  2889. "email": "emil@stjerneman.com",
  2890. "role": "Maintainer"
  2891. },
  2892. {
  2893. "name": "johnwebdev",
  2894. "homepage": "https://www.drupal.org/user/3331569"
  2895. },
  2896. {
  2897. "name": "mark_fullmer",
  2898. "homepage": "https://www.drupal.org/user/2612816"
  2899. }
  2900. ],
  2901. "description": "Linkit - Enriched linking experience",
  2902. "homepage": "http://drupal.org/project/linkit",
  2903. "support": {
  2904. "source": "http://cgit.drupalcode.org/linkit",
  2905. "issues": "http://drupal.org/project/linkit"
  2906. }
  2907. },
  2908. {
  2909. "name": "drupal/masonry",
  2910. "version": "4.0.0",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://git.drupalcode.org/project/masonry.git",
  2914. "reference": "4.0.0"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://ftp.drupal.org/files/projects/masonry-4.0.0.zip",
  2919. "reference": "4.0.0",
  2920. "shasum": "5062350d5f68d84077a393ce5b8cdc11ff66d0cd"
  2921. },
  2922. "require": {
  2923. "drupal/core": "^8 || ^9 || ^10"
  2924. },
  2925. "type": "drupal-module",
  2926. "extra": {
  2927. "drupal": {
  2928. "version": "4.0.0",
  2929. "datestamp": "1690017720",
  2930. "security-coverage": {
  2931. "status": "covered",
  2932. "message": "Covered by Drupal's security advisory policy"
  2933. }
  2934. }
  2935. },
  2936. "notification-url": "https://packages.drupal.org/8/downloads",
  2937. "license": [
  2938. "GPL-2.0-or-later"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Dominique Clause (Dom.)",
  2943. "homepage": "https://www.drupal.org/u/dom",
  2944. "role": "Maintainer"
  2945. },
  2946. {
  2947. "name": "Dom.",
  2948. "homepage": "https://www.drupal.org/user/801982"
  2949. }
  2950. ],
  2951. "description": "Masonry integrates with Masonry library",
  2952. "homepage": "https://www.drupal.org/project/masonry",
  2953. "support": {
  2954. "source": "https://git.drupalcode.org/project/masonry",
  2955. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  2956. }
  2957. },
  2958. {
  2959. "name": "drupal/matomo",
  2960. "version": "1.23.0",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://git.drupalcode.org/project/matomo.git",
  2964. "reference": "8.x-1.23"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  2969. "reference": "8.x-1.23",
  2970. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  2971. },
  2972. "require": {
  2973. "drupal/core": "^9.0 || ^10"
  2974. },
  2975. "conflict": {
  2976. "drupal/csp": "<1.12"
  2977. },
  2978. "require-dev": {
  2979. "drupal/csp": "~1.12",
  2980. "drupal/php": "~1.1",
  2981. "drupal/token": "~1.9"
  2982. },
  2983. "type": "drupal-module",
  2984. "extra": {
  2985. "drupal": {
  2986. "version": "8.x-1.23",
  2987. "datestamp": "1700936102",
  2988. "security-coverage": {
  2989. "status": "covered",
  2990. "message": "Covered by Drupal's security advisory policy"
  2991. }
  2992. }
  2993. },
  2994. "notification-url": "https://packages.drupal.org/8/downloads",
  2995. "license": [
  2996. "GPL-2.0-or-later"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "C-Logemann",
  3001. "homepage": "https://www.drupal.org/user/218368"
  3002. },
  3003. {
  3004. "name": "Grimreaper",
  3005. "homepage": "https://www.drupal.org/user/2388214"
  3006. },
  3007. {
  3008. "name": "hass",
  3009. "homepage": "https://www.drupal.org/user/85918"
  3010. },
  3011. {
  3012. "name": "shelane",
  3013. "homepage": "https://www.drupal.org/user/2674989"
  3014. }
  3015. ],
  3016. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  3017. "homepage": "https://www.drupal.org/project/matomo",
  3018. "support": {
  3019. "source": "https://git.drupalcode.org/project/matomo"
  3020. }
  3021. },
  3022. {
  3023. "name": "drupal/mediteran",
  3024. "version": "1.32.0",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://git.drupalcode.org/project/mediteran.git",
  3028. "reference": "8.x-1.32"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.32.zip",
  3033. "reference": "8.x-1.32",
  3034. "shasum": "85e0a94bf5f98626e1eb2c88f6b9467c1fdaf9ec"
  3035. },
  3036. "require": {
  3037. "drupal/core": "^9.2 || ^10"
  3038. },
  3039. "type": "drupal-theme",
  3040. "extra": {
  3041. "drupal": {
  3042. "version": "8.x-1.32",
  3043. "datestamp": "1699979844",
  3044. "security-coverage": {
  3045. "status": "covered",
  3046. "message": "Covered by Drupal's security advisory policy"
  3047. }
  3048. }
  3049. },
  3050. "notification-url": "https://packages.drupal.org/8/downloads",
  3051. "license": [
  3052. "GPL-2.0-or-later"
  3053. ],
  3054. "authors": [
  3055. {
  3056. "name": "bataboza",
  3057. "homepage": "https://www.drupal.org/user/3581173"
  3058. },
  3059. {
  3060. "name": "doxigo",
  3061. "homepage": "https://www.drupal.org/user/1331334"
  3062. },
  3063. {
  3064. "name": "dqd",
  3065. "homepage": "https://www.drupal.org/user/1001934"
  3066. },
  3067. {
  3068. "name": "Hosisam",
  3069. "homepage": "https://www.drupal.org/user/3449435"
  3070. },
  3071. {
  3072. "name": "Nitin shrivastava",
  3073. "homepage": "https://www.drupal.org/user/3725211"
  3074. },
  3075. {
  3076. "name": "paulrad",
  3077. "homepage": "https://www.drupal.org/user/3722439"
  3078. },
  3079. {
  3080. "name": "szeidler",
  3081. "homepage": "https://www.drupal.org/user/767652"
  3082. }
  3083. ],
  3084. "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>.",
  3085. "homepage": "https://www.drupal.org/project/mediteran",
  3086. "support": {
  3087. "source": "https://git.drupalcode.org/project/mediteran"
  3088. }
  3089. },
  3090. {
  3091. "name": "drupal/metatag",
  3092. "version": "1.26.0",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://git.drupalcode.org/project/metatag.git",
  3096. "reference": "8.x-1.26"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip",
  3101. "reference": "8.x-1.26",
  3102. "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8"
  3103. },
  3104. "require": {
  3105. "drupal/core": "^9.3 || ^10",
  3106. "drupal/token": "^1.0"
  3107. },
  3108. "require-dev": {
  3109. "drupal/devel": "^4.0 || ^5.0",
  3110. "drupal/hal": "^9 || ^1 || ^2",
  3111. "drupal/metatag_dc": "*",
  3112. "drupal/metatag_open_graph": "*",
  3113. "drupal/page_manager": "^4.0",
  3114. "drupal/panelizer": "^4.0",
  3115. "drupal/redirect": "^1.0",
  3116. "drupal/webprofiler": "^9 || ^10",
  3117. "mpyw/phpunit-patch-serializable-comparison": "*"
  3118. },
  3119. "type": "drupal-module",
  3120. "extra": {
  3121. "drupal": {
  3122. "version": "8.x-1.26",
  3123. "datestamp": "1687856123",
  3124. "security-coverage": {
  3125. "status": "covered",
  3126. "message": "Covered by Drupal's security advisory policy"
  3127. }
  3128. }
  3129. },
  3130. "notification-url": "https://packages.drupal.org/8/downloads",
  3131. "license": [
  3132. "GPL-2.0-or-later"
  3133. ],
  3134. "authors": [
  3135. {
  3136. "name": "See contributors",
  3137. "homepage": "https://www.drupal.org/node/640498/committers",
  3138. "role": "Developer"
  3139. },
  3140. {
  3141. "name": "Dave Reid",
  3142. "homepage": "https://www.drupal.org/user/53892"
  3143. }
  3144. ],
  3145. "description": "Manage meta tags for all entities.",
  3146. "homepage": "https://www.drupal.org/project/metatag",
  3147. "keywords": [
  3148. "Drupal",
  3149. "seo"
  3150. ],
  3151. "support": {
  3152. "source": "https://git.drupalcode.org/project/metatag",
  3153. "issues": "https://www.drupal.org/project/issues/metatag",
  3154. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3155. }
  3156. },
  3157. {
  3158. "name": "drupal/page_manager",
  3159. "version": "4.0.0-rc2",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://git.drupalcode.org/project/page_manager.git",
  3163. "reference": "8.x-4.0-rc2"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  3168. "reference": "8.x-4.0-rc2",
  3169. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  3170. },
  3171. "require": {
  3172. "drupal/core": "^9.3 || ^10",
  3173. "drupal/ctools": "^3.11 || ^4.0"
  3174. },
  3175. "type": "drupal-module",
  3176. "extra": {
  3177. "drupal": {
  3178. "version": "8.x-4.0-rc2",
  3179. "datestamp": "1671210021",
  3180. "security-coverage": {
  3181. "status": "not-covered",
  3182. "message": "RC releases are not covered by Drupal security advisories."
  3183. }
  3184. },
  3185. "branch-alias": {
  3186. "dev-8.x-4.x": "4.x-dev"
  3187. }
  3188. },
  3189. "notification-url": "https://packages.drupal.org/8/downloads",
  3190. "license": [
  3191. "GPL-2.0-or-later"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "Tim Plunkett",
  3196. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3197. "role": "Maintainer"
  3198. },
  3199. {
  3200. "name": "EclipseGc",
  3201. "homepage": "https://www.drupal.org/user/61203"
  3202. },
  3203. {
  3204. "name": "ivnish",
  3205. "homepage": "https://www.drupal.org/user/3547706"
  3206. },
  3207. {
  3208. "name": "japerry",
  3209. "homepage": "https://www.drupal.org/user/45640"
  3210. },
  3211. {
  3212. "name": "joelpittet",
  3213. "homepage": "https://www.drupal.org/user/160302"
  3214. },
  3215. {
  3216. "name": "manuel.adan",
  3217. "homepage": "https://www.drupal.org/user/516420"
  3218. },
  3219. {
  3220. "name": "phenaproxima",
  3221. "homepage": "https://www.drupal.org/user/205645"
  3222. }
  3223. ],
  3224. "description": "Provides a way to place blocks on a custom page.",
  3225. "homepage": "https://www.drupal.org/project/page_manager",
  3226. "support": {
  3227. "source": "https://git.drupal.org/project/page_manager.git",
  3228. "issues": "https://www.drupal.org/project/issues/page_manager",
  3229. "irc": "irc://irc.freenode.org/drupal-contribute"
  3230. }
  3231. },
  3232. {
  3233. "name": "drupal/panels",
  3234. "version": "dev-4.x",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://git.drupalcode.org/project/panels.git",
  3238. "reference": "4dfd6a07adac69525832b94f6745ac3247a6cd92"
  3239. },
  3240. "require": {
  3241. "drupal/core": "^9.2 || ^10",
  3242. "drupal/ctools": "^3.12 || ^4.0",
  3243. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  3244. },
  3245. "require-dev": {
  3246. "drupal/jquery_ui_droppable": "*",
  3247. "drupal/page_manager": "^4"
  3248. },
  3249. "type": "drupal-module",
  3250. "extra": {
  3251. "branch-alias": {
  3252. "dev-4.x": "4.x-dev",
  3253. "dev-8.x-4.x": "4.x-dev"
  3254. },
  3255. "drupal": {
  3256. "version": "8.x-4.7+5-dev",
  3257. "datestamp": "1693457160",
  3258. "security-coverage": {
  3259. "status": "not-covered",
  3260. "message": "Dev releases are not covered by Drupal security advisories."
  3261. }
  3262. }
  3263. },
  3264. "notification-url": "https://packages.drupal.org/8/downloads",
  3265. "license": [
  3266. "GPL-2.0+"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Jakob Perry",
  3271. "homepage": "https://www.drupal.org/u/japerry"
  3272. },
  3273. {
  3274. "name": "Samuel Mortenson",
  3275. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3276. },
  3277. {
  3278. "name": "See other contributors",
  3279. "homepage": "https://www.drupal.org/node/74958/committers"
  3280. },
  3281. {
  3282. "name": "joelpittet",
  3283. "homepage": "https://www.drupal.org/user/160302"
  3284. },
  3285. {
  3286. "name": "Letharion",
  3287. "homepage": "https://www.drupal.org/user/373603"
  3288. },
  3289. {
  3290. "name": "merlinofchaos",
  3291. "homepage": "https://www.drupal.org/user/26979"
  3292. },
  3293. {
  3294. "name": "neclimdul",
  3295. "homepage": "https://www.drupal.org/user/48673"
  3296. },
  3297. {
  3298. "name": "phenaproxima",
  3299. "homepage": "https://www.drupal.org/user/205645"
  3300. },
  3301. {
  3302. "name": "samuel.mortenson",
  3303. "homepage": "https://www.drupal.org/user/2582268"
  3304. }
  3305. ],
  3306. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3307. "homepage": "https://www.drupal.org/project/panels",
  3308. "support": {
  3309. "source": "http://git.drupal.org/project/panels.git",
  3310. "issues": "https://www.drupal.org/project/issues/panels",
  3311. "irc": "irc://irc.freenode.org/drupal-scotch"
  3312. }
  3313. },
  3314. {
  3315. "name": "drupal/paragraphs",
  3316. "version": "1.17.0",
  3317. "source": {
  3318. "type": "git",
  3319. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3320. "reference": "8.x-1.17"
  3321. },
  3322. "dist": {
  3323. "type": "zip",
  3324. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip",
  3325. "reference": "8.x-1.17",
  3326. "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72"
  3327. },
  3328. "require": {
  3329. "drupal/core": "^9.3 || ^10",
  3330. "drupal/entity_reference_revisions": "~1.3"
  3331. },
  3332. "require-dev": {
  3333. "drupal/block_field": "1.x-dev",
  3334. "drupal/diff": "1.x-dev",
  3335. "drupal/entity_browser": "2.x-dev",
  3336. "drupal/entity_usage": "2.x-dev",
  3337. "drupal/field_group": "3.x-dev",
  3338. "drupal/inline_entity_form": "1.x-dev",
  3339. "drupal/paragraphs-paragraphs_library": "*",
  3340. "drupal/replicate": "1.x-dev",
  3341. "drupal/search_api": "^1",
  3342. "drupal/search_api_db": "*"
  3343. },
  3344. "suggest": {
  3345. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3346. },
  3347. "type": "drupal-module",
  3348. "extra": {
  3349. "drupal": {
  3350. "version": "8.x-1.17",
  3351. "datestamp": "1705234146",
  3352. "security-coverage": {
  3353. "status": "covered",
  3354. "message": "Covered by Drupal's security advisory policy"
  3355. }
  3356. }
  3357. },
  3358. "notification-url": "https://packages.drupal.org/8/downloads",
  3359. "license": [
  3360. "GPL-2.0-or-later"
  3361. ],
  3362. "authors": [
  3363. {
  3364. "name": "Berdir",
  3365. "homepage": "https://www.drupal.org/user/214652"
  3366. },
  3367. {
  3368. "name": "Frans",
  3369. "homepage": "https://www.drupal.org/user/514222"
  3370. },
  3371. {
  3372. "name": "jeroen.b",
  3373. "homepage": "https://www.drupal.org/user/1853532"
  3374. },
  3375. {
  3376. "name": "jstoller",
  3377. "homepage": "https://www.drupal.org/user/99012"
  3378. },
  3379. {
  3380. "name": "miro_dietiker",
  3381. "homepage": "https://www.drupal.org/user/227761"
  3382. },
  3383. {
  3384. "name": "Primsi",
  3385. "homepage": "https://www.drupal.org/user/282629"
  3386. }
  3387. ],
  3388. "description": "Enables the creation of Paragraphs entities.",
  3389. "homepage": "https://www.drupal.org/project/paragraphs",
  3390. "support": {
  3391. "source": "https://git.drupalcode.org/project/paragraphs"
  3392. }
  3393. },
  3394. {
  3395. "name": "drupal/pathauto",
  3396. "version": "1.12.0",
  3397. "source": {
  3398. "type": "git",
  3399. "url": "https://git.drupalcode.org/project/pathauto.git",
  3400. "reference": "8.x-1.12"
  3401. },
  3402. "dist": {
  3403. "type": "zip",
  3404. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  3405. "reference": "8.x-1.12",
  3406. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  3407. },
  3408. "require": {
  3409. "drupal/core": "^9.3 || ^10",
  3410. "drupal/ctools": "*",
  3411. "drupal/token": "*"
  3412. },
  3413. "suggest": {
  3414. "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."
  3415. },
  3416. "type": "drupal-module",
  3417. "extra": {
  3418. "drupal": {
  3419. "version": "8.x-1.12",
  3420. "datestamp": "1696776683",
  3421. "security-coverage": {
  3422. "status": "covered",
  3423. "message": "Covered by Drupal's security advisory policy"
  3424. }
  3425. },
  3426. "drush": {
  3427. "services": {
  3428. "drush.services.yml": "^9 || ^10"
  3429. }
  3430. }
  3431. },
  3432. "notification-url": "https://packages.drupal.org/8/downloads",
  3433. "license": [
  3434. "GPL-2.0-or-later"
  3435. ],
  3436. "authors": [
  3437. {
  3438. "name": "Berdir",
  3439. "homepage": "https://www.drupal.org/user/214652"
  3440. },
  3441. {
  3442. "name": "Dave Reid",
  3443. "homepage": "https://www.drupal.org/user/53892"
  3444. },
  3445. {
  3446. "name": "Freso",
  3447. "homepage": "https://www.drupal.org/user/27504"
  3448. },
  3449. {
  3450. "name": "greggles",
  3451. "homepage": "https://www.drupal.org/user/36762"
  3452. }
  3453. ],
  3454. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  3455. "homepage": "https://www.drupal.org/project/pathauto",
  3456. "support": {
  3457. "source": "https://cgit.drupalcode.org/pathauto",
  3458. "issues": "https://www.drupal.org/project/issues/pathauto",
  3459. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  3460. }
  3461. },
  3462. {
  3463. "name": "drupal/redirect",
  3464. "version": "1.9.0",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://git.drupalcode.org/project/redirect.git",
  3468. "reference": "8.x-1.9"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  3473. "reference": "8.x-1.9",
  3474. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  3475. },
  3476. "require": {
  3477. "drupal/core": "^9.2 || ^10"
  3478. },
  3479. "type": "drupal-module",
  3480. "extra": {
  3481. "drupal": {
  3482. "version": "8.x-1.9",
  3483. "datestamp": "1693393506",
  3484. "security-coverage": {
  3485. "status": "covered",
  3486. "message": "Covered by Drupal's security advisory policy"
  3487. }
  3488. }
  3489. },
  3490. "notification-url": "https://packages.drupal.org/8/downloads",
  3491. "license": [
  3492. "GPL-2.0-or-later"
  3493. ],
  3494. "authors": [
  3495. {
  3496. "name": "Berdir",
  3497. "homepage": "https://www.drupal.org/user/214652"
  3498. },
  3499. {
  3500. "name": "Dave Reid",
  3501. "homepage": "https://www.drupal.org/user/53892"
  3502. },
  3503. {
  3504. "name": "Kristen Pol",
  3505. "homepage": "https://www.drupal.org/user/8389"
  3506. },
  3507. {
  3508. "name": "pifagor",
  3509. "homepage": "https://www.drupal.org/user/2375692"
  3510. }
  3511. ],
  3512. "description": "Allows users to redirect from old URLs to new URLs.",
  3513. "homepage": "https://www.drupal.org/project/redirect",
  3514. "support": {
  3515. "source": "https://git.drupalcode.org/project/redirect"
  3516. }
  3517. },
  3518. {
  3519. "name": "drupal/redirect_after_login",
  3520. "version": "2.8.0",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  3524. "reference": "8.x-2.8"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.8.zip",
  3529. "reference": "8.x-2.8",
  3530. "shasum": "01781d0265c85a8ffa55842c34813daceba995e6"
  3531. },
  3532. "require": {
  3533. "drupal/core": "^9.3 || ^10"
  3534. },
  3535. "type": "drupal-module",
  3536. "extra": {
  3537. "drupal": {
  3538. "version": "8.x-2.8",
  3539. "datestamp": "1698918366",
  3540. "security-coverage": {
  3541. "status": "covered",
  3542. "message": "Covered by Drupal's security advisory policy"
  3543. }
  3544. }
  3545. },
  3546. "notification-url": "https://packages.drupal.org/8/downloads",
  3547. "license": [
  3548. "GPL-2.0-or-later"
  3549. ],
  3550. "authors": [
  3551. {
  3552. "name": "Shamsher Alam",
  3553. "homepage": "https://www.drupal.org/u/shamsher_alam",
  3554. "role": "Author"
  3555. },
  3556. {
  3557. "name": "prempatel2447",
  3558. "homepage": "https://www.drupal.org/user/3250112"
  3559. },
  3560. {
  3561. "name": "rahul-kr-sh",
  3562. "homepage": "https://www.drupal.org/user/3561577"
  3563. },
  3564. {
  3565. "name": "Shamsher_Alam",
  3566. "homepage": "https://www.drupal.org/user/2742027"
  3567. },
  3568. {
  3569. "name": "VladimirAus",
  3570. "homepage": "https://www.drupal.org/user/673120"
  3571. }
  3572. ],
  3573. "description": "Redirect user after login to a configured url",
  3574. "homepage": "https://drupal.org/project/redirect_after_login",
  3575. "support": {
  3576. "source": "https://git.drupalcode.org/project/redirect_after_login"
  3577. }
  3578. },
  3579. {
  3580. "name": "drupal/redis",
  3581. "version": "1.7.0",
  3582. "source": {
  3583. "type": "git",
  3584. "url": "https://git.drupalcode.org/project/redis.git",
  3585. "reference": "8.x-1.7"
  3586. },
  3587. "dist": {
  3588. "type": "zip",
  3589. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  3590. "reference": "8.x-1.7",
  3591. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  3592. },
  3593. "require": {
  3594. "drupal/core": "^9.3 || ^10"
  3595. },
  3596. "suggest": {
  3597. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  3598. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  3599. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  3600. },
  3601. "type": "drupal-module",
  3602. "extra": {
  3603. "drupal": {
  3604. "version": "8.x-1.7",
  3605. "datestamp": "1686175620",
  3606. "security-coverage": {
  3607. "status": "covered",
  3608. "message": "Covered by Drupal's security advisory policy"
  3609. }
  3610. }
  3611. },
  3612. "autoload": {
  3613. "psr-4": {
  3614. "Drupal\\redis\\": "src"
  3615. }
  3616. },
  3617. "notification-url": "https://packages.drupal.org/8/downloads",
  3618. "license": [
  3619. "GPL-2.0-or-later"
  3620. ],
  3621. "authors": [
  3622. {
  3623. "name": "Berdir",
  3624. "homepage": "https://www.drupal.org/user/214652"
  3625. },
  3626. {
  3627. "name": "greg.1.anderson",
  3628. "homepage": "https://www.drupal.org/user/438598"
  3629. },
  3630. {
  3631. "name": "kporras07",
  3632. "homepage": "https://www.drupal.org/user/1349780"
  3633. },
  3634. {
  3635. "name": "pounard",
  3636. "homepage": "https://www.drupal.org/user/240164"
  3637. }
  3638. ],
  3639. "description": "Integration of Drupal with the Redis key-value store.",
  3640. "homepage": "https://www.drupal.org/project/redis",
  3641. "support": {
  3642. "source": "https://git.drupalcode.org/project/redis"
  3643. }
  3644. },
  3645. {
  3646. "name": "drupal/schema_metatag",
  3647. "version": "2.5.0",
  3648. "source": {
  3649. "type": "git",
  3650. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  3651. "reference": "8.x-2.5"
  3652. },
  3653. "dist": {
  3654. "type": "zip",
  3655. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip",
  3656. "reference": "8.x-2.5",
  3657. "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87"
  3658. },
  3659. "require": {
  3660. "drupal/core": "^9.0 || ^10",
  3661. "drupal/metatag": "^1.0"
  3662. },
  3663. "require-dev": {
  3664. "drupal/coder": "^8.3",
  3665. "drupal/metatag_views": "*",
  3666. "drupal/schema_article": "*",
  3667. "drupal/schema_organization": "*",
  3668. "phpcompatibility/php-compatibility": "^9.3"
  3669. },
  3670. "type": "drupal-module",
  3671. "extra": {
  3672. "drupal": {
  3673. "version": "8.x-2.5",
  3674. "datestamp": "1687460392",
  3675. "security-coverage": {
  3676. "status": "covered",
  3677. "message": "Covered by Drupal's security advisory policy"
  3678. }
  3679. }
  3680. },
  3681. "notification-url": "https://packages.drupal.org/8/downloads",
  3682. "license": [
  3683. "GPL-2.0-or-later"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "DamienMcKenna",
  3688. "homepage": "https://www.drupal.org/user/108450"
  3689. },
  3690. {
  3691. "name": "KarenS",
  3692. "homepage": "https://www.drupal.org/user/45874"
  3693. },
  3694. {
  3695. "name": "wells",
  3696. "homepage": "https://www.drupal.org/user/2452278"
  3697. }
  3698. ],
  3699. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  3700. "homepage": "https://www.drupal.org/project/schema_metatag",
  3701. "keywords": [
  3702. "Drupal"
  3703. ],
  3704. "support": {
  3705. "source": "https://git.drupalcode.org/project/schema_metatag",
  3706. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  3707. }
  3708. },
  3709. {
  3710. "name": "drupal/search_api",
  3711. "version": "1.31.0",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://git.drupalcode.org/project/search_api.git",
  3715. "reference": "8.x-1.31"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip",
  3720. "reference": "8.x-1.31",
  3721. "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc"
  3722. },
  3723. "require": {
  3724. "drupal/core": "^10.0"
  3725. },
  3726. "conflict": {
  3727. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  3728. },
  3729. "require-dev": {
  3730. "drupal/language_fallback_fix": "@dev",
  3731. "drupal/search_api_autocomplete": "@dev",
  3732. "drupal/search_api_db": "*"
  3733. },
  3734. "suggest": {
  3735. "drupal/facets": "Adds the ability to create faceted searches.",
  3736. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  3737. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  3738. },
  3739. "type": "drupal-module",
  3740. "extra": {
  3741. "drupal": {
  3742. "version": "8.x-1.31",
  3743. "datestamp": "1700926323",
  3744. "security-coverage": {
  3745. "status": "covered",
  3746. "message": "Covered by Drupal's security advisory policy"
  3747. }
  3748. },
  3749. "drush": {
  3750. "services": {
  3751. "drush.services.yml": "^9 || ^10 || ^11"
  3752. }
  3753. }
  3754. },
  3755. "notification-url": "https://packages.drupal.org/8/downloads",
  3756. "license": [
  3757. "GPL-2.0-or-later"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "Thomas Seidl",
  3762. "homepage": "https://www.drupal.org/u/drunken-monkey"
  3763. },
  3764. {
  3765. "name": "Nick Veenhof",
  3766. "homepage": "https://www.drupal.org/u/nick_vh"
  3767. },
  3768. {
  3769. "name": "See other contributors",
  3770. "homepage": "https://www.drupal.org/node/790418/committers"
  3771. }
  3772. ],
  3773. "description": "Provides a generic framework for modules offering search capabilities.",
  3774. "homepage": "https://www.drupal.org/project/search_api",
  3775. "support": {
  3776. "source": "https://git.drupalcode.org/project/search_api",
  3777. "issues": "https://www.drupal.org/project/issues/search_api",
  3778. "irc": "irc://irc.freenode.org/drupal-search-api"
  3779. }
  3780. },
  3781. {
  3782. "name": "drupal/site_settings",
  3783. "version": "1.20.0",
  3784. "source": {
  3785. "type": "git",
  3786. "url": "https://git.drupalcode.org/project/site_settings.git",
  3787. "reference": "8.x-1.20"
  3788. },
  3789. "dist": {
  3790. "type": "zip",
  3791. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.20.zip",
  3792. "reference": "8.x-1.20",
  3793. "shasum": "b1e3b07437ef0ff7a907b7b6319f16db3942fb1c"
  3794. },
  3795. "require": {
  3796. "drupal/core": "^8 || ^9 || ^10"
  3797. },
  3798. "type": "drupal-module",
  3799. "extra": {
  3800. "drupal": {
  3801. "version": "8.x-1.20",
  3802. "datestamp": "1669790573",
  3803. "security-coverage": {
  3804. "status": "covered",
  3805. "message": "Covered by Drupal's security advisory policy"
  3806. }
  3807. }
  3808. },
  3809. "notification-url": "https://packages.drupal.org/8/downloads",
  3810. "license": [
  3811. "GPL-2.0+"
  3812. ],
  3813. "authors": [
  3814. {
  3815. "name": "bobi-mel",
  3816. "homepage": "https://www.drupal.org/user/3741631"
  3817. },
  3818. {
  3819. "name": "bohart",
  3820. "homepage": "https://www.drupal.org/user/289861"
  3821. },
  3822. {
  3823. "name": "scott_euser",
  3824. "homepage": "https://www.drupal.org/user/3267594"
  3825. }
  3826. ],
  3827. "description": "Provides a site settings entity",
  3828. "homepage": "https://www.drupal.org/project/site_settings",
  3829. "keywords": [
  3830. "Drupal"
  3831. ],
  3832. "support": {
  3833. "source": "http://cgit.drupalcode.org/site_settings",
  3834. "issues": "http://drupal.org/project/issues/site_settings"
  3835. }
  3836. },
  3837. {
  3838. "name": "drupal/subpathauto",
  3839. "version": "1.3.0",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://git.drupalcode.org/project/subpathauto.git",
  3843. "reference": "8.x-1.3"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip",
  3848. "reference": "8.x-1.3",
  3849. "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d"
  3850. },
  3851. "require": {
  3852. "drupal/core": "^8.8 || ^9 || ^10"
  3853. },
  3854. "require-dev": {
  3855. "drupal/redirect": "*"
  3856. },
  3857. "type": "drupal-module",
  3858. "extra": {
  3859. "drupal": {
  3860. "version": "8.x-1.3",
  3861. "datestamp": "1676316639",
  3862. "security-coverage": {
  3863. "status": "covered",
  3864. "message": "Covered by Drupal's security advisory policy"
  3865. }
  3866. }
  3867. },
  3868. "notification-url": "https://packages.drupal.org/8/downloads",
  3869. "license": [
  3870. "GPL-2.0-or-later"
  3871. ],
  3872. "authors": [
  3873. {
  3874. "name": "Dave Reid",
  3875. "homepage": "https://www.drupal.org/user/53892"
  3876. },
  3877. {
  3878. "name": "lauriii",
  3879. "homepage": "https://www.drupal.org/user/1078742"
  3880. },
  3881. {
  3882. "name": "NickDickinsonWilde",
  3883. "homepage": "https://www.drupal.org/user/3094661"
  3884. }
  3885. ],
  3886. "description": "Provides support for extending sub-paths of URL aliases.",
  3887. "homepage": "https://www.drupal.org/project/subpathauto",
  3888. "support": {
  3889. "source": "https://cgit.drupalcode.org/subpathauto",
  3890. "issues": "https://www.drupal.org/project/issues/subpathauto"
  3891. }
  3892. },
  3893. {
  3894. "name": "drupal/tacjs",
  3895. "version": "6.4.0",
  3896. "source": {
  3897. "type": "git",
  3898. "url": "https://git.drupalcode.org/project/tacjs.git",
  3899. "reference": "8.x-6.4"
  3900. },
  3901. "dist": {
  3902. "type": "zip",
  3903. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-6.4.zip",
  3904. "reference": "8.x-6.4",
  3905. "shasum": "20a23611b6ea7a5f3b8d2d5ec9ce714cd3e00d77"
  3906. },
  3907. "require": {
  3908. "drupal/core": "^8.8 || ^9 || ^10"
  3909. },
  3910. "type": "drupal-module",
  3911. "extra": {
  3912. "drupal": {
  3913. "version": "8.x-6.4",
  3914. "datestamp": "1687974794",
  3915. "security-coverage": {
  3916. "status": "covered",
  3917. "message": "Covered by Drupal's security advisory policy"
  3918. }
  3919. }
  3920. },
  3921. "notification-url": "https://packages.drupal.org/8/downloads",
  3922. "license": [
  3923. "GPL-2.0-or-later"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "asmaakhalfi",
  3928. "homepage": "https://www.drupal.org/user/3587145"
  3929. },
  3930. {
  3931. "name": "boulaffasae",
  3932. "homepage": "https://www.drupal.org/user/3584750"
  3933. },
  3934. {
  3935. "name": "chaimaariz",
  3936. "homepage": "https://www.drupal.org/user/3549766"
  3937. },
  3938. {
  3939. "name": "k.asmouh",
  3940. "homepage": "https://www.drupal.org/user/3135943"
  3941. },
  3942. {
  3943. "name": "lamlih",
  3944. "homepage": "https://www.drupal.org/user/3708454"
  3945. },
  3946. {
  3947. "name": "mably",
  3948. "homepage": "https://www.drupal.org/user/3375160"
  3949. },
  3950. {
  3951. "name": "netsliver",
  3952. "homepage": "https://www.drupal.org/user/3082011"
  3953. },
  3954. {
  3955. "name": "prudloff",
  3956. "homepage": "https://www.drupal.org/user/3611858"
  3957. }
  3958. ],
  3959. "description": "Comply to the European cookie law using tarteaucitron.js.",
  3960. "homepage": "https://www.drupal.org/project/tacjs",
  3961. "keywords": [
  3962. "Drupal",
  3963. "tacjs"
  3964. ],
  3965. "support": {
  3966. "source": "https://git.drupalcode.org/project/tacjs",
  3967. "issues": "https://www.drupal.org/project/issues/tacjs"
  3968. }
  3969. },
  3970. {
  3971. "name": "drupal/time_range",
  3972. "version": "9.0.2",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://git.drupalcode.org/project/time_range.git",
  3976. "reference": "9.0.2"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://ftp.drupal.org/files/projects/time_range-9.0.2.zip",
  3981. "reference": "9.0.2",
  3982. "shasum": "e0de44c4fc10f86b9ea001458deb7eac02f2ff28"
  3983. },
  3984. "require": {
  3985. "drupal/core": "^8 || ^9 || ^10"
  3986. },
  3987. "type": "drupal-module",
  3988. "extra": {
  3989. "drupal": {
  3990. "version": "9.0.2",
  3991. "datestamp": "1688992195",
  3992. "security-coverage": {
  3993. "status": "covered",
  3994. "message": "Covered by Drupal's security advisory policy"
  3995. }
  3996. }
  3997. },
  3998. "notification-url": "https://packages.drupal.org/8/downloads",
  3999. "license": [
  4000. "GPL-2.0+"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "dravenk",
  4005. "homepage": "https://www.drupal.org/user/3452417"
  4006. }
  4007. ],
  4008. "description": "Provides the form widget to fill in time range.",
  4009. "homepage": "https://github.com/DravenK/time-range.git",
  4010. "support": {
  4011. "source": "https://github.com/DravenK/time-range.git",
  4012. "issues": "https://github.com/DravenK/time-range/issues"
  4013. }
  4014. },
  4015. {
  4016. "name": "drupal/token",
  4017. "version": "1.13.0",
  4018. "source": {
  4019. "type": "git",
  4020. "url": "https://git.drupalcode.org/project/token.git",
  4021. "reference": "8.x-1.13"
  4022. },
  4023. "dist": {
  4024. "type": "zip",
  4025. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  4026. "reference": "8.x-1.13",
  4027. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  4028. },
  4029. "require": {
  4030. "drupal/core": "^9.2 || ^10"
  4031. },
  4032. "type": "drupal-module",
  4033. "extra": {
  4034. "drupal": {
  4035. "version": "8.x-1.13",
  4036. "datestamp": "1697885927",
  4037. "security-coverage": {
  4038. "status": "covered",
  4039. "message": "Covered by Drupal's security advisory policy"
  4040. }
  4041. },
  4042. "drush": {
  4043. "services": {
  4044. "drush.services.yml": ">=9"
  4045. }
  4046. }
  4047. },
  4048. "notification-url": "https://packages.drupal.org/8/downloads",
  4049. "license": [
  4050. "GPL-2.0-or-later"
  4051. ],
  4052. "authors": [
  4053. {
  4054. "name": "Berdir",
  4055. "homepage": "https://www.drupal.org/user/214652"
  4056. },
  4057. {
  4058. "name": "Dave Reid",
  4059. "homepage": "https://www.drupal.org/user/53892"
  4060. },
  4061. {
  4062. "name": "eaton",
  4063. "homepage": "https://www.drupal.org/user/16496"
  4064. },
  4065. {
  4066. "name": "fago",
  4067. "homepage": "https://www.drupal.org/user/16747"
  4068. },
  4069. {
  4070. "name": "greggles",
  4071. "homepage": "https://www.drupal.org/user/36762"
  4072. },
  4073. {
  4074. "name": "mikeryan",
  4075. "homepage": "https://www.drupal.org/user/4420"
  4076. }
  4077. ],
  4078. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4079. "homepage": "https://www.drupal.org/project/token",
  4080. "support": {
  4081. "source": "https://git.drupalcode.org/project/token"
  4082. }
  4083. },
  4084. {
  4085. "name": "drupal/video_embed_field",
  4086. "version": "2.5.0",
  4087. "source": {
  4088. "type": "git",
  4089. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4090. "reference": "8.x-2.5"
  4091. },
  4092. "dist": {
  4093. "type": "zip",
  4094. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  4095. "reference": "8.x-2.5",
  4096. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  4097. },
  4098. "require": {
  4099. "drupal/core": "^9.2 || ^10"
  4100. },
  4101. "require-dev": {
  4102. "drupal/ckeditor": "^1",
  4103. "drupal/colorbox": "^2",
  4104. "drupal/video_embed_media": "*"
  4105. },
  4106. "type": "drupal-module",
  4107. "extra": {
  4108. "drupal": {
  4109. "version": "8.x-2.5",
  4110. "datestamp": "1671413311",
  4111. "security-coverage": {
  4112. "status": "covered",
  4113. "message": "Covered by Drupal's security advisory policy"
  4114. }
  4115. }
  4116. },
  4117. "notification-url": "https://packages.drupal.org/8/downloads",
  4118. "license": [
  4119. "GPL-2.0-or-later"
  4120. ],
  4121. "authors": [
  4122. {
  4123. "name": "abhinesh",
  4124. "homepage": "https://www.drupal.org/user/3645979"
  4125. },
  4126. {
  4127. "name": "jec006",
  4128. "homepage": "https://www.drupal.org/user/855980"
  4129. },
  4130. {
  4131. "name": "plopesc",
  4132. "homepage": "https://www.drupal.org/user/282415"
  4133. },
  4134. {
  4135. "name": "Sam152",
  4136. "homepage": "https://www.drupal.org/user/1485048"
  4137. }
  4138. ],
  4139. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4140. "homepage": "https://www.drupal.org/project/video_embed_field",
  4141. "support": {
  4142. "source": "https://git.drupalcode.org/project/video_embed_field"
  4143. }
  4144. },
  4145. {
  4146. "name": "drupal/views_url_path_arguments",
  4147. "version": "1.2.0",
  4148. "source": {
  4149. "type": "git",
  4150. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4151. "reference": "8.x-1.2"
  4152. },
  4153. "dist": {
  4154. "type": "zip",
  4155. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.2.zip",
  4156. "reference": "8.x-1.2",
  4157. "shasum": "949023c9c1dd31f91d60e76580dc9d5c2e0732d4"
  4158. },
  4159. "require": {
  4160. "drupal/core": "^8 || ^9 || ^10"
  4161. },
  4162. "type": "drupal-module",
  4163. "extra": {
  4164. "drupal": {
  4165. "version": "8.x-1.2",
  4166. "datestamp": "1689607584",
  4167. "security-coverage": {
  4168. "status": "covered",
  4169. "message": "Covered by Drupal's security advisory policy"
  4170. }
  4171. }
  4172. },
  4173. "notification-url": "https://packages.drupal.org/8/downloads",
  4174. "license": [
  4175. "GPL-2.0+"
  4176. ],
  4177. "authors": [
  4178. {
  4179. "name": "heddn",
  4180. "homepage": "https://www.drupal.org/user/1463982"
  4181. }
  4182. ],
  4183. "description": "Simple module to convert a view argument's entity id into its url path.",
  4184. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4185. "keywords": [
  4186. "Drupal"
  4187. ],
  4188. "support": {
  4189. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4190. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4191. }
  4192. },
  4193. {
  4194. "name": "drush/drush",
  4195. "version": "12.4.3",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/drush-ops/drush.git",
  4199. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4204. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4205. "shasum": ""
  4206. },
  4207. "require": {
  4208. "chi-teck/drupal-code-generator": "^3.0",
  4209. "composer-runtime-api": "^2.2",
  4210. "composer/semver": "^1.4 || ^3",
  4211. "consolidation/annotated-command": "^4.9.1",
  4212. "consolidation/config": "^2.1.2",
  4213. "consolidation/filter-via-dot-access-data": "^2.0.2",
  4214. "consolidation/output-formatters": "^4.3.2",
  4215. "consolidation/robo": "^4.0.6",
  4216. "consolidation/site-alias": "^4",
  4217. "consolidation/site-process": "^5.2.0",
  4218. "ext-dom": "*",
  4219. "grasmash/yaml-cli": "^3.1",
  4220. "guzzlehttp/guzzle": "^7.0",
  4221. "league/container": "^4",
  4222. "php": ">=8.1",
  4223. "psy/psysh": "~0.11",
  4224. "symfony/event-dispatcher": "^6",
  4225. "symfony/filesystem": "^6.1",
  4226. "symfony/finder": "^6",
  4227. "symfony/var-dumper": "^6.0",
  4228. "symfony/yaml": "^6.0",
  4229. "webflo/drupal-finder": "^1.2"
  4230. },
  4231. "conflict": {
  4232. "drupal/core": "< 10.0",
  4233. "drupal/migrate_run": "*",
  4234. "drupal/migrate_tools": "<= 5"
  4235. },
  4236. "require-dev": {
  4237. "composer/installers": "^2",
  4238. "cweagans/composer-patches": "~1.0",
  4239. "drupal/core-recommended": "^10",
  4240. "drupal/semver_example": "2.3.0",
  4241. "phpunit/phpunit": "^9",
  4242. "rector/rector": "^0.12",
  4243. "squizlabs/php_codesniffer": "^3.7"
  4244. },
  4245. "bin": [
  4246. "drush"
  4247. ],
  4248. "type": "library",
  4249. "extra": {
  4250. "installer-paths": {
  4251. "sut/core": [
  4252. "type:drupal-core"
  4253. ],
  4254. "sut/libraries/{$name}": [
  4255. "type:drupal-library"
  4256. ],
  4257. "sut/modules/unish/{$name}": [
  4258. "drupal/devel"
  4259. ],
  4260. "sut/themes/unish/{$name}": [
  4261. "drupal/empty_theme"
  4262. ],
  4263. "sut/modules/contrib/{$name}": [
  4264. "type:drupal-module"
  4265. ],
  4266. "sut/profiles/contrib/{$name}": [
  4267. "type:drupal-profile"
  4268. ],
  4269. "sut/themes/contrib/{$name}": [
  4270. "type:drupal-theme"
  4271. ],
  4272. "sut/drush/contrib/{$name}": [
  4273. "type:drupal-drush"
  4274. ]
  4275. }
  4276. },
  4277. "autoload": {
  4278. "psr-4": {
  4279. "Drush\\": "src/"
  4280. }
  4281. },
  4282. "notification-url": "https://packagist.org/downloads/",
  4283. "license": [
  4284. "GPL-2.0-or-later"
  4285. ],
  4286. "authors": [
  4287. {
  4288. "name": "Moshe Weitzman",
  4289. "email": "weitzman@tejasa.com"
  4290. },
  4291. {
  4292. "name": "Owen Barton",
  4293. "email": "drupal@owenbarton.com"
  4294. },
  4295. {
  4296. "name": "Greg Anderson",
  4297. "email": "greg.1.anderson@greenknowe.org"
  4298. },
  4299. {
  4300. "name": "Jonathan Araña Cruz",
  4301. "email": "jonhattan@faita.net"
  4302. },
  4303. {
  4304. "name": "Jonathan Hedstrom",
  4305. "email": "jhedstrom@gmail.com"
  4306. },
  4307. {
  4308. "name": "Christopher Gervais",
  4309. "email": "chris@ergonlogic.com"
  4310. },
  4311. {
  4312. "name": "Dave Reid",
  4313. "email": "dave@davereid.net"
  4314. },
  4315. {
  4316. "name": "Damian Lee",
  4317. "email": "damiankloip@googlemail.com"
  4318. }
  4319. ],
  4320. "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.",
  4321. "homepage": "http://www.drush.org",
  4322. "support": {
  4323. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  4324. "issues": "https://github.com/drush-ops/drush/issues",
  4325. "security": "https://github.com/drush-ops/drush/security/advisories",
  4326. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  4327. "source": "https://github.com/drush-ops/drush/tree/12.4.3"
  4328. },
  4329. "funding": [
  4330. {
  4331. "url": "https://github.com/weitzman",
  4332. "type": "github"
  4333. }
  4334. ],
  4335. "time": "2023-11-16T22:57:24+00:00"
  4336. },
  4337. {
  4338. "name": "egulias/email-validator",
  4339. "version": "4.0.2",
  4340. "source": {
  4341. "type": "git",
  4342. "url": "https://github.com/egulias/EmailValidator.git",
  4343. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  4344. },
  4345. "dist": {
  4346. "type": "zip",
  4347. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  4348. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  4349. "shasum": ""
  4350. },
  4351. "require": {
  4352. "doctrine/lexer": "^2.0 || ^3.0",
  4353. "php": ">=8.1",
  4354. "symfony/polyfill-intl-idn": "^1.26"
  4355. },
  4356. "require-dev": {
  4357. "phpunit/phpunit": "^10.2",
  4358. "vimeo/psalm": "^5.12"
  4359. },
  4360. "suggest": {
  4361. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4362. },
  4363. "type": "library",
  4364. "extra": {
  4365. "branch-alias": {
  4366. "dev-master": "4.0.x-dev"
  4367. }
  4368. },
  4369. "autoload": {
  4370. "psr-4": {
  4371. "Egulias\\EmailValidator\\": "src"
  4372. }
  4373. },
  4374. "notification-url": "https://packagist.org/downloads/",
  4375. "license": [
  4376. "MIT"
  4377. ],
  4378. "authors": [
  4379. {
  4380. "name": "Eduardo Gulias Davis"
  4381. }
  4382. ],
  4383. "description": "A library for validating emails against several RFCs",
  4384. "homepage": "https://github.com/egulias/EmailValidator",
  4385. "keywords": [
  4386. "email",
  4387. "emailvalidation",
  4388. "emailvalidator",
  4389. "validation",
  4390. "validator"
  4391. ],
  4392. "support": {
  4393. "issues": "https://github.com/egulias/EmailValidator/issues",
  4394. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  4395. },
  4396. "funding": [
  4397. {
  4398. "url": "https://github.com/egulias",
  4399. "type": "github"
  4400. }
  4401. ],
  4402. "time": "2023-10-06T06:47:41+00:00"
  4403. },
  4404. {
  4405. "name": "grasmash/expander",
  4406. "version": "3.0.0",
  4407. "source": {
  4408. "type": "git",
  4409. "url": "https://github.com/grasmash/expander.git",
  4410. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  4411. },
  4412. "dist": {
  4413. "type": "zip",
  4414. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4415. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4416. "shasum": ""
  4417. },
  4418. "require": {
  4419. "dflydev/dot-access-data": "^3.0.0",
  4420. "php": ">=8.0",
  4421. "psr/log": "^2 | ^3"
  4422. },
  4423. "require-dev": {
  4424. "greg-1-anderson/composer-test-scenarios": "^1",
  4425. "php-coveralls/php-coveralls": "^2.5",
  4426. "phpunit/phpunit": "^9",
  4427. "squizlabs/php_codesniffer": "^3.3"
  4428. },
  4429. "type": "library",
  4430. "extra": {
  4431. "branch-alias": {
  4432. "dev-master": "1.x-dev"
  4433. }
  4434. },
  4435. "autoload": {
  4436. "psr-4": {
  4437. "Grasmash\\Expander\\": "src/"
  4438. }
  4439. },
  4440. "notification-url": "https://packagist.org/downloads/",
  4441. "license": [
  4442. "MIT"
  4443. ],
  4444. "authors": [
  4445. {
  4446. "name": "Matthew Grasmick"
  4447. }
  4448. ],
  4449. "description": "Expands internal property references in PHP arrays file.",
  4450. "support": {
  4451. "issues": "https://github.com/grasmash/expander/issues",
  4452. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  4453. },
  4454. "time": "2022-05-10T13:14:49+00:00"
  4455. },
  4456. {
  4457. "name": "grasmash/yaml-cli",
  4458. "version": "3.1.0",
  4459. "source": {
  4460. "type": "git",
  4461. "url": "https://github.com/grasmash/yaml-cli.git",
  4462. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0"
  4463. },
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4467. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4468. "shasum": ""
  4469. },
  4470. "require": {
  4471. "dflydev/dot-access-data": "^3",
  4472. "php": ">=8.0",
  4473. "symfony/console": "^6",
  4474. "symfony/filesystem": "^6",
  4475. "symfony/yaml": "^6"
  4476. },
  4477. "require-dev": {
  4478. "php-coveralls/php-coveralls": "^2",
  4479. "phpunit/phpunit": "^9",
  4480. "squizlabs/php_codesniffer": "^3.0"
  4481. },
  4482. "bin": [
  4483. "bin/yaml-cli"
  4484. ],
  4485. "type": "library",
  4486. "extra": {
  4487. "branch-alias": {
  4488. "dev-master": "3.x-dev"
  4489. }
  4490. },
  4491. "autoload": {
  4492. "psr-4": {
  4493. "Grasmash\\YamlCli\\": "src/"
  4494. }
  4495. },
  4496. "notification-url": "https://packagist.org/downloads/",
  4497. "license": [
  4498. "MIT"
  4499. ],
  4500. "authors": [
  4501. {
  4502. "name": "Matthew Grasmick"
  4503. }
  4504. ],
  4505. "description": "A command line tool for reading and manipulating yaml files.",
  4506. "support": {
  4507. "issues": "https://github.com/grasmash/yaml-cli/issues",
  4508. "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0"
  4509. },
  4510. "time": "2022-05-09T20:22:34+00:00"
  4511. },
  4512. {
  4513. "name": "guzzlehttp/guzzle",
  4514. "version": "7.8.1",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://github.com/guzzle/guzzle.git",
  4518. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  4523. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  4524. "shasum": ""
  4525. },
  4526. "require": {
  4527. "ext-json": "*",
  4528. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  4529. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  4530. "php": "^7.2.5 || ^8.0",
  4531. "psr/http-client": "^1.0",
  4532. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4533. },
  4534. "provide": {
  4535. "psr/http-client-implementation": "1.0"
  4536. },
  4537. "require-dev": {
  4538. "bamarni/composer-bin-plugin": "^1.8.2",
  4539. "ext-curl": "*",
  4540. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  4541. "php-http/message-factory": "^1.1",
  4542. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  4543. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4544. },
  4545. "suggest": {
  4546. "ext-curl": "Required for CURL handler support",
  4547. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4548. "psr/log": "Required for using the Log middleware"
  4549. },
  4550. "type": "library",
  4551. "extra": {
  4552. "bamarni-bin": {
  4553. "bin-links": true,
  4554. "forward-command": false
  4555. }
  4556. },
  4557. "autoload": {
  4558. "files": [
  4559. "src/functions_include.php"
  4560. ],
  4561. "psr-4": {
  4562. "GuzzleHttp\\": "src/"
  4563. }
  4564. },
  4565. "notification-url": "https://packagist.org/downloads/",
  4566. "license": [
  4567. "MIT"
  4568. ],
  4569. "authors": [
  4570. {
  4571. "name": "Graham Campbell",
  4572. "email": "hello@gjcampbell.co.uk",
  4573. "homepage": "https://github.com/GrahamCampbell"
  4574. },
  4575. {
  4576. "name": "Michael Dowling",
  4577. "email": "mtdowling@gmail.com",
  4578. "homepage": "https://github.com/mtdowling"
  4579. },
  4580. {
  4581. "name": "Jeremy Lindblom",
  4582. "email": "jeremeamia@gmail.com",
  4583. "homepage": "https://github.com/jeremeamia"
  4584. },
  4585. {
  4586. "name": "George Mponos",
  4587. "email": "gmponos@gmail.com",
  4588. "homepage": "https://github.com/gmponos"
  4589. },
  4590. {
  4591. "name": "Tobias Nyholm",
  4592. "email": "tobias.nyholm@gmail.com",
  4593. "homepage": "https://github.com/Nyholm"
  4594. },
  4595. {
  4596. "name": "Márk Sági-Kazár",
  4597. "email": "mark.sagikazar@gmail.com",
  4598. "homepage": "https://github.com/sagikazarmark"
  4599. },
  4600. {
  4601. "name": "Tobias Schultze",
  4602. "email": "webmaster@tubo-world.de",
  4603. "homepage": "https://github.com/Tobion"
  4604. }
  4605. ],
  4606. "description": "Guzzle is a PHP HTTP client library",
  4607. "keywords": [
  4608. "client",
  4609. "curl",
  4610. "framework",
  4611. "http",
  4612. "http client",
  4613. "psr-18",
  4614. "psr-7",
  4615. "rest",
  4616. "web service"
  4617. ],
  4618. "support": {
  4619. "issues": "https://github.com/guzzle/guzzle/issues",
  4620. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  4621. },
  4622. "funding": [
  4623. {
  4624. "url": "https://github.com/GrahamCampbell",
  4625. "type": "github"
  4626. },
  4627. {
  4628. "url": "https://github.com/Nyholm",
  4629. "type": "github"
  4630. },
  4631. {
  4632. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  4633. "type": "tidelift"
  4634. }
  4635. ],
  4636. "time": "2023-12-03T20:35:24+00:00"
  4637. },
  4638. {
  4639. "name": "guzzlehttp/promises",
  4640. "version": "2.0.2",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/guzzle/promises.git",
  4644. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  4649. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  4650. "shasum": ""
  4651. },
  4652. "require": {
  4653. "php": "^7.2.5 || ^8.0"
  4654. },
  4655. "require-dev": {
  4656. "bamarni/composer-bin-plugin": "^1.8.2",
  4657. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4658. },
  4659. "type": "library",
  4660. "extra": {
  4661. "bamarni-bin": {
  4662. "bin-links": true,
  4663. "forward-command": false
  4664. }
  4665. },
  4666. "autoload": {
  4667. "psr-4": {
  4668. "GuzzleHttp\\Promise\\": "src/"
  4669. }
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "MIT"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Graham Campbell",
  4678. "email": "hello@gjcampbell.co.uk",
  4679. "homepage": "https://github.com/GrahamCampbell"
  4680. },
  4681. {
  4682. "name": "Michael Dowling",
  4683. "email": "mtdowling@gmail.com",
  4684. "homepage": "https://github.com/mtdowling"
  4685. },
  4686. {
  4687. "name": "Tobias Nyholm",
  4688. "email": "tobias.nyholm@gmail.com",
  4689. "homepage": "https://github.com/Nyholm"
  4690. },
  4691. {
  4692. "name": "Tobias Schultze",
  4693. "email": "webmaster@tubo-world.de",
  4694. "homepage": "https://github.com/Tobion"
  4695. }
  4696. ],
  4697. "description": "Guzzle promises library",
  4698. "keywords": [
  4699. "promise"
  4700. ],
  4701. "support": {
  4702. "issues": "https://github.com/guzzle/promises/issues",
  4703. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  4704. },
  4705. "funding": [
  4706. {
  4707. "url": "https://github.com/GrahamCampbell",
  4708. "type": "github"
  4709. },
  4710. {
  4711. "url": "https://github.com/Nyholm",
  4712. "type": "github"
  4713. },
  4714. {
  4715. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  4716. "type": "tidelift"
  4717. }
  4718. ],
  4719. "time": "2023-12-03T20:19:20+00:00"
  4720. },
  4721. {
  4722. "name": "guzzlehttp/psr7",
  4723. "version": "2.6.2",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/guzzle/psr7.git",
  4727. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4732. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4733. "shasum": ""
  4734. },
  4735. "require": {
  4736. "php": "^7.2.5 || ^8.0",
  4737. "psr/http-factory": "^1.0",
  4738. "psr/http-message": "^1.1 || ^2.0",
  4739. "ralouphie/getallheaders": "^3.0"
  4740. },
  4741. "provide": {
  4742. "psr/http-factory-implementation": "1.0",
  4743. "psr/http-message-implementation": "1.0"
  4744. },
  4745. "require-dev": {
  4746. "bamarni/composer-bin-plugin": "^1.8.2",
  4747. "http-interop/http-factory-tests": "^0.9",
  4748. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4749. },
  4750. "suggest": {
  4751. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  4752. },
  4753. "type": "library",
  4754. "extra": {
  4755. "bamarni-bin": {
  4756. "bin-links": true,
  4757. "forward-command": false
  4758. }
  4759. },
  4760. "autoload": {
  4761. "psr-4": {
  4762. "GuzzleHttp\\Psr7\\": "src/"
  4763. }
  4764. },
  4765. "notification-url": "https://packagist.org/downloads/",
  4766. "license": [
  4767. "MIT"
  4768. ],
  4769. "authors": [
  4770. {
  4771. "name": "Graham Campbell",
  4772. "email": "hello@gjcampbell.co.uk",
  4773. "homepage": "https://github.com/GrahamCampbell"
  4774. },
  4775. {
  4776. "name": "Michael Dowling",
  4777. "email": "mtdowling@gmail.com",
  4778. "homepage": "https://github.com/mtdowling"
  4779. },
  4780. {
  4781. "name": "George Mponos",
  4782. "email": "gmponos@gmail.com",
  4783. "homepage": "https://github.com/gmponos"
  4784. },
  4785. {
  4786. "name": "Tobias Nyholm",
  4787. "email": "tobias.nyholm@gmail.com",
  4788. "homepage": "https://github.com/Nyholm"
  4789. },
  4790. {
  4791. "name": "Márk Sági-Kazár",
  4792. "email": "mark.sagikazar@gmail.com",
  4793. "homepage": "https://github.com/sagikazarmark"
  4794. },
  4795. {
  4796. "name": "Tobias Schultze",
  4797. "email": "webmaster@tubo-world.de",
  4798. "homepage": "https://github.com/Tobion"
  4799. },
  4800. {
  4801. "name": "Márk Sági-Kazár",
  4802. "email": "mark.sagikazar@gmail.com",
  4803. "homepage": "https://sagikazarmark.hu"
  4804. }
  4805. ],
  4806. "description": "PSR-7 message implementation that also provides common utility methods",
  4807. "keywords": [
  4808. "http",
  4809. "message",
  4810. "psr-7",
  4811. "request",
  4812. "response",
  4813. "stream",
  4814. "uri",
  4815. "url"
  4816. ],
  4817. "support": {
  4818. "issues": "https://github.com/guzzle/psr7/issues",
  4819. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  4820. },
  4821. "funding": [
  4822. {
  4823. "url": "https://github.com/GrahamCampbell",
  4824. "type": "github"
  4825. },
  4826. {
  4827. "url": "https://github.com/Nyholm",
  4828. "type": "github"
  4829. },
  4830. {
  4831. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  4832. "type": "tidelift"
  4833. }
  4834. ],
  4835. "time": "2023-12-03T20:05:35+00:00"
  4836. },
  4837. {
  4838. "name": "itamair/geophp",
  4839. "version": "1.6",
  4840. "source": {
  4841. "type": "git",
  4842. "url": "https://github.com/itamair/geoPHP.git",
  4843. "reference": "f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6"
  4844. },
  4845. "dist": {
  4846. "type": "zip",
  4847. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6",
  4848. "reference": "f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6",
  4849. "shasum": ""
  4850. },
  4851. "require-dev": {
  4852. "phpunit/phpunit": "4.1.* || 9.5.*"
  4853. },
  4854. "type": "library",
  4855. "autoload": {
  4856. "classmap": [
  4857. "geoPHP.inc"
  4858. ]
  4859. },
  4860. "notification-url": "https://packagist.org/downloads/",
  4861. "license": [
  4862. "GPL-2.0+"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Italo Mairo",
  4867. "homepage": "https://www.linkedin.com/in/italomairo/",
  4868. "role": "Maintanier of this Library Repo"
  4869. },
  4870. {
  4871. "name": "Patrick Hayes",
  4872. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  4873. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  4874. }
  4875. ],
  4876. "description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.",
  4877. "homepage": "https://github.com/itamair/geoPHP",
  4878. "support": {
  4879. "source": "https://github.com/itamair/geoPHP/tree/1.6"
  4880. },
  4881. "time": "2023-12-23T23:28:59+00:00"
  4882. },
  4883. {
  4884. "name": "league/container",
  4885. "version": "4.2.0",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://github.com/thephpleague/container.git",
  4889. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  4894. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  4895. "shasum": ""
  4896. },
  4897. "require": {
  4898. "php": "^7.2 || ^8.0",
  4899. "psr/container": "^1.1 || ^2.0"
  4900. },
  4901. "provide": {
  4902. "psr/container-implementation": "^1.0"
  4903. },
  4904. "replace": {
  4905. "orno/di": "~2.0"
  4906. },
  4907. "require-dev": {
  4908. "nette/php-generator": "^3.4",
  4909. "nikic/php-parser": "^4.10",
  4910. "phpstan/phpstan": "^0.12.47",
  4911. "phpunit/phpunit": "^8.5.17",
  4912. "roave/security-advisories": "dev-latest",
  4913. "scrutinizer/ocular": "^1.8",
  4914. "squizlabs/php_codesniffer": "^3.6"
  4915. },
  4916. "type": "library",
  4917. "extra": {
  4918. "branch-alias": {
  4919. "dev-master": "4.x-dev",
  4920. "dev-4.x": "4.x-dev",
  4921. "dev-3.x": "3.x-dev",
  4922. "dev-2.x": "2.x-dev",
  4923. "dev-1.x": "1.x-dev"
  4924. }
  4925. },
  4926. "autoload": {
  4927. "psr-4": {
  4928. "League\\Container\\": "src"
  4929. }
  4930. },
  4931. "notification-url": "https://packagist.org/downloads/",
  4932. "license": [
  4933. "MIT"
  4934. ],
  4935. "authors": [
  4936. {
  4937. "name": "Phil Bennett",
  4938. "email": "mail@philbennett.co.uk",
  4939. "role": "Developer"
  4940. }
  4941. ],
  4942. "description": "A fast and intuitive dependency injection container.",
  4943. "homepage": "https://github.com/thephpleague/container",
  4944. "keywords": [
  4945. "container",
  4946. "dependency",
  4947. "di",
  4948. "injection",
  4949. "league",
  4950. "provider",
  4951. "service"
  4952. ],
  4953. "support": {
  4954. "issues": "https://github.com/thephpleague/container/issues",
  4955. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  4956. },
  4957. "funding": [
  4958. {
  4959. "url": "https://github.com/philipobenito",
  4960. "type": "github"
  4961. }
  4962. ],
  4963. "time": "2021-11-16T10:29:06+00:00"
  4964. },
  4965. {
  4966. "name": "masterminds/html5",
  4967. "version": "2.8.1",
  4968. "source": {
  4969. "type": "git",
  4970. "url": "https://github.com/Masterminds/html5-php.git",
  4971. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  4972. },
  4973. "dist": {
  4974. "type": "zip",
  4975. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  4976. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  4977. "shasum": ""
  4978. },
  4979. "require": {
  4980. "ext-dom": "*",
  4981. "php": ">=5.3.0"
  4982. },
  4983. "require-dev": {
  4984. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  4985. },
  4986. "type": "library",
  4987. "extra": {
  4988. "branch-alias": {
  4989. "dev-master": "2.7-dev"
  4990. }
  4991. },
  4992. "autoload": {
  4993. "psr-4": {
  4994. "Masterminds\\": "src"
  4995. }
  4996. },
  4997. "notification-url": "https://packagist.org/downloads/",
  4998. "license": [
  4999. "MIT"
  5000. ],
  5001. "authors": [
  5002. {
  5003. "name": "Matt Butcher",
  5004. "email": "technosophos@gmail.com"
  5005. },
  5006. {
  5007. "name": "Matt Farina",
  5008. "email": "matt@mattfarina.com"
  5009. },
  5010. {
  5011. "name": "Asmir Mustafic",
  5012. "email": "goetas@gmail.com"
  5013. }
  5014. ],
  5015. "description": "An HTML5 parser and serializer.",
  5016. "homepage": "http://masterminds.github.io/html5-php",
  5017. "keywords": [
  5018. "HTML5",
  5019. "dom",
  5020. "html",
  5021. "parser",
  5022. "querypath",
  5023. "serializer",
  5024. "xml"
  5025. ],
  5026. "support": {
  5027. "issues": "https://github.com/Masterminds/html5-php/issues",
  5028. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  5029. },
  5030. "time": "2023-05-10T11:58:31+00:00"
  5031. },
  5032. {
  5033. "name": "mck89/peast",
  5034. "version": "v1.15.4",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/mck89/peast.git",
  5038. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5043. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "ext-mbstring": "*",
  5048. "php": ">=5.4.0"
  5049. },
  5050. "require-dev": {
  5051. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5052. },
  5053. "type": "library",
  5054. "extra": {
  5055. "branch-alias": {
  5056. "dev-master": "1.15.4-dev"
  5057. }
  5058. },
  5059. "autoload": {
  5060. "psr-4": {
  5061. "Peast\\": "lib/Peast/"
  5062. }
  5063. },
  5064. "notification-url": "https://packagist.org/downloads/",
  5065. "license": [
  5066. "BSD-3-Clause"
  5067. ],
  5068. "authors": [
  5069. {
  5070. "name": "Marco Marchiò",
  5071. "email": "marco.mm89@gmail.com"
  5072. }
  5073. ],
  5074. "description": "Peast is PHP library that generates AST for JavaScript code",
  5075. "support": {
  5076. "issues": "https://github.com/mck89/peast/issues",
  5077. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  5078. },
  5079. "time": "2023-08-12T08:29:29+00:00"
  5080. },
  5081. {
  5082. "name": "nikic/php-parser",
  5083. "version": "v5.0.1",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://github.com/nikic/PHP-Parser.git",
  5087. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69",
  5092. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69",
  5093. "shasum": ""
  5094. },
  5095. "require": {
  5096. "ext-ctype": "*",
  5097. "ext-json": "*",
  5098. "ext-tokenizer": "*",
  5099. "php": ">=7.4"
  5100. },
  5101. "require-dev": {
  5102. "ircmaxell/php-yacc": "^0.0.7",
  5103. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5104. },
  5105. "bin": [
  5106. "bin/php-parse"
  5107. ],
  5108. "type": "library",
  5109. "extra": {
  5110. "branch-alias": {
  5111. "dev-master": "5.0-dev"
  5112. }
  5113. },
  5114. "autoload": {
  5115. "psr-4": {
  5116. "PhpParser\\": "lib/PhpParser"
  5117. }
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "BSD-3-Clause"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Nikita Popov"
  5126. }
  5127. ],
  5128. "description": "A PHP parser written in PHP",
  5129. "keywords": [
  5130. "parser",
  5131. "php"
  5132. ],
  5133. "support": {
  5134. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5135. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1"
  5136. },
  5137. "time": "2024-02-21T19:24:10+00:00"
  5138. },
  5139. {
  5140. "name": "pear/archive_tar",
  5141. "version": "1.4.14",
  5142. "source": {
  5143. "type": "git",
  5144. "url": "https://github.com/pear/Archive_Tar.git",
  5145. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  5146. },
  5147. "dist": {
  5148. "type": "zip",
  5149. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  5150. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  5151. "shasum": ""
  5152. },
  5153. "require": {
  5154. "pear/pear-core-minimal": "^1.10.0alpha2",
  5155. "php": ">=5.2.0"
  5156. },
  5157. "require-dev": {
  5158. "phpunit/phpunit": "*"
  5159. },
  5160. "suggest": {
  5161. "ext-bz2": "Bz2 compression support.",
  5162. "ext-xz": "Lzma2 compression support.",
  5163. "ext-zlib": "Gzip compression support."
  5164. },
  5165. "type": "library",
  5166. "extra": {
  5167. "branch-alias": {
  5168. "dev-master": "1.4.x-dev"
  5169. }
  5170. },
  5171. "autoload": {
  5172. "psr-0": {
  5173. "Archive_Tar": ""
  5174. }
  5175. },
  5176. "notification-url": "https://packagist.org/downloads/",
  5177. "include-path": [
  5178. "./"
  5179. ],
  5180. "license": [
  5181. "BSD-3-Clause"
  5182. ],
  5183. "authors": [
  5184. {
  5185. "name": "Vincent Blavet",
  5186. "email": "vincent@phpconcept.net"
  5187. },
  5188. {
  5189. "name": "Greg Beaver",
  5190. "email": "greg@chiaraquartet.net"
  5191. },
  5192. {
  5193. "name": "Michiel Rook",
  5194. "email": "mrook@php.net"
  5195. }
  5196. ],
  5197. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  5198. "homepage": "https://github.com/pear/Archive_Tar",
  5199. "keywords": [
  5200. "archive",
  5201. "tar"
  5202. ],
  5203. "support": {
  5204. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  5205. "source": "https://github.com/pear/Archive_Tar"
  5206. },
  5207. "funding": [
  5208. {
  5209. "url": "https://github.com/mrook",
  5210. "type": "github"
  5211. },
  5212. {
  5213. "url": "https://www.patreon.com/michielrook",
  5214. "type": "patreon"
  5215. }
  5216. ],
  5217. "time": "2021-07-20T13:53:39+00:00"
  5218. },
  5219. {
  5220. "name": "pear/console_getopt",
  5221. "version": "v1.4.3",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://github.com/pear/Console_Getopt.git",
  5225. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5230. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5231. "shasum": ""
  5232. },
  5233. "type": "library",
  5234. "autoload": {
  5235. "psr-0": {
  5236. "Console": "./"
  5237. }
  5238. },
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "include-path": [
  5241. "./"
  5242. ],
  5243. "license": [
  5244. "BSD-2-Clause"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "Andrei Zmievski",
  5249. "email": "andrei@php.net",
  5250. "role": "Lead"
  5251. },
  5252. {
  5253. "name": "Stig Bakken",
  5254. "email": "stig@php.net",
  5255. "role": "Developer"
  5256. },
  5257. {
  5258. "name": "Greg Beaver",
  5259. "email": "cellog@php.net",
  5260. "role": "Helper"
  5261. }
  5262. ],
  5263. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  5264. "support": {
  5265. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  5266. "source": "https://github.com/pear/Console_Getopt"
  5267. },
  5268. "time": "2019-11-20T18:27:48+00:00"
  5269. },
  5270. {
  5271. "name": "pear/pear-core-minimal",
  5272. "version": "v1.10.14",
  5273. "source": {
  5274. "type": "git",
  5275. "url": "https://github.com/pear/pear-core-minimal.git",
  5276. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
  5277. },
  5278. "dist": {
  5279. "type": "zip",
  5280. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5281. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5282. "shasum": ""
  5283. },
  5284. "require": {
  5285. "pear/console_getopt": "~1.4",
  5286. "pear/pear_exception": "~1.0",
  5287. "php": ">=5.4"
  5288. },
  5289. "replace": {
  5290. "rsky/pear-core-min": "self.version"
  5291. },
  5292. "type": "library",
  5293. "autoload": {
  5294. "psr-0": {
  5295. "": "src/"
  5296. }
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "include-path": [
  5300. "src/"
  5301. ],
  5302. "license": [
  5303. "BSD-3-Clause"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Christian Weiske",
  5308. "email": "cweiske@php.net",
  5309. "role": "Lead"
  5310. }
  5311. ],
  5312. "description": "Minimal set of PEAR core files to be used as composer dependency",
  5313. "support": {
  5314. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  5315. "source": "https://github.com/pear/pear-core-minimal"
  5316. },
  5317. "time": "2023-11-26T16:15:38+00:00"
  5318. },
  5319. {
  5320. "name": "pear/pear_exception",
  5321. "version": "v1.0.2",
  5322. "source": {
  5323. "type": "git",
  5324. "url": "https://github.com/pear/PEAR_Exception.git",
  5325. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  5326. },
  5327. "dist": {
  5328. "type": "zip",
  5329. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5330. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5331. "shasum": ""
  5332. },
  5333. "require": {
  5334. "php": ">=5.2.0"
  5335. },
  5336. "require-dev": {
  5337. "phpunit/phpunit": "<9"
  5338. },
  5339. "type": "class",
  5340. "extra": {
  5341. "branch-alias": {
  5342. "dev-master": "1.0.x-dev"
  5343. }
  5344. },
  5345. "autoload": {
  5346. "classmap": [
  5347. "PEAR/"
  5348. ]
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "include-path": [
  5352. "."
  5353. ],
  5354. "license": [
  5355. "BSD-2-Clause"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "Helgi Thormar",
  5360. "email": "dufuz@php.net"
  5361. },
  5362. {
  5363. "name": "Greg Beaver",
  5364. "email": "cellog@php.net"
  5365. }
  5366. ],
  5367. "description": "The PEAR Exception base class.",
  5368. "homepage": "https://github.com/pear/PEAR_Exception",
  5369. "keywords": [
  5370. "exception"
  5371. ],
  5372. "support": {
  5373. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  5374. "source": "https://github.com/pear/PEAR_Exception"
  5375. },
  5376. "time": "2021-03-21T15:43:46+00:00"
  5377. },
  5378. {
  5379. "name": "phootwork/collection",
  5380. "version": "v3.2.2",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://github.com/phootwork/collection.git",
  5384. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  5389. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  5390. "shasum": ""
  5391. },
  5392. "require": {
  5393. "phootwork/lang": "^3.0",
  5394. "php": ">=8.0"
  5395. },
  5396. "type": "library",
  5397. "autoload": {
  5398. "psr-4": {
  5399. "phootwork\\collection\\": ""
  5400. }
  5401. },
  5402. "notification-url": "https://packagist.org/downloads/",
  5403. "license": [
  5404. "MIT"
  5405. ],
  5406. "authors": [
  5407. {
  5408. "name": "Thomas Gossmann",
  5409. "homepage": "http://gos.si"
  5410. }
  5411. ],
  5412. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  5413. "homepage": "https://phootwork.github.io/collection/",
  5414. "keywords": [
  5415. "Array object",
  5416. "Text object",
  5417. "collection",
  5418. "collections",
  5419. "json",
  5420. "list",
  5421. "map",
  5422. "queue",
  5423. "set",
  5424. "stack",
  5425. "xml"
  5426. ],
  5427. "support": {
  5428. "issues": "https://github.com/phootwork/phootwork/issues",
  5429. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  5430. },
  5431. "time": "2022-08-27T12:51:24+00:00"
  5432. },
  5433. {
  5434. "name": "phootwork/lang",
  5435. "version": "v3.2.2",
  5436. "source": {
  5437. "type": "git",
  5438. "url": "https://github.com/phootwork/lang.git",
  5439. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  5440. },
  5441. "dist": {
  5442. "type": "zip",
  5443. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5444. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5445. "shasum": ""
  5446. },
  5447. "require": {
  5448. "php": ">=8.0",
  5449. "symfony/polyfill-mbstring": "^1.12",
  5450. "symfony/polyfill-php81": "^1.22"
  5451. },
  5452. "type": "library",
  5453. "autoload": {
  5454. "psr-4": {
  5455. "phootwork\\lang\\": ""
  5456. }
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "MIT"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Thomas Gossmann",
  5465. "homepage": "http://gos.si"
  5466. }
  5467. ],
  5468. "description": "Missing PHP language constructs",
  5469. "homepage": "https://phootwork.github.io/lang/",
  5470. "keywords": [
  5471. "array",
  5472. "comparator",
  5473. "comparison",
  5474. "string"
  5475. ],
  5476. "support": {
  5477. "issues": "https://github.com/phootwork/phootwork/issues",
  5478. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  5479. },
  5480. "time": "2023-05-26T05:37:59+00:00"
  5481. },
  5482. {
  5483. "name": "phpowermove/docblock",
  5484. "version": "v4.0",
  5485. "source": {
  5486. "type": "git",
  5487. "url": "https://github.com/phpowermove/docblock.git",
  5488. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  5489. },
  5490. "dist": {
  5491. "type": "zip",
  5492. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5493. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5494. "shasum": ""
  5495. },
  5496. "require": {
  5497. "phootwork/collection": "^3.0",
  5498. "phootwork/lang": "^3.0",
  5499. "php": ">=8.0"
  5500. },
  5501. "require-dev": {
  5502. "phootwork/php-cs-fixer-config": "^0.4",
  5503. "phpunit/phpunit": "^9.0",
  5504. "psalm/phar": "^4.3"
  5505. },
  5506. "type": "library",
  5507. "autoload": {
  5508. "psr-4": {
  5509. "phpowermove\\docblock\\": "src/"
  5510. }
  5511. },
  5512. "notification-url": "https://packagist.org/downloads/",
  5513. "license": [
  5514. "MIT"
  5515. ],
  5516. "authors": [
  5517. {
  5518. "name": "Thomas Gossmann",
  5519. "homepage": "http://gos.si"
  5520. }
  5521. ],
  5522. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  5523. "keywords": [
  5524. "docblock",
  5525. "generator",
  5526. "parser"
  5527. ],
  5528. "support": {
  5529. "issues": "https://github.com/phpowermove/docblock/issues",
  5530. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  5531. },
  5532. "time": "2021-09-22T16:57:06+00:00"
  5533. },
  5534. {
  5535. "name": "psr/cache",
  5536. "version": "3.0.0",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/php-fig/cache.git",
  5540. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5545. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5546. "shasum": ""
  5547. },
  5548. "require": {
  5549. "php": ">=8.0.0"
  5550. },
  5551. "type": "library",
  5552. "extra": {
  5553. "branch-alias": {
  5554. "dev-master": "1.0.x-dev"
  5555. }
  5556. },
  5557. "autoload": {
  5558. "psr-4": {
  5559. "Psr\\Cache\\": "src/"
  5560. }
  5561. },
  5562. "notification-url": "https://packagist.org/downloads/",
  5563. "license": [
  5564. "MIT"
  5565. ],
  5566. "authors": [
  5567. {
  5568. "name": "PHP-FIG",
  5569. "homepage": "https://www.php-fig.org/"
  5570. }
  5571. ],
  5572. "description": "Common interface for caching libraries",
  5573. "keywords": [
  5574. "cache",
  5575. "psr",
  5576. "psr-6"
  5577. ],
  5578. "support": {
  5579. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5580. },
  5581. "time": "2021-02-03T23:26:27+00:00"
  5582. },
  5583. {
  5584. "name": "psr/container",
  5585. "version": "2.0.2",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://github.com/php-fig/container.git",
  5589. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5594. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5595. "shasum": ""
  5596. },
  5597. "require": {
  5598. "php": ">=7.4.0"
  5599. },
  5600. "type": "library",
  5601. "extra": {
  5602. "branch-alias": {
  5603. "dev-master": "2.0.x-dev"
  5604. }
  5605. },
  5606. "autoload": {
  5607. "psr-4": {
  5608. "Psr\\Container\\": "src/"
  5609. }
  5610. },
  5611. "notification-url": "https://packagist.org/downloads/",
  5612. "license": [
  5613. "MIT"
  5614. ],
  5615. "authors": [
  5616. {
  5617. "name": "PHP-FIG",
  5618. "homepage": "https://www.php-fig.org/"
  5619. }
  5620. ],
  5621. "description": "Common Container Interface (PHP FIG PSR-11)",
  5622. "homepage": "https://github.com/php-fig/container",
  5623. "keywords": [
  5624. "PSR-11",
  5625. "container",
  5626. "container-interface",
  5627. "container-interop",
  5628. "psr"
  5629. ],
  5630. "support": {
  5631. "issues": "https://github.com/php-fig/container/issues",
  5632. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5633. },
  5634. "time": "2021-11-05T16:47:00+00:00"
  5635. },
  5636. {
  5637. "name": "psr/event-dispatcher",
  5638. "version": "1.0.0",
  5639. "source": {
  5640. "type": "git",
  5641. "url": "https://github.com/php-fig/event-dispatcher.git",
  5642. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5643. },
  5644. "dist": {
  5645. "type": "zip",
  5646. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5647. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5648. "shasum": ""
  5649. },
  5650. "require": {
  5651. "php": ">=7.2.0"
  5652. },
  5653. "type": "library",
  5654. "extra": {
  5655. "branch-alias": {
  5656. "dev-master": "1.0.x-dev"
  5657. }
  5658. },
  5659. "autoload": {
  5660. "psr-4": {
  5661. "Psr\\EventDispatcher\\": "src/"
  5662. }
  5663. },
  5664. "notification-url": "https://packagist.org/downloads/",
  5665. "license": [
  5666. "MIT"
  5667. ],
  5668. "authors": [
  5669. {
  5670. "name": "PHP-FIG",
  5671. "homepage": "http://www.php-fig.org/"
  5672. }
  5673. ],
  5674. "description": "Standard interfaces for event handling.",
  5675. "keywords": [
  5676. "events",
  5677. "psr",
  5678. "psr-14"
  5679. ],
  5680. "support": {
  5681. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5682. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5683. },
  5684. "time": "2019-01-08T18:20:26+00:00"
  5685. },
  5686. {
  5687. "name": "psr/http-client",
  5688. "version": "1.0.3",
  5689. "source": {
  5690. "type": "git",
  5691. "url": "https://github.com/php-fig/http-client.git",
  5692. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5693. },
  5694. "dist": {
  5695. "type": "zip",
  5696. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5697. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5698. "shasum": ""
  5699. },
  5700. "require": {
  5701. "php": "^7.0 || ^8.0",
  5702. "psr/http-message": "^1.0 || ^2.0"
  5703. },
  5704. "type": "library",
  5705. "extra": {
  5706. "branch-alias": {
  5707. "dev-master": "1.0.x-dev"
  5708. }
  5709. },
  5710. "autoload": {
  5711. "psr-4": {
  5712. "Psr\\Http\\Client\\": "src/"
  5713. }
  5714. },
  5715. "notification-url": "https://packagist.org/downloads/",
  5716. "license": [
  5717. "MIT"
  5718. ],
  5719. "authors": [
  5720. {
  5721. "name": "PHP-FIG",
  5722. "homepage": "https://www.php-fig.org/"
  5723. }
  5724. ],
  5725. "description": "Common interface for HTTP clients",
  5726. "homepage": "https://github.com/php-fig/http-client",
  5727. "keywords": [
  5728. "http",
  5729. "http-client",
  5730. "psr",
  5731. "psr-18"
  5732. ],
  5733. "support": {
  5734. "source": "https://github.com/php-fig/http-client"
  5735. },
  5736. "time": "2023-09-23T14:17:50+00:00"
  5737. },
  5738. {
  5739. "name": "psr/http-factory",
  5740. "version": "1.0.2",
  5741. "source": {
  5742. "type": "git",
  5743. "url": "https://github.com/php-fig/http-factory.git",
  5744. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5745. },
  5746. "dist": {
  5747. "type": "zip",
  5748. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5749. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5750. "shasum": ""
  5751. },
  5752. "require": {
  5753. "php": ">=7.0.0",
  5754. "psr/http-message": "^1.0 || ^2.0"
  5755. },
  5756. "type": "library",
  5757. "extra": {
  5758. "branch-alias": {
  5759. "dev-master": "1.0.x-dev"
  5760. }
  5761. },
  5762. "autoload": {
  5763. "psr-4": {
  5764. "Psr\\Http\\Message\\": "src/"
  5765. }
  5766. },
  5767. "notification-url": "https://packagist.org/downloads/",
  5768. "license": [
  5769. "MIT"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "PHP-FIG",
  5774. "homepage": "https://www.php-fig.org/"
  5775. }
  5776. ],
  5777. "description": "Common interfaces for PSR-7 HTTP message factories",
  5778. "keywords": [
  5779. "factory",
  5780. "http",
  5781. "message",
  5782. "psr",
  5783. "psr-17",
  5784. "psr-7",
  5785. "request",
  5786. "response"
  5787. ],
  5788. "support": {
  5789. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5790. },
  5791. "time": "2023-04-10T20:10:41+00:00"
  5792. },
  5793. {
  5794. "name": "psr/http-message",
  5795. "version": "2.0",
  5796. "source": {
  5797. "type": "git",
  5798. "url": "https://github.com/php-fig/http-message.git",
  5799. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5800. },
  5801. "dist": {
  5802. "type": "zip",
  5803. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5804. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5805. "shasum": ""
  5806. },
  5807. "require": {
  5808. "php": "^7.2 || ^8.0"
  5809. },
  5810. "type": "library",
  5811. "extra": {
  5812. "branch-alias": {
  5813. "dev-master": "2.0.x-dev"
  5814. }
  5815. },
  5816. "autoload": {
  5817. "psr-4": {
  5818. "Psr\\Http\\Message\\": "src/"
  5819. }
  5820. },
  5821. "notification-url": "https://packagist.org/downloads/",
  5822. "license": [
  5823. "MIT"
  5824. ],
  5825. "authors": [
  5826. {
  5827. "name": "PHP-FIG",
  5828. "homepage": "https://www.php-fig.org/"
  5829. }
  5830. ],
  5831. "description": "Common interface for HTTP messages",
  5832. "homepage": "https://github.com/php-fig/http-message",
  5833. "keywords": [
  5834. "http",
  5835. "http-message",
  5836. "psr",
  5837. "psr-7",
  5838. "request",
  5839. "response"
  5840. ],
  5841. "support": {
  5842. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5843. },
  5844. "time": "2023-04-04T09:54:51+00:00"
  5845. },
  5846. {
  5847. "name": "psr/log",
  5848. "version": "3.0.0",
  5849. "source": {
  5850. "type": "git",
  5851. "url": "https://github.com/php-fig/log.git",
  5852. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5853. },
  5854. "dist": {
  5855. "type": "zip",
  5856. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5857. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5858. "shasum": ""
  5859. },
  5860. "require": {
  5861. "php": ">=8.0.0"
  5862. },
  5863. "type": "library",
  5864. "extra": {
  5865. "branch-alias": {
  5866. "dev-master": "3.x-dev"
  5867. }
  5868. },
  5869. "autoload": {
  5870. "psr-4": {
  5871. "Psr\\Log\\": "src"
  5872. }
  5873. },
  5874. "notification-url": "https://packagist.org/downloads/",
  5875. "license": [
  5876. "MIT"
  5877. ],
  5878. "authors": [
  5879. {
  5880. "name": "PHP-FIG",
  5881. "homepage": "https://www.php-fig.org/"
  5882. }
  5883. ],
  5884. "description": "Common interface for logging libraries",
  5885. "homepage": "https://github.com/php-fig/log",
  5886. "keywords": [
  5887. "log",
  5888. "psr",
  5889. "psr-3"
  5890. ],
  5891. "support": {
  5892. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5893. },
  5894. "time": "2021-07-14T16:46:02+00:00"
  5895. },
  5896. {
  5897. "name": "psy/psysh",
  5898. "version": "v0.12.0",
  5899. "source": {
  5900. "type": "git",
  5901. "url": "https://github.com/bobthecow/psysh.git",
  5902. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  5903. },
  5904. "dist": {
  5905. "type": "zip",
  5906. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5907. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5908. "shasum": ""
  5909. },
  5910. "require": {
  5911. "ext-json": "*",
  5912. "ext-tokenizer": "*",
  5913. "nikic/php-parser": "^5.0 || ^4.0",
  5914. "php": "^8.0 || ^7.4",
  5915. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5916. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5917. },
  5918. "conflict": {
  5919. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5920. },
  5921. "require-dev": {
  5922. "bamarni/composer-bin-plugin": "^1.2"
  5923. },
  5924. "suggest": {
  5925. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5926. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5927. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5928. },
  5929. "bin": [
  5930. "bin/psysh"
  5931. ],
  5932. "type": "library",
  5933. "extra": {
  5934. "branch-alias": {
  5935. "dev-main": "0.12.x-dev"
  5936. },
  5937. "bamarni-bin": {
  5938. "bin-links": false,
  5939. "forward-command": false
  5940. }
  5941. },
  5942. "autoload": {
  5943. "files": [
  5944. "src/functions.php"
  5945. ],
  5946. "psr-4": {
  5947. "Psy\\": "src/"
  5948. }
  5949. },
  5950. "notification-url": "https://packagist.org/downloads/",
  5951. "license": [
  5952. "MIT"
  5953. ],
  5954. "authors": [
  5955. {
  5956. "name": "Justin Hileman",
  5957. "email": "justin@justinhileman.info",
  5958. "homepage": "http://justinhileman.com"
  5959. }
  5960. ],
  5961. "description": "An interactive shell for modern PHP.",
  5962. "homepage": "http://psysh.org",
  5963. "keywords": [
  5964. "REPL",
  5965. "console",
  5966. "interactive",
  5967. "shell"
  5968. ],
  5969. "support": {
  5970. "issues": "https://github.com/bobthecow/psysh/issues",
  5971. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  5972. },
  5973. "time": "2023-12-20T15:28:09+00:00"
  5974. },
  5975. {
  5976. "name": "ralouphie/getallheaders",
  5977. "version": "3.0.3",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/ralouphie/getallheaders.git",
  5981. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5986. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5987. "shasum": ""
  5988. },
  5989. "require": {
  5990. "php": ">=5.6"
  5991. },
  5992. "require-dev": {
  5993. "php-coveralls/php-coveralls": "^2.1",
  5994. "phpunit/phpunit": "^5 || ^6.5"
  5995. },
  5996. "type": "library",
  5997. "autoload": {
  5998. "files": [
  5999. "src/getallheaders.php"
  6000. ]
  6001. },
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "MIT"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Ralph Khattar",
  6009. "email": "ralph.khattar@gmail.com"
  6010. }
  6011. ],
  6012. "description": "A polyfill for getallheaders.",
  6013. "support": {
  6014. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6015. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6016. },
  6017. "time": "2019-03-08T08:55:37+00:00"
  6018. },
  6019. {
  6020. "name": "sebastian/diff",
  6021. "version": "4.0.6",
  6022. "source": {
  6023. "type": "git",
  6024. "url": "https://github.com/sebastianbergmann/diff.git",
  6025. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  6026. },
  6027. "dist": {
  6028. "type": "zip",
  6029. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6030. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6031. "shasum": ""
  6032. },
  6033. "require": {
  6034. "php": ">=7.3"
  6035. },
  6036. "require-dev": {
  6037. "phpunit/phpunit": "^9.3",
  6038. "symfony/process": "^4.2 || ^5"
  6039. },
  6040. "type": "library",
  6041. "extra": {
  6042. "branch-alias": {
  6043. "dev-master": "4.0-dev"
  6044. }
  6045. },
  6046. "autoload": {
  6047. "classmap": [
  6048. "src/"
  6049. ]
  6050. },
  6051. "notification-url": "https://packagist.org/downloads/",
  6052. "license": [
  6053. "BSD-3-Clause"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "Sebastian Bergmann",
  6058. "email": "sebastian@phpunit.de"
  6059. },
  6060. {
  6061. "name": "Kore Nordmann",
  6062. "email": "mail@kore-nordmann.de"
  6063. }
  6064. ],
  6065. "description": "Diff implementation",
  6066. "homepage": "https://github.com/sebastianbergmann/diff",
  6067. "keywords": [
  6068. "diff",
  6069. "udiff",
  6070. "unidiff",
  6071. "unified diff"
  6072. ],
  6073. "support": {
  6074. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6075. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  6076. },
  6077. "funding": [
  6078. {
  6079. "url": "https://github.com/sebastianbergmann",
  6080. "type": "github"
  6081. }
  6082. ],
  6083. "time": "2024-03-02T06:30:58+00:00"
  6084. },
  6085. {
  6086. "name": "symfony/console",
  6087. "version": "v6.4.4",
  6088. "source": {
  6089. "type": "git",
  6090. "url": "https://github.com/symfony/console.git",
  6091. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
  6092. },
  6093. "dist": {
  6094. "type": "zip",
  6095. "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
  6096. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
  6097. "shasum": ""
  6098. },
  6099. "require": {
  6100. "php": ">=8.1",
  6101. "symfony/deprecation-contracts": "^2.5|^3",
  6102. "symfony/polyfill-mbstring": "~1.0",
  6103. "symfony/service-contracts": "^2.5|^3",
  6104. "symfony/string": "^5.4|^6.0|^7.0"
  6105. },
  6106. "conflict": {
  6107. "symfony/dependency-injection": "<5.4",
  6108. "symfony/dotenv": "<5.4",
  6109. "symfony/event-dispatcher": "<5.4",
  6110. "symfony/lock": "<5.4",
  6111. "symfony/process": "<5.4"
  6112. },
  6113. "provide": {
  6114. "psr/log-implementation": "1.0|2.0|3.0"
  6115. },
  6116. "require-dev": {
  6117. "psr/log": "^1|^2|^3",
  6118. "symfony/config": "^5.4|^6.0|^7.0",
  6119. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6120. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6121. "symfony/http-foundation": "^6.4|^7.0",
  6122. "symfony/http-kernel": "^6.4|^7.0",
  6123. "symfony/lock": "^5.4|^6.0|^7.0",
  6124. "symfony/messenger": "^5.4|^6.0|^7.0",
  6125. "symfony/process": "^5.4|^6.0|^7.0",
  6126. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6127. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6128. },
  6129. "type": "library",
  6130. "autoload": {
  6131. "psr-4": {
  6132. "Symfony\\Component\\Console\\": ""
  6133. },
  6134. "exclude-from-classmap": [
  6135. "/Tests/"
  6136. ]
  6137. },
  6138. "notification-url": "https://packagist.org/downloads/",
  6139. "license": [
  6140. "MIT"
  6141. ],
  6142. "authors": [
  6143. {
  6144. "name": "Fabien Potencier",
  6145. "email": "fabien@symfony.com"
  6146. },
  6147. {
  6148. "name": "Symfony Community",
  6149. "homepage": "https://symfony.com/contributors"
  6150. }
  6151. ],
  6152. "description": "Eases the creation of beautiful and testable command line interfaces",
  6153. "homepage": "https://symfony.com",
  6154. "keywords": [
  6155. "cli",
  6156. "command-line",
  6157. "console",
  6158. "terminal"
  6159. ],
  6160. "support": {
  6161. "source": "https://github.com/symfony/console/tree/v6.4.4"
  6162. },
  6163. "funding": [
  6164. {
  6165. "url": "https://symfony.com/sponsor",
  6166. "type": "custom"
  6167. },
  6168. {
  6169. "url": "https://github.com/fabpot",
  6170. "type": "github"
  6171. },
  6172. {
  6173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6174. "type": "tidelift"
  6175. }
  6176. ],
  6177. "time": "2024-02-22T20:27:10+00:00"
  6178. },
  6179. {
  6180. "name": "symfony/dependency-injection",
  6181. "version": "v6.4.4",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://github.com/symfony/dependency-injection.git",
  6185. "reference": "6236e5e843cb763e9d0f74245678b994afea5363"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6236e5e843cb763e9d0f74245678b994afea5363",
  6190. "reference": "6236e5e843cb763e9d0f74245678b994afea5363",
  6191. "shasum": ""
  6192. },
  6193. "require": {
  6194. "php": ">=8.1",
  6195. "psr/container": "^1.1|^2.0",
  6196. "symfony/deprecation-contracts": "^2.5|^3",
  6197. "symfony/service-contracts": "^2.5|^3.0",
  6198. "symfony/var-exporter": "^6.2.10|^7.0"
  6199. },
  6200. "conflict": {
  6201. "ext-psr": "<1.1|>=2",
  6202. "symfony/config": "<6.1",
  6203. "symfony/finder": "<5.4",
  6204. "symfony/proxy-manager-bridge": "<6.3",
  6205. "symfony/yaml": "<5.4"
  6206. },
  6207. "provide": {
  6208. "psr/container-implementation": "1.1|2.0",
  6209. "symfony/service-implementation": "1.1|2.0|3.0"
  6210. },
  6211. "require-dev": {
  6212. "symfony/config": "^6.1|^7.0",
  6213. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6214. "symfony/yaml": "^5.4|^6.0|^7.0"
  6215. },
  6216. "type": "library",
  6217. "autoload": {
  6218. "psr-4": {
  6219. "Symfony\\Component\\DependencyInjection\\": ""
  6220. },
  6221. "exclude-from-classmap": [
  6222. "/Tests/"
  6223. ]
  6224. },
  6225. "notification-url": "https://packagist.org/downloads/",
  6226. "license": [
  6227. "MIT"
  6228. ],
  6229. "authors": [
  6230. {
  6231. "name": "Fabien Potencier",
  6232. "email": "fabien@symfony.com"
  6233. },
  6234. {
  6235. "name": "Symfony Community",
  6236. "homepage": "https://symfony.com/contributors"
  6237. }
  6238. ],
  6239. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  6240. "homepage": "https://symfony.com",
  6241. "support": {
  6242. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.4"
  6243. },
  6244. "funding": [
  6245. {
  6246. "url": "https://symfony.com/sponsor",
  6247. "type": "custom"
  6248. },
  6249. {
  6250. "url": "https://github.com/fabpot",
  6251. "type": "github"
  6252. },
  6253. {
  6254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6255. "type": "tidelift"
  6256. }
  6257. ],
  6258. "time": "2024-02-22T20:27:10+00:00"
  6259. },
  6260. {
  6261. "name": "symfony/deprecation-contracts",
  6262. "version": "v3.4.0",
  6263. "source": {
  6264. "type": "git",
  6265. "url": "https://github.com/symfony/deprecation-contracts.git",
  6266. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6267. },
  6268. "dist": {
  6269. "type": "zip",
  6270. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6271. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6272. "shasum": ""
  6273. },
  6274. "require": {
  6275. "php": ">=8.1"
  6276. },
  6277. "type": "library",
  6278. "extra": {
  6279. "branch-alias": {
  6280. "dev-main": "3.4-dev"
  6281. },
  6282. "thanks": {
  6283. "name": "symfony/contracts",
  6284. "url": "https://github.com/symfony/contracts"
  6285. }
  6286. },
  6287. "autoload": {
  6288. "files": [
  6289. "function.php"
  6290. ]
  6291. },
  6292. "notification-url": "https://packagist.org/downloads/",
  6293. "license": [
  6294. "MIT"
  6295. ],
  6296. "authors": [
  6297. {
  6298. "name": "Nicolas Grekas",
  6299. "email": "p@tchwork.com"
  6300. },
  6301. {
  6302. "name": "Symfony Community",
  6303. "homepage": "https://symfony.com/contributors"
  6304. }
  6305. ],
  6306. "description": "A generic function and convention to trigger deprecation notices",
  6307. "homepage": "https://symfony.com",
  6308. "support": {
  6309. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  6310. },
  6311. "funding": [
  6312. {
  6313. "url": "https://symfony.com/sponsor",
  6314. "type": "custom"
  6315. },
  6316. {
  6317. "url": "https://github.com/fabpot",
  6318. "type": "github"
  6319. },
  6320. {
  6321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6322. "type": "tidelift"
  6323. }
  6324. ],
  6325. "time": "2023-05-23T14:45:45+00:00"
  6326. },
  6327. {
  6328. "name": "symfony/error-handler",
  6329. "version": "v6.4.4",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/symfony/error-handler.git",
  6333. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
  6338. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
  6339. "shasum": ""
  6340. },
  6341. "require": {
  6342. "php": ">=8.1",
  6343. "psr/log": "^1|^2|^3",
  6344. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6345. },
  6346. "conflict": {
  6347. "symfony/deprecation-contracts": "<2.5",
  6348. "symfony/http-kernel": "<6.4"
  6349. },
  6350. "require-dev": {
  6351. "symfony/deprecation-contracts": "^2.5|^3",
  6352. "symfony/http-kernel": "^6.4|^7.0",
  6353. "symfony/serializer": "^5.4|^6.0|^7.0"
  6354. },
  6355. "bin": [
  6356. "Resources/bin/patch-type-declarations"
  6357. ],
  6358. "type": "library",
  6359. "autoload": {
  6360. "psr-4": {
  6361. "Symfony\\Component\\ErrorHandler\\": ""
  6362. },
  6363. "exclude-from-classmap": [
  6364. "/Tests/"
  6365. ]
  6366. },
  6367. "notification-url": "https://packagist.org/downloads/",
  6368. "license": [
  6369. "MIT"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "Fabien Potencier",
  6374. "email": "fabien@symfony.com"
  6375. },
  6376. {
  6377. "name": "Symfony Community",
  6378. "homepage": "https://symfony.com/contributors"
  6379. }
  6380. ],
  6381. "description": "Provides tools to manage errors and ease debugging PHP code",
  6382. "homepage": "https://symfony.com",
  6383. "support": {
  6384. "source": "https://github.com/symfony/error-handler/tree/v6.4.4"
  6385. },
  6386. "funding": [
  6387. {
  6388. "url": "https://symfony.com/sponsor",
  6389. "type": "custom"
  6390. },
  6391. {
  6392. "url": "https://github.com/fabpot",
  6393. "type": "github"
  6394. },
  6395. {
  6396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6397. "type": "tidelift"
  6398. }
  6399. ],
  6400. "time": "2024-02-22T20:27:10+00:00"
  6401. },
  6402. {
  6403. "name": "symfony/event-dispatcher",
  6404. "version": "v6.4.3",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/symfony/event-dispatcher.git",
  6408. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6413. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "php": ">=8.1",
  6418. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6419. },
  6420. "conflict": {
  6421. "symfony/dependency-injection": "<5.4",
  6422. "symfony/service-contracts": "<2.5"
  6423. },
  6424. "provide": {
  6425. "psr/event-dispatcher-implementation": "1.0",
  6426. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6427. },
  6428. "require-dev": {
  6429. "psr/log": "^1|^2|^3",
  6430. "symfony/config": "^5.4|^6.0|^7.0",
  6431. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6432. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6433. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6434. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6435. "symfony/service-contracts": "^2.5|^3",
  6436. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  6437. },
  6438. "type": "library",
  6439. "autoload": {
  6440. "psr-4": {
  6441. "Symfony\\Component\\EventDispatcher\\": ""
  6442. },
  6443. "exclude-from-classmap": [
  6444. "/Tests/"
  6445. ]
  6446. },
  6447. "notification-url": "https://packagist.org/downloads/",
  6448. "license": [
  6449. "MIT"
  6450. ],
  6451. "authors": [
  6452. {
  6453. "name": "Fabien Potencier",
  6454. "email": "fabien@symfony.com"
  6455. },
  6456. {
  6457. "name": "Symfony Community",
  6458. "homepage": "https://symfony.com/contributors"
  6459. }
  6460. ],
  6461. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6462. "homepage": "https://symfony.com",
  6463. "support": {
  6464. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  6465. },
  6466. "funding": [
  6467. {
  6468. "url": "https://symfony.com/sponsor",
  6469. "type": "custom"
  6470. },
  6471. {
  6472. "url": "https://github.com/fabpot",
  6473. "type": "github"
  6474. },
  6475. {
  6476. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6477. "type": "tidelift"
  6478. }
  6479. ],
  6480. "time": "2024-01-23T14:51:35+00:00"
  6481. },
  6482. {
  6483. "name": "symfony/event-dispatcher-contracts",
  6484. "version": "v3.4.0",
  6485. "source": {
  6486. "type": "git",
  6487. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6488. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6489. },
  6490. "dist": {
  6491. "type": "zip",
  6492. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6493. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6494. "shasum": ""
  6495. },
  6496. "require": {
  6497. "php": ">=8.1",
  6498. "psr/event-dispatcher": "^1"
  6499. },
  6500. "type": "library",
  6501. "extra": {
  6502. "branch-alias": {
  6503. "dev-main": "3.4-dev"
  6504. },
  6505. "thanks": {
  6506. "name": "symfony/contracts",
  6507. "url": "https://github.com/symfony/contracts"
  6508. }
  6509. },
  6510. "autoload": {
  6511. "psr-4": {
  6512. "Symfony\\Contracts\\EventDispatcher\\": ""
  6513. }
  6514. },
  6515. "notification-url": "https://packagist.org/downloads/",
  6516. "license": [
  6517. "MIT"
  6518. ],
  6519. "authors": [
  6520. {
  6521. "name": "Nicolas Grekas",
  6522. "email": "p@tchwork.com"
  6523. },
  6524. {
  6525. "name": "Symfony Community",
  6526. "homepage": "https://symfony.com/contributors"
  6527. }
  6528. ],
  6529. "description": "Generic abstractions related to dispatching event",
  6530. "homepage": "https://symfony.com",
  6531. "keywords": [
  6532. "abstractions",
  6533. "contracts",
  6534. "decoupling",
  6535. "interfaces",
  6536. "interoperability",
  6537. "standards"
  6538. ],
  6539. "support": {
  6540. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  6541. },
  6542. "funding": [
  6543. {
  6544. "url": "https://symfony.com/sponsor",
  6545. "type": "custom"
  6546. },
  6547. {
  6548. "url": "https://github.com/fabpot",
  6549. "type": "github"
  6550. },
  6551. {
  6552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6553. "type": "tidelift"
  6554. }
  6555. ],
  6556. "time": "2023-05-23T14:45:45+00:00"
  6557. },
  6558. {
  6559. "name": "symfony/filesystem",
  6560. "version": "v6.4.3",
  6561. "source": {
  6562. "type": "git",
  6563. "url": "https://github.com/symfony/filesystem.git",
  6564. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  6565. },
  6566. "dist": {
  6567. "type": "zip",
  6568. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6569. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6570. "shasum": ""
  6571. },
  6572. "require": {
  6573. "php": ">=8.1",
  6574. "symfony/polyfill-ctype": "~1.8",
  6575. "symfony/polyfill-mbstring": "~1.8"
  6576. },
  6577. "type": "library",
  6578. "autoload": {
  6579. "psr-4": {
  6580. "Symfony\\Component\\Filesystem\\": ""
  6581. },
  6582. "exclude-from-classmap": [
  6583. "/Tests/"
  6584. ]
  6585. },
  6586. "notification-url": "https://packagist.org/downloads/",
  6587. "license": [
  6588. "MIT"
  6589. ],
  6590. "authors": [
  6591. {
  6592. "name": "Fabien Potencier",
  6593. "email": "fabien@symfony.com"
  6594. },
  6595. {
  6596. "name": "Symfony Community",
  6597. "homepage": "https://symfony.com/contributors"
  6598. }
  6599. ],
  6600. "description": "Provides basic utilities for the filesystem",
  6601. "homepage": "https://symfony.com",
  6602. "support": {
  6603. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  6604. },
  6605. "funding": [
  6606. {
  6607. "url": "https://symfony.com/sponsor",
  6608. "type": "custom"
  6609. },
  6610. {
  6611. "url": "https://github.com/fabpot",
  6612. "type": "github"
  6613. },
  6614. {
  6615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6616. "type": "tidelift"
  6617. }
  6618. ],
  6619. "time": "2024-01-23T14:51:35+00:00"
  6620. },
  6621. {
  6622. "name": "symfony/finder",
  6623. "version": "v6.4.0",
  6624. "source": {
  6625. "type": "git",
  6626. "url": "https://github.com/symfony/finder.git",
  6627. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  6628. },
  6629. "dist": {
  6630. "type": "zip",
  6631. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  6632. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  6633. "shasum": ""
  6634. },
  6635. "require": {
  6636. "php": ">=8.1"
  6637. },
  6638. "require-dev": {
  6639. "symfony/filesystem": "^6.0|^7.0"
  6640. },
  6641. "type": "library",
  6642. "autoload": {
  6643. "psr-4": {
  6644. "Symfony\\Component\\Finder\\": ""
  6645. },
  6646. "exclude-from-classmap": [
  6647. "/Tests/"
  6648. ]
  6649. },
  6650. "notification-url": "https://packagist.org/downloads/",
  6651. "license": [
  6652. "MIT"
  6653. ],
  6654. "authors": [
  6655. {
  6656. "name": "Fabien Potencier",
  6657. "email": "fabien@symfony.com"
  6658. },
  6659. {
  6660. "name": "Symfony Community",
  6661. "homepage": "https://symfony.com/contributors"
  6662. }
  6663. ],
  6664. "description": "Finds files and directories via an intuitive fluent interface",
  6665. "homepage": "https://symfony.com",
  6666. "support": {
  6667. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  6668. },
  6669. "funding": [
  6670. {
  6671. "url": "https://symfony.com/sponsor",
  6672. "type": "custom"
  6673. },
  6674. {
  6675. "url": "https://github.com/fabpot",
  6676. "type": "github"
  6677. },
  6678. {
  6679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6680. "type": "tidelift"
  6681. }
  6682. ],
  6683. "time": "2023-10-31T17:30:12+00:00"
  6684. },
  6685. {
  6686. "name": "symfony/http-foundation",
  6687. "version": "v6.4.4",
  6688. "source": {
  6689. "type": "git",
  6690. "url": "https://github.com/symfony/http-foundation.git",
  6691. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
  6692. },
  6693. "dist": {
  6694. "type": "zip",
  6695. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6696. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6697. "shasum": ""
  6698. },
  6699. "require": {
  6700. "php": ">=8.1",
  6701. "symfony/deprecation-contracts": "^2.5|^3",
  6702. "symfony/polyfill-mbstring": "~1.1",
  6703. "symfony/polyfill-php83": "^1.27"
  6704. },
  6705. "conflict": {
  6706. "symfony/cache": "<6.3"
  6707. },
  6708. "require-dev": {
  6709. "doctrine/dbal": "^2.13.1|^3|^4",
  6710. "predis/predis": "^1.1|^2.0",
  6711. "symfony/cache": "^6.3|^7.0",
  6712. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6713. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6714. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  6715. "symfony/mime": "^5.4|^6.0|^7.0",
  6716. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  6717. },
  6718. "type": "library",
  6719. "autoload": {
  6720. "psr-4": {
  6721. "Symfony\\Component\\HttpFoundation\\": ""
  6722. },
  6723. "exclude-from-classmap": [
  6724. "/Tests/"
  6725. ]
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "MIT"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "Fabien Potencier",
  6734. "email": "fabien@symfony.com"
  6735. },
  6736. {
  6737. "name": "Symfony Community",
  6738. "homepage": "https://symfony.com/contributors"
  6739. }
  6740. ],
  6741. "description": "Defines an object-oriented layer for the HTTP specification",
  6742. "homepage": "https://symfony.com",
  6743. "support": {
  6744. "source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
  6745. },
  6746. "funding": [
  6747. {
  6748. "url": "https://symfony.com/sponsor",
  6749. "type": "custom"
  6750. },
  6751. {
  6752. "url": "https://github.com/fabpot",
  6753. "type": "github"
  6754. },
  6755. {
  6756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6757. "type": "tidelift"
  6758. }
  6759. ],
  6760. "time": "2024-02-08T15:01:18+00:00"
  6761. },
  6762. {
  6763. "name": "symfony/http-kernel",
  6764. "version": "v6.4.4",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/symfony/http-kernel.git",
  6768. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
  6773. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
  6774. "shasum": ""
  6775. },
  6776. "require": {
  6777. "php": ">=8.1",
  6778. "psr/log": "^1|^2|^3",
  6779. "symfony/deprecation-contracts": "^2.5|^3",
  6780. "symfony/error-handler": "^6.4|^7.0",
  6781. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6782. "symfony/http-foundation": "^6.4|^7.0",
  6783. "symfony/polyfill-ctype": "^1.8"
  6784. },
  6785. "conflict": {
  6786. "symfony/browser-kit": "<5.4",
  6787. "symfony/cache": "<5.4",
  6788. "symfony/config": "<6.1",
  6789. "symfony/console": "<5.4",
  6790. "symfony/dependency-injection": "<6.4",
  6791. "symfony/doctrine-bridge": "<5.4",
  6792. "symfony/form": "<5.4",
  6793. "symfony/http-client": "<5.4",
  6794. "symfony/http-client-contracts": "<2.5",
  6795. "symfony/mailer": "<5.4",
  6796. "symfony/messenger": "<5.4",
  6797. "symfony/translation": "<5.4",
  6798. "symfony/translation-contracts": "<2.5",
  6799. "symfony/twig-bridge": "<5.4",
  6800. "symfony/validator": "<6.4",
  6801. "symfony/var-dumper": "<6.3",
  6802. "twig/twig": "<2.13"
  6803. },
  6804. "provide": {
  6805. "psr/log-implementation": "1.0|2.0|3.0"
  6806. },
  6807. "require-dev": {
  6808. "psr/cache": "^1.0|^2.0|^3.0",
  6809. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  6810. "symfony/clock": "^6.2|^7.0",
  6811. "symfony/config": "^6.1|^7.0",
  6812. "symfony/console": "^5.4|^6.0|^7.0",
  6813. "symfony/css-selector": "^5.4|^6.0|^7.0",
  6814. "symfony/dependency-injection": "^6.4|^7.0",
  6815. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  6816. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6817. "symfony/finder": "^5.4|^6.0|^7.0",
  6818. "symfony/http-client-contracts": "^2.5|^3",
  6819. "symfony/process": "^5.4|^6.0|^7.0",
  6820. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  6821. "symfony/routing": "^5.4|^6.0|^7.0",
  6822. "symfony/serializer": "^6.4.4|^7.0.4",
  6823. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6824. "symfony/translation": "^5.4|^6.0|^7.0",
  6825. "symfony/translation-contracts": "^2.5|^3",
  6826. "symfony/uid": "^5.4|^6.0|^7.0",
  6827. "symfony/validator": "^6.4|^7.0",
  6828. "symfony/var-exporter": "^6.2|^7.0",
  6829. "twig/twig": "^2.13|^3.0.4"
  6830. },
  6831. "type": "library",
  6832. "autoload": {
  6833. "psr-4": {
  6834. "Symfony\\Component\\HttpKernel\\": ""
  6835. },
  6836. "exclude-from-classmap": [
  6837. "/Tests/"
  6838. ]
  6839. },
  6840. "notification-url": "https://packagist.org/downloads/",
  6841. "license": [
  6842. "MIT"
  6843. ],
  6844. "authors": [
  6845. {
  6846. "name": "Fabien Potencier",
  6847. "email": "fabien@symfony.com"
  6848. },
  6849. {
  6850. "name": "Symfony Community",
  6851. "homepage": "https://symfony.com/contributors"
  6852. }
  6853. ],
  6854. "description": "Provides a structured process for converting a Request into a Response",
  6855. "homepage": "https://symfony.com",
  6856. "support": {
  6857. "source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
  6858. },
  6859. "funding": [
  6860. {
  6861. "url": "https://symfony.com/sponsor",
  6862. "type": "custom"
  6863. },
  6864. {
  6865. "url": "https://github.com/fabpot",
  6866. "type": "github"
  6867. },
  6868. {
  6869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6870. "type": "tidelift"
  6871. }
  6872. ],
  6873. "time": "2024-02-27T06:32:13+00:00"
  6874. },
  6875. {
  6876. "name": "symfony/mailer",
  6877. "version": "v6.4.4",
  6878. "source": {
  6879. "type": "git",
  6880. "url": "https://github.com/symfony/mailer.git",
  6881. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
  6882. },
  6883. "dist": {
  6884. "type": "zip",
  6885. "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
  6886. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
  6887. "shasum": ""
  6888. },
  6889. "require": {
  6890. "egulias/email-validator": "^2.1.10|^3|^4",
  6891. "php": ">=8.1",
  6892. "psr/event-dispatcher": "^1",
  6893. "psr/log": "^1|^2|^3",
  6894. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6895. "symfony/mime": "^6.2|^7.0",
  6896. "symfony/service-contracts": "^2.5|^3"
  6897. },
  6898. "conflict": {
  6899. "symfony/http-client-contracts": "<2.5",
  6900. "symfony/http-kernel": "<5.4",
  6901. "symfony/messenger": "<6.2",
  6902. "symfony/mime": "<6.2",
  6903. "symfony/twig-bridge": "<6.2.1"
  6904. },
  6905. "require-dev": {
  6906. "symfony/console": "^5.4|^6.0|^7.0",
  6907. "symfony/http-client": "^5.4|^6.0|^7.0",
  6908. "symfony/messenger": "^6.2|^7.0",
  6909. "symfony/twig-bridge": "^6.2|^7.0"
  6910. },
  6911. "type": "library",
  6912. "autoload": {
  6913. "psr-4": {
  6914. "Symfony\\Component\\Mailer\\": ""
  6915. },
  6916. "exclude-from-classmap": [
  6917. "/Tests/"
  6918. ]
  6919. },
  6920. "notification-url": "https://packagist.org/downloads/",
  6921. "license": [
  6922. "MIT"
  6923. ],
  6924. "authors": [
  6925. {
  6926. "name": "Fabien Potencier",
  6927. "email": "fabien@symfony.com"
  6928. },
  6929. {
  6930. "name": "Symfony Community",
  6931. "homepage": "https://symfony.com/contributors"
  6932. }
  6933. ],
  6934. "description": "Helps sending emails",
  6935. "homepage": "https://symfony.com",
  6936. "support": {
  6937. "source": "https://github.com/symfony/mailer/tree/v6.4.4"
  6938. },
  6939. "funding": [
  6940. {
  6941. "url": "https://symfony.com/sponsor",
  6942. "type": "custom"
  6943. },
  6944. {
  6945. "url": "https://github.com/fabpot",
  6946. "type": "github"
  6947. },
  6948. {
  6949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6950. "type": "tidelift"
  6951. }
  6952. ],
  6953. "time": "2024-02-03T21:33:47+00:00"
  6954. },
  6955. {
  6956. "name": "symfony/mime",
  6957. "version": "v6.4.3",
  6958. "source": {
  6959. "type": "git",
  6960. "url": "https://github.com/symfony/mime.git",
  6961. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  6962. },
  6963. "dist": {
  6964. "type": "zip",
  6965. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  6966. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  6967. "shasum": ""
  6968. },
  6969. "require": {
  6970. "php": ">=8.1",
  6971. "symfony/deprecation-contracts": "^2.5|^3",
  6972. "symfony/polyfill-intl-idn": "^1.10",
  6973. "symfony/polyfill-mbstring": "^1.0"
  6974. },
  6975. "conflict": {
  6976. "egulias/email-validator": "~3.0.0",
  6977. "phpdocumentor/reflection-docblock": "<3.2.2",
  6978. "phpdocumentor/type-resolver": "<1.4.0",
  6979. "symfony/mailer": "<5.4",
  6980. "symfony/serializer": "<6.3.2"
  6981. },
  6982. "require-dev": {
  6983. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6984. "league/html-to-markdown": "^5.0",
  6985. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6986. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6987. "symfony/property-access": "^5.4|^6.0|^7.0",
  6988. "symfony/property-info": "^5.4|^6.0|^7.0",
  6989. "symfony/serializer": "^6.3.2|^7.0"
  6990. },
  6991. "type": "library",
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Symfony\\Component\\Mime\\": ""
  6995. },
  6996. "exclude-from-classmap": [
  6997. "/Tests/"
  6998. ]
  6999. },
  7000. "notification-url": "https://packagist.org/downloads/",
  7001. "license": [
  7002. "MIT"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Fabien Potencier",
  7007. "email": "fabien@symfony.com"
  7008. },
  7009. {
  7010. "name": "Symfony Community",
  7011. "homepage": "https://symfony.com/contributors"
  7012. }
  7013. ],
  7014. "description": "Allows manipulating MIME messages",
  7015. "homepage": "https://symfony.com",
  7016. "keywords": [
  7017. "mime",
  7018. "mime-type"
  7019. ],
  7020. "support": {
  7021. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  7022. },
  7023. "funding": [
  7024. {
  7025. "url": "https://symfony.com/sponsor",
  7026. "type": "custom"
  7027. },
  7028. {
  7029. "url": "https://github.com/fabpot",
  7030. "type": "github"
  7031. },
  7032. {
  7033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7034. "type": "tidelift"
  7035. }
  7036. ],
  7037. "time": "2024-01-30T08:32:12+00:00"
  7038. },
  7039. {
  7040. "name": "symfony/polyfill-ctype",
  7041. "version": "v1.28.0",
  7042. "source": {
  7043. "type": "git",
  7044. "url": "https://github.com/symfony/polyfill-ctype.git",
  7045. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7046. },
  7047. "dist": {
  7048. "type": "zip",
  7049. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7050. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7051. "shasum": ""
  7052. },
  7053. "require": {
  7054. "php": ">=7.1"
  7055. },
  7056. "provide": {
  7057. "ext-ctype": "*"
  7058. },
  7059. "suggest": {
  7060. "ext-ctype": "For best performance"
  7061. },
  7062. "type": "library",
  7063. "extra": {
  7064. "branch-alias": {
  7065. "dev-main": "1.28-dev"
  7066. },
  7067. "thanks": {
  7068. "name": "symfony/polyfill",
  7069. "url": "https://github.com/symfony/polyfill"
  7070. }
  7071. },
  7072. "autoload": {
  7073. "files": [
  7074. "bootstrap.php"
  7075. ],
  7076. "psr-4": {
  7077. "Symfony\\Polyfill\\Ctype\\": ""
  7078. }
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "MIT"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Gert de Pagter",
  7087. "email": "BackEndTea@gmail.com"
  7088. },
  7089. {
  7090. "name": "Symfony Community",
  7091. "homepage": "https://symfony.com/contributors"
  7092. }
  7093. ],
  7094. "description": "Symfony polyfill for ctype functions",
  7095. "homepage": "https://symfony.com",
  7096. "keywords": [
  7097. "compatibility",
  7098. "ctype",
  7099. "polyfill",
  7100. "portable"
  7101. ],
  7102. "support": {
  7103. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7104. },
  7105. "funding": [
  7106. {
  7107. "url": "https://symfony.com/sponsor",
  7108. "type": "custom"
  7109. },
  7110. {
  7111. "url": "https://github.com/fabpot",
  7112. "type": "github"
  7113. },
  7114. {
  7115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7116. "type": "tidelift"
  7117. }
  7118. ],
  7119. "time": "2023-01-26T09:26:14+00:00"
  7120. },
  7121. {
  7122. "name": "symfony/polyfill-iconv",
  7123. "version": "v1.28.0",
  7124. "source": {
  7125. "type": "git",
  7126. "url": "https://github.com/symfony/polyfill-iconv.git",
  7127. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7128. },
  7129. "dist": {
  7130. "type": "zip",
  7131. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7132. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7133. "shasum": ""
  7134. },
  7135. "require": {
  7136. "php": ">=7.1"
  7137. },
  7138. "provide": {
  7139. "ext-iconv": "*"
  7140. },
  7141. "suggest": {
  7142. "ext-iconv": "For best performance"
  7143. },
  7144. "type": "library",
  7145. "extra": {
  7146. "branch-alias": {
  7147. "dev-main": "1.28-dev"
  7148. },
  7149. "thanks": {
  7150. "name": "symfony/polyfill",
  7151. "url": "https://github.com/symfony/polyfill"
  7152. }
  7153. },
  7154. "autoload": {
  7155. "files": [
  7156. "bootstrap.php"
  7157. ],
  7158. "psr-4": {
  7159. "Symfony\\Polyfill\\Iconv\\": ""
  7160. }
  7161. },
  7162. "notification-url": "https://packagist.org/downloads/",
  7163. "license": [
  7164. "MIT"
  7165. ],
  7166. "authors": [
  7167. {
  7168. "name": "Nicolas Grekas",
  7169. "email": "p@tchwork.com"
  7170. },
  7171. {
  7172. "name": "Symfony Community",
  7173. "homepage": "https://symfony.com/contributors"
  7174. }
  7175. ],
  7176. "description": "Symfony polyfill for the Iconv extension",
  7177. "homepage": "https://symfony.com",
  7178. "keywords": [
  7179. "compatibility",
  7180. "iconv",
  7181. "polyfill",
  7182. "portable",
  7183. "shim"
  7184. ],
  7185. "support": {
  7186. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7187. },
  7188. "funding": [
  7189. {
  7190. "url": "https://symfony.com/sponsor",
  7191. "type": "custom"
  7192. },
  7193. {
  7194. "url": "https://github.com/fabpot",
  7195. "type": "github"
  7196. },
  7197. {
  7198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7199. "type": "tidelift"
  7200. }
  7201. ],
  7202. "time": "2023-01-26T09:26:14+00:00"
  7203. },
  7204. {
  7205. "name": "symfony/polyfill-intl-grapheme",
  7206. "version": "v1.28.0",
  7207. "source": {
  7208. "type": "git",
  7209. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7210. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7211. },
  7212. "dist": {
  7213. "type": "zip",
  7214. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7215. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7216. "shasum": ""
  7217. },
  7218. "require": {
  7219. "php": ">=7.1"
  7220. },
  7221. "suggest": {
  7222. "ext-intl": "For best performance"
  7223. },
  7224. "type": "library",
  7225. "extra": {
  7226. "branch-alias": {
  7227. "dev-main": "1.28-dev"
  7228. },
  7229. "thanks": {
  7230. "name": "symfony/polyfill",
  7231. "url": "https://github.com/symfony/polyfill"
  7232. }
  7233. },
  7234. "autoload": {
  7235. "files": [
  7236. "bootstrap.php"
  7237. ],
  7238. "psr-4": {
  7239. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7240. }
  7241. },
  7242. "notification-url": "https://packagist.org/downloads/",
  7243. "license": [
  7244. "MIT"
  7245. ],
  7246. "authors": [
  7247. {
  7248. "name": "Nicolas Grekas",
  7249. "email": "p@tchwork.com"
  7250. },
  7251. {
  7252. "name": "Symfony Community",
  7253. "homepage": "https://symfony.com/contributors"
  7254. }
  7255. ],
  7256. "description": "Symfony polyfill for intl's grapheme_* functions",
  7257. "homepage": "https://symfony.com",
  7258. "keywords": [
  7259. "compatibility",
  7260. "grapheme",
  7261. "intl",
  7262. "polyfill",
  7263. "portable",
  7264. "shim"
  7265. ],
  7266. "support": {
  7267. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7268. },
  7269. "funding": [
  7270. {
  7271. "url": "https://symfony.com/sponsor",
  7272. "type": "custom"
  7273. },
  7274. {
  7275. "url": "https://github.com/fabpot",
  7276. "type": "github"
  7277. },
  7278. {
  7279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7280. "type": "tidelift"
  7281. }
  7282. ],
  7283. "time": "2023-01-26T09:26:14+00:00"
  7284. },
  7285. {
  7286. "name": "symfony/polyfill-intl-idn",
  7287. "version": "v1.28.0",
  7288. "source": {
  7289. "type": "git",
  7290. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7291. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7292. },
  7293. "dist": {
  7294. "type": "zip",
  7295. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7296. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7297. "shasum": ""
  7298. },
  7299. "require": {
  7300. "php": ">=7.1",
  7301. "symfony/polyfill-intl-normalizer": "^1.10",
  7302. "symfony/polyfill-php72": "^1.10"
  7303. },
  7304. "suggest": {
  7305. "ext-intl": "For best performance"
  7306. },
  7307. "type": "library",
  7308. "extra": {
  7309. "branch-alias": {
  7310. "dev-main": "1.28-dev"
  7311. },
  7312. "thanks": {
  7313. "name": "symfony/polyfill",
  7314. "url": "https://github.com/symfony/polyfill"
  7315. }
  7316. },
  7317. "autoload": {
  7318. "files": [
  7319. "bootstrap.php"
  7320. ],
  7321. "psr-4": {
  7322. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7323. }
  7324. },
  7325. "notification-url": "https://packagist.org/downloads/",
  7326. "license": [
  7327. "MIT"
  7328. ],
  7329. "authors": [
  7330. {
  7331. "name": "Laurent Bassin",
  7332. "email": "laurent@bassin.info"
  7333. },
  7334. {
  7335. "name": "Trevor Rowbotham",
  7336. "email": "trevor.rowbotham@pm.me"
  7337. },
  7338. {
  7339. "name": "Symfony Community",
  7340. "homepage": "https://symfony.com/contributors"
  7341. }
  7342. ],
  7343. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7344. "homepage": "https://symfony.com",
  7345. "keywords": [
  7346. "compatibility",
  7347. "idn",
  7348. "intl",
  7349. "polyfill",
  7350. "portable",
  7351. "shim"
  7352. ],
  7353. "support": {
  7354. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7355. },
  7356. "funding": [
  7357. {
  7358. "url": "https://symfony.com/sponsor",
  7359. "type": "custom"
  7360. },
  7361. {
  7362. "url": "https://github.com/fabpot",
  7363. "type": "github"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2023-01-26T09:30:37+00:00"
  7371. },
  7372. {
  7373. "name": "symfony/polyfill-intl-normalizer",
  7374. "version": "v1.28.0",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7378. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7383. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7384. "shasum": ""
  7385. },
  7386. "require": {
  7387. "php": ">=7.1"
  7388. },
  7389. "suggest": {
  7390. "ext-intl": "For best performance"
  7391. },
  7392. "type": "library",
  7393. "extra": {
  7394. "branch-alias": {
  7395. "dev-main": "1.28-dev"
  7396. },
  7397. "thanks": {
  7398. "name": "symfony/polyfill",
  7399. "url": "https://github.com/symfony/polyfill"
  7400. }
  7401. },
  7402. "autoload": {
  7403. "files": [
  7404. "bootstrap.php"
  7405. ],
  7406. "psr-4": {
  7407. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7408. },
  7409. "classmap": [
  7410. "Resources/stubs"
  7411. ]
  7412. },
  7413. "notification-url": "https://packagist.org/downloads/",
  7414. "license": [
  7415. "MIT"
  7416. ],
  7417. "authors": [
  7418. {
  7419. "name": "Nicolas Grekas",
  7420. "email": "p@tchwork.com"
  7421. },
  7422. {
  7423. "name": "Symfony Community",
  7424. "homepage": "https://symfony.com/contributors"
  7425. }
  7426. ],
  7427. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7428. "homepage": "https://symfony.com",
  7429. "keywords": [
  7430. "compatibility",
  7431. "intl",
  7432. "normalizer",
  7433. "polyfill",
  7434. "portable",
  7435. "shim"
  7436. ],
  7437. "support": {
  7438. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7439. },
  7440. "funding": [
  7441. {
  7442. "url": "https://symfony.com/sponsor",
  7443. "type": "custom"
  7444. },
  7445. {
  7446. "url": "https://github.com/fabpot",
  7447. "type": "github"
  7448. },
  7449. {
  7450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7451. "type": "tidelift"
  7452. }
  7453. ],
  7454. "time": "2023-01-26T09:26:14+00:00"
  7455. },
  7456. {
  7457. "name": "symfony/polyfill-mbstring",
  7458. "version": "v1.28.0",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7462. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7467. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7468. "shasum": ""
  7469. },
  7470. "require": {
  7471. "php": ">=7.1"
  7472. },
  7473. "provide": {
  7474. "ext-mbstring": "*"
  7475. },
  7476. "suggest": {
  7477. "ext-mbstring": "For best performance"
  7478. },
  7479. "type": "library",
  7480. "extra": {
  7481. "branch-alias": {
  7482. "dev-main": "1.28-dev"
  7483. },
  7484. "thanks": {
  7485. "name": "symfony/polyfill",
  7486. "url": "https://github.com/symfony/polyfill"
  7487. }
  7488. },
  7489. "autoload": {
  7490. "files": [
  7491. "bootstrap.php"
  7492. ],
  7493. "psr-4": {
  7494. "Symfony\\Polyfill\\Mbstring\\": ""
  7495. }
  7496. },
  7497. "notification-url": "https://packagist.org/downloads/",
  7498. "license": [
  7499. "MIT"
  7500. ],
  7501. "authors": [
  7502. {
  7503. "name": "Nicolas Grekas",
  7504. "email": "p@tchwork.com"
  7505. },
  7506. {
  7507. "name": "Symfony Community",
  7508. "homepage": "https://symfony.com/contributors"
  7509. }
  7510. ],
  7511. "description": "Symfony polyfill for the Mbstring extension",
  7512. "homepage": "https://symfony.com",
  7513. "keywords": [
  7514. "compatibility",
  7515. "mbstring",
  7516. "polyfill",
  7517. "portable",
  7518. "shim"
  7519. ],
  7520. "support": {
  7521. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7522. },
  7523. "funding": [
  7524. {
  7525. "url": "https://symfony.com/sponsor",
  7526. "type": "custom"
  7527. },
  7528. {
  7529. "url": "https://github.com/fabpot",
  7530. "type": "github"
  7531. },
  7532. {
  7533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7534. "type": "tidelift"
  7535. }
  7536. ],
  7537. "time": "2023-07-28T09:04:16+00:00"
  7538. },
  7539. {
  7540. "name": "symfony/polyfill-php72",
  7541. "version": "v1.29.0",
  7542. "source": {
  7543. "type": "git",
  7544. "url": "https://github.com/symfony/polyfill-php72.git",
  7545. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7546. },
  7547. "dist": {
  7548. "type": "zip",
  7549. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7550. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7551. "shasum": ""
  7552. },
  7553. "require": {
  7554. "php": ">=7.1"
  7555. },
  7556. "type": "library",
  7557. "extra": {
  7558. "thanks": {
  7559. "name": "symfony/polyfill",
  7560. "url": "https://github.com/symfony/polyfill"
  7561. }
  7562. },
  7563. "autoload": {
  7564. "files": [
  7565. "bootstrap.php"
  7566. ],
  7567. "psr-4": {
  7568. "Symfony\\Polyfill\\Php72\\": ""
  7569. }
  7570. },
  7571. "notification-url": "https://packagist.org/downloads/",
  7572. "license": [
  7573. "MIT"
  7574. ],
  7575. "authors": [
  7576. {
  7577. "name": "Nicolas Grekas",
  7578. "email": "p@tchwork.com"
  7579. },
  7580. {
  7581. "name": "Symfony Community",
  7582. "homepage": "https://symfony.com/contributors"
  7583. }
  7584. ],
  7585. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7586. "homepage": "https://symfony.com",
  7587. "keywords": [
  7588. "compatibility",
  7589. "polyfill",
  7590. "portable",
  7591. "shim"
  7592. ],
  7593. "support": {
  7594. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7595. },
  7596. "funding": [
  7597. {
  7598. "url": "https://symfony.com/sponsor",
  7599. "type": "custom"
  7600. },
  7601. {
  7602. "url": "https://github.com/fabpot",
  7603. "type": "github"
  7604. },
  7605. {
  7606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7607. "type": "tidelift"
  7608. }
  7609. ],
  7610. "time": "2024-01-29T20:11:03+00:00"
  7611. },
  7612. {
  7613. "name": "symfony/polyfill-php80",
  7614. "version": "v1.29.0",
  7615. "source": {
  7616. "type": "git",
  7617. "url": "https://github.com/symfony/polyfill-php80.git",
  7618. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7619. },
  7620. "dist": {
  7621. "type": "zip",
  7622. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7623. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7624. "shasum": ""
  7625. },
  7626. "require": {
  7627. "php": ">=7.1"
  7628. },
  7629. "type": "library",
  7630. "extra": {
  7631. "thanks": {
  7632. "name": "symfony/polyfill",
  7633. "url": "https://github.com/symfony/polyfill"
  7634. }
  7635. },
  7636. "autoload": {
  7637. "files": [
  7638. "bootstrap.php"
  7639. ],
  7640. "psr-4": {
  7641. "Symfony\\Polyfill\\Php80\\": ""
  7642. },
  7643. "classmap": [
  7644. "Resources/stubs"
  7645. ]
  7646. },
  7647. "notification-url": "https://packagist.org/downloads/",
  7648. "license": [
  7649. "MIT"
  7650. ],
  7651. "authors": [
  7652. {
  7653. "name": "Ion Bazan",
  7654. "email": "ion.bazan@gmail.com"
  7655. },
  7656. {
  7657. "name": "Nicolas Grekas",
  7658. "email": "p@tchwork.com"
  7659. },
  7660. {
  7661. "name": "Symfony Community",
  7662. "homepage": "https://symfony.com/contributors"
  7663. }
  7664. ],
  7665. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7666. "homepage": "https://symfony.com",
  7667. "keywords": [
  7668. "compatibility",
  7669. "polyfill",
  7670. "portable",
  7671. "shim"
  7672. ],
  7673. "support": {
  7674. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7675. },
  7676. "funding": [
  7677. {
  7678. "url": "https://symfony.com/sponsor",
  7679. "type": "custom"
  7680. },
  7681. {
  7682. "url": "https://github.com/fabpot",
  7683. "type": "github"
  7684. },
  7685. {
  7686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7687. "type": "tidelift"
  7688. }
  7689. ],
  7690. "time": "2024-01-29T20:11:03+00:00"
  7691. },
  7692. {
  7693. "name": "symfony/polyfill-php81",
  7694. "version": "v1.29.0",
  7695. "source": {
  7696. "type": "git",
  7697. "url": "https://github.com/symfony/polyfill-php81.git",
  7698. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  7699. },
  7700. "dist": {
  7701. "type": "zip",
  7702. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  7703. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  7704. "shasum": ""
  7705. },
  7706. "require": {
  7707. "php": ">=7.1"
  7708. },
  7709. "type": "library",
  7710. "extra": {
  7711. "thanks": {
  7712. "name": "symfony/polyfill",
  7713. "url": "https://github.com/symfony/polyfill"
  7714. }
  7715. },
  7716. "autoload": {
  7717. "files": [
  7718. "bootstrap.php"
  7719. ],
  7720. "psr-4": {
  7721. "Symfony\\Polyfill\\Php81\\": ""
  7722. },
  7723. "classmap": [
  7724. "Resources/stubs"
  7725. ]
  7726. },
  7727. "notification-url": "https://packagist.org/downloads/",
  7728. "license": [
  7729. "MIT"
  7730. ],
  7731. "authors": [
  7732. {
  7733. "name": "Nicolas Grekas",
  7734. "email": "p@tchwork.com"
  7735. },
  7736. {
  7737. "name": "Symfony Community",
  7738. "homepage": "https://symfony.com/contributors"
  7739. }
  7740. ],
  7741. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7742. "homepage": "https://symfony.com",
  7743. "keywords": [
  7744. "compatibility",
  7745. "polyfill",
  7746. "portable",
  7747. "shim"
  7748. ],
  7749. "support": {
  7750. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  7751. },
  7752. "funding": [
  7753. {
  7754. "url": "https://symfony.com/sponsor",
  7755. "type": "custom"
  7756. },
  7757. {
  7758. "url": "https://github.com/fabpot",
  7759. "type": "github"
  7760. },
  7761. {
  7762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7763. "type": "tidelift"
  7764. }
  7765. ],
  7766. "time": "2024-01-29T20:11:03+00:00"
  7767. },
  7768. {
  7769. "name": "symfony/polyfill-php83",
  7770. "version": "v1.28.0",
  7771. "source": {
  7772. "type": "git",
  7773. "url": "https://github.com/symfony/polyfill-php83.git",
  7774. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  7775. },
  7776. "dist": {
  7777. "type": "zip",
  7778. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7779. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7780. "shasum": ""
  7781. },
  7782. "require": {
  7783. "php": ">=7.1",
  7784. "symfony/polyfill-php80": "^1.14"
  7785. },
  7786. "type": "library",
  7787. "extra": {
  7788. "branch-alias": {
  7789. "dev-main": "1.28-dev"
  7790. },
  7791. "thanks": {
  7792. "name": "symfony/polyfill",
  7793. "url": "https://github.com/symfony/polyfill"
  7794. }
  7795. },
  7796. "autoload": {
  7797. "files": [
  7798. "bootstrap.php"
  7799. ],
  7800. "psr-4": {
  7801. "Symfony\\Polyfill\\Php83\\": ""
  7802. },
  7803. "classmap": [
  7804. "Resources/stubs"
  7805. ]
  7806. },
  7807. "notification-url": "https://packagist.org/downloads/",
  7808. "license": [
  7809. "MIT"
  7810. ],
  7811. "authors": [
  7812. {
  7813. "name": "Nicolas Grekas",
  7814. "email": "p@tchwork.com"
  7815. },
  7816. {
  7817. "name": "Symfony Community",
  7818. "homepage": "https://symfony.com/contributors"
  7819. }
  7820. ],
  7821. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7822. "homepage": "https://symfony.com",
  7823. "keywords": [
  7824. "compatibility",
  7825. "polyfill",
  7826. "portable",
  7827. "shim"
  7828. ],
  7829. "support": {
  7830. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  7831. },
  7832. "funding": [
  7833. {
  7834. "url": "https://symfony.com/sponsor",
  7835. "type": "custom"
  7836. },
  7837. {
  7838. "url": "https://github.com/fabpot",
  7839. "type": "github"
  7840. },
  7841. {
  7842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7843. "type": "tidelift"
  7844. }
  7845. ],
  7846. "time": "2023-08-16T06:22:46+00:00"
  7847. },
  7848. {
  7849. "name": "symfony/process",
  7850. "version": "v6.4.4",
  7851. "source": {
  7852. "type": "git",
  7853. "url": "https://github.com/symfony/process.git",
  7854. "reference": "710e27879e9be3395de2b98da3f52a946039f297"
  7855. },
  7856. "dist": {
  7857. "type": "zip",
  7858. "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
  7859. "reference": "710e27879e9be3395de2b98da3f52a946039f297",
  7860. "shasum": ""
  7861. },
  7862. "require": {
  7863. "php": ">=8.1"
  7864. },
  7865. "type": "library",
  7866. "autoload": {
  7867. "psr-4": {
  7868. "Symfony\\Component\\Process\\": ""
  7869. },
  7870. "exclude-from-classmap": [
  7871. "/Tests/"
  7872. ]
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "MIT"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Fabien Potencier",
  7881. "email": "fabien@symfony.com"
  7882. },
  7883. {
  7884. "name": "Symfony Community",
  7885. "homepage": "https://symfony.com/contributors"
  7886. }
  7887. ],
  7888. "description": "Executes commands in sub-processes",
  7889. "homepage": "https://symfony.com",
  7890. "support": {
  7891. "source": "https://github.com/symfony/process/tree/v6.4.4"
  7892. },
  7893. "funding": [
  7894. {
  7895. "url": "https://symfony.com/sponsor",
  7896. "type": "custom"
  7897. },
  7898. {
  7899. "url": "https://github.com/fabpot",
  7900. "type": "github"
  7901. },
  7902. {
  7903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7904. "type": "tidelift"
  7905. }
  7906. ],
  7907. "time": "2024-02-20T12:31:00+00:00"
  7908. },
  7909. {
  7910. "name": "symfony/psr-http-message-bridge",
  7911. "version": "v6.4.3",
  7912. "source": {
  7913. "type": "git",
  7914. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7915. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47"
  7916. },
  7917. "dist": {
  7918. "type": "zip",
  7919. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  7920. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  7921. "shasum": ""
  7922. },
  7923. "require": {
  7924. "php": ">=8.1",
  7925. "psr/http-message": "^1.0|^2.0",
  7926. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  7927. },
  7928. "conflict": {
  7929. "php-http/discovery": "<1.15",
  7930. "symfony/http-kernel": "<6.2"
  7931. },
  7932. "require-dev": {
  7933. "nyholm/psr7": "^1.1",
  7934. "php-http/discovery": "^1.15",
  7935. "psr/log": "^1.1.4|^2|^3",
  7936. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  7937. "symfony/config": "^5.4|^6.0|^7.0",
  7938. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7939. "symfony/framework-bundle": "^6.2|^7.0",
  7940. "symfony/http-kernel": "^6.2|^7.0"
  7941. },
  7942. "type": "symfony-bridge",
  7943. "autoload": {
  7944. "psr-4": {
  7945. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7946. },
  7947. "exclude-from-classmap": [
  7948. "/Tests/"
  7949. ]
  7950. },
  7951. "notification-url": "https://packagist.org/downloads/",
  7952. "license": [
  7953. "MIT"
  7954. ],
  7955. "authors": [
  7956. {
  7957. "name": "Fabien Potencier",
  7958. "email": "fabien@symfony.com"
  7959. },
  7960. {
  7961. "name": "Symfony Community",
  7962. "homepage": "https://symfony.com/contributors"
  7963. }
  7964. ],
  7965. "description": "PSR HTTP message bridge",
  7966. "homepage": "https://symfony.com",
  7967. "keywords": [
  7968. "http",
  7969. "http-message",
  7970. "psr-17",
  7971. "psr-7"
  7972. ],
  7973. "support": {
  7974. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3"
  7975. },
  7976. "funding": [
  7977. {
  7978. "url": "https://symfony.com/sponsor",
  7979. "type": "custom"
  7980. },
  7981. {
  7982. "url": "https://github.com/fabpot",
  7983. "type": "github"
  7984. },
  7985. {
  7986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7987. "type": "tidelift"
  7988. }
  7989. ],
  7990. "time": "2024-01-23T14:51:35+00:00"
  7991. },
  7992. {
  7993. "name": "symfony/routing",
  7994. "version": "v6.4.3",
  7995. "source": {
  7996. "type": "git",
  7997. "url": "https://github.com/symfony/routing.git",
  7998. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  7999. },
  8000. "dist": {
  8001. "type": "zip",
  8002. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8003. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8004. "shasum": ""
  8005. },
  8006. "require": {
  8007. "php": ">=8.1",
  8008. "symfony/deprecation-contracts": "^2.5|^3"
  8009. },
  8010. "conflict": {
  8011. "doctrine/annotations": "<1.12",
  8012. "symfony/config": "<6.2",
  8013. "symfony/dependency-injection": "<5.4",
  8014. "symfony/yaml": "<5.4"
  8015. },
  8016. "require-dev": {
  8017. "doctrine/annotations": "^1.12|^2",
  8018. "psr/log": "^1|^2|^3",
  8019. "symfony/config": "^6.2|^7.0",
  8020. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8021. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8022. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8023. "symfony/yaml": "^5.4|^6.0|^7.0"
  8024. },
  8025. "type": "library",
  8026. "autoload": {
  8027. "psr-4": {
  8028. "Symfony\\Component\\Routing\\": ""
  8029. },
  8030. "exclude-from-classmap": [
  8031. "/Tests/"
  8032. ]
  8033. },
  8034. "notification-url": "https://packagist.org/downloads/",
  8035. "license": [
  8036. "MIT"
  8037. ],
  8038. "authors": [
  8039. {
  8040. "name": "Fabien Potencier",
  8041. "email": "fabien@symfony.com"
  8042. },
  8043. {
  8044. "name": "Symfony Community",
  8045. "homepage": "https://symfony.com/contributors"
  8046. }
  8047. ],
  8048. "description": "Maps an HTTP request to a set of configuration variables",
  8049. "homepage": "https://symfony.com",
  8050. "keywords": [
  8051. "router",
  8052. "routing",
  8053. "uri",
  8054. "url"
  8055. ],
  8056. "support": {
  8057. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  8058. },
  8059. "funding": [
  8060. {
  8061. "url": "https://symfony.com/sponsor",
  8062. "type": "custom"
  8063. },
  8064. {
  8065. "url": "https://github.com/fabpot",
  8066. "type": "github"
  8067. },
  8068. {
  8069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8070. "type": "tidelift"
  8071. }
  8072. ],
  8073. "time": "2024-01-30T13:55:02+00:00"
  8074. },
  8075. {
  8076. "name": "symfony/serializer",
  8077. "version": "v6.4.4",
  8078. "source": {
  8079. "type": "git",
  8080. "url": "https://github.com/symfony/serializer.git",
  8081. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872"
  8082. },
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://api.github.com/repos/symfony/serializer/zipball/88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8086. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8087. "shasum": ""
  8088. },
  8089. "require": {
  8090. "php": ">=8.1",
  8091. "symfony/deprecation-contracts": "^2.5|^3",
  8092. "symfony/polyfill-ctype": "~1.8"
  8093. },
  8094. "conflict": {
  8095. "doctrine/annotations": "<1.12",
  8096. "phpdocumentor/reflection-docblock": "<3.2.2",
  8097. "phpdocumentor/type-resolver": "<1.4.0",
  8098. "symfony/dependency-injection": "<5.4",
  8099. "symfony/property-access": "<5.4",
  8100. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  8101. "symfony/uid": "<5.4",
  8102. "symfony/validator": "<6.4",
  8103. "symfony/yaml": "<5.4"
  8104. },
  8105. "require-dev": {
  8106. "doctrine/annotations": "^1.12|^2",
  8107. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8108. "seld/jsonlint": "^1.10",
  8109. "symfony/cache": "^5.4|^6.0|^7.0",
  8110. "symfony/config": "^5.4|^6.0|^7.0",
  8111. "symfony/console": "^5.4|^6.0|^7.0",
  8112. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8113. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8114. "symfony/filesystem": "^5.4|^6.0|^7.0",
  8115. "symfony/form": "^5.4|^6.0|^7.0",
  8116. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8117. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8118. "symfony/messenger": "^5.4|^6.0|^7.0",
  8119. "symfony/mime": "^5.4|^6.0|^7.0",
  8120. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  8121. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  8122. "symfony/translation-contracts": "^2.5|^3",
  8123. "symfony/uid": "^5.4|^6.0|^7.0",
  8124. "symfony/validator": "^6.4|^7.0",
  8125. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8126. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  8127. "symfony/yaml": "^5.4|^6.0|^7.0"
  8128. },
  8129. "type": "library",
  8130. "autoload": {
  8131. "psr-4": {
  8132. "Symfony\\Component\\Serializer\\": ""
  8133. },
  8134. "exclude-from-classmap": [
  8135. "/Tests/"
  8136. ]
  8137. },
  8138. "notification-url": "https://packagist.org/downloads/",
  8139. "license": [
  8140. "MIT"
  8141. ],
  8142. "authors": [
  8143. {
  8144. "name": "Fabien Potencier",
  8145. "email": "fabien@symfony.com"
  8146. },
  8147. {
  8148. "name": "Symfony Community",
  8149. "homepage": "https://symfony.com/contributors"
  8150. }
  8151. ],
  8152. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8153. "homepage": "https://symfony.com",
  8154. "support": {
  8155. "source": "https://github.com/symfony/serializer/tree/v6.4.4"
  8156. },
  8157. "funding": [
  8158. {
  8159. "url": "https://symfony.com/sponsor",
  8160. "type": "custom"
  8161. },
  8162. {
  8163. "url": "https://github.com/fabpot",
  8164. "type": "github"
  8165. },
  8166. {
  8167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8168. "type": "tidelift"
  8169. }
  8170. ],
  8171. "time": "2024-02-22T20:27:10+00:00"
  8172. },
  8173. {
  8174. "name": "symfony/service-contracts",
  8175. "version": "v3.4.1",
  8176. "source": {
  8177. "type": "git",
  8178. "url": "https://github.com/symfony/service-contracts.git",
  8179. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  8180. },
  8181. "dist": {
  8182. "type": "zip",
  8183. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  8184. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  8185. "shasum": ""
  8186. },
  8187. "require": {
  8188. "php": ">=8.1",
  8189. "psr/container": "^1.1|^2.0"
  8190. },
  8191. "conflict": {
  8192. "ext-psr": "<1.1|>=2"
  8193. },
  8194. "type": "library",
  8195. "extra": {
  8196. "branch-alias": {
  8197. "dev-main": "3.4-dev"
  8198. },
  8199. "thanks": {
  8200. "name": "symfony/contracts",
  8201. "url": "https://github.com/symfony/contracts"
  8202. }
  8203. },
  8204. "autoload": {
  8205. "psr-4": {
  8206. "Symfony\\Contracts\\Service\\": ""
  8207. },
  8208. "exclude-from-classmap": [
  8209. "/Test/"
  8210. ]
  8211. },
  8212. "notification-url": "https://packagist.org/downloads/",
  8213. "license": [
  8214. "MIT"
  8215. ],
  8216. "authors": [
  8217. {
  8218. "name": "Nicolas Grekas",
  8219. "email": "p@tchwork.com"
  8220. },
  8221. {
  8222. "name": "Symfony Community",
  8223. "homepage": "https://symfony.com/contributors"
  8224. }
  8225. ],
  8226. "description": "Generic abstractions related to writing services",
  8227. "homepage": "https://symfony.com",
  8228. "keywords": [
  8229. "abstractions",
  8230. "contracts",
  8231. "decoupling",
  8232. "interfaces",
  8233. "interoperability",
  8234. "standards"
  8235. ],
  8236. "support": {
  8237. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  8238. },
  8239. "funding": [
  8240. {
  8241. "url": "https://symfony.com/sponsor",
  8242. "type": "custom"
  8243. },
  8244. {
  8245. "url": "https://github.com/fabpot",
  8246. "type": "github"
  8247. },
  8248. {
  8249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8250. "type": "tidelift"
  8251. }
  8252. ],
  8253. "time": "2023-12-26T14:02:43+00:00"
  8254. },
  8255. {
  8256. "name": "symfony/string",
  8257. "version": "v6.4.4",
  8258. "source": {
  8259. "type": "git",
  8260. "url": "https://github.com/symfony/string.git",
  8261. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9"
  8262. },
  8263. "dist": {
  8264. "type": "zip",
  8265. "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8266. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8267. "shasum": ""
  8268. },
  8269. "require": {
  8270. "php": ">=8.1",
  8271. "symfony/polyfill-ctype": "~1.8",
  8272. "symfony/polyfill-intl-grapheme": "~1.0",
  8273. "symfony/polyfill-intl-normalizer": "~1.0",
  8274. "symfony/polyfill-mbstring": "~1.0"
  8275. },
  8276. "conflict": {
  8277. "symfony/translation-contracts": "<2.5"
  8278. },
  8279. "require-dev": {
  8280. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8281. "symfony/http-client": "^5.4|^6.0|^7.0",
  8282. "symfony/intl": "^6.2|^7.0",
  8283. "symfony/translation-contracts": "^2.5|^3.0",
  8284. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8285. },
  8286. "type": "library",
  8287. "autoload": {
  8288. "files": [
  8289. "Resources/functions.php"
  8290. ],
  8291. "psr-4": {
  8292. "Symfony\\Component\\String\\": ""
  8293. },
  8294. "exclude-from-classmap": [
  8295. "/Tests/"
  8296. ]
  8297. },
  8298. "notification-url": "https://packagist.org/downloads/",
  8299. "license": [
  8300. "MIT"
  8301. ],
  8302. "authors": [
  8303. {
  8304. "name": "Nicolas Grekas",
  8305. "email": "p@tchwork.com"
  8306. },
  8307. {
  8308. "name": "Symfony Community",
  8309. "homepage": "https://symfony.com/contributors"
  8310. }
  8311. ],
  8312. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8313. "homepage": "https://symfony.com",
  8314. "keywords": [
  8315. "grapheme",
  8316. "i18n",
  8317. "string",
  8318. "unicode",
  8319. "utf-8",
  8320. "utf8"
  8321. ],
  8322. "support": {
  8323. "source": "https://github.com/symfony/string/tree/v6.4.4"
  8324. },
  8325. "funding": [
  8326. {
  8327. "url": "https://symfony.com/sponsor",
  8328. "type": "custom"
  8329. },
  8330. {
  8331. "url": "https://github.com/fabpot",
  8332. "type": "github"
  8333. },
  8334. {
  8335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8336. "type": "tidelift"
  8337. }
  8338. ],
  8339. "time": "2024-02-01T13:16:41+00:00"
  8340. },
  8341. {
  8342. "name": "symfony/translation-contracts",
  8343. "version": "v3.4.1",
  8344. "source": {
  8345. "type": "git",
  8346. "url": "https://github.com/symfony/translation-contracts.git",
  8347. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  8348. },
  8349. "dist": {
  8350. "type": "zip",
  8351. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  8352. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  8353. "shasum": ""
  8354. },
  8355. "require": {
  8356. "php": ">=8.1"
  8357. },
  8358. "type": "library",
  8359. "extra": {
  8360. "branch-alias": {
  8361. "dev-main": "3.4-dev"
  8362. },
  8363. "thanks": {
  8364. "name": "symfony/contracts",
  8365. "url": "https://github.com/symfony/contracts"
  8366. }
  8367. },
  8368. "autoload": {
  8369. "psr-4": {
  8370. "Symfony\\Contracts\\Translation\\": ""
  8371. },
  8372. "exclude-from-classmap": [
  8373. "/Test/"
  8374. ]
  8375. },
  8376. "notification-url": "https://packagist.org/downloads/",
  8377. "license": [
  8378. "MIT"
  8379. ],
  8380. "authors": [
  8381. {
  8382. "name": "Nicolas Grekas",
  8383. "email": "p@tchwork.com"
  8384. },
  8385. {
  8386. "name": "Symfony Community",
  8387. "homepage": "https://symfony.com/contributors"
  8388. }
  8389. ],
  8390. "description": "Generic abstractions related to translation",
  8391. "homepage": "https://symfony.com",
  8392. "keywords": [
  8393. "abstractions",
  8394. "contracts",
  8395. "decoupling",
  8396. "interfaces",
  8397. "interoperability",
  8398. "standards"
  8399. ],
  8400. "support": {
  8401. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  8402. },
  8403. "funding": [
  8404. {
  8405. "url": "https://symfony.com/sponsor",
  8406. "type": "custom"
  8407. },
  8408. {
  8409. "url": "https://github.com/fabpot",
  8410. "type": "github"
  8411. },
  8412. {
  8413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8414. "type": "tidelift"
  8415. }
  8416. ],
  8417. "time": "2023-12-26T14:02:43+00:00"
  8418. },
  8419. {
  8420. "name": "symfony/validator",
  8421. "version": "v6.4.4",
  8422. "source": {
  8423. "type": "git",
  8424. "url": "https://github.com/symfony/validator.git",
  8425. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47"
  8426. },
  8427. "dist": {
  8428. "type": "zip",
  8429. "url": "https://api.github.com/repos/symfony/validator/zipball/1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8430. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8431. "shasum": ""
  8432. },
  8433. "require": {
  8434. "php": ">=8.1",
  8435. "symfony/deprecation-contracts": "^2.5|^3",
  8436. "symfony/polyfill-ctype": "~1.8",
  8437. "symfony/polyfill-mbstring": "~1.0",
  8438. "symfony/polyfill-php83": "^1.27",
  8439. "symfony/translation-contracts": "^2.5|^3"
  8440. },
  8441. "conflict": {
  8442. "doctrine/annotations": "<1.13",
  8443. "doctrine/lexer": "<1.1",
  8444. "symfony/dependency-injection": "<5.4",
  8445. "symfony/expression-language": "<5.4",
  8446. "symfony/http-kernel": "<5.4",
  8447. "symfony/intl": "<5.4",
  8448. "symfony/property-info": "<5.4",
  8449. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  8450. "symfony/yaml": "<5.4"
  8451. },
  8452. "require-dev": {
  8453. "doctrine/annotations": "^1.13|^2",
  8454. "egulias/email-validator": "^2.1.10|^3|^4",
  8455. "symfony/cache": "^5.4|^6.0|^7.0",
  8456. "symfony/config": "^5.4|^6.0|^7.0",
  8457. "symfony/console": "^5.4|^6.0|^7.0",
  8458. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8459. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8460. "symfony/finder": "^5.4|^6.0|^7.0",
  8461. "symfony/http-client": "^5.4|^6.0|^7.0",
  8462. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8463. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8464. "symfony/intl": "^5.4|^6.0|^7.0",
  8465. "symfony/mime": "^5.4|^6.0|^7.0",
  8466. "symfony/property-access": "^5.4|^6.0|^7.0",
  8467. "symfony/property-info": "^5.4|^6.0|^7.0",
  8468. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  8469. "symfony/yaml": "^5.4|^6.0|^7.0"
  8470. },
  8471. "type": "library",
  8472. "autoload": {
  8473. "psr-4": {
  8474. "Symfony\\Component\\Validator\\": ""
  8475. },
  8476. "exclude-from-classmap": [
  8477. "/Tests/"
  8478. ]
  8479. },
  8480. "notification-url": "https://packagist.org/downloads/",
  8481. "license": [
  8482. "MIT"
  8483. ],
  8484. "authors": [
  8485. {
  8486. "name": "Fabien Potencier",
  8487. "email": "fabien@symfony.com"
  8488. },
  8489. {
  8490. "name": "Symfony Community",
  8491. "homepage": "https://symfony.com/contributors"
  8492. }
  8493. ],
  8494. "description": "Provides tools to validate values",
  8495. "homepage": "https://symfony.com",
  8496. "support": {
  8497. "source": "https://github.com/symfony/validator/tree/v6.4.4"
  8498. },
  8499. "funding": [
  8500. {
  8501. "url": "https://symfony.com/sponsor",
  8502. "type": "custom"
  8503. },
  8504. {
  8505. "url": "https://github.com/fabpot",
  8506. "type": "github"
  8507. },
  8508. {
  8509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8510. "type": "tidelift"
  8511. }
  8512. ],
  8513. "time": "2024-02-22T20:27:10+00:00"
  8514. },
  8515. {
  8516. "name": "symfony/var-dumper",
  8517. "version": "v6.4.4",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/symfony/var-dumper.git",
  8521. "reference": "b439823f04c98b84d4366c79507e9da6230944b1"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
  8526. "reference": "b439823f04c98b84d4366c79507e9da6230944b1",
  8527. "shasum": ""
  8528. },
  8529. "require": {
  8530. "php": ">=8.1",
  8531. "symfony/deprecation-contracts": "^2.5|^3",
  8532. "symfony/polyfill-mbstring": "~1.0"
  8533. },
  8534. "conflict": {
  8535. "symfony/console": "<5.4"
  8536. },
  8537. "require-dev": {
  8538. "ext-iconv": "*",
  8539. "symfony/console": "^5.4|^6.0|^7.0",
  8540. "symfony/error-handler": "^6.3|^7.0",
  8541. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8542. "symfony/process": "^5.4|^6.0|^7.0",
  8543. "symfony/uid": "^5.4|^6.0|^7.0",
  8544. "twig/twig": "^2.13|^3.0.4"
  8545. },
  8546. "bin": [
  8547. "Resources/bin/var-dump-server"
  8548. ],
  8549. "type": "library",
  8550. "autoload": {
  8551. "files": [
  8552. "Resources/functions/dump.php"
  8553. ],
  8554. "psr-4": {
  8555. "Symfony\\Component\\VarDumper\\": ""
  8556. },
  8557. "exclude-from-classmap": [
  8558. "/Tests/"
  8559. ]
  8560. },
  8561. "notification-url": "https://packagist.org/downloads/",
  8562. "license": [
  8563. "MIT"
  8564. ],
  8565. "authors": [
  8566. {
  8567. "name": "Nicolas Grekas",
  8568. "email": "p@tchwork.com"
  8569. },
  8570. {
  8571. "name": "Symfony Community",
  8572. "homepage": "https://symfony.com/contributors"
  8573. }
  8574. ],
  8575. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8576. "homepage": "https://symfony.com",
  8577. "keywords": [
  8578. "debug",
  8579. "dump"
  8580. ],
  8581. "support": {
  8582. "source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
  8583. },
  8584. "funding": [
  8585. {
  8586. "url": "https://symfony.com/sponsor",
  8587. "type": "custom"
  8588. },
  8589. {
  8590. "url": "https://github.com/fabpot",
  8591. "type": "github"
  8592. },
  8593. {
  8594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8595. "type": "tidelift"
  8596. }
  8597. ],
  8598. "time": "2024-02-15T11:23:52+00:00"
  8599. },
  8600. {
  8601. "name": "symfony/var-exporter",
  8602. "version": "v6.4.4",
  8603. "source": {
  8604. "type": "git",
  8605. "url": "https://github.com/symfony/var-exporter.git",
  8606. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b"
  8607. },
  8608. "dist": {
  8609. "type": "zip",
  8610. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8611. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8612. "shasum": ""
  8613. },
  8614. "require": {
  8615. "php": ">=8.1",
  8616. "symfony/deprecation-contracts": "^2.5|^3"
  8617. },
  8618. "require-dev": {
  8619. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8620. },
  8621. "type": "library",
  8622. "autoload": {
  8623. "psr-4": {
  8624. "Symfony\\Component\\VarExporter\\": ""
  8625. },
  8626. "exclude-from-classmap": [
  8627. "/Tests/"
  8628. ]
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "MIT"
  8633. ],
  8634. "authors": [
  8635. {
  8636. "name": "Nicolas Grekas",
  8637. "email": "p@tchwork.com"
  8638. },
  8639. {
  8640. "name": "Symfony Community",
  8641. "homepage": "https://symfony.com/contributors"
  8642. }
  8643. ],
  8644. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8645. "homepage": "https://symfony.com",
  8646. "keywords": [
  8647. "clone",
  8648. "construct",
  8649. "export",
  8650. "hydrate",
  8651. "instantiate",
  8652. "lazy-loading",
  8653. "proxy",
  8654. "serialize"
  8655. ],
  8656. "support": {
  8657. "source": "https://github.com/symfony/var-exporter/tree/v6.4.4"
  8658. },
  8659. "funding": [
  8660. {
  8661. "url": "https://symfony.com/sponsor",
  8662. "type": "custom"
  8663. },
  8664. {
  8665. "url": "https://github.com/fabpot",
  8666. "type": "github"
  8667. },
  8668. {
  8669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8670. "type": "tidelift"
  8671. }
  8672. ],
  8673. "time": "2024-02-26T08:37:45+00:00"
  8674. },
  8675. {
  8676. "name": "symfony/yaml",
  8677. "version": "v6.4.3",
  8678. "source": {
  8679. "type": "git",
  8680. "url": "https://github.com/symfony/yaml.git",
  8681. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
  8682. },
  8683. "dist": {
  8684. "type": "zip",
  8685. "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
  8686. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
  8687. "shasum": ""
  8688. },
  8689. "require": {
  8690. "php": ">=8.1",
  8691. "symfony/deprecation-contracts": "^2.5|^3",
  8692. "symfony/polyfill-ctype": "^1.8"
  8693. },
  8694. "conflict": {
  8695. "symfony/console": "<5.4"
  8696. },
  8697. "require-dev": {
  8698. "symfony/console": "^5.4|^6.0|^7.0"
  8699. },
  8700. "bin": [
  8701. "Resources/bin/yaml-lint"
  8702. ],
  8703. "type": "library",
  8704. "autoload": {
  8705. "psr-4": {
  8706. "Symfony\\Component\\Yaml\\": ""
  8707. },
  8708. "exclude-from-classmap": [
  8709. "/Tests/"
  8710. ]
  8711. },
  8712. "notification-url": "https://packagist.org/downloads/",
  8713. "license": [
  8714. "MIT"
  8715. ],
  8716. "authors": [
  8717. {
  8718. "name": "Fabien Potencier",
  8719. "email": "fabien@symfony.com"
  8720. },
  8721. {
  8722. "name": "Symfony Community",
  8723. "homepage": "https://symfony.com/contributors"
  8724. }
  8725. ],
  8726. "description": "Loads and dumps YAML files",
  8727. "homepage": "https://symfony.com",
  8728. "support": {
  8729. "source": "https://github.com/symfony/yaml/tree/v6.4.3"
  8730. },
  8731. "funding": [
  8732. {
  8733. "url": "https://symfony.com/sponsor",
  8734. "type": "custom"
  8735. },
  8736. {
  8737. "url": "https://github.com/fabpot",
  8738. "type": "github"
  8739. },
  8740. {
  8741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8742. "type": "tidelift"
  8743. }
  8744. ],
  8745. "time": "2024-01-23T14:51:35+00:00"
  8746. },
  8747. {
  8748. "name": "twbs/bootstrap",
  8749. "version": "v4.5.0",
  8750. "source": {
  8751. "type": "git",
  8752. "url": "https://github.com/twbs/bootstrap.git",
  8753. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  8754. },
  8755. "dist": {
  8756. "type": "zip",
  8757. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8758. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8759. "shasum": ""
  8760. },
  8761. "replace": {
  8762. "twitter/bootstrap": "self.version"
  8763. },
  8764. "type": "library",
  8765. "extra": {
  8766. "branch-alias": {
  8767. "dev-master": "3.3.x-dev"
  8768. }
  8769. },
  8770. "notification-url": "https://packagist.org/downloads/",
  8771. "license": [
  8772. "MIT"
  8773. ],
  8774. "authors": [
  8775. {
  8776. "name": "Mark Otto",
  8777. "email": "markdotto@gmail.com"
  8778. },
  8779. {
  8780. "name": "Jacob Thornton",
  8781. "email": "jacobthornton@gmail.com"
  8782. }
  8783. ],
  8784. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  8785. "homepage": "https://getbootstrap.com/",
  8786. "keywords": [
  8787. "JS",
  8788. "css",
  8789. "framework",
  8790. "front-end",
  8791. "mobile-first",
  8792. "responsive",
  8793. "sass",
  8794. "web"
  8795. ],
  8796. "support": {
  8797. "issues": "https://github.com/twbs/bootstrap/issues",
  8798. "source": "https://github.com/twbs/bootstrap/tree/v4-dev"
  8799. },
  8800. "funding": [
  8801. {
  8802. "url": "https://opencollective.com/bootstrap",
  8803. "type": "open_collective"
  8804. }
  8805. ],
  8806. "time": "2020-05-12T17:44:42+00:00"
  8807. },
  8808. {
  8809. "name": "twig/twig",
  8810. "version": "v3.8.0",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/twigphp/Twig.git",
  8814. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8819. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8820. "shasum": ""
  8821. },
  8822. "require": {
  8823. "php": ">=7.2.5",
  8824. "symfony/polyfill-ctype": "^1.8",
  8825. "symfony/polyfill-mbstring": "^1.3",
  8826. "symfony/polyfill-php80": "^1.22"
  8827. },
  8828. "require-dev": {
  8829. "psr/container": "^1.0|^2.0",
  8830. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  8831. },
  8832. "type": "library",
  8833. "autoload": {
  8834. "psr-4": {
  8835. "Twig\\": "src/"
  8836. }
  8837. },
  8838. "notification-url": "https://packagist.org/downloads/",
  8839. "license": [
  8840. "BSD-3-Clause"
  8841. ],
  8842. "authors": [
  8843. {
  8844. "name": "Fabien Potencier",
  8845. "email": "fabien@symfony.com",
  8846. "homepage": "http://fabien.potencier.org",
  8847. "role": "Lead Developer"
  8848. },
  8849. {
  8850. "name": "Twig Team",
  8851. "role": "Contributors"
  8852. },
  8853. {
  8854. "name": "Armin Ronacher",
  8855. "email": "armin.ronacher@active-4.com",
  8856. "role": "Project Founder"
  8857. }
  8858. ],
  8859. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8860. "homepage": "https://twig.symfony.com",
  8861. "keywords": [
  8862. "templating"
  8863. ],
  8864. "support": {
  8865. "issues": "https://github.com/twigphp/Twig/issues",
  8866. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  8867. },
  8868. "funding": [
  8869. {
  8870. "url": "https://github.com/fabpot",
  8871. "type": "github"
  8872. },
  8873. {
  8874. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8875. "type": "tidelift"
  8876. }
  8877. ],
  8878. "time": "2023-11-21T18:54:41+00:00"
  8879. },
  8880. {
  8881. "name": "webflo/drupal-finder",
  8882. "version": "1.2.2",
  8883. "source": {
  8884. "type": "git",
  8885. "url": "https://github.com/webflo/drupal-finder.git",
  8886. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  8887. },
  8888. "dist": {
  8889. "type": "zip",
  8890. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  8891. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  8892. "shasum": ""
  8893. },
  8894. "require": {
  8895. "ext-json": "*"
  8896. },
  8897. "require-dev": {
  8898. "mikey179/vfsstream": "^1.6",
  8899. "phpunit/phpunit": "^4.8"
  8900. },
  8901. "type": "library",
  8902. "autoload": {
  8903. "classmap": [
  8904. "src/DrupalFinder.php"
  8905. ]
  8906. },
  8907. "notification-url": "https://packagist.org/downloads/",
  8908. "license": [
  8909. "GPL-2.0-or-later"
  8910. ],
  8911. "authors": [
  8912. {
  8913. "name": "Florian Weber",
  8914. "email": "florian@webflo.org"
  8915. }
  8916. ],
  8917. "description": "Helper class to locate a Drupal installation from a given path.",
  8918. "support": {
  8919. "issues": "https://github.com/webflo/drupal-finder/issues",
  8920. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  8921. },
  8922. "time": "2020-10-27T09:42:17+00:00"
  8923. }
  8924. ],
  8925. "packages-dev": [],
  8926. "aliases": [],
  8927. "minimum-stability": "dev",
  8928. "stability-flags": {
  8929. "drupal/field_pager": 10
  8930. },
  8931. "prefer-stable": true,
  8932. "prefer-lowest": false,
  8933. "platform": [],
  8934. "platform-dev": [],
  8935. "plugin-api-version": "2.6.0"
  8936. }