composer.lock 354 KB

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