composer.lock 378 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336
  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": "a227b81fa65a8149cb57650099cde6cf",
  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.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "49f4ce174ed83764e3389ddb75c4758772435243"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/49f4ce174ed83764e3389ddb75c4758772435243",
  76. "reference": "49f4ce174ed83764e3389ddb75c4758772435243",
  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. "time": "2020-10-11T16:56:42+00:00"
  112. },
  113. {
  114. "name": "clue/stream-filter",
  115. "version": "v1.7.0",
  116. "source": {
  117. "type": "git",
  118. "url": "https://github.com/clue/stream-filter.git",
  119. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  120. },
  121. "dist": {
  122. "type": "zip",
  123. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  124. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  125. "shasum": ""
  126. },
  127. "require": {
  128. "php": ">=5.3"
  129. },
  130. "require-dev": {
  131. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  132. },
  133. "type": "library",
  134. "autoload": {
  135. "files": [
  136. "src/functions_include.php"
  137. ],
  138. "psr-4": {
  139. "Clue\\StreamFilter\\": "src/"
  140. }
  141. },
  142. "notification-url": "https://packagist.org/downloads/",
  143. "license": [
  144. "MIT"
  145. ],
  146. "authors": [
  147. {
  148. "name": "Christian Lück",
  149. "email": "christian@clue.engineering"
  150. }
  151. ],
  152. "description": "A simple and modern approach to stream filtering in PHP",
  153. "homepage": "https://github.com/clue/stream-filter",
  154. "keywords": [
  155. "bucket brigade",
  156. "callback",
  157. "filter",
  158. "php_user_filter",
  159. "stream",
  160. "stream_filter_append",
  161. "stream_filter_register"
  162. ],
  163. "support": {
  164. "issues": "https://github.com/clue/stream-filter/issues",
  165. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  166. },
  167. "funding": [
  168. {
  169. "url": "https://clue.engineering/support",
  170. "type": "custom"
  171. },
  172. {
  173. "url": "https://github.com/clue",
  174. "type": "github"
  175. }
  176. ],
  177. "time": "2023-12-20T15:40:13+00:00"
  178. },
  179. {
  180. "name": "commerceguys/addressing",
  181. "version": "v1.4.2",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/commerceguys/addressing.git",
  185. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  190. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "doctrine/collections": "^1.2 || ^2.0",
  195. "php": ">=7.3"
  196. },
  197. "require-dev": {
  198. "ext-json": "*",
  199. "mikey179/vfsstream": "^1.6.10",
  200. "phpunit/phpunit": "^9.5",
  201. "squizlabs/php_codesniffer": "^3.6",
  202. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  203. },
  204. "suggest": {
  205. "symfony/validator": "to validate addresses"
  206. },
  207. "type": "library",
  208. "extra": {
  209. "branch-alias": {
  210. "dev-master": "1.x-dev"
  211. }
  212. },
  213. "autoload": {
  214. "psr-4": {
  215. "CommerceGuys\\Addressing\\": "src"
  216. }
  217. },
  218. "notification-url": "https://packagist.org/downloads/",
  219. "license": [
  220. "MIT"
  221. ],
  222. "authors": [
  223. {
  224. "name": "Bojan Zivanovic"
  225. },
  226. {
  227. "name": "Damien Tournoud"
  228. }
  229. ],
  230. "description": "Addressing library powered by CLDR and Google's address data.",
  231. "keywords": [
  232. "address",
  233. "internationalization",
  234. "localization",
  235. "postal"
  236. ],
  237. "support": {
  238. "issues": "https://github.com/commerceguys/addressing/issues",
  239. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  240. },
  241. "time": "2023-02-15T10:11:14+00:00"
  242. },
  243. {
  244. "name": "composer/installers",
  245. "version": "v1.12.0",
  246. "source": {
  247. "type": "git",
  248. "url": "https://github.com/composer/installers.git",
  249. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  250. },
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  254. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  255. "shasum": ""
  256. },
  257. "require": {
  258. "composer-plugin-api": "^1.0 || ^2.0"
  259. },
  260. "replace": {
  261. "roundcube/plugin-installer": "*",
  262. "shama/baton": "*"
  263. },
  264. "require-dev": {
  265. "composer/composer": "1.6.* || ^2.0",
  266. "composer/semver": "^1 || ^3",
  267. "phpstan/phpstan": "^0.12.55",
  268. "phpstan/phpstan-phpunit": "^0.12.16",
  269. "symfony/phpunit-bridge": "^4.2 || ^5",
  270. "symfony/process": "^2.3"
  271. },
  272. "type": "composer-plugin",
  273. "extra": {
  274. "class": "Composer\\Installers\\Plugin",
  275. "branch-alias": {
  276. "dev-main": "1.x-dev"
  277. }
  278. },
  279. "autoload": {
  280. "psr-4": {
  281. "Composer\\Installers\\": "src/Composer/Installers"
  282. }
  283. },
  284. "notification-url": "https://packagist.org/downloads/",
  285. "license": [
  286. "MIT"
  287. ],
  288. "authors": [
  289. {
  290. "name": "Kyle Robinson Young",
  291. "email": "kyle@dontkry.com",
  292. "homepage": "https://github.com/shama"
  293. }
  294. ],
  295. "description": "A multi-framework Composer library installer",
  296. "homepage": "https://composer.github.io/installers/",
  297. "keywords": [
  298. "Craft",
  299. "Dolibarr",
  300. "Eliasis",
  301. "Hurad",
  302. "ImageCMS",
  303. "Kanboard",
  304. "Lan Management System",
  305. "MODX Evo",
  306. "MantisBT",
  307. "Mautic",
  308. "Maya",
  309. "OXID",
  310. "Plentymarkets",
  311. "Porto",
  312. "RadPHP",
  313. "SMF",
  314. "Starbug",
  315. "Thelia",
  316. "Whmcs",
  317. "WolfCMS",
  318. "agl",
  319. "aimeos",
  320. "annotatecms",
  321. "attogram",
  322. "bitrix",
  323. "cakephp",
  324. "chef",
  325. "cockpit",
  326. "codeigniter",
  327. "concrete5",
  328. "croogo",
  329. "dokuwiki",
  330. "drupal",
  331. "eZ Platform",
  332. "elgg",
  333. "expressionengine",
  334. "fuelphp",
  335. "grav",
  336. "installer",
  337. "itop",
  338. "joomla",
  339. "known",
  340. "kohana",
  341. "laravel",
  342. "lavalite",
  343. "lithium",
  344. "magento",
  345. "majima",
  346. "mako",
  347. "mediawiki",
  348. "miaoxing",
  349. "modulework",
  350. "modx",
  351. "moodle",
  352. "osclass",
  353. "pantheon",
  354. "phpbb",
  355. "piwik",
  356. "ppi",
  357. "processwire",
  358. "puppet",
  359. "pxcms",
  360. "reindex",
  361. "roundcube",
  362. "shopware",
  363. "silverstripe",
  364. "sydes",
  365. "sylius",
  366. "symfony",
  367. "tastyigniter",
  368. "typo3",
  369. "wordpress",
  370. "yawik",
  371. "zend",
  372. "zikula"
  373. ],
  374. "support": {
  375. "issues": "https://github.com/composer/installers/issues",
  376. "source": "https://github.com/composer/installers/tree/v1.12.0"
  377. },
  378. "funding": [
  379. {
  380. "url": "https://packagist.com",
  381. "type": "custom"
  382. },
  383. {
  384. "url": "https://github.com/composer",
  385. "type": "github"
  386. },
  387. {
  388. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  389. "type": "tidelift"
  390. }
  391. ],
  392. "time": "2021-09-13T08:19:44+00:00"
  393. },
  394. {
  395. "name": "composer/semver",
  396. "version": "1.5.1",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/composer/semver.git",
  400. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  405. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "php": "^5.3.2 || ^7.0"
  410. },
  411. "require-dev": {
  412. "phpunit/phpunit": "^4.5 || ^5.0.5"
  413. },
  414. "type": "library",
  415. "extra": {
  416. "branch-alias": {
  417. "dev-master": "1.x-dev"
  418. }
  419. },
  420. "autoload": {
  421. "psr-4": {
  422. "Composer\\Semver\\": "src"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "MIT"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Nils Adermann",
  432. "email": "naderman@naderman.de",
  433. "homepage": "http://www.naderman.de"
  434. },
  435. {
  436. "name": "Jordi Boggiano",
  437. "email": "j.boggiano@seld.be",
  438. "homepage": "http://seld.be"
  439. },
  440. {
  441. "name": "Rob Bast",
  442. "email": "rob.bast@gmail.com",
  443. "homepage": "http://robbast.nl"
  444. }
  445. ],
  446. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  447. "keywords": [
  448. "semantic",
  449. "semver",
  450. "validation",
  451. "versioning"
  452. ],
  453. "support": {
  454. "irc": "irc://irc.freenode.org/composer",
  455. "issues": "https://github.com/composer/semver/issues",
  456. "source": "https://github.com/composer/semver/tree/1.5.1"
  457. },
  458. "time": "2020-01-13T12:06:48+00:00"
  459. },
  460. {
  461. "name": "consolidation/annotated-command",
  462. "version": "2.12.1",
  463. "source": {
  464. "type": "git",
  465. "url": "https://github.com/consolidation/annotated-command.git",
  466. "reference": "0ee361762df2274f360c085e3239784a53f850b5"
  467. },
  468. "dist": {
  469. "type": "zip",
  470. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/0ee361762df2274f360c085e3239784a53f850b5",
  471. "reference": "0ee361762df2274f360c085e3239784a53f850b5",
  472. "shasum": ""
  473. },
  474. "require": {
  475. "consolidation/output-formatters": "^3.5.1",
  476. "php": ">=5.4.5",
  477. "psr/log": "^1",
  478. "symfony/console": "^2.8|^3|^4",
  479. "symfony/event-dispatcher": "^2.5|^3|^4",
  480. "symfony/finder": "^2.5|^3|^4|^5"
  481. },
  482. "require-dev": {
  483. "g1a/composer-test-scenarios": "^3",
  484. "php-coveralls/php-coveralls": "^1",
  485. "phpunit/phpunit": "^6",
  486. "squizlabs/php_codesniffer": "^2.7"
  487. },
  488. "type": "library",
  489. "extra": {
  490. "scenarios": {
  491. "finder5": {
  492. "require": {
  493. "symfony/finder": "^5"
  494. },
  495. "config": {
  496. "platform": {
  497. "php": "7.2.5"
  498. }
  499. }
  500. },
  501. "symfony4": {
  502. "require": {
  503. "symfony/console": "^4.0"
  504. },
  505. "config": {
  506. "platform": {
  507. "php": "7.1.3"
  508. }
  509. }
  510. },
  511. "symfony2": {
  512. "require": {
  513. "symfony/console": "^2.8"
  514. },
  515. "require-dev": {
  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. "scenario-options": {
  527. "create-lockfile": "false"
  528. }
  529. },
  530. "phpunit4": {
  531. "require-dev": {
  532. "phpunit/phpunit": "^4.8.36"
  533. },
  534. "remove": [
  535. "php-coveralls/php-coveralls"
  536. ],
  537. "config": {
  538. "platform": {
  539. "php": "5.4.8"
  540. }
  541. }
  542. }
  543. },
  544. "branch-alias": {
  545. "dev-master": "2.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\AnnotatedCommand\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "Initialize Symfony Console commands from annotated command class methods.",
  564. "time": "2020-10-11T04:30:03+00:00"
  565. },
  566. {
  567. "name": "consolidation/config",
  568. "version": "1.2.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/config.git",
  572. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  577. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "dflydev/dot-access-data": "^1.1.0",
  582. "grasmash/expander": "^1",
  583. "php": ">=5.4.0"
  584. },
  585. "require-dev": {
  586. "g1a/composer-test-scenarios": "^3",
  587. "php-coveralls/php-coveralls": "^1",
  588. "phpunit/phpunit": "^5",
  589. "squizlabs/php_codesniffer": "2.*",
  590. "symfony/console": "^2.5|^3|^4",
  591. "symfony/yaml": "^2.8.11|^3|^4"
  592. },
  593. "suggest": {
  594. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  595. },
  596. "type": "library",
  597. "extra": {
  598. "scenarios": {
  599. "symfony4": {
  600. "require-dev": {
  601. "symfony/console": "^4.0"
  602. },
  603. "config": {
  604. "platform": {
  605. "php": "7.1.3"
  606. }
  607. }
  608. },
  609. "symfony2": {
  610. "require-dev": {
  611. "symfony/console": "^2.8",
  612. "symfony/event-dispatcher": "^2.8",
  613. "phpunit/phpunit": "^4.8.36"
  614. },
  615. "remove": [
  616. "php-coveralls/php-coveralls"
  617. ],
  618. "config": {
  619. "platform": {
  620. "php": "5.4.8"
  621. }
  622. }
  623. }
  624. },
  625. "branch-alias": {
  626. "dev-master": "1.x-dev"
  627. }
  628. },
  629. "autoload": {
  630. "psr-4": {
  631. "Consolidation\\Config\\": "src"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Greg Anderson",
  641. "email": "greg.1.anderson@greenknowe.org"
  642. }
  643. ],
  644. "description": "Provide configuration services for a commandline tool.",
  645. "time": "2019-03-03T19:37:04+00:00"
  646. },
  647. {
  648. "name": "consolidation/filter-via-dot-access-data",
  649. "version": "1.0.0",
  650. "source": {
  651. "type": "git",
  652. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  653. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  654. },
  655. "dist": {
  656. "type": "zip",
  657. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  658. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  659. "shasum": ""
  660. },
  661. "require": {
  662. "dflydev/dot-access-data": "^1.1.0",
  663. "php": ">=5.5.0"
  664. },
  665. "require-dev": {
  666. "consolidation/robo": "^1.2.3",
  667. "g1a/composer-test-scenarios": "^3",
  668. "knplabs/github-api": "^2.7",
  669. "php-coveralls/php-coveralls": "^1",
  670. "php-http/guzzle6-adapter": "^1.1",
  671. "phpunit/phpunit": "^5",
  672. "squizlabs/php_codesniffer": "^2.8",
  673. "symfony/console": "^2.8|^3|^4"
  674. },
  675. "type": "library",
  676. "extra": {
  677. "scenarios": {
  678. "phpunit5": {
  679. "require-dev": {
  680. "phpunit/phpunit": "^5.7.27"
  681. },
  682. "remove": [
  683. "php-coveralls/php-coveralls"
  684. ],
  685. "config": {
  686. "platform": {
  687. "php": "5.6.33"
  688. }
  689. }
  690. }
  691. },
  692. "branch-alias": {
  693. "dev-master": "1.x-dev"
  694. }
  695. },
  696. "autoload": {
  697. "psr-4": {
  698. "Consolidation\\Filter\\": "src"
  699. }
  700. },
  701. "notification-url": "https://packagist.org/downloads/",
  702. "license": [
  703. "MIT"
  704. ],
  705. "authors": [
  706. {
  707. "name": "Greg Anderson",
  708. "email": "greg.1.anderson@greenknowe.org"
  709. }
  710. ],
  711. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  712. "time": "2019-01-18T06:05:07+00:00"
  713. },
  714. {
  715. "name": "consolidation/log",
  716. "version": "1.1.1",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/consolidation/log.git",
  720. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  725. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "php": ">=5.4.5",
  730. "psr/log": "^1.0",
  731. "symfony/console": "^2.8|^3|^4"
  732. },
  733. "require-dev": {
  734. "g1a/composer-test-scenarios": "^3",
  735. "php-coveralls/php-coveralls": "^1",
  736. "phpunit/phpunit": "^6",
  737. "squizlabs/php_codesniffer": "^2"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "scenarios": {
  742. "symfony4": {
  743. "require": {
  744. "symfony/console": "^4.0"
  745. },
  746. "config": {
  747. "platform": {
  748. "php": "7.1.3"
  749. }
  750. }
  751. },
  752. "symfony2": {
  753. "require": {
  754. "symfony/console": "^2.8"
  755. },
  756. "require-dev": {
  757. "phpunit/phpunit": "^4.8.36"
  758. },
  759. "remove": [
  760. "php-coveralls/php-coveralls"
  761. ],
  762. "config": {
  763. "platform": {
  764. "php": "5.4.8"
  765. }
  766. }
  767. },
  768. "phpunit4": {
  769. "require-dev": {
  770. "phpunit/phpunit": "^4.8.36"
  771. },
  772. "remove": [
  773. "php-coveralls/php-coveralls"
  774. ],
  775. "config": {
  776. "platform": {
  777. "php": "5.4.8"
  778. }
  779. }
  780. }
  781. },
  782. "branch-alias": {
  783. "dev-master": "1.x-dev"
  784. }
  785. },
  786. "autoload": {
  787. "psr-4": {
  788. "Consolidation\\Log\\": "src"
  789. }
  790. },
  791. "notification-url": "https://packagist.org/downloads/",
  792. "license": [
  793. "MIT"
  794. ],
  795. "authors": [
  796. {
  797. "name": "Greg Anderson",
  798. "email": "greg.1.anderson@greenknowe.org"
  799. }
  800. ],
  801. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  802. "time": "2019-01-01T17:30:51+00:00"
  803. },
  804. {
  805. "name": "consolidation/output-formatters",
  806. "version": "3.5.1",
  807. "source": {
  808. "type": "git",
  809. "url": "https://github.com/consolidation/output-formatters.git",
  810. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196"
  811. },
  812. "dist": {
  813. "type": "zip",
  814. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196",
  815. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196",
  816. "shasum": ""
  817. },
  818. "require": {
  819. "dflydev/dot-access-data": "^1.1.0",
  820. "php": ">=5.4.0",
  821. "symfony/console": "^2.8|^3|^4",
  822. "symfony/finder": "^2.5|^3|^4|^5"
  823. },
  824. "require-dev": {
  825. "g1a/composer-test-scenarios": "^3",
  826. "php-coveralls/php-coveralls": "^1",
  827. "phpunit/phpunit": "^5.7.27",
  828. "squizlabs/php_codesniffer": "^2.7",
  829. "symfony/var-dumper": "^2.8|^3|^4",
  830. "victorjonsson/markdowndocs": "^1.3"
  831. },
  832. "suggest": {
  833. "symfony/var-dumper": "For using the var_dump formatter"
  834. },
  835. "type": "library",
  836. "extra": {
  837. "scenarios": {
  838. "finder5": {
  839. "require": {
  840. "symfony/finder": "^5"
  841. },
  842. "config": {
  843. "platform": {
  844. "php": "7.2.5"
  845. }
  846. }
  847. },
  848. "symfony4": {
  849. "require": {
  850. "symfony/console": "^4.0"
  851. },
  852. "require-dev": {
  853. "phpunit/phpunit": "^6"
  854. },
  855. "config": {
  856. "platform": {
  857. "php": "7.1.3"
  858. }
  859. }
  860. },
  861. "symfony3": {
  862. "require": {
  863. "symfony/console": "^3.4",
  864. "symfony/finder": "^3.4",
  865. "symfony/var-dumper": "^3.4"
  866. },
  867. "config": {
  868. "platform": {
  869. "php": "5.6.32"
  870. }
  871. }
  872. },
  873. "symfony2": {
  874. "require": {
  875. "symfony/console": "^2.8"
  876. },
  877. "require-dev": {
  878. "phpunit/phpunit": "^4.8.36"
  879. },
  880. "remove": [
  881. "php-coveralls/php-coveralls"
  882. ],
  883. "config": {
  884. "platform": {
  885. "php": "5.4.8"
  886. }
  887. },
  888. "scenario-options": {
  889. "create-lockfile": "false"
  890. }
  891. }
  892. },
  893. "branch-alias": {
  894. "dev-master": "3.x-dev"
  895. }
  896. },
  897. "autoload": {
  898. "psr-4": {
  899. "Consolidation\\OutputFormatters\\": "src"
  900. }
  901. },
  902. "notification-url": "https://packagist.org/downloads/",
  903. "license": [
  904. "MIT"
  905. ],
  906. "authors": [
  907. {
  908. "name": "Greg Anderson",
  909. "email": "greg.1.anderson@greenknowe.org"
  910. }
  911. ],
  912. "description": "Format text by applying transformations provided by plug-in formatters.",
  913. "time": "2020-10-11T04:15:32+00:00"
  914. },
  915. {
  916. "name": "consolidation/robo",
  917. "version": "1.4.13",
  918. "source": {
  919. "type": "git",
  920. "url": "https://github.com/consolidation/Robo.git",
  921. "reference": "fd28dcca1b935950ece26e63541fbdeeb09f7343"
  922. },
  923. "dist": {
  924. "type": "zip",
  925. "url": "https://api.github.com/repos/consolidation/Robo/zipball/fd28dcca1b935950ece26e63541fbdeeb09f7343",
  926. "reference": "fd28dcca1b935950ece26e63541fbdeeb09f7343",
  927. "shasum": ""
  928. },
  929. "require": {
  930. "consolidation/annotated-command": "^2.12.1|^4.1",
  931. "consolidation/config": "^1.2.1",
  932. "consolidation/log": "^1.1.1|^2",
  933. "consolidation/output-formatters": "^3.5.1|^4.1",
  934. "consolidation/self-update": "^1.1.5",
  935. "grasmash/yaml-expander": "^1.4",
  936. "league/container": "^2.4.1",
  937. "php": ">=5.5.0",
  938. "symfony/console": "^2.8|^3|^4",
  939. "symfony/event-dispatcher": "^2.5|^3|^4",
  940. "symfony/filesystem": "^2.5|^3|^4",
  941. "symfony/finder": "^2.5|^3|^4|^5",
  942. "symfony/process": "^2.5|^3|^4"
  943. },
  944. "replace": {
  945. "codegyre/robo": "< 1.0"
  946. },
  947. "require-dev": {
  948. "g1a/composer-test-scenarios": "^3",
  949. "natxet/cssmin": "3.0.4",
  950. "patchwork/jsqueeze": "^2",
  951. "pear/archive_tar": "^1.4.4",
  952. "php-coveralls/php-coveralls": "^1",
  953. "phpunit/phpunit": "^5.7.27",
  954. "squizlabs/php_codesniffer": "^3"
  955. },
  956. "suggest": {
  957. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  958. "natxet/CssMin": "For minifying CSS files in taskMinify",
  959. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  960. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  961. },
  962. "bin": [
  963. "robo"
  964. ],
  965. "type": "library",
  966. "extra": {
  967. "scenarios": {
  968. "finder5": {
  969. "require": {
  970. "symfony/finder": "^5"
  971. },
  972. "config": {
  973. "platform": {
  974. "php": "7.2.5"
  975. }
  976. }
  977. },
  978. "symfony4": {
  979. "require": {
  980. "symfony/console": "^4"
  981. },
  982. "config": {
  983. "platform": {
  984. "php": "7.1.3"
  985. }
  986. }
  987. },
  988. "symfony2": {
  989. "require": {
  990. "symfony/console": "^2.8"
  991. },
  992. "require-dev": {
  993. "phpunit/phpunit": "^4.8.36"
  994. },
  995. "remove": [
  996. "php-coveralls/php-coveralls"
  997. ],
  998. "config": {
  999. "platform": {
  1000. "php": "5.5.9"
  1001. }
  1002. },
  1003. "scenario-options": {
  1004. "create-lockfile": "false"
  1005. }
  1006. }
  1007. },
  1008. "branch-alias": {
  1009. "dev-master": "1.x-dev"
  1010. }
  1011. },
  1012. "autoload": {
  1013. "psr-4": {
  1014. "Robo\\": "src"
  1015. }
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "MIT"
  1020. ],
  1021. "authors": [
  1022. {
  1023. "name": "Davert",
  1024. "email": "davert.php@resend.cc"
  1025. }
  1026. ],
  1027. "description": "Modern task runner",
  1028. "time": "2020-10-11T04:51:34+00:00"
  1029. },
  1030. {
  1031. "name": "consolidation/self-update",
  1032. "version": "1.2.0",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/consolidation/self-update.git",
  1036. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  1041. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "php": ">=5.5.0",
  1046. "symfony/console": "^2.8|^3|^4|^5",
  1047. "symfony/filesystem": "^2.5|^3|^4|^5"
  1048. },
  1049. "bin": [
  1050. "scripts/release"
  1051. ],
  1052. "type": "library",
  1053. "extra": {
  1054. "branch-alias": {
  1055. "dev-master": "1.x-dev"
  1056. }
  1057. },
  1058. "autoload": {
  1059. "psr-4": {
  1060. "SelfUpdate\\": "src"
  1061. }
  1062. },
  1063. "notification-url": "https://packagist.org/downloads/",
  1064. "license": [
  1065. "MIT"
  1066. ],
  1067. "authors": [
  1068. {
  1069. "name": "Alexander Menk",
  1070. "email": "menk@mestrona.net"
  1071. },
  1072. {
  1073. "name": "Greg Anderson",
  1074. "email": "greg.1.anderson@greenknowe.org"
  1075. }
  1076. ],
  1077. "description": "Provides a self:update command for Symfony Console applications.",
  1078. "time": "2020-04-13T02:49:20+00:00"
  1079. },
  1080. {
  1081. "name": "consolidation/site-alias",
  1082. "version": "3.0.1",
  1083. "source": {
  1084. "type": "git",
  1085. "url": "https://github.com/consolidation/site-alias.git",
  1086. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  1087. },
  1088. "dist": {
  1089. "type": "zip",
  1090. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  1091. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  1092. "shasum": ""
  1093. },
  1094. "require": {
  1095. "consolidation/config": "^1.2.1|^2",
  1096. "php": ">=5.5.0"
  1097. },
  1098. "require-dev": {
  1099. "consolidation/robo": "^1.2.3|^2",
  1100. "g1a/composer-test-scenarios": "^3",
  1101. "knplabs/github-api": "^2.7",
  1102. "php-coveralls/php-coveralls": "^2.2",
  1103. "php-http/guzzle6-adapter": "^1.1",
  1104. "phpunit/phpunit": "^6",
  1105. "squizlabs/php_codesniffer": "^2.8",
  1106. "symfony/yaml": "~2.3|^3|^4.4|^5"
  1107. },
  1108. "type": "library",
  1109. "extra": {
  1110. "scenarios": {
  1111. "phpunit5": {
  1112. "require-dev": {
  1113. "phpunit/phpunit": "^5.7.27"
  1114. },
  1115. "remove": [
  1116. "php-coveralls/php-coveralls"
  1117. ],
  1118. "config": {
  1119. "platform": {
  1120. "php": "5.6.33"
  1121. }
  1122. }
  1123. }
  1124. },
  1125. "branch-alias": {
  1126. "dev-master": "3.x-dev"
  1127. }
  1128. },
  1129. "autoload": {
  1130. "psr-4": {
  1131. "Consolidation\\SiteAlias\\": "src"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Greg Anderson",
  1141. "email": "greg.1.anderson@greenknowe.org"
  1142. },
  1143. {
  1144. "name": "Moshe Weitzman",
  1145. "email": "weitzman@tejasa.com"
  1146. }
  1147. ],
  1148. "description": "Manage alias records for local and remote sites.",
  1149. "time": "2020-05-28T00:33:41+00:00"
  1150. },
  1151. {
  1152. "name": "consolidation/site-process",
  1153. "version": "2.1.0",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/consolidation/site-process.git",
  1157. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1162. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1163. "shasum": ""
  1164. },
  1165. "require": {
  1166. "consolidation/config": "^1.2.1",
  1167. "consolidation/site-alias": "^3",
  1168. "php": ">=5.6.0",
  1169. "symfony/process": "^3.4"
  1170. },
  1171. "require-dev": {
  1172. "consolidation/robo": "^1.3",
  1173. "g1a/composer-test-scenarios": "^3",
  1174. "knplabs/github-api": "^2.7",
  1175. "php-coveralls/php-coveralls": "^1",
  1176. "php-http/guzzle6-adapter": "^1.1",
  1177. "phpunit/phpunit": "^6",
  1178. "squizlabs/php_codesniffer": "^2.8"
  1179. },
  1180. "type": "library",
  1181. "extra": {
  1182. "scenarios": {
  1183. "phpunit5": {
  1184. "require-dev": {
  1185. "phpunit/phpunit": "^5.7.27"
  1186. },
  1187. "remove": [
  1188. "php-coveralls/php-coveralls"
  1189. ],
  1190. "config": {
  1191. "platform": {
  1192. "php": "5.6.33"
  1193. }
  1194. }
  1195. }
  1196. },
  1197. "branch-alias": {
  1198. "dev-master": "0.x-dev"
  1199. }
  1200. },
  1201. "autoload": {
  1202. "psr-4": {
  1203. "Consolidation\\SiteProcess\\": "src"
  1204. }
  1205. },
  1206. "notification-url": "https://packagist.org/downloads/",
  1207. "license": [
  1208. "MIT"
  1209. ],
  1210. "authors": [
  1211. {
  1212. "name": "Greg Anderson",
  1213. "email": "greg.1.anderson@greenknowe.org"
  1214. },
  1215. {
  1216. "name": "Moshe Weitzman",
  1217. "email": "weitzman@tejasa.com"
  1218. }
  1219. ],
  1220. "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.",
  1221. "time": "2019-09-10T17:56:24+00:00"
  1222. },
  1223. {
  1224. "name": "container-interop/container-interop",
  1225. "version": "1.2.0",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/container-interop/container-interop.git",
  1229. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1234. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "psr/container": "^1.0"
  1239. },
  1240. "type": "library",
  1241. "autoload": {
  1242. "psr-4": {
  1243. "Interop\\Container\\": "src/Interop/Container/"
  1244. }
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "MIT"
  1249. ],
  1250. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1251. "homepage": "https://github.com/container-interop/container-interop",
  1252. "support": {
  1253. "issues": "https://github.com/container-interop/container-interop/issues",
  1254. "source": "https://github.com/container-interop/container-interop/tree/master"
  1255. },
  1256. "abandoned": "psr/container",
  1257. "time": "2017-02-14T19:40:03+00:00"
  1258. },
  1259. {
  1260. "name": "cweagans/composer-patches",
  1261. "version": "1.7.3",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/cweagans/composer-patches.git",
  1265. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1270. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "composer-plugin-api": "^1.0 || ^2.0",
  1275. "php": ">=5.3.0"
  1276. },
  1277. "require-dev": {
  1278. "composer/composer": "~1.0 || ~2.0",
  1279. "phpunit/phpunit": "~4.6"
  1280. },
  1281. "type": "composer-plugin",
  1282. "extra": {
  1283. "class": "cweagans\\Composer\\Patches"
  1284. },
  1285. "autoload": {
  1286. "psr-4": {
  1287. "cweagans\\Composer\\": "src"
  1288. }
  1289. },
  1290. "notification-url": "https://packagist.org/downloads/",
  1291. "license": [
  1292. "BSD-3-Clause"
  1293. ],
  1294. "authors": [
  1295. {
  1296. "name": "Cameron Eagans",
  1297. "email": "me@cweagans.net"
  1298. }
  1299. ],
  1300. "description": "Provides a way to patch Composer packages.",
  1301. "support": {
  1302. "issues": "https://github.com/cweagans/composer-patches/issues",
  1303. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1304. },
  1305. "time": "2022-12-20T22:53:13+00:00"
  1306. },
  1307. {
  1308. "name": "davedevelopment/stiphle",
  1309. "version": "0.9.4",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/davedevelopment/stiphle.git",
  1313. "reference": "5d1c244f0525d265e231a65db538b74eb5483768"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768",
  1318. "reference": "5d1c244f0525d265e231a65db538b74eb5483768",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "php": "^5.6.0|^7.0|^8.0"
  1323. },
  1324. "require-dev": {
  1325. "doctrine/cache": "^1.0",
  1326. "phpunit/phpunit": "^6.5|^7.5|^8.4",
  1327. "predis/predis": "^1.1",
  1328. "zendframework/zend-cache": "^2.8"
  1329. },
  1330. "suggest": {
  1331. "doctrine/cache": "~1.0",
  1332. "predis/predis": "~1.1",
  1333. "zendframework/zend-cache": "^2.8"
  1334. },
  1335. "type": "library",
  1336. "autoload": {
  1337. "psr-0": {
  1338. "Stiphle": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "authors": [
  1346. {
  1347. "name": "Dave Marshall",
  1348. "email": "dave.marshall@atstsolutions.co.uk",
  1349. "homepage": "http://davedevelopment.co.uk"
  1350. }
  1351. ],
  1352. "description": "Simple rate limiting/throttling for php",
  1353. "homepage": "http://github.com/davedevelopment/stiphle",
  1354. "keywords": [
  1355. "rate limit",
  1356. "rate limiting",
  1357. "throttle",
  1358. "throttling"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/davedevelopment/stiphle/issues",
  1362. "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4"
  1363. },
  1364. "time": "2022-11-25T16:30:20+00:00"
  1365. },
  1366. {
  1367. "name": "dflydev/dot-access-data",
  1368. "version": "v1.1.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1372. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1377. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "php": ">=5.3.2"
  1382. },
  1383. "type": "library",
  1384. "extra": {
  1385. "branch-alias": {
  1386. "dev-master": "1.0-dev"
  1387. }
  1388. },
  1389. "autoload": {
  1390. "psr-0": {
  1391. "Dflydev\\DotAccessData": "src"
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "authors": [
  1399. {
  1400. "name": "Dragonfly Development Inc.",
  1401. "email": "info@dflydev.com",
  1402. "homepage": "http://dflydev.com"
  1403. },
  1404. {
  1405. "name": "Beau Simensen",
  1406. "email": "beau@dflydev.com",
  1407. "homepage": "http://beausimensen.com"
  1408. },
  1409. {
  1410. "name": "Carlos Frutos",
  1411. "email": "carlos@kiwing.it",
  1412. "homepage": "https://github.com/cfrutos"
  1413. }
  1414. ],
  1415. "description": "Given a deep data structure, access data by dot notation.",
  1416. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1417. "keywords": [
  1418. "access",
  1419. "data",
  1420. "dot",
  1421. "notation"
  1422. ],
  1423. "time": "2017-01-20T21:14:22+00:00"
  1424. },
  1425. {
  1426. "name": "dnoegel/php-xdg-base-dir",
  1427. "version": "v0.1.1",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1431. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1436. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "php": ">=5.3.2"
  1441. },
  1442. "require-dev": {
  1443. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1444. },
  1445. "type": "library",
  1446. "autoload": {
  1447. "psr-4": {
  1448. "XdgBaseDir\\": "src/"
  1449. }
  1450. },
  1451. "notification-url": "https://packagist.org/downloads/",
  1452. "license": [
  1453. "MIT"
  1454. ],
  1455. "description": "implementation of xdg base directory specification for php",
  1456. "time": "2019-12-04T15:06:13+00:00"
  1457. },
  1458. {
  1459. "name": "doctrine/annotations",
  1460. "version": "v1.4.0",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/doctrine/annotations.git",
  1464. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1469. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "doctrine/lexer": "1.*",
  1474. "php": "^5.6 || ^7.0"
  1475. },
  1476. "require-dev": {
  1477. "doctrine/cache": "1.*",
  1478. "phpunit/phpunit": "^5.7"
  1479. },
  1480. "type": "library",
  1481. "extra": {
  1482. "branch-alias": {
  1483. "dev-master": "1.4.x-dev"
  1484. }
  1485. },
  1486. "autoload": {
  1487. "psr-4": {
  1488. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1489. }
  1490. },
  1491. "notification-url": "https://packagist.org/downloads/",
  1492. "license": [
  1493. "MIT"
  1494. ],
  1495. "authors": [
  1496. {
  1497. "name": "Roman Borschel",
  1498. "email": "roman@code-factory.org"
  1499. },
  1500. {
  1501. "name": "Benjamin Eberlei",
  1502. "email": "kontakt@beberlei.de"
  1503. },
  1504. {
  1505. "name": "Guilherme Blanco",
  1506. "email": "guilhermeblanco@gmail.com"
  1507. },
  1508. {
  1509. "name": "Jonathan Wage",
  1510. "email": "jonwage@gmail.com"
  1511. },
  1512. {
  1513. "name": "Johannes Schmitt",
  1514. "email": "schmittjoh@gmail.com"
  1515. }
  1516. ],
  1517. "description": "Docblock Annotations Parser",
  1518. "homepage": "http://www.doctrine-project.org",
  1519. "keywords": [
  1520. "annotations",
  1521. "docblock",
  1522. "parser"
  1523. ],
  1524. "support": {
  1525. "issues": "https://github.com/doctrine/annotations/issues",
  1526. "source": "https://github.com/doctrine/annotations/tree/v1.4.0"
  1527. },
  1528. "time": "2017-02-24T16:22:25+00:00"
  1529. },
  1530. {
  1531. "name": "doctrine/cache",
  1532. "version": "v1.6.2",
  1533. "source": {
  1534. "type": "git",
  1535. "url": "https://github.com/doctrine/cache.git",
  1536. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1537. },
  1538. "dist": {
  1539. "type": "zip",
  1540. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1541. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1542. "shasum": ""
  1543. },
  1544. "require": {
  1545. "php": "~5.5|~7.0"
  1546. },
  1547. "conflict": {
  1548. "doctrine/common": ">2.2,<2.4"
  1549. },
  1550. "require-dev": {
  1551. "phpunit/phpunit": "~4.8|~5.0",
  1552. "predis/predis": "~1.0",
  1553. "satooshi/php-coveralls": "~0.6"
  1554. },
  1555. "type": "library",
  1556. "extra": {
  1557. "branch-alias": {
  1558. "dev-master": "1.6.x-dev"
  1559. }
  1560. },
  1561. "autoload": {
  1562. "psr-4": {
  1563. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1564. }
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Roman Borschel",
  1573. "email": "roman@code-factory.org"
  1574. },
  1575. {
  1576. "name": "Benjamin Eberlei",
  1577. "email": "kontakt@beberlei.de"
  1578. },
  1579. {
  1580. "name": "Guilherme Blanco",
  1581. "email": "guilhermeblanco@gmail.com"
  1582. },
  1583. {
  1584. "name": "Jonathan Wage",
  1585. "email": "jonwage@gmail.com"
  1586. },
  1587. {
  1588. "name": "Johannes Schmitt",
  1589. "email": "schmittjoh@gmail.com"
  1590. }
  1591. ],
  1592. "description": "Caching library offering an object-oriented API for many cache backends",
  1593. "homepage": "http://www.doctrine-project.org",
  1594. "keywords": [
  1595. "cache",
  1596. "caching"
  1597. ],
  1598. "support": {
  1599. "issues": "https://github.com/doctrine/cache/issues",
  1600. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  1601. },
  1602. "time": "2017-07-22T12:49:21+00:00"
  1603. },
  1604. {
  1605. "name": "doctrine/collections",
  1606. "version": "v1.4.0",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/doctrine/collections.git",
  1610. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1615. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1616. "shasum": ""
  1617. },
  1618. "require": {
  1619. "php": "^5.6 || ^7.0"
  1620. },
  1621. "require-dev": {
  1622. "doctrine/coding-standard": "~0.1@dev",
  1623. "phpunit/phpunit": "^5.7"
  1624. },
  1625. "type": "library",
  1626. "extra": {
  1627. "branch-alias": {
  1628. "dev-master": "1.3.x-dev"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-0": {
  1633. "Doctrine\\Common\\Collections\\": "lib/"
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "MIT"
  1639. ],
  1640. "authors": [
  1641. {
  1642. "name": "Roman Borschel",
  1643. "email": "roman@code-factory.org"
  1644. },
  1645. {
  1646. "name": "Benjamin Eberlei",
  1647. "email": "kontakt@beberlei.de"
  1648. },
  1649. {
  1650. "name": "Guilherme Blanco",
  1651. "email": "guilhermeblanco@gmail.com"
  1652. },
  1653. {
  1654. "name": "Jonathan Wage",
  1655. "email": "jonwage@gmail.com"
  1656. },
  1657. {
  1658. "name": "Johannes Schmitt",
  1659. "email": "schmittjoh@gmail.com"
  1660. }
  1661. ],
  1662. "description": "Collections Abstraction library",
  1663. "homepage": "http://www.doctrine-project.org",
  1664. "keywords": [
  1665. "array",
  1666. "collections",
  1667. "iterator"
  1668. ],
  1669. "support": {
  1670. "issues": "https://github.com/doctrine/collections/issues",
  1671. "source": "https://github.com/doctrine/collections/tree/master"
  1672. },
  1673. "time": "2017-01-03T10:49:41+00:00"
  1674. },
  1675. {
  1676. "name": "doctrine/common",
  1677. "version": "v2.7.3",
  1678. "source": {
  1679. "type": "git",
  1680. "url": "https://github.com/doctrine/common.git",
  1681. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1682. },
  1683. "dist": {
  1684. "type": "zip",
  1685. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1686. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1687. "shasum": ""
  1688. },
  1689. "require": {
  1690. "doctrine/annotations": "1.*",
  1691. "doctrine/cache": "1.*",
  1692. "doctrine/collections": "1.*",
  1693. "doctrine/inflector": "1.*",
  1694. "doctrine/lexer": "1.*",
  1695. "php": "~5.6|~7.0"
  1696. },
  1697. "require-dev": {
  1698. "phpunit/phpunit": "^5.4.6"
  1699. },
  1700. "type": "library",
  1701. "extra": {
  1702. "branch-alias": {
  1703. "dev-master": "2.7.x-dev"
  1704. }
  1705. },
  1706. "autoload": {
  1707. "psr-4": {
  1708. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1709. }
  1710. },
  1711. "notification-url": "https://packagist.org/downloads/",
  1712. "license": [
  1713. "MIT"
  1714. ],
  1715. "authors": [
  1716. {
  1717. "name": "Roman Borschel",
  1718. "email": "roman@code-factory.org"
  1719. },
  1720. {
  1721. "name": "Benjamin Eberlei",
  1722. "email": "kontakt@beberlei.de"
  1723. },
  1724. {
  1725. "name": "Guilherme Blanco",
  1726. "email": "guilhermeblanco@gmail.com"
  1727. },
  1728. {
  1729. "name": "Jonathan Wage",
  1730. "email": "jonwage@gmail.com"
  1731. },
  1732. {
  1733. "name": "Johannes Schmitt",
  1734. "email": "schmittjoh@gmail.com"
  1735. }
  1736. ],
  1737. "description": "Common Library for Doctrine projects",
  1738. "homepage": "http://www.doctrine-project.org",
  1739. "keywords": [
  1740. "annotations",
  1741. "collections",
  1742. "eventmanager",
  1743. "persistence",
  1744. "spl"
  1745. ],
  1746. "support": {
  1747. "issues": "https://github.com/doctrine/common/issues",
  1748. "source": "https://github.com/doctrine/common/tree/v2.7.3"
  1749. },
  1750. "time": "2017-07-22T08:35:12+00:00"
  1751. },
  1752. {
  1753. "name": "doctrine/inflector",
  1754. "version": "v1.2.0",
  1755. "source": {
  1756. "type": "git",
  1757. "url": "https://github.com/doctrine/inflector.git",
  1758. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1759. },
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1763. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1764. "shasum": ""
  1765. },
  1766. "require": {
  1767. "php": "^7.0"
  1768. },
  1769. "require-dev": {
  1770. "phpunit/phpunit": "^6.2"
  1771. },
  1772. "type": "library",
  1773. "extra": {
  1774. "branch-alias": {
  1775. "dev-master": "1.2.x-dev"
  1776. }
  1777. },
  1778. "autoload": {
  1779. "psr-4": {
  1780. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1781. }
  1782. },
  1783. "notification-url": "https://packagist.org/downloads/",
  1784. "license": [
  1785. "MIT"
  1786. ],
  1787. "authors": [
  1788. {
  1789. "name": "Roman Borschel",
  1790. "email": "roman@code-factory.org"
  1791. },
  1792. {
  1793. "name": "Benjamin Eberlei",
  1794. "email": "kontakt@beberlei.de"
  1795. },
  1796. {
  1797. "name": "Guilherme Blanco",
  1798. "email": "guilhermeblanco@gmail.com"
  1799. },
  1800. {
  1801. "name": "Jonathan Wage",
  1802. "email": "jonwage@gmail.com"
  1803. },
  1804. {
  1805. "name": "Johannes Schmitt",
  1806. "email": "schmittjoh@gmail.com"
  1807. }
  1808. ],
  1809. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1810. "homepage": "http://www.doctrine-project.org",
  1811. "keywords": [
  1812. "inflection",
  1813. "pluralize",
  1814. "singularize",
  1815. "string"
  1816. ],
  1817. "support": {
  1818. "source": "https://github.com/doctrine/inflector/tree/master"
  1819. },
  1820. "time": "2017-07-22T12:18:28+00:00"
  1821. },
  1822. {
  1823. "name": "doctrine/lexer",
  1824. "version": "1.0.2",
  1825. "source": {
  1826. "type": "git",
  1827. "url": "https://github.com/doctrine/lexer.git",
  1828. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1829. },
  1830. "dist": {
  1831. "type": "zip",
  1832. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1833. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1834. "shasum": ""
  1835. },
  1836. "require": {
  1837. "php": ">=5.3.2"
  1838. },
  1839. "require-dev": {
  1840. "phpunit/phpunit": "^4.5"
  1841. },
  1842. "type": "library",
  1843. "extra": {
  1844. "branch-alias": {
  1845. "dev-master": "1.0.x-dev"
  1846. }
  1847. },
  1848. "autoload": {
  1849. "psr-4": {
  1850. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1851. }
  1852. },
  1853. "notification-url": "https://packagist.org/downloads/",
  1854. "license": [
  1855. "MIT"
  1856. ],
  1857. "authors": [
  1858. {
  1859. "name": "Roman Borschel",
  1860. "email": "roman@code-factory.org"
  1861. },
  1862. {
  1863. "name": "Guilherme Blanco",
  1864. "email": "guilhermeblanco@gmail.com"
  1865. },
  1866. {
  1867. "name": "Johannes Schmitt",
  1868. "email": "schmittjoh@gmail.com"
  1869. }
  1870. ],
  1871. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1872. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1873. "keywords": [
  1874. "annotations",
  1875. "docblock",
  1876. "lexer",
  1877. "parser",
  1878. "php"
  1879. ],
  1880. "support": {
  1881. "issues": "https://github.com/doctrine/lexer/issues",
  1882. "source": "https://github.com/doctrine/lexer/tree/1.0.2"
  1883. },
  1884. "time": "2019-06-08T11:03:04+00:00"
  1885. },
  1886. {
  1887. "name": "drupal/address",
  1888. "version": "1.9.0",
  1889. "source": {
  1890. "type": "git",
  1891. "url": "https://git.drupalcode.org/project/address.git",
  1892. "reference": "8.x-1.9"
  1893. },
  1894. "dist": {
  1895. "type": "zip",
  1896. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  1897. "reference": "8.x-1.9",
  1898. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  1899. },
  1900. "require": {
  1901. "commerceguys/addressing": "^1.0.7",
  1902. "drupal/core": "^8.8 || ^9"
  1903. },
  1904. "require-dev": {
  1905. "drupal/token": "^1.0"
  1906. },
  1907. "type": "drupal-module",
  1908. "extra": {
  1909. "drupal": {
  1910. "version": "8.x-1.9",
  1911. "datestamp": "1604422821",
  1912. "security-coverage": {
  1913. "status": "covered",
  1914. "message": "Covered by Drupal's security advisory policy"
  1915. }
  1916. }
  1917. },
  1918. "notification-url": "https://packages.drupal.org/8/downloads",
  1919. "license": [
  1920. "GPL-2.0-or-later"
  1921. ],
  1922. "authors": [
  1923. {
  1924. "name": "bojanz",
  1925. "homepage": "https://www.drupal.org/user/86106"
  1926. },
  1927. {
  1928. "name": "Centarro",
  1929. "homepage": "https://www.drupal.org/user/3661446"
  1930. },
  1931. {
  1932. "name": "dww",
  1933. "homepage": "https://www.drupal.org/user/46549"
  1934. },
  1935. {
  1936. "name": "jsacksick",
  1937. "homepage": "https://www.drupal.org/user/972218"
  1938. },
  1939. {
  1940. "name": "rszrama",
  1941. "homepage": "https://www.drupal.org/user/49344"
  1942. }
  1943. ],
  1944. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1945. "homepage": "http://drupal.org/project/address",
  1946. "support": {
  1947. "source": "https://git.drupalcode.org/project/address"
  1948. }
  1949. },
  1950. {
  1951. "name": "drupal/address_map_link",
  1952. "version": "1.2.0",
  1953. "source": {
  1954. "type": "git",
  1955. "url": "https://git.drupalcode.org/project/address_map_link.git",
  1956. "reference": "8.x-1.2"
  1957. },
  1958. "dist": {
  1959. "type": "zip",
  1960. "url": "https://ftp.drupal.org/files/projects/address_map_link-8.x-1.2.zip",
  1961. "reference": "8.x-1.2",
  1962. "shasum": "788bc567b14537d83f871d51b707fd97e3f88cd1"
  1963. },
  1964. "require": {
  1965. "drupal/address": "^1.0",
  1966. "drupal/core": "^8 || ^9"
  1967. },
  1968. "type": "drupal-module",
  1969. "extra": {
  1970. "drupal": {
  1971. "version": "8.x-1.2",
  1972. "datestamp": "1607722672",
  1973. "security-coverage": {
  1974. "status": "covered",
  1975. "message": "Covered by Drupal's security advisory policy"
  1976. }
  1977. }
  1978. },
  1979. "notification-url": "https://packages.drupal.org/8/downloads",
  1980. "license": [
  1981. "GPL-2.0+"
  1982. ],
  1983. "authors": [
  1984. {
  1985. "name": "Chris Snyder",
  1986. "homepage": "https://www.drupal.org/u/chrissnyder",
  1987. "email": "chris@chrissnyder.org",
  1988. "role": "Maintainer"
  1989. }
  1990. ],
  1991. "description": "Provides a link to an external mapping site for an address field.",
  1992. "homepage": "https://www.drupal.org/project/address_map_link",
  1993. "keywords": [
  1994. "Drupal"
  1995. ],
  1996. "support": {
  1997. "source": "http://cgit.drupalcode.org/address_map_link",
  1998. "issues": "https://www.drupal.org/project/issues/address_map_link"
  1999. }
  2000. },
  2001. {
  2002. "name": "drupal/audiofield",
  2003. "version": "1.13.0",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://git.drupalcode.org/project/audiofield.git",
  2007. "reference": "8.x-1.13"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2012. "reference": "8.x-1.13",
  2013. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2014. },
  2015. "require": {
  2016. "drupal/core": "^8 || ^9 || ^10"
  2017. },
  2018. "type": "drupal-module",
  2019. "extra": {
  2020. "drupal": {
  2021. "version": "8.x-1.13",
  2022. "datestamp": "1681143245",
  2023. "security-coverage": {
  2024. "status": "covered",
  2025. "message": "Covered by Drupal's security advisory policy"
  2026. }
  2027. },
  2028. "drush": {
  2029. "services": {
  2030. "drush.services.yml": "^9"
  2031. }
  2032. }
  2033. },
  2034. "notification-url": "https://packages.drupal.org/8/downloads",
  2035. "license": [
  2036. "GPL-2.0-or-later"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Daniel Moberly",
  2041. "homepage": "https://www.drupal.org/u/danielmoberly",
  2042. "role": "Maintainer"
  2043. },
  2044. {
  2045. "name": "tamerzg",
  2046. "homepage": "https://www.drupal.org/user/464564"
  2047. }
  2048. ],
  2049. "description": "AudioField Module",
  2050. "homepage": "https://www.drupal.org/project/audiofield",
  2051. "support": {
  2052. "source": "https://git.drupalcode.org/project/audiofield",
  2053. "issues": "https://www.drupal.org/project/issues/audiofield"
  2054. }
  2055. },
  2056. {
  2057. "name": "drupal/backup_migrate",
  2058. "version": "4.2.0",
  2059. "source": {
  2060. "type": "git",
  2061. "url": "https://git.drupalcode.org/project/backup_migrate.git",
  2062. "reference": "8.x-4.2"
  2063. },
  2064. "dist": {
  2065. "type": "zip",
  2066. "url": "https://ftp.drupal.org/files/projects/backup_migrate-8.x-4.2.zip",
  2067. "reference": "8.x-4.2",
  2068. "shasum": "137c9e30ad6311f9fb121dca165b8fb35a097353"
  2069. },
  2070. "require": {
  2071. "drupal/core": "~8.0"
  2072. },
  2073. "type": "drupal-module",
  2074. "extra": {
  2075. "drupal": {
  2076. "version": "8.x-4.2",
  2077. "datestamp": "1625854034",
  2078. "security-coverage": {
  2079. "status": "covered",
  2080. "message": "Covered by Drupal's security advisory policy"
  2081. }
  2082. }
  2083. },
  2084. "notification-url": "https://packages.drupal.org/8/downloads",
  2085. "license": [
  2086. "GPL-2.0+"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Ronan Dowling",
  2091. "homepage": "https://www.drupal.org/u/ronan",
  2092. "role": "Maintainer"
  2093. },
  2094. {
  2095. "name": "Alex Andrascu",
  2096. "homepage": "https://www.drupal.org/u/alex-andrascu",
  2097. "role": "Maintainer"
  2098. },
  2099. {
  2100. "name": "dgorton",
  2101. "homepage": "https://www.drupal.org/user/19044"
  2102. },
  2103. {
  2104. "name": "ikit-claw",
  2105. "homepage": "https://www.drupal.org/user/3285813"
  2106. },
  2107. {
  2108. "name": "ronan",
  2109. "homepage": "https://www.drupal.org/user/72815"
  2110. }
  2111. ],
  2112. "description": "Backup and Migrate Drupal Module",
  2113. "homepage": "https://www.drupal.org/project/backup_migrate",
  2114. "support": {
  2115. "source": "https://git.drupalcode.org/project/backup_migrate",
  2116. "issues": "https://www.drupal.org/project/issues/backup_migrate",
  2117. "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
  2118. }
  2119. },
  2120. {
  2121. "name": "drupal/charts",
  2122. "version": "3.5.0",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://git.drupalcode.org/project/charts.git",
  2126. "reference": "8.x-3.5"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://ftp.drupal.org/files/projects/charts-8.x-3.5.zip",
  2131. "reference": "8.x-3.5",
  2132. "shasum": "e5ac7da4587d6d5edf028256dc5481fd956be5fb"
  2133. },
  2134. "require": {
  2135. "drupal/core": "^8 || ^9 || ^10"
  2136. },
  2137. "type": "drupal-module",
  2138. "extra": {
  2139. "drupal": {
  2140. "version": "8.x-3.5",
  2141. "datestamp": "1691788517",
  2142. "security-coverage": {
  2143. "status": "covered",
  2144. "message": "Covered by Drupal's security advisory policy"
  2145. }
  2146. }
  2147. },
  2148. "notification-url": "https://packages.drupal.org/8/downloads",
  2149. "license": [
  2150. "GPL-2.0+"
  2151. ],
  2152. "authors": [
  2153. {
  2154. "name": "andielco, nikathone, quicksketch, brmassa, kenorb, Pierre.Vriens, rashad612, loopy1492",
  2155. "homepage": "https://www.drupal.org/user/2054544"
  2156. },
  2157. {
  2158. "name": "nikathone",
  2159. "homepage": "https://www.drupal.org/user/2421800"
  2160. },
  2161. {
  2162. "name": "quicksketch",
  2163. "homepage": "https://www.drupal.org/user/35821"
  2164. }
  2165. ],
  2166. "description": "A charting API for Drupal that provides chart elements and integration with Views",
  2167. "homepage": "https://www.drupal.org/project/charts",
  2168. "support": {
  2169. "source": "https://git.drupalcode.org/project/charts"
  2170. }
  2171. },
  2172. {
  2173. "name": "drupal/core",
  2174. "version": "8.9.7",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/drupal/core.git",
  2178. "reference": "ded1be08c23f19211f9a2514a72e7defb1204efc"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/drupal/core/zipball/ded1be08c23f19211f9a2514a72e7defb1204efc",
  2183. "reference": "ded1be08c23f19211f9a2514a72e7defb1204efc",
  2184. "shasum": ""
  2185. },
  2186. "require": {
  2187. "asm89/stack-cors": "^1.1",
  2188. "composer/semver": "^1.0",
  2189. "doctrine/annotations": "^1.4",
  2190. "doctrine/common": "^2.7",
  2191. "easyrdf/easyrdf": "^0.9",
  2192. "egulias/email-validator": "^2.0",
  2193. "ext-date": "*",
  2194. "ext-dom": "*",
  2195. "ext-filter": "*",
  2196. "ext-gd": "*",
  2197. "ext-hash": "*",
  2198. "ext-json": "*",
  2199. "ext-pcre": "*",
  2200. "ext-pdo": "*",
  2201. "ext-session": "*",
  2202. "ext-simplexml": "*",
  2203. "ext-spl": "*",
  2204. "ext-tokenizer": "*",
  2205. "ext-xml": "*",
  2206. "guzzlehttp/guzzle": "^6.3",
  2207. "laminas/laminas-diactoros": "^1.8",
  2208. "laminas/laminas-feed": "^2.12",
  2209. "masterminds/html5": "^2.1",
  2210. "pear/archive_tar": "^1.4.9",
  2211. "php": ">=7.0.8",
  2212. "psr/log": "^1.0",
  2213. "stack/builder": "^1.0",
  2214. "symfony-cmf/routing": "^1.4",
  2215. "symfony/class-loader": "~3.4.0",
  2216. "symfony/console": "~3.4.0",
  2217. "symfony/dependency-injection": "~3.4.26",
  2218. "symfony/event-dispatcher": "~3.4.0",
  2219. "symfony/http-foundation": "~3.4.35",
  2220. "symfony/http-kernel": "~3.4.14",
  2221. "symfony/polyfill-iconv": "^1.0",
  2222. "symfony/process": "~3.4.0",
  2223. "symfony/psr-http-message-bridge": "^1.1.2",
  2224. "symfony/routing": "~3.4.0",
  2225. "symfony/serializer": "~3.4.0",
  2226. "symfony/translation": "~3.4.0",
  2227. "symfony/validator": "~3.4.0",
  2228. "symfony/yaml": "~3.4.5",
  2229. "twig/twig": "^1.38.2",
  2230. "typo3/phar-stream-wrapper": "^3.1.3"
  2231. },
  2232. "conflict": {
  2233. "drupal/pathauto": "<1.6",
  2234. "drush/drush": "<8.1.10"
  2235. },
  2236. "replace": {
  2237. "drupal/action": "self.version",
  2238. "drupal/aggregator": "self.version",
  2239. "drupal/automated_cron": "self.version",
  2240. "drupal/ban": "self.version",
  2241. "drupal/bartik": "self.version",
  2242. "drupal/basic_auth": "self.version",
  2243. "drupal/big_pipe": "self.version",
  2244. "drupal/block": "self.version",
  2245. "drupal/block_content": "self.version",
  2246. "drupal/block_place": "self.version",
  2247. "drupal/book": "self.version",
  2248. "drupal/breakpoint": "self.version",
  2249. "drupal/ckeditor": "self.version",
  2250. "drupal/claro": "self.version",
  2251. "drupal/classy": "self.version",
  2252. "drupal/color": "self.version",
  2253. "drupal/comment": "self.version",
  2254. "drupal/config": "self.version",
  2255. "drupal/config_translation": "self.version",
  2256. "drupal/contact": "self.version",
  2257. "drupal/content_moderation": "self.version",
  2258. "drupal/content_translation": "self.version",
  2259. "drupal/contextual": "self.version",
  2260. "drupal/core-annotation": "self.version",
  2261. "drupal/core-assertion": "self.version",
  2262. "drupal/core-bridge": "self.version",
  2263. "drupal/core-class-finder": "self.version",
  2264. "drupal/core-datetime": "self.version",
  2265. "drupal/core-dependency-injection": "self.version",
  2266. "drupal/core-diff": "self.version",
  2267. "drupal/core-discovery": "self.version",
  2268. "drupal/core-event-dispatcher": "self.version",
  2269. "drupal/core-file-cache": "self.version",
  2270. "drupal/core-file-security": "self.version",
  2271. "drupal/core-filesystem": "self.version",
  2272. "drupal/core-gettext": "self.version",
  2273. "drupal/core-graph": "self.version",
  2274. "drupal/core-http-foundation": "self.version",
  2275. "drupal/core-php-storage": "self.version",
  2276. "drupal/core-plugin": "self.version",
  2277. "drupal/core-proxy-builder": "self.version",
  2278. "drupal/core-render": "self.version",
  2279. "drupal/core-serialization": "self.version",
  2280. "drupal/core-transliteration": "self.version",
  2281. "drupal/core-utility": "self.version",
  2282. "drupal/core-uuid": "self.version",
  2283. "drupal/core-version": "self.version",
  2284. "drupal/datetime": "self.version",
  2285. "drupal/datetime_range": "self.version",
  2286. "drupal/dblog": "self.version",
  2287. "drupal/dynamic_page_cache": "self.version",
  2288. "drupal/editor": "self.version",
  2289. "drupal/entity_reference": "self.version",
  2290. "drupal/field": "self.version",
  2291. "drupal/field_layout": "self.version",
  2292. "drupal/field_ui": "self.version",
  2293. "drupal/file": "self.version",
  2294. "drupal/filter": "self.version",
  2295. "drupal/forum": "self.version",
  2296. "drupal/hal": "self.version",
  2297. "drupal/help": "self.version",
  2298. "drupal/help_topics": "self.version",
  2299. "drupal/history": "self.version",
  2300. "drupal/image": "self.version",
  2301. "drupal/inline_form_errors": "self.version",
  2302. "drupal/jsonapi": "self.version",
  2303. "drupal/language": "self.version",
  2304. "drupal/layout_builder": "self.version",
  2305. "drupal/layout_discovery": "self.version",
  2306. "drupal/link": "self.version",
  2307. "drupal/locale": "self.version",
  2308. "drupal/media": "self.version",
  2309. "drupal/media_library": "self.version",
  2310. "drupal/menu_link_content": "self.version",
  2311. "drupal/menu_ui": "self.version",
  2312. "drupal/migrate": "self.version",
  2313. "drupal/migrate_drupal": "self.version",
  2314. "drupal/migrate_drupal_multilingual": "self.version",
  2315. "drupal/migrate_drupal_ui": "self.version",
  2316. "drupal/minimal": "self.version",
  2317. "drupal/node": "self.version",
  2318. "drupal/options": "self.version",
  2319. "drupal/page_cache": "self.version",
  2320. "drupal/path": "self.version",
  2321. "drupal/path_alias": "self.version",
  2322. "drupal/quickedit": "self.version",
  2323. "drupal/rdf": "self.version",
  2324. "drupal/responsive_image": "self.version",
  2325. "drupal/rest": "self.version",
  2326. "drupal/search": "self.version",
  2327. "drupal/serialization": "self.version",
  2328. "drupal/settings_tray": "self.version",
  2329. "drupal/seven": "self.version",
  2330. "drupal/shortcut": "self.version",
  2331. "drupal/simpletest": "self.version",
  2332. "drupal/standard": "self.version",
  2333. "drupal/stark": "self.version",
  2334. "drupal/statistics": "self.version",
  2335. "drupal/syslog": "self.version",
  2336. "drupal/system": "self.version",
  2337. "drupal/taxonomy": "self.version",
  2338. "drupal/telephone": "self.version",
  2339. "drupal/text": "self.version",
  2340. "drupal/toolbar": "self.version",
  2341. "drupal/tour": "self.version",
  2342. "drupal/tracker": "self.version",
  2343. "drupal/update": "self.version",
  2344. "drupal/user": "self.version",
  2345. "drupal/views": "self.version",
  2346. "drupal/views_ui": "self.version",
  2347. "drupal/workflows": "self.version",
  2348. "drupal/workspaces": "self.version"
  2349. },
  2350. "type": "drupal-core",
  2351. "extra": {
  2352. "drupal-scaffold": {
  2353. "file-mapping": {
  2354. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2355. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2356. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2357. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2358. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2359. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2360. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2361. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2362. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2363. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2364. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2365. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2366. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2367. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2368. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2369. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2370. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2371. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2372. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2373. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2374. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2375. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2376. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2377. }
  2378. }
  2379. },
  2380. "autoload": {
  2381. "psr-4": {
  2382. "Drupal\\Core\\": "lib/Drupal/Core",
  2383. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2384. "Drupal\\Component\\": "lib/Drupal/Component"
  2385. },
  2386. "classmap": [
  2387. "lib/Drupal.php",
  2388. "lib/Drupal/Component/Utility/Timer.php",
  2389. "lib/Drupal/Component/Utility/Unicode.php",
  2390. "lib/Drupal/Core/Database/Database.php",
  2391. "lib/Drupal/Core/DrupalKernel.php",
  2392. "lib/Drupal/Core/DrupalKernelInterface.php",
  2393. "lib/Drupal/Core/Site/Settings.php"
  2394. ]
  2395. },
  2396. "notification-url": "https://packagist.org/downloads/",
  2397. "license": [
  2398. "GPL-2.0-or-later"
  2399. ],
  2400. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2401. "support": {
  2402. "source": "https://github.com/drupal/core/tree/8.9.7"
  2403. },
  2404. "time": "2020-10-07T19:37:20+00:00"
  2405. },
  2406. {
  2407. "name": "drupal/core-composer-scaffold",
  2408. "version": "8.9.7",
  2409. "source": {
  2410. "type": "git",
  2411. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2412. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2413. },
  2414. "dist": {
  2415. "type": "zip",
  2416. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2417. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2418. "shasum": ""
  2419. },
  2420. "require": {
  2421. "composer-plugin-api": "^1 || ^2",
  2422. "php": ">=7.0.8"
  2423. },
  2424. "conflict": {
  2425. "drupal-composer/drupal-scaffold": "*"
  2426. },
  2427. "require-dev": {
  2428. "composer/composer": "^1.8@stable"
  2429. },
  2430. "type": "composer-plugin",
  2431. "extra": {
  2432. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2433. "branch-alias": {
  2434. "dev-master": "1.0.x-dev"
  2435. }
  2436. },
  2437. "autoload": {
  2438. "psr-4": {
  2439. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2440. }
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "GPL-2.0-or-later"
  2445. ],
  2446. "description": "A flexible Composer project scaffold builder.",
  2447. "homepage": "https://www.drupal.org/project/drupal",
  2448. "keywords": [
  2449. "drupal"
  2450. ],
  2451. "time": "2020-08-07T22:30:30+00:00"
  2452. },
  2453. {
  2454. "name": "drupal/core-recommended",
  2455. "version": "8.9.7",
  2456. "source": {
  2457. "type": "git",
  2458. "url": "https://github.com/drupal/core-recommended.git",
  2459. "reference": "7895ddd703101bdec91fb6ae58381036a9768e1f"
  2460. },
  2461. "dist": {
  2462. "type": "zip",
  2463. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/7895ddd703101bdec91fb6ae58381036a9768e1f",
  2464. "reference": "7895ddd703101bdec91fb6ae58381036a9768e1f",
  2465. "shasum": ""
  2466. },
  2467. "require": {
  2468. "asm89/stack-cors": "1.3.0",
  2469. "composer/semver": "1.5.1",
  2470. "doctrine/annotations": "v1.4.0",
  2471. "doctrine/cache": "v1.6.2",
  2472. "doctrine/collections": "v1.4.0",
  2473. "doctrine/common": "v2.7.3",
  2474. "doctrine/inflector": "v1.2.0",
  2475. "doctrine/lexer": "1.0.2",
  2476. "drupal/core": "8.9.7",
  2477. "easyrdf/easyrdf": "0.9.1",
  2478. "egulias/email-validator": "2.1.17",
  2479. "guzzlehttp/guzzle": "6.5.4",
  2480. "guzzlehttp/promises": "v1.3.1",
  2481. "guzzlehttp/psr7": "1.6.1",
  2482. "laminas/laminas-diactoros": "1.8.7p2",
  2483. "laminas/laminas-escaper": "2.6.1",
  2484. "laminas/laminas-feed": "2.12.2",
  2485. "laminas/laminas-stdlib": "3.2.1",
  2486. "laminas/laminas-zendframework-bridge": "1.0.4",
  2487. "masterminds/html5": "2.3.0",
  2488. "paragonie/random_compat": "v9.99.99",
  2489. "pear/archive_tar": "1.4.9",
  2490. "pear/console_getopt": "v1.4.3",
  2491. "pear/pear-core-minimal": "v1.10.10",
  2492. "pear/pear_exception": "v1.0.1",
  2493. "psr/container": "1.0.0",
  2494. "psr/http-message": "1.0.1",
  2495. "psr/log": "1.1.3",
  2496. "ralouphie/getallheaders": "3.0.3",
  2497. "stack/builder": "v1.0.5",
  2498. "symfony-cmf/routing": "1.4.1",
  2499. "symfony/class-loader": "v3.4.41",
  2500. "symfony/console": "v3.4.41",
  2501. "symfony/debug": "v3.4.41",
  2502. "symfony/dependency-injection": "v3.4.41",
  2503. "symfony/event-dispatcher": "v3.4.41",
  2504. "symfony/http-foundation": "v3.4.41",
  2505. "symfony/http-kernel": "v3.4.44",
  2506. "symfony/polyfill-ctype": "v1.17.0",
  2507. "symfony/polyfill-iconv": "v1.17.0",
  2508. "symfony/polyfill-intl-idn": "v1.17.0",
  2509. "symfony/polyfill-mbstring": "v1.17.0",
  2510. "symfony/polyfill-php56": "v1.17.0",
  2511. "symfony/polyfill-php70": "v1.17.0",
  2512. "symfony/polyfill-php72": "v1.17.0",
  2513. "symfony/polyfill-util": "v1.17.0",
  2514. "symfony/process": "v3.4.41",
  2515. "symfony/psr-http-message-bridge": "v1.1.2",
  2516. "symfony/routing": "v3.4.41",
  2517. "symfony/serializer": "v3.4.41",
  2518. "symfony/translation": "v3.4.41",
  2519. "symfony/validator": "v3.4.41",
  2520. "symfony/yaml": "v3.4.41",
  2521. "twig/twig": "v1.42.5",
  2522. "typo3/phar-stream-wrapper": "v3.1.4"
  2523. },
  2524. "conflict": {
  2525. "webflo/drupal-core-strict": "*"
  2526. },
  2527. "type": "metapackage",
  2528. "notification-url": "https://packagist.org/downloads/",
  2529. "license": [
  2530. "GPL-2.0-or-later"
  2531. ],
  2532. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2533. "time": "2020-10-07T19:37:20+00:00"
  2534. },
  2535. {
  2536. "name": "drupal/ctools",
  2537. "version": "3.9.0",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://git.drupalcode.org/project/ctools.git",
  2541. "reference": "8.x-3.9"
  2542. },
  2543. "dist": {
  2544. "type": "zip",
  2545. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.9.zip",
  2546. "reference": "8.x-3.9",
  2547. "shasum": "227ba06f5f98bded0658b83322949c33d1b3183e"
  2548. },
  2549. "require": {
  2550. "drupal/core": "^8.8 || ^9"
  2551. },
  2552. "type": "drupal-module",
  2553. "extra": {
  2554. "drupal": {
  2555. "version": "8.x-3.9",
  2556. "datestamp": "1658864511",
  2557. "security-coverage": {
  2558. "status": "covered",
  2559. "message": "Covered by Drupal's security advisory policy"
  2560. }
  2561. },
  2562. "branch-alias": {
  2563. "dev-8.x-3.x": "3.x-dev"
  2564. }
  2565. },
  2566. "notification-url": "https://packages.drupal.org/8/downloads",
  2567. "license": [
  2568. "GPL-2.0-or-later"
  2569. ],
  2570. "authors": [
  2571. {
  2572. "name": "Kris Vanderwater (EclipseGc)",
  2573. "homepage": "https://www.drupal.org/u/eclipsegc",
  2574. "role": "Maintainer"
  2575. },
  2576. {
  2577. "name": "Jakob Perry (japerry)",
  2578. "homepage": "https://www.drupal.org/u/japerry",
  2579. "role": "Maintainer"
  2580. },
  2581. {
  2582. "name": "Tim Plunkett (tim.plunkett)",
  2583. "homepage": "https://www.drupal.org/u/timplunkett",
  2584. "role": "Maintainer"
  2585. },
  2586. {
  2587. "name": "James Gilliland (neclimdul)",
  2588. "homepage": "https://www.drupal.org/u/neclimdul",
  2589. "role": "Maintainer"
  2590. },
  2591. {
  2592. "name": "Daniel Wehner (dawehner)",
  2593. "homepage": "https://www.drupal.org/u/dawehner",
  2594. "role": "Maintainer"
  2595. },
  2596. {
  2597. "name": "joelpittet",
  2598. "homepage": "https://www.drupal.org/user/160302"
  2599. },
  2600. {
  2601. "name": "merlinofchaos",
  2602. "homepage": "https://www.drupal.org/user/26979"
  2603. },
  2604. {
  2605. "name": "neclimdul",
  2606. "homepage": "https://www.drupal.org/user/48673"
  2607. },
  2608. {
  2609. "name": "sdboyer",
  2610. "homepage": "https://www.drupal.org/user/146719"
  2611. },
  2612. {
  2613. "name": "sun",
  2614. "homepage": "https://www.drupal.org/user/54136"
  2615. },
  2616. {
  2617. "name": "tim.plunkett",
  2618. "homepage": "https://www.drupal.org/user/241634"
  2619. }
  2620. ],
  2621. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2622. "homepage": "https://www.drupal.org/project/ctools",
  2623. "support": {
  2624. "source": "https://git.drupalcode.org/project/ctools",
  2625. "issues": "https://www.drupal.org/project/issues/ctools"
  2626. }
  2627. },
  2628. {
  2629. "name": "drupal/entity_browser",
  2630. "version": "2.7.0",
  2631. "source": {
  2632. "type": "git",
  2633. "url": "https://git.drupalcode.org/project/entity_browser.git",
  2634. "reference": "8.x-2.7"
  2635. },
  2636. "dist": {
  2637. "type": "zip",
  2638. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.7.zip",
  2639. "reference": "8.x-2.7",
  2640. "shasum": "4d8606f9ab8dff8e484dd9417eafb6d97911892d"
  2641. },
  2642. "require": {
  2643. "drupal/core": "^8.8 || ^9"
  2644. },
  2645. "require-dev": {
  2646. "drupal/embed": "~1.0",
  2647. "drupal/entity_embed": "1.x-dev",
  2648. "drupal/entity_reference_revisions": "1.x-dev",
  2649. "drupal/entityqueue": "1.x-dev",
  2650. "drupal/inline_entity_form": "1.x-dev",
  2651. "drupal/paragraphs": "1.x-dev",
  2652. "drupal/token": "~1.0"
  2653. },
  2654. "type": "drupal-module",
  2655. "extra": {
  2656. "drupal": {
  2657. "version": "8.x-2.7",
  2658. "datestamp": "1655931710",
  2659. "security-coverage": {
  2660. "status": "covered",
  2661. "message": "Covered by Drupal's security advisory policy"
  2662. }
  2663. }
  2664. },
  2665. "notification-url": "https://packages.drupal.org/8/downloads",
  2666. "license": [
  2667. "GPL-2.0+"
  2668. ],
  2669. "authors": [
  2670. {
  2671. "name": "Janez Urevc",
  2672. "homepage": "https://github.com/slashrsm",
  2673. "role": "Maintainer"
  2674. },
  2675. {
  2676. "name": "Primoz Hmeljak",
  2677. "homepage": "https://github.com/primsi",
  2678. "role": "Maintainer"
  2679. },
  2680. {
  2681. "name": "See other contributors",
  2682. "homepage": "https://www.drupal.org/node/1943336/committers",
  2683. "role": "contributor"
  2684. },
  2685. {
  2686. "name": "Drupal Media Team",
  2687. "homepage": "https://www.drupal.org/user/3260690"
  2688. },
  2689. {
  2690. "name": "marcingy",
  2691. "homepage": "https://www.drupal.org/user/77320"
  2692. },
  2693. {
  2694. "name": "oknate",
  2695. "homepage": "https://www.drupal.org/user/471638"
  2696. },
  2697. {
  2698. "name": "Primsi",
  2699. "homepage": "https://www.drupal.org/user/282629"
  2700. },
  2701. {
  2702. "name": "samuel.mortenson",
  2703. "homepage": "https://www.drupal.org/user/2582268"
  2704. },
  2705. {
  2706. "name": "slashrsm",
  2707. "homepage": "https://www.drupal.org/user/744628"
  2708. }
  2709. ],
  2710. "description": "Entity browsing and selecting component.",
  2711. "homepage": "http://drupal.org/project/entity_browser",
  2712. "support": {
  2713. "source": "https://git.drupalcode.org/project/entity_browser",
  2714. "issues": "https://www.drupal.org/project/issues/entity_browser",
  2715. "irc": "irc://irc.freenode.org/drupal-contribute"
  2716. }
  2717. },
  2718. {
  2719. "name": "drupal/entity_browser_enhanced",
  2720. "version": "1.2.0",
  2721. "source": {
  2722. "type": "git",
  2723. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  2724. "reference": "8.x-1.2"
  2725. },
  2726. "dist": {
  2727. "type": "zip",
  2728. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.2.zip",
  2729. "reference": "8.x-1.2",
  2730. "shasum": "02ea0bddd430c058bfaf21310747ce3dff53735a"
  2731. },
  2732. "require": {
  2733. "drupal/core": "~8.0 || ~9.0 || ~10.0",
  2734. "drupal/entity_browser": "~2.0"
  2735. },
  2736. "type": "drupal-module",
  2737. "extra": {
  2738. "drupal": {
  2739. "version": "8.x-1.2",
  2740. "datestamp": "1684398445",
  2741. "security-coverage": {
  2742. "status": "covered",
  2743. "message": "Covered by Drupal's security advisory policy"
  2744. }
  2745. },
  2746. "branch-alias": {
  2747. "dev-8.x-1.x": "8.1.x-dev"
  2748. }
  2749. },
  2750. "notification-url": "https://packages.drupal.org/8/downloads",
  2751. "license": [
  2752. "GPL-2.0-or-later"
  2753. ],
  2754. "authors": [
  2755. {
  2756. "name": "Vardot",
  2757. "homepage": "https://www.drupal.org/vardot",
  2758. "role": "Maintainer"
  2759. },
  2760. {
  2761. "name": "Rajab Natshah",
  2762. "homepage": "https://www.drupal.org/user/1414312"
  2763. }
  2764. ],
  2765. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  2766. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  2767. "support": {
  2768. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  2769. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  2770. }
  2771. },
  2772. {
  2773. "name": "drupal/entity_reference_revisions",
  2774. "version": "1.9.0",
  2775. "source": {
  2776. "type": "git",
  2777. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  2778. "reference": "8.x-1.9"
  2779. },
  2780. "dist": {
  2781. "type": "zip",
  2782. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip",
  2783. "reference": "8.x-1.9",
  2784. "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df"
  2785. },
  2786. "require": {
  2787. "drupal/core": "^8.7.7 || ^9"
  2788. },
  2789. "require-dev": {
  2790. "drupal/diff": "1.x-dev"
  2791. },
  2792. "type": "drupal-module",
  2793. "extra": {
  2794. "drupal": {
  2795. "version": "8.x-1.9",
  2796. "datestamp": "1614805871",
  2797. "security-coverage": {
  2798. "status": "covered",
  2799. "message": "Covered by Drupal's security advisory policy"
  2800. }
  2801. }
  2802. },
  2803. "notification-url": "https://packages.drupal.org/8/downloads",
  2804. "license": [
  2805. "GPL-2.0-or-later"
  2806. ],
  2807. "authors": [
  2808. {
  2809. "name": "Berdir",
  2810. "homepage": "https://www.drupal.org/user/214652"
  2811. },
  2812. {
  2813. "name": "Frans",
  2814. "homepage": "https://www.drupal.org/user/514222"
  2815. },
  2816. {
  2817. "name": "jeroen.b",
  2818. "homepage": "https://www.drupal.org/user/1853532"
  2819. },
  2820. {
  2821. "name": "miro_dietiker",
  2822. "homepage": "https://www.drupal.org/user/227761"
  2823. }
  2824. ],
  2825. "description": "Entity Reference Revisions",
  2826. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  2827. "support": {
  2828. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  2829. }
  2830. },
  2831. {
  2832. "name": "drupal/field_group",
  2833. "version": "3.3.0",
  2834. "source": {
  2835. "type": "git",
  2836. "url": "https://git.drupalcode.org/project/field_group.git",
  2837. "reference": "8.x-3.3"
  2838. },
  2839. "dist": {
  2840. "type": "zip",
  2841. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.3.zip",
  2842. "reference": "8.x-3.3",
  2843. "shasum": "c7a423b1d7643ee40dd1543d72fa04e8ac1756e4"
  2844. },
  2845. "require": {
  2846. "drupal/core": "^8.8 || ^9"
  2847. },
  2848. "require-dev": {
  2849. "drupal/jquery_ui_accordion": "^1.0"
  2850. },
  2851. "type": "drupal-module",
  2852. "extra": {
  2853. "drupal": {
  2854. "version": "8.x-3.3",
  2855. "datestamp": "1663516404",
  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": "Anybody",
  2869. "homepage": "https://www.drupal.org/user/291091"
  2870. },
  2871. {
  2872. "name": "Hydra",
  2873. "homepage": "https://www.drupal.org/user/647364"
  2874. },
  2875. {
  2876. "name": "jyve",
  2877. "homepage": "https://www.drupal.org/user/591438"
  2878. },
  2879. {
  2880. "name": "nils.destoop",
  2881. "homepage": "https://www.drupal.org/user/361625"
  2882. },
  2883. {
  2884. "name": "Stalski",
  2885. "homepage": "https://www.drupal.org/user/322618"
  2886. },
  2887. {
  2888. "name": "swentel",
  2889. "homepage": "https://www.drupal.org/user/107403"
  2890. }
  2891. ],
  2892. "description": "Provides the field_group module.",
  2893. "homepage": "https://www.drupal.org/project/field_group",
  2894. "support": {
  2895. "source": "https://git.drupalcode.org/project/field_group",
  2896. "issues": "https://www.drupal.org/project/issues/field_group"
  2897. }
  2898. },
  2899. {
  2900. "name": "drupal/field_pager",
  2901. "version": "2.0.0-beta2",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://git.drupalcode.org/project/field_pager.git",
  2905. "reference": "2.0.0-beta2"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://ftp.drupal.org/files/projects/field_pager-2.0.0-beta2.zip",
  2910. "reference": "2.0.0-beta2",
  2911. "shasum": "33a7589e908c5b86b928e8e0e4bb562d7337dc15"
  2912. },
  2913. "require": {
  2914. "drupal/core": "^8 || ^9 || ^10"
  2915. },
  2916. "type": "drupal-module",
  2917. "extra": {
  2918. "drupal": {
  2919. "version": "2.0.0-beta2",
  2920. "datestamp": "1678960516",
  2921. "security-coverage": {
  2922. "status": "not-covered",
  2923. "message": "Project has not opted into security advisory coverage!"
  2924. }
  2925. }
  2926. },
  2927. "notification-url": "https://packages.drupal.org/8/downloads",
  2928. "license": [
  2929. "GPL-2.0-or-later"
  2930. ],
  2931. "authors": [
  2932. {
  2933. "name": "NuWans",
  2934. "homepage": "https://www.drupal.org/user/3250178"
  2935. }
  2936. ],
  2937. "description": "Field Pager (field_pager) To use fields as multiple pages",
  2938. "homepage": "https://www.drupal.org/project/field_pager",
  2939. "support": {
  2940. "source": "https://git.drupalcode.org/project/field_pager"
  2941. }
  2942. },
  2943. {
  2944. "name": "drupal/field_token_value",
  2945. "version": "1.0.0",
  2946. "source": {
  2947. "type": "git",
  2948. "url": "https://git.drupalcode.org/project/field_token_value.git",
  2949. "reference": "8.x-1.0"
  2950. },
  2951. "dist": {
  2952. "type": "zip",
  2953. "url": "https://ftp.drupal.org/files/projects/field_token_value-8.x-1.0.zip",
  2954. "reference": "8.x-1.0",
  2955. "shasum": "ba0c70108ca09589b9fa2ecce4c7a7194cdca897"
  2956. },
  2957. "require": {
  2958. "drupal/core": "~8.0",
  2959. "drupal/token": "*"
  2960. },
  2961. "type": "drupal-module",
  2962. "extra": {
  2963. "branch-alias": {
  2964. "dev-1.x": "1.x-dev"
  2965. },
  2966. "drupal": {
  2967. "version": "8.x-1.0",
  2968. "datestamp": "1503548344",
  2969. "security-coverage": {
  2970. "status": "covered",
  2971. "message": "Covered by Drupal's security advisory policy"
  2972. }
  2973. }
  2974. },
  2975. "notification-url": "https://packages.drupal.org/8/downloads",
  2976. "license": [
  2977. "GPL-2.0-or-later"
  2978. ],
  2979. "authors": [
  2980. {
  2981. "name": "haydent",
  2982. "homepage": "https://www.drupal.org/user/2763191"
  2983. }
  2984. ],
  2985. "description": "Provides a field allowing the value to be set using a string containing tokens.",
  2986. "homepage": "https://www.drupal.org/project/field_token_value",
  2987. "support": {
  2988. "source": "https://git.drupalcode.org/project/field_token_value"
  2989. }
  2990. },
  2991. {
  2992. "name": "drupal/geocoder",
  2993. "version": "3.47.0",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://git.drupalcode.org/project/geocoder.git",
  2997. "reference": "8.x-3.47"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-3.47.zip",
  3002. "reference": "8.x-3.47",
  3003. "shasum": "841705b269361b01adb00d34c7d74a14d3973054"
  3004. },
  3005. "require": {
  3006. "davedevelopment/stiphle": "^0.9.2",
  3007. "drupal/core": "^8.8 || ^9",
  3008. "php": ">=7.3.0",
  3009. "php-http/guzzle6-adapter": "^1.1 || ^2.0",
  3010. "php-http/message": "^1.6",
  3011. "willdurand/geocoder": "^4.0"
  3012. },
  3013. "require-dev": {
  3014. "drupal/address": "^1.11 || ^2.0",
  3015. "drupal/geocoder_field": "*",
  3016. "drupal/geofield": "^1.52",
  3017. "geo6/geocoder-php-addok-provider": "^1.0",
  3018. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  3019. "geo6/geocoder-php-geopunt-provider": "^1.0",
  3020. "geo6/geocoder-php-spw-provider": "^1.0",
  3021. "geocoder-php/arcgis-online-provider": "^4.0",
  3022. "geocoder-php/azure-maps-provider": "^1.2",
  3023. "geocoder-php/bing-maps-provider": "^4.0",
  3024. "geocoder-php/free-geoip-provider": "^4.1",
  3025. "geocoder-php/geo-plugin-provider": "^4.0",
  3026. "geocoder-php/geonames-provider": "^4.1",
  3027. "geocoder-php/google-maps-provider": "^4.2",
  3028. "geocoder-php/graphhopper-provider": "^0.5.0",
  3029. "geocoder-php/host-ip-provider": "^4.0",
  3030. "geocoder-php/ip-info-db-provider": "^4.0",
  3031. "geocoder-php/mapbox-provider": "^1.0",
  3032. "geocoder-php/mapquest-provider": "^4.0",
  3033. "geocoder-php/maptiler-provider": "^1.0",
  3034. "geocoder-php/maxmind-provider": "^4.1",
  3035. "geocoder-php/nominatim-provider": "^5.0",
  3036. "geocoder-php/open-cage-provider": "^4.0",
  3037. "geocoder-php/openrouteservice-provider": "^1.0",
  3038. "geocoder-php/pelias-provider": "^1.1",
  3039. "geocoder-php/photon-provider": "^0.6",
  3040. "geocoder-php/tomtom-provider": "^4.0",
  3041. "geocoder-php/yandex-provider": "^4.0",
  3042. "systonic/ban-france-provider": "^1.0"
  3043. },
  3044. "type": "drupal-module",
  3045. "extra": {
  3046. "drupal": {
  3047. "version": "8.x-3.47",
  3048. "datestamp": "1707161761",
  3049. "security-coverage": {
  3050. "status": "covered",
  3051. "message": "Covered by Drupal's security advisory policy"
  3052. }
  3053. }
  3054. },
  3055. "notification-url": "https://packages.drupal.org/8/downloads",
  3056. "license": [
  3057. "GPL-2.0-or-later"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "Pol Dellaiera (@drupol)",
  3062. "homepage": "https://www.drupal.org/u/pol",
  3063. "role": "Maintainer"
  3064. },
  3065. {
  3066. "name": "Italo Mairo (@itamair)",
  3067. "homepage": "https://www.drupal.org/u/itamair",
  3068. "role": "Co-maintainer"
  3069. },
  3070. {
  3071. "name": "michaelfavia",
  3072. "homepage": "https://www.drupal.org/user/49137"
  3073. },
  3074. {
  3075. "name": "poker10",
  3076. "homepage": "https://www.drupal.org/user/272316"
  3077. }
  3078. ],
  3079. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  3080. "homepage": "https://drupal.org/project/geocoder",
  3081. "support": {
  3082. "source": "https://git.drupalcode.org/project/geocoder",
  3083. "issues": "https://drupal.org/project/issues/geocoder",
  3084. "irc": "irc://irc.freenode.org/drupal-geo"
  3085. }
  3086. },
  3087. {
  3088. "name": "drupal/geofield",
  3089. "version": "1.57.0",
  3090. "source": {
  3091. "type": "git",
  3092. "url": "https://git.drupalcode.org/project/geofield.git",
  3093. "reference": "8.x-1.57"
  3094. },
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.57.zip",
  3098. "reference": "8.x-1.57",
  3099. "shasum": "17155834e7abe78b5710907d1f2897f3a01c5702"
  3100. },
  3101. "require": {
  3102. "drupal/core": "^8.8 || ^9 || ^10",
  3103. "itamair/geophp": "^1.3"
  3104. },
  3105. "require-dev": {
  3106. "drupal/diff": "^1.1",
  3107. "drupal/feeds": "^3.0@beta"
  3108. },
  3109. "type": "drupal-module",
  3110. "extra": {
  3111. "drupal": {
  3112. "version": "8.x-1.57",
  3113. "datestamp": "1701039529",
  3114. "security-coverage": {
  3115. "status": "covered",
  3116. "message": "Covered by Drupal's security advisory policy"
  3117. }
  3118. }
  3119. },
  3120. "notification-url": "https://packages.drupal.org/8/downloads",
  3121. "license": [
  3122. "GPL-2.0+"
  3123. ],
  3124. "authors": [
  3125. {
  3126. "name": "Italo Mairo",
  3127. "homepage": "https://www.drupal.org/u/itamair",
  3128. "role": "Drupal 8+ Maintainer"
  3129. },
  3130. {
  3131. "name": "Brandon Morrison",
  3132. "homepage": "https://www.drupal.org/u/brandonian",
  3133. "role": "Drupal 7 Maintainer"
  3134. },
  3135. {
  3136. "name": "Pablo López",
  3137. "homepage": "https://www.drupal.org/u/plopesc",
  3138. "role": "Drupal 7 Maintainer"
  3139. }
  3140. ],
  3141. "description": "Stores geographic and location data (points, lines, and polygons).",
  3142. "homepage": "https://www.drupal.org/project/geofield",
  3143. "support": {
  3144. "source": "https://git.drupalcode.org/project/geofield",
  3145. "issues": "https://www.drupal.org/project/issues/geofield",
  3146. "irc": "irc://irc.freenode.org/drupal-contribute"
  3147. }
  3148. },
  3149. {
  3150. "name": "drupal/geofield_map",
  3151. "version": "2.89.0",
  3152. "source": {
  3153. "type": "git",
  3154. "url": "https://git.drupalcode.org/project/geofield_map.git",
  3155. "reference": "8.x-2.89"
  3156. },
  3157. "dist": {
  3158. "type": "zip",
  3159. "url": "https://ftp.drupal.org/files/projects/geofield_map-8.x-2.89.zip",
  3160. "reference": "8.x-2.89",
  3161. "shasum": "05acc95e2c2128c373c66754ebd68bdd83428d14"
  3162. },
  3163. "require": {
  3164. "drupal/core": "^8.8 || ^9 || ^10",
  3165. "drupal/geofield": "^1.31"
  3166. },
  3167. "type": "drupal-module",
  3168. "extra": {
  3169. "drupal": {
  3170. "version": "8.x-2.89",
  3171. "datestamp": "1666652833",
  3172. "security-coverage": {
  3173. "status": "covered",
  3174. "message": "Covered by Drupal's security advisory policy"
  3175. }
  3176. }
  3177. },
  3178. "notification-url": "https://packages.drupal.org/8/downloads",
  3179. "license": [
  3180. "GPL-2.0-or-later"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Italo Mairo",
  3185. "homepage": "https://www.drupal.org/u/itamair",
  3186. "role": "Creator/Maintainer"
  3187. }
  3188. ],
  3189. "description": "Geofield Map is an advanced, complete and easy-to-use Geo Mapping solution for Drupal 8, based on and fully compatible with the Geofield module.",
  3190. "homepage": "https://www.drupal.org/project/geofield_map",
  3191. "support": {
  3192. "source": "https://git.drupalcode.org/project/geofield_map",
  3193. "issues": "https://www.drupal.org/project/issues/geofield_map"
  3194. }
  3195. },
  3196. {
  3197. "name": "drupal/geolocation",
  3198. "version": "3.8.0",
  3199. "source": {
  3200. "type": "git",
  3201. "url": "https://git.drupalcode.org/project/geolocation.git",
  3202. "reference": "8.x-3.8"
  3203. },
  3204. "dist": {
  3205. "type": "zip",
  3206. "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.8.zip",
  3207. "reference": "8.x-3.8",
  3208. "shasum": "159a6ae26829ebaacd58503bf986180ddd4527d9"
  3209. },
  3210. "require": {
  3211. "drupal/core": "^8.7.7 || ^9"
  3212. },
  3213. "require-dev": {
  3214. "drupal/address": "*",
  3215. "drupal/geofield": "*",
  3216. "drupal/geolocation_demo": "*",
  3217. "drupal/geolocation_geometry": "*",
  3218. "drupal/geolocation_geometry_data": "*",
  3219. "drupal/geolocation_google_maps": "*",
  3220. "drupal/geolocation_google_maps_demo": "*",
  3221. "drupal/geolocation_google_static_maps": "*",
  3222. "drupal/geolocation_leaflet": "*",
  3223. "drupal/search_api": "*",
  3224. "drupal/search_api_location": "*",
  3225. "drupal/search_api_location_views": "*"
  3226. },
  3227. "type": "drupal-module",
  3228. "extra": {
  3229. "drupal": {
  3230. "version": "8.x-3.8",
  3231. "datestamp": "1649672377",
  3232. "security-coverage": {
  3233. "status": "covered",
  3234. "message": "Covered by Drupal's security advisory policy"
  3235. }
  3236. }
  3237. },
  3238. "notification-url": "https://packages.drupal.org/8/downloads",
  3239. "license": [
  3240. "GPL-2.0-or-later"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "derjochenmeyer",
  3245. "homepage": "https://www.drupal.org/u/derjochenmeyer"
  3246. },
  3247. {
  3248. "name": "cadamski",
  3249. "homepage": "https://www.drupal.org/u/cadamski"
  3250. }
  3251. ],
  3252. "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).",
  3253. "homepage": "https://www.drupal.org/project/geolocation",
  3254. "support": {
  3255. "source": "https://git.drupal.org/project/geolocation.git",
  3256. "issues": "https://www.drupal.org/project/issues/geolocation"
  3257. }
  3258. },
  3259. {
  3260. "name": "drupal/google_analytics_reports",
  3261. "version": "3.1.0",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://git.drupalcode.org/project/google_analytics_reports.git",
  3265. "reference": "8.x-3.1"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://ftp.drupal.org/files/projects/google_analytics_reports-8.x-3.1.zip",
  3270. "reference": "8.x-3.1",
  3271. "shasum": "7e52953e7f51b5694575fe07bd89b40c55571830"
  3272. },
  3273. "require": {
  3274. "drupal/core": "^8 || ^9 || ^10",
  3275. "drupal/google_analytics_reports_api": "*"
  3276. },
  3277. "type": "drupal-module",
  3278. "extra": {
  3279. "drupal": {
  3280. "version": "8.x-3.1",
  3281. "datestamp": "1702542031",
  3282. "security-coverage": {
  3283. "status": "covered",
  3284. "message": "Covered by Drupal's security advisory policy"
  3285. }
  3286. }
  3287. },
  3288. "notification-url": "https://packages.drupal.org/8/downloads",
  3289. "license": [
  3290. "GPL-2.0-or-later"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "grendzy",
  3295. "homepage": "https://www.drupal.org/user/96647"
  3296. },
  3297. {
  3298. "name": "jantoine",
  3299. "homepage": "https://www.drupal.org/user/192192"
  3300. },
  3301. {
  3302. "name": "jkitching",
  3303. "homepage": "https://www.drupal.org/user/159067"
  3304. },
  3305. {
  3306. "name": "jojonaloha",
  3307. "homepage": "https://www.drupal.org/user/1579186"
  3308. },
  3309. {
  3310. "name": "klausi",
  3311. "homepage": "https://www.drupal.org/user/262198"
  3312. },
  3313. {
  3314. "name": "Mohammed J. Razem",
  3315. "homepage": "https://www.drupal.org/user/255384"
  3316. },
  3317. {
  3318. "name": "Plazik",
  3319. "homepage": "https://www.drupal.org/user/982724"
  3320. },
  3321. {
  3322. "name": "Rajab Natshah",
  3323. "homepage": "https://www.drupal.org/user/1414312"
  3324. },
  3325. {
  3326. "name": "raspberryman",
  3327. "homepage": "https://www.drupal.org/user/71464"
  3328. }
  3329. ],
  3330. "description": "Display statistics from Google Analytics using Views.",
  3331. "homepage": "https://www.drupal.org/project/google_analytics_reports",
  3332. "support": {
  3333. "source": "https://git.drupalcode.org/project/google_analytics_reports"
  3334. }
  3335. },
  3336. {
  3337. "name": "drupal/google_analytics_reports_api",
  3338. "version": "3.1.0",
  3339. "require": {
  3340. "drupal/core": "^8 || ^9 || ^10",
  3341. "drupal/google_analytics_reports": "^3"
  3342. },
  3343. "type": "metapackage",
  3344. "extra": {
  3345. "drupal": {
  3346. "version": "8.x-3.1",
  3347. "datestamp": "1702542031",
  3348. "security-coverage": {
  3349. "status": "covered",
  3350. "message": "Covered by Drupal's security advisory policy"
  3351. }
  3352. }
  3353. },
  3354. "notification-url": "https://packages.drupal.org/8/downloads",
  3355. "license": [
  3356. "GPL-2.0-or-later"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "grendzy",
  3361. "homepage": "https://www.drupal.org/user/96647"
  3362. },
  3363. {
  3364. "name": "jantoine",
  3365. "homepage": "https://www.drupal.org/user/192192"
  3366. },
  3367. {
  3368. "name": "jkitching",
  3369. "homepage": "https://www.drupal.org/user/159067"
  3370. },
  3371. {
  3372. "name": "jojonaloha",
  3373. "homepage": "https://www.drupal.org/user/1579186"
  3374. },
  3375. {
  3376. "name": "klausi",
  3377. "homepage": "https://www.drupal.org/user/262198"
  3378. },
  3379. {
  3380. "name": "Mohammed J. Razem",
  3381. "homepage": "https://www.drupal.org/user/255384"
  3382. },
  3383. {
  3384. "name": "Plazik",
  3385. "homepage": "https://www.drupal.org/user/982724"
  3386. },
  3387. {
  3388. "name": "Rajab Natshah",
  3389. "homepage": "https://www.drupal.org/user/1414312"
  3390. },
  3391. {
  3392. "name": "raspberryman",
  3393. "homepage": "https://www.drupal.org/user/71464"
  3394. }
  3395. ],
  3396. "description": "API to access statistics from the <a href=\"https://developers.google.com/analytics/devguides/reporting/core/v3/\">Google Analytics Core Reporting API</a>.",
  3397. "homepage": "https://www.drupal.org/project/google_analytics_reports",
  3398. "support": {
  3399. "source": "https://git.drupalcode.org/project/google_analytics_reports"
  3400. }
  3401. },
  3402. {
  3403. "name": "drupal/jquery_ui",
  3404. "version": "1.4.0",
  3405. "source": {
  3406. "type": "git",
  3407. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3408. "reference": "8.x-1.4"
  3409. },
  3410. "dist": {
  3411. "type": "zip",
  3412. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  3413. "reference": "8.x-1.4",
  3414. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  3415. },
  3416. "require": {
  3417. "drupal/core": "^8 || ^9"
  3418. },
  3419. "type": "drupal-module",
  3420. "extra": {
  3421. "drupal": {
  3422. "version": "8.x-1.4",
  3423. "datestamp": "1582149957",
  3424. "security-coverage": {
  3425. "status": "covered",
  3426. "message": "Covered by Drupal's security advisory policy"
  3427. }
  3428. }
  3429. },
  3430. "notification-url": "https://packages.drupal.org/8/downloads",
  3431. "license": [
  3432. "GPL-2.0-or-later"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "bnjmnm",
  3437. "homepage": "https://www.drupal.org/user/2369194"
  3438. },
  3439. {
  3440. "name": "jjeff",
  3441. "homepage": "https://www.drupal.org/user/17190"
  3442. },
  3443. {
  3444. "name": "lauriii",
  3445. "homepage": "https://www.drupal.org/user/1078742"
  3446. },
  3447. {
  3448. "name": "litwol",
  3449. "homepage": "https://www.drupal.org/user/78134"
  3450. },
  3451. {
  3452. "name": "mfb",
  3453. "homepage": "https://www.drupal.org/user/12302"
  3454. },
  3455. {
  3456. "name": "mfer",
  3457. "homepage": "https://www.drupal.org/user/25701"
  3458. },
  3459. {
  3460. "name": "mikelutz",
  3461. "homepage": "https://www.drupal.org/user/2972409"
  3462. },
  3463. {
  3464. "name": "nod_",
  3465. "homepage": "https://www.drupal.org/user/598310"
  3466. },
  3467. {
  3468. "name": "phenaproxima",
  3469. "homepage": "https://www.drupal.org/user/205645"
  3470. },
  3471. {
  3472. "name": "RobLoach",
  3473. "homepage": "https://www.drupal.org/user/61114"
  3474. },
  3475. {
  3476. "name": "sun",
  3477. "homepage": "https://www.drupal.org/user/54136"
  3478. },
  3479. {
  3480. "name": "webchick",
  3481. "homepage": "https://www.drupal.org/user/24967"
  3482. },
  3483. {
  3484. "name": "Wim Leers",
  3485. "homepage": "https://www.drupal.org/user/99777"
  3486. },
  3487. {
  3488. "name": "zrpnr",
  3489. "homepage": "https://www.drupal.org/user/1448368"
  3490. }
  3491. ],
  3492. "description": "Provides jQuery UI library.",
  3493. "homepage": "https://www.drupal.org/project/jquery_ui",
  3494. "support": {
  3495. "source": "https://git.drupalcode.org/project/jquery_ui"
  3496. }
  3497. },
  3498. {
  3499. "name": "drupal/jquery_ui_draggable",
  3500. "version": "1.2.0",
  3501. "source": {
  3502. "type": "git",
  3503. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3504. "reference": "8.x-1.2"
  3505. },
  3506. "dist": {
  3507. "type": "zip",
  3508. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  3509. "reference": "8.x-1.2",
  3510. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  3511. },
  3512. "require": {
  3513. "drupal/core": "^8 || ^9",
  3514. "drupal/jquery_ui": "*"
  3515. },
  3516. "type": "drupal-module",
  3517. "extra": {
  3518. "drupal": {
  3519. "version": "8.x-1.2",
  3520. "datestamp": "1582150027",
  3521. "security-coverage": {
  3522. "status": "covered",
  3523. "message": "Covered by Drupal's security advisory policy"
  3524. }
  3525. }
  3526. },
  3527. "notification-url": "https://packages.drupal.org/8/downloads",
  3528. "license": [
  3529. "GPL-2.0-or-later"
  3530. ],
  3531. "authors": [
  3532. {
  3533. "name": "bnjmnm",
  3534. "homepage": "https://www.drupal.org/user/2369194"
  3535. },
  3536. {
  3537. "name": "lauriii",
  3538. "homepage": "https://www.drupal.org/user/1078742"
  3539. },
  3540. {
  3541. "name": "zrpnr",
  3542. "homepage": "https://www.drupal.org/user/1448368"
  3543. }
  3544. ],
  3545. "description": "Provides jQuery UI Draggable library.",
  3546. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3547. "support": {
  3548. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3549. }
  3550. },
  3551. {
  3552. "name": "drupal/jquery_ui_droppable",
  3553. "version": "1.2.0",
  3554. "source": {
  3555. "type": "git",
  3556. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3557. "reference": "8.x-1.2"
  3558. },
  3559. "dist": {
  3560. "type": "zip",
  3561. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  3562. "reference": "8.x-1.2",
  3563. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  3564. },
  3565. "require": {
  3566. "drupal/core": "^8 || ^9",
  3567. "drupal/jquery_ui": "*",
  3568. "drupal/jquery_ui_draggable": "*"
  3569. },
  3570. "type": "drupal-module",
  3571. "extra": {
  3572. "drupal": {
  3573. "version": "8.x-1.2",
  3574. "datestamp": "1582150071",
  3575. "security-coverage": {
  3576. "status": "covered",
  3577. "message": "Covered by Drupal's security advisory policy"
  3578. }
  3579. }
  3580. },
  3581. "notification-url": "https://packages.drupal.org/8/downloads",
  3582. "license": [
  3583. "GPL-2.0-or-later"
  3584. ],
  3585. "authors": [
  3586. {
  3587. "name": "bnjmnm",
  3588. "homepage": "https://www.drupal.org/user/2369194"
  3589. },
  3590. {
  3591. "name": "lauriii",
  3592. "homepage": "https://www.drupal.org/user/1078742"
  3593. },
  3594. {
  3595. "name": "zrpnr",
  3596. "homepage": "https://www.drupal.org/user/1448368"
  3597. }
  3598. ],
  3599. "description": "Provides jQuery UI Droppable library.",
  3600. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3601. "support": {
  3602. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3603. }
  3604. },
  3605. {
  3606. "name": "drupal/leaflet",
  3607. "version": "1.46.0",
  3608. "source": {
  3609. "type": "git",
  3610. "url": "https://git.drupalcode.org/project/leaflet.git",
  3611. "reference": "8.x-1.46"
  3612. },
  3613. "dist": {
  3614. "type": "zip",
  3615. "url": "https://ftp.drupal.org/files/projects/leaflet-8.x-1.46.zip",
  3616. "reference": "8.x-1.46",
  3617. "shasum": "82da6a309b29c5e7cdcd54f4602379450982c317"
  3618. },
  3619. "require": {
  3620. "drupal/core": "^8.8 || ^9",
  3621. "drupal/geofield": "^1.0"
  3622. },
  3623. "type": "drupal-module",
  3624. "extra": {
  3625. "drupal": {
  3626. "version": "8.x-1.46",
  3627. "datestamp": "1605466674",
  3628. "security-coverage": {
  3629. "status": "covered",
  3630. "message": "Covered by Drupal's security advisory policy"
  3631. }
  3632. }
  3633. },
  3634. "notification-url": "https://packages.drupal.org/8/downloads",
  3635. "license": [
  3636. "GPL-2.0+"
  3637. ],
  3638. "authors": [
  3639. {
  3640. "name": "Italo Mairo",
  3641. "homepage": "https://www.drupal.org/u/itamair",
  3642. "role": "Maintainer"
  3643. },
  3644. {
  3645. "name": "Peter Vanhee (pvhee)",
  3646. "homepage": "https://www.drupal.org/u/pvhee",
  3647. "role": "Maintainer"
  3648. },
  3649. {
  3650. "name": "Rik de Boer (RdeBoer)",
  3651. "homepage": "https://www.drupal.org/u/rdeboer",
  3652. "role": "Maintainer"
  3653. },
  3654. {
  3655. "name": "Gabriel Carleton-Barnes (gcb)",
  3656. "homepage": "https://www.drupal.org/u/gcb",
  3657. "role": "Maintainer"
  3658. },
  3659. {
  3660. "name": "Lev Tsypin (levelos)",
  3661. "homepage": "https://www.drupal.org/u/levelos",
  3662. "role": "Maintainer"
  3663. },
  3664. {
  3665. "name": "Sean Larkin (seanberto)",
  3666. "homepage": "https://www.drupal.org/u/seanberto",
  3667. "role": "Maintainer"
  3668. }
  3669. ],
  3670. "description": "Integration with the Leaflet map scripting library.",
  3671. "homepage": "https://www.drupal.org/project/leaflet",
  3672. "support": {
  3673. "source": "https://git.drupalcode.org/project/leaflet",
  3674. "issues": "https://www.drupal.org/project/issues/leaflet"
  3675. }
  3676. },
  3677. {
  3678. "name": "drupal/linkit",
  3679. "version": "4.4.0",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://git.drupalcode.org/project/linkit.git",
  3683. "reference": "8.x-4.4"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.4.zip",
  3688. "reference": "8.x-4.4",
  3689. "shasum": "c6db47623f14e939f03375565229af45b15f5b91"
  3690. },
  3691. "require": {
  3692. "drupal/core": "~8.0"
  3693. },
  3694. "type": "drupal-module",
  3695. "extra": {
  3696. "drupal": {
  3697. "version": "8.x-4.4",
  3698. "datestamp": "1632946963",
  3699. "security-coverage": {
  3700. "status": "covered",
  3701. "message": "Covered by Drupal's security advisory policy"
  3702. }
  3703. }
  3704. },
  3705. "notification-url": "https://packages.drupal.org/8/downloads",
  3706. "license": [
  3707. "GPL-2.0+"
  3708. ],
  3709. "authors": [
  3710. {
  3711. "name": "Emil Stjerneman",
  3712. "homepage": "https://stjerneman.com",
  3713. "email": "emil@stjerneman.com",
  3714. "role": "Maintainer"
  3715. },
  3716. {
  3717. "name": "johnwebdev",
  3718. "homepage": "https://www.drupal.org/user/3331569"
  3719. },
  3720. {
  3721. "name": "mark_fullmer",
  3722. "homepage": "https://www.drupal.org/user/2612816"
  3723. }
  3724. ],
  3725. "description": "Linkit - Enriched linking experience",
  3726. "homepage": "http://drupal.org/project/linkit",
  3727. "support": {
  3728. "source": "http://cgit.drupalcode.org/linkit",
  3729. "issues": "http://drupal.org/project/linkit"
  3730. }
  3731. },
  3732. {
  3733. "name": "drupal/masonry",
  3734. "version": "1.2.0",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://git.drupalcode.org/project/masonry.git",
  3738. "reference": "8.x-1.2"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://ftp.drupal.org/files/projects/masonry-8.x-1.2.zip",
  3743. "reference": "8.x-1.2",
  3744. "shasum": "28b780a93c1692f4b746093c9e52b734cf179ff8"
  3745. },
  3746. "require": {
  3747. "drupal/core": "^8 || ^9"
  3748. },
  3749. "type": "drupal-module",
  3750. "extra": {
  3751. "drupal": {
  3752. "version": "8.x-1.2",
  3753. "datestamp": "1602247057",
  3754. "security-coverage": {
  3755. "status": "covered",
  3756. "message": "Covered by Drupal's security advisory policy"
  3757. }
  3758. }
  3759. },
  3760. "notification-url": "https://packages.drupal.org/8/downloads",
  3761. "license": [
  3762. "GPL-2.0-or-later"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Dominique Clause (Dom.)",
  3767. "homepage": "https://www.drupal.org/u/dom",
  3768. "role": "Maintainer"
  3769. },
  3770. {
  3771. "name": "Dom.",
  3772. "homepage": "https://www.drupal.org/user/801982"
  3773. }
  3774. ],
  3775. "description": "Masonry integrates with Masonry library",
  3776. "homepage": "https://www.drupal.org/project/masonry",
  3777. "support": {
  3778. "source": "https://git.drupalcode.org/project/masonry",
  3779. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  3780. }
  3781. },
  3782. {
  3783. "name": "drupal/matomo",
  3784. "version": "1.19.0",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://git.drupalcode.org/project/matomo.git",
  3788. "reference": "8.x-1.19"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.19.zip",
  3793. "reference": "8.x-1.19",
  3794. "shasum": "87fde54ef969522afba2cbf6847520c457055808"
  3795. },
  3796. "require": {
  3797. "drupal/core": "^8.8.0 || ^9.0.0"
  3798. },
  3799. "conflict": {
  3800. "drupal/csp": "<1.12"
  3801. },
  3802. "require-dev": {
  3803. "drupal/csp": "~1.12",
  3804. "drupal/php": "~1.1",
  3805. "drupal/token": "~1.9"
  3806. },
  3807. "type": "drupal-module",
  3808. "extra": {
  3809. "drupal": {
  3810. "version": "8.x-1.19",
  3811. "datestamp": "1653236432",
  3812. "security-coverage": {
  3813. "status": "covered",
  3814. "message": "Covered by Drupal's security advisory policy"
  3815. }
  3816. }
  3817. },
  3818. "notification-url": "https://packages.drupal.org/8/downloads",
  3819. "license": [
  3820. "GPL-2.0-or-later"
  3821. ],
  3822. "authors": [
  3823. {
  3824. "name": "C-Logemann",
  3825. "homepage": "https://www.drupal.org/user/218368"
  3826. },
  3827. {
  3828. "name": "Grimreaper",
  3829. "homepage": "https://www.drupal.org/user/2388214"
  3830. },
  3831. {
  3832. "name": "hass",
  3833. "homepage": "https://www.drupal.org/user/85918"
  3834. },
  3835. {
  3836. "name": "shelane",
  3837. "homepage": "https://www.drupal.org/user/2674989"
  3838. }
  3839. ],
  3840. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  3841. "homepage": "https://www.drupal.org/project/matomo",
  3842. "support": {
  3843. "source": "https://git.drupalcode.org/project/matomo"
  3844. }
  3845. },
  3846. {
  3847. "name": "drupal/mediteran",
  3848. "version": "1.30.0",
  3849. "source": {
  3850. "type": "git",
  3851. "url": "https://git.drupalcode.org/project/mediteran.git",
  3852. "reference": "8.x-1.30"
  3853. },
  3854. "dist": {
  3855. "type": "zip",
  3856. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.30.zip",
  3857. "reference": "8.x-1.30",
  3858. "shasum": "5945a30624e539ac739adaef423feb4ba88808f7"
  3859. },
  3860. "require": {
  3861. "drupal/core": "^8.8 || ^9 || ^10"
  3862. },
  3863. "type": "drupal-theme",
  3864. "extra": {
  3865. "drupal": {
  3866. "version": "8.x-1.30",
  3867. "datestamp": "1690788548",
  3868. "security-coverage": {
  3869. "status": "covered",
  3870. "message": "Covered by Drupal's security advisory policy"
  3871. }
  3872. }
  3873. },
  3874. "notification-url": "https://packages.drupal.org/8/downloads",
  3875. "license": [
  3876. "GPL-2.0-or-later"
  3877. ],
  3878. "authors": [
  3879. {
  3880. "name": "bataboza",
  3881. "homepage": "https://www.drupal.org/user/3581173"
  3882. },
  3883. {
  3884. "name": "doxigo",
  3885. "homepage": "https://www.drupal.org/user/1331334"
  3886. },
  3887. {
  3888. "name": "dqd",
  3889. "homepage": "https://www.drupal.org/user/1001934"
  3890. },
  3891. {
  3892. "name": "Hosisam",
  3893. "homepage": "https://www.drupal.org/user/3449435"
  3894. },
  3895. {
  3896. "name": "Nitin shrivastava",
  3897. "homepage": "https://www.drupal.org/user/3725211"
  3898. },
  3899. {
  3900. "name": "paulrad",
  3901. "homepage": "https://www.drupal.org/user/3722439"
  3902. },
  3903. {
  3904. "name": "szeidler",
  3905. "homepage": "https://www.drupal.org/user/767652"
  3906. }
  3907. ],
  3908. "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>.",
  3909. "homepage": "https://www.drupal.org/project/mediteran",
  3910. "support": {
  3911. "source": "https://git.drupalcode.org/project/mediteran"
  3912. }
  3913. },
  3914. {
  3915. "name": "drupal/metatag",
  3916. "version": "1.16.0",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://git.drupalcode.org/project/metatag.git",
  3920. "reference": "8.x-1.16"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip",
  3925. "reference": "8.x-1.16",
  3926. "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c"
  3927. },
  3928. "require": {
  3929. "drupal/core": "^8 || ^9",
  3930. "drupal/token": "^1.0"
  3931. },
  3932. "require-dev": {
  3933. "drupal/devel": "^4.0",
  3934. "drupal/metatag_dc": "*",
  3935. "drupal/metatag_open_graph": "*",
  3936. "drupal/page_manager": "4.x-dev",
  3937. "drupal/panelizer": "4.x-dev",
  3938. "drupal/redirect": "1.x-dev"
  3939. },
  3940. "type": "drupal-module",
  3941. "extra": {
  3942. "drupal": {
  3943. "version": "8.x-1.16",
  3944. "datestamp": "1615820867",
  3945. "security-coverage": {
  3946. "status": "covered",
  3947. "message": "Covered by Drupal's security advisory policy"
  3948. }
  3949. }
  3950. },
  3951. "notification-url": "https://packages.drupal.org/8/downloads",
  3952. "license": [
  3953. "GPL-2.0-or-later"
  3954. ],
  3955. "authors": [
  3956. {
  3957. "name": "See contributors",
  3958. "homepage": "https://www.drupal.org/node/640498/committers",
  3959. "role": "Developer"
  3960. },
  3961. {
  3962. "name": "Dave Reid",
  3963. "homepage": "https://www.drupal.org/user/53892"
  3964. }
  3965. ],
  3966. "description": "Manage meta tags for all entities.",
  3967. "homepage": "https://www.drupal.org/project/metatag",
  3968. "keywords": [
  3969. "Drupal",
  3970. "seo"
  3971. ],
  3972. "support": {
  3973. "source": "https://git.drupalcode.org/project/metatag",
  3974. "issues": "https://www.drupal.org/project/issues/metatag",
  3975. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3976. }
  3977. },
  3978. {
  3979. "name": "drupal/page_manager",
  3980. "version": "4.0.0-beta6",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://git.drupalcode.org/project/page_manager.git",
  3984. "reference": "8.x-4.0-beta6"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-beta6.zip",
  3989. "reference": "8.x-4.0-beta6",
  3990. "shasum": "bf0ac07177b1cd6c1a3da80f727f1448221ee98a"
  3991. },
  3992. "require": {
  3993. "drupal/core": "^8.8 || ^9",
  3994. "drupal/ctools": "^3.1"
  3995. },
  3996. "type": "drupal-module",
  3997. "extra": {
  3998. "drupal": {
  3999. "version": "8.x-4.0-beta6",
  4000. "datestamp": "1591125562",
  4001. "security-coverage": {
  4002. "status": "not-covered",
  4003. "message": "Beta releases are not covered by Drupal security advisories."
  4004. }
  4005. },
  4006. "branch-alias": {
  4007. "dev-8.x-4.x": "4.x-dev"
  4008. }
  4009. },
  4010. "notification-url": "https://packages.drupal.org/8/downloads",
  4011. "license": [
  4012. "GPL-2.0-or-later"
  4013. ],
  4014. "authors": [
  4015. {
  4016. "name": "Tim Plunkett",
  4017. "homepage": "https://www.drupal.org/u/tim.plunkett",
  4018. "role": "Maintainer"
  4019. },
  4020. {
  4021. "name": "EclipseGc",
  4022. "homepage": "https://www.drupal.org/user/61203"
  4023. },
  4024. {
  4025. "name": "ivnish",
  4026. "homepage": "https://www.drupal.org/user/3547706"
  4027. },
  4028. {
  4029. "name": "japerry",
  4030. "homepage": "https://www.drupal.org/user/45640"
  4031. },
  4032. {
  4033. "name": "joelpittet",
  4034. "homepage": "https://www.drupal.org/user/160302"
  4035. },
  4036. {
  4037. "name": "manuel.adan",
  4038. "homepage": "https://www.drupal.org/user/516420"
  4039. },
  4040. {
  4041. "name": "phenaproxima",
  4042. "homepage": "https://www.drupal.org/user/205645"
  4043. }
  4044. ],
  4045. "description": "Provides a way to place blocks on a custom page.",
  4046. "homepage": "https://www.drupal.org/project/page_manager",
  4047. "support": {
  4048. "source": "https://git.drupal.org/project/page_manager.git",
  4049. "issues": "https://www.drupal.org/project/issues/page_manager",
  4050. "irc": "irc://irc.freenode.org/drupal-contribute"
  4051. }
  4052. },
  4053. {
  4054. "name": "drupal/panels",
  4055. "version": "4.6.0",
  4056. "source": {
  4057. "type": "git",
  4058. "url": "https://git.drupalcode.org/project/panels.git",
  4059. "reference": "8.x-4.6"
  4060. },
  4061. "dist": {
  4062. "type": "zip",
  4063. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.6.zip",
  4064. "reference": "8.x-4.6",
  4065. "shasum": "6430436a4d8fb64f8c113729dd92505a1e46b794"
  4066. },
  4067. "require": {
  4068. "drupal/core": "^8.8 || ^9",
  4069. "drupal/ctools": ">=3.0.0",
  4070. "drupal/jquery_ui_droppable": "^1.2"
  4071. },
  4072. "require-dev": {
  4073. "drupal/jquery_ui_droppable": "*",
  4074. "drupal/page_manager": "^4"
  4075. },
  4076. "type": "drupal-module",
  4077. "extra": {
  4078. "drupal": {
  4079. "version": "8.x-4.6",
  4080. "datestamp": "1585870866",
  4081. "security-coverage": {
  4082. "status": "covered",
  4083. "message": "Covered by Drupal's security advisory policy"
  4084. }
  4085. },
  4086. "branch-alias": {
  4087. "dev-8.x-4.x": "4.x-dev"
  4088. }
  4089. },
  4090. "notification-url": "https://packages.drupal.org/8/downloads",
  4091. "license": [
  4092. "GPL-2.0+"
  4093. ],
  4094. "authors": [
  4095. {
  4096. "name": "Jakob Perry",
  4097. "homepage": "https://www.drupal.org/u/japerry"
  4098. },
  4099. {
  4100. "name": "Samuel Mortenson",
  4101. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  4102. },
  4103. {
  4104. "name": "See other contributors",
  4105. "homepage": "https://www.drupal.org/node/74958/committers"
  4106. },
  4107. {
  4108. "name": "joelpittet",
  4109. "homepage": "https://www.drupal.org/user/160302"
  4110. },
  4111. {
  4112. "name": "Letharion",
  4113. "homepage": "https://www.drupal.org/user/373603"
  4114. },
  4115. {
  4116. "name": "merlinofchaos",
  4117. "homepage": "https://www.drupal.org/user/26979"
  4118. },
  4119. {
  4120. "name": "neclimdul",
  4121. "homepage": "https://www.drupal.org/user/48673"
  4122. },
  4123. {
  4124. "name": "phenaproxima",
  4125. "homepage": "https://www.drupal.org/user/205645"
  4126. },
  4127. {
  4128. "name": "samuel.mortenson",
  4129. "homepage": "https://www.drupal.org/user/2582268"
  4130. }
  4131. ],
  4132. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  4133. "homepage": "https://www.drupal.org/project/panels",
  4134. "support": {
  4135. "source": "http://git.drupal.org/project/panels.git",
  4136. "issues": "https://www.drupal.org/project/issues/panels",
  4137. "irc": "irc://irc.freenode.org/drupal-scotch"
  4138. }
  4139. },
  4140. {
  4141. "name": "drupal/paragraphs",
  4142. "version": "1.13.0",
  4143. "source": {
  4144. "type": "git",
  4145. "url": "https://git.drupalcode.org/project/paragraphs.git",
  4146. "reference": "8.x-1.13"
  4147. },
  4148. "dist": {
  4149. "type": "zip",
  4150. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.13.zip",
  4151. "reference": "8.x-1.13",
  4152. "shasum": "5e06df68411b17a5d8adaa292ddf70840d00876f"
  4153. },
  4154. "require": {
  4155. "drupal/core": "^8.8 || ^9",
  4156. "drupal/entity_reference_revisions": "~1.3"
  4157. },
  4158. "require-dev": {
  4159. "drupal/block_field": "~1.0",
  4160. "drupal/ctools": "3.x-dev",
  4161. "drupal/diff": "~1.0",
  4162. "drupal/entity_browser": "2.x-dev",
  4163. "drupal/entity_usage": "2.x-dev",
  4164. "drupal/field_group": "3.x-dev",
  4165. "drupal/inline_entity_form": "~1.0",
  4166. "drupal/paragraphs-paragraphs_library": "*",
  4167. "drupal/replicate": "~1.0",
  4168. "drupal/search_api": "1.x-dev",
  4169. "drupal/search_api_db": "*"
  4170. },
  4171. "suggest": {
  4172. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  4173. },
  4174. "type": "drupal-module",
  4175. "extra": {
  4176. "drupal": {
  4177. "version": "8.x-1.13",
  4178. "datestamp": "1646121716",
  4179. "security-coverage": {
  4180. "status": "covered",
  4181. "message": "Covered by Drupal's security advisory policy"
  4182. }
  4183. }
  4184. },
  4185. "notification-url": "https://packages.drupal.org/8/downloads",
  4186. "license": [
  4187. "GPL-2.0-or-later"
  4188. ],
  4189. "authors": [
  4190. {
  4191. "name": "Berdir",
  4192. "homepage": "https://www.drupal.org/user/214652"
  4193. },
  4194. {
  4195. "name": "Frans",
  4196. "homepage": "https://www.drupal.org/user/514222"
  4197. },
  4198. {
  4199. "name": "jeroen.b",
  4200. "homepage": "https://www.drupal.org/user/1853532"
  4201. },
  4202. {
  4203. "name": "jstoller",
  4204. "homepage": "https://www.drupal.org/user/99012"
  4205. },
  4206. {
  4207. "name": "miro_dietiker",
  4208. "homepage": "https://www.drupal.org/user/227761"
  4209. },
  4210. {
  4211. "name": "Primsi",
  4212. "homepage": "https://www.drupal.org/user/282629"
  4213. }
  4214. ],
  4215. "description": "Enables the creation of Paragraphs entities.",
  4216. "homepage": "https://www.drupal.org/project/paragraphs",
  4217. "support": {
  4218. "source": "https://git.drupalcode.org/project/paragraphs"
  4219. }
  4220. },
  4221. {
  4222. "name": "drupal/pathauto",
  4223. "version": "1.10.0",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://git.drupalcode.org/project/pathauto.git",
  4227. "reference": "8.x-1.10"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4232. "reference": "8.x-1.10",
  4233. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4234. },
  4235. "require": {
  4236. "drupal/core": "^8.8 || ^9",
  4237. "drupal/ctools": "*",
  4238. "drupal/token": "*"
  4239. },
  4240. "suggest": {
  4241. "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."
  4242. },
  4243. "type": "drupal-module",
  4244. "extra": {
  4245. "drupal": {
  4246. "version": "8.x-1.10",
  4247. "datestamp": "1650806739",
  4248. "security-coverage": {
  4249. "status": "covered",
  4250. "message": "Covered by Drupal's security advisory policy"
  4251. }
  4252. },
  4253. "drush": {
  4254. "services": {
  4255. "drush.services.yml": "^9 || ^10"
  4256. }
  4257. }
  4258. },
  4259. "notification-url": "https://packages.drupal.org/8/downloads",
  4260. "license": [
  4261. "GPL-2.0-or-later"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Berdir",
  4266. "homepage": "https://www.drupal.org/user/214652"
  4267. },
  4268. {
  4269. "name": "Dave Reid",
  4270. "homepage": "https://www.drupal.org/user/53892"
  4271. },
  4272. {
  4273. "name": "Freso",
  4274. "homepage": "https://www.drupal.org/user/27504"
  4275. },
  4276. {
  4277. "name": "greggles",
  4278. "homepage": "https://www.drupal.org/user/36762"
  4279. }
  4280. ],
  4281. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4282. "homepage": "https://www.drupal.org/project/pathauto",
  4283. "support": {
  4284. "source": "https://cgit.drupalcode.org/pathauto",
  4285. "issues": "https://www.drupal.org/project/issues/pathauto",
  4286. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4287. }
  4288. },
  4289. {
  4290. "name": "drupal/redirect",
  4291. "version": "1.7.0",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://git.drupalcode.org/project/redirect.git",
  4295. "reference": "8.x-1.7"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip",
  4300. "reference": "8.x-1.7",
  4301. "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877"
  4302. },
  4303. "require": {
  4304. "drupal/core": "^8.8 || ^9"
  4305. },
  4306. "type": "drupal-module",
  4307. "extra": {
  4308. "drupal": {
  4309. "version": "8.x-1.7",
  4310. "datestamp": "1639380488",
  4311. "security-coverage": {
  4312. "status": "covered",
  4313. "message": "Covered by Drupal's security advisory policy"
  4314. }
  4315. }
  4316. },
  4317. "notification-url": "https://packages.drupal.org/8/downloads",
  4318. "license": [
  4319. "GPL-2.0-or-later"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "Berdir",
  4324. "homepage": "https://www.drupal.org/user/214652"
  4325. },
  4326. {
  4327. "name": "Dave Reid",
  4328. "homepage": "https://www.drupal.org/user/53892"
  4329. },
  4330. {
  4331. "name": "Kristen Pol",
  4332. "homepage": "https://www.drupal.org/user/8389"
  4333. },
  4334. {
  4335. "name": "pifagor",
  4336. "homepage": "https://www.drupal.org/user/2375692"
  4337. }
  4338. ],
  4339. "description": "Allows users to redirect from old URLs to new URLs.",
  4340. "homepage": "https://www.drupal.org/project/redirect",
  4341. "support": {
  4342. "source": "https://git.drupalcode.org/project/redirect"
  4343. }
  4344. },
  4345. {
  4346. "name": "drupal/redirect_after_login",
  4347. "version": "2.7.0",
  4348. "source": {
  4349. "type": "git",
  4350. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  4351. "reference": "8.x-2.7"
  4352. },
  4353. "dist": {
  4354. "type": "zip",
  4355. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.7.zip",
  4356. "reference": "8.x-2.7",
  4357. "shasum": "3ce87df792e918c2ec5a00e24818c893e558d111"
  4358. },
  4359. "require": {
  4360. "drupal/core": "^8 || ^9"
  4361. },
  4362. "type": "drupal-module",
  4363. "extra": {
  4364. "drupal": {
  4365. "version": "8.x-2.7",
  4366. "datestamp": "1611645039",
  4367. "security-coverage": {
  4368. "status": "covered",
  4369. "message": "Covered by Drupal's security advisory policy"
  4370. }
  4371. }
  4372. },
  4373. "notification-url": "https://packages.drupal.org/8/downloads",
  4374. "license": [
  4375. "GPL-2.0+"
  4376. ],
  4377. "authors": [
  4378. {
  4379. "name": "Shamsher Alam",
  4380. "homepage": "https://www.drupal.org/u/shamsher_alam",
  4381. "role": "Author"
  4382. },
  4383. {
  4384. "name": "prempatel2447",
  4385. "homepage": "https://www.drupal.org/user/3250112"
  4386. },
  4387. {
  4388. "name": "rahul-kr-sh",
  4389. "homepage": "https://www.drupal.org/user/3561577"
  4390. },
  4391. {
  4392. "name": "Shamsher_Alam",
  4393. "homepage": "https://www.drupal.org/user/2742027"
  4394. },
  4395. {
  4396. "name": "VladimirAus",
  4397. "homepage": "https://www.drupal.org/user/673120"
  4398. }
  4399. ],
  4400. "description": "Redirect user after login to a configured url",
  4401. "homepage": "https://drupal.org/project/redirect_after_login",
  4402. "support": {
  4403. "source": "https://git.drupalcode.org/project/redirect_after_login"
  4404. }
  4405. },
  4406. {
  4407. "name": "drupal/redis",
  4408. "version": "1.5.0",
  4409. "source": {
  4410. "type": "git",
  4411. "url": "https://git.drupalcode.org/project/redis.git",
  4412. "reference": "8.x-1.5"
  4413. },
  4414. "dist": {
  4415. "type": "zip",
  4416. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  4417. "reference": "8.x-1.5",
  4418. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  4419. },
  4420. "require": {
  4421. "drupal/core": "^8.8 || ^9"
  4422. },
  4423. "suggest": {
  4424. "predis/predis": "^1.1.1"
  4425. },
  4426. "type": "drupal-module",
  4427. "extra": {
  4428. "drupal": {
  4429. "version": "8.x-1.5",
  4430. "datestamp": "1609972488",
  4431. "security-coverage": {
  4432. "status": "covered",
  4433. "message": "Covered by Drupal's security advisory policy"
  4434. }
  4435. }
  4436. },
  4437. "autoload": {
  4438. "psr-4": {
  4439. "Drupal\\redis\\": "src"
  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": "greg.1.anderson",
  4453. "homepage": "https://www.drupal.org/user/438598"
  4454. },
  4455. {
  4456. "name": "kporras07",
  4457. "homepage": "https://www.drupal.org/user/1349780"
  4458. },
  4459. {
  4460. "name": "pounard",
  4461. "homepage": "https://www.drupal.org/user/240164"
  4462. }
  4463. ],
  4464. "description": "Integration of Drupal with the Redis key-value store.",
  4465. "homepage": "https://www.drupal.org/project/redis",
  4466. "support": {
  4467. "source": "https://git.drupalcode.org/project/redis"
  4468. }
  4469. },
  4470. {
  4471. "name": "drupal/schema_metatag",
  4472. "version": "1.8.0",
  4473. "source": {
  4474. "type": "git",
  4475. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  4476. "reference": "8.x-1.8"
  4477. },
  4478. "dist": {
  4479. "type": "zip",
  4480. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.8.zip",
  4481. "reference": "8.x-1.8",
  4482. "shasum": "dac50842bcac35607b0be8e28518e08fa3f6b66f"
  4483. },
  4484. "require": {
  4485. "drupal/core": "^8 || ^9",
  4486. "drupal/metatag": "^1.0"
  4487. },
  4488. "require-dev": {
  4489. "drupal/metatag_views": "*",
  4490. "drupal/schema_article": "*",
  4491. "drupal/schema_organization": "*"
  4492. },
  4493. "type": "drupal-module",
  4494. "extra": {
  4495. "drupal": {
  4496. "version": "8.x-1.8",
  4497. "datestamp": "1599905688",
  4498. "security-coverage": {
  4499. "status": "covered",
  4500. "message": "Covered by Drupal's security advisory policy"
  4501. }
  4502. }
  4503. },
  4504. "notification-url": "https://packages.drupal.org/8/downloads",
  4505. "license": [
  4506. "GPL-2.0+"
  4507. ],
  4508. "authors": [
  4509. {
  4510. "name": "DamienMcKenna",
  4511. "homepage": "https://www.drupal.org/user/108450"
  4512. },
  4513. {
  4514. "name": "KarenS",
  4515. "homepage": "https://www.drupal.org/user/45874"
  4516. },
  4517. {
  4518. "name": "wells",
  4519. "homepage": "https://www.drupal.org/user/2452278"
  4520. }
  4521. ],
  4522. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  4523. "homepage": "https://www.drupal.org/project/schema_metatag",
  4524. "keywords": [
  4525. "Drupal"
  4526. ],
  4527. "support": {
  4528. "source": "http://cgit.drupalcode.org/schema_metatag",
  4529. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  4530. }
  4531. },
  4532. {
  4533. "name": "drupal/search_api",
  4534. "version": "1.18.0",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://git.drupalcode.org/project/search_api.git",
  4538. "reference": "8.x-1.18"
  4539. },
  4540. "dist": {
  4541. "type": "zip",
  4542. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.18.zip",
  4543. "reference": "8.x-1.18",
  4544. "shasum": "6cf1d6820ba55891e204bac40b6031ed15db482a"
  4545. },
  4546. "require": {
  4547. "drupal/core": "^8.8 || ^9"
  4548. },
  4549. "conflict": {
  4550. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4551. },
  4552. "require-dev": {
  4553. "drupal/language_fallback_fix": "@dev",
  4554. "drupal/search_api_autocomplete": "@dev",
  4555. "drupal/search_api_db": "*"
  4556. },
  4557. "suggest": {
  4558. "drupal/facets": "Adds the ability to create faceted searches.",
  4559. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4560. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4561. },
  4562. "type": "drupal-module",
  4563. "extra": {
  4564. "drupal": {
  4565. "version": "8.x-1.18",
  4566. "datestamp": "1603359374",
  4567. "security-coverage": {
  4568. "status": "covered",
  4569. "message": "Covered by Drupal's security advisory policy"
  4570. }
  4571. },
  4572. "drush": {
  4573. "services": {
  4574. "drush.services.yml": "^9"
  4575. }
  4576. }
  4577. },
  4578. "notification-url": "https://packages.drupal.org/8/downloads",
  4579. "license": [
  4580. "GPL-2.0-or-later"
  4581. ],
  4582. "authors": [
  4583. {
  4584. "name": "Thomas Seidl",
  4585. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4586. },
  4587. {
  4588. "name": "Nick Veenhof",
  4589. "homepage": "https://www.drupal.org/u/nick_vh"
  4590. },
  4591. {
  4592. "name": "See other contributors",
  4593. "homepage": "https://www.drupal.org/node/790418/committers"
  4594. }
  4595. ],
  4596. "description": "Provides a generic framework for modules offering search capabilities.",
  4597. "homepage": "https://www.drupal.org/project/search_api",
  4598. "support": {
  4599. "source": "https://git.drupalcode.org/project/search_api",
  4600. "issues": "https://www.drupal.org/project/issues/search_api",
  4601. "irc": "irc://irc.freenode.org/drupal-search-api"
  4602. }
  4603. },
  4604. {
  4605. "name": "drupal/site_settings",
  4606. "version": "1.20.0",
  4607. "source": {
  4608. "type": "git",
  4609. "url": "https://git.drupalcode.org/project/site_settings.git",
  4610. "reference": "8.x-1.20"
  4611. },
  4612. "dist": {
  4613. "type": "zip",
  4614. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.20.zip",
  4615. "reference": "8.x-1.20",
  4616. "shasum": "b1e3b07437ef0ff7a907b7b6319f16db3942fb1c"
  4617. },
  4618. "require": {
  4619. "drupal/core": "^8 || ^9 || ^10"
  4620. },
  4621. "type": "drupal-module",
  4622. "extra": {
  4623. "drupal": {
  4624. "version": "8.x-1.20",
  4625. "datestamp": "1669790573",
  4626. "security-coverage": {
  4627. "status": "covered",
  4628. "message": "Covered by Drupal's security advisory policy"
  4629. }
  4630. }
  4631. },
  4632. "notification-url": "https://packages.drupal.org/8/downloads",
  4633. "license": [
  4634. "GPL-2.0+"
  4635. ],
  4636. "authors": [
  4637. {
  4638. "name": "bobi-mel",
  4639. "homepage": "https://www.drupal.org/user/3741631"
  4640. },
  4641. {
  4642. "name": "bohart",
  4643. "homepage": "https://www.drupal.org/user/289861"
  4644. },
  4645. {
  4646. "name": "scott_euser",
  4647. "homepage": "https://www.drupal.org/user/3267594"
  4648. }
  4649. ],
  4650. "description": "Provides a site settings entity",
  4651. "homepage": "https://www.drupal.org/project/site_settings",
  4652. "keywords": [
  4653. "Drupal"
  4654. ],
  4655. "support": {
  4656. "source": "http://cgit.drupalcode.org/site_settings",
  4657. "issues": "http://drupal.org/project/issues/site_settings"
  4658. }
  4659. },
  4660. {
  4661. "name": "drupal/subpathauto",
  4662. "version": "1.3.0",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://git.drupalcode.org/project/subpathauto.git",
  4666. "reference": "8.x-1.3"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip",
  4671. "reference": "8.x-1.3",
  4672. "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d"
  4673. },
  4674. "require": {
  4675. "drupal/core": "^8.8 || ^9 || ^10"
  4676. },
  4677. "require-dev": {
  4678. "drupal/redirect": "*"
  4679. },
  4680. "type": "drupal-module",
  4681. "extra": {
  4682. "drupal": {
  4683. "version": "8.x-1.3",
  4684. "datestamp": "1676316639",
  4685. "security-coverage": {
  4686. "status": "covered",
  4687. "message": "Covered by Drupal's security advisory policy"
  4688. }
  4689. }
  4690. },
  4691. "notification-url": "https://packages.drupal.org/8/downloads",
  4692. "license": [
  4693. "GPL-2.0-or-later"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Dave Reid",
  4698. "homepage": "https://www.drupal.org/user/53892"
  4699. },
  4700. {
  4701. "name": "lauriii",
  4702. "homepage": "https://www.drupal.org/user/1078742"
  4703. },
  4704. {
  4705. "name": "NickDickinsonWilde",
  4706. "homepage": "https://www.drupal.org/user/3094661"
  4707. }
  4708. ],
  4709. "description": "Provides support for extending sub-paths of URL aliases.",
  4710. "homepage": "https://www.drupal.org/project/subpathauto",
  4711. "support": {
  4712. "source": "https://cgit.drupalcode.org/subpathauto",
  4713. "issues": "https://www.drupal.org/project/issues/subpathauto"
  4714. }
  4715. },
  4716. {
  4717. "name": "drupal/tacjs",
  4718. "version": "3.10.0",
  4719. "source": {
  4720. "type": "git",
  4721. "url": "https://git.drupalcode.org/project/tacjs.git",
  4722. "reference": "8.x-3.10"
  4723. },
  4724. "dist": {
  4725. "type": "zip",
  4726. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-3.10.zip",
  4727. "reference": "8.x-3.10",
  4728. "shasum": "7b26dea8c20dc7925cc38c1fe3bcd75de65df6ec"
  4729. },
  4730. "require": {
  4731. "drupal/core": "^8 || ^9"
  4732. },
  4733. "type": "drupal-module",
  4734. "extra": {
  4735. "drupal": {
  4736. "version": "8.x-3.10",
  4737. "datestamp": "1597403474",
  4738. "security-coverage": {
  4739. "status": "covered",
  4740. "message": "Covered by Drupal's security advisory policy"
  4741. }
  4742. }
  4743. },
  4744. "notification-url": "https://packages.drupal.org/8/downloads",
  4745. "license": [
  4746. "GPL-2.0-or-later"
  4747. ],
  4748. "authors": [
  4749. {
  4750. "name": "asmaakhalfi",
  4751. "homepage": "https://www.drupal.org/user/3587145"
  4752. },
  4753. {
  4754. "name": "boulaffasae",
  4755. "homepage": "https://www.drupal.org/user/3584750"
  4756. },
  4757. {
  4758. "name": "chaimaariz",
  4759. "homepage": "https://www.drupal.org/user/3549766"
  4760. },
  4761. {
  4762. "name": "k.asmouh",
  4763. "homepage": "https://www.drupal.org/user/3135943"
  4764. },
  4765. {
  4766. "name": "lamlih",
  4767. "homepage": "https://www.drupal.org/user/3708454"
  4768. },
  4769. {
  4770. "name": "mably",
  4771. "homepage": "https://www.drupal.org/user/3375160"
  4772. },
  4773. {
  4774. "name": "netsliver",
  4775. "homepage": "https://www.drupal.org/user/3082011"
  4776. },
  4777. {
  4778. "name": "prudloff",
  4779. "homepage": "https://www.drupal.org/user/3611858"
  4780. }
  4781. ],
  4782. "description": "Comply to the European cookie law using tarteaucitron.js",
  4783. "homepage": "https://www.drupal.org/project/tacjs",
  4784. "support": {
  4785. "source": "https://git.drupalcode.org/project/tacjs"
  4786. }
  4787. },
  4788. {
  4789. "name": "drupal/time_range",
  4790. "version": "8.1.3",
  4791. "source": {
  4792. "type": "git",
  4793. "url": "https://git.drupalcode.org/project/time_range.git",
  4794. "reference": "8.1.3"
  4795. },
  4796. "dist": {
  4797. "type": "zip",
  4798. "url": "https://ftp.drupal.org/files/projects/time_range-8.1.3.zip",
  4799. "reference": "8.1.3",
  4800. "shasum": "404597e00e2e972c32647e8c1963efb0d7566d90"
  4801. },
  4802. "require": {
  4803. "drupal/core": "^8 || ^9"
  4804. },
  4805. "type": "drupal-module",
  4806. "extra": {
  4807. "drupal": {
  4808. "version": "8.1.3",
  4809. "datestamp": "1591497359",
  4810. "security-coverage": {
  4811. "status": "covered",
  4812. "message": "Covered by Drupal's security advisory policy"
  4813. }
  4814. }
  4815. },
  4816. "notification-url": "https://packages.drupal.org/8/downloads",
  4817. "license": [
  4818. "GPL-2.0+"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "dravenk",
  4823. "homepage": "https://www.drupal.org/user/3452417"
  4824. }
  4825. ],
  4826. "description": "Provides the form widget to fill in time range.",
  4827. "homepage": "https://github.com/DravenK/time-range.git",
  4828. "support": {
  4829. "source": "https://github.com/DravenK/time-range.git",
  4830. "issues": "https://github.com/DravenK/time-range/issues"
  4831. }
  4832. },
  4833. {
  4834. "name": "drupal/token",
  4835. "version": "1.10.0",
  4836. "source": {
  4837. "type": "git",
  4838. "url": "https://git.drupalcode.org/project/token.git",
  4839. "reference": "8.x-1.10"
  4840. },
  4841. "dist": {
  4842. "type": "zip",
  4843. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  4844. "reference": "8.x-1.10",
  4845. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  4846. },
  4847. "require": {
  4848. "drupal/core": "^8.8 || ^9"
  4849. },
  4850. "type": "drupal-module",
  4851. "extra": {
  4852. "drupal": {
  4853. "version": "8.x-1.10",
  4854. "datestamp": "1638619775",
  4855. "security-coverage": {
  4856. "status": "covered",
  4857. "message": "Covered by Drupal's security advisory policy"
  4858. }
  4859. },
  4860. "drush": {
  4861. "services": {
  4862. "drush.services.yml": "^9 || ^10"
  4863. }
  4864. }
  4865. },
  4866. "notification-url": "https://packages.drupal.org/8/downloads",
  4867. "license": [
  4868. "GPL-2.0-or-later"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Berdir",
  4873. "homepage": "https://www.drupal.org/user/214652"
  4874. },
  4875. {
  4876. "name": "Dave Reid",
  4877. "homepage": "https://www.drupal.org/user/53892"
  4878. },
  4879. {
  4880. "name": "eaton",
  4881. "homepage": "https://www.drupal.org/user/16496"
  4882. },
  4883. {
  4884. "name": "fago",
  4885. "homepage": "https://www.drupal.org/user/16747"
  4886. },
  4887. {
  4888. "name": "greggles",
  4889. "homepage": "https://www.drupal.org/user/36762"
  4890. },
  4891. {
  4892. "name": "mikeryan",
  4893. "homepage": "https://www.drupal.org/user/4420"
  4894. }
  4895. ],
  4896. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4897. "homepage": "https://www.drupal.org/project/token",
  4898. "support": {
  4899. "source": "https://git.drupalcode.org/project/token"
  4900. }
  4901. },
  4902. {
  4903. "name": "drupal/total_control",
  4904. "version": "3.0.4",
  4905. "source": {
  4906. "type": "git",
  4907. "url": "https://git.drupalcode.org/project/total_control.git",
  4908. "reference": "3.0.4"
  4909. },
  4910. "dist": {
  4911. "type": "zip",
  4912. "url": "https://ftp.drupal.org/files/projects/total_control-3.0.4.zip",
  4913. "reference": "3.0.4",
  4914. "shasum": "2b2643fedbae89fdb7a5638f61a2def74af5908f"
  4915. },
  4916. "require": {
  4917. "drupal/core": "~8.9 || ~9.0 || ~10.0",
  4918. "drupal/ctools": "~3.0 || ~4.0",
  4919. "drupal/page_manager": "*",
  4920. "drupal/panels": "~4.0"
  4921. },
  4922. "type": "drupal-module",
  4923. "extra": {
  4924. "drupal": {
  4925. "version": "3.0.4",
  4926. "datestamp": "1687455957",
  4927. "security-coverage": {
  4928. "status": "covered",
  4929. "message": "Covered by Drupal's security advisory policy"
  4930. }
  4931. },
  4932. "branch-alias": {
  4933. "dev-3.0.x": "3.0.x-dev"
  4934. }
  4935. },
  4936. "notification-url": "https://packages.drupal.org/8/downloads",
  4937. "license": [
  4938. "GPL-2.0-or-later"
  4939. ],
  4940. "authors": [
  4941. {
  4942. "name": "Jen Lampton",
  4943. "homepage": "https://www.drupal.org/u/jenlampton",
  4944. "role": "Maintainer"
  4945. },
  4946. {
  4947. "name": "Mohammed J. Razem",
  4948. "homepage": "https://www.drupal.org/u/mohammed-j-razem",
  4949. "role": "Maintainer"
  4950. },
  4951. {
  4952. "name": "Abdulla Abu-Zakham",
  4953. "homepage": "https://www.drupal.org/u/abu-zakham",
  4954. "role": "Maintainer"
  4955. },
  4956. {
  4957. "name": "Rajab Natshah",
  4958. "homepage": "https://www.drupal.org/u/rajabnatshah",
  4959. "role": "Maintainer"
  4960. },
  4961. {
  4962. "name": "Rajab Natshah",
  4963. "homepage": "https://www.drupal.org/user/1414312"
  4964. },
  4965. {
  4966. "name": "squiggy",
  4967. "homepage": "https://www.drupal.org/user/44299"
  4968. }
  4969. ],
  4970. "description": "Total Control Administration Dashboard",
  4971. "homepage": "https://www.drupal.org/project/total_control",
  4972. "support": {
  4973. "source": "https://git.drupalcode.org/project/total_control/tree/3.0.x",
  4974. "issues": "https://www.drupal.org/project/issues/total_control"
  4975. }
  4976. },
  4977. {
  4978. "name": "drupal/transliterate_filenames",
  4979. "version": "1.10.0",
  4980. "source": {
  4981. "type": "git",
  4982. "url": "https://git.drupalcode.org/project/transliterate_filenames.git",
  4983. "reference": "8.x-1.10"
  4984. },
  4985. "dist": {
  4986. "type": "zip",
  4987. "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.10.zip",
  4988. "reference": "8.x-1.10",
  4989. "shasum": "8c88c6411fd94cac271e38736664538c54f243ec"
  4990. },
  4991. "require": {
  4992. "drupal/core": "^8.7.7 || ^9.2"
  4993. },
  4994. "type": "drupal-module",
  4995. "extra": {
  4996. "drupal": {
  4997. "version": "8.x-1.10",
  4998. "datestamp": "1644653446",
  4999. "security-coverage": {
  5000. "status": "covered",
  5001. "message": "Covered by Drupal's security advisory policy"
  5002. }
  5003. }
  5004. },
  5005. "notification-url": "https://packages.drupal.org/8/downloads",
  5006. "license": [
  5007. "GPL-2.0-or-later"
  5008. ],
  5009. "authors": [
  5010. {
  5011. "name": "Alexander Dubovskoy",
  5012. "homepage": "https://www.drupal.org/u/adubovskoy",
  5013. "role": "Maintainer"
  5014. },
  5015. {
  5016. "name": "Andrei Ivnitskii",
  5017. "homepage": "https://www.drupal.org/u/ivnish",
  5018. "role": "Maintainer"
  5019. },
  5020. {
  5021. "name": "Krzysztof Domański",
  5022. "homepage": "https://www.drupal.org/user/3572982"
  5023. }
  5024. ],
  5025. "description": "Transliteration for all uploading files (includes fields and ckeditor inline upload)",
  5026. "homepage": "https://www.drupal.org/project/transliterate_filenames",
  5027. "support": {
  5028. "source": "https://git.drupalcode.org/project/transliterate_filenames",
  5029. "issues": "https://www.drupal.org/project/issues/transliterate_filenames"
  5030. }
  5031. },
  5032. {
  5033. "name": "drupal/varbase_total_control",
  5034. "version": "6.15.0",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://git.drupalcode.org/project/varbase_total_control.git",
  5038. "reference": "8.x-6.15"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://ftp.drupal.org/files/projects/varbase_total_control-8.x-6.15.zip",
  5043. "reference": "8.x-6.15",
  5044. "shasum": "0bc4eb540eb16c7a048176be2d9f4dbc955aba13"
  5045. },
  5046. "require": {
  5047. "composer/installers": "~1.0 || ~2.0",
  5048. "cweagans/composer-patches": "~1.0",
  5049. "drupal/charts": "~3.0",
  5050. "drupal/core": "^8.8.0 || ~9.0.0",
  5051. "drupal/google_analytics_reports": "~3.0",
  5052. "drupal/masonry": "~1.0",
  5053. "drupal/total_control": "~3.0",
  5054. "oomphinc/composer-installers-extender": "~1.0 || ~2.0"
  5055. },
  5056. "suggest": {
  5057. "bower-asset/c3": "0.7.*: Provides JavaScript library necessary for C3",
  5058. "bower-asset/chartjs": "2.7.*: Provides JavaScript library necessary for Chart JS",
  5059. "bower-asset/d3": "~5.0: Provides JavaScript library necessary for D3",
  5060. "npm-asset/imagesloaded": "~4.0: Provides JavaScript library necessary for Image Loaded",
  5061. "npm-asset/masonry-layout": "~4.0: Provides JavaScript library necessary for Masonry Layout"
  5062. },
  5063. "type": "drupal-module",
  5064. "extra": {
  5065. "drupal": {
  5066. "version": "8.x-6.15",
  5067. "datestamp": "1624103790",
  5068. "security-coverage": {
  5069. "status": "covered",
  5070. "message": "Covered by Drupal's security advisory policy"
  5071. }
  5072. },
  5073. "branch-alias": {
  5074. "dev-8.x-6.x": "8.6.x-dev"
  5075. },
  5076. "installer-types": [
  5077. "bower-asset",
  5078. "npm-asset"
  5079. ],
  5080. "drupal-libraries": {
  5081. "libraries": [
  5082. {
  5083. "name": "chartjs",
  5084. "package": "bower-asset/chartjs"
  5085. },
  5086. {
  5087. "name": "c3",
  5088. "package": "bower-asset/c3"
  5089. },
  5090. {
  5091. "name": "d3",
  5092. "package": "bower-asset/d3"
  5093. },
  5094. {
  5095. "name": "masonry",
  5096. "package": "npm-asset/masonry-layout"
  5097. },
  5098. {
  5099. "name": "imagesloaded",
  5100. "package": "npm-asset/imagesloaded"
  5101. }
  5102. ]
  5103. },
  5104. "enable-patching": true,
  5105. "composer-exit-on-patch-failure": true
  5106. },
  5107. "notification-url": "https://packages.drupal.org/8/downloads",
  5108. "license": [
  5109. "GPL-2.0-or-later"
  5110. ],
  5111. "authors": [
  5112. {
  5113. "name": "Vardot",
  5114. "homepage": "https://www.drupal.org/vardot",
  5115. "role": "Maintainer"
  5116. },
  5117. {
  5118. "name": "Mohammed J. Razem",
  5119. "homepage": "https://www.drupal.org/user/255384"
  5120. },
  5121. {
  5122. "name": "Rajab Natshah",
  5123. "homepage": "https://www.drupal.org/user/1414312"
  5124. }
  5125. ],
  5126. "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.",
  5127. "homepage": "https://github.com/Vardot/varbase_total_control",
  5128. "support": {
  5129. "source": "http://cgit.drupalcode.org/varbase_total_control",
  5130. "issues": "https://www.drupal.org/project/issues/varbase_total_control"
  5131. }
  5132. },
  5133. {
  5134. "name": "drupal/video_embed_field",
  5135. "version": "2.4.0",
  5136. "source": {
  5137. "type": "git",
  5138. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  5139. "reference": "8.x-2.4"
  5140. },
  5141. "dist": {
  5142. "type": "zip",
  5143. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  5144. "reference": "8.x-2.4",
  5145. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  5146. },
  5147. "require": {
  5148. "drupal/core": "^8.8 || ^9"
  5149. },
  5150. "require-dev": {
  5151. "drupal/colorbox": "^1.0",
  5152. "drupal/video_embed_media": "*"
  5153. },
  5154. "type": "drupal-module",
  5155. "extra": {
  5156. "drupal": {
  5157. "version": "8.x-2.4",
  5158. "datestamp": "1587686284",
  5159. "security-coverage": {
  5160. "status": "covered",
  5161. "message": "Covered by Drupal's security advisory policy"
  5162. }
  5163. }
  5164. },
  5165. "notification-url": "https://packages.drupal.org/8/downloads",
  5166. "license": [
  5167. "GPL-2.0+"
  5168. ],
  5169. "authors": [
  5170. {
  5171. "name": "Sam152",
  5172. "homepage": "https://www.drupal.org/user/1485048"
  5173. },
  5174. {
  5175. "name": "jec006",
  5176. "homepage": "https://www.drupal.org/user/855980"
  5177. },
  5178. {
  5179. "name": "plopesc",
  5180. "homepage": "https://www.drupal.org/user/282415"
  5181. }
  5182. ],
  5183. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  5184. "homepage": "https://www.drupal.org/project/video_embed_field",
  5185. "support": {
  5186. "source": "https://git.drupalcode.org/project/video_embed_field"
  5187. }
  5188. },
  5189. {
  5190. "name": "drupal/views_infinite_scroll",
  5191. "version": "1.7.0",
  5192. "source": {
  5193. "type": "git",
  5194. "url": "https://git.drupalcode.org/project/views_infinite_scroll.git",
  5195. "reference": "8.x-1.7"
  5196. },
  5197. "dist": {
  5198. "type": "zip",
  5199. "url": "https://ftp.drupal.org/files/projects/views_infinite_scroll-8.x-1.7.zip",
  5200. "reference": "8.x-1.7",
  5201. "shasum": "42ff1b7c835a2cb0755425999bb8251f19c62fac"
  5202. },
  5203. "require": {
  5204. "drupal/core": "^8.8 || ^9"
  5205. },
  5206. "type": "drupal-module",
  5207. "extra": {
  5208. "drupal": {
  5209. "version": "8.x-1.7",
  5210. "datestamp": "1584489857",
  5211. "security-coverage": {
  5212. "status": "covered",
  5213. "message": "Covered by Drupal's security advisory policy"
  5214. }
  5215. }
  5216. },
  5217. "notification-url": "https://packages.drupal.org/8/downloads",
  5218. "license": [
  5219. "GPL-2.0-or-later"
  5220. ],
  5221. "authors": [
  5222. {
  5223. "name": "Bobík",
  5224. "homepage": "https://www.drupal.org/user/123612"
  5225. },
  5226. {
  5227. "name": "Neslee Canil Pinto",
  5228. "homepage": "https://www.drupal.org/user/3580850"
  5229. },
  5230. {
  5231. "name": "Remon",
  5232. "homepage": "https://www.drupal.org/user/143827"
  5233. },
  5234. {
  5235. "name": "Sam152",
  5236. "homepage": "https://www.drupal.org/user/1485048"
  5237. }
  5238. ],
  5239. "description": "A pager which allows an infinite scroll effect for views.",
  5240. "homepage": "https://www.drupal.org/project/views_infinite_scroll",
  5241. "support": {
  5242. "source": "https://git.drupalcode.org/project/views_infinite_scroll"
  5243. }
  5244. },
  5245. {
  5246. "name": "drupal/views_url_path_arguments",
  5247. "version": "1.2.0",
  5248. "source": {
  5249. "type": "git",
  5250. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  5251. "reference": "8.x-1.2"
  5252. },
  5253. "dist": {
  5254. "type": "zip",
  5255. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.2.zip",
  5256. "reference": "8.x-1.2",
  5257. "shasum": "949023c9c1dd31f91d60e76580dc9d5c2e0732d4"
  5258. },
  5259. "require": {
  5260. "drupal/core": "^8 || ^9 || ^10"
  5261. },
  5262. "type": "drupal-module",
  5263. "extra": {
  5264. "drupal": {
  5265. "version": "8.x-1.2",
  5266. "datestamp": "1689607584",
  5267. "security-coverage": {
  5268. "status": "covered",
  5269. "message": "Covered by Drupal's security advisory policy"
  5270. }
  5271. }
  5272. },
  5273. "notification-url": "https://packages.drupal.org/8/downloads",
  5274. "license": [
  5275. "GPL-2.0+"
  5276. ],
  5277. "authors": [
  5278. {
  5279. "name": "heddn",
  5280. "homepage": "https://www.drupal.org/user/1463982"
  5281. }
  5282. ],
  5283. "description": "Simple module to convert a view argument's entity id into its url path.",
  5284. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  5285. "keywords": [
  5286. "Drupal"
  5287. ],
  5288. "support": {
  5289. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  5290. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  5291. }
  5292. },
  5293. {
  5294. "name": "drush/drush",
  5295. "version": "10.3.5",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/drush-ops/drush.git",
  5299. "reference": "ce1352c816d8852e64226142eeddc68f823646f1"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/drush-ops/drush/zipball/ce1352c816d8852e64226142eeddc68f823646f1",
  5304. "reference": "ce1352c816d8852e64226142eeddc68f823646f1",
  5305. "shasum": ""
  5306. },
  5307. "require": {
  5308. "chi-teck/drupal-code-generator": "^1.32.1",
  5309. "composer/semver": "^1.4",
  5310. "consolidation/config": "^1.2",
  5311. "consolidation/filter-via-dot-access-data": "^1",
  5312. "consolidation/robo": "^1.4.11 || ^2",
  5313. "consolidation/site-alias": "^3.0.0@stable",
  5314. "consolidation/site-process": "^2.1 || ^4",
  5315. "ext-dom": "*",
  5316. "grasmash/yaml-expander": "^1.1.1",
  5317. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5318. "league/container": "~2",
  5319. "php": ">=7.1.3",
  5320. "psr/log": "~1.0",
  5321. "psy/psysh": "~0.6",
  5322. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5323. "symfony/finder": "^3.4 || ^4.0",
  5324. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5325. "symfony/yaml": "^3.4 || ^4.0",
  5326. "webflo/drupal-finder": "^1.2",
  5327. "webmozart/path-util": "^2.1.0"
  5328. },
  5329. "require-dev": {
  5330. "composer/installers": "^1.7",
  5331. "cweagans/composer-patches": "~1.0",
  5332. "david-garcia/phpwhois": "4.3.0",
  5333. "drupal/alinks": "1.0.0",
  5334. "drupal/core-recommended": "^8.8",
  5335. "g1a/composer-test-scenarios": "^3",
  5336. "lox/xhprof": "dev-master",
  5337. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5338. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5339. "vlucas/phpdotenv": "^2.4"
  5340. },
  5341. "bin": [
  5342. "drush"
  5343. ],
  5344. "type": "library",
  5345. "extra": {
  5346. "installer-paths": {
  5347. "sut/core": [
  5348. "type:drupal-core"
  5349. ],
  5350. "sut/libraries/{$name}": [
  5351. "type:drupal-library"
  5352. ],
  5353. "sut/modules/unish/{$name}": [
  5354. "drupal/devel"
  5355. ],
  5356. "sut/themes/unish/{$name}": [
  5357. "drupal/empty_theme"
  5358. ],
  5359. "sut/modules/contrib/{$name}": [
  5360. "type:drupal-module"
  5361. ],
  5362. "sut/profiles/contrib/{$name}": [
  5363. "type:drupal-profile"
  5364. ],
  5365. "sut/themes/contrib/{$name}": [
  5366. "type:drupal-theme"
  5367. ],
  5368. "sut/drush/contrib/{$name}": [
  5369. "type:drupal-drush"
  5370. ]
  5371. }
  5372. },
  5373. "autoload": {
  5374. "psr-4": {
  5375. "Drush\\": "src/",
  5376. "Drush\\Internal\\": "src/internal-forks"
  5377. }
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "GPL-2.0-or-later"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Moshe Weitzman",
  5386. "email": "weitzman@tejasa.com"
  5387. },
  5388. {
  5389. "name": "Owen Barton",
  5390. "email": "drupal@owenbarton.com"
  5391. },
  5392. {
  5393. "name": "Greg Anderson",
  5394. "email": "greg.1.anderson@greenknowe.org"
  5395. },
  5396. {
  5397. "name": "Jonathan Araña Cruz",
  5398. "email": "jonhattan@faita.net"
  5399. },
  5400. {
  5401. "name": "Jonathan Hedstrom",
  5402. "email": "jhedstrom@gmail.com"
  5403. },
  5404. {
  5405. "name": "Christopher Gervais",
  5406. "email": "chris@ergonlogic.com"
  5407. },
  5408. {
  5409. "name": "Dave Reid",
  5410. "email": "dave@davereid.net"
  5411. },
  5412. {
  5413. "name": "Damian Lee",
  5414. "email": "damiankloip@googlemail.com"
  5415. }
  5416. ],
  5417. "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.",
  5418. "homepage": "http://www.drush.org",
  5419. "funding": [
  5420. {
  5421. "url": "https://github.com/weitzman",
  5422. "type": "github"
  5423. }
  5424. ],
  5425. "time": "2020-10-05T11:50:13+00:00"
  5426. },
  5427. {
  5428. "name": "easyrdf/easyrdf",
  5429. "version": "0.9.1",
  5430. "source": {
  5431. "type": "git",
  5432. "url": "https://github.com/easyrdf/easyrdf.git",
  5433. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5434. },
  5435. "dist": {
  5436. "type": "zip",
  5437. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5438. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5439. "shasum": ""
  5440. },
  5441. "require": {
  5442. "ext-mbstring": "*",
  5443. "ext-pcre": "*",
  5444. "php": ">=5.2.8"
  5445. },
  5446. "require-dev": {
  5447. "phpunit/phpunit": "~3.5",
  5448. "sami/sami": "~1.4",
  5449. "squizlabs/php_codesniffer": "~1.4.3"
  5450. },
  5451. "suggest": {
  5452. "ml/json-ld": "~1.0"
  5453. },
  5454. "type": "library",
  5455. "autoload": {
  5456. "psr-0": {
  5457. "EasyRdf_": "lib/"
  5458. }
  5459. },
  5460. "notification-url": "https://packagist.org/downloads/",
  5461. "license": [
  5462. "BSD-3-Clause"
  5463. ],
  5464. "authors": [
  5465. {
  5466. "name": "Nicholas Humfrey",
  5467. "email": "njh@aelius.com",
  5468. "homepage": "http://www.aelius.com/njh/",
  5469. "role": "Developer"
  5470. },
  5471. {
  5472. "name": "Alexey Zakhlestin",
  5473. "email": "indeyets@gmail.com",
  5474. "role": "Developer"
  5475. }
  5476. ],
  5477. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5478. "homepage": "http://www.easyrdf.org/",
  5479. "keywords": [
  5480. "Linked Data",
  5481. "RDF",
  5482. "Semantic Web",
  5483. "Turtle",
  5484. "rdfa",
  5485. "sparql"
  5486. ],
  5487. "support": {
  5488. "forum": "http://groups.google.com/group/easyrdf/",
  5489. "irc": "irc://chat.freenode.net/easyrdf",
  5490. "issues": "http://github.com/njh/easyrdf/issues",
  5491. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5492. },
  5493. "time": "2015-02-27T09:45:49+00:00"
  5494. },
  5495. {
  5496. "name": "egulias/email-validator",
  5497. "version": "2.1.17",
  5498. "source": {
  5499. "type": "git",
  5500. "url": "https://github.com/egulias/EmailValidator.git",
  5501. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5502. },
  5503. "dist": {
  5504. "type": "zip",
  5505. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5506. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5507. "shasum": ""
  5508. },
  5509. "require": {
  5510. "doctrine/lexer": "^1.0.1",
  5511. "php": ">=5.5",
  5512. "symfony/polyfill-intl-idn": "^1.10"
  5513. },
  5514. "require-dev": {
  5515. "dominicsayers/isemail": "^3.0.7",
  5516. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5517. "satooshi/php-coveralls": "^1.0.1"
  5518. },
  5519. "suggest": {
  5520. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5521. },
  5522. "type": "library",
  5523. "extra": {
  5524. "branch-alias": {
  5525. "dev-master": "2.1.x-dev"
  5526. }
  5527. },
  5528. "autoload": {
  5529. "psr-4": {
  5530. "Egulias\\EmailValidator\\": "EmailValidator"
  5531. }
  5532. },
  5533. "notification-url": "https://packagist.org/downloads/",
  5534. "license": [
  5535. "MIT"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "Eduardo Gulias Davis"
  5540. }
  5541. ],
  5542. "description": "A library for validating emails against several RFCs",
  5543. "homepage": "https://github.com/egulias/EmailValidator",
  5544. "keywords": [
  5545. "email",
  5546. "emailvalidation",
  5547. "emailvalidator",
  5548. "validation",
  5549. "validator"
  5550. ],
  5551. "support": {
  5552. "issues": "https://github.com/egulias/EmailValidator/issues",
  5553. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5554. },
  5555. "time": "2020-02-13T22:36:52+00:00"
  5556. },
  5557. {
  5558. "name": "geocoder-php/chain-provider",
  5559. "version": "4.2.0",
  5560. "source": {
  5561. "type": "git",
  5562. "url": "https://github.com/geocoder-php/chain-provider.git",
  5563. "reference": "f9f8d33e958eb795c80a86a98064793d2a1084aa"
  5564. },
  5565. "dist": {
  5566. "type": "zip",
  5567. "url": "https://api.github.com/repos/geocoder-php/chain-provider/zipball/f9f8d33e958eb795c80a86a98064793d2a1084aa",
  5568. "reference": "f9f8d33e958eb795c80a86a98064793d2a1084aa",
  5569. "shasum": ""
  5570. },
  5571. "require": {
  5572. "php": "^7.2",
  5573. "psr/log": "^1.0",
  5574. "willdurand/geocoder": "^4.0"
  5575. },
  5576. "provide": {
  5577. "geocoder-php/provider-implementation": "1.0"
  5578. },
  5579. "require-dev": {
  5580. "nyholm/nsa": "^1.1",
  5581. "php-http/curl-client": "^1.7",
  5582. "php-http/message": "^1.0",
  5583. "phpunit/phpunit": "^7.5"
  5584. },
  5585. "type": "library",
  5586. "extra": {
  5587. "branch-alias": {
  5588. "dev-master": "4.0-dev"
  5589. }
  5590. },
  5591. "autoload": {
  5592. "psr-4": {
  5593. "Geocoder\\Provider\\Chain\\": ""
  5594. },
  5595. "exclude-from-classmap": [
  5596. "/Tests/"
  5597. ]
  5598. },
  5599. "notification-url": "https://packagist.org/downloads/",
  5600. "license": [
  5601. "MIT"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "William Durand",
  5606. "email": "william.durand1@gmail.com"
  5607. }
  5608. ],
  5609. "description": "Geocoder chain adapter",
  5610. "homepage": "http://geocoder-php.org/Geocoder/",
  5611. "time": "2020-07-04T13:18:10+00:00"
  5612. },
  5613. {
  5614. "name": "geocoder-php/common-http",
  5615. "version": "4.3.0",
  5616. "source": {
  5617. "type": "git",
  5618. "url": "https://github.com/geocoder-php/php-common-http.git",
  5619. "reference": "2995af04aa877ecb705054556bdea540662db971"
  5620. },
  5621. "dist": {
  5622. "type": "zip",
  5623. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/2995af04aa877ecb705054556bdea540662db971",
  5624. "reference": "2995af04aa877ecb705054556bdea540662db971",
  5625. "shasum": ""
  5626. },
  5627. "require": {
  5628. "php": "^7.2",
  5629. "php-http/client-implementation": "^1.0",
  5630. "php-http/discovery": "^1.6",
  5631. "php-http/httplug": "^1.0 || ^2.0",
  5632. "php-http/message-factory": "^1.0.2",
  5633. "psr/http-message": "^1.0",
  5634. "psr/http-message-implementation": "^1.0",
  5635. "willdurand/geocoder": "^4.0"
  5636. },
  5637. "require-dev": {
  5638. "nyholm/psr7": "^1.0",
  5639. "php-http/message": "^1.0",
  5640. "php-http/mock-client": "^1.0",
  5641. "phpunit/phpunit": "^7.5",
  5642. "symfony/stopwatch": "~2.5"
  5643. },
  5644. "type": "library",
  5645. "extra": {
  5646. "branch-alias": {
  5647. "dev-master": "4.0-dev"
  5648. }
  5649. },
  5650. "autoload": {
  5651. "psr-4": {
  5652. "Geocoder\\Http\\": ""
  5653. },
  5654. "exclude-from-classmap": [
  5655. "/Tests/"
  5656. ]
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Tobias Nyholm",
  5665. "email": "tobias.nyholm@gmail.com"
  5666. }
  5667. ],
  5668. "description": "Common files for HTTP based Geocoders",
  5669. "homepage": "http://geocoder-php.org",
  5670. "keywords": [
  5671. "http geocoder"
  5672. ],
  5673. "time": "2020-07-04T13:18:10+00:00"
  5674. },
  5675. {
  5676. "name": "geocoder-php/google-maps-provider",
  5677. "version": "4.5.0",
  5678. "source": {
  5679. "type": "git",
  5680. "url": "https://github.com/geocoder-php/google-maps-provider.git",
  5681. "reference": "830e5cd42eba6cb42a7a72788049edcb73f2d632"
  5682. },
  5683. "dist": {
  5684. "type": "zip",
  5685. "url": "https://api.github.com/repos/geocoder-php/google-maps-provider/zipball/830e5cd42eba6cb42a7a72788049edcb73f2d632",
  5686. "reference": "830e5cd42eba6cb42a7a72788049edcb73f2d632",
  5687. "shasum": ""
  5688. },
  5689. "require": {
  5690. "geocoder-php/common-http": "^4.0",
  5691. "php": "^7.2",
  5692. "willdurand/geocoder": "^4.0"
  5693. },
  5694. "provide": {
  5695. "geocoder-php/provider-implementation": "1.0"
  5696. },
  5697. "require-dev": {
  5698. "geocoder-php/provider-integration-tests": "^1.0",
  5699. "php-http/curl-client": "^1.7",
  5700. "php-http/message": "^1.0",
  5701. "phpunit/phpunit": "^7.5"
  5702. },
  5703. "type": "library",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-master": "4.0-dev"
  5707. }
  5708. },
  5709. "autoload": {
  5710. "psr-4": {
  5711. "Geocoder\\Provider\\GoogleMaps\\": ""
  5712. },
  5713. "exclude-from-classmap": [
  5714. "/Tests/"
  5715. ]
  5716. },
  5717. "notification-url": "https://packagist.org/downloads/",
  5718. "license": [
  5719. "MIT"
  5720. ],
  5721. "authors": [
  5722. {
  5723. "name": "William Durand",
  5724. "email": "william.durand1@gmail.com"
  5725. }
  5726. ],
  5727. "description": "Geocoder GoogleMaps adapter",
  5728. "homepage": "http://geocoder-php.org/Geocoder/",
  5729. "time": "2020-07-04T13:18:10+00:00"
  5730. },
  5731. {
  5732. "name": "google/protobuf",
  5733. "version": "v3.6.1.3",
  5734. "source": {
  5735. "type": "git",
  5736. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  5737. "reference": "c39346815303f63ad295d6499e11d914c40040e6"
  5738. },
  5739. "dist": {
  5740. "type": "zip",
  5741. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/c39346815303f63ad295d6499e11d914c40040e6",
  5742. "reference": "c39346815303f63ad295d6499e11d914c40040e6",
  5743. "shasum": ""
  5744. },
  5745. "require": {
  5746. "php": ">=5.5.0"
  5747. },
  5748. "require-dev": {
  5749. "phpunit/phpunit": ">=4.8.0"
  5750. },
  5751. "suggest": {
  5752. "ext-bcmath": "Need to support JSON deserialization"
  5753. },
  5754. "type": "library",
  5755. "autoload": {
  5756. "psr-4": {
  5757. "Google\\Protobuf\\": "src/Google/Protobuf",
  5758. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  5759. }
  5760. },
  5761. "notification-url": "https://packagist.org/downloads/",
  5762. "license": [
  5763. "BSD-3-Clause"
  5764. ],
  5765. "description": "proto library for PHP",
  5766. "homepage": "https://developers.google.com/protocol-buffers/",
  5767. "keywords": [
  5768. "proto"
  5769. ],
  5770. "support": {
  5771. "issues": "https://github.com/protocolbuffers/protobuf-php/issues",
  5772. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.6.1.3"
  5773. },
  5774. "time": "2019-02-25T22:48:21+00:00"
  5775. },
  5776. {
  5777. "name": "grasmash/expander",
  5778. "version": "1.0.0",
  5779. "source": {
  5780. "type": "git",
  5781. "url": "https://github.com/grasmash/expander.git",
  5782. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5783. },
  5784. "dist": {
  5785. "type": "zip",
  5786. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5787. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5788. "shasum": ""
  5789. },
  5790. "require": {
  5791. "dflydev/dot-access-data": "^1.1.0",
  5792. "php": ">=5.4"
  5793. },
  5794. "require-dev": {
  5795. "greg-1-anderson/composer-test-scenarios": "^1",
  5796. "phpunit/phpunit": "^4|^5.5.4",
  5797. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5798. "squizlabs/php_codesniffer": "^2.7"
  5799. },
  5800. "type": "library",
  5801. "extra": {
  5802. "branch-alias": {
  5803. "dev-master": "1.x-dev"
  5804. }
  5805. },
  5806. "autoload": {
  5807. "psr-4": {
  5808. "Grasmash\\Expander\\": "src/"
  5809. }
  5810. },
  5811. "notification-url": "https://packagist.org/downloads/",
  5812. "license": [
  5813. "MIT"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "Matthew Grasmick"
  5818. }
  5819. ],
  5820. "description": "Expands internal property references in PHP arrays file.",
  5821. "time": "2017-12-21T22:14:55+00:00"
  5822. },
  5823. {
  5824. "name": "grasmash/yaml-expander",
  5825. "version": "1.4.0",
  5826. "source": {
  5827. "type": "git",
  5828. "url": "https://github.com/grasmash/yaml-expander.git",
  5829. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5830. },
  5831. "dist": {
  5832. "type": "zip",
  5833. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5834. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5835. "shasum": ""
  5836. },
  5837. "require": {
  5838. "dflydev/dot-access-data": "^1.1.0",
  5839. "php": ">=5.4",
  5840. "symfony/yaml": "^2.8.11|^3|^4"
  5841. },
  5842. "require-dev": {
  5843. "greg-1-anderson/composer-test-scenarios": "^1",
  5844. "phpunit/phpunit": "^4.8|^5.5.4",
  5845. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5846. "squizlabs/php_codesniffer": "^2.7"
  5847. },
  5848. "type": "library",
  5849. "extra": {
  5850. "branch-alias": {
  5851. "dev-master": "1.x-dev"
  5852. }
  5853. },
  5854. "autoload": {
  5855. "psr-4": {
  5856. "Grasmash\\YamlExpander\\": "src/"
  5857. }
  5858. },
  5859. "notification-url": "https://packagist.org/downloads/",
  5860. "license": [
  5861. "MIT"
  5862. ],
  5863. "authors": [
  5864. {
  5865. "name": "Matthew Grasmick"
  5866. }
  5867. ],
  5868. "description": "Expands internal property references in a yaml file.",
  5869. "time": "2017-12-16T16:06:03+00:00"
  5870. },
  5871. {
  5872. "name": "guzzlehttp/guzzle",
  5873. "version": "6.5.4",
  5874. "source": {
  5875. "type": "git",
  5876. "url": "https://github.com/guzzle/guzzle.git",
  5877. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5878. },
  5879. "dist": {
  5880. "type": "zip",
  5881. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5882. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5883. "shasum": ""
  5884. },
  5885. "require": {
  5886. "ext-json": "*",
  5887. "guzzlehttp/promises": "^1.0",
  5888. "guzzlehttp/psr7": "^1.6.1",
  5889. "php": ">=5.5",
  5890. "symfony/polyfill-intl-idn": "1.17.0"
  5891. },
  5892. "require-dev": {
  5893. "ext-curl": "*",
  5894. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5895. "psr/log": "^1.1"
  5896. },
  5897. "suggest": {
  5898. "psr/log": "Required for using the Log middleware"
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-master": "6.5-dev"
  5904. }
  5905. },
  5906. "autoload": {
  5907. "files": [
  5908. "src/functions_include.php"
  5909. ],
  5910. "psr-4": {
  5911. "GuzzleHttp\\": "src/"
  5912. }
  5913. },
  5914. "notification-url": "https://packagist.org/downloads/",
  5915. "license": [
  5916. "MIT"
  5917. ],
  5918. "authors": [
  5919. {
  5920. "name": "Michael Dowling",
  5921. "email": "mtdowling@gmail.com",
  5922. "homepage": "https://github.com/mtdowling"
  5923. }
  5924. ],
  5925. "description": "Guzzle is a PHP HTTP client library",
  5926. "homepage": "http://guzzlephp.org/",
  5927. "keywords": [
  5928. "client",
  5929. "curl",
  5930. "framework",
  5931. "http",
  5932. "http client",
  5933. "rest",
  5934. "web service"
  5935. ],
  5936. "support": {
  5937. "issues": "https://github.com/guzzle/guzzle/issues",
  5938. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  5939. },
  5940. "time": "2020-05-25T19:35:05+00:00"
  5941. },
  5942. {
  5943. "name": "guzzlehttp/promises",
  5944. "version": "v1.3.1",
  5945. "source": {
  5946. "type": "git",
  5947. "url": "https://github.com/guzzle/promises.git",
  5948. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5949. },
  5950. "dist": {
  5951. "type": "zip",
  5952. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5953. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5954. "shasum": ""
  5955. },
  5956. "require": {
  5957. "php": ">=5.5.0"
  5958. },
  5959. "require-dev": {
  5960. "phpunit/phpunit": "^4.0"
  5961. },
  5962. "type": "library",
  5963. "extra": {
  5964. "branch-alias": {
  5965. "dev-master": "1.4-dev"
  5966. }
  5967. },
  5968. "autoload": {
  5969. "files": [
  5970. "src/functions_include.php"
  5971. ],
  5972. "psr-4": {
  5973. "GuzzleHttp\\Promise\\": "src/"
  5974. }
  5975. },
  5976. "notification-url": "https://packagist.org/downloads/",
  5977. "license": [
  5978. "MIT"
  5979. ],
  5980. "authors": [
  5981. {
  5982. "name": "Michael Dowling",
  5983. "email": "mtdowling@gmail.com",
  5984. "homepage": "https://github.com/mtdowling"
  5985. }
  5986. ],
  5987. "description": "Guzzle promises library",
  5988. "keywords": [
  5989. "promise"
  5990. ],
  5991. "support": {
  5992. "issues": "https://github.com/guzzle/promises/issues",
  5993. "source": "https://github.com/guzzle/promises/tree/master"
  5994. },
  5995. "time": "2016-12-20T10:07:11+00:00"
  5996. },
  5997. {
  5998. "name": "guzzlehttp/psr7",
  5999. "version": "1.6.1",
  6000. "source": {
  6001. "type": "git",
  6002. "url": "https://github.com/guzzle/psr7.git",
  6003. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6004. },
  6005. "dist": {
  6006. "type": "zip",
  6007. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6008. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6009. "shasum": ""
  6010. },
  6011. "require": {
  6012. "php": ">=5.4.0",
  6013. "psr/http-message": "~1.0",
  6014. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6015. },
  6016. "provide": {
  6017. "psr/http-message-implementation": "1.0"
  6018. },
  6019. "require-dev": {
  6020. "ext-zlib": "*",
  6021. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6022. },
  6023. "suggest": {
  6024. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6025. },
  6026. "type": "library",
  6027. "extra": {
  6028. "branch-alias": {
  6029. "dev-master": "1.6-dev"
  6030. }
  6031. },
  6032. "autoload": {
  6033. "files": [
  6034. "src/functions_include.php"
  6035. ],
  6036. "psr-4": {
  6037. "GuzzleHttp\\Psr7\\": "src/"
  6038. }
  6039. },
  6040. "notification-url": "https://packagist.org/downloads/",
  6041. "license": [
  6042. "MIT"
  6043. ],
  6044. "authors": [
  6045. {
  6046. "name": "Michael Dowling",
  6047. "email": "mtdowling@gmail.com",
  6048. "homepage": "https://github.com/mtdowling"
  6049. },
  6050. {
  6051. "name": "Tobias Schultze",
  6052. "homepage": "https://github.com/Tobion"
  6053. }
  6054. ],
  6055. "description": "PSR-7 message implementation that also provides common utility methods",
  6056. "keywords": [
  6057. "http",
  6058. "message",
  6059. "psr-7",
  6060. "request",
  6061. "response",
  6062. "stream",
  6063. "uri",
  6064. "url"
  6065. ],
  6066. "support": {
  6067. "issues": "https://github.com/guzzle/psr7/issues",
  6068. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  6069. },
  6070. "time": "2019-07-01T23:21:34+00:00"
  6071. },
  6072. {
  6073. "name": "itamair/geophp",
  6074. "version": "1.6",
  6075. "source": {
  6076. "type": "git",
  6077. "url": "https://github.com/itamair/geoPHP.git",
  6078. "reference": "f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6"
  6079. },
  6080. "dist": {
  6081. "type": "zip",
  6082. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6",
  6083. "reference": "f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6",
  6084. "shasum": ""
  6085. },
  6086. "require-dev": {
  6087. "phpunit/phpunit": "4.1.* || 9.5.*"
  6088. },
  6089. "type": "library",
  6090. "autoload": {
  6091. "classmap": [
  6092. "geoPHP.inc"
  6093. ]
  6094. },
  6095. "notification-url": "https://packagist.org/downloads/",
  6096. "license": [
  6097. "GPL-2.0+"
  6098. ],
  6099. "authors": [
  6100. {
  6101. "name": "Italo Mairo",
  6102. "homepage": "https://www.linkedin.com/in/italomairo/",
  6103. "role": "Maintanier of this Library Repo"
  6104. },
  6105. {
  6106. "name": "Patrick Hayes",
  6107. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  6108. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  6109. }
  6110. ],
  6111. "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.",
  6112. "homepage": "https://github.com/itamair/geoPHP",
  6113. "support": {
  6114. "source": "https://github.com/itamair/geoPHP/tree/1.6"
  6115. },
  6116. "time": "2023-12-23T23:28:59+00:00"
  6117. },
  6118. {
  6119. "name": "laminas/laminas-diactoros",
  6120. "version": "1.8.7p2",
  6121. "source": {
  6122. "type": "git",
  6123. "url": "https://github.com/laminas/laminas-diactoros.git",
  6124. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6125. },
  6126. "dist": {
  6127. "type": "zip",
  6128. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6129. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6130. "shasum": ""
  6131. },
  6132. "require": {
  6133. "laminas/laminas-zendframework-bridge": "^1.0",
  6134. "php": "^5.6 || ^7.0",
  6135. "psr/http-message": "^1.0"
  6136. },
  6137. "provide": {
  6138. "psr/http-message-implementation": "1.0"
  6139. },
  6140. "replace": {
  6141. "zendframework/zend-diactoros": "~1.8.7.0"
  6142. },
  6143. "require-dev": {
  6144. "ext-dom": "*",
  6145. "ext-libxml": "*",
  6146. "laminas/laminas-coding-standard": "~1.0",
  6147. "php-http/psr7-integration-tests": "dev-master",
  6148. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6149. },
  6150. "type": "library",
  6151. "extra": {
  6152. "branch-alias": {
  6153. "dev-release-1.8": "1.8.x-dev"
  6154. }
  6155. },
  6156. "autoload": {
  6157. "files": [
  6158. "src/functions/create_uploaded_file.php",
  6159. "src/functions/marshal_headers_from_sapi.php",
  6160. "src/functions/marshal_method_from_sapi.php",
  6161. "src/functions/marshal_protocol_version_from_sapi.php",
  6162. "src/functions/marshal_uri_from_sapi.php",
  6163. "src/functions/normalize_server.php",
  6164. "src/functions/normalize_uploaded_files.php",
  6165. "src/functions/parse_cookie_header.php",
  6166. "src/functions/create_uploaded_file.legacy.php",
  6167. "src/functions/marshal_headers_from_sapi.legacy.php",
  6168. "src/functions/marshal_method_from_sapi.legacy.php",
  6169. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6170. "src/functions/marshal_uri_from_sapi.legacy.php",
  6171. "src/functions/normalize_server.legacy.php",
  6172. "src/functions/normalize_uploaded_files.legacy.php",
  6173. "src/functions/parse_cookie_header.legacy.php"
  6174. ],
  6175. "psr-4": {
  6176. "Laminas\\Diactoros\\": "src/"
  6177. }
  6178. },
  6179. "notification-url": "https://packagist.org/downloads/",
  6180. "license": [
  6181. "BSD-3-Clause"
  6182. ],
  6183. "description": "PSR HTTP Message implementations",
  6184. "homepage": "https://laminas.dev",
  6185. "keywords": [
  6186. "http",
  6187. "laminas",
  6188. "psr",
  6189. "psr-7"
  6190. ],
  6191. "support": {
  6192. "chat": "https://laminas.dev/chat",
  6193. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6194. "forum": "https://discourse.laminas.dev",
  6195. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6196. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6197. "source": "https://github.com/laminas/laminas-diactoros"
  6198. },
  6199. "time": "2020-03-23T15:28:28+00:00"
  6200. },
  6201. {
  6202. "name": "laminas/laminas-escaper",
  6203. "version": "2.6.1",
  6204. "source": {
  6205. "type": "git",
  6206. "url": "https://github.com/laminas/laminas-escaper.git",
  6207. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6208. },
  6209. "dist": {
  6210. "type": "zip",
  6211. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6212. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6213. "shasum": ""
  6214. },
  6215. "require": {
  6216. "laminas/laminas-zendframework-bridge": "^1.0",
  6217. "php": "^5.6 || ^7.0"
  6218. },
  6219. "replace": {
  6220. "zendframework/zend-escaper": "self.version"
  6221. },
  6222. "require-dev": {
  6223. "laminas/laminas-coding-standard": "~1.0.0",
  6224. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6225. },
  6226. "type": "library",
  6227. "extra": {
  6228. "branch-alias": {
  6229. "dev-master": "2.6.x-dev",
  6230. "dev-develop": "2.7.x-dev"
  6231. }
  6232. },
  6233. "autoload": {
  6234. "psr-4": {
  6235. "Laminas\\Escaper\\": "src/"
  6236. }
  6237. },
  6238. "notification-url": "https://packagist.org/downloads/",
  6239. "license": [
  6240. "BSD-3-Clause"
  6241. ],
  6242. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6243. "homepage": "https://laminas.dev",
  6244. "keywords": [
  6245. "escaper",
  6246. "laminas"
  6247. ],
  6248. "support": {
  6249. "chat": "https://laminas.dev/chat",
  6250. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6251. "forum": "https://discourse.laminas.dev",
  6252. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6253. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6254. "source": "https://github.com/laminas/laminas-escaper"
  6255. },
  6256. "time": "2019-12-31T16:43:30+00:00"
  6257. },
  6258. {
  6259. "name": "laminas/laminas-feed",
  6260. "version": "2.12.2",
  6261. "source": {
  6262. "type": "git",
  6263. "url": "https://github.com/laminas/laminas-feed.git",
  6264. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6265. },
  6266. "dist": {
  6267. "type": "zip",
  6268. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6269. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6270. "shasum": ""
  6271. },
  6272. "require": {
  6273. "ext-dom": "*",
  6274. "ext-libxml": "*",
  6275. "laminas/laminas-escaper": "^2.5.2",
  6276. "laminas/laminas-stdlib": "^3.2.1",
  6277. "laminas/laminas-zendframework-bridge": "^1.0",
  6278. "php": "^5.6 || ^7.0"
  6279. },
  6280. "replace": {
  6281. "zendframework/zend-feed": "^2.12.0"
  6282. },
  6283. "require-dev": {
  6284. "laminas/laminas-cache": "^2.7.2",
  6285. "laminas/laminas-coding-standard": "~1.0.0",
  6286. "laminas/laminas-db": "^2.8.2",
  6287. "laminas/laminas-http": "^2.7",
  6288. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6289. "laminas/laminas-validator": "^2.10.1",
  6290. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6291. "psr/http-message": "^1.0.1"
  6292. },
  6293. "suggest": {
  6294. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6295. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6296. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6297. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6298. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6299. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6300. },
  6301. "type": "library",
  6302. "extra": {
  6303. "branch-alias": {
  6304. "dev-master": "2.12.x-dev",
  6305. "dev-develop": "2.13.x-dev"
  6306. }
  6307. },
  6308. "autoload": {
  6309. "psr-4": {
  6310. "Laminas\\Feed\\": "src/"
  6311. }
  6312. },
  6313. "notification-url": "https://packagist.org/downloads/",
  6314. "license": [
  6315. "BSD-3-Clause"
  6316. ],
  6317. "description": "provides functionality for consuming RSS and Atom feeds",
  6318. "homepage": "https://laminas.dev",
  6319. "keywords": [
  6320. "feed",
  6321. "laminas"
  6322. ],
  6323. "support": {
  6324. "chat": "https://laminas.dev/chat",
  6325. "docs": "https://docs.laminas.dev/laminas-feed/",
  6326. "forum": "https://discourse.laminas.dev",
  6327. "issues": "https://github.com/laminas/laminas-feed/issues",
  6328. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6329. "source": "https://github.com/laminas/laminas-feed"
  6330. },
  6331. "time": "2020-03-29T12:36:29+00:00"
  6332. },
  6333. {
  6334. "name": "laminas/laminas-stdlib",
  6335. "version": "3.2.1",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/laminas/laminas-stdlib.git",
  6339. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6344. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6345. "shasum": ""
  6346. },
  6347. "require": {
  6348. "laminas/laminas-zendframework-bridge": "^1.0",
  6349. "php": "^5.6 || ^7.0"
  6350. },
  6351. "replace": {
  6352. "zendframework/zend-stdlib": "self.version"
  6353. },
  6354. "require-dev": {
  6355. "laminas/laminas-coding-standard": "~1.0.0",
  6356. "phpbench/phpbench": "^0.13",
  6357. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6358. },
  6359. "type": "library",
  6360. "extra": {
  6361. "branch-alias": {
  6362. "dev-master": "3.2.x-dev",
  6363. "dev-develop": "3.3.x-dev"
  6364. }
  6365. },
  6366. "autoload": {
  6367. "psr-4": {
  6368. "Laminas\\Stdlib\\": "src/"
  6369. }
  6370. },
  6371. "notification-url": "https://packagist.org/downloads/",
  6372. "license": [
  6373. "BSD-3-Clause"
  6374. ],
  6375. "description": "SPL extensions, array utilities, error handlers, and more",
  6376. "homepage": "https://laminas.dev",
  6377. "keywords": [
  6378. "laminas",
  6379. "stdlib"
  6380. ],
  6381. "support": {
  6382. "chat": "https://laminas.dev/chat",
  6383. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6384. "forum": "https://discourse.laminas.dev",
  6385. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6386. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6387. "source": "https://github.com/laminas/laminas-stdlib"
  6388. },
  6389. "time": "2019-12-31T17:51:15+00:00"
  6390. },
  6391. {
  6392. "name": "laminas/laminas-zendframework-bridge",
  6393. "version": "1.0.4",
  6394. "source": {
  6395. "type": "git",
  6396. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6397. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6398. },
  6399. "dist": {
  6400. "type": "zip",
  6401. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6402. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6403. "shasum": ""
  6404. },
  6405. "require": {
  6406. "php": "^5.6 || ^7.0"
  6407. },
  6408. "require-dev": {
  6409. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6410. "squizlabs/php_codesniffer": "^3.5"
  6411. },
  6412. "type": "library",
  6413. "extra": {
  6414. "branch-alias": {
  6415. "dev-master": "1.0.x-dev",
  6416. "dev-develop": "1.1.x-dev"
  6417. },
  6418. "laminas": {
  6419. "module": "Laminas\\ZendFrameworkBridge"
  6420. }
  6421. },
  6422. "autoload": {
  6423. "files": [
  6424. "src/autoload.php"
  6425. ],
  6426. "psr-4": {
  6427. "Laminas\\ZendFrameworkBridge\\": "src//"
  6428. }
  6429. },
  6430. "notification-url": "https://packagist.org/downloads/",
  6431. "license": [
  6432. "BSD-3-Clause"
  6433. ],
  6434. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6435. "keywords": [
  6436. "ZendFramework",
  6437. "autoloading",
  6438. "laminas",
  6439. "zf"
  6440. ],
  6441. "support": {
  6442. "forum": "https://discourse.laminas.dev/",
  6443. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6444. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6445. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6446. },
  6447. "funding": [
  6448. {
  6449. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6450. "type": "community_bridge"
  6451. }
  6452. ],
  6453. "abandoned": true,
  6454. "time": "2020-05-20T16:45:56+00:00"
  6455. },
  6456. {
  6457. "name": "league/container",
  6458. "version": "2.4.1",
  6459. "source": {
  6460. "type": "git",
  6461. "url": "https://github.com/thephpleague/container.git",
  6462. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6463. },
  6464. "dist": {
  6465. "type": "zip",
  6466. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6467. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6468. "shasum": ""
  6469. },
  6470. "require": {
  6471. "container-interop/container-interop": "^1.2",
  6472. "php": "^5.4.0 || ^7.0"
  6473. },
  6474. "provide": {
  6475. "container-interop/container-interop-implementation": "^1.2",
  6476. "psr/container-implementation": "^1.0"
  6477. },
  6478. "replace": {
  6479. "orno/di": "~2.0"
  6480. },
  6481. "require-dev": {
  6482. "phpunit/phpunit": "4.*"
  6483. },
  6484. "type": "library",
  6485. "extra": {
  6486. "branch-alias": {
  6487. "dev-2.x": "2.x-dev",
  6488. "dev-1.x": "1.x-dev"
  6489. }
  6490. },
  6491. "autoload": {
  6492. "psr-4": {
  6493. "League\\Container\\": "src"
  6494. }
  6495. },
  6496. "notification-url": "https://packagist.org/downloads/",
  6497. "license": [
  6498. "MIT"
  6499. ],
  6500. "authors": [
  6501. {
  6502. "name": "Phil Bennett",
  6503. "email": "philipobenito@gmail.com",
  6504. "homepage": "http://www.philipobenito.com",
  6505. "role": "Developer"
  6506. }
  6507. ],
  6508. "description": "A fast and intuitive dependency injection container.",
  6509. "homepage": "https://github.com/thephpleague/container",
  6510. "keywords": [
  6511. "container",
  6512. "dependency",
  6513. "di",
  6514. "injection",
  6515. "league",
  6516. "provider",
  6517. "service"
  6518. ],
  6519. "time": "2017-05-10T09:20:27+00:00"
  6520. },
  6521. {
  6522. "name": "masterminds/html5",
  6523. "version": "2.3.0",
  6524. "source": {
  6525. "type": "git",
  6526. "url": "https://github.com/Masterminds/html5-php.git",
  6527. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6528. },
  6529. "dist": {
  6530. "type": "zip",
  6531. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6532. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6533. "shasum": ""
  6534. },
  6535. "require": {
  6536. "ext-libxml": "*",
  6537. "php": ">=5.3.0"
  6538. },
  6539. "require-dev": {
  6540. "phpunit/phpunit": "4.*",
  6541. "sami/sami": "~2.0",
  6542. "satooshi/php-coveralls": "1.0.*"
  6543. },
  6544. "type": "library",
  6545. "extra": {
  6546. "branch-alias": {
  6547. "dev-master": "2.2-dev"
  6548. }
  6549. },
  6550. "autoload": {
  6551. "psr-4": {
  6552. "Masterminds\\": "src"
  6553. }
  6554. },
  6555. "notification-url": "https://packagist.org/downloads/",
  6556. "license": [
  6557. "MIT"
  6558. ],
  6559. "authors": [
  6560. {
  6561. "name": "Matt Butcher",
  6562. "email": "technosophos@gmail.com"
  6563. },
  6564. {
  6565. "name": "Asmir Mustafic",
  6566. "email": "goetas@gmail.com"
  6567. },
  6568. {
  6569. "name": "Matt Farina",
  6570. "email": "matt@mattfarina.com"
  6571. }
  6572. ],
  6573. "description": "An HTML5 parser and serializer.",
  6574. "homepage": "http://masterminds.github.io/html5-php",
  6575. "keywords": [
  6576. "HTML5",
  6577. "dom",
  6578. "html",
  6579. "parser",
  6580. "querypath",
  6581. "serializer",
  6582. "xml"
  6583. ],
  6584. "support": {
  6585. "issues": "https://github.com/Masterminds/html5-php/issues",
  6586. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6587. },
  6588. "time": "2017-09-04T12:26:28+00:00"
  6589. },
  6590. {
  6591. "name": "mdurrant/php-binary-reader",
  6592. "version": "1.0.9",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://github.com/mdurrant/php-binary-reader.git",
  6596. "reference": "9abf18d7b361d0ae1cd80fc6782e59b313586db6"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://api.github.com/repos/mdurrant/php-binary-reader/zipball/9abf18d7b361d0ae1cd80fc6782e59b313586db6",
  6601. "reference": "9abf18d7b361d0ae1cd80fc6782e59b313586db6",
  6602. "shasum": ""
  6603. },
  6604. "require": {
  6605. "php": ">=5.4"
  6606. },
  6607. "require-dev": {
  6608. "phpunit/phpunit": "~4.0",
  6609. "squizlabs/php_codesniffer": "~1.0"
  6610. },
  6611. "type": "library",
  6612. "extra": {
  6613. "branch-alias": {
  6614. "dev-master": "1.0.x-dev"
  6615. }
  6616. },
  6617. "autoload": {
  6618. "psr-4": {
  6619. "PhpBinaryReader\\": [
  6620. "src/",
  6621. "test/"
  6622. ]
  6623. }
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "MIT"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Matt Durrant",
  6632. "email": "mdurrant@gmail.com"
  6633. }
  6634. ],
  6635. "description": "Lightweight binary reader for PHP",
  6636. "time": "2016-12-08T01:24:19+00:00"
  6637. },
  6638. {
  6639. "name": "nikic/php-parser",
  6640. "version": "v4.10.2",
  6641. "source": {
  6642. "type": "git",
  6643. "url": "https://github.com/nikic/PHP-Parser.git",
  6644. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  6645. },
  6646. "dist": {
  6647. "type": "zip",
  6648. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  6649. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  6650. "shasum": ""
  6651. },
  6652. "require": {
  6653. "ext-tokenizer": "*",
  6654. "php": ">=7.0"
  6655. },
  6656. "require-dev": {
  6657. "ircmaxell/php-yacc": "^0.0.7",
  6658. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6659. },
  6660. "bin": [
  6661. "bin/php-parse"
  6662. ],
  6663. "type": "library",
  6664. "extra": {
  6665. "branch-alias": {
  6666. "dev-master": "4.9-dev"
  6667. }
  6668. },
  6669. "autoload": {
  6670. "psr-4": {
  6671. "PhpParser\\": "lib/PhpParser"
  6672. }
  6673. },
  6674. "notification-url": "https://packagist.org/downloads/",
  6675. "license": [
  6676. "BSD-3-Clause"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "Nikita Popov"
  6681. }
  6682. ],
  6683. "description": "A PHP parser written in PHP",
  6684. "keywords": [
  6685. "parser",
  6686. "php"
  6687. ],
  6688. "time": "2020-09-26T10:30:38+00:00"
  6689. },
  6690. {
  6691. "name": "oomphinc/composer-installers-extender",
  6692. "version": "2.0.1",
  6693. "source": {
  6694. "type": "git",
  6695. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6696. "reference": "cbf4b6f9a24153b785d09eee755b995ba87bd5f9"
  6697. },
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/cbf4b6f9a24153b785d09eee755b995ba87bd5f9",
  6701. "reference": "cbf4b6f9a24153b785d09eee755b995ba87bd5f9",
  6702. "shasum": ""
  6703. },
  6704. "require": {
  6705. "composer-plugin-api": "^1.1 || ^2.0",
  6706. "composer/installers": "^1.0 || ^2.0",
  6707. "php": ">=7.1"
  6708. },
  6709. "require-dev": {
  6710. "composer/composer": "^2.0",
  6711. "phpunit/phpunit": "^7.2",
  6712. "squizlabs/php_codesniffer": "^3.3"
  6713. },
  6714. "type": "composer-plugin",
  6715. "extra": {
  6716. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6717. },
  6718. "autoload": {
  6719. "psr-4": {
  6720. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6721. }
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "Stephen Beemsterboer",
  6730. "email": "stephen@oomphinc.com",
  6731. "homepage": "https://github.com/balbuf"
  6732. },
  6733. {
  6734. "name": "Nathan Dentzau",
  6735. "email": "nate@oomphinc.com",
  6736. "homepage": "http://oomph.is/ndentzau"
  6737. }
  6738. ],
  6739. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6740. "homepage": "http://www.oomphinc.com/",
  6741. "support": {
  6742. "issues": "https://github.com/oomphinc/composer-installers-extender/issues",
  6743. "source": "https://github.com/oomphinc/composer-installers-extender/tree/2.0.1"
  6744. },
  6745. "time": "2021-12-15T12:32:42+00:00"
  6746. },
  6747. {
  6748. "name": "paragonie/random_compat",
  6749. "version": "v9.99.99",
  6750. "source": {
  6751. "type": "git",
  6752. "url": "https://github.com/paragonie/random_compat.git",
  6753. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6754. },
  6755. "dist": {
  6756. "type": "zip",
  6757. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6758. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6759. "shasum": ""
  6760. },
  6761. "require": {
  6762. "php": "^7"
  6763. },
  6764. "require-dev": {
  6765. "phpunit/phpunit": "4.*|5.*",
  6766. "vimeo/psalm": "^1"
  6767. },
  6768. "suggest": {
  6769. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6770. },
  6771. "type": "library",
  6772. "notification-url": "https://packagist.org/downloads/",
  6773. "license": [
  6774. "MIT"
  6775. ],
  6776. "authors": [
  6777. {
  6778. "name": "Paragon Initiative Enterprises",
  6779. "email": "security@paragonie.com",
  6780. "homepage": "https://paragonie.com"
  6781. }
  6782. ],
  6783. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6784. "keywords": [
  6785. "csprng",
  6786. "polyfill",
  6787. "pseudorandom",
  6788. "random"
  6789. ],
  6790. "support": {
  6791. "email": "info@paragonie.com",
  6792. "issues": "https://github.com/paragonie/random_compat/issues",
  6793. "source": "https://github.com/paragonie/random_compat"
  6794. },
  6795. "time": "2018-07-02T15:55:56+00:00"
  6796. },
  6797. {
  6798. "name": "pear/archive_tar",
  6799. "version": "1.4.9",
  6800. "source": {
  6801. "type": "git",
  6802. "url": "https://github.com/pear/Archive_Tar.git",
  6803. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  6804. },
  6805. "dist": {
  6806. "type": "zip",
  6807. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  6808. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  6809. "shasum": ""
  6810. },
  6811. "require": {
  6812. "pear/pear-core-minimal": "^1.10.0alpha2",
  6813. "php": ">=5.2.0"
  6814. },
  6815. "require-dev": {
  6816. "phpunit/phpunit": "*"
  6817. },
  6818. "suggest": {
  6819. "ext-bz2": "Bz2 compression support.",
  6820. "ext-xz": "Lzma2 compression support.",
  6821. "ext-zlib": "Gzip compression support."
  6822. },
  6823. "type": "library",
  6824. "extra": {
  6825. "branch-alias": {
  6826. "dev-master": "1.4.x-dev"
  6827. }
  6828. },
  6829. "autoload": {
  6830. "psr-0": {
  6831. "Archive_Tar": ""
  6832. }
  6833. },
  6834. "notification-url": "https://packagist.org/downloads/",
  6835. "include-path": [
  6836. "./"
  6837. ],
  6838. "license": [
  6839. "BSD-3-Clause"
  6840. ],
  6841. "authors": [
  6842. {
  6843. "name": "Vincent Blavet",
  6844. "email": "vincent@phpconcept.net"
  6845. },
  6846. {
  6847. "name": "Greg Beaver",
  6848. "email": "greg@chiaraquartet.net"
  6849. },
  6850. {
  6851. "name": "Michiel Rook",
  6852. "email": "mrook@php.net"
  6853. }
  6854. ],
  6855. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6856. "homepage": "https://github.com/pear/Archive_Tar",
  6857. "keywords": [
  6858. "archive",
  6859. "tar"
  6860. ],
  6861. "support": {
  6862. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6863. "source": "https://github.com/pear/Archive_Tar"
  6864. },
  6865. "time": "2019-12-04T10:17:28+00:00"
  6866. },
  6867. {
  6868. "name": "pear/console_getopt",
  6869. "version": "v1.4.3",
  6870. "source": {
  6871. "type": "git",
  6872. "url": "https://github.com/pear/Console_Getopt.git",
  6873. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6874. },
  6875. "dist": {
  6876. "type": "zip",
  6877. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6878. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6879. "shasum": ""
  6880. },
  6881. "type": "library",
  6882. "autoload": {
  6883. "psr-0": {
  6884. "Console": "./"
  6885. }
  6886. },
  6887. "notification-url": "https://packagist.org/downloads/",
  6888. "include-path": [
  6889. "./"
  6890. ],
  6891. "license": [
  6892. "BSD-2-Clause"
  6893. ],
  6894. "authors": [
  6895. {
  6896. "name": "Andrei Zmievski",
  6897. "email": "andrei@php.net",
  6898. "role": "Lead"
  6899. },
  6900. {
  6901. "name": "Stig Bakken",
  6902. "email": "stig@php.net",
  6903. "role": "Developer"
  6904. },
  6905. {
  6906. "name": "Greg Beaver",
  6907. "email": "cellog@php.net",
  6908. "role": "Helper"
  6909. }
  6910. ],
  6911. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6912. "support": {
  6913. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6914. "source": "https://github.com/pear/Console_Getopt"
  6915. },
  6916. "time": "2019-11-20T18:27:48+00:00"
  6917. },
  6918. {
  6919. "name": "pear/pear-core-minimal",
  6920. "version": "v1.10.10",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://github.com/pear/pear-core-minimal.git",
  6924. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6929. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6930. "shasum": ""
  6931. },
  6932. "require": {
  6933. "pear/console_getopt": "~1.4",
  6934. "pear/pear_exception": "~1.0"
  6935. },
  6936. "replace": {
  6937. "rsky/pear-core-min": "self.version"
  6938. },
  6939. "type": "library",
  6940. "autoload": {
  6941. "psr-0": {
  6942. "": "src/"
  6943. }
  6944. },
  6945. "notification-url": "https://packagist.org/downloads/",
  6946. "include-path": [
  6947. "src/"
  6948. ],
  6949. "license": [
  6950. "BSD-3-Clause"
  6951. ],
  6952. "authors": [
  6953. {
  6954. "name": "Christian Weiske",
  6955. "email": "cweiske@php.net",
  6956. "role": "Lead"
  6957. }
  6958. ],
  6959. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6960. "support": {
  6961. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6962. "source": "https://github.com/pear/pear-core-minimal"
  6963. },
  6964. "time": "2019-11-19T19:00:24+00:00"
  6965. },
  6966. {
  6967. "name": "pear/pear_exception",
  6968. "version": "v1.0.1",
  6969. "source": {
  6970. "type": "git",
  6971. "url": "https://github.com/pear/PEAR_Exception.git",
  6972. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6973. },
  6974. "dist": {
  6975. "type": "zip",
  6976. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6977. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6978. "shasum": ""
  6979. },
  6980. "require": {
  6981. "php": ">=4.4.0"
  6982. },
  6983. "require-dev": {
  6984. "phpunit/phpunit": "*"
  6985. },
  6986. "type": "class",
  6987. "extra": {
  6988. "branch-alias": {
  6989. "dev-master": "1.0.x-dev"
  6990. }
  6991. },
  6992. "autoload": {
  6993. "classmap": [
  6994. "PEAR/"
  6995. ]
  6996. },
  6997. "notification-url": "https://packagist.org/downloads/",
  6998. "include-path": [
  6999. "."
  7000. ],
  7001. "license": [
  7002. "BSD-2-Clause"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Helgi Thormar",
  7007. "email": "dufuz@php.net"
  7008. },
  7009. {
  7010. "name": "Greg Beaver",
  7011. "email": "cellog@php.net"
  7012. }
  7013. ],
  7014. "description": "The PEAR Exception base class.",
  7015. "homepage": "https://github.com/pear/PEAR_Exception",
  7016. "keywords": [
  7017. "exception"
  7018. ],
  7019. "support": {
  7020. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7021. "source": "https://github.com/pear/PEAR_Exception"
  7022. },
  7023. "time": "2019-12-10T10:24:42+00:00"
  7024. },
  7025. {
  7026. "name": "php-http/discovery",
  7027. "version": "1.12.0",
  7028. "source": {
  7029. "type": "git",
  7030. "url": "https://github.com/php-http/discovery.git",
  7031. "reference": "4366bf1bc39b663aa87459bd725501d2f1988b6c"
  7032. },
  7033. "dist": {
  7034. "type": "zip",
  7035. "url": "https://api.github.com/repos/php-http/discovery/zipball/4366bf1bc39b663aa87459bd725501d2f1988b6c",
  7036. "reference": "4366bf1bc39b663aa87459bd725501d2f1988b6c",
  7037. "shasum": ""
  7038. },
  7039. "require": {
  7040. "php": "^7.1 || ^8.0"
  7041. },
  7042. "conflict": {
  7043. "nyholm/psr7": "<1.0"
  7044. },
  7045. "require-dev": {
  7046. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  7047. "php-http/httplug": "^1.0 || ^2.0",
  7048. "php-http/message-factory": "^1.0",
  7049. "phpspec/phpspec": "^5.1 || ^6.1",
  7050. "puli/composer-plugin": "1.0.0-beta10"
  7051. },
  7052. "suggest": {
  7053. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  7054. "puli/composer-plugin": "Sets up Puli which is recommended for Discovery to work. Check http://docs.php-http.org/en/latest/discovery.html for more details."
  7055. },
  7056. "type": "library",
  7057. "extra": {
  7058. "branch-alias": {
  7059. "dev-master": "1.9-dev"
  7060. }
  7061. },
  7062. "autoload": {
  7063. "psr-4": {
  7064. "Http\\Discovery\\": "src/"
  7065. }
  7066. },
  7067. "notification-url": "https://packagist.org/downloads/",
  7068. "license": [
  7069. "MIT"
  7070. ],
  7071. "authors": [
  7072. {
  7073. "name": "Márk Sági-Kazár",
  7074. "email": "mark.sagikazar@gmail.com"
  7075. }
  7076. ],
  7077. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  7078. "homepage": "http://php-http.org",
  7079. "keywords": [
  7080. "adapter",
  7081. "client",
  7082. "discovery",
  7083. "factory",
  7084. "http",
  7085. "message",
  7086. "psr7"
  7087. ],
  7088. "time": "2020-09-22T13:31:04+00:00"
  7089. },
  7090. {
  7091. "name": "php-http/guzzle6-adapter",
  7092. "version": "v2.0.2",
  7093. "source": {
  7094. "type": "git",
  7095. "url": "https://github.com/php-http/guzzle6-adapter.git",
  7096. "reference": "9d1a45eb1c59f12574552e81fb295e9e53430a56"
  7097. },
  7098. "dist": {
  7099. "type": "zip",
  7100. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/9d1a45eb1c59f12574552e81fb295e9e53430a56",
  7101. "reference": "9d1a45eb1c59f12574552e81fb295e9e53430a56",
  7102. "shasum": ""
  7103. },
  7104. "require": {
  7105. "guzzlehttp/guzzle": "^6.0",
  7106. "php": "^7.1 || ^8.0",
  7107. "php-http/httplug": "^2.0",
  7108. "psr/http-client": "^1.0"
  7109. },
  7110. "provide": {
  7111. "php-http/async-client-implementation": "1.0",
  7112. "php-http/client-implementation": "1.0",
  7113. "psr/http-client-implementation": "1.0"
  7114. },
  7115. "require-dev": {
  7116. "ext-curl": "*",
  7117. "php-http/client-integration-tests": "^2.0 || ^3.0",
  7118. "phpunit/phpunit": "^7.4 || ^8.4"
  7119. },
  7120. "type": "library",
  7121. "extra": {
  7122. "branch-alias": {
  7123. "dev-master": "2.x-dev"
  7124. }
  7125. },
  7126. "autoload": {
  7127. "psr-4": {
  7128. "Http\\Adapter\\Guzzle6\\": "src/"
  7129. }
  7130. },
  7131. "notification-url": "https://packagist.org/downloads/",
  7132. "license": [
  7133. "MIT"
  7134. ],
  7135. "authors": [
  7136. {
  7137. "name": "David de Boer",
  7138. "email": "david@ddeboer.nl"
  7139. },
  7140. {
  7141. "name": "Márk Sági-Kazár",
  7142. "email": "mark.sagikazar@gmail.com"
  7143. }
  7144. ],
  7145. "description": "Guzzle 6 HTTP Adapter",
  7146. "homepage": "http://httplug.io",
  7147. "keywords": [
  7148. "Guzzle",
  7149. "http"
  7150. ],
  7151. "support": {
  7152. "issues": "https://github.com/php-http/guzzle6-adapter/issues",
  7153. "source": "https://github.com/php-http/guzzle6-adapter/tree/v2.0.2"
  7154. },
  7155. "abandoned": "guzzlehttp/guzzle or php-http/guzzle7-adapter",
  7156. "time": "2021-03-02T10:52:33+00:00"
  7157. },
  7158. {
  7159. "name": "php-http/httplug",
  7160. "version": "2.4.0",
  7161. "source": {
  7162. "type": "git",
  7163. "url": "https://github.com/php-http/httplug.git",
  7164. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  7165. },
  7166. "dist": {
  7167. "type": "zip",
  7168. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  7169. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  7170. "shasum": ""
  7171. },
  7172. "require": {
  7173. "php": "^7.1 || ^8.0",
  7174. "php-http/promise": "^1.1",
  7175. "psr/http-client": "^1.0",
  7176. "psr/http-message": "^1.0 || ^2.0"
  7177. },
  7178. "require-dev": {
  7179. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  7180. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  7181. },
  7182. "type": "library",
  7183. "autoload": {
  7184. "psr-4": {
  7185. "Http\\Client\\": "src/"
  7186. }
  7187. },
  7188. "notification-url": "https://packagist.org/downloads/",
  7189. "license": [
  7190. "MIT"
  7191. ],
  7192. "authors": [
  7193. {
  7194. "name": "Eric GELOEN",
  7195. "email": "geloen.eric@gmail.com"
  7196. },
  7197. {
  7198. "name": "Márk Sági-Kazár",
  7199. "email": "mark.sagikazar@gmail.com",
  7200. "homepage": "https://sagikazarmark.hu"
  7201. }
  7202. ],
  7203. "description": "HTTPlug, the HTTP client abstraction for PHP",
  7204. "homepage": "http://httplug.io",
  7205. "keywords": [
  7206. "client",
  7207. "http"
  7208. ],
  7209. "support": {
  7210. "issues": "https://github.com/php-http/httplug/issues",
  7211. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  7212. },
  7213. "time": "2023-04-14T15:10:03+00:00"
  7214. },
  7215. {
  7216. "name": "php-http/message",
  7217. "version": "1.14.0",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://github.com/php-http/message.git",
  7221. "reference": "2ccee04a28c3d98eb3f2b85ce1e2fcff70c0e63b"
  7222. },
  7223. "dist": {
  7224. "type": "zip",
  7225. "url": "https://api.github.com/repos/php-http/message/zipball/2ccee04a28c3d98eb3f2b85ce1e2fcff70c0e63b",
  7226. "reference": "2ccee04a28c3d98eb3f2b85ce1e2fcff70c0e63b",
  7227. "shasum": ""
  7228. },
  7229. "require": {
  7230. "clue/stream-filter": "^1.5",
  7231. "php": "^7.1 || ^8.0",
  7232. "php-http/message-factory": "^1.0.2",
  7233. "psr/http-message": "^1.0 || ^2.0"
  7234. },
  7235. "provide": {
  7236. "php-http/message-factory-implementation": "1.0"
  7237. },
  7238. "require-dev": {
  7239. "ergebnis/composer-normalize": "^2.6",
  7240. "ext-zlib": "*",
  7241. "guzzlehttp/psr7": "^1.0",
  7242. "laminas/laminas-diactoros": "^2.0",
  7243. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  7244. "slim/slim": "^3.0"
  7245. },
  7246. "suggest": {
  7247. "ext-zlib": "Used with compressor/decompressor streams",
  7248. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  7249. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  7250. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  7251. },
  7252. "type": "library",
  7253. "autoload": {
  7254. "files": [
  7255. "src/filters.php"
  7256. ],
  7257. "psr-4": {
  7258. "Http\\Message\\": "src/"
  7259. }
  7260. },
  7261. "notification-url": "https://packagist.org/downloads/",
  7262. "license": [
  7263. "MIT"
  7264. ],
  7265. "authors": [
  7266. {
  7267. "name": "Márk Sági-Kazár",
  7268. "email": "mark.sagikazar@gmail.com"
  7269. }
  7270. ],
  7271. "description": "HTTP Message related tools",
  7272. "homepage": "http://php-http.org",
  7273. "keywords": [
  7274. "http",
  7275. "message",
  7276. "psr-7"
  7277. ],
  7278. "support": {
  7279. "issues": "https://github.com/php-http/message/issues",
  7280. "source": "https://github.com/php-http/message/tree/1.14.0"
  7281. },
  7282. "time": "2023-04-14T14:26:18+00:00"
  7283. },
  7284. {
  7285. "name": "php-http/message-factory",
  7286. "version": "1.1.0",
  7287. "source": {
  7288. "type": "git",
  7289. "url": "https://github.com/php-http/message-factory.git",
  7290. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57"
  7291. },
  7292. "dist": {
  7293. "type": "zip",
  7294. "url": "https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  7295. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  7296. "shasum": ""
  7297. },
  7298. "require": {
  7299. "php": ">=5.4",
  7300. "psr/http-message": "^1.0 || ^2.0"
  7301. },
  7302. "type": "library",
  7303. "extra": {
  7304. "branch-alias": {
  7305. "dev-master": "1.x-dev"
  7306. }
  7307. },
  7308. "autoload": {
  7309. "psr-4": {
  7310. "Http\\Message\\": "src/"
  7311. }
  7312. },
  7313. "notification-url": "https://packagist.org/downloads/",
  7314. "license": [
  7315. "MIT"
  7316. ],
  7317. "authors": [
  7318. {
  7319. "name": "Márk Sági-Kazár",
  7320. "email": "mark.sagikazar@gmail.com"
  7321. }
  7322. ],
  7323. "description": "Factory interfaces for PSR-7 HTTP Message",
  7324. "homepage": "http://php-http.org",
  7325. "keywords": [
  7326. "factory",
  7327. "http",
  7328. "message",
  7329. "stream",
  7330. "uri"
  7331. ],
  7332. "support": {
  7333. "issues": "https://github.com/php-http/message-factory/issues",
  7334. "source": "https://github.com/php-http/message-factory/tree/1.1.0"
  7335. },
  7336. "abandoned": "psr/http-factory",
  7337. "time": "2023-04-14T14:16:17+00:00"
  7338. },
  7339. {
  7340. "name": "php-http/promise",
  7341. "version": "1.3.0",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/php-http/promise.git",
  7345. "reference": "2916a606d3b390f4e9e8e2b8dd68581508be0f07"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/php-http/promise/zipball/2916a606d3b390f4e9e8e2b8dd68581508be0f07",
  7350. "reference": "2916a606d3b390f4e9e8e2b8dd68581508be0f07",
  7351. "shasum": ""
  7352. },
  7353. "require": {
  7354. "php": "^7.1 || ^8.0"
  7355. },
  7356. "require-dev": {
  7357. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  7358. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  7359. },
  7360. "type": "library",
  7361. "autoload": {
  7362. "psr-4": {
  7363. "Http\\Promise\\": "src/"
  7364. }
  7365. },
  7366. "notification-url": "https://packagist.org/downloads/",
  7367. "license": [
  7368. "MIT"
  7369. ],
  7370. "authors": [
  7371. {
  7372. "name": "Joel Wurtz",
  7373. "email": "joel.wurtz@gmail.com"
  7374. },
  7375. {
  7376. "name": "Márk Sági-Kazár",
  7377. "email": "mark.sagikazar@gmail.com"
  7378. }
  7379. ],
  7380. "description": "Promise used for asynchronous HTTP requests",
  7381. "homepage": "http://httplug.io",
  7382. "keywords": [
  7383. "promise"
  7384. ],
  7385. "support": {
  7386. "issues": "https://github.com/php-http/promise/issues",
  7387. "source": "https://github.com/php-http/promise/tree/1.3.0"
  7388. },
  7389. "time": "2024-01-04T18:49:48+00:00"
  7390. },
  7391. {
  7392. "name": "psr/container",
  7393. "version": "1.0.0",
  7394. "source": {
  7395. "type": "git",
  7396. "url": "https://github.com/php-fig/container.git",
  7397. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7398. },
  7399. "dist": {
  7400. "type": "zip",
  7401. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7402. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7403. "shasum": ""
  7404. },
  7405. "require": {
  7406. "php": ">=5.3.0"
  7407. },
  7408. "type": "library",
  7409. "extra": {
  7410. "branch-alias": {
  7411. "dev-master": "1.0.x-dev"
  7412. }
  7413. },
  7414. "autoload": {
  7415. "psr-4": {
  7416. "Psr\\Container\\": "src/"
  7417. }
  7418. },
  7419. "notification-url": "https://packagist.org/downloads/",
  7420. "license": [
  7421. "MIT"
  7422. ],
  7423. "authors": [
  7424. {
  7425. "name": "PHP-FIG",
  7426. "homepage": "http://www.php-fig.org/"
  7427. }
  7428. ],
  7429. "description": "Common Container Interface (PHP FIG PSR-11)",
  7430. "homepage": "https://github.com/php-fig/container",
  7431. "keywords": [
  7432. "PSR-11",
  7433. "container",
  7434. "container-interface",
  7435. "container-interop",
  7436. "psr"
  7437. ],
  7438. "support": {
  7439. "issues": "https://github.com/php-fig/container/issues",
  7440. "source": "https://github.com/php-fig/container/tree/master"
  7441. },
  7442. "time": "2017-02-14T16:28:37+00:00"
  7443. },
  7444. {
  7445. "name": "psr/http-client",
  7446. "version": "1.0.3",
  7447. "source": {
  7448. "type": "git",
  7449. "url": "https://github.com/php-fig/http-client.git",
  7450. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7451. },
  7452. "dist": {
  7453. "type": "zip",
  7454. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7455. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7456. "shasum": ""
  7457. },
  7458. "require": {
  7459. "php": "^7.0 || ^8.0",
  7460. "psr/http-message": "^1.0 || ^2.0"
  7461. },
  7462. "type": "library",
  7463. "extra": {
  7464. "branch-alias": {
  7465. "dev-master": "1.0.x-dev"
  7466. }
  7467. },
  7468. "autoload": {
  7469. "psr-4": {
  7470. "Psr\\Http\\Client\\": "src/"
  7471. }
  7472. },
  7473. "notification-url": "https://packagist.org/downloads/",
  7474. "license": [
  7475. "MIT"
  7476. ],
  7477. "authors": [
  7478. {
  7479. "name": "PHP-FIG",
  7480. "homepage": "https://www.php-fig.org/"
  7481. }
  7482. ],
  7483. "description": "Common interface for HTTP clients",
  7484. "homepage": "https://github.com/php-fig/http-client",
  7485. "keywords": [
  7486. "http",
  7487. "http-client",
  7488. "psr",
  7489. "psr-18"
  7490. ],
  7491. "support": {
  7492. "source": "https://github.com/php-fig/http-client"
  7493. },
  7494. "time": "2023-09-23T14:17:50+00:00"
  7495. },
  7496. {
  7497. "name": "psr/http-message",
  7498. "version": "1.0.1",
  7499. "source": {
  7500. "type": "git",
  7501. "url": "https://github.com/php-fig/http-message.git",
  7502. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7503. },
  7504. "dist": {
  7505. "type": "zip",
  7506. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7507. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7508. "shasum": ""
  7509. },
  7510. "require": {
  7511. "php": ">=5.3.0"
  7512. },
  7513. "type": "library",
  7514. "extra": {
  7515. "branch-alias": {
  7516. "dev-master": "1.0.x-dev"
  7517. }
  7518. },
  7519. "autoload": {
  7520. "psr-4": {
  7521. "Psr\\Http\\Message\\": "src/"
  7522. }
  7523. },
  7524. "notification-url": "https://packagist.org/downloads/",
  7525. "license": [
  7526. "MIT"
  7527. ],
  7528. "authors": [
  7529. {
  7530. "name": "PHP-FIG",
  7531. "homepage": "http://www.php-fig.org/"
  7532. }
  7533. ],
  7534. "description": "Common interface for HTTP messages",
  7535. "homepage": "https://github.com/php-fig/http-message",
  7536. "keywords": [
  7537. "http",
  7538. "http-message",
  7539. "psr",
  7540. "psr-7",
  7541. "request",
  7542. "response"
  7543. ],
  7544. "support": {
  7545. "source": "https://github.com/php-fig/http-message/tree/master"
  7546. },
  7547. "time": "2016-08-06T14:39:51+00:00"
  7548. },
  7549. {
  7550. "name": "psr/log",
  7551. "version": "1.1.3",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/php-fig/log.git",
  7555. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7560. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7561. "shasum": ""
  7562. },
  7563. "require": {
  7564. "php": ">=5.3.0"
  7565. },
  7566. "type": "library",
  7567. "extra": {
  7568. "branch-alias": {
  7569. "dev-master": "1.1.x-dev"
  7570. }
  7571. },
  7572. "autoload": {
  7573. "psr-4": {
  7574. "Psr\\Log\\": "Psr/Log/"
  7575. }
  7576. },
  7577. "notification-url": "https://packagist.org/downloads/",
  7578. "license": [
  7579. "MIT"
  7580. ],
  7581. "authors": [
  7582. {
  7583. "name": "PHP-FIG",
  7584. "homepage": "http://www.php-fig.org/"
  7585. }
  7586. ],
  7587. "description": "Common interface for logging libraries",
  7588. "homepage": "https://github.com/php-fig/log",
  7589. "keywords": [
  7590. "log",
  7591. "psr",
  7592. "psr-3"
  7593. ],
  7594. "support": {
  7595. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7596. },
  7597. "time": "2020-03-23T09:12:05+00:00"
  7598. },
  7599. {
  7600. "name": "psy/psysh",
  7601. "version": "v0.10.4",
  7602. "source": {
  7603. "type": "git",
  7604. "url": "https://github.com/bobthecow/psysh.git",
  7605. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7606. },
  7607. "dist": {
  7608. "type": "zip",
  7609. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7610. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7611. "shasum": ""
  7612. },
  7613. "require": {
  7614. "dnoegel/php-xdg-base-dir": "0.1.*",
  7615. "ext-json": "*",
  7616. "ext-tokenizer": "*",
  7617. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7618. "php": "^8.0 || ^7.0 || ^5.5.9",
  7619. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7620. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7621. },
  7622. "require-dev": {
  7623. "bamarni/composer-bin-plugin": "^1.2",
  7624. "hoa/console": "3.17.*"
  7625. },
  7626. "suggest": {
  7627. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7628. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7629. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7630. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7631. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7632. },
  7633. "bin": [
  7634. "bin/psysh"
  7635. ],
  7636. "type": "library",
  7637. "extra": {
  7638. "branch-alias": {
  7639. "dev-master": "0.10.x-dev"
  7640. }
  7641. },
  7642. "autoload": {
  7643. "files": [
  7644. "src/functions.php"
  7645. ],
  7646. "psr-4": {
  7647. "Psy\\": "src/"
  7648. }
  7649. },
  7650. "notification-url": "https://packagist.org/downloads/",
  7651. "license": [
  7652. "MIT"
  7653. ],
  7654. "authors": [
  7655. {
  7656. "name": "Justin Hileman",
  7657. "email": "justin@justinhileman.info",
  7658. "homepage": "http://justinhileman.com"
  7659. }
  7660. ],
  7661. "description": "An interactive shell for modern PHP.",
  7662. "homepage": "http://psysh.org",
  7663. "keywords": [
  7664. "REPL",
  7665. "console",
  7666. "interactive",
  7667. "shell"
  7668. ],
  7669. "time": "2020-05-03T19:32:03+00:00"
  7670. },
  7671. {
  7672. "name": "ralouphie/getallheaders",
  7673. "version": "3.0.3",
  7674. "source": {
  7675. "type": "git",
  7676. "url": "https://github.com/ralouphie/getallheaders.git",
  7677. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7678. },
  7679. "dist": {
  7680. "type": "zip",
  7681. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7682. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7683. "shasum": ""
  7684. },
  7685. "require": {
  7686. "php": ">=5.6"
  7687. },
  7688. "require-dev": {
  7689. "php-coveralls/php-coveralls": "^2.1",
  7690. "phpunit/phpunit": "^5 || ^6.5"
  7691. },
  7692. "type": "library",
  7693. "autoload": {
  7694. "files": [
  7695. "src/getallheaders.php"
  7696. ]
  7697. },
  7698. "notification-url": "https://packagist.org/downloads/",
  7699. "license": [
  7700. "MIT"
  7701. ],
  7702. "authors": [
  7703. {
  7704. "name": "Ralph Khattar",
  7705. "email": "ralph.khattar@gmail.com"
  7706. }
  7707. ],
  7708. "description": "A polyfill for getallheaders.",
  7709. "support": {
  7710. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7711. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7712. },
  7713. "time": "2019-03-08T08:55:37+00:00"
  7714. },
  7715. {
  7716. "name": "sierrafayad/osm-pbf",
  7717. "version": "1.0.1",
  7718. "source": {
  7719. "type": "git",
  7720. "url": "https://github.com/sierrafayad/osm-pbf.git",
  7721. "reference": "5780393d043d7c3132bb513f4b23e295ed934a47"
  7722. },
  7723. "dist": {
  7724. "type": "zip",
  7725. "url": "https://api.github.com/repos/sierrafayad/osm-pbf/zipball/5780393d043d7c3132bb513f4b23e295ed934a47",
  7726. "reference": "5780393d043d7c3132bb513f4b23e295ed934a47",
  7727. "shasum": ""
  7728. },
  7729. "require": {
  7730. "ext-zlib": "*",
  7731. "google/protobuf": "v3.6.1.3",
  7732. "mdurrant/php-binary-reader": "^1.0",
  7733. "php": ">=5.6"
  7734. },
  7735. "type": "library",
  7736. "autoload": {
  7737. "psr-4": {
  7738. "OsmPbf\\": "src/",
  7739. "OsmProto\\": "src/OSMProto/"
  7740. }
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "MIT"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "Frank Sierra-Fayad",
  7749. "email": "frank@sierrafayad.com"
  7750. }
  7751. ],
  7752. "description": "Works with Open Street Map .osm.pbf compressed files.",
  7753. "homepage": "https://github.com/sierrafayad/osm-pbf",
  7754. "keywords": [
  7755. "OpenStreetMap",
  7756. "open street map",
  7757. "osm",
  7758. "pbf"
  7759. ],
  7760. "time": "2019-09-10T22:57:33+00:00"
  7761. },
  7762. {
  7763. "name": "stack/builder",
  7764. "version": "v1.0.5",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/stackphp/builder.git",
  7768. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7773. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "php": ">=5.3.0",
  7778. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7779. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7780. },
  7781. "require-dev": {
  7782. "silex/silex": "~1.0"
  7783. },
  7784. "type": "library",
  7785. "extra": {
  7786. "branch-alias": {
  7787. "dev-master": "1.0-dev"
  7788. }
  7789. },
  7790. "autoload": {
  7791. "psr-0": {
  7792. "Stack": "src"
  7793. }
  7794. },
  7795. "notification-url": "https://packagist.org/downloads/",
  7796. "license": [
  7797. "MIT"
  7798. ],
  7799. "authors": [
  7800. {
  7801. "name": "Igor Wiedler",
  7802. "email": "igor@wiedler.ch"
  7803. }
  7804. ],
  7805. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7806. "keywords": [
  7807. "stack"
  7808. ],
  7809. "support": {
  7810. "issues": "https://github.com/stackphp/builder/issues",
  7811. "source": "https://github.com/stackphp/builder/tree/master"
  7812. },
  7813. "time": "2017-11-18T14:57:29+00:00"
  7814. },
  7815. {
  7816. "name": "symfony-cmf/routing",
  7817. "version": "1.4.1",
  7818. "source": {
  7819. "type": "git",
  7820. "url": "https://github.com/symfony-cmf/routing.git",
  7821. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7822. },
  7823. "dist": {
  7824. "type": "zip",
  7825. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7826. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7827. "shasum": ""
  7828. },
  7829. "require": {
  7830. "php": "^5.3.9|^7.0",
  7831. "psr/log": "1.*",
  7832. "symfony/http-kernel": "^2.2|3.*",
  7833. "symfony/routing": "^2.2|3.*"
  7834. },
  7835. "require-dev": {
  7836. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7837. "symfony-cmf/testing": "^1.3",
  7838. "symfony/config": "^2.2|3.*",
  7839. "symfony/dependency-injection": "^2.0.5|3.*",
  7840. "symfony/event-dispatcher": "^2.1|3.*"
  7841. },
  7842. "suggest": {
  7843. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7844. },
  7845. "type": "library",
  7846. "extra": {
  7847. "branch-alias": {
  7848. "dev-master": "1.4-dev"
  7849. }
  7850. },
  7851. "autoload": {
  7852. "psr-4": {
  7853. "Symfony\\Cmf\\Component\\Routing\\": ""
  7854. }
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "MIT"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Symfony CMF Community",
  7863. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7864. }
  7865. ],
  7866. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7867. "homepage": "http://cmf.symfony.com",
  7868. "keywords": [
  7869. "database",
  7870. "routing"
  7871. ],
  7872. "support": {
  7873. "issues": "https://github.com/symfony-cmf/routing/issues",
  7874. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7875. },
  7876. "time": "2017-05-09T08:10:41+00:00"
  7877. },
  7878. {
  7879. "name": "symfony/class-loader",
  7880. "version": "v3.4.41",
  7881. "source": {
  7882. "type": "git",
  7883. "url": "https://github.com/symfony/class-loader.git",
  7884. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7885. },
  7886. "dist": {
  7887. "type": "zip",
  7888. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7889. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7890. "shasum": ""
  7891. },
  7892. "require": {
  7893. "php": "^5.5.9|>=7.0.8"
  7894. },
  7895. "require-dev": {
  7896. "symfony/finder": "~2.8|~3.0|~4.0",
  7897. "symfony/polyfill-apcu": "~1.1"
  7898. },
  7899. "suggest": {
  7900. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7901. },
  7902. "type": "library",
  7903. "extra": {
  7904. "branch-alias": {
  7905. "dev-master": "3.4-dev"
  7906. }
  7907. },
  7908. "autoload": {
  7909. "psr-4": {
  7910. "Symfony\\Component\\ClassLoader\\": ""
  7911. },
  7912. "exclude-from-classmap": [
  7913. "/Tests/"
  7914. ]
  7915. },
  7916. "notification-url": "https://packagist.org/downloads/",
  7917. "license": [
  7918. "MIT"
  7919. ],
  7920. "authors": [
  7921. {
  7922. "name": "Fabien Potencier",
  7923. "email": "fabien@symfony.com"
  7924. },
  7925. {
  7926. "name": "Symfony Community",
  7927. "homepage": "https://symfony.com/contributors"
  7928. }
  7929. ],
  7930. "description": "Symfony ClassLoader Component",
  7931. "homepage": "https://symfony.com",
  7932. "support": {
  7933. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7934. },
  7935. "funding": [
  7936. {
  7937. "url": "https://symfony.com/sponsor",
  7938. "type": "custom"
  7939. },
  7940. {
  7941. "url": "https://github.com/fabpot",
  7942. "type": "github"
  7943. },
  7944. {
  7945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7946. "type": "tidelift"
  7947. }
  7948. ],
  7949. "abandoned": true,
  7950. "time": "2020-03-15T09:38:08+00:00"
  7951. },
  7952. {
  7953. "name": "symfony/console",
  7954. "version": "v3.4.41",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/symfony/console.git",
  7958. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7963. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "php": "^5.5.9|>=7.0.8",
  7968. "symfony/debug": "~2.8|~3.0|~4.0",
  7969. "symfony/polyfill-mbstring": "~1.0"
  7970. },
  7971. "conflict": {
  7972. "symfony/dependency-injection": "<3.4",
  7973. "symfony/process": "<3.3"
  7974. },
  7975. "provide": {
  7976. "psr/log-implementation": "1.0"
  7977. },
  7978. "require-dev": {
  7979. "psr/log": "~1.0",
  7980. "symfony/config": "~3.3|~4.0",
  7981. "symfony/dependency-injection": "~3.4|~4.0",
  7982. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7983. "symfony/lock": "~3.4|~4.0",
  7984. "symfony/process": "~3.3|~4.0"
  7985. },
  7986. "suggest": {
  7987. "psr/log": "For using the console logger",
  7988. "symfony/event-dispatcher": "",
  7989. "symfony/lock": "",
  7990. "symfony/process": ""
  7991. },
  7992. "type": "library",
  7993. "extra": {
  7994. "branch-alias": {
  7995. "dev-master": "3.4-dev"
  7996. }
  7997. },
  7998. "autoload": {
  7999. "psr-4": {
  8000. "Symfony\\Component\\Console\\": ""
  8001. },
  8002. "exclude-from-classmap": [
  8003. "/Tests/"
  8004. ]
  8005. },
  8006. "notification-url": "https://packagist.org/downloads/",
  8007. "license": [
  8008. "MIT"
  8009. ],
  8010. "authors": [
  8011. {
  8012. "name": "Fabien Potencier",
  8013. "email": "fabien@symfony.com"
  8014. },
  8015. {
  8016. "name": "Symfony Community",
  8017. "homepage": "https://symfony.com/contributors"
  8018. }
  8019. ],
  8020. "description": "Symfony Console Component",
  8021. "homepage": "https://symfony.com",
  8022. "support": {
  8023. "source": "https://github.com/symfony/console/tree/v3.4.41"
  8024. },
  8025. "funding": [
  8026. {
  8027. "url": "https://symfony.com/sponsor",
  8028. "type": "custom"
  8029. },
  8030. {
  8031. "url": "https://github.com/fabpot",
  8032. "type": "github"
  8033. },
  8034. {
  8035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8036. "type": "tidelift"
  8037. }
  8038. ],
  8039. "time": "2020-05-30T18:58:05+00:00"
  8040. },
  8041. {
  8042. "name": "symfony/debug",
  8043. "version": "v3.4.41",
  8044. "source": {
  8045. "type": "git",
  8046. "url": "https://github.com/symfony/debug.git",
  8047. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  8048. },
  8049. "dist": {
  8050. "type": "zip",
  8051. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8052. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8053. "shasum": ""
  8054. },
  8055. "require": {
  8056. "php": "^5.5.9|>=7.0.8",
  8057. "psr/log": "~1.0"
  8058. },
  8059. "conflict": {
  8060. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8061. },
  8062. "require-dev": {
  8063. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8064. },
  8065. "type": "library",
  8066. "extra": {
  8067. "branch-alias": {
  8068. "dev-master": "3.4-dev"
  8069. }
  8070. },
  8071. "autoload": {
  8072. "psr-4": {
  8073. "Symfony\\Component\\Debug\\": ""
  8074. },
  8075. "exclude-from-classmap": [
  8076. "/Tests/"
  8077. ]
  8078. },
  8079. "notification-url": "https://packagist.org/downloads/",
  8080. "license": [
  8081. "MIT"
  8082. ],
  8083. "authors": [
  8084. {
  8085. "name": "Fabien Potencier",
  8086. "email": "fabien@symfony.com"
  8087. },
  8088. {
  8089. "name": "Symfony Community",
  8090. "homepage": "https://symfony.com/contributors"
  8091. }
  8092. ],
  8093. "description": "Symfony Debug Component",
  8094. "homepage": "https://symfony.com",
  8095. "support": {
  8096. "source": "https://github.com/symfony/debug/tree/3.4"
  8097. },
  8098. "funding": [
  8099. {
  8100. "url": "https://symfony.com/sponsor",
  8101. "type": "custom"
  8102. },
  8103. {
  8104. "url": "https://github.com/fabpot",
  8105. "type": "github"
  8106. },
  8107. {
  8108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8109. "type": "tidelift"
  8110. }
  8111. ],
  8112. "abandoned": "symfony/error-handler",
  8113. "time": "2020-05-22T18:25:20+00:00"
  8114. },
  8115. {
  8116. "name": "symfony/dependency-injection",
  8117. "version": "v3.4.41",
  8118. "source": {
  8119. "type": "git",
  8120. "url": "https://github.com/symfony/dependency-injection.git",
  8121. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  8122. },
  8123. "dist": {
  8124. "type": "zip",
  8125. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  8126. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  8127. "shasum": ""
  8128. },
  8129. "require": {
  8130. "php": "^5.5.9|>=7.0.8",
  8131. "psr/container": "^1.0"
  8132. },
  8133. "conflict": {
  8134. "symfony/config": "<3.3.7",
  8135. "symfony/finder": "<3.3",
  8136. "symfony/proxy-manager-bridge": "<3.4",
  8137. "symfony/yaml": "<3.4"
  8138. },
  8139. "provide": {
  8140. "psr/container-implementation": "1.0"
  8141. },
  8142. "require-dev": {
  8143. "symfony/config": "~3.3|~4.0",
  8144. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8145. "symfony/yaml": "~3.4|~4.0"
  8146. },
  8147. "suggest": {
  8148. "symfony/config": "",
  8149. "symfony/expression-language": "For using expressions in service container configuration",
  8150. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8151. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8152. "symfony/yaml": ""
  8153. },
  8154. "type": "library",
  8155. "extra": {
  8156. "branch-alias": {
  8157. "dev-master": "3.4-dev"
  8158. }
  8159. },
  8160. "autoload": {
  8161. "psr-4": {
  8162. "Symfony\\Component\\DependencyInjection\\": ""
  8163. },
  8164. "exclude-from-classmap": [
  8165. "/Tests/"
  8166. ]
  8167. },
  8168. "notification-url": "https://packagist.org/downloads/",
  8169. "license": [
  8170. "MIT"
  8171. ],
  8172. "authors": [
  8173. {
  8174. "name": "Fabien Potencier",
  8175. "email": "fabien@symfony.com"
  8176. },
  8177. {
  8178. "name": "Symfony Community",
  8179. "homepage": "https://symfony.com/contributors"
  8180. }
  8181. ],
  8182. "description": "Symfony DependencyInjection Component",
  8183. "homepage": "https://symfony.com",
  8184. "support": {
  8185. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  8186. },
  8187. "funding": [
  8188. {
  8189. "url": "https://symfony.com/sponsor",
  8190. "type": "custom"
  8191. },
  8192. {
  8193. "url": "https://github.com/fabpot",
  8194. "type": "github"
  8195. },
  8196. {
  8197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8198. "type": "tidelift"
  8199. }
  8200. ],
  8201. "time": "2020-05-30T21:06:01+00:00"
  8202. },
  8203. {
  8204. "name": "symfony/event-dispatcher",
  8205. "version": "v3.4.41",
  8206. "source": {
  8207. "type": "git",
  8208. "url": "https://github.com/symfony/event-dispatcher.git",
  8209. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  8210. },
  8211. "dist": {
  8212. "type": "zip",
  8213. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  8214. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  8215. "shasum": ""
  8216. },
  8217. "require": {
  8218. "php": "^5.5.9|>=7.0.8"
  8219. },
  8220. "conflict": {
  8221. "symfony/dependency-injection": "<3.3"
  8222. },
  8223. "require-dev": {
  8224. "psr/log": "~1.0",
  8225. "symfony/config": "~2.8|~3.0|~4.0",
  8226. "symfony/dependency-injection": "~3.3|~4.0",
  8227. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8228. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8229. },
  8230. "suggest": {
  8231. "symfony/dependency-injection": "",
  8232. "symfony/http-kernel": ""
  8233. },
  8234. "type": "library",
  8235. "extra": {
  8236. "branch-alias": {
  8237. "dev-master": "3.4-dev"
  8238. }
  8239. },
  8240. "autoload": {
  8241. "psr-4": {
  8242. "Symfony\\Component\\EventDispatcher\\": ""
  8243. },
  8244. "exclude-from-classmap": [
  8245. "/Tests/"
  8246. ]
  8247. },
  8248. "notification-url": "https://packagist.org/downloads/",
  8249. "license": [
  8250. "MIT"
  8251. ],
  8252. "authors": [
  8253. {
  8254. "name": "Fabien Potencier",
  8255. "email": "fabien@symfony.com"
  8256. },
  8257. {
  8258. "name": "Symfony Community",
  8259. "homepage": "https://symfony.com/contributors"
  8260. }
  8261. ],
  8262. "description": "Symfony EventDispatcher Component",
  8263. "homepage": "https://symfony.com",
  8264. "support": {
  8265. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8266. },
  8267. "funding": [
  8268. {
  8269. "url": "https://symfony.com/sponsor",
  8270. "type": "custom"
  8271. },
  8272. {
  8273. "url": "https://github.com/fabpot",
  8274. "type": "github"
  8275. },
  8276. {
  8277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8278. "type": "tidelift"
  8279. }
  8280. ],
  8281. "time": "2020-05-05T15:06:23+00:00"
  8282. },
  8283. {
  8284. "name": "symfony/filesystem",
  8285. "version": "v4.4.42",
  8286. "source": {
  8287. "type": "git",
  8288. "url": "https://github.com/symfony/filesystem.git",
  8289. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8290. },
  8291. "dist": {
  8292. "type": "zip",
  8293. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8294. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8295. "shasum": ""
  8296. },
  8297. "require": {
  8298. "php": ">=7.1.3",
  8299. "symfony/polyfill-ctype": "~1.8",
  8300. "symfony/polyfill-php80": "^1.16"
  8301. },
  8302. "type": "library",
  8303. "autoload": {
  8304. "psr-4": {
  8305. "Symfony\\Component\\Filesystem\\": ""
  8306. },
  8307. "exclude-from-classmap": [
  8308. "/Tests/"
  8309. ]
  8310. },
  8311. "notification-url": "https://packagist.org/downloads/",
  8312. "license": [
  8313. "MIT"
  8314. ],
  8315. "authors": [
  8316. {
  8317. "name": "Fabien Potencier",
  8318. "email": "fabien@symfony.com"
  8319. },
  8320. {
  8321. "name": "Symfony Community",
  8322. "homepage": "https://symfony.com/contributors"
  8323. }
  8324. ],
  8325. "description": "Provides basic utilities for the filesystem",
  8326. "homepage": "https://symfony.com",
  8327. "support": {
  8328. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8329. },
  8330. "funding": [
  8331. {
  8332. "url": "https://symfony.com/sponsor",
  8333. "type": "custom"
  8334. },
  8335. {
  8336. "url": "https://github.com/fabpot",
  8337. "type": "github"
  8338. },
  8339. {
  8340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8341. "type": "tidelift"
  8342. }
  8343. ],
  8344. "time": "2022-05-20T08:49:14+00:00"
  8345. },
  8346. {
  8347. "name": "symfony/finder",
  8348. "version": "v4.4.44",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/symfony/finder.git",
  8352. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8357. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "php": ">=7.1.3",
  8362. "symfony/polyfill-php80": "^1.16"
  8363. },
  8364. "type": "library",
  8365. "autoload": {
  8366. "psr-4": {
  8367. "Symfony\\Component\\Finder\\": ""
  8368. },
  8369. "exclude-from-classmap": [
  8370. "/Tests/"
  8371. ]
  8372. },
  8373. "notification-url": "https://packagist.org/downloads/",
  8374. "license": [
  8375. "MIT"
  8376. ],
  8377. "authors": [
  8378. {
  8379. "name": "Fabien Potencier",
  8380. "email": "fabien@symfony.com"
  8381. },
  8382. {
  8383. "name": "Symfony Community",
  8384. "homepage": "https://symfony.com/contributors"
  8385. }
  8386. ],
  8387. "description": "Finds files and directories via an intuitive fluent interface",
  8388. "homepage": "https://symfony.com",
  8389. "support": {
  8390. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8391. },
  8392. "funding": [
  8393. {
  8394. "url": "https://symfony.com/sponsor",
  8395. "type": "custom"
  8396. },
  8397. {
  8398. "url": "https://github.com/fabpot",
  8399. "type": "github"
  8400. },
  8401. {
  8402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8403. "type": "tidelift"
  8404. }
  8405. ],
  8406. "time": "2022-07-29T07:35:46+00:00"
  8407. },
  8408. {
  8409. "name": "symfony/http-foundation",
  8410. "version": "v3.4.41",
  8411. "source": {
  8412. "type": "git",
  8413. "url": "https://github.com/symfony/http-foundation.git",
  8414. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8415. },
  8416. "dist": {
  8417. "type": "zip",
  8418. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8419. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8420. "shasum": ""
  8421. },
  8422. "require": {
  8423. "php": "^5.5.9|>=7.0.8",
  8424. "symfony/polyfill-mbstring": "~1.1",
  8425. "symfony/polyfill-php70": "~1.6"
  8426. },
  8427. "require-dev": {
  8428. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8429. },
  8430. "type": "library",
  8431. "extra": {
  8432. "branch-alias": {
  8433. "dev-master": "3.4-dev"
  8434. }
  8435. },
  8436. "autoload": {
  8437. "psr-4": {
  8438. "Symfony\\Component\\HttpFoundation\\": ""
  8439. },
  8440. "exclude-from-classmap": [
  8441. "/Tests/"
  8442. ]
  8443. },
  8444. "notification-url": "https://packagist.org/downloads/",
  8445. "license": [
  8446. "MIT"
  8447. ],
  8448. "authors": [
  8449. {
  8450. "name": "Fabien Potencier",
  8451. "email": "fabien@symfony.com"
  8452. },
  8453. {
  8454. "name": "Symfony Community",
  8455. "homepage": "https://symfony.com/contributors"
  8456. }
  8457. ],
  8458. "description": "Symfony HttpFoundation Component",
  8459. "homepage": "https://symfony.com",
  8460. "support": {
  8461. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8462. },
  8463. "funding": [
  8464. {
  8465. "url": "https://symfony.com/sponsor",
  8466. "type": "custom"
  8467. },
  8468. {
  8469. "url": "https://github.com/fabpot",
  8470. "type": "github"
  8471. },
  8472. {
  8473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8474. "type": "tidelift"
  8475. }
  8476. ],
  8477. "time": "2020-05-16T13:15:54+00:00"
  8478. },
  8479. {
  8480. "name": "symfony/http-kernel",
  8481. "version": "v3.4.44",
  8482. "source": {
  8483. "type": "git",
  8484. "url": "https://github.com/symfony/http-kernel.git",
  8485. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8486. },
  8487. "dist": {
  8488. "type": "zip",
  8489. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8490. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8491. "shasum": ""
  8492. },
  8493. "require": {
  8494. "php": "^5.5.9|>=7.0.8",
  8495. "psr/log": "~1.0",
  8496. "symfony/debug": "^3.3.3|~4.0",
  8497. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8498. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8499. "symfony/polyfill-ctype": "~1.8",
  8500. "symfony/polyfill-php56": "~1.8"
  8501. },
  8502. "conflict": {
  8503. "symfony/config": "<2.8",
  8504. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8505. "symfony/var-dumper": "<3.3",
  8506. "twig/twig": "<1.34|<2.4,>=2"
  8507. },
  8508. "provide": {
  8509. "psr/log-implementation": "1.0"
  8510. },
  8511. "require-dev": {
  8512. "psr/cache": "~1.0",
  8513. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8514. "symfony/class-loader": "~2.8|~3.0",
  8515. "symfony/config": "~2.8|~3.0|~4.0",
  8516. "symfony/console": "~2.8|~3.0|~4.0",
  8517. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8518. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8519. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8520. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8521. "symfony/finder": "~2.8|~3.0|~4.0",
  8522. "symfony/process": "~2.8|~3.0|~4.0",
  8523. "symfony/routing": "~3.4|~4.0",
  8524. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8525. "symfony/templating": "~2.8|~3.0|~4.0",
  8526. "symfony/translation": "~2.8|~3.0|~4.0",
  8527. "symfony/var-dumper": "~3.3|~4.0"
  8528. },
  8529. "suggest": {
  8530. "symfony/browser-kit": "",
  8531. "symfony/config": "",
  8532. "symfony/console": "",
  8533. "symfony/dependency-injection": "",
  8534. "symfony/finder": "",
  8535. "symfony/var-dumper": ""
  8536. },
  8537. "type": "library",
  8538. "extra": {
  8539. "branch-alias": {
  8540. "dev-master": "3.4-dev"
  8541. }
  8542. },
  8543. "autoload": {
  8544. "psr-4": {
  8545. "Symfony\\Component\\HttpKernel\\": ""
  8546. },
  8547. "exclude-from-classmap": [
  8548. "/Tests/"
  8549. ]
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "MIT"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Fabien Potencier",
  8558. "email": "fabien@symfony.com"
  8559. },
  8560. {
  8561. "name": "Symfony Community",
  8562. "homepage": "https://symfony.com/contributors"
  8563. }
  8564. ],
  8565. "description": "Symfony HttpKernel Component",
  8566. "homepage": "https://symfony.com",
  8567. "support": {
  8568. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8569. },
  8570. "funding": [
  8571. {
  8572. "url": "https://symfony.com/sponsor",
  8573. "type": "custom"
  8574. },
  8575. {
  8576. "url": "https://github.com/fabpot",
  8577. "type": "github"
  8578. },
  8579. {
  8580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8581. "type": "tidelift"
  8582. }
  8583. ],
  8584. "time": "2020-08-31T05:53:42+00:00"
  8585. },
  8586. {
  8587. "name": "symfony/polyfill-ctype",
  8588. "version": "v1.17.0",
  8589. "source": {
  8590. "type": "git",
  8591. "url": "https://github.com/symfony/polyfill-ctype.git",
  8592. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8593. },
  8594. "dist": {
  8595. "type": "zip",
  8596. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8597. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8598. "shasum": ""
  8599. },
  8600. "require": {
  8601. "php": ">=5.3.3"
  8602. },
  8603. "suggest": {
  8604. "ext-ctype": "For best performance"
  8605. },
  8606. "type": "library",
  8607. "extra": {
  8608. "branch-alias": {
  8609. "dev-master": "1.17-dev"
  8610. }
  8611. },
  8612. "autoload": {
  8613. "files": [
  8614. "bootstrap.php"
  8615. ],
  8616. "psr-4": {
  8617. "Symfony\\Polyfill\\Ctype\\": ""
  8618. }
  8619. },
  8620. "notification-url": "https://packagist.org/downloads/",
  8621. "license": [
  8622. "MIT"
  8623. ],
  8624. "authors": [
  8625. {
  8626. "name": "Gert de Pagter",
  8627. "email": "BackEndTea@gmail.com"
  8628. },
  8629. {
  8630. "name": "Symfony Community",
  8631. "homepage": "https://symfony.com/contributors"
  8632. }
  8633. ],
  8634. "description": "Symfony polyfill for ctype functions",
  8635. "homepage": "https://symfony.com",
  8636. "keywords": [
  8637. "compatibility",
  8638. "ctype",
  8639. "polyfill",
  8640. "portable"
  8641. ],
  8642. "support": {
  8643. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8644. },
  8645. "funding": [
  8646. {
  8647. "url": "https://symfony.com/sponsor",
  8648. "type": "custom"
  8649. },
  8650. {
  8651. "url": "https://github.com/fabpot",
  8652. "type": "github"
  8653. },
  8654. {
  8655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8656. "type": "tidelift"
  8657. }
  8658. ],
  8659. "time": "2020-05-12T16:14:59+00:00"
  8660. },
  8661. {
  8662. "name": "symfony/polyfill-iconv",
  8663. "version": "v1.17.0",
  8664. "source": {
  8665. "type": "git",
  8666. "url": "https://github.com/symfony/polyfill-iconv.git",
  8667. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8668. },
  8669. "dist": {
  8670. "type": "zip",
  8671. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8672. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8673. "shasum": ""
  8674. },
  8675. "require": {
  8676. "php": ">=5.3.3"
  8677. },
  8678. "suggest": {
  8679. "ext-iconv": "For best performance"
  8680. },
  8681. "type": "library",
  8682. "extra": {
  8683. "branch-alias": {
  8684. "dev-master": "1.17-dev"
  8685. }
  8686. },
  8687. "autoload": {
  8688. "files": [
  8689. "bootstrap.php"
  8690. ],
  8691. "psr-4": {
  8692. "Symfony\\Polyfill\\Iconv\\": ""
  8693. }
  8694. },
  8695. "notification-url": "https://packagist.org/downloads/",
  8696. "license": [
  8697. "MIT"
  8698. ],
  8699. "authors": [
  8700. {
  8701. "name": "Nicolas Grekas",
  8702. "email": "p@tchwork.com"
  8703. },
  8704. {
  8705. "name": "Symfony Community",
  8706. "homepage": "https://symfony.com/contributors"
  8707. }
  8708. ],
  8709. "description": "Symfony polyfill for the Iconv extension",
  8710. "homepage": "https://symfony.com",
  8711. "keywords": [
  8712. "compatibility",
  8713. "iconv",
  8714. "polyfill",
  8715. "portable",
  8716. "shim"
  8717. ],
  8718. "support": {
  8719. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8720. },
  8721. "funding": [
  8722. {
  8723. "url": "https://symfony.com/sponsor",
  8724. "type": "custom"
  8725. },
  8726. {
  8727. "url": "https://github.com/fabpot",
  8728. "type": "github"
  8729. },
  8730. {
  8731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8732. "type": "tidelift"
  8733. }
  8734. ],
  8735. "time": "2020-05-12T16:47:27+00:00"
  8736. },
  8737. {
  8738. "name": "symfony/polyfill-intl-idn",
  8739. "version": "v1.17.0",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8743. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8748. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "php": ">=5.3.3",
  8753. "symfony/polyfill-mbstring": "^1.3",
  8754. "symfony/polyfill-php72": "^1.10"
  8755. },
  8756. "suggest": {
  8757. "ext-intl": "For best performance"
  8758. },
  8759. "type": "library",
  8760. "extra": {
  8761. "branch-alias": {
  8762. "dev-master": "1.17-dev"
  8763. }
  8764. },
  8765. "autoload": {
  8766. "files": [
  8767. "bootstrap.php"
  8768. ],
  8769. "psr-4": {
  8770. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8771. }
  8772. },
  8773. "notification-url": "https://packagist.org/downloads/",
  8774. "license": [
  8775. "MIT"
  8776. ],
  8777. "authors": [
  8778. {
  8779. "name": "Laurent Bassin",
  8780. "email": "laurent@bassin.info"
  8781. },
  8782. {
  8783. "name": "Symfony Community",
  8784. "homepage": "https://symfony.com/contributors"
  8785. }
  8786. ],
  8787. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8788. "homepage": "https://symfony.com",
  8789. "keywords": [
  8790. "compatibility",
  8791. "idn",
  8792. "intl",
  8793. "polyfill",
  8794. "portable",
  8795. "shim"
  8796. ],
  8797. "support": {
  8798. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8799. },
  8800. "funding": [
  8801. {
  8802. "url": "https://symfony.com/sponsor",
  8803. "type": "custom"
  8804. },
  8805. {
  8806. "url": "https://github.com/fabpot",
  8807. "type": "github"
  8808. },
  8809. {
  8810. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8811. "type": "tidelift"
  8812. }
  8813. ],
  8814. "time": "2020-05-12T16:47:27+00:00"
  8815. },
  8816. {
  8817. "name": "symfony/polyfill-mbstring",
  8818. "version": "v1.17.0",
  8819. "source": {
  8820. "type": "git",
  8821. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8822. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8823. },
  8824. "dist": {
  8825. "type": "zip",
  8826. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8827. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8828. "shasum": ""
  8829. },
  8830. "require": {
  8831. "php": ">=5.3.3"
  8832. },
  8833. "suggest": {
  8834. "ext-mbstring": "For best performance"
  8835. },
  8836. "type": "library",
  8837. "extra": {
  8838. "branch-alias": {
  8839. "dev-master": "1.17-dev"
  8840. }
  8841. },
  8842. "autoload": {
  8843. "files": [
  8844. "bootstrap.php"
  8845. ],
  8846. "psr-4": {
  8847. "Symfony\\Polyfill\\Mbstring\\": ""
  8848. }
  8849. },
  8850. "notification-url": "https://packagist.org/downloads/",
  8851. "license": [
  8852. "MIT"
  8853. ],
  8854. "authors": [
  8855. {
  8856. "name": "Nicolas Grekas",
  8857. "email": "p@tchwork.com"
  8858. },
  8859. {
  8860. "name": "Symfony Community",
  8861. "homepage": "https://symfony.com/contributors"
  8862. }
  8863. ],
  8864. "description": "Symfony polyfill for the Mbstring extension",
  8865. "homepage": "https://symfony.com",
  8866. "keywords": [
  8867. "compatibility",
  8868. "mbstring",
  8869. "polyfill",
  8870. "portable",
  8871. "shim"
  8872. ],
  8873. "support": {
  8874. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8875. },
  8876. "funding": [
  8877. {
  8878. "url": "https://symfony.com/sponsor",
  8879. "type": "custom"
  8880. },
  8881. {
  8882. "url": "https://github.com/fabpot",
  8883. "type": "github"
  8884. },
  8885. {
  8886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8887. "type": "tidelift"
  8888. }
  8889. ],
  8890. "time": "2020-05-12T16:47:27+00:00"
  8891. },
  8892. {
  8893. "name": "symfony/polyfill-php56",
  8894. "version": "v1.17.0",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/symfony/polyfill-php56.git",
  8898. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8903. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "php": ">=5.3.3",
  8908. "symfony/polyfill-util": "~1.0"
  8909. },
  8910. "type": "library",
  8911. "extra": {
  8912. "branch-alias": {
  8913. "dev-master": "1.17-dev"
  8914. }
  8915. },
  8916. "autoload": {
  8917. "files": [
  8918. "bootstrap.php"
  8919. ],
  8920. "psr-4": {
  8921. "Symfony\\Polyfill\\Php56\\": ""
  8922. }
  8923. },
  8924. "notification-url": "https://packagist.org/downloads/",
  8925. "license": [
  8926. "MIT"
  8927. ],
  8928. "authors": [
  8929. {
  8930. "name": "Nicolas Grekas",
  8931. "email": "p@tchwork.com"
  8932. },
  8933. {
  8934. "name": "Symfony Community",
  8935. "homepage": "https://symfony.com/contributors"
  8936. }
  8937. ],
  8938. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8939. "homepage": "https://symfony.com",
  8940. "keywords": [
  8941. "compatibility",
  8942. "polyfill",
  8943. "portable",
  8944. "shim"
  8945. ],
  8946. "support": {
  8947. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8948. },
  8949. "funding": [
  8950. {
  8951. "url": "https://symfony.com/sponsor",
  8952. "type": "custom"
  8953. },
  8954. {
  8955. "url": "https://github.com/fabpot",
  8956. "type": "github"
  8957. },
  8958. {
  8959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8960. "type": "tidelift"
  8961. }
  8962. ],
  8963. "time": "2020-05-12T16:47:27+00:00"
  8964. },
  8965. {
  8966. "name": "symfony/polyfill-php70",
  8967. "version": "v1.17.0",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/symfony/polyfill-php70.git",
  8971. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8976. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8977. "shasum": ""
  8978. },
  8979. "require": {
  8980. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8981. "php": ">=5.3.3"
  8982. },
  8983. "type": "library",
  8984. "extra": {
  8985. "branch-alias": {
  8986. "dev-master": "1.17-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "files": [
  8991. "bootstrap.php"
  8992. ],
  8993. "psr-4": {
  8994. "Symfony\\Polyfill\\Php70\\": ""
  8995. },
  8996. "classmap": [
  8997. "Resources/stubs"
  8998. ]
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "MIT"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Nicolas Grekas",
  9007. "email": "p@tchwork.com"
  9008. },
  9009. {
  9010. "name": "Symfony Community",
  9011. "homepage": "https://symfony.com/contributors"
  9012. }
  9013. ],
  9014. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9015. "homepage": "https://symfony.com",
  9016. "keywords": [
  9017. "compatibility",
  9018. "polyfill",
  9019. "portable",
  9020. "shim"
  9021. ],
  9022. "support": {
  9023. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  9024. },
  9025. "funding": [
  9026. {
  9027. "url": "https://symfony.com/sponsor",
  9028. "type": "custom"
  9029. },
  9030. {
  9031. "url": "https://github.com/fabpot",
  9032. "type": "github"
  9033. },
  9034. {
  9035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9036. "type": "tidelift"
  9037. }
  9038. ],
  9039. "time": "2020-05-12T16:47:27+00:00"
  9040. },
  9041. {
  9042. "name": "symfony/polyfill-php72",
  9043. "version": "v1.17.0",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/symfony/polyfill-php72.git",
  9047. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  9052. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  9053. "shasum": ""
  9054. },
  9055. "require": {
  9056. "php": ">=5.3.3"
  9057. },
  9058. "type": "library",
  9059. "extra": {
  9060. "branch-alias": {
  9061. "dev-master": "1.17-dev"
  9062. }
  9063. },
  9064. "autoload": {
  9065. "files": [
  9066. "bootstrap.php"
  9067. ],
  9068. "psr-4": {
  9069. "Symfony\\Polyfill\\Php72\\": ""
  9070. }
  9071. },
  9072. "notification-url": "https://packagist.org/downloads/",
  9073. "license": [
  9074. "MIT"
  9075. ],
  9076. "authors": [
  9077. {
  9078. "name": "Nicolas Grekas",
  9079. "email": "p@tchwork.com"
  9080. },
  9081. {
  9082. "name": "Symfony Community",
  9083. "homepage": "https://symfony.com/contributors"
  9084. }
  9085. ],
  9086. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9087. "homepage": "https://symfony.com",
  9088. "keywords": [
  9089. "compatibility",
  9090. "polyfill",
  9091. "portable",
  9092. "shim"
  9093. ],
  9094. "support": {
  9095. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  9096. },
  9097. "funding": [
  9098. {
  9099. "url": "https://symfony.com/sponsor",
  9100. "type": "custom"
  9101. },
  9102. {
  9103. "url": "https://github.com/fabpot",
  9104. "type": "github"
  9105. },
  9106. {
  9107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9108. "type": "tidelift"
  9109. }
  9110. ],
  9111. "time": "2020-05-12T16:47:27+00:00"
  9112. },
  9113. {
  9114. "name": "symfony/polyfill-php80",
  9115. "version": "v1.29.0",
  9116. "source": {
  9117. "type": "git",
  9118. "url": "https://github.com/symfony/polyfill-php80.git",
  9119. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  9120. },
  9121. "dist": {
  9122. "type": "zip",
  9123. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  9124. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  9125. "shasum": ""
  9126. },
  9127. "require": {
  9128. "php": ">=7.1"
  9129. },
  9130. "type": "library",
  9131. "extra": {
  9132. "thanks": {
  9133. "name": "symfony/polyfill",
  9134. "url": "https://github.com/symfony/polyfill"
  9135. }
  9136. },
  9137. "autoload": {
  9138. "files": [
  9139. "bootstrap.php"
  9140. ],
  9141. "psr-4": {
  9142. "Symfony\\Polyfill\\Php80\\": ""
  9143. },
  9144. "classmap": [
  9145. "Resources/stubs"
  9146. ]
  9147. },
  9148. "notification-url": "https://packagist.org/downloads/",
  9149. "license": [
  9150. "MIT"
  9151. ],
  9152. "authors": [
  9153. {
  9154. "name": "Ion Bazan",
  9155. "email": "ion.bazan@gmail.com"
  9156. },
  9157. {
  9158. "name": "Nicolas Grekas",
  9159. "email": "p@tchwork.com"
  9160. },
  9161. {
  9162. "name": "Symfony Community",
  9163. "homepage": "https://symfony.com/contributors"
  9164. }
  9165. ],
  9166. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9167. "homepage": "https://symfony.com",
  9168. "keywords": [
  9169. "compatibility",
  9170. "polyfill",
  9171. "portable",
  9172. "shim"
  9173. ],
  9174. "support": {
  9175. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  9176. },
  9177. "funding": [
  9178. {
  9179. "url": "https://symfony.com/sponsor",
  9180. "type": "custom"
  9181. },
  9182. {
  9183. "url": "https://github.com/fabpot",
  9184. "type": "github"
  9185. },
  9186. {
  9187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9188. "type": "tidelift"
  9189. }
  9190. ],
  9191. "time": "2024-01-29T20:11:03+00:00"
  9192. },
  9193. {
  9194. "name": "symfony/polyfill-util",
  9195. "version": "v1.17.0",
  9196. "source": {
  9197. "type": "git",
  9198. "url": "https://github.com/symfony/polyfill-util.git",
  9199. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  9200. },
  9201. "dist": {
  9202. "type": "zip",
  9203. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9204. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9205. "shasum": ""
  9206. },
  9207. "require": {
  9208. "php": ">=5.3.3"
  9209. },
  9210. "type": "library",
  9211. "extra": {
  9212. "branch-alias": {
  9213. "dev-master": "1.17-dev"
  9214. }
  9215. },
  9216. "autoload": {
  9217. "psr-4": {
  9218. "Symfony\\Polyfill\\Util\\": ""
  9219. }
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "MIT"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Nicolas Grekas",
  9228. "email": "p@tchwork.com"
  9229. },
  9230. {
  9231. "name": "Symfony Community",
  9232. "homepage": "https://symfony.com/contributors"
  9233. }
  9234. ],
  9235. "description": "Symfony utilities for portability of PHP codes",
  9236. "homepage": "https://symfony.com",
  9237. "keywords": [
  9238. "compat",
  9239. "compatibility",
  9240. "polyfill",
  9241. "shim"
  9242. ],
  9243. "support": {
  9244. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9245. },
  9246. "funding": [
  9247. {
  9248. "url": "https://symfony.com/sponsor",
  9249. "type": "custom"
  9250. },
  9251. {
  9252. "url": "https://github.com/fabpot",
  9253. "type": "github"
  9254. },
  9255. {
  9256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9257. "type": "tidelift"
  9258. }
  9259. ],
  9260. "time": "2020-05-12T16:14:59+00:00"
  9261. },
  9262. {
  9263. "name": "symfony/process",
  9264. "version": "v3.4.41",
  9265. "source": {
  9266. "type": "git",
  9267. "url": "https://github.com/symfony/process.git",
  9268. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9269. },
  9270. "dist": {
  9271. "type": "zip",
  9272. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9273. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9274. "shasum": ""
  9275. },
  9276. "require": {
  9277. "php": "^5.5.9|>=7.0.8"
  9278. },
  9279. "type": "library",
  9280. "extra": {
  9281. "branch-alias": {
  9282. "dev-master": "3.4-dev"
  9283. }
  9284. },
  9285. "autoload": {
  9286. "psr-4": {
  9287. "Symfony\\Component\\Process\\": ""
  9288. },
  9289. "exclude-from-classmap": [
  9290. "/Tests/"
  9291. ]
  9292. },
  9293. "notification-url": "https://packagist.org/downloads/",
  9294. "license": [
  9295. "MIT"
  9296. ],
  9297. "authors": [
  9298. {
  9299. "name": "Fabien Potencier",
  9300. "email": "fabien@symfony.com"
  9301. },
  9302. {
  9303. "name": "Symfony Community",
  9304. "homepage": "https://symfony.com/contributors"
  9305. }
  9306. ],
  9307. "description": "Symfony Process Component",
  9308. "homepage": "https://symfony.com",
  9309. "support": {
  9310. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9311. },
  9312. "funding": [
  9313. {
  9314. "url": "https://symfony.com/sponsor",
  9315. "type": "custom"
  9316. },
  9317. {
  9318. "url": "https://github.com/fabpot",
  9319. "type": "github"
  9320. },
  9321. {
  9322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9323. "type": "tidelift"
  9324. }
  9325. ],
  9326. "time": "2020-05-23T17:05:51+00:00"
  9327. },
  9328. {
  9329. "name": "symfony/psr-http-message-bridge",
  9330. "version": "v1.1.2",
  9331. "source": {
  9332. "type": "git",
  9333. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9334. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9335. },
  9336. "dist": {
  9337. "type": "zip",
  9338. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9339. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9340. "shasum": ""
  9341. },
  9342. "require": {
  9343. "php": "^5.3.3 || ^7.0",
  9344. "psr/http-message": "^1.0",
  9345. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9346. },
  9347. "require-dev": {
  9348. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9349. },
  9350. "suggest": {
  9351. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9352. },
  9353. "type": "symfony-bridge",
  9354. "extra": {
  9355. "branch-alias": {
  9356. "dev-master": "1.1-dev"
  9357. }
  9358. },
  9359. "autoload": {
  9360. "psr-4": {
  9361. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9362. },
  9363. "exclude-from-classmap": [
  9364. "/Tests/"
  9365. ]
  9366. },
  9367. "notification-url": "https://packagist.org/downloads/",
  9368. "license": [
  9369. "MIT"
  9370. ],
  9371. "authors": [
  9372. {
  9373. "name": "Symfony Community",
  9374. "homepage": "http://symfony.com/contributors"
  9375. },
  9376. {
  9377. "name": "Fabien Potencier",
  9378. "email": "fabien@symfony.com"
  9379. }
  9380. ],
  9381. "description": "PSR HTTP message bridge",
  9382. "homepage": "http://symfony.com",
  9383. "keywords": [
  9384. "http",
  9385. "http-message",
  9386. "psr-17",
  9387. "psr-7"
  9388. ],
  9389. "support": {
  9390. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9391. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9392. },
  9393. "time": "2019-04-03T17:09:40+00:00"
  9394. },
  9395. {
  9396. "name": "symfony/routing",
  9397. "version": "v3.4.41",
  9398. "source": {
  9399. "type": "git",
  9400. "url": "https://github.com/symfony/routing.git",
  9401. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9402. },
  9403. "dist": {
  9404. "type": "zip",
  9405. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9406. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9407. "shasum": ""
  9408. },
  9409. "require": {
  9410. "php": "^5.5.9|>=7.0.8"
  9411. },
  9412. "conflict": {
  9413. "symfony/config": "<3.3.1",
  9414. "symfony/dependency-injection": "<3.3",
  9415. "symfony/yaml": "<3.4"
  9416. },
  9417. "require-dev": {
  9418. "doctrine/annotations": "~1.0",
  9419. "psr/log": "~1.0",
  9420. "symfony/config": "^3.3.1|~4.0",
  9421. "symfony/dependency-injection": "~3.3|~4.0",
  9422. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9423. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9424. "symfony/yaml": "~3.4|~4.0"
  9425. },
  9426. "suggest": {
  9427. "doctrine/annotations": "For using the annotation loader",
  9428. "symfony/config": "For using the all-in-one router or any loader",
  9429. "symfony/expression-language": "For using expression matching",
  9430. "symfony/http-foundation": "For using a Symfony Request object",
  9431. "symfony/yaml": "For using the YAML loader"
  9432. },
  9433. "type": "library",
  9434. "extra": {
  9435. "branch-alias": {
  9436. "dev-master": "3.4-dev"
  9437. }
  9438. },
  9439. "autoload": {
  9440. "psr-4": {
  9441. "Symfony\\Component\\Routing\\": ""
  9442. },
  9443. "exclude-from-classmap": [
  9444. "/Tests/"
  9445. ]
  9446. },
  9447. "notification-url": "https://packagist.org/downloads/",
  9448. "license": [
  9449. "MIT"
  9450. ],
  9451. "authors": [
  9452. {
  9453. "name": "Fabien Potencier",
  9454. "email": "fabien@symfony.com"
  9455. },
  9456. {
  9457. "name": "Symfony Community",
  9458. "homepage": "https://symfony.com/contributors"
  9459. }
  9460. ],
  9461. "description": "Symfony Routing Component",
  9462. "homepage": "https://symfony.com",
  9463. "keywords": [
  9464. "router",
  9465. "routing",
  9466. "uri",
  9467. "url"
  9468. ],
  9469. "support": {
  9470. "source": "https://github.com/symfony/routing/tree/3.4"
  9471. },
  9472. "funding": [
  9473. {
  9474. "url": "https://symfony.com/sponsor",
  9475. "type": "custom"
  9476. },
  9477. {
  9478. "url": "https://github.com/fabpot",
  9479. "type": "github"
  9480. },
  9481. {
  9482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9483. "type": "tidelift"
  9484. }
  9485. ],
  9486. "time": "2020-05-30T19:50:06+00:00"
  9487. },
  9488. {
  9489. "name": "symfony/serializer",
  9490. "version": "v3.4.41",
  9491. "source": {
  9492. "type": "git",
  9493. "url": "https://github.com/symfony/serializer.git",
  9494. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9495. },
  9496. "dist": {
  9497. "type": "zip",
  9498. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9499. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9500. "shasum": ""
  9501. },
  9502. "require": {
  9503. "php": "^5.5.9|>=7.0.8",
  9504. "symfony/polyfill-ctype": "~1.8"
  9505. },
  9506. "conflict": {
  9507. "phpdocumentor/type-resolver": "<0.2.1",
  9508. "symfony/dependency-injection": "<3.2",
  9509. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9510. "symfony/property-info": "<3.1",
  9511. "symfony/yaml": "<3.4"
  9512. },
  9513. "require-dev": {
  9514. "doctrine/annotations": "~1.0",
  9515. "doctrine/cache": "~1.0",
  9516. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9517. "symfony/cache": "~3.1|~4.0",
  9518. "symfony/config": "~2.8|~3.0|~4.0",
  9519. "symfony/dependency-injection": "~3.2|~4.0",
  9520. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9521. "symfony/property-access": "~2.8|~3.0|~4.0",
  9522. "symfony/property-info": "^3.4.13|~4.0",
  9523. "symfony/yaml": "~3.4|~4.0"
  9524. },
  9525. "suggest": {
  9526. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9527. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9528. "psr/cache-implementation": "For using the metadata cache.",
  9529. "symfony/config": "For using the XML mapping loader.",
  9530. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9531. "symfony/property-access": "For using the ObjectNormalizer.",
  9532. "symfony/property-info": "To deserialize relations.",
  9533. "symfony/yaml": "For using the default YAML mapping loader."
  9534. },
  9535. "type": "library",
  9536. "extra": {
  9537. "branch-alias": {
  9538. "dev-master": "3.4-dev"
  9539. }
  9540. },
  9541. "autoload": {
  9542. "psr-4": {
  9543. "Symfony\\Component\\Serializer\\": ""
  9544. },
  9545. "exclude-from-classmap": [
  9546. "/Tests/"
  9547. ]
  9548. },
  9549. "notification-url": "https://packagist.org/downloads/",
  9550. "license": [
  9551. "MIT"
  9552. ],
  9553. "authors": [
  9554. {
  9555. "name": "Fabien Potencier",
  9556. "email": "fabien@symfony.com"
  9557. },
  9558. {
  9559. "name": "Symfony Community",
  9560. "homepage": "https://symfony.com/contributors"
  9561. }
  9562. ],
  9563. "description": "Symfony Serializer Component",
  9564. "homepage": "https://symfony.com",
  9565. "support": {
  9566. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9567. },
  9568. "funding": [
  9569. {
  9570. "url": "https://symfony.com/sponsor",
  9571. "type": "custom"
  9572. },
  9573. {
  9574. "url": "https://github.com/fabpot",
  9575. "type": "github"
  9576. },
  9577. {
  9578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9579. "type": "tidelift"
  9580. }
  9581. ],
  9582. "time": "2020-05-30T18:58:05+00:00"
  9583. },
  9584. {
  9585. "name": "symfony/translation",
  9586. "version": "v3.4.41",
  9587. "source": {
  9588. "type": "git",
  9589. "url": "https://github.com/symfony/translation.git",
  9590. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9591. },
  9592. "dist": {
  9593. "type": "zip",
  9594. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9595. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9596. "shasum": ""
  9597. },
  9598. "require": {
  9599. "php": "^5.5.9|>=7.0.8",
  9600. "symfony/polyfill-mbstring": "~1.0"
  9601. },
  9602. "conflict": {
  9603. "symfony/config": "<2.8",
  9604. "symfony/dependency-injection": "<3.4",
  9605. "symfony/yaml": "<3.4"
  9606. },
  9607. "require-dev": {
  9608. "psr/log": "~1.0",
  9609. "symfony/config": "~2.8|~3.0|~4.0",
  9610. "symfony/dependency-injection": "~3.4|~4.0",
  9611. "symfony/finder": "~2.8|~3.0|~4.0",
  9612. "symfony/http-kernel": "~3.4|~4.0",
  9613. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9614. "symfony/var-dumper": "~3.4|~4.0",
  9615. "symfony/yaml": "~3.4|~4.0"
  9616. },
  9617. "suggest": {
  9618. "psr/log-implementation": "To use logging capability in translator",
  9619. "symfony/config": "",
  9620. "symfony/yaml": ""
  9621. },
  9622. "type": "library",
  9623. "extra": {
  9624. "branch-alias": {
  9625. "dev-master": "3.4-dev"
  9626. }
  9627. },
  9628. "autoload": {
  9629. "psr-4": {
  9630. "Symfony\\Component\\Translation\\": ""
  9631. },
  9632. "exclude-from-classmap": [
  9633. "/Tests/"
  9634. ]
  9635. },
  9636. "notification-url": "https://packagist.org/downloads/",
  9637. "license": [
  9638. "MIT"
  9639. ],
  9640. "authors": [
  9641. {
  9642. "name": "Fabien Potencier",
  9643. "email": "fabien@symfony.com"
  9644. },
  9645. {
  9646. "name": "Symfony Community",
  9647. "homepage": "https://symfony.com/contributors"
  9648. }
  9649. ],
  9650. "description": "Symfony Translation Component",
  9651. "homepage": "https://symfony.com",
  9652. "support": {
  9653. "source": "https://github.com/symfony/translation/tree/3.4"
  9654. },
  9655. "funding": [
  9656. {
  9657. "url": "https://symfony.com/sponsor",
  9658. "type": "custom"
  9659. },
  9660. {
  9661. "url": "https://github.com/fabpot",
  9662. "type": "github"
  9663. },
  9664. {
  9665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9666. "type": "tidelift"
  9667. }
  9668. ],
  9669. "time": "2020-05-30T18:58:05+00:00"
  9670. },
  9671. {
  9672. "name": "symfony/validator",
  9673. "version": "v3.4.41",
  9674. "source": {
  9675. "type": "git",
  9676. "url": "https://github.com/symfony/validator.git",
  9677. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9678. },
  9679. "dist": {
  9680. "type": "zip",
  9681. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9682. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9683. "shasum": ""
  9684. },
  9685. "require": {
  9686. "php": "^5.5.9|>=7.0.8",
  9687. "symfony/polyfill-ctype": "~1.8",
  9688. "symfony/polyfill-mbstring": "~1.0",
  9689. "symfony/translation": "~2.8|~3.0|~4.0"
  9690. },
  9691. "conflict": {
  9692. "doctrine/lexer": "<1.0.2",
  9693. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9694. "symfony/dependency-injection": "<3.3",
  9695. "symfony/http-kernel": "<3.3.5",
  9696. "symfony/yaml": "<3.4"
  9697. },
  9698. "require-dev": {
  9699. "doctrine/annotations": "~1.7",
  9700. "doctrine/cache": "~1.0",
  9701. "egulias/email-validator": "^2.1.10",
  9702. "symfony/cache": "~3.1|~4.0",
  9703. "symfony/config": "~2.8|~3.0|~4.0",
  9704. "symfony/dependency-injection": "~3.3|~4.0",
  9705. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9706. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9707. "symfony/http-kernel": "^3.3.5|~4.0",
  9708. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9709. "symfony/property-access": "~2.8|~3.0|~4.0",
  9710. "symfony/var-dumper": "~3.3|~4.0",
  9711. "symfony/yaml": "~3.4|~4.0"
  9712. },
  9713. "suggest": {
  9714. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9715. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9716. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9717. "psr/cache-implementation": "For using the metadata cache.",
  9718. "symfony/config": "",
  9719. "symfony/expression-language": "For using the Expression validator",
  9720. "symfony/http-foundation": "",
  9721. "symfony/intl": "",
  9722. "symfony/property-access": "For accessing properties within comparison constraints",
  9723. "symfony/yaml": ""
  9724. },
  9725. "type": "library",
  9726. "extra": {
  9727. "branch-alias": {
  9728. "dev-master": "3.4-dev"
  9729. }
  9730. },
  9731. "autoload": {
  9732. "psr-4": {
  9733. "Symfony\\Component\\Validator\\": ""
  9734. },
  9735. "exclude-from-classmap": [
  9736. "/Tests/"
  9737. ]
  9738. },
  9739. "notification-url": "https://packagist.org/downloads/",
  9740. "license": [
  9741. "MIT"
  9742. ],
  9743. "authors": [
  9744. {
  9745. "name": "Fabien Potencier",
  9746. "email": "fabien@symfony.com"
  9747. },
  9748. {
  9749. "name": "Symfony Community",
  9750. "homepage": "https://symfony.com/contributors"
  9751. }
  9752. ],
  9753. "description": "Symfony Validator Component",
  9754. "homepage": "https://symfony.com",
  9755. "support": {
  9756. "source": "https://github.com/symfony/validator/tree/3.4"
  9757. },
  9758. "funding": [
  9759. {
  9760. "url": "https://symfony.com/sponsor",
  9761. "type": "custom"
  9762. },
  9763. {
  9764. "url": "https://github.com/fabpot",
  9765. "type": "github"
  9766. },
  9767. {
  9768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9769. "type": "tidelift"
  9770. }
  9771. ],
  9772. "time": "2020-05-30T18:43:38+00:00"
  9773. },
  9774. {
  9775. "name": "symfony/var-dumper",
  9776. "version": "v4.4.47",
  9777. "source": {
  9778. "type": "git",
  9779. "url": "https://github.com/symfony/var-dumper.git",
  9780. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9781. },
  9782. "dist": {
  9783. "type": "zip",
  9784. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9785. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9786. "shasum": ""
  9787. },
  9788. "require": {
  9789. "php": ">=7.1.3",
  9790. "symfony/polyfill-mbstring": "~1.0",
  9791. "symfony/polyfill-php72": "~1.5",
  9792. "symfony/polyfill-php80": "^1.16"
  9793. },
  9794. "conflict": {
  9795. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9796. "symfony/console": "<3.4"
  9797. },
  9798. "require-dev": {
  9799. "ext-iconv": "*",
  9800. "symfony/console": "^3.4|^4.0|^5.0",
  9801. "symfony/process": "^4.4|^5.0",
  9802. "twig/twig": "^1.43|^2.13|^3.0.4"
  9803. },
  9804. "suggest": {
  9805. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9806. "ext-intl": "To show region name in time zone dump",
  9807. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9808. },
  9809. "bin": [
  9810. "Resources/bin/var-dump-server"
  9811. ],
  9812. "type": "library",
  9813. "autoload": {
  9814. "files": [
  9815. "Resources/functions/dump.php"
  9816. ],
  9817. "psr-4": {
  9818. "Symfony\\Component\\VarDumper\\": ""
  9819. },
  9820. "exclude-from-classmap": [
  9821. "/Tests/"
  9822. ]
  9823. },
  9824. "notification-url": "https://packagist.org/downloads/",
  9825. "license": [
  9826. "MIT"
  9827. ],
  9828. "authors": [
  9829. {
  9830. "name": "Nicolas Grekas",
  9831. "email": "p@tchwork.com"
  9832. },
  9833. {
  9834. "name": "Symfony Community",
  9835. "homepage": "https://symfony.com/contributors"
  9836. }
  9837. ],
  9838. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9839. "homepage": "https://symfony.com",
  9840. "keywords": [
  9841. "debug",
  9842. "dump"
  9843. ],
  9844. "support": {
  9845. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9846. },
  9847. "funding": [
  9848. {
  9849. "url": "https://symfony.com/sponsor",
  9850. "type": "custom"
  9851. },
  9852. {
  9853. "url": "https://github.com/fabpot",
  9854. "type": "github"
  9855. },
  9856. {
  9857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9858. "type": "tidelift"
  9859. }
  9860. ],
  9861. "time": "2022-10-03T15:15:11+00:00"
  9862. },
  9863. {
  9864. "name": "symfony/yaml",
  9865. "version": "v3.4.41",
  9866. "source": {
  9867. "type": "git",
  9868. "url": "https://github.com/symfony/yaml.git",
  9869. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9870. },
  9871. "dist": {
  9872. "type": "zip",
  9873. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9874. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9875. "shasum": ""
  9876. },
  9877. "require": {
  9878. "php": "^5.5.9|>=7.0.8",
  9879. "symfony/polyfill-ctype": "~1.8"
  9880. },
  9881. "conflict": {
  9882. "symfony/console": "<3.4"
  9883. },
  9884. "require-dev": {
  9885. "symfony/console": "~3.4|~4.0"
  9886. },
  9887. "suggest": {
  9888. "symfony/console": "For validating YAML files using the lint command"
  9889. },
  9890. "type": "library",
  9891. "extra": {
  9892. "branch-alias": {
  9893. "dev-master": "3.4-dev"
  9894. }
  9895. },
  9896. "autoload": {
  9897. "psr-4": {
  9898. "Symfony\\Component\\Yaml\\": ""
  9899. },
  9900. "exclude-from-classmap": [
  9901. "/Tests/"
  9902. ]
  9903. },
  9904. "notification-url": "https://packagist.org/downloads/",
  9905. "license": [
  9906. "MIT"
  9907. ],
  9908. "authors": [
  9909. {
  9910. "name": "Fabien Potencier",
  9911. "email": "fabien@symfony.com"
  9912. },
  9913. {
  9914. "name": "Symfony Community",
  9915. "homepage": "https://symfony.com/contributors"
  9916. }
  9917. ],
  9918. "description": "Symfony Yaml Component",
  9919. "homepage": "https://symfony.com",
  9920. "support": {
  9921. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9922. },
  9923. "funding": [
  9924. {
  9925. "url": "https://symfony.com/sponsor",
  9926. "type": "custom"
  9927. },
  9928. {
  9929. "url": "https://github.com/fabpot",
  9930. "type": "github"
  9931. },
  9932. {
  9933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9934. "type": "tidelift"
  9935. }
  9936. ],
  9937. "time": "2020-05-11T07:51:54+00:00"
  9938. },
  9939. {
  9940. "name": "twbs/bootstrap",
  9941. "version": "v4.5.0",
  9942. "source": {
  9943. "type": "git",
  9944. "url": "https://github.com/twbs/bootstrap.git",
  9945. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  9946. },
  9947. "dist": {
  9948. "type": "zip",
  9949. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9950. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9951. "shasum": ""
  9952. },
  9953. "replace": {
  9954. "twitter/bootstrap": "self.version"
  9955. },
  9956. "type": "library",
  9957. "extra": {
  9958. "branch-alias": {
  9959. "dev-master": "3.3.x-dev"
  9960. }
  9961. },
  9962. "notification-url": "https://packagist.org/downloads/",
  9963. "license": [
  9964. "MIT"
  9965. ],
  9966. "authors": [
  9967. {
  9968. "name": "Mark Otto",
  9969. "email": "markdotto@gmail.com"
  9970. },
  9971. {
  9972. "name": "Jacob Thornton",
  9973. "email": "jacobthornton@gmail.com"
  9974. }
  9975. ],
  9976. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  9977. "homepage": "https://getbootstrap.com/",
  9978. "keywords": [
  9979. "JS",
  9980. "css",
  9981. "framework",
  9982. "front-end",
  9983. "mobile-first",
  9984. "responsive",
  9985. "sass",
  9986. "web"
  9987. ],
  9988. "funding": [
  9989. {
  9990. "url": "https://opencollective.com/bootstrap",
  9991. "type": "open_collective"
  9992. }
  9993. ],
  9994. "time": "2020-05-12T17:44:42+00:00"
  9995. },
  9996. {
  9997. "name": "twig/twig",
  9998. "version": "v1.42.5",
  9999. "source": {
  10000. "type": "git",
  10001. "url": "https://github.com/twigphp/Twig.git",
  10002. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  10003. },
  10004. "dist": {
  10005. "type": "zip",
  10006. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  10007. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  10008. "shasum": ""
  10009. },
  10010. "require": {
  10011. "php": ">=5.5.0",
  10012. "symfony/polyfill-ctype": "^1.8"
  10013. },
  10014. "require-dev": {
  10015. "psr/container": "^1.0",
  10016. "symfony/phpunit-bridge": "^4.4|^5.0"
  10017. },
  10018. "type": "library",
  10019. "extra": {
  10020. "branch-alias": {
  10021. "dev-master": "1.42-dev"
  10022. }
  10023. },
  10024. "autoload": {
  10025. "psr-0": {
  10026. "Twig_": "lib/"
  10027. },
  10028. "psr-4": {
  10029. "Twig\\": "src/"
  10030. }
  10031. },
  10032. "notification-url": "https://packagist.org/downloads/",
  10033. "license": [
  10034. "BSD-3-Clause"
  10035. ],
  10036. "authors": [
  10037. {
  10038. "name": "Fabien Potencier",
  10039. "email": "fabien@symfony.com",
  10040. "homepage": "http://fabien.potencier.org",
  10041. "role": "Lead Developer"
  10042. },
  10043. {
  10044. "name": "Twig Team",
  10045. "role": "Contributors"
  10046. },
  10047. {
  10048. "name": "Armin Ronacher",
  10049. "email": "armin.ronacher@active-4.com",
  10050. "role": "Project Founder"
  10051. }
  10052. ],
  10053. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10054. "homepage": "https://twig.symfony.com",
  10055. "keywords": [
  10056. "templating"
  10057. ],
  10058. "support": {
  10059. "issues": "https://github.com/twigphp/Twig/issues",
  10060. "source": "https://github.com/twigphp/Twig/tree/1.x"
  10061. },
  10062. "time": "2020-02-11T05:59:23+00:00"
  10063. },
  10064. {
  10065. "name": "typo3/phar-stream-wrapper",
  10066. "version": "v3.1.4",
  10067. "source": {
  10068. "type": "git",
  10069. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10070. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  10071. },
  10072. "dist": {
  10073. "type": "zip",
  10074. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  10075. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  10076. "shasum": ""
  10077. },
  10078. "require": {
  10079. "ext-json": "*",
  10080. "php": "^7.0"
  10081. },
  10082. "require-dev": {
  10083. "ext-xdebug": "*",
  10084. "phpunit/phpunit": "^6.5"
  10085. },
  10086. "suggest": {
  10087. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10088. },
  10089. "type": "library",
  10090. "extra": {
  10091. "branch-alias": {
  10092. "dev-master": "v3.x-dev"
  10093. }
  10094. },
  10095. "autoload": {
  10096. "psr-4": {
  10097. "TYPO3\\PharStreamWrapper\\": "src/"
  10098. }
  10099. },
  10100. "notification-url": "https://packagist.org/downloads/",
  10101. "license": [
  10102. "MIT"
  10103. ],
  10104. "description": "Interceptors for PHP's native phar:// stream handling",
  10105. "homepage": "https://typo3.org/",
  10106. "keywords": [
  10107. "phar",
  10108. "php",
  10109. "security",
  10110. "stream-wrapper"
  10111. ],
  10112. "support": {
  10113. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10114. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  10115. },
  10116. "time": "2019-12-10T11:53:27+00:00"
  10117. },
  10118. {
  10119. "name": "webflo/drupal-finder",
  10120. "version": "1.2.0",
  10121. "source": {
  10122. "type": "git",
  10123. "url": "https://github.com/webflo/drupal-finder.git",
  10124. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  10125. },
  10126. "dist": {
  10127. "type": "zip",
  10128. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10129. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10130. "shasum": ""
  10131. },
  10132. "require": {
  10133. "ext-json": "*"
  10134. },
  10135. "require-dev": {
  10136. "mikey179/vfsstream": "^1.6",
  10137. "phpunit/phpunit": "^4.8"
  10138. },
  10139. "type": "library",
  10140. "autoload": {
  10141. "classmap": [
  10142. "src/DrupalFinder.php"
  10143. ]
  10144. },
  10145. "notification-url": "https://packagist.org/downloads/",
  10146. "license": [
  10147. "GPL-2.0+"
  10148. ],
  10149. "authors": [
  10150. {
  10151. "name": "Florian Weber",
  10152. "email": "florian@webflo.org"
  10153. }
  10154. ],
  10155. "description": "Helper class to locate a Drupal installation from a given path.",
  10156. "time": "2019-08-02T08:06:18+00:00"
  10157. },
  10158. {
  10159. "name": "webmozart/assert",
  10160. "version": "1.11.0",
  10161. "source": {
  10162. "type": "git",
  10163. "url": "https://github.com/webmozarts/assert.git",
  10164. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10165. },
  10166. "dist": {
  10167. "type": "zip",
  10168. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10169. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10170. "shasum": ""
  10171. },
  10172. "require": {
  10173. "ext-ctype": "*",
  10174. "php": "^7.2 || ^8.0"
  10175. },
  10176. "conflict": {
  10177. "phpstan/phpstan": "<0.12.20",
  10178. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10179. },
  10180. "require-dev": {
  10181. "phpunit/phpunit": "^8.5.13"
  10182. },
  10183. "type": "library",
  10184. "extra": {
  10185. "branch-alias": {
  10186. "dev-master": "1.10-dev"
  10187. }
  10188. },
  10189. "autoload": {
  10190. "psr-4": {
  10191. "Webmozart\\Assert\\": "src/"
  10192. }
  10193. },
  10194. "notification-url": "https://packagist.org/downloads/",
  10195. "license": [
  10196. "MIT"
  10197. ],
  10198. "authors": [
  10199. {
  10200. "name": "Bernhard Schussek",
  10201. "email": "bschussek@gmail.com"
  10202. }
  10203. ],
  10204. "description": "Assertions to validate method input/output with nice error messages.",
  10205. "keywords": [
  10206. "assert",
  10207. "check",
  10208. "validate"
  10209. ],
  10210. "support": {
  10211. "issues": "https://github.com/webmozarts/assert/issues",
  10212. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10213. },
  10214. "time": "2022-06-03T18:03:27+00:00"
  10215. },
  10216. {
  10217. "name": "webmozart/path-util",
  10218. "version": "2.3.0",
  10219. "source": {
  10220. "type": "git",
  10221. "url": "https://github.com/webmozart/path-util.git",
  10222. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10223. },
  10224. "dist": {
  10225. "type": "zip",
  10226. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10227. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10228. "shasum": ""
  10229. },
  10230. "require": {
  10231. "php": ">=5.3.3",
  10232. "webmozart/assert": "~1.0"
  10233. },
  10234. "require-dev": {
  10235. "phpunit/phpunit": "^4.6",
  10236. "sebastian/version": "^1.0.1"
  10237. },
  10238. "type": "library",
  10239. "extra": {
  10240. "branch-alias": {
  10241. "dev-master": "2.3-dev"
  10242. }
  10243. },
  10244. "autoload": {
  10245. "psr-4": {
  10246. "Webmozart\\PathUtil\\": "src/"
  10247. }
  10248. },
  10249. "notification-url": "https://packagist.org/downloads/",
  10250. "license": [
  10251. "MIT"
  10252. ],
  10253. "authors": [
  10254. {
  10255. "name": "Bernhard Schussek",
  10256. "email": "bschussek@gmail.com"
  10257. }
  10258. ],
  10259. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10260. "time": "2015-12-17T08:42:14+00:00"
  10261. },
  10262. {
  10263. "name": "willdurand/geocoder",
  10264. "version": "4.6.0",
  10265. "source": {
  10266. "type": "git",
  10267. "url": "https://github.com/geocoder-php/php-common.git",
  10268. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1"
  10269. },
  10270. "dist": {
  10271. "type": "zip",
  10272. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  10273. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  10274. "shasum": ""
  10275. },
  10276. "require": {
  10277. "php": "^7.4 || ^8.0"
  10278. },
  10279. "require-dev": {
  10280. "nyholm/nsa": "^1.1",
  10281. "phpunit/phpunit": "^9.5",
  10282. "symfony/stopwatch": "~2.5"
  10283. },
  10284. "suggest": {
  10285. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  10286. },
  10287. "type": "library",
  10288. "extra": {
  10289. "branch-alias": {
  10290. "dev-master": "4.1-dev"
  10291. }
  10292. },
  10293. "autoload": {
  10294. "psr-4": {
  10295. "Geocoder\\": ""
  10296. },
  10297. "exclude-from-classmap": [
  10298. "/Tests/"
  10299. ]
  10300. },
  10301. "notification-url": "https://packagist.org/downloads/",
  10302. "license": [
  10303. "MIT"
  10304. ],
  10305. "authors": [
  10306. {
  10307. "name": "William Durand",
  10308. "email": "william.durand1@gmail.com"
  10309. }
  10310. ],
  10311. "description": "Common files for PHP Geocoder",
  10312. "homepage": "http://geocoder-php.org",
  10313. "keywords": [
  10314. "abstraction",
  10315. "geocoder",
  10316. "geocoding",
  10317. "geoip"
  10318. ],
  10319. "support": {
  10320. "source": "https://github.com/geocoder-php/php-common/tree/4.6.0"
  10321. },
  10322. "time": "2022-07-30T11:09:43+00:00"
  10323. }
  10324. ],
  10325. "packages-dev": [],
  10326. "aliases": [],
  10327. "minimum-stability": "dev",
  10328. "stability-flags": {
  10329. "drupal/field_pager": 10
  10330. },
  10331. "prefer-stable": true,
  10332. "prefer-lowest": false,
  10333. "platform": [],
  10334. "platform-dev": [],
  10335. "plugin-api-version": "2.6.0"
  10336. }