composer.lock 362 KB

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