composer.lock 346 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560
  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": "93ffc8bc2bab9aea79ee40fc534d99f1",
  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.7.0",
  2885. "source": {
  2886. "type": "git",
  2887. "url": "https://git.drupalcode.org/project/geocoder.git",
  2888. "reference": "8.x-3.7"
  2889. },
  2890. "dist": {
  2891. "type": "zip",
  2892. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-3.7.zip",
  2893. "reference": "8.x-3.7",
  2894. "shasum": "ac376686b10f3c1181cd77f2f323c975ccaea484"
  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",
  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.7",
  2937. "datestamp": "1591824580",
  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+"
  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.41.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://git.drupalcode.org/project/leaflet.git",
  3523. "reference": "8.x-1.41"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://ftp.drupal.org/files/projects/leaflet-8.x-1.41.zip",
  3528. "reference": "8.x-1.41",
  3529. "shasum": "b947380e846a85bc2ddb378c6a451400dd614fe2"
  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.41",
  3539. "datestamp": "1595068845",
  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/schema_metatag",
  4109. "version": "1.6.0",
  4110. "source": {
  4111. "type": "git",
  4112. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  4113. "reference": "8.x-1.6"
  4114. },
  4115. "dist": {
  4116. "type": "zip",
  4117. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.6.zip",
  4118. "reference": "8.x-1.6",
  4119. "shasum": "89816975afc0345b57c3b0550c88a8f371ba56c9"
  4120. },
  4121. "require": {
  4122. "drupal/core": "^8 || ^9",
  4123. "drupal/metatag": "*"
  4124. },
  4125. "require-dev": {
  4126. "drupal/metatag_views": "*",
  4127. "drupal/schema_article": "*",
  4128. "drupal/schema_organization": "*"
  4129. },
  4130. "type": "drupal-module",
  4131. "extra": {
  4132. "drupal": {
  4133. "version": "8.x-1.6",
  4134. "datestamp": "1592573603",
  4135. "security-coverage": {
  4136. "status": "covered",
  4137. "message": "Covered by Drupal's security advisory policy"
  4138. }
  4139. }
  4140. },
  4141. "notification-url": "https://packages.drupal.org/8/downloads",
  4142. "license": [
  4143. "GPL-2.0+"
  4144. ],
  4145. "authors": [
  4146. {
  4147. "name": "KarenS",
  4148. "homepage": "https://www.drupal.org/user/45874"
  4149. }
  4150. ],
  4151. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  4152. "homepage": "https://www.drupal.org/project/schema_metatag",
  4153. "keywords": [
  4154. "Drupal"
  4155. ],
  4156. "support": {
  4157. "source": "http://cgit.drupalcode.org/schema_metatag",
  4158. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  4159. }
  4160. },
  4161. {
  4162. "name": "drupal/site_settings",
  4163. "version": "1.19.0",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://git.drupalcode.org/project/site_settings.git",
  4167. "reference": "8.x-1.19"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.19.zip",
  4172. "reference": "8.x-1.19",
  4173. "shasum": "93977299549d33c4fbaad7a332fe7d3e1e2648b8"
  4174. },
  4175. "require": {
  4176. "drupal/core": "^8 || ^9"
  4177. },
  4178. "type": "drupal-module",
  4179. "extra": {
  4180. "drupal": {
  4181. "version": "8.x-1.19",
  4182. "datestamp": "1590234916",
  4183. "security-coverage": {
  4184. "status": "covered",
  4185. "message": "Covered by Drupal's security advisory policy"
  4186. }
  4187. }
  4188. },
  4189. "notification-url": "https://packages.drupal.org/8/downloads",
  4190. "license": [
  4191. "GPL-2.0+"
  4192. ],
  4193. "authors": [
  4194. {
  4195. "name": "scott_euser",
  4196. "homepage": "https://www.drupal.org/user/3267594"
  4197. },
  4198. {
  4199. "name": "stuart.wilkes@actionaid.org",
  4200. "homepage": "https://www.drupal.org/user/3584735"
  4201. }
  4202. ],
  4203. "description": "Provides a site settings entity",
  4204. "homepage": "https://www.drupal.org/project/site_settings",
  4205. "keywords": [
  4206. "Drupal"
  4207. ],
  4208. "support": {
  4209. "source": "http://cgit.drupalcode.org/site_settings",
  4210. "issues": "http://drupal.org/project/issues/site_settings"
  4211. }
  4212. },
  4213. {
  4214. "name": "drupal/subpathauto",
  4215. "version": "1.1.0",
  4216. "source": {
  4217. "type": "git",
  4218. "url": "https://git.drupalcode.org/project/subpathauto.git",
  4219. "reference": "8.x-1.1"
  4220. },
  4221. "dist": {
  4222. "type": "zip",
  4223. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.1.zip",
  4224. "reference": "8.x-1.1",
  4225. "shasum": "1d027be84e82705c65669f5717b148562be3e766"
  4226. },
  4227. "require": {
  4228. "drupal/core": "^8.8 || ^9"
  4229. },
  4230. "type": "drupal-module",
  4231. "extra": {
  4232. "drupal": {
  4233. "version": "8.x-1.1",
  4234. "datestamp": "1590076268",
  4235. "security-coverage": {
  4236. "status": "covered",
  4237. "message": "Covered by Drupal's security advisory policy"
  4238. }
  4239. }
  4240. },
  4241. "notification-url": "https://packages.drupal.org/8/downloads",
  4242. "license": [
  4243. "GPL-2.0-or-later"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Dave Reid",
  4248. "homepage": "https://www.drupal.org/user/53892"
  4249. },
  4250. {
  4251. "name": "lauriii",
  4252. "homepage": "https://www.drupal.org/user/1078742"
  4253. }
  4254. ],
  4255. "description": "Provides support for extending sub-paths of URL aliases.",
  4256. "homepage": "https://www.drupal.org/project/subpathauto",
  4257. "support": {
  4258. "source": "https://git.drupalcode.org/project/subpathauto"
  4259. }
  4260. },
  4261. {
  4262. "name": "drupal/time_range",
  4263. "version": "8.1.3",
  4264. "source": {
  4265. "type": "git",
  4266. "url": "https://git.drupalcode.org/project/time_range.git",
  4267. "reference": "8.1.3"
  4268. },
  4269. "dist": {
  4270. "type": "zip",
  4271. "url": "https://ftp.drupal.org/files/projects/time_range-8.1.3.zip",
  4272. "reference": "8.1.3",
  4273. "shasum": "404597e00e2e972c32647e8c1963efb0d7566d90"
  4274. },
  4275. "require": {
  4276. "drupal/core": "^8 || ^9"
  4277. },
  4278. "type": "drupal-module",
  4279. "extra": {
  4280. "drupal": {
  4281. "version": "8.1.3",
  4282. "datestamp": "1591497359",
  4283. "security-coverage": {
  4284. "status": "covered",
  4285. "message": "Covered by Drupal's security advisory policy"
  4286. }
  4287. }
  4288. },
  4289. "notification-url": "https://packages.drupal.org/8/downloads",
  4290. "license": [
  4291. "GPL-2.0+"
  4292. ],
  4293. "authors": [
  4294. {
  4295. "name": "dravenk",
  4296. "homepage": "https://www.drupal.org/user/3452417"
  4297. }
  4298. ],
  4299. "description": "Provides the form widget to fill in time range.",
  4300. "homepage": "https://github.com/DravenK/time-range.git",
  4301. "support": {
  4302. "source": "https://github.com/DravenK/time-range.git",
  4303. "issues": "https://github.com/DravenK/time-range/issues"
  4304. }
  4305. },
  4306. {
  4307. "name": "drupal/token",
  4308. "version": "1.7.0",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://git.drupalcode.org/project/token.git",
  4312. "reference": "8.x-1.7"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  4317. "reference": "8.x-1.7",
  4318. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  4319. },
  4320. "require": {
  4321. "drupal/core": "^8.8 || ^9"
  4322. },
  4323. "type": "drupal-module",
  4324. "extra": {
  4325. "drupal": {
  4326. "version": "8.x-1.7",
  4327. "datestamp": "1589314266",
  4328. "security-coverage": {
  4329. "status": "covered",
  4330. "message": "Covered by Drupal's security advisory policy"
  4331. }
  4332. },
  4333. "drush": {
  4334. "services": {
  4335. "drush.services.yml": "^9 || ^10"
  4336. }
  4337. }
  4338. },
  4339. "notification-url": "https://packages.drupal.org/8/downloads",
  4340. "license": [
  4341. "GPL-2.0+"
  4342. ],
  4343. "authors": [
  4344. {
  4345. "name": "Berdir",
  4346. "homepage": "https://www.drupal.org/user/214652"
  4347. },
  4348. {
  4349. "name": "Dave Reid",
  4350. "homepage": "https://www.drupal.org/user/53892"
  4351. },
  4352. {
  4353. "name": "eaton",
  4354. "homepage": "https://www.drupal.org/user/16496"
  4355. },
  4356. {
  4357. "name": "fago",
  4358. "homepage": "https://www.drupal.org/user/16747"
  4359. },
  4360. {
  4361. "name": "greggles",
  4362. "homepage": "https://www.drupal.org/user/36762"
  4363. },
  4364. {
  4365. "name": "mikeryan",
  4366. "homepage": "https://www.drupal.org/user/4420"
  4367. }
  4368. ],
  4369. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4370. "homepage": "https://www.drupal.org/project/token",
  4371. "support": {
  4372. "source": "https://git.drupalcode.org/project/token"
  4373. }
  4374. },
  4375. {
  4376. "name": "drupal/total_control",
  4377. "version": "2.0.0",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://git.drupalcode.org/project/total_control.git",
  4381. "reference": "8.x-2.0"
  4382. },
  4383. "dist": {
  4384. "type": "zip",
  4385. "url": "https://ftp.drupal.org/files/projects/total_control-8.x-2.0.zip",
  4386. "reference": "8.x-2.0",
  4387. "shasum": "67e4bcf348fbc4647402de7903b48fc6414beece"
  4388. },
  4389. "require": {
  4390. "drupal/core": "^8 || ^9",
  4391. "drupal/ctools": "~3.0",
  4392. "drupal/page_manager": "~4.0",
  4393. "drupal/panels": "~4.0"
  4394. },
  4395. "type": "drupal-module",
  4396. "extra": {
  4397. "drupal": {
  4398. "version": "8.x-2.0",
  4399. "datestamp": "1583399169",
  4400. "security-coverage": {
  4401. "status": "covered",
  4402. "message": "Covered by Drupal's security advisory policy"
  4403. }
  4404. },
  4405. "branch-alias": {
  4406. "dev-8.x-2.x": "8.2.x-dev"
  4407. }
  4408. },
  4409. "notification-url": "https://packages.drupal.org/8/downloads",
  4410. "license": [
  4411. "GPL-2.0-or-later"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "Jen Lampton",
  4416. "homepage": "https://www.drupal.org/u/jenlampton",
  4417. "role": "Maintainer"
  4418. },
  4419. {
  4420. "name": "Mohammed J. Razem",
  4421. "homepage": "https://www.drupal.org/u/mohammed-j-razem",
  4422. "role": "Maintainer"
  4423. },
  4424. {
  4425. "name": "Abdulla Abu-Zakham",
  4426. "homepage": "https://www.drupal.org/u/abu-zakham",
  4427. "role": "Maintainer"
  4428. },
  4429. {
  4430. "name": "Rajab Natshah",
  4431. "homepage": "https://www.drupal.org/u/rajabnatshah",
  4432. "role": "Maintainer"
  4433. },
  4434. {
  4435. "name": "populist",
  4436. "homepage": "https://www.drupal.org/user/58600"
  4437. },
  4438. {
  4439. "name": "squiggy",
  4440. "homepage": "https://www.drupal.org/user/44299"
  4441. }
  4442. ],
  4443. "description": "Total Control Administration Dashboard",
  4444. "homepage": "https://www.drupal.org/project/total_control",
  4445. "support": {
  4446. "source": "https://git.drupalcode.org/project/total_control/tree/8.x-2.x",
  4447. "issues": "https://www.drupal.org/project/issues/total_control"
  4448. }
  4449. },
  4450. {
  4451. "name": "drupal/transliterate_filenames",
  4452. "version": "1.4.0",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://git.drupalcode.org/project/transliterate_filenames.git",
  4456. "reference": "8.x-1.4"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.4.zip",
  4461. "reference": "8.x-1.4",
  4462. "shasum": "de190ae6d1923f95c61e597a00ef50d64cfd982b"
  4463. },
  4464. "require": {
  4465. "drupal/core": "^8 || ^9"
  4466. },
  4467. "type": "drupal-module",
  4468. "extra": {
  4469. "drupal": {
  4470. "version": "8.x-1.4",
  4471. "datestamp": "1589218989",
  4472. "security-coverage": {
  4473. "status": "covered",
  4474. "message": "Covered by Drupal's security advisory policy"
  4475. }
  4476. }
  4477. },
  4478. "notification-url": "https://packages.drupal.org/8/downloads",
  4479. "license": [
  4480. "GPL-2.0-or-later"
  4481. ],
  4482. "authors": [
  4483. {
  4484. "name": "Alexander Dubovskoy",
  4485. "homepage": "https://www.drupal.org/u/adubovskoy",
  4486. "role": "Maintainer"
  4487. },
  4488. {
  4489. "name": "Andrei Ivnitskii",
  4490. "homepage": "https://www.drupal.org/u/ivnish",
  4491. "role": "Maintainer"
  4492. },
  4493. {
  4494. "name": "ivnish",
  4495. "homepage": "https://www.drupal.org/user/3547706"
  4496. }
  4497. ],
  4498. "description": "Transliteration for all uploading files (includes fields and ckeditor inline upload)",
  4499. "homepage": "https://www.drupal.org/project/transliterate_filenames",
  4500. "support": {
  4501. "source": "https://git.drupalcode.org/project/transliterate_filenames",
  4502. "issues": "https://www.drupal.org/project/issues/transliterate_filenames"
  4503. }
  4504. },
  4505. {
  4506. "name": "drupal/varbase_total_control",
  4507. "version": "6.11.0",
  4508. "source": {
  4509. "type": "git",
  4510. "url": "https://git.drupalcode.org/project/varbase_total_control.git",
  4511. "reference": "8.x-6.11"
  4512. },
  4513. "dist": {
  4514. "type": "zip",
  4515. "url": "https://ftp.drupal.org/files/projects/varbase_total_control-8.x-6.11.zip",
  4516. "reference": "8.x-6.11",
  4517. "shasum": "ce01ed87c8733433f3b129ae040d03e14bcdd3db"
  4518. },
  4519. "require": {
  4520. "composer/installers": "~1.0",
  4521. "cweagans/composer-patches": "~1.0",
  4522. "drupal/charts": "~3.0",
  4523. "drupal/core": "^8.8.0 || ~9.0.0",
  4524. "drupal/drupal-library-installer-plugin": "^0.3",
  4525. "drupal/google_analytics_reports": "~3.0",
  4526. "drupal/masonry": "~1.0",
  4527. "drupal/total_control": "~2.0",
  4528. "oomphinc/composer-installers-extender": "~1.0"
  4529. },
  4530. "suggest": {
  4531. "bower-asset/c3": "0.4.*: Provides JavaScript library necessary for C3",
  4532. "bower-asset/chartjs": "2.7.*: Provides JavaScript library necessary for Chart JS",
  4533. "bower-asset/d3": "3.5.*: Provides JavaScript library necessary for D3",
  4534. "npm-asset/imagesloaded": "~4.0: Provides JavaScript library necessary for Image Loaded",
  4535. "npm-asset/masonry-layout": "~4.0: Provides JavaScript library necessary for Masonry Layout"
  4536. },
  4537. "type": "drupal-module",
  4538. "extra": {
  4539. "drupal": {
  4540. "version": "8.x-6.11",
  4541. "datestamp": "1591080576",
  4542. "security-coverage": {
  4543. "status": "covered",
  4544. "message": "Covered by Drupal's security advisory policy"
  4545. }
  4546. },
  4547. "branch-alias": {
  4548. "dev-8.x-6.x": "8.6.x-dev"
  4549. },
  4550. "installer-types": [
  4551. "bower-asset",
  4552. "npm-asset"
  4553. ],
  4554. "drupal-libraries": {
  4555. "libraries": [
  4556. {
  4557. "name": "chartjs",
  4558. "package": "bower-asset/chartjs"
  4559. },
  4560. {
  4561. "name": "c3",
  4562. "package": "bower-asset/c3"
  4563. },
  4564. {
  4565. "name": "d3",
  4566. "package": "bower-asset/d3"
  4567. },
  4568. {
  4569. "name": "masonry",
  4570. "package": "npm-asset/masonry-layout"
  4571. },
  4572. {
  4573. "name": "imagesloaded",
  4574. "package": "npm-asset/imagesloaded"
  4575. }
  4576. ]
  4577. },
  4578. "enable-patching": true,
  4579. "composer-exit-on-patch-failure": true
  4580. },
  4581. "notification-url": "https://packages.drupal.org/8/downloads",
  4582. "license": [
  4583. "GPL-2.0-or-later"
  4584. ],
  4585. "authors": [
  4586. {
  4587. "name": "Vardot",
  4588. "homepage": "https://www.drupal.org/vardot",
  4589. "role": "Maintainer"
  4590. },
  4591. {
  4592. "name": "RajabNatshah",
  4593. "homepage": "https://www.drupal.org/user/1414312"
  4594. },
  4595. {
  4596. "name": "abu-zakham",
  4597. "homepage": "https://www.drupal.org/user/2836067"
  4598. }
  4599. ],
  4600. "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.",
  4601. "homepage": "https://github.com/Vardot/varbase_total_control",
  4602. "support": {
  4603. "source": "http://cgit.drupalcode.org/varbase_total_control",
  4604. "issues": "https://www.drupal.org/project/issues/varbase_total_control"
  4605. }
  4606. },
  4607. {
  4608. "name": "drupal/video_embed_field",
  4609. "version": "2.4.0",
  4610. "source": {
  4611. "type": "git",
  4612. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4613. "reference": "8.x-2.4"
  4614. },
  4615. "dist": {
  4616. "type": "zip",
  4617. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  4618. "reference": "8.x-2.4",
  4619. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  4620. },
  4621. "require": {
  4622. "drupal/core": "^8.8 || ^9"
  4623. },
  4624. "require-dev": {
  4625. "drupal/colorbox": "^1.0",
  4626. "drupal/video_embed_media": "*"
  4627. },
  4628. "type": "drupal-module",
  4629. "extra": {
  4630. "drupal": {
  4631. "version": "8.x-2.4",
  4632. "datestamp": "1587686284",
  4633. "security-coverage": {
  4634. "status": "covered",
  4635. "message": "Covered by Drupal's security advisory policy"
  4636. }
  4637. }
  4638. },
  4639. "notification-url": "https://packages.drupal.org/8/downloads",
  4640. "license": [
  4641. "GPL-2.0+"
  4642. ],
  4643. "authors": [
  4644. {
  4645. "name": "Sam152",
  4646. "homepage": "https://www.drupal.org/user/1485048"
  4647. },
  4648. {
  4649. "name": "jec006",
  4650. "homepage": "https://www.drupal.org/user/855980"
  4651. },
  4652. {
  4653. "name": "plopesc",
  4654. "homepage": "https://www.drupal.org/user/282415"
  4655. }
  4656. ],
  4657. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4658. "homepage": "https://www.drupal.org/project/video_embed_field",
  4659. "support": {
  4660. "source": "https://git.drupalcode.org/project/video_embed_field"
  4661. }
  4662. },
  4663. {
  4664. "name": "drupal/views_url_path_arguments",
  4665. "version": "1.1.0",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4669. "reference": "8.x-1.1"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.1.zip",
  4674. "reference": "8.x-1.1",
  4675. "shasum": "55f38957395ae8f35bcdbc44a0f12822e844c73e"
  4676. },
  4677. "require": {
  4678. "drupal/core": "^8 || ^9"
  4679. },
  4680. "type": "drupal-module",
  4681. "extra": {
  4682. "drupal": {
  4683. "version": "8.x-1.1",
  4684. "datestamp": "1586279325",
  4685. "security-coverage": {
  4686. "status": "covered",
  4687. "message": "Covered by Drupal's security advisory policy"
  4688. }
  4689. }
  4690. },
  4691. "notification-url": "https://packages.drupal.org/8/downloads",
  4692. "license": [
  4693. "GPL-2.0+"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "heddn",
  4698. "homepage": "https://www.drupal.org/user/1463982"
  4699. }
  4700. ],
  4701. "description": "Simple module to convert a view argument's entity id into its url path.",
  4702. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4703. "keywords": [
  4704. "Drupal"
  4705. ],
  4706. "support": {
  4707. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4708. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4709. }
  4710. },
  4711. {
  4712. "name": "drush/drush",
  4713. "version": "10.3.1",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/drush-ops/drush.git",
  4717. "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/drush-ops/drush/zipball/aad2b17ad34801d9b55cff903e3e7db65d754b80",
  4722. "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80",
  4723. "shasum": ""
  4724. },
  4725. "require": {
  4726. "chi-teck/drupal-code-generator": "^1.30.5",
  4727. "composer/semver": "^1.4",
  4728. "consolidation/config": "^1.2",
  4729. "consolidation/filter-via-dot-access-data": "^1",
  4730. "consolidation/robo": "^1.4.11 || ^2",
  4731. "consolidation/site-alias": "^3.0.0@stable",
  4732. "consolidation/site-process": "^2.1 || ^4",
  4733. "ext-dom": "*",
  4734. "grasmash/yaml-expander": "^1.1.1",
  4735. "league/container": "~2",
  4736. "php": ">=7.1.3",
  4737. "psr/log": "~1.0",
  4738. "psy/psysh": "~0.6",
  4739. "symfony/event-dispatcher": "^3.4 || ^4.0",
  4740. "symfony/finder": "^3.4 || ^4.0",
  4741. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  4742. "symfony/yaml": "^3.4 || ^4.0",
  4743. "webflo/drupal-finder": "^1.2",
  4744. "webmozart/path-util": "^2.1.0"
  4745. },
  4746. "require-dev": {
  4747. "composer/installers": "^1.7",
  4748. "cweagans/composer-patches": "~1.0",
  4749. "david-garcia/phpwhois": "4.3.0",
  4750. "drupal/alinks": "1.0.0",
  4751. "drupal/core-recommended": "^8.8",
  4752. "g1a/composer-test-scenarios": "^3",
  4753. "lox/xhprof": "dev-master",
  4754. "phpunit/phpunit": "^4.8.36 || ^6.1",
  4755. "squizlabs/php_codesniffer": "^2.7 || ^3",
  4756. "vlucas/phpdotenv": "^2.4"
  4757. },
  4758. "bin": [
  4759. "drush"
  4760. ],
  4761. "type": "library",
  4762. "extra": {
  4763. "installer-paths": {
  4764. "sut/core": [
  4765. "type:drupal-core"
  4766. ],
  4767. "sut/libraries/{$name}": [
  4768. "type:drupal-library"
  4769. ],
  4770. "sut/modules/unish/{$name}": [
  4771. "drupal/devel"
  4772. ],
  4773. "sut/themes/unish/{$name}": [
  4774. "drupal/empty_theme"
  4775. ],
  4776. "sut/modules/contrib/{$name}": [
  4777. "type:drupal-module"
  4778. ],
  4779. "sut/profiles/contrib/{$name}": [
  4780. "type:drupal-profile"
  4781. ],
  4782. "sut/themes/contrib/{$name}": [
  4783. "type:drupal-theme"
  4784. ],
  4785. "sut/drush/contrib/{$name}": [
  4786. "type:drupal-drush"
  4787. ]
  4788. },
  4789. "branch-alias": {
  4790. "dev-master": "10.x-dev"
  4791. }
  4792. },
  4793. "autoload": {
  4794. "psr-4": {
  4795. "Drush\\": "src/",
  4796. "Drush\\Internal\\": "src/internal-forks"
  4797. }
  4798. },
  4799. "notification-url": "https://packagist.org/downloads/",
  4800. "license": [
  4801. "GPL-2.0-or-later"
  4802. ],
  4803. "authors": [
  4804. {
  4805. "name": "Moshe Weitzman",
  4806. "email": "weitzman@tejasa.com"
  4807. },
  4808. {
  4809. "name": "Owen Barton",
  4810. "email": "drupal@owenbarton.com"
  4811. },
  4812. {
  4813. "name": "Greg Anderson",
  4814. "email": "greg.1.anderson@greenknowe.org"
  4815. },
  4816. {
  4817. "name": "Jonathan Araña Cruz",
  4818. "email": "jonhattan@faita.net"
  4819. },
  4820. {
  4821. "name": "Jonathan Hedstrom",
  4822. "email": "jhedstrom@gmail.com"
  4823. },
  4824. {
  4825. "name": "Christopher Gervais",
  4826. "email": "chris@ergonlogic.com"
  4827. },
  4828. {
  4829. "name": "Dave Reid",
  4830. "email": "dave@davereid.net"
  4831. },
  4832. {
  4833. "name": "Damian Lee",
  4834. "email": "damiankloip@googlemail.com"
  4835. }
  4836. ],
  4837. "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.",
  4838. "homepage": "http://www.drush.org",
  4839. "funding": [
  4840. {
  4841. "url": "https://github.com/weitzman",
  4842. "type": "github"
  4843. }
  4844. ],
  4845. "time": "2020-06-30T19:43:45+00:00"
  4846. },
  4847. {
  4848. "name": "easyrdf/easyrdf",
  4849. "version": "0.9.1",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/easyrdf/easyrdf.git",
  4853. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  4858. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  4859. "shasum": ""
  4860. },
  4861. "require": {
  4862. "ext-mbstring": "*",
  4863. "ext-pcre": "*",
  4864. "php": ">=5.2.8"
  4865. },
  4866. "require-dev": {
  4867. "phpunit/phpunit": "~3.5",
  4868. "sami/sami": "~1.4",
  4869. "squizlabs/php_codesniffer": "~1.4.3"
  4870. },
  4871. "suggest": {
  4872. "ml/json-ld": "~1.0"
  4873. },
  4874. "type": "library",
  4875. "autoload": {
  4876. "psr-0": {
  4877. "EasyRdf_": "lib/"
  4878. }
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "BSD-3-Clause"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "Nicholas Humfrey",
  4887. "email": "njh@aelius.com",
  4888. "homepage": "http://www.aelius.com/njh/",
  4889. "role": "Developer"
  4890. },
  4891. {
  4892. "name": "Alexey Zakhlestin",
  4893. "email": "indeyets@gmail.com",
  4894. "role": "Developer"
  4895. }
  4896. ],
  4897. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  4898. "homepage": "http://www.easyrdf.org/",
  4899. "keywords": [
  4900. "Linked Data",
  4901. "RDF",
  4902. "Semantic Web",
  4903. "Turtle",
  4904. "rdfa",
  4905. "sparql"
  4906. ],
  4907. "time": "2015-02-27T09:45:49+00:00"
  4908. },
  4909. {
  4910. "name": "egulias/email-validator",
  4911. "version": "2.1.17",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/egulias/EmailValidator.git",
  4915. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  4920. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  4921. "shasum": ""
  4922. },
  4923. "require": {
  4924. "doctrine/lexer": "^1.0.1",
  4925. "php": ">=5.5",
  4926. "symfony/polyfill-intl-idn": "^1.10"
  4927. },
  4928. "require-dev": {
  4929. "dominicsayers/isemail": "^3.0.7",
  4930. "phpunit/phpunit": "^4.8.36|^7.5.15",
  4931. "satooshi/php-coveralls": "^1.0.1"
  4932. },
  4933. "suggest": {
  4934. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4935. },
  4936. "type": "library",
  4937. "extra": {
  4938. "branch-alias": {
  4939. "dev-master": "2.1.x-dev"
  4940. }
  4941. },
  4942. "autoload": {
  4943. "psr-4": {
  4944. "Egulias\\EmailValidator\\": "EmailValidator"
  4945. }
  4946. },
  4947. "notification-url": "https://packagist.org/downloads/",
  4948. "license": [
  4949. "MIT"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "Eduardo Gulias Davis"
  4954. }
  4955. ],
  4956. "description": "A library for validating emails against several RFCs",
  4957. "homepage": "https://github.com/egulias/EmailValidator",
  4958. "keywords": [
  4959. "email",
  4960. "emailvalidation",
  4961. "emailvalidator",
  4962. "validation",
  4963. "validator"
  4964. ],
  4965. "time": "2020-02-13T22:36:52+00:00"
  4966. },
  4967. {
  4968. "name": "gasparesganga/php-shapefile",
  4969. "version": "v3.3.0",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://github.com/gasparesganga/php-shapefile.git",
  4973. "reference": "af9b7221ddaf36a85a37e6a23281bd53ed750c4d"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://api.github.com/repos/gasparesganga/php-shapefile/zipball/af9b7221ddaf36a85a37e6a23281bd53ed750c4d",
  4978. "reference": "af9b7221ddaf36a85a37e6a23281bd53ed750c4d",
  4979. "shasum": ""
  4980. },
  4981. "require": {
  4982. "php": ">=5.4.0"
  4983. },
  4984. "type": "library",
  4985. "autoload": {
  4986. "psr-4": {
  4987. "Shapefile\\": "src/Shapefile/"
  4988. }
  4989. },
  4990. "notification-url": "https://packagist.org/downloads/",
  4991. "license": [
  4992. "MIT"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "Gaspare Sganga",
  4997. "email": "contact@gasparesganga.com",
  4998. "homepage": "https://gasparesganga.com/labs/php-shapefile/",
  4999. "role": "Developer"
  5000. }
  5001. ],
  5002. "description": "PHP library to read and write ESRI Shapefiles, compatible with WKT and GeoJSON",
  5003. "homepage": "https://gasparesganga.com/labs/php-shapefile/",
  5004. "keywords": [
  5005. "ESRI",
  5006. "Shapefile",
  5007. "dbf",
  5008. "geojson",
  5009. "shape",
  5010. "shp",
  5011. "wkt"
  5012. ],
  5013. "time": "2020-05-23T09:10:21+00:00"
  5014. },
  5015. {
  5016. "name": "geocoder-php/chain-provider",
  5017. "version": "4.2.0",
  5018. "source": {
  5019. "type": "git",
  5020. "url": "https://github.com/geocoder-php/chain-provider.git",
  5021. "reference": "f9f8d33e958eb795c80a86a98064793d2a1084aa"
  5022. },
  5023. "dist": {
  5024. "type": "zip",
  5025. "url": "https://api.github.com/repos/geocoder-php/chain-provider/zipball/f9f8d33e958eb795c80a86a98064793d2a1084aa",
  5026. "reference": "f9f8d33e958eb795c80a86a98064793d2a1084aa",
  5027. "shasum": ""
  5028. },
  5029. "require": {
  5030. "php": "^7.2",
  5031. "psr/log": "^1.0",
  5032. "willdurand/geocoder": "^4.0"
  5033. },
  5034. "provide": {
  5035. "geocoder-php/provider-implementation": "1.0"
  5036. },
  5037. "require-dev": {
  5038. "nyholm/nsa": "^1.1",
  5039. "php-http/curl-client": "^1.7",
  5040. "php-http/message": "^1.0",
  5041. "phpunit/phpunit": "^7.5"
  5042. },
  5043. "type": "library",
  5044. "extra": {
  5045. "branch-alias": {
  5046. "dev-master": "4.0-dev"
  5047. }
  5048. },
  5049. "autoload": {
  5050. "psr-4": {
  5051. "Geocoder\\Provider\\Chain\\": ""
  5052. },
  5053. "exclude-from-classmap": [
  5054. "/Tests/"
  5055. ]
  5056. },
  5057. "notification-url": "https://packagist.org/downloads/",
  5058. "license": [
  5059. "MIT"
  5060. ],
  5061. "authors": [
  5062. {
  5063. "name": "William Durand",
  5064. "email": "william.durand1@gmail.com"
  5065. }
  5066. ],
  5067. "description": "Geocoder chain adapter",
  5068. "homepage": "http://geocoder-php.org/Geocoder/",
  5069. "time": "2020-07-04T13:18:10+00:00"
  5070. },
  5071. {
  5072. "name": "geocoder-php/common-http",
  5073. "version": "4.3.0",
  5074. "source": {
  5075. "type": "git",
  5076. "url": "https://github.com/geocoder-php/php-common-http.git",
  5077. "reference": "2995af04aa877ecb705054556bdea540662db971"
  5078. },
  5079. "dist": {
  5080. "type": "zip",
  5081. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/2995af04aa877ecb705054556bdea540662db971",
  5082. "reference": "2995af04aa877ecb705054556bdea540662db971",
  5083. "shasum": ""
  5084. },
  5085. "require": {
  5086. "php": "^7.2",
  5087. "php-http/client-implementation": "^1.0",
  5088. "php-http/discovery": "^1.6",
  5089. "php-http/httplug": "^1.0 || ^2.0",
  5090. "php-http/message-factory": "^1.0.2",
  5091. "psr/http-message": "^1.0",
  5092. "psr/http-message-implementation": "^1.0",
  5093. "willdurand/geocoder": "^4.0"
  5094. },
  5095. "require-dev": {
  5096. "nyholm/psr7": "^1.0",
  5097. "php-http/message": "^1.0",
  5098. "php-http/mock-client": "^1.0",
  5099. "phpunit/phpunit": "^7.5",
  5100. "symfony/stopwatch": "~2.5"
  5101. },
  5102. "type": "library",
  5103. "extra": {
  5104. "branch-alias": {
  5105. "dev-master": "4.0-dev"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "psr-4": {
  5110. "Geocoder\\Http\\": ""
  5111. },
  5112. "exclude-from-classmap": [
  5113. "/Tests/"
  5114. ]
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Tobias Nyholm",
  5123. "email": "tobias.nyholm@gmail.com"
  5124. }
  5125. ],
  5126. "description": "Common files for HTTP based Geocoders",
  5127. "homepage": "http://geocoder-php.org",
  5128. "keywords": [
  5129. "http geocoder"
  5130. ],
  5131. "time": "2020-07-04T13:18:10+00:00"
  5132. },
  5133. {
  5134. "name": "geocoder-php/google-maps-provider",
  5135. "version": "4.5.0",
  5136. "source": {
  5137. "type": "git",
  5138. "url": "https://github.com/geocoder-php/google-maps-provider.git",
  5139. "reference": "830e5cd42eba6cb42a7a72788049edcb73f2d632"
  5140. },
  5141. "dist": {
  5142. "type": "zip",
  5143. "url": "https://api.github.com/repos/geocoder-php/google-maps-provider/zipball/830e5cd42eba6cb42a7a72788049edcb73f2d632",
  5144. "reference": "830e5cd42eba6cb42a7a72788049edcb73f2d632",
  5145. "shasum": ""
  5146. },
  5147. "require": {
  5148. "geocoder-php/common-http": "^4.0",
  5149. "php": "^7.2",
  5150. "willdurand/geocoder": "^4.0"
  5151. },
  5152. "provide": {
  5153. "geocoder-php/provider-implementation": "1.0"
  5154. },
  5155. "require-dev": {
  5156. "geocoder-php/provider-integration-tests": "^1.0",
  5157. "php-http/curl-client": "^1.7",
  5158. "php-http/message": "^1.0",
  5159. "phpunit/phpunit": "^7.5"
  5160. },
  5161. "type": "library",
  5162. "extra": {
  5163. "branch-alias": {
  5164. "dev-master": "4.0-dev"
  5165. }
  5166. },
  5167. "autoload": {
  5168. "psr-4": {
  5169. "Geocoder\\Provider\\GoogleMaps\\": ""
  5170. },
  5171. "exclude-from-classmap": [
  5172. "/Tests/"
  5173. ]
  5174. },
  5175. "notification-url": "https://packagist.org/downloads/",
  5176. "license": [
  5177. "MIT"
  5178. ],
  5179. "authors": [
  5180. {
  5181. "name": "William Durand",
  5182. "email": "william.durand1@gmail.com"
  5183. }
  5184. ],
  5185. "description": "Geocoder GoogleMaps adapter",
  5186. "homepage": "http://geocoder-php.org/Geocoder/",
  5187. "time": "2020-07-04T13:18:10+00:00"
  5188. },
  5189. {
  5190. "name": "google/protobuf",
  5191. "version": "v3.6.1.3",
  5192. "source": {
  5193. "type": "git",
  5194. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  5195. "reference": "c39346815303f63ad295d6499e11d914c40040e6"
  5196. },
  5197. "dist": {
  5198. "type": "zip",
  5199. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/c39346815303f63ad295d6499e11d914c40040e6",
  5200. "reference": "c39346815303f63ad295d6499e11d914c40040e6",
  5201. "shasum": ""
  5202. },
  5203. "require": {
  5204. "php": ">=5.5.0"
  5205. },
  5206. "require-dev": {
  5207. "phpunit/phpunit": ">=4.8.0"
  5208. },
  5209. "suggest": {
  5210. "ext-bcmath": "Need to support JSON deserialization"
  5211. },
  5212. "type": "library",
  5213. "autoload": {
  5214. "psr-4": {
  5215. "Google\\Protobuf\\": "src/Google/Protobuf",
  5216. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  5217. }
  5218. },
  5219. "notification-url": "https://packagist.org/downloads/",
  5220. "license": [
  5221. "BSD-3-Clause"
  5222. ],
  5223. "description": "proto library for PHP",
  5224. "homepage": "https://developers.google.com/protocol-buffers/",
  5225. "keywords": [
  5226. "proto"
  5227. ],
  5228. "time": "2019-02-25T22:48:21+00:00"
  5229. },
  5230. {
  5231. "name": "grasmash/expander",
  5232. "version": "1.0.0",
  5233. "source": {
  5234. "type": "git",
  5235. "url": "https://github.com/grasmash/expander.git",
  5236. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5237. },
  5238. "dist": {
  5239. "type": "zip",
  5240. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5241. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5242. "shasum": ""
  5243. },
  5244. "require": {
  5245. "dflydev/dot-access-data": "^1.1.0",
  5246. "php": ">=5.4"
  5247. },
  5248. "require-dev": {
  5249. "greg-1-anderson/composer-test-scenarios": "^1",
  5250. "phpunit/phpunit": "^4|^5.5.4",
  5251. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5252. "squizlabs/php_codesniffer": "^2.7"
  5253. },
  5254. "type": "library",
  5255. "extra": {
  5256. "branch-alias": {
  5257. "dev-master": "1.x-dev"
  5258. }
  5259. },
  5260. "autoload": {
  5261. "psr-4": {
  5262. "Grasmash\\Expander\\": "src/"
  5263. }
  5264. },
  5265. "notification-url": "https://packagist.org/downloads/",
  5266. "license": [
  5267. "MIT"
  5268. ],
  5269. "authors": [
  5270. {
  5271. "name": "Matthew Grasmick"
  5272. }
  5273. ],
  5274. "description": "Expands internal property references in PHP arrays file.",
  5275. "time": "2017-12-21T22:14:55+00:00"
  5276. },
  5277. {
  5278. "name": "grasmash/yaml-expander",
  5279. "version": "1.4.0",
  5280. "source": {
  5281. "type": "git",
  5282. "url": "https://github.com/grasmash/yaml-expander.git",
  5283. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5284. },
  5285. "dist": {
  5286. "type": "zip",
  5287. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5288. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5289. "shasum": ""
  5290. },
  5291. "require": {
  5292. "dflydev/dot-access-data": "^1.1.0",
  5293. "php": ">=5.4",
  5294. "symfony/yaml": "^2.8.11|^3|^4"
  5295. },
  5296. "require-dev": {
  5297. "greg-1-anderson/composer-test-scenarios": "^1",
  5298. "phpunit/phpunit": "^4.8|^5.5.4",
  5299. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5300. "squizlabs/php_codesniffer": "^2.7"
  5301. },
  5302. "type": "library",
  5303. "extra": {
  5304. "branch-alias": {
  5305. "dev-master": "1.x-dev"
  5306. }
  5307. },
  5308. "autoload": {
  5309. "psr-4": {
  5310. "Grasmash\\YamlExpander\\": "src/"
  5311. }
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "MIT"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Matthew Grasmick"
  5320. }
  5321. ],
  5322. "description": "Expands internal property references in a yaml file.",
  5323. "time": "2017-12-16T16:06:03+00:00"
  5324. },
  5325. {
  5326. "name": "guzzlehttp/guzzle",
  5327. "version": "6.5.4",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/guzzle/guzzle.git",
  5331. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5336. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "ext-json": "*",
  5341. "guzzlehttp/promises": "^1.0",
  5342. "guzzlehttp/psr7": "^1.6.1",
  5343. "php": ">=5.5",
  5344. "symfony/polyfill-intl-idn": "1.17.0"
  5345. },
  5346. "require-dev": {
  5347. "ext-curl": "*",
  5348. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5349. "psr/log": "^1.1"
  5350. },
  5351. "suggest": {
  5352. "psr/log": "Required for using the Log middleware"
  5353. },
  5354. "type": "library",
  5355. "extra": {
  5356. "branch-alias": {
  5357. "dev-master": "6.5-dev"
  5358. }
  5359. },
  5360. "autoload": {
  5361. "psr-4": {
  5362. "GuzzleHttp\\": "src/"
  5363. },
  5364. "files": [
  5365. "src/functions_include.php"
  5366. ]
  5367. },
  5368. "notification-url": "https://packagist.org/downloads/",
  5369. "license": [
  5370. "MIT"
  5371. ],
  5372. "authors": [
  5373. {
  5374. "name": "Michael Dowling",
  5375. "email": "mtdowling@gmail.com",
  5376. "homepage": "https://github.com/mtdowling"
  5377. }
  5378. ],
  5379. "description": "Guzzle is a PHP HTTP client library",
  5380. "homepage": "http://guzzlephp.org/",
  5381. "keywords": [
  5382. "client",
  5383. "curl",
  5384. "framework",
  5385. "http",
  5386. "http client",
  5387. "rest",
  5388. "web service"
  5389. ],
  5390. "time": "2020-05-25T19:35:05+00:00"
  5391. },
  5392. {
  5393. "name": "guzzlehttp/promises",
  5394. "version": "v1.3.1",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/guzzle/promises.git",
  5398. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5403. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": ">=5.5.0"
  5408. },
  5409. "require-dev": {
  5410. "phpunit/phpunit": "^4.0"
  5411. },
  5412. "type": "library",
  5413. "extra": {
  5414. "branch-alias": {
  5415. "dev-master": "1.4-dev"
  5416. }
  5417. },
  5418. "autoload": {
  5419. "psr-4": {
  5420. "GuzzleHttp\\Promise\\": "src/"
  5421. },
  5422. "files": [
  5423. "src/functions_include.php"
  5424. ]
  5425. },
  5426. "notification-url": "https://packagist.org/downloads/",
  5427. "license": [
  5428. "MIT"
  5429. ],
  5430. "authors": [
  5431. {
  5432. "name": "Michael Dowling",
  5433. "email": "mtdowling@gmail.com",
  5434. "homepage": "https://github.com/mtdowling"
  5435. }
  5436. ],
  5437. "description": "Guzzle promises library",
  5438. "keywords": [
  5439. "promise"
  5440. ],
  5441. "time": "2016-12-20T10:07:11+00:00"
  5442. },
  5443. {
  5444. "name": "guzzlehttp/psr7",
  5445. "version": "1.6.1",
  5446. "source": {
  5447. "type": "git",
  5448. "url": "https://github.com/guzzle/psr7.git",
  5449. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  5450. },
  5451. "dist": {
  5452. "type": "zip",
  5453. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  5454. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  5455. "shasum": ""
  5456. },
  5457. "require": {
  5458. "php": ">=5.4.0",
  5459. "psr/http-message": "~1.0",
  5460. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5461. },
  5462. "provide": {
  5463. "psr/http-message-implementation": "1.0"
  5464. },
  5465. "require-dev": {
  5466. "ext-zlib": "*",
  5467. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  5468. },
  5469. "suggest": {
  5470. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  5471. },
  5472. "type": "library",
  5473. "extra": {
  5474. "branch-alias": {
  5475. "dev-master": "1.6-dev"
  5476. }
  5477. },
  5478. "autoload": {
  5479. "psr-4": {
  5480. "GuzzleHttp\\Psr7\\": "src/"
  5481. },
  5482. "files": [
  5483. "src/functions_include.php"
  5484. ]
  5485. },
  5486. "notification-url": "https://packagist.org/downloads/",
  5487. "license": [
  5488. "MIT"
  5489. ],
  5490. "authors": [
  5491. {
  5492. "name": "Michael Dowling",
  5493. "email": "mtdowling@gmail.com",
  5494. "homepage": "https://github.com/mtdowling"
  5495. },
  5496. {
  5497. "name": "Tobias Schultze",
  5498. "homepage": "https://github.com/Tobion"
  5499. }
  5500. ],
  5501. "description": "PSR-7 message implementation that also provides common utility methods",
  5502. "keywords": [
  5503. "http",
  5504. "message",
  5505. "psr-7",
  5506. "request",
  5507. "response",
  5508. "stream",
  5509. "uri",
  5510. "url"
  5511. ],
  5512. "time": "2019-07-01T23:21:34+00:00"
  5513. },
  5514. {
  5515. "name": "laminas/laminas-diactoros",
  5516. "version": "1.8.7p2",
  5517. "source": {
  5518. "type": "git",
  5519. "url": "https://github.com/laminas/laminas-diactoros.git",
  5520. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  5521. },
  5522. "dist": {
  5523. "type": "zip",
  5524. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5525. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5526. "shasum": ""
  5527. },
  5528. "require": {
  5529. "laminas/laminas-zendframework-bridge": "^1.0",
  5530. "php": "^5.6 || ^7.0",
  5531. "psr/http-message": "^1.0"
  5532. },
  5533. "provide": {
  5534. "psr/http-message-implementation": "1.0"
  5535. },
  5536. "replace": {
  5537. "zendframework/zend-diactoros": "~1.8.7.0"
  5538. },
  5539. "require-dev": {
  5540. "ext-dom": "*",
  5541. "ext-libxml": "*",
  5542. "laminas/laminas-coding-standard": "~1.0",
  5543. "php-http/psr7-integration-tests": "dev-master",
  5544. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  5545. },
  5546. "type": "library",
  5547. "extra": {
  5548. "branch-alias": {
  5549. "dev-release-1.8": "1.8.x-dev"
  5550. }
  5551. },
  5552. "autoload": {
  5553. "files": [
  5554. "src/functions/create_uploaded_file.php",
  5555. "src/functions/marshal_headers_from_sapi.php",
  5556. "src/functions/marshal_method_from_sapi.php",
  5557. "src/functions/marshal_protocol_version_from_sapi.php",
  5558. "src/functions/marshal_uri_from_sapi.php",
  5559. "src/functions/normalize_server.php",
  5560. "src/functions/normalize_uploaded_files.php",
  5561. "src/functions/parse_cookie_header.php",
  5562. "src/functions/create_uploaded_file.legacy.php",
  5563. "src/functions/marshal_headers_from_sapi.legacy.php",
  5564. "src/functions/marshal_method_from_sapi.legacy.php",
  5565. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  5566. "src/functions/marshal_uri_from_sapi.legacy.php",
  5567. "src/functions/normalize_server.legacy.php",
  5568. "src/functions/normalize_uploaded_files.legacy.php",
  5569. "src/functions/parse_cookie_header.legacy.php"
  5570. ],
  5571. "psr-4": {
  5572. "Laminas\\Diactoros\\": "src/"
  5573. }
  5574. },
  5575. "notification-url": "https://packagist.org/downloads/",
  5576. "license": [
  5577. "BSD-3-Clause"
  5578. ],
  5579. "description": "PSR HTTP Message implementations",
  5580. "homepage": "https://laminas.dev",
  5581. "keywords": [
  5582. "http",
  5583. "laminas",
  5584. "psr",
  5585. "psr-7"
  5586. ],
  5587. "time": "2020-03-23T15:28:28+00:00"
  5588. },
  5589. {
  5590. "name": "laminas/laminas-escaper",
  5591. "version": "2.6.1",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/laminas/laminas-escaper.git",
  5595. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  5600. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "laminas/laminas-zendframework-bridge": "^1.0",
  5605. "php": "^5.6 || ^7.0"
  5606. },
  5607. "replace": {
  5608. "zendframework/zend-escaper": "self.version"
  5609. },
  5610. "require-dev": {
  5611. "laminas/laminas-coding-standard": "~1.0.0",
  5612. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  5613. },
  5614. "type": "library",
  5615. "extra": {
  5616. "branch-alias": {
  5617. "dev-master": "2.6.x-dev",
  5618. "dev-develop": "2.7.x-dev"
  5619. }
  5620. },
  5621. "autoload": {
  5622. "psr-4": {
  5623. "Laminas\\Escaper\\": "src/"
  5624. }
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "BSD-3-Clause"
  5629. ],
  5630. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5631. "homepage": "https://laminas.dev",
  5632. "keywords": [
  5633. "escaper",
  5634. "laminas"
  5635. ],
  5636. "time": "2019-12-31T16:43:30+00:00"
  5637. },
  5638. {
  5639. "name": "laminas/laminas-feed",
  5640. "version": "2.12.2",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/laminas/laminas-feed.git",
  5644. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5649. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "ext-dom": "*",
  5654. "ext-libxml": "*",
  5655. "laminas/laminas-escaper": "^2.5.2",
  5656. "laminas/laminas-stdlib": "^3.2.1",
  5657. "laminas/laminas-zendframework-bridge": "^1.0",
  5658. "php": "^5.6 || ^7.0"
  5659. },
  5660. "replace": {
  5661. "zendframework/zend-feed": "^2.12.0"
  5662. },
  5663. "require-dev": {
  5664. "laminas/laminas-cache": "^2.7.2",
  5665. "laminas/laminas-coding-standard": "~1.0.0",
  5666. "laminas/laminas-db": "^2.8.2",
  5667. "laminas/laminas-http": "^2.7",
  5668. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  5669. "laminas/laminas-validator": "^2.10.1",
  5670. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  5671. "psr/http-message": "^1.0.1"
  5672. },
  5673. "suggest": {
  5674. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  5675. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  5676. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  5677. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  5678. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  5679. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  5680. },
  5681. "type": "library",
  5682. "extra": {
  5683. "branch-alias": {
  5684. "dev-master": "2.12.x-dev",
  5685. "dev-develop": "2.13.x-dev"
  5686. }
  5687. },
  5688. "autoload": {
  5689. "psr-4": {
  5690. "Laminas\\Feed\\": "src/"
  5691. }
  5692. },
  5693. "notification-url": "https://packagist.org/downloads/",
  5694. "license": [
  5695. "BSD-3-Clause"
  5696. ],
  5697. "description": "provides functionality for consuming RSS and Atom feeds",
  5698. "homepage": "https://laminas.dev",
  5699. "keywords": [
  5700. "feed",
  5701. "laminas"
  5702. ],
  5703. "time": "2020-03-29T12:36:29+00:00"
  5704. },
  5705. {
  5706. "name": "laminas/laminas-stdlib",
  5707. "version": "3.2.1",
  5708. "source": {
  5709. "type": "git",
  5710. "url": "https://github.com/laminas/laminas-stdlib.git",
  5711. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  5712. },
  5713. "dist": {
  5714. "type": "zip",
  5715. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  5716. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  5717. "shasum": ""
  5718. },
  5719. "require": {
  5720. "laminas/laminas-zendframework-bridge": "^1.0",
  5721. "php": "^5.6 || ^7.0"
  5722. },
  5723. "replace": {
  5724. "zendframework/zend-stdlib": "self.version"
  5725. },
  5726. "require-dev": {
  5727. "laminas/laminas-coding-standard": "~1.0.0",
  5728. "phpbench/phpbench": "^0.13",
  5729. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  5730. },
  5731. "type": "library",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-master": "3.2.x-dev",
  5735. "dev-develop": "3.3.x-dev"
  5736. }
  5737. },
  5738. "autoload": {
  5739. "psr-4": {
  5740. "Laminas\\Stdlib\\": "src/"
  5741. }
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "BSD-3-Clause"
  5746. ],
  5747. "description": "SPL extensions, array utilities, error handlers, and more",
  5748. "homepage": "https://laminas.dev",
  5749. "keywords": [
  5750. "laminas",
  5751. "stdlib"
  5752. ],
  5753. "time": "2019-12-31T17:51:15+00:00"
  5754. },
  5755. {
  5756. "name": "laminas/laminas-zendframework-bridge",
  5757. "version": "1.0.4",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  5761. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  5766. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  5767. "shasum": ""
  5768. },
  5769. "require": {
  5770. "php": "^5.6 || ^7.0"
  5771. },
  5772. "require-dev": {
  5773. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  5774. "squizlabs/php_codesniffer": "^3.5"
  5775. },
  5776. "type": "library",
  5777. "extra": {
  5778. "branch-alias": {
  5779. "dev-master": "1.0.x-dev",
  5780. "dev-develop": "1.1.x-dev"
  5781. },
  5782. "laminas": {
  5783. "module": "Laminas\\ZendFrameworkBridge"
  5784. }
  5785. },
  5786. "autoload": {
  5787. "files": [
  5788. "src/autoload.php"
  5789. ],
  5790. "psr-4": {
  5791. "Laminas\\ZendFrameworkBridge\\": "src//"
  5792. }
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "BSD-3-Clause"
  5797. ],
  5798. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  5799. "keywords": [
  5800. "ZendFramework",
  5801. "autoloading",
  5802. "laminas",
  5803. "zf"
  5804. ],
  5805. "funding": [
  5806. {
  5807. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5808. "type": "community_bridge"
  5809. }
  5810. ],
  5811. "time": "2020-05-20T16:45:56+00:00"
  5812. },
  5813. {
  5814. "name": "league/container",
  5815. "version": "2.4.1",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/thephpleague/container.git",
  5819. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  5824. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  5825. "shasum": ""
  5826. },
  5827. "require": {
  5828. "container-interop/container-interop": "^1.2",
  5829. "php": "^5.4.0 || ^7.0"
  5830. },
  5831. "provide": {
  5832. "container-interop/container-interop-implementation": "^1.2",
  5833. "psr/container-implementation": "^1.0"
  5834. },
  5835. "replace": {
  5836. "orno/di": "~2.0"
  5837. },
  5838. "require-dev": {
  5839. "phpunit/phpunit": "4.*"
  5840. },
  5841. "type": "library",
  5842. "extra": {
  5843. "branch-alias": {
  5844. "dev-2.x": "2.x-dev",
  5845. "dev-1.x": "1.x-dev"
  5846. }
  5847. },
  5848. "autoload": {
  5849. "psr-4": {
  5850. "League\\Container\\": "src"
  5851. }
  5852. },
  5853. "notification-url": "https://packagist.org/downloads/",
  5854. "license": [
  5855. "MIT"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "Phil Bennett",
  5860. "email": "philipobenito@gmail.com",
  5861. "homepage": "http://www.philipobenito.com",
  5862. "role": "Developer"
  5863. }
  5864. ],
  5865. "description": "A fast and intuitive dependency injection container.",
  5866. "homepage": "https://github.com/thephpleague/container",
  5867. "keywords": [
  5868. "container",
  5869. "dependency",
  5870. "di",
  5871. "injection",
  5872. "league",
  5873. "provider",
  5874. "service"
  5875. ],
  5876. "time": "2017-05-10T09:20:27+00:00"
  5877. },
  5878. {
  5879. "name": "masterminds/html5",
  5880. "version": "2.3.0",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/Masterminds/html5-php.git",
  5884. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  5889. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  5890. "shasum": ""
  5891. },
  5892. "require": {
  5893. "ext-libxml": "*",
  5894. "php": ">=5.3.0"
  5895. },
  5896. "require-dev": {
  5897. "phpunit/phpunit": "4.*",
  5898. "sami/sami": "~2.0",
  5899. "satooshi/php-coveralls": "1.0.*"
  5900. },
  5901. "type": "library",
  5902. "extra": {
  5903. "branch-alias": {
  5904. "dev-master": "2.2-dev"
  5905. }
  5906. },
  5907. "autoload": {
  5908. "psr-4": {
  5909. "Masterminds\\": "src"
  5910. }
  5911. },
  5912. "notification-url": "https://packagist.org/downloads/",
  5913. "license": [
  5914. "MIT"
  5915. ],
  5916. "authors": [
  5917. {
  5918. "name": "Matt Butcher",
  5919. "email": "technosophos@gmail.com"
  5920. },
  5921. {
  5922. "name": "Asmir Mustafic",
  5923. "email": "goetas@gmail.com"
  5924. },
  5925. {
  5926. "name": "Matt Farina",
  5927. "email": "matt@mattfarina.com"
  5928. }
  5929. ],
  5930. "description": "An HTML5 parser and serializer.",
  5931. "homepage": "http://masterminds.github.io/html5-php",
  5932. "keywords": [
  5933. "HTML5",
  5934. "dom",
  5935. "html",
  5936. "parser",
  5937. "querypath",
  5938. "serializer",
  5939. "xml"
  5940. ],
  5941. "time": "2017-09-04T12:26:28+00:00"
  5942. },
  5943. {
  5944. "name": "mdurrant/php-binary-reader",
  5945. "version": "1.0.9",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://github.com/mdurrant/php-binary-reader.git",
  5949. "reference": "9abf18d7b361d0ae1cd80fc6782e59b313586db6"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://api.github.com/repos/mdurrant/php-binary-reader/zipball/9abf18d7b361d0ae1cd80fc6782e59b313586db6",
  5954. "reference": "9abf18d7b361d0ae1cd80fc6782e59b313586db6",
  5955. "shasum": ""
  5956. },
  5957. "require": {
  5958. "php": ">=5.4"
  5959. },
  5960. "require-dev": {
  5961. "phpunit/phpunit": "~4.0",
  5962. "squizlabs/php_codesniffer": "~1.0"
  5963. },
  5964. "type": "library",
  5965. "extra": {
  5966. "branch-alias": {
  5967. "dev-master": "1.0.x-dev"
  5968. }
  5969. },
  5970. "autoload": {
  5971. "psr-4": {
  5972. "PhpBinaryReader\\": [
  5973. "src/",
  5974. "test/"
  5975. ]
  5976. }
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "Matt Durrant",
  5985. "email": "mdurrant@gmail.com"
  5986. }
  5987. ],
  5988. "description": "Lightweight binary reader for PHP",
  5989. "time": "2016-12-08T01:24:19+00:00"
  5990. },
  5991. {
  5992. "name": "nikic/php-parser",
  5993. "version": "v4.6.0",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/nikic/PHP-Parser.git",
  5997. "reference": "c346bbfafe2ff60680258b631afb730d186ed864"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c346bbfafe2ff60680258b631afb730d186ed864",
  6002. "reference": "c346bbfafe2ff60680258b631afb730d186ed864",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "ext-tokenizer": "*",
  6007. "php": ">=7.0"
  6008. },
  6009. "require-dev": {
  6010. "ircmaxell/php-yacc": "0.0.5",
  6011. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6012. },
  6013. "bin": [
  6014. "bin/php-parse"
  6015. ],
  6016. "type": "library",
  6017. "extra": {
  6018. "branch-alias": {
  6019. "dev-master": "4.3-dev"
  6020. }
  6021. },
  6022. "autoload": {
  6023. "psr-4": {
  6024. "PhpParser\\": "lib/PhpParser"
  6025. }
  6026. },
  6027. "notification-url": "https://packagist.org/downloads/",
  6028. "license": [
  6029. "BSD-3-Clause"
  6030. ],
  6031. "authors": [
  6032. {
  6033. "name": "Nikita Popov"
  6034. }
  6035. ],
  6036. "description": "A PHP parser written in PHP",
  6037. "keywords": [
  6038. "parser",
  6039. "php"
  6040. ],
  6041. "time": "2020-07-02T17:12:47+00:00"
  6042. },
  6043. {
  6044. "name": "oomphinc/composer-installers-extender",
  6045. "version": "v1.1.2",
  6046. "source": {
  6047. "type": "git",
  6048. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6049. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6050. },
  6051. "dist": {
  6052. "type": "zip",
  6053. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6054. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6055. "shasum": ""
  6056. },
  6057. "require": {
  6058. "composer-plugin-api": "^1.0",
  6059. "composer/installers": "^1.0"
  6060. },
  6061. "type": "composer-plugin",
  6062. "extra": {
  6063. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6064. },
  6065. "autoload": {
  6066. "psr-4": {
  6067. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6068. }
  6069. },
  6070. "notification-url": "https://packagist.org/downloads/",
  6071. "license": [
  6072. "MIT"
  6073. ],
  6074. "authors": [
  6075. {
  6076. "name": "Stephen Beemsterboer",
  6077. "email": "stephen@oomphinc.com",
  6078. "homepage": "https://github.com/balbuf"
  6079. }
  6080. ],
  6081. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6082. "homepage": "http://www.oomphinc.com/",
  6083. "time": "2017-03-31T16:57:39+00:00"
  6084. },
  6085. {
  6086. "name": "paragonie/random_compat",
  6087. "version": "v9.99.99",
  6088. "source": {
  6089. "type": "git",
  6090. "url": "https://github.com/paragonie/random_compat.git",
  6091. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6092. },
  6093. "dist": {
  6094. "type": "zip",
  6095. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6096. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6097. "shasum": ""
  6098. },
  6099. "require": {
  6100. "php": "^7"
  6101. },
  6102. "require-dev": {
  6103. "phpunit/phpunit": "4.*|5.*",
  6104. "vimeo/psalm": "^1"
  6105. },
  6106. "suggest": {
  6107. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6108. },
  6109. "type": "library",
  6110. "notification-url": "https://packagist.org/downloads/",
  6111. "license": [
  6112. "MIT"
  6113. ],
  6114. "authors": [
  6115. {
  6116. "name": "Paragon Initiative Enterprises",
  6117. "email": "security@paragonie.com",
  6118. "homepage": "https://paragonie.com"
  6119. }
  6120. ],
  6121. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6122. "keywords": [
  6123. "csprng",
  6124. "polyfill",
  6125. "pseudorandom",
  6126. "random"
  6127. ],
  6128. "time": "2018-07-02T15:55:56+00:00"
  6129. },
  6130. {
  6131. "name": "pear/archive_tar",
  6132. "version": "1.4.9",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://github.com/pear/Archive_Tar.git",
  6136. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  6137. },
  6138. "dist": {
  6139. "type": "zip",
  6140. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  6141. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  6142. "shasum": ""
  6143. },
  6144. "require": {
  6145. "pear/pear-core-minimal": "^1.10.0alpha2",
  6146. "php": ">=5.2.0"
  6147. },
  6148. "require-dev": {
  6149. "phpunit/phpunit": "*"
  6150. },
  6151. "suggest": {
  6152. "ext-bz2": "Bz2 compression support.",
  6153. "ext-xz": "Lzma2 compression support.",
  6154. "ext-zlib": "Gzip compression support."
  6155. },
  6156. "type": "library",
  6157. "extra": {
  6158. "branch-alias": {
  6159. "dev-master": "1.4.x-dev"
  6160. }
  6161. },
  6162. "autoload": {
  6163. "psr-0": {
  6164. "Archive_Tar": ""
  6165. }
  6166. },
  6167. "notification-url": "https://packagist.org/downloads/",
  6168. "include-path": [
  6169. "./"
  6170. ],
  6171. "license": [
  6172. "BSD-3-Clause"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "Vincent Blavet",
  6177. "email": "vincent@phpconcept.net"
  6178. },
  6179. {
  6180. "name": "Greg Beaver",
  6181. "email": "greg@chiaraquartet.net"
  6182. },
  6183. {
  6184. "name": "Michiel Rook",
  6185. "email": "mrook@php.net"
  6186. }
  6187. ],
  6188. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6189. "homepage": "https://github.com/pear/Archive_Tar",
  6190. "keywords": [
  6191. "archive",
  6192. "tar"
  6193. ],
  6194. "time": "2019-12-04T10:17:28+00:00"
  6195. },
  6196. {
  6197. "name": "pear/console_getopt",
  6198. "version": "v1.4.3",
  6199. "source": {
  6200. "type": "git",
  6201. "url": "https://github.com/pear/Console_Getopt.git",
  6202. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6203. },
  6204. "dist": {
  6205. "type": "zip",
  6206. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6207. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6208. "shasum": ""
  6209. },
  6210. "type": "library",
  6211. "autoload": {
  6212. "psr-0": {
  6213. "Console": "./"
  6214. }
  6215. },
  6216. "notification-url": "https://packagist.org/downloads/",
  6217. "include-path": [
  6218. "./"
  6219. ],
  6220. "license": [
  6221. "BSD-2-Clause"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "Andrei Zmievski",
  6226. "email": "andrei@php.net",
  6227. "role": "Lead"
  6228. },
  6229. {
  6230. "name": "Stig Bakken",
  6231. "email": "stig@php.net",
  6232. "role": "Developer"
  6233. },
  6234. {
  6235. "name": "Greg Beaver",
  6236. "email": "cellog@php.net",
  6237. "role": "Helper"
  6238. }
  6239. ],
  6240. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6241. "time": "2019-11-20T18:27:48+00:00"
  6242. },
  6243. {
  6244. "name": "pear/pear-core-minimal",
  6245. "version": "v1.10.10",
  6246. "source": {
  6247. "type": "git",
  6248. "url": "https://github.com/pear/pear-core-minimal.git",
  6249. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6250. },
  6251. "dist": {
  6252. "type": "zip",
  6253. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6254. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6255. "shasum": ""
  6256. },
  6257. "require": {
  6258. "pear/console_getopt": "~1.4",
  6259. "pear/pear_exception": "~1.0"
  6260. },
  6261. "replace": {
  6262. "rsky/pear-core-min": "self.version"
  6263. },
  6264. "type": "library",
  6265. "autoload": {
  6266. "psr-0": {
  6267. "": "src/"
  6268. }
  6269. },
  6270. "notification-url": "https://packagist.org/downloads/",
  6271. "include-path": [
  6272. "src/"
  6273. ],
  6274. "license": [
  6275. "BSD-3-Clause"
  6276. ],
  6277. "authors": [
  6278. {
  6279. "name": "Christian Weiske",
  6280. "email": "cweiske@php.net",
  6281. "role": "Lead"
  6282. }
  6283. ],
  6284. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6285. "time": "2019-11-19T19:00:24+00:00"
  6286. },
  6287. {
  6288. "name": "pear/pear_exception",
  6289. "version": "v1.0.1",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/pear/PEAR_Exception.git",
  6293. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6298. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6299. "shasum": ""
  6300. },
  6301. "require": {
  6302. "php": ">=4.4.0"
  6303. },
  6304. "require-dev": {
  6305. "phpunit/phpunit": "*"
  6306. },
  6307. "type": "class",
  6308. "extra": {
  6309. "branch-alias": {
  6310. "dev-master": "1.0.x-dev"
  6311. }
  6312. },
  6313. "autoload": {
  6314. "classmap": [
  6315. "PEAR/"
  6316. ]
  6317. },
  6318. "notification-url": "https://packagist.org/downloads/",
  6319. "include-path": [
  6320. "."
  6321. ],
  6322. "license": [
  6323. "BSD-2-Clause"
  6324. ],
  6325. "authors": [
  6326. {
  6327. "name": "Helgi Thormar",
  6328. "email": "dufuz@php.net"
  6329. },
  6330. {
  6331. "name": "Greg Beaver",
  6332. "email": "cellog@php.net"
  6333. }
  6334. ],
  6335. "description": "The PEAR Exception base class.",
  6336. "homepage": "https://github.com/pear/PEAR_Exception",
  6337. "keywords": [
  6338. "exception"
  6339. ],
  6340. "time": "2019-12-10T10:24:42+00:00"
  6341. },
  6342. {
  6343. "name": "phayes/geophp",
  6344. "version": "1.2",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/phayes/geoPHP.git",
  6348. "reference": "015404e85b602e0df1f91441f8db0f9e98f7e567"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/phayes/geoPHP/zipball/015404e85b602e0df1f91441f8db0f9e98f7e567",
  6353. "reference": "015404e85b602e0df1f91441f8db0f9e98f7e567",
  6354. "shasum": ""
  6355. },
  6356. "require-dev": {
  6357. "phpunit/phpunit": "4.1.*"
  6358. },
  6359. "type": "library",
  6360. "autoload": {
  6361. "classmap": [
  6362. "geoPHP.inc"
  6363. ]
  6364. },
  6365. "notification-url": "https://packagist.org/downloads/",
  6366. "license": [
  6367. "GPL-2 or New-BSD"
  6368. ],
  6369. "authors": [
  6370. {
  6371. "name": "Patrick Hayes"
  6372. }
  6373. ],
  6374. "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.",
  6375. "homepage": "https://github.com/phayes/geoPHP",
  6376. "time": "2014-12-02T06:11:22+00:00"
  6377. },
  6378. {
  6379. "name": "php-http/discovery",
  6380. "version": "1.9.1",
  6381. "source": {
  6382. "type": "git",
  6383. "url": "https://github.com/php-http/discovery.git",
  6384. "reference": "64a18cc891957e05d91910b3c717d6bd11fbede9"
  6385. },
  6386. "dist": {
  6387. "type": "zip",
  6388. "url": "https://api.github.com/repos/php-http/discovery/zipball/64a18cc891957e05d91910b3c717d6bd11fbede9",
  6389. "reference": "64a18cc891957e05d91910b3c717d6bd11fbede9",
  6390. "shasum": ""
  6391. },
  6392. "require": {
  6393. "php": "^7.1 || ^8.0"
  6394. },
  6395. "conflict": {
  6396. "nyholm/psr7": "<1.0"
  6397. },
  6398. "require-dev": {
  6399. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6400. "php-http/httplug": "^1.0 || ^2.0",
  6401. "php-http/message-factory": "^1.0",
  6402. "phpspec/phpspec": "^5.1 || ^6.1",
  6403. "puli/composer-plugin": "1.0.0-beta10"
  6404. },
  6405. "suggest": {
  6406. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  6407. "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."
  6408. },
  6409. "type": "library",
  6410. "extra": {
  6411. "branch-alias": {
  6412. "dev-master": "1.9-dev"
  6413. }
  6414. },
  6415. "autoload": {
  6416. "psr-4": {
  6417. "Http\\Discovery\\": "src/"
  6418. }
  6419. },
  6420. "notification-url": "https://packagist.org/downloads/",
  6421. "license": [
  6422. "MIT"
  6423. ],
  6424. "authors": [
  6425. {
  6426. "name": "Márk Sági-Kazár",
  6427. "email": "mark.sagikazar@gmail.com"
  6428. }
  6429. ],
  6430. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  6431. "homepage": "http://php-http.org",
  6432. "keywords": [
  6433. "adapter",
  6434. "client",
  6435. "discovery",
  6436. "factory",
  6437. "http",
  6438. "message",
  6439. "psr7"
  6440. ],
  6441. "time": "2020-07-13T15:44:45+00:00"
  6442. },
  6443. {
  6444. "name": "php-http/guzzle6-adapter",
  6445. "version": "v1.1.1",
  6446. "source": {
  6447. "type": "git",
  6448. "url": "https://github.com/php-http/guzzle6-adapter.git",
  6449. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab"
  6450. },
  6451. "dist": {
  6452. "type": "zip",
  6453. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab",
  6454. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab",
  6455. "shasum": ""
  6456. },
  6457. "require": {
  6458. "guzzlehttp/guzzle": "^6.0",
  6459. "php": ">=5.5.0",
  6460. "php-http/httplug": "^1.0"
  6461. },
  6462. "provide": {
  6463. "php-http/async-client-implementation": "1.0",
  6464. "php-http/client-implementation": "1.0"
  6465. },
  6466. "require-dev": {
  6467. "ext-curl": "*",
  6468. "php-http/adapter-integration-tests": "^0.4"
  6469. },
  6470. "type": "library",
  6471. "extra": {
  6472. "branch-alias": {
  6473. "dev-master": "1.2-dev"
  6474. }
  6475. },
  6476. "autoload": {
  6477. "psr-4": {
  6478. "Http\\Adapter\\Guzzle6\\": "src/"
  6479. }
  6480. },
  6481. "notification-url": "https://packagist.org/downloads/",
  6482. "license": [
  6483. "MIT"
  6484. ],
  6485. "authors": [
  6486. {
  6487. "name": "Márk Sági-Kazár",
  6488. "email": "mark.sagikazar@gmail.com"
  6489. },
  6490. {
  6491. "name": "David de Boer",
  6492. "email": "david@ddeboer.nl"
  6493. }
  6494. ],
  6495. "description": "Guzzle 6 HTTP Adapter",
  6496. "homepage": "http://httplug.io",
  6497. "keywords": [
  6498. "Guzzle",
  6499. "http"
  6500. ],
  6501. "time": "2016-05-10T06:13:32+00:00"
  6502. },
  6503. {
  6504. "name": "php-http/httplug",
  6505. "version": "v1.1.0",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/php-http/httplug.git",
  6509. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  6514. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  6515. "shasum": ""
  6516. },
  6517. "require": {
  6518. "php": ">=5.4",
  6519. "php-http/promise": "^1.0",
  6520. "psr/http-message": "^1.0"
  6521. },
  6522. "require-dev": {
  6523. "henrikbjorn/phpspec-code-coverage": "^1.0",
  6524. "phpspec/phpspec": "^2.4"
  6525. },
  6526. "type": "library",
  6527. "extra": {
  6528. "branch-alias": {
  6529. "dev-master": "1.1-dev"
  6530. }
  6531. },
  6532. "autoload": {
  6533. "psr-4": {
  6534. "Http\\Client\\": "src/"
  6535. }
  6536. },
  6537. "notification-url": "https://packagist.org/downloads/",
  6538. "license": [
  6539. "MIT"
  6540. ],
  6541. "authors": [
  6542. {
  6543. "name": "Eric GELOEN",
  6544. "email": "geloen.eric@gmail.com"
  6545. },
  6546. {
  6547. "name": "Márk Sági-Kazár",
  6548. "email": "mark.sagikazar@gmail.com"
  6549. }
  6550. ],
  6551. "description": "HTTPlug, the HTTP client abstraction for PHP",
  6552. "homepage": "http://httplug.io",
  6553. "keywords": [
  6554. "client",
  6555. "http"
  6556. ],
  6557. "time": "2016-08-31T08:30:17+00:00"
  6558. },
  6559. {
  6560. "name": "php-http/message",
  6561. "version": "1.8.0",
  6562. "source": {
  6563. "type": "git",
  6564. "url": "https://github.com/php-http/message.git",
  6565. "reference": "ce8f43ac1e294b54aabf5808515c3554a19c1e1c"
  6566. },
  6567. "dist": {
  6568. "type": "zip",
  6569. "url": "https://api.github.com/repos/php-http/message/zipball/ce8f43ac1e294b54aabf5808515c3554a19c1e1c",
  6570. "reference": "ce8f43ac1e294b54aabf5808515c3554a19c1e1c",
  6571. "shasum": ""
  6572. },
  6573. "require": {
  6574. "clue/stream-filter": "^1.4",
  6575. "php": "^7.1",
  6576. "php-http/message-factory": "^1.0.2",
  6577. "psr/http-message": "^1.0"
  6578. },
  6579. "provide": {
  6580. "php-http/message-factory-implementation": "1.0"
  6581. },
  6582. "require-dev": {
  6583. "akeneo/phpspec-skip-example-extension": "^1.0",
  6584. "coduo/phpspec-data-provider-extension": "^1.0",
  6585. "ext-zlib": "*",
  6586. "guzzlehttp/psr7": "^1.0",
  6587. "henrikbjorn/phpspec-code-coverage": "^1.0",
  6588. "phpspec/phpspec": "^2.4",
  6589. "slim/slim": "^3.0",
  6590. "zendframework/zend-diactoros": "^1.0"
  6591. },
  6592. "suggest": {
  6593. "ext-zlib": "Used with compressor/decompressor streams",
  6594. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  6595. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  6596. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  6597. },
  6598. "type": "library",
  6599. "extra": {
  6600. "branch-alias": {
  6601. "dev-master": "1.8-dev"
  6602. }
  6603. },
  6604. "autoload": {
  6605. "psr-4": {
  6606. "Http\\Message\\": "src/"
  6607. },
  6608. "files": [
  6609. "src/filters.php"
  6610. ]
  6611. },
  6612. "notification-url": "https://packagist.org/downloads/",
  6613. "license": [
  6614. "MIT"
  6615. ],
  6616. "authors": [
  6617. {
  6618. "name": "Márk Sági-Kazár",
  6619. "email": "mark.sagikazar@gmail.com"
  6620. }
  6621. ],
  6622. "description": "HTTP Message related tools",
  6623. "homepage": "http://php-http.org",
  6624. "keywords": [
  6625. "http",
  6626. "message",
  6627. "psr-7"
  6628. ],
  6629. "time": "2019-08-05T06:55:08+00:00"
  6630. },
  6631. {
  6632. "name": "php-http/message-factory",
  6633. "version": "v1.0.2",
  6634. "source": {
  6635. "type": "git",
  6636. "url": "https://github.com/php-http/message-factory.git",
  6637. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  6638. },
  6639. "dist": {
  6640. "type": "zip",
  6641. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  6642. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  6643. "shasum": ""
  6644. },
  6645. "require": {
  6646. "php": ">=5.4",
  6647. "psr/http-message": "^1.0"
  6648. },
  6649. "type": "library",
  6650. "extra": {
  6651. "branch-alias": {
  6652. "dev-master": "1.0-dev"
  6653. }
  6654. },
  6655. "autoload": {
  6656. "psr-4": {
  6657. "Http\\Message\\": "src/"
  6658. }
  6659. },
  6660. "notification-url": "https://packagist.org/downloads/",
  6661. "license": [
  6662. "MIT"
  6663. ],
  6664. "authors": [
  6665. {
  6666. "name": "Márk Sági-Kazár",
  6667. "email": "mark.sagikazar@gmail.com"
  6668. }
  6669. ],
  6670. "description": "Factory interfaces for PSR-7 HTTP Message",
  6671. "homepage": "http://php-http.org",
  6672. "keywords": [
  6673. "factory",
  6674. "http",
  6675. "message",
  6676. "stream",
  6677. "uri"
  6678. ],
  6679. "time": "2015-12-19T14:08:53+00:00"
  6680. },
  6681. {
  6682. "name": "php-http/promise",
  6683. "version": "1.1.0",
  6684. "source": {
  6685. "type": "git",
  6686. "url": "https://github.com/php-http/promise.git",
  6687. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  6688. },
  6689. "dist": {
  6690. "type": "zip",
  6691. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  6692. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  6693. "shasum": ""
  6694. },
  6695. "require": {
  6696. "php": "^7.1 || ^8.0"
  6697. },
  6698. "require-dev": {
  6699. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  6700. "phpspec/phpspec": "^5.1.2 || ^6.2"
  6701. },
  6702. "type": "library",
  6703. "extra": {
  6704. "branch-alias": {
  6705. "dev-master": "1.1-dev"
  6706. }
  6707. },
  6708. "autoload": {
  6709. "psr-4": {
  6710. "Http\\Promise\\": "src/"
  6711. }
  6712. },
  6713. "notification-url": "https://packagist.org/downloads/",
  6714. "license": [
  6715. "MIT"
  6716. ],
  6717. "authors": [
  6718. {
  6719. "name": "Joel Wurtz",
  6720. "email": "joel.wurtz@gmail.com"
  6721. },
  6722. {
  6723. "name": "Márk Sági-Kazár",
  6724. "email": "mark.sagikazar@gmail.com"
  6725. }
  6726. ],
  6727. "description": "Promise used for asynchronous HTTP requests",
  6728. "homepage": "http://httplug.io",
  6729. "keywords": [
  6730. "promise"
  6731. ],
  6732. "time": "2020-07-07T09:29:14+00:00"
  6733. },
  6734. {
  6735. "name": "psr/container",
  6736. "version": "1.0.0",
  6737. "source": {
  6738. "type": "git",
  6739. "url": "https://github.com/php-fig/container.git",
  6740. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  6741. },
  6742. "dist": {
  6743. "type": "zip",
  6744. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6745. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6746. "shasum": ""
  6747. },
  6748. "require": {
  6749. "php": ">=5.3.0"
  6750. },
  6751. "type": "library",
  6752. "extra": {
  6753. "branch-alias": {
  6754. "dev-master": "1.0.x-dev"
  6755. }
  6756. },
  6757. "autoload": {
  6758. "psr-4": {
  6759. "Psr\\Container\\": "src/"
  6760. }
  6761. },
  6762. "notification-url": "https://packagist.org/downloads/",
  6763. "license": [
  6764. "MIT"
  6765. ],
  6766. "authors": [
  6767. {
  6768. "name": "PHP-FIG",
  6769. "homepage": "http://www.php-fig.org/"
  6770. }
  6771. ],
  6772. "description": "Common Container Interface (PHP FIG PSR-11)",
  6773. "homepage": "https://github.com/php-fig/container",
  6774. "keywords": [
  6775. "PSR-11",
  6776. "container",
  6777. "container-interface",
  6778. "container-interop",
  6779. "psr"
  6780. ],
  6781. "time": "2017-02-14T16:28:37+00:00"
  6782. },
  6783. {
  6784. "name": "psr/http-message",
  6785. "version": "1.0.1",
  6786. "source": {
  6787. "type": "git",
  6788. "url": "https://github.com/php-fig/http-message.git",
  6789. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6790. },
  6791. "dist": {
  6792. "type": "zip",
  6793. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6794. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6795. "shasum": ""
  6796. },
  6797. "require": {
  6798. "php": ">=5.3.0"
  6799. },
  6800. "type": "library",
  6801. "extra": {
  6802. "branch-alias": {
  6803. "dev-master": "1.0.x-dev"
  6804. }
  6805. },
  6806. "autoload": {
  6807. "psr-4": {
  6808. "Psr\\Http\\Message\\": "src/"
  6809. }
  6810. },
  6811. "notification-url": "https://packagist.org/downloads/",
  6812. "license": [
  6813. "MIT"
  6814. ],
  6815. "authors": [
  6816. {
  6817. "name": "PHP-FIG",
  6818. "homepage": "http://www.php-fig.org/"
  6819. }
  6820. ],
  6821. "description": "Common interface for HTTP messages",
  6822. "homepage": "https://github.com/php-fig/http-message",
  6823. "keywords": [
  6824. "http",
  6825. "http-message",
  6826. "psr",
  6827. "psr-7",
  6828. "request",
  6829. "response"
  6830. ],
  6831. "time": "2016-08-06T14:39:51+00:00"
  6832. },
  6833. {
  6834. "name": "psr/log",
  6835. "version": "1.1.3",
  6836. "source": {
  6837. "type": "git",
  6838. "url": "https://github.com/php-fig/log.git",
  6839. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  6840. },
  6841. "dist": {
  6842. "type": "zip",
  6843. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  6844. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  6845. "shasum": ""
  6846. },
  6847. "require": {
  6848. "php": ">=5.3.0"
  6849. },
  6850. "type": "library",
  6851. "extra": {
  6852. "branch-alias": {
  6853. "dev-master": "1.1.x-dev"
  6854. }
  6855. },
  6856. "autoload": {
  6857. "psr-4": {
  6858. "Psr\\Log\\": "Psr/Log/"
  6859. }
  6860. },
  6861. "notification-url": "https://packagist.org/downloads/",
  6862. "license": [
  6863. "MIT"
  6864. ],
  6865. "authors": [
  6866. {
  6867. "name": "PHP-FIG",
  6868. "homepage": "http://www.php-fig.org/"
  6869. }
  6870. ],
  6871. "description": "Common interface for logging libraries",
  6872. "homepage": "https://github.com/php-fig/log",
  6873. "keywords": [
  6874. "log",
  6875. "psr",
  6876. "psr-3"
  6877. ],
  6878. "time": "2020-03-23T09:12:05+00:00"
  6879. },
  6880. {
  6881. "name": "psy/psysh",
  6882. "version": "v0.10.4",
  6883. "source": {
  6884. "type": "git",
  6885. "url": "https://github.com/bobthecow/psysh.git",
  6886. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  6887. },
  6888. "dist": {
  6889. "type": "zip",
  6890. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  6891. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  6892. "shasum": ""
  6893. },
  6894. "require": {
  6895. "dnoegel/php-xdg-base-dir": "0.1.*",
  6896. "ext-json": "*",
  6897. "ext-tokenizer": "*",
  6898. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  6899. "php": "^8.0 || ^7.0 || ^5.5.9",
  6900. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  6901. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  6902. },
  6903. "require-dev": {
  6904. "bamarni/composer-bin-plugin": "^1.2",
  6905. "hoa/console": "3.17.*"
  6906. },
  6907. "suggest": {
  6908. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6909. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6910. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6911. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  6912. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  6913. },
  6914. "bin": [
  6915. "bin/psysh"
  6916. ],
  6917. "type": "library",
  6918. "extra": {
  6919. "branch-alias": {
  6920. "dev-master": "0.10.x-dev"
  6921. }
  6922. },
  6923. "autoload": {
  6924. "files": [
  6925. "src/functions.php"
  6926. ],
  6927. "psr-4": {
  6928. "Psy\\": "src/"
  6929. }
  6930. },
  6931. "notification-url": "https://packagist.org/downloads/",
  6932. "license": [
  6933. "MIT"
  6934. ],
  6935. "authors": [
  6936. {
  6937. "name": "Justin Hileman",
  6938. "email": "justin@justinhileman.info",
  6939. "homepage": "http://justinhileman.com"
  6940. }
  6941. ],
  6942. "description": "An interactive shell for modern PHP.",
  6943. "homepage": "http://psysh.org",
  6944. "keywords": [
  6945. "REPL",
  6946. "console",
  6947. "interactive",
  6948. "shell"
  6949. ],
  6950. "time": "2020-05-03T19:32:03+00:00"
  6951. },
  6952. {
  6953. "name": "ralouphie/getallheaders",
  6954. "version": "3.0.3",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/ralouphie/getallheaders.git",
  6958. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6963. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "php": ">=5.6"
  6968. },
  6969. "require-dev": {
  6970. "php-coveralls/php-coveralls": "^2.1",
  6971. "phpunit/phpunit": "^5 || ^6.5"
  6972. },
  6973. "type": "library",
  6974. "autoload": {
  6975. "files": [
  6976. "src/getallheaders.php"
  6977. ]
  6978. },
  6979. "notification-url": "https://packagist.org/downloads/",
  6980. "license": [
  6981. "MIT"
  6982. ],
  6983. "authors": [
  6984. {
  6985. "name": "Ralph Khattar",
  6986. "email": "ralph.khattar@gmail.com"
  6987. }
  6988. ],
  6989. "description": "A polyfill for getallheaders.",
  6990. "time": "2019-03-08T08:55:37+00:00"
  6991. },
  6992. {
  6993. "name": "sibyx/phpgpx",
  6994. "version": "1.0-RC5",
  6995. "source": {
  6996. "type": "git",
  6997. "url": "https://github.com/Sibyx/phpGPX.git",
  6998. "reference": "0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e"
  6999. },
  7000. "dist": {
  7001. "type": "zip",
  7002. "url": "https://api.github.com/repos/Sibyx/phpGPX/zipball/0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e",
  7003. "reference": "0bb616dda0b6ff3e78c72167087c8ffe8b1cbf2e",
  7004. "shasum": ""
  7005. },
  7006. "require": {
  7007. "lib-libxml": "*",
  7008. "php": ">=5.4"
  7009. },
  7010. "require-dev": {
  7011. "evert/phpdoc-md": "~0.2.0",
  7012. "phpunit/phpunit": "^6.5"
  7013. },
  7014. "type": "library",
  7015. "autoload": {
  7016. "psr-4": {
  7017. "phpGPX\\": "src/phpGPX/"
  7018. }
  7019. },
  7020. "notification-url": "https://packagist.org/downloads/",
  7021. "license": [
  7022. "MIT"
  7023. ],
  7024. "authors": [
  7025. {
  7026. "name": "Jakub Dubec",
  7027. "email": "jakub.dubec@gmail.com",
  7028. "homepage": "https://jakubdubec.me"
  7029. }
  7030. ],
  7031. "description": "A simple PHP library for GPX import/export",
  7032. "time": "2018-01-25T12:25:51+00:00"
  7033. },
  7034. {
  7035. "name": "sierrafayad/osm-pbf",
  7036. "version": "1.0.1",
  7037. "source": {
  7038. "type": "git",
  7039. "url": "https://github.com/sierrafayad/osm-pbf.git",
  7040. "reference": "5780393d043d7c3132bb513f4b23e295ed934a47"
  7041. },
  7042. "dist": {
  7043. "type": "zip",
  7044. "url": "https://api.github.com/repos/sierrafayad/osm-pbf/zipball/5780393d043d7c3132bb513f4b23e295ed934a47",
  7045. "reference": "5780393d043d7c3132bb513f4b23e295ed934a47",
  7046. "shasum": ""
  7047. },
  7048. "require": {
  7049. "ext-zlib": "*",
  7050. "google/protobuf": "v3.6.1.3",
  7051. "mdurrant/php-binary-reader": "^1.0",
  7052. "php": ">=5.6"
  7053. },
  7054. "type": "library",
  7055. "autoload": {
  7056. "psr-4": {
  7057. "OsmPbf\\": "src/",
  7058. "OsmProto\\": "src/OSMProto/"
  7059. }
  7060. },
  7061. "notification-url": "https://packagist.org/downloads/",
  7062. "license": [
  7063. "MIT"
  7064. ],
  7065. "authors": [
  7066. {
  7067. "name": "Frank Sierra-Fayad",
  7068. "email": "frank@sierrafayad.com"
  7069. }
  7070. ],
  7071. "description": "Works with Open Street Map .osm.pbf compressed files.",
  7072. "homepage": "https://github.com/sierrafayad/osm-pbf",
  7073. "keywords": [
  7074. "OpenStreetMap",
  7075. "open street map",
  7076. "osm",
  7077. "pbf"
  7078. ],
  7079. "time": "2019-09-10T22:57:33+00:00"
  7080. },
  7081. {
  7082. "name": "stack/builder",
  7083. "version": "v1.0.5",
  7084. "source": {
  7085. "type": "git",
  7086. "url": "https://github.com/stackphp/builder.git",
  7087. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7088. },
  7089. "dist": {
  7090. "type": "zip",
  7091. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7092. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7093. "shasum": ""
  7094. },
  7095. "require": {
  7096. "php": ">=5.3.0",
  7097. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7098. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7099. },
  7100. "require-dev": {
  7101. "silex/silex": "~1.0"
  7102. },
  7103. "type": "library",
  7104. "extra": {
  7105. "branch-alias": {
  7106. "dev-master": "1.0-dev"
  7107. }
  7108. },
  7109. "autoload": {
  7110. "psr-0": {
  7111. "Stack": "src"
  7112. }
  7113. },
  7114. "notification-url": "https://packagist.org/downloads/",
  7115. "license": [
  7116. "MIT"
  7117. ],
  7118. "authors": [
  7119. {
  7120. "name": "Igor Wiedler",
  7121. "email": "igor@wiedler.ch"
  7122. }
  7123. ],
  7124. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7125. "keywords": [
  7126. "stack"
  7127. ],
  7128. "time": "2017-11-18T14:57:29+00:00"
  7129. },
  7130. {
  7131. "name": "symfony-cmf/routing",
  7132. "version": "1.4.1",
  7133. "source": {
  7134. "type": "git",
  7135. "url": "https://github.com/symfony-cmf/routing.git",
  7136. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7137. },
  7138. "dist": {
  7139. "type": "zip",
  7140. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7141. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7142. "shasum": ""
  7143. },
  7144. "require": {
  7145. "php": "^5.3.9|^7.0",
  7146. "psr/log": "1.*",
  7147. "symfony/http-kernel": "^2.2|3.*",
  7148. "symfony/routing": "^2.2|3.*"
  7149. },
  7150. "require-dev": {
  7151. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7152. "symfony-cmf/testing": "^1.3",
  7153. "symfony/config": "^2.2|3.*",
  7154. "symfony/dependency-injection": "^2.0.5|3.*",
  7155. "symfony/event-dispatcher": "^2.1|3.*"
  7156. },
  7157. "suggest": {
  7158. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7159. },
  7160. "type": "library",
  7161. "extra": {
  7162. "branch-alias": {
  7163. "dev-master": "1.4-dev"
  7164. }
  7165. },
  7166. "autoload": {
  7167. "psr-4": {
  7168. "Symfony\\Cmf\\Component\\Routing\\": ""
  7169. }
  7170. },
  7171. "notification-url": "https://packagist.org/downloads/",
  7172. "license": [
  7173. "MIT"
  7174. ],
  7175. "authors": [
  7176. {
  7177. "name": "Symfony CMF Community",
  7178. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7179. }
  7180. ],
  7181. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7182. "homepage": "http://cmf.symfony.com",
  7183. "keywords": [
  7184. "database",
  7185. "routing"
  7186. ],
  7187. "time": "2017-05-09T08:10:41+00:00"
  7188. },
  7189. {
  7190. "name": "symfony/class-loader",
  7191. "version": "v3.4.41",
  7192. "source": {
  7193. "type": "git",
  7194. "url": "https://github.com/symfony/class-loader.git",
  7195. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7196. },
  7197. "dist": {
  7198. "type": "zip",
  7199. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7200. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7201. "shasum": ""
  7202. },
  7203. "require": {
  7204. "php": "^5.5.9|>=7.0.8"
  7205. },
  7206. "require-dev": {
  7207. "symfony/finder": "~2.8|~3.0|~4.0",
  7208. "symfony/polyfill-apcu": "~1.1"
  7209. },
  7210. "suggest": {
  7211. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7212. },
  7213. "type": "library",
  7214. "extra": {
  7215. "branch-alias": {
  7216. "dev-master": "3.4-dev"
  7217. }
  7218. },
  7219. "autoload": {
  7220. "psr-4": {
  7221. "Symfony\\Component\\ClassLoader\\": ""
  7222. },
  7223. "exclude-from-classmap": [
  7224. "/Tests/"
  7225. ]
  7226. },
  7227. "notification-url": "https://packagist.org/downloads/",
  7228. "license": [
  7229. "MIT"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "Fabien Potencier",
  7234. "email": "fabien@symfony.com"
  7235. },
  7236. {
  7237. "name": "Symfony Community",
  7238. "homepage": "https://symfony.com/contributors"
  7239. }
  7240. ],
  7241. "description": "Symfony ClassLoader Component",
  7242. "homepage": "https://symfony.com",
  7243. "funding": [
  7244. {
  7245. "url": "https://symfony.com/sponsor",
  7246. "type": "custom"
  7247. },
  7248. {
  7249. "url": "https://github.com/fabpot",
  7250. "type": "github"
  7251. },
  7252. {
  7253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7254. "type": "tidelift"
  7255. }
  7256. ],
  7257. "time": "2020-03-15T09:38:08+00:00"
  7258. },
  7259. {
  7260. "name": "symfony/console",
  7261. "version": "v3.4.41",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/symfony/console.git",
  7265. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7270. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7271. "shasum": ""
  7272. },
  7273. "require": {
  7274. "php": "^5.5.9|>=7.0.8",
  7275. "symfony/debug": "~2.8|~3.0|~4.0",
  7276. "symfony/polyfill-mbstring": "~1.0"
  7277. },
  7278. "conflict": {
  7279. "symfony/dependency-injection": "<3.4",
  7280. "symfony/process": "<3.3"
  7281. },
  7282. "provide": {
  7283. "psr/log-implementation": "1.0"
  7284. },
  7285. "require-dev": {
  7286. "psr/log": "~1.0",
  7287. "symfony/config": "~3.3|~4.0",
  7288. "symfony/dependency-injection": "~3.4|~4.0",
  7289. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7290. "symfony/lock": "~3.4|~4.0",
  7291. "symfony/process": "~3.3|~4.0"
  7292. },
  7293. "suggest": {
  7294. "psr/log": "For using the console logger",
  7295. "symfony/event-dispatcher": "",
  7296. "symfony/lock": "",
  7297. "symfony/process": ""
  7298. },
  7299. "type": "library",
  7300. "extra": {
  7301. "branch-alias": {
  7302. "dev-master": "3.4-dev"
  7303. }
  7304. },
  7305. "autoload": {
  7306. "psr-4": {
  7307. "Symfony\\Component\\Console\\": ""
  7308. },
  7309. "exclude-from-classmap": [
  7310. "/Tests/"
  7311. ]
  7312. },
  7313. "notification-url": "https://packagist.org/downloads/",
  7314. "license": [
  7315. "MIT"
  7316. ],
  7317. "authors": [
  7318. {
  7319. "name": "Fabien Potencier",
  7320. "email": "fabien@symfony.com"
  7321. },
  7322. {
  7323. "name": "Symfony Community",
  7324. "homepage": "https://symfony.com/contributors"
  7325. }
  7326. ],
  7327. "description": "Symfony Console Component",
  7328. "homepage": "https://symfony.com",
  7329. "funding": [
  7330. {
  7331. "url": "https://symfony.com/sponsor",
  7332. "type": "custom"
  7333. },
  7334. {
  7335. "url": "https://github.com/fabpot",
  7336. "type": "github"
  7337. },
  7338. {
  7339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7340. "type": "tidelift"
  7341. }
  7342. ],
  7343. "time": "2020-05-30T18:58:05+00:00"
  7344. },
  7345. {
  7346. "name": "symfony/debug",
  7347. "version": "v3.4.41",
  7348. "source": {
  7349. "type": "git",
  7350. "url": "https://github.com/symfony/debug.git",
  7351. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7352. },
  7353. "dist": {
  7354. "type": "zip",
  7355. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7356. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7357. "shasum": ""
  7358. },
  7359. "require": {
  7360. "php": "^5.5.9|>=7.0.8",
  7361. "psr/log": "~1.0"
  7362. },
  7363. "conflict": {
  7364. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7365. },
  7366. "require-dev": {
  7367. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7368. },
  7369. "type": "library",
  7370. "extra": {
  7371. "branch-alias": {
  7372. "dev-master": "3.4-dev"
  7373. }
  7374. },
  7375. "autoload": {
  7376. "psr-4": {
  7377. "Symfony\\Component\\Debug\\": ""
  7378. },
  7379. "exclude-from-classmap": [
  7380. "/Tests/"
  7381. ]
  7382. },
  7383. "notification-url": "https://packagist.org/downloads/",
  7384. "license": [
  7385. "MIT"
  7386. ],
  7387. "authors": [
  7388. {
  7389. "name": "Fabien Potencier",
  7390. "email": "fabien@symfony.com"
  7391. },
  7392. {
  7393. "name": "Symfony Community",
  7394. "homepage": "https://symfony.com/contributors"
  7395. }
  7396. ],
  7397. "description": "Symfony Debug Component",
  7398. "homepage": "https://symfony.com",
  7399. "funding": [
  7400. {
  7401. "url": "https://symfony.com/sponsor",
  7402. "type": "custom"
  7403. },
  7404. {
  7405. "url": "https://github.com/fabpot",
  7406. "type": "github"
  7407. },
  7408. {
  7409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7410. "type": "tidelift"
  7411. }
  7412. ],
  7413. "time": "2020-05-22T18:25:20+00:00"
  7414. },
  7415. {
  7416. "name": "symfony/dependency-injection",
  7417. "version": "v3.4.41",
  7418. "source": {
  7419. "type": "git",
  7420. "url": "https://github.com/symfony/dependency-injection.git",
  7421. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7422. },
  7423. "dist": {
  7424. "type": "zip",
  7425. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7426. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7427. "shasum": ""
  7428. },
  7429. "require": {
  7430. "php": "^5.5.9|>=7.0.8",
  7431. "psr/container": "^1.0"
  7432. },
  7433. "conflict": {
  7434. "symfony/config": "<3.3.7",
  7435. "symfony/finder": "<3.3",
  7436. "symfony/proxy-manager-bridge": "<3.4",
  7437. "symfony/yaml": "<3.4"
  7438. },
  7439. "provide": {
  7440. "psr/container-implementation": "1.0"
  7441. },
  7442. "require-dev": {
  7443. "symfony/config": "~3.3|~4.0",
  7444. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7445. "symfony/yaml": "~3.4|~4.0"
  7446. },
  7447. "suggest": {
  7448. "symfony/config": "",
  7449. "symfony/expression-language": "For using expressions in service container configuration",
  7450. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7451. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7452. "symfony/yaml": ""
  7453. },
  7454. "type": "library",
  7455. "extra": {
  7456. "branch-alias": {
  7457. "dev-master": "3.4-dev"
  7458. }
  7459. },
  7460. "autoload": {
  7461. "psr-4": {
  7462. "Symfony\\Component\\DependencyInjection\\": ""
  7463. },
  7464. "exclude-from-classmap": [
  7465. "/Tests/"
  7466. ]
  7467. },
  7468. "notification-url": "https://packagist.org/downloads/",
  7469. "license": [
  7470. "MIT"
  7471. ],
  7472. "authors": [
  7473. {
  7474. "name": "Fabien Potencier",
  7475. "email": "fabien@symfony.com"
  7476. },
  7477. {
  7478. "name": "Symfony Community",
  7479. "homepage": "https://symfony.com/contributors"
  7480. }
  7481. ],
  7482. "description": "Symfony DependencyInjection Component",
  7483. "homepage": "https://symfony.com",
  7484. "funding": [
  7485. {
  7486. "url": "https://symfony.com/sponsor",
  7487. "type": "custom"
  7488. },
  7489. {
  7490. "url": "https://github.com/fabpot",
  7491. "type": "github"
  7492. },
  7493. {
  7494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7495. "type": "tidelift"
  7496. }
  7497. ],
  7498. "time": "2020-05-30T21:06:01+00:00"
  7499. },
  7500. {
  7501. "name": "symfony/event-dispatcher",
  7502. "version": "v3.4.41",
  7503. "source": {
  7504. "type": "git",
  7505. "url": "https://github.com/symfony/event-dispatcher.git",
  7506. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7507. },
  7508. "dist": {
  7509. "type": "zip",
  7510. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7511. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7512. "shasum": ""
  7513. },
  7514. "require": {
  7515. "php": "^5.5.9|>=7.0.8"
  7516. },
  7517. "conflict": {
  7518. "symfony/dependency-injection": "<3.3"
  7519. },
  7520. "require-dev": {
  7521. "psr/log": "~1.0",
  7522. "symfony/config": "~2.8|~3.0|~4.0",
  7523. "symfony/dependency-injection": "~3.3|~4.0",
  7524. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7525. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7526. },
  7527. "suggest": {
  7528. "symfony/dependency-injection": "",
  7529. "symfony/http-kernel": ""
  7530. },
  7531. "type": "library",
  7532. "extra": {
  7533. "branch-alias": {
  7534. "dev-master": "3.4-dev"
  7535. }
  7536. },
  7537. "autoload": {
  7538. "psr-4": {
  7539. "Symfony\\Component\\EventDispatcher\\": ""
  7540. },
  7541. "exclude-from-classmap": [
  7542. "/Tests/"
  7543. ]
  7544. },
  7545. "notification-url": "https://packagist.org/downloads/",
  7546. "license": [
  7547. "MIT"
  7548. ],
  7549. "authors": [
  7550. {
  7551. "name": "Fabien Potencier",
  7552. "email": "fabien@symfony.com"
  7553. },
  7554. {
  7555. "name": "Symfony Community",
  7556. "homepage": "https://symfony.com/contributors"
  7557. }
  7558. ],
  7559. "description": "Symfony EventDispatcher Component",
  7560. "homepage": "https://symfony.com",
  7561. "funding": [
  7562. {
  7563. "url": "https://symfony.com/sponsor",
  7564. "type": "custom"
  7565. },
  7566. {
  7567. "url": "https://github.com/fabpot",
  7568. "type": "github"
  7569. },
  7570. {
  7571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7572. "type": "tidelift"
  7573. }
  7574. ],
  7575. "time": "2020-05-05T15:06:23+00:00"
  7576. },
  7577. {
  7578. "name": "symfony/filesystem",
  7579. "version": "v4.4.10",
  7580. "source": {
  7581. "type": "git",
  7582. "url": "https://github.com/symfony/filesystem.git",
  7583. "reference": "b27f491309db5757816db672b256ea2e03677d30"
  7584. },
  7585. "dist": {
  7586. "type": "zip",
  7587. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30",
  7588. "reference": "b27f491309db5757816db672b256ea2e03677d30",
  7589. "shasum": ""
  7590. },
  7591. "require": {
  7592. "php": ">=7.1.3",
  7593. "symfony/polyfill-ctype": "~1.8"
  7594. },
  7595. "type": "library",
  7596. "extra": {
  7597. "branch-alias": {
  7598. "dev-master": "4.4-dev"
  7599. }
  7600. },
  7601. "autoload": {
  7602. "psr-4": {
  7603. "Symfony\\Component\\Filesystem\\": ""
  7604. },
  7605. "exclude-from-classmap": [
  7606. "/Tests/"
  7607. ]
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "MIT"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Fabien Potencier",
  7616. "email": "fabien@symfony.com"
  7617. },
  7618. {
  7619. "name": "Symfony Community",
  7620. "homepage": "https://symfony.com/contributors"
  7621. }
  7622. ],
  7623. "description": "Symfony Filesystem Component",
  7624. "homepage": "https://symfony.com",
  7625. "funding": [
  7626. {
  7627. "url": "https://symfony.com/sponsor",
  7628. "type": "custom"
  7629. },
  7630. {
  7631. "url": "https://github.com/fabpot",
  7632. "type": "github"
  7633. },
  7634. {
  7635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7636. "type": "tidelift"
  7637. }
  7638. ],
  7639. "time": "2020-05-30T18:50:54+00:00"
  7640. },
  7641. {
  7642. "name": "symfony/finder",
  7643. "version": "v4.4.10",
  7644. "source": {
  7645. "type": "git",
  7646. "url": "https://github.com/symfony/finder.git",
  7647. "reference": "5729f943f9854c5781984ed4907bbb817735776b"
  7648. },
  7649. "dist": {
  7650. "type": "zip",
  7651. "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
  7652. "reference": "5729f943f9854c5781984ed4907bbb817735776b",
  7653. "shasum": ""
  7654. },
  7655. "require": {
  7656. "php": "^7.1.3"
  7657. },
  7658. "type": "library",
  7659. "extra": {
  7660. "branch-alias": {
  7661. "dev-master": "4.4-dev"
  7662. }
  7663. },
  7664. "autoload": {
  7665. "psr-4": {
  7666. "Symfony\\Component\\Finder\\": ""
  7667. },
  7668. "exclude-from-classmap": [
  7669. "/Tests/"
  7670. ]
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "MIT"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "Fabien Potencier",
  7679. "email": "fabien@symfony.com"
  7680. },
  7681. {
  7682. "name": "Symfony Community",
  7683. "homepage": "https://symfony.com/contributors"
  7684. }
  7685. ],
  7686. "description": "Symfony Finder Component",
  7687. "homepage": "https://symfony.com",
  7688. "funding": [
  7689. {
  7690. "url": "https://symfony.com/sponsor",
  7691. "type": "custom"
  7692. },
  7693. {
  7694. "url": "https://github.com/fabpot",
  7695. "type": "github"
  7696. },
  7697. {
  7698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7699. "type": "tidelift"
  7700. }
  7701. ],
  7702. "time": "2020-03-27T16:54:36+00:00"
  7703. },
  7704. {
  7705. "name": "symfony/http-foundation",
  7706. "version": "v3.4.41",
  7707. "source": {
  7708. "type": "git",
  7709. "url": "https://github.com/symfony/http-foundation.git",
  7710. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  7711. },
  7712. "dist": {
  7713. "type": "zip",
  7714. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  7715. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  7716. "shasum": ""
  7717. },
  7718. "require": {
  7719. "php": "^5.5.9|>=7.0.8",
  7720. "symfony/polyfill-mbstring": "~1.1",
  7721. "symfony/polyfill-php70": "~1.6"
  7722. },
  7723. "require-dev": {
  7724. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7725. },
  7726. "type": "library",
  7727. "extra": {
  7728. "branch-alias": {
  7729. "dev-master": "3.4-dev"
  7730. }
  7731. },
  7732. "autoload": {
  7733. "psr-4": {
  7734. "Symfony\\Component\\HttpFoundation\\": ""
  7735. },
  7736. "exclude-from-classmap": [
  7737. "/Tests/"
  7738. ]
  7739. },
  7740. "notification-url": "https://packagist.org/downloads/",
  7741. "license": [
  7742. "MIT"
  7743. ],
  7744. "authors": [
  7745. {
  7746. "name": "Fabien Potencier",
  7747. "email": "fabien@symfony.com"
  7748. },
  7749. {
  7750. "name": "Symfony Community",
  7751. "homepage": "https://symfony.com/contributors"
  7752. }
  7753. ],
  7754. "description": "Symfony HttpFoundation Component",
  7755. "homepage": "https://symfony.com",
  7756. "funding": [
  7757. {
  7758. "url": "https://symfony.com/sponsor",
  7759. "type": "custom"
  7760. },
  7761. {
  7762. "url": "https://github.com/fabpot",
  7763. "type": "github"
  7764. },
  7765. {
  7766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7767. "type": "tidelift"
  7768. }
  7769. ],
  7770. "time": "2020-05-16T13:15:54+00:00"
  7771. },
  7772. {
  7773. "name": "symfony/http-kernel",
  7774. "version": "v3.4.41",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://github.com/symfony/http-kernel.git",
  7778. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  7783. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  7784. "shasum": ""
  7785. },
  7786. "require": {
  7787. "php": "^5.5.9|>=7.0.8",
  7788. "psr/log": "~1.0",
  7789. "symfony/debug": "^3.3.3|~4.0",
  7790. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7791. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  7792. "symfony/polyfill-ctype": "~1.8",
  7793. "symfony/polyfill-php56": "~1.8"
  7794. },
  7795. "conflict": {
  7796. "symfony/config": "<2.8",
  7797. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  7798. "symfony/var-dumper": "<3.3",
  7799. "twig/twig": "<1.34|<2.4,>=2"
  7800. },
  7801. "provide": {
  7802. "psr/log-implementation": "1.0"
  7803. },
  7804. "require-dev": {
  7805. "psr/cache": "~1.0",
  7806. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  7807. "symfony/class-loader": "~2.8|~3.0",
  7808. "symfony/config": "~2.8|~3.0|~4.0",
  7809. "symfony/console": "~2.8|~3.0|~4.0",
  7810. "symfony/css-selector": "~2.8|~3.0|~4.0",
  7811. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  7812. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  7813. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7814. "symfony/finder": "~2.8|~3.0|~4.0",
  7815. "symfony/process": "~2.8|~3.0|~4.0",
  7816. "symfony/routing": "~3.4|~4.0",
  7817. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  7818. "symfony/templating": "~2.8|~3.0|~4.0",
  7819. "symfony/translation": "~2.8|~3.0|~4.0",
  7820. "symfony/var-dumper": "~3.3|~4.0"
  7821. },
  7822. "suggest": {
  7823. "symfony/browser-kit": "",
  7824. "symfony/config": "",
  7825. "symfony/console": "",
  7826. "symfony/dependency-injection": "",
  7827. "symfony/finder": "",
  7828. "symfony/var-dumper": ""
  7829. },
  7830. "type": "library",
  7831. "extra": {
  7832. "branch-alias": {
  7833. "dev-master": "3.4-dev"
  7834. }
  7835. },
  7836. "autoload": {
  7837. "psr-4": {
  7838. "Symfony\\Component\\HttpKernel\\": ""
  7839. },
  7840. "exclude-from-classmap": [
  7841. "/Tests/"
  7842. ]
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "MIT"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Fabien Potencier",
  7851. "email": "fabien@symfony.com"
  7852. },
  7853. {
  7854. "name": "Symfony Community",
  7855. "homepage": "https://symfony.com/contributors"
  7856. }
  7857. ],
  7858. "description": "Symfony HttpKernel Component",
  7859. "homepage": "https://symfony.com",
  7860. "funding": [
  7861. {
  7862. "url": "https://symfony.com/sponsor",
  7863. "type": "custom"
  7864. },
  7865. {
  7866. "url": "https://github.com/fabpot",
  7867. "type": "github"
  7868. },
  7869. {
  7870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7871. "type": "tidelift"
  7872. }
  7873. ],
  7874. "time": "2020-05-31T05:14:17+00:00"
  7875. },
  7876. {
  7877. "name": "symfony/polyfill-ctype",
  7878. "version": "v1.17.0",
  7879. "source": {
  7880. "type": "git",
  7881. "url": "https://github.com/symfony/polyfill-ctype.git",
  7882. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  7883. },
  7884. "dist": {
  7885. "type": "zip",
  7886. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  7887. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  7888. "shasum": ""
  7889. },
  7890. "require": {
  7891. "php": ">=5.3.3"
  7892. },
  7893. "suggest": {
  7894. "ext-ctype": "For best performance"
  7895. },
  7896. "type": "library",
  7897. "extra": {
  7898. "branch-alias": {
  7899. "dev-master": "1.17-dev"
  7900. }
  7901. },
  7902. "autoload": {
  7903. "psr-4": {
  7904. "Symfony\\Polyfill\\Ctype\\": ""
  7905. },
  7906. "files": [
  7907. "bootstrap.php"
  7908. ]
  7909. },
  7910. "notification-url": "https://packagist.org/downloads/",
  7911. "license": [
  7912. "MIT"
  7913. ],
  7914. "authors": [
  7915. {
  7916. "name": "Gert de Pagter",
  7917. "email": "BackEndTea@gmail.com"
  7918. },
  7919. {
  7920. "name": "Symfony Community",
  7921. "homepage": "https://symfony.com/contributors"
  7922. }
  7923. ],
  7924. "description": "Symfony polyfill for ctype functions",
  7925. "homepage": "https://symfony.com",
  7926. "keywords": [
  7927. "compatibility",
  7928. "ctype",
  7929. "polyfill",
  7930. "portable"
  7931. ],
  7932. "funding": [
  7933. {
  7934. "url": "https://symfony.com/sponsor",
  7935. "type": "custom"
  7936. },
  7937. {
  7938. "url": "https://github.com/fabpot",
  7939. "type": "github"
  7940. },
  7941. {
  7942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7943. "type": "tidelift"
  7944. }
  7945. ],
  7946. "time": "2020-05-12T16:14:59+00:00"
  7947. },
  7948. {
  7949. "name": "symfony/polyfill-iconv",
  7950. "version": "v1.17.0",
  7951. "source": {
  7952. "type": "git",
  7953. "url": "https://github.com/symfony/polyfill-iconv.git",
  7954. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  7955. },
  7956. "dist": {
  7957. "type": "zip",
  7958. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  7959. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  7960. "shasum": ""
  7961. },
  7962. "require": {
  7963. "php": ">=5.3.3"
  7964. },
  7965. "suggest": {
  7966. "ext-iconv": "For best performance"
  7967. },
  7968. "type": "library",
  7969. "extra": {
  7970. "branch-alias": {
  7971. "dev-master": "1.17-dev"
  7972. }
  7973. },
  7974. "autoload": {
  7975. "psr-4": {
  7976. "Symfony\\Polyfill\\Iconv\\": ""
  7977. },
  7978. "files": [
  7979. "bootstrap.php"
  7980. ]
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "MIT"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Nicolas Grekas",
  7989. "email": "p@tchwork.com"
  7990. },
  7991. {
  7992. "name": "Symfony Community",
  7993. "homepage": "https://symfony.com/contributors"
  7994. }
  7995. ],
  7996. "description": "Symfony polyfill for the Iconv extension",
  7997. "homepage": "https://symfony.com",
  7998. "keywords": [
  7999. "compatibility",
  8000. "iconv",
  8001. "polyfill",
  8002. "portable",
  8003. "shim"
  8004. ],
  8005. "funding": [
  8006. {
  8007. "url": "https://symfony.com/sponsor",
  8008. "type": "custom"
  8009. },
  8010. {
  8011. "url": "https://github.com/fabpot",
  8012. "type": "github"
  8013. },
  8014. {
  8015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8016. "type": "tidelift"
  8017. }
  8018. ],
  8019. "time": "2020-05-12T16:47:27+00:00"
  8020. },
  8021. {
  8022. "name": "symfony/polyfill-intl-idn",
  8023. "version": "v1.17.0",
  8024. "source": {
  8025. "type": "git",
  8026. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8027. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8028. },
  8029. "dist": {
  8030. "type": "zip",
  8031. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8032. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8033. "shasum": ""
  8034. },
  8035. "require": {
  8036. "php": ">=5.3.3",
  8037. "symfony/polyfill-mbstring": "^1.3",
  8038. "symfony/polyfill-php72": "^1.10"
  8039. },
  8040. "suggest": {
  8041. "ext-intl": "For best performance"
  8042. },
  8043. "type": "library",
  8044. "extra": {
  8045. "branch-alias": {
  8046. "dev-master": "1.17-dev"
  8047. }
  8048. },
  8049. "autoload": {
  8050. "psr-4": {
  8051. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8052. },
  8053. "files": [
  8054. "bootstrap.php"
  8055. ]
  8056. },
  8057. "notification-url": "https://packagist.org/downloads/",
  8058. "license": [
  8059. "MIT"
  8060. ],
  8061. "authors": [
  8062. {
  8063. "name": "Laurent Bassin",
  8064. "email": "laurent@bassin.info"
  8065. },
  8066. {
  8067. "name": "Symfony Community",
  8068. "homepage": "https://symfony.com/contributors"
  8069. }
  8070. ],
  8071. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8072. "homepage": "https://symfony.com",
  8073. "keywords": [
  8074. "compatibility",
  8075. "idn",
  8076. "intl",
  8077. "polyfill",
  8078. "portable",
  8079. "shim"
  8080. ],
  8081. "funding": [
  8082. {
  8083. "url": "https://symfony.com/sponsor",
  8084. "type": "custom"
  8085. },
  8086. {
  8087. "url": "https://github.com/fabpot",
  8088. "type": "github"
  8089. },
  8090. {
  8091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8092. "type": "tidelift"
  8093. }
  8094. ],
  8095. "time": "2020-05-12T16:47:27+00:00"
  8096. },
  8097. {
  8098. "name": "symfony/polyfill-mbstring",
  8099. "version": "v1.17.0",
  8100. "source": {
  8101. "type": "git",
  8102. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8103. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8104. },
  8105. "dist": {
  8106. "type": "zip",
  8107. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8108. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8109. "shasum": ""
  8110. },
  8111. "require": {
  8112. "php": ">=5.3.3"
  8113. },
  8114. "suggest": {
  8115. "ext-mbstring": "For best performance"
  8116. },
  8117. "type": "library",
  8118. "extra": {
  8119. "branch-alias": {
  8120. "dev-master": "1.17-dev"
  8121. }
  8122. },
  8123. "autoload": {
  8124. "psr-4": {
  8125. "Symfony\\Polyfill\\Mbstring\\": ""
  8126. },
  8127. "files": [
  8128. "bootstrap.php"
  8129. ]
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "MIT"
  8134. ],
  8135. "authors": [
  8136. {
  8137. "name": "Nicolas Grekas",
  8138. "email": "p@tchwork.com"
  8139. },
  8140. {
  8141. "name": "Symfony Community",
  8142. "homepage": "https://symfony.com/contributors"
  8143. }
  8144. ],
  8145. "description": "Symfony polyfill for the Mbstring extension",
  8146. "homepage": "https://symfony.com",
  8147. "keywords": [
  8148. "compatibility",
  8149. "mbstring",
  8150. "polyfill",
  8151. "portable",
  8152. "shim"
  8153. ],
  8154. "funding": [
  8155. {
  8156. "url": "https://symfony.com/sponsor",
  8157. "type": "custom"
  8158. },
  8159. {
  8160. "url": "https://github.com/fabpot",
  8161. "type": "github"
  8162. },
  8163. {
  8164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8165. "type": "tidelift"
  8166. }
  8167. ],
  8168. "time": "2020-05-12T16:47:27+00:00"
  8169. },
  8170. {
  8171. "name": "symfony/polyfill-php56",
  8172. "version": "v1.17.0",
  8173. "source": {
  8174. "type": "git",
  8175. "url": "https://github.com/symfony/polyfill-php56.git",
  8176. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8177. },
  8178. "dist": {
  8179. "type": "zip",
  8180. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8181. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8182. "shasum": ""
  8183. },
  8184. "require": {
  8185. "php": ">=5.3.3",
  8186. "symfony/polyfill-util": "~1.0"
  8187. },
  8188. "type": "library",
  8189. "extra": {
  8190. "branch-alias": {
  8191. "dev-master": "1.17-dev"
  8192. }
  8193. },
  8194. "autoload": {
  8195. "psr-4": {
  8196. "Symfony\\Polyfill\\Php56\\": ""
  8197. },
  8198. "files": [
  8199. "bootstrap.php"
  8200. ]
  8201. },
  8202. "notification-url": "https://packagist.org/downloads/",
  8203. "license": [
  8204. "MIT"
  8205. ],
  8206. "authors": [
  8207. {
  8208. "name": "Nicolas Grekas",
  8209. "email": "p@tchwork.com"
  8210. },
  8211. {
  8212. "name": "Symfony Community",
  8213. "homepage": "https://symfony.com/contributors"
  8214. }
  8215. ],
  8216. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8217. "homepage": "https://symfony.com",
  8218. "keywords": [
  8219. "compatibility",
  8220. "polyfill",
  8221. "portable",
  8222. "shim"
  8223. ],
  8224. "funding": [
  8225. {
  8226. "url": "https://symfony.com/sponsor",
  8227. "type": "custom"
  8228. },
  8229. {
  8230. "url": "https://github.com/fabpot",
  8231. "type": "github"
  8232. },
  8233. {
  8234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8235. "type": "tidelift"
  8236. }
  8237. ],
  8238. "time": "2020-05-12T16:47:27+00:00"
  8239. },
  8240. {
  8241. "name": "symfony/polyfill-php70",
  8242. "version": "v1.17.0",
  8243. "source": {
  8244. "type": "git",
  8245. "url": "https://github.com/symfony/polyfill-php70.git",
  8246. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8247. },
  8248. "dist": {
  8249. "type": "zip",
  8250. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8251. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8252. "shasum": ""
  8253. },
  8254. "require": {
  8255. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8256. "php": ">=5.3.3"
  8257. },
  8258. "type": "library",
  8259. "extra": {
  8260. "branch-alias": {
  8261. "dev-master": "1.17-dev"
  8262. }
  8263. },
  8264. "autoload": {
  8265. "psr-4": {
  8266. "Symfony\\Polyfill\\Php70\\": ""
  8267. },
  8268. "files": [
  8269. "bootstrap.php"
  8270. ],
  8271. "classmap": [
  8272. "Resources/stubs"
  8273. ]
  8274. },
  8275. "notification-url": "https://packagist.org/downloads/",
  8276. "license": [
  8277. "MIT"
  8278. ],
  8279. "authors": [
  8280. {
  8281. "name": "Nicolas Grekas",
  8282. "email": "p@tchwork.com"
  8283. },
  8284. {
  8285. "name": "Symfony Community",
  8286. "homepage": "https://symfony.com/contributors"
  8287. }
  8288. ],
  8289. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8290. "homepage": "https://symfony.com",
  8291. "keywords": [
  8292. "compatibility",
  8293. "polyfill",
  8294. "portable",
  8295. "shim"
  8296. ],
  8297. "funding": [
  8298. {
  8299. "url": "https://symfony.com/sponsor",
  8300. "type": "custom"
  8301. },
  8302. {
  8303. "url": "https://github.com/fabpot",
  8304. "type": "github"
  8305. },
  8306. {
  8307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8308. "type": "tidelift"
  8309. }
  8310. ],
  8311. "time": "2020-05-12T16:47:27+00:00"
  8312. },
  8313. {
  8314. "name": "symfony/polyfill-php72",
  8315. "version": "v1.17.0",
  8316. "source": {
  8317. "type": "git",
  8318. "url": "https://github.com/symfony/polyfill-php72.git",
  8319. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8320. },
  8321. "dist": {
  8322. "type": "zip",
  8323. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8324. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8325. "shasum": ""
  8326. },
  8327. "require": {
  8328. "php": ">=5.3.3"
  8329. },
  8330. "type": "library",
  8331. "extra": {
  8332. "branch-alias": {
  8333. "dev-master": "1.17-dev"
  8334. }
  8335. },
  8336. "autoload": {
  8337. "psr-4": {
  8338. "Symfony\\Polyfill\\Php72\\": ""
  8339. },
  8340. "files": [
  8341. "bootstrap.php"
  8342. ]
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "MIT"
  8347. ],
  8348. "authors": [
  8349. {
  8350. "name": "Nicolas Grekas",
  8351. "email": "p@tchwork.com"
  8352. },
  8353. {
  8354. "name": "Symfony Community",
  8355. "homepage": "https://symfony.com/contributors"
  8356. }
  8357. ],
  8358. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8359. "homepage": "https://symfony.com",
  8360. "keywords": [
  8361. "compatibility",
  8362. "polyfill",
  8363. "portable",
  8364. "shim"
  8365. ],
  8366. "funding": [
  8367. {
  8368. "url": "https://symfony.com/sponsor",
  8369. "type": "custom"
  8370. },
  8371. {
  8372. "url": "https://github.com/fabpot",
  8373. "type": "github"
  8374. },
  8375. {
  8376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8377. "type": "tidelift"
  8378. }
  8379. ],
  8380. "time": "2020-05-12T16:47:27+00:00"
  8381. },
  8382. {
  8383. "name": "symfony/polyfill-php80",
  8384. "version": "v1.17.1",
  8385. "source": {
  8386. "type": "git",
  8387. "url": "https://github.com/symfony/polyfill-php80.git",
  8388. "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2"
  8389. },
  8390. "dist": {
  8391. "type": "zip",
  8392. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2",
  8393. "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2",
  8394. "shasum": ""
  8395. },
  8396. "require": {
  8397. "php": ">=7.0.8"
  8398. },
  8399. "type": "library",
  8400. "extra": {
  8401. "branch-alias": {
  8402. "dev-master": "1.17-dev"
  8403. },
  8404. "thanks": {
  8405. "name": "symfony/polyfill",
  8406. "url": "https://github.com/symfony/polyfill"
  8407. }
  8408. },
  8409. "autoload": {
  8410. "psr-4": {
  8411. "Symfony\\Polyfill\\Php80\\": ""
  8412. },
  8413. "files": [
  8414. "bootstrap.php"
  8415. ],
  8416. "classmap": [
  8417. "Resources/stubs"
  8418. ]
  8419. },
  8420. "notification-url": "https://packagist.org/downloads/",
  8421. "license": [
  8422. "MIT"
  8423. ],
  8424. "authors": [
  8425. {
  8426. "name": "Ion Bazan",
  8427. "email": "ion.bazan@gmail.com"
  8428. },
  8429. {
  8430. "name": "Nicolas Grekas",
  8431. "email": "p@tchwork.com"
  8432. },
  8433. {
  8434. "name": "Symfony Community",
  8435. "homepage": "https://symfony.com/contributors"
  8436. }
  8437. ],
  8438. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8439. "homepage": "https://symfony.com",
  8440. "keywords": [
  8441. "compatibility",
  8442. "polyfill",
  8443. "portable",
  8444. "shim"
  8445. ],
  8446. "funding": [
  8447. {
  8448. "url": "https://symfony.com/sponsor",
  8449. "type": "custom"
  8450. },
  8451. {
  8452. "url": "https://github.com/fabpot",
  8453. "type": "github"
  8454. },
  8455. {
  8456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8457. "type": "tidelift"
  8458. }
  8459. ],
  8460. "time": "2020-06-06T08:46:27+00:00"
  8461. },
  8462. {
  8463. "name": "symfony/polyfill-util",
  8464. "version": "v1.17.0",
  8465. "source": {
  8466. "type": "git",
  8467. "url": "https://github.com/symfony/polyfill-util.git",
  8468. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8469. },
  8470. "dist": {
  8471. "type": "zip",
  8472. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8473. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8474. "shasum": ""
  8475. },
  8476. "require": {
  8477. "php": ">=5.3.3"
  8478. },
  8479. "type": "library",
  8480. "extra": {
  8481. "branch-alias": {
  8482. "dev-master": "1.17-dev"
  8483. }
  8484. },
  8485. "autoload": {
  8486. "psr-4": {
  8487. "Symfony\\Polyfill\\Util\\": ""
  8488. }
  8489. },
  8490. "notification-url": "https://packagist.org/downloads/",
  8491. "license": [
  8492. "MIT"
  8493. ],
  8494. "authors": [
  8495. {
  8496. "name": "Nicolas Grekas",
  8497. "email": "p@tchwork.com"
  8498. },
  8499. {
  8500. "name": "Symfony Community",
  8501. "homepage": "https://symfony.com/contributors"
  8502. }
  8503. ],
  8504. "description": "Symfony utilities for portability of PHP codes",
  8505. "homepage": "https://symfony.com",
  8506. "keywords": [
  8507. "compat",
  8508. "compatibility",
  8509. "polyfill",
  8510. "shim"
  8511. ],
  8512. "funding": [
  8513. {
  8514. "url": "https://symfony.com/sponsor",
  8515. "type": "custom"
  8516. },
  8517. {
  8518. "url": "https://github.com/fabpot",
  8519. "type": "github"
  8520. },
  8521. {
  8522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8523. "type": "tidelift"
  8524. }
  8525. ],
  8526. "time": "2020-05-12T16:14:59+00:00"
  8527. },
  8528. {
  8529. "name": "symfony/process",
  8530. "version": "v3.4.41",
  8531. "source": {
  8532. "type": "git",
  8533. "url": "https://github.com/symfony/process.git",
  8534. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  8535. },
  8536. "dist": {
  8537. "type": "zip",
  8538. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8539. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8540. "shasum": ""
  8541. },
  8542. "require": {
  8543. "php": "^5.5.9|>=7.0.8"
  8544. },
  8545. "type": "library",
  8546. "extra": {
  8547. "branch-alias": {
  8548. "dev-master": "3.4-dev"
  8549. }
  8550. },
  8551. "autoload": {
  8552. "psr-4": {
  8553. "Symfony\\Component\\Process\\": ""
  8554. },
  8555. "exclude-from-classmap": [
  8556. "/Tests/"
  8557. ]
  8558. },
  8559. "notification-url": "https://packagist.org/downloads/",
  8560. "license": [
  8561. "MIT"
  8562. ],
  8563. "authors": [
  8564. {
  8565. "name": "Fabien Potencier",
  8566. "email": "fabien@symfony.com"
  8567. },
  8568. {
  8569. "name": "Symfony Community",
  8570. "homepage": "https://symfony.com/contributors"
  8571. }
  8572. ],
  8573. "description": "Symfony Process Component",
  8574. "homepage": "https://symfony.com",
  8575. "funding": [
  8576. {
  8577. "url": "https://symfony.com/sponsor",
  8578. "type": "custom"
  8579. },
  8580. {
  8581. "url": "https://github.com/fabpot",
  8582. "type": "github"
  8583. },
  8584. {
  8585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8586. "type": "tidelift"
  8587. }
  8588. ],
  8589. "time": "2020-05-23T17:05:51+00:00"
  8590. },
  8591. {
  8592. "name": "symfony/psr-http-message-bridge",
  8593. "version": "v1.1.2",
  8594. "source": {
  8595. "type": "git",
  8596. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8597. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8598. },
  8599. "dist": {
  8600. "type": "zip",
  8601. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8602. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8603. "shasum": ""
  8604. },
  8605. "require": {
  8606. "php": "^5.3.3 || ^7.0",
  8607. "psr/http-message": "^1.0",
  8608. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8609. },
  8610. "require-dev": {
  8611. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8612. },
  8613. "suggest": {
  8614. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8615. },
  8616. "type": "symfony-bridge",
  8617. "extra": {
  8618. "branch-alias": {
  8619. "dev-master": "1.1-dev"
  8620. }
  8621. },
  8622. "autoload": {
  8623. "psr-4": {
  8624. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8625. },
  8626. "exclude-from-classmap": [
  8627. "/Tests/"
  8628. ]
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "MIT"
  8633. ],
  8634. "authors": [
  8635. {
  8636. "name": "Symfony Community",
  8637. "homepage": "http://symfony.com/contributors"
  8638. },
  8639. {
  8640. "name": "Fabien Potencier",
  8641. "email": "fabien@symfony.com"
  8642. }
  8643. ],
  8644. "description": "PSR HTTP message bridge",
  8645. "homepage": "http://symfony.com",
  8646. "keywords": [
  8647. "http",
  8648. "http-message",
  8649. "psr-17",
  8650. "psr-7"
  8651. ],
  8652. "time": "2019-04-03T17:09:40+00:00"
  8653. },
  8654. {
  8655. "name": "symfony/routing",
  8656. "version": "v3.4.41",
  8657. "source": {
  8658. "type": "git",
  8659. "url": "https://github.com/symfony/routing.git",
  8660. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  8661. },
  8662. "dist": {
  8663. "type": "zip",
  8664. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8665. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8666. "shasum": ""
  8667. },
  8668. "require": {
  8669. "php": "^5.5.9|>=7.0.8"
  8670. },
  8671. "conflict": {
  8672. "symfony/config": "<3.3.1",
  8673. "symfony/dependency-injection": "<3.3",
  8674. "symfony/yaml": "<3.4"
  8675. },
  8676. "require-dev": {
  8677. "doctrine/annotations": "~1.0",
  8678. "psr/log": "~1.0",
  8679. "symfony/config": "^3.3.1|~4.0",
  8680. "symfony/dependency-injection": "~3.3|~4.0",
  8681. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8682. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8683. "symfony/yaml": "~3.4|~4.0"
  8684. },
  8685. "suggest": {
  8686. "doctrine/annotations": "For using the annotation loader",
  8687. "symfony/config": "For using the all-in-one router or any loader",
  8688. "symfony/expression-language": "For using expression matching",
  8689. "symfony/http-foundation": "For using a Symfony Request object",
  8690. "symfony/yaml": "For using the YAML loader"
  8691. },
  8692. "type": "library",
  8693. "extra": {
  8694. "branch-alias": {
  8695. "dev-master": "3.4-dev"
  8696. }
  8697. },
  8698. "autoload": {
  8699. "psr-4": {
  8700. "Symfony\\Component\\Routing\\": ""
  8701. },
  8702. "exclude-from-classmap": [
  8703. "/Tests/"
  8704. ]
  8705. },
  8706. "notification-url": "https://packagist.org/downloads/",
  8707. "license": [
  8708. "MIT"
  8709. ],
  8710. "authors": [
  8711. {
  8712. "name": "Fabien Potencier",
  8713. "email": "fabien@symfony.com"
  8714. },
  8715. {
  8716. "name": "Symfony Community",
  8717. "homepage": "https://symfony.com/contributors"
  8718. }
  8719. ],
  8720. "description": "Symfony Routing Component",
  8721. "homepage": "https://symfony.com",
  8722. "keywords": [
  8723. "router",
  8724. "routing",
  8725. "uri",
  8726. "url"
  8727. ],
  8728. "funding": [
  8729. {
  8730. "url": "https://symfony.com/sponsor",
  8731. "type": "custom"
  8732. },
  8733. {
  8734. "url": "https://github.com/fabpot",
  8735. "type": "github"
  8736. },
  8737. {
  8738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8739. "type": "tidelift"
  8740. }
  8741. ],
  8742. "time": "2020-05-30T19:50:06+00:00"
  8743. },
  8744. {
  8745. "name": "symfony/serializer",
  8746. "version": "v3.4.41",
  8747. "source": {
  8748. "type": "git",
  8749. "url": "https://github.com/symfony/serializer.git",
  8750. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  8751. },
  8752. "dist": {
  8753. "type": "zip",
  8754. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  8755. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  8756. "shasum": ""
  8757. },
  8758. "require": {
  8759. "php": "^5.5.9|>=7.0.8",
  8760. "symfony/polyfill-ctype": "~1.8"
  8761. },
  8762. "conflict": {
  8763. "phpdocumentor/type-resolver": "<0.2.1",
  8764. "symfony/dependency-injection": "<3.2",
  8765. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8766. "symfony/property-info": "<3.1",
  8767. "symfony/yaml": "<3.4"
  8768. },
  8769. "require-dev": {
  8770. "doctrine/annotations": "~1.0",
  8771. "doctrine/cache": "~1.0",
  8772. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8773. "symfony/cache": "~3.1|~4.0",
  8774. "symfony/config": "~2.8|~3.0|~4.0",
  8775. "symfony/dependency-injection": "~3.2|~4.0",
  8776. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8777. "symfony/property-access": "~2.8|~3.0|~4.0",
  8778. "symfony/property-info": "^3.4.13|~4.0",
  8779. "symfony/yaml": "~3.4|~4.0"
  8780. },
  8781. "suggest": {
  8782. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8783. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8784. "psr/cache-implementation": "For using the metadata cache.",
  8785. "symfony/config": "For using the XML mapping loader.",
  8786. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  8787. "symfony/property-access": "For using the ObjectNormalizer.",
  8788. "symfony/property-info": "To deserialize relations.",
  8789. "symfony/yaml": "For using the default YAML mapping loader."
  8790. },
  8791. "type": "library",
  8792. "extra": {
  8793. "branch-alias": {
  8794. "dev-master": "3.4-dev"
  8795. }
  8796. },
  8797. "autoload": {
  8798. "psr-4": {
  8799. "Symfony\\Component\\Serializer\\": ""
  8800. },
  8801. "exclude-from-classmap": [
  8802. "/Tests/"
  8803. ]
  8804. },
  8805. "notification-url": "https://packagist.org/downloads/",
  8806. "license": [
  8807. "MIT"
  8808. ],
  8809. "authors": [
  8810. {
  8811. "name": "Fabien Potencier",
  8812. "email": "fabien@symfony.com"
  8813. },
  8814. {
  8815. "name": "Symfony Community",
  8816. "homepage": "https://symfony.com/contributors"
  8817. }
  8818. ],
  8819. "description": "Symfony Serializer Component",
  8820. "homepage": "https://symfony.com",
  8821. "funding": [
  8822. {
  8823. "url": "https://symfony.com/sponsor",
  8824. "type": "custom"
  8825. },
  8826. {
  8827. "url": "https://github.com/fabpot",
  8828. "type": "github"
  8829. },
  8830. {
  8831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8832. "type": "tidelift"
  8833. }
  8834. ],
  8835. "time": "2020-05-30T18:58:05+00:00"
  8836. },
  8837. {
  8838. "name": "symfony/translation",
  8839. "version": "v3.4.41",
  8840. "source": {
  8841. "type": "git",
  8842. "url": "https://github.com/symfony/translation.git",
  8843. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  8844. },
  8845. "dist": {
  8846. "type": "zip",
  8847. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  8848. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  8849. "shasum": ""
  8850. },
  8851. "require": {
  8852. "php": "^5.5.9|>=7.0.8",
  8853. "symfony/polyfill-mbstring": "~1.0"
  8854. },
  8855. "conflict": {
  8856. "symfony/config": "<2.8",
  8857. "symfony/dependency-injection": "<3.4",
  8858. "symfony/yaml": "<3.4"
  8859. },
  8860. "require-dev": {
  8861. "psr/log": "~1.0",
  8862. "symfony/config": "~2.8|~3.0|~4.0",
  8863. "symfony/dependency-injection": "~3.4|~4.0",
  8864. "symfony/finder": "~2.8|~3.0|~4.0",
  8865. "symfony/http-kernel": "~3.4|~4.0",
  8866. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8867. "symfony/var-dumper": "~3.4|~4.0",
  8868. "symfony/yaml": "~3.4|~4.0"
  8869. },
  8870. "suggest": {
  8871. "psr/log-implementation": "To use logging capability in translator",
  8872. "symfony/config": "",
  8873. "symfony/yaml": ""
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "branch-alias": {
  8878. "dev-master": "3.4-dev"
  8879. }
  8880. },
  8881. "autoload": {
  8882. "psr-4": {
  8883. "Symfony\\Component\\Translation\\": ""
  8884. },
  8885. "exclude-from-classmap": [
  8886. "/Tests/"
  8887. ]
  8888. },
  8889. "notification-url": "https://packagist.org/downloads/",
  8890. "license": [
  8891. "MIT"
  8892. ],
  8893. "authors": [
  8894. {
  8895. "name": "Fabien Potencier",
  8896. "email": "fabien@symfony.com"
  8897. },
  8898. {
  8899. "name": "Symfony Community",
  8900. "homepage": "https://symfony.com/contributors"
  8901. }
  8902. ],
  8903. "description": "Symfony Translation Component",
  8904. "homepage": "https://symfony.com",
  8905. "funding": [
  8906. {
  8907. "url": "https://symfony.com/sponsor",
  8908. "type": "custom"
  8909. },
  8910. {
  8911. "url": "https://github.com/fabpot",
  8912. "type": "github"
  8913. },
  8914. {
  8915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8916. "type": "tidelift"
  8917. }
  8918. ],
  8919. "time": "2020-05-30T18:58:05+00:00"
  8920. },
  8921. {
  8922. "name": "symfony/validator",
  8923. "version": "v3.4.41",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/symfony/validator.git",
  8927. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  8932. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  8933. "shasum": ""
  8934. },
  8935. "require": {
  8936. "php": "^5.5.9|>=7.0.8",
  8937. "symfony/polyfill-ctype": "~1.8",
  8938. "symfony/polyfill-mbstring": "~1.0",
  8939. "symfony/translation": "~2.8|~3.0|~4.0"
  8940. },
  8941. "conflict": {
  8942. "doctrine/lexer": "<1.0.2",
  8943. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8944. "symfony/dependency-injection": "<3.3",
  8945. "symfony/http-kernel": "<3.3.5",
  8946. "symfony/yaml": "<3.4"
  8947. },
  8948. "require-dev": {
  8949. "doctrine/annotations": "~1.7",
  8950. "doctrine/cache": "~1.0",
  8951. "egulias/email-validator": "^2.1.10",
  8952. "symfony/cache": "~3.1|~4.0",
  8953. "symfony/config": "~2.8|~3.0|~4.0",
  8954. "symfony/dependency-injection": "~3.3|~4.0",
  8955. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8956. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8957. "symfony/http-kernel": "^3.3.5|~4.0",
  8958. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8959. "symfony/property-access": "~2.8|~3.0|~4.0",
  8960. "symfony/var-dumper": "~3.3|~4.0",
  8961. "symfony/yaml": "~3.4|~4.0"
  8962. },
  8963. "suggest": {
  8964. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8965. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8966. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8967. "psr/cache-implementation": "For using the metadata cache.",
  8968. "symfony/config": "",
  8969. "symfony/expression-language": "For using the Expression validator",
  8970. "symfony/http-foundation": "",
  8971. "symfony/intl": "",
  8972. "symfony/property-access": "For accessing properties within comparison constraints",
  8973. "symfony/yaml": ""
  8974. },
  8975. "type": "library",
  8976. "extra": {
  8977. "branch-alias": {
  8978. "dev-master": "3.4-dev"
  8979. }
  8980. },
  8981. "autoload": {
  8982. "psr-4": {
  8983. "Symfony\\Component\\Validator\\": ""
  8984. },
  8985. "exclude-from-classmap": [
  8986. "/Tests/"
  8987. ]
  8988. },
  8989. "notification-url": "https://packagist.org/downloads/",
  8990. "license": [
  8991. "MIT"
  8992. ],
  8993. "authors": [
  8994. {
  8995. "name": "Fabien Potencier",
  8996. "email": "fabien@symfony.com"
  8997. },
  8998. {
  8999. "name": "Symfony Community",
  9000. "homepage": "https://symfony.com/contributors"
  9001. }
  9002. ],
  9003. "description": "Symfony Validator Component",
  9004. "homepage": "https://symfony.com",
  9005. "funding": [
  9006. {
  9007. "url": "https://symfony.com/sponsor",
  9008. "type": "custom"
  9009. },
  9010. {
  9011. "url": "https://github.com/fabpot",
  9012. "type": "github"
  9013. },
  9014. {
  9015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9016. "type": "tidelift"
  9017. }
  9018. ],
  9019. "time": "2020-05-30T18:43:38+00:00"
  9020. },
  9021. {
  9022. "name": "symfony/var-dumper",
  9023. "version": "v4.4.10",
  9024. "source": {
  9025. "type": "git",
  9026. "url": "https://github.com/symfony/var-dumper.git",
  9027. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac"
  9028. },
  9029. "dist": {
  9030. "type": "zip",
  9031. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  9032. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  9033. "shasum": ""
  9034. },
  9035. "require": {
  9036. "php": ">=7.1.3",
  9037. "symfony/polyfill-mbstring": "~1.0",
  9038. "symfony/polyfill-php72": "~1.5",
  9039. "symfony/polyfill-php80": "^1.15"
  9040. },
  9041. "conflict": {
  9042. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9043. "symfony/console": "<3.4"
  9044. },
  9045. "require-dev": {
  9046. "ext-iconv": "*",
  9047. "symfony/console": "^3.4|^4.0|^5.0",
  9048. "symfony/process": "^4.4|^5.0",
  9049. "twig/twig": "^1.34|^2.4|^3.0"
  9050. },
  9051. "suggest": {
  9052. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9053. "ext-intl": "To show region name in time zone dump",
  9054. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9055. },
  9056. "bin": [
  9057. "Resources/bin/var-dump-server"
  9058. ],
  9059. "type": "library",
  9060. "extra": {
  9061. "branch-alias": {
  9062. "dev-master": "4.4-dev"
  9063. }
  9064. },
  9065. "autoload": {
  9066. "files": [
  9067. "Resources/functions/dump.php"
  9068. ],
  9069. "psr-4": {
  9070. "Symfony\\Component\\VarDumper\\": ""
  9071. },
  9072. "exclude-from-classmap": [
  9073. "/Tests/"
  9074. ]
  9075. },
  9076. "notification-url": "https://packagist.org/downloads/",
  9077. "license": [
  9078. "MIT"
  9079. ],
  9080. "authors": [
  9081. {
  9082. "name": "Nicolas Grekas",
  9083. "email": "p@tchwork.com"
  9084. },
  9085. {
  9086. "name": "Symfony Community",
  9087. "homepage": "https://symfony.com/contributors"
  9088. }
  9089. ],
  9090. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9091. "homepage": "https://symfony.com",
  9092. "keywords": [
  9093. "debug",
  9094. "dump"
  9095. ],
  9096. "funding": [
  9097. {
  9098. "url": "https://symfony.com/sponsor",
  9099. "type": "custom"
  9100. },
  9101. {
  9102. "url": "https://github.com/fabpot",
  9103. "type": "github"
  9104. },
  9105. {
  9106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9107. "type": "tidelift"
  9108. }
  9109. ],
  9110. "time": "2020-05-30T20:06:45+00:00"
  9111. },
  9112. {
  9113. "name": "symfony/yaml",
  9114. "version": "v3.4.41",
  9115. "source": {
  9116. "type": "git",
  9117. "url": "https://github.com/symfony/yaml.git",
  9118. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9119. },
  9120. "dist": {
  9121. "type": "zip",
  9122. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9123. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9124. "shasum": ""
  9125. },
  9126. "require": {
  9127. "php": "^5.5.9|>=7.0.8",
  9128. "symfony/polyfill-ctype": "~1.8"
  9129. },
  9130. "conflict": {
  9131. "symfony/console": "<3.4"
  9132. },
  9133. "require-dev": {
  9134. "symfony/console": "~3.4|~4.0"
  9135. },
  9136. "suggest": {
  9137. "symfony/console": "For validating YAML files using the lint command"
  9138. },
  9139. "type": "library",
  9140. "extra": {
  9141. "branch-alias": {
  9142. "dev-master": "3.4-dev"
  9143. }
  9144. },
  9145. "autoload": {
  9146. "psr-4": {
  9147. "Symfony\\Component\\Yaml\\": ""
  9148. },
  9149. "exclude-from-classmap": [
  9150. "/Tests/"
  9151. ]
  9152. },
  9153. "notification-url": "https://packagist.org/downloads/",
  9154. "license": [
  9155. "MIT"
  9156. ],
  9157. "authors": [
  9158. {
  9159. "name": "Fabien Potencier",
  9160. "email": "fabien@symfony.com"
  9161. },
  9162. {
  9163. "name": "Symfony Community",
  9164. "homepage": "https://symfony.com/contributors"
  9165. }
  9166. ],
  9167. "description": "Symfony Yaml Component",
  9168. "homepage": "https://symfony.com",
  9169. "funding": [
  9170. {
  9171. "url": "https://symfony.com/sponsor",
  9172. "type": "custom"
  9173. },
  9174. {
  9175. "url": "https://github.com/fabpot",
  9176. "type": "github"
  9177. },
  9178. {
  9179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9180. "type": "tidelift"
  9181. }
  9182. ],
  9183. "time": "2020-05-11T07:51:54+00:00"
  9184. },
  9185. {
  9186. "name": "twbs/bootstrap",
  9187. "version": "v4.5.0",
  9188. "source": {
  9189. "type": "git",
  9190. "url": "https://github.com/twbs/bootstrap.git",
  9191. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  9192. },
  9193. "dist": {
  9194. "type": "zip",
  9195. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9196. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9197. "shasum": ""
  9198. },
  9199. "replace": {
  9200. "twitter/bootstrap": "self.version"
  9201. },
  9202. "type": "library",
  9203. "extra": {
  9204. "branch-alias": {
  9205. "dev-master": "3.3.x-dev"
  9206. }
  9207. },
  9208. "notification-url": "https://packagist.org/downloads/",
  9209. "license": [
  9210. "MIT"
  9211. ],
  9212. "authors": [
  9213. {
  9214. "name": "Mark Otto",
  9215. "email": "markdotto@gmail.com"
  9216. },
  9217. {
  9218. "name": "Jacob Thornton",
  9219. "email": "jacobthornton@gmail.com"
  9220. }
  9221. ],
  9222. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  9223. "homepage": "https://getbootstrap.com/",
  9224. "keywords": [
  9225. "JS",
  9226. "css",
  9227. "framework",
  9228. "front-end",
  9229. "mobile-first",
  9230. "responsive",
  9231. "sass",
  9232. "web"
  9233. ],
  9234. "funding": [
  9235. {
  9236. "url": "https://opencollective.com/bootstrap",
  9237. "type": "open_collective"
  9238. }
  9239. ],
  9240. "time": "2020-05-12T17:44:42+00:00"
  9241. },
  9242. {
  9243. "name": "twig/twig",
  9244. "version": "v1.42.5",
  9245. "source": {
  9246. "type": "git",
  9247. "url": "https://github.com/twigphp/Twig.git",
  9248. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9249. },
  9250. "dist": {
  9251. "type": "zip",
  9252. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9253. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9254. "shasum": ""
  9255. },
  9256. "require": {
  9257. "php": ">=5.5.0",
  9258. "symfony/polyfill-ctype": "^1.8"
  9259. },
  9260. "require-dev": {
  9261. "psr/container": "^1.0",
  9262. "symfony/phpunit-bridge": "^4.4|^5.0"
  9263. },
  9264. "type": "library",
  9265. "extra": {
  9266. "branch-alias": {
  9267. "dev-master": "1.42-dev"
  9268. }
  9269. },
  9270. "autoload": {
  9271. "psr-0": {
  9272. "Twig_": "lib/"
  9273. },
  9274. "psr-4": {
  9275. "Twig\\": "src/"
  9276. }
  9277. },
  9278. "notification-url": "https://packagist.org/downloads/",
  9279. "license": [
  9280. "BSD-3-Clause"
  9281. ],
  9282. "authors": [
  9283. {
  9284. "name": "Fabien Potencier",
  9285. "email": "fabien@symfony.com",
  9286. "homepage": "http://fabien.potencier.org",
  9287. "role": "Lead Developer"
  9288. },
  9289. {
  9290. "name": "Twig Team",
  9291. "role": "Contributors"
  9292. },
  9293. {
  9294. "name": "Armin Ronacher",
  9295. "email": "armin.ronacher@active-4.com",
  9296. "role": "Project Founder"
  9297. }
  9298. ],
  9299. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9300. "homepage": "https://twig.symfony.com",
  9301. "keywords": [
  9302. "templating"
  9303. ],
  9304. "time": "2020-02-11T05:59:23+00:00"
  9305. },
  9306. {
  9307. "name": "typo3/phar-stream-wrapper",
  9308. "version": "v3.1.4",
  9309. "source": {
  9310. "type": "git",
  9311. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9312. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9313. },
  9314. "dist": {
  9315. "type": "zip",
  9316. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9317. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9318. "shasum": ""
  9319. },
  9320. "require": {
  9321. "ext-json": "*",
  9322. "php": "^7.0"
  9323. },
  9324. "require-dev": {
  9325. "ext-xdebug": "*",
  9326. "phpunit/phpunit": "^6.5"
  9327. },
  9328. "suggest": {
  9329. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9330. },
  9331. "type": "library",
  9332. "extra": {
  9333. "branch-alias": {
  9334. "dev-master": "v3.x-dev"
  9335. }
  9336. },
  9337. "autoload": {
  9338. "psr-4": {
  9339. "TYPO3\\PharStreamWrapper\\": "src/"
  9340. }
  9341. },
  9342. "notification-url": "https://packagist.org/downloads/",
  9343. "license": [
  9344. "MIT"
  9345. ],
  9346. "description": "Interceptors for PHP's native phar:// stream handling",
  9347. "homepage": "https://typo3.org/",
  9348. "keywords": [
  9349. "phar",
  9350. "php",
  9351. "security",
  9352. "stream-wrapper"
  9353. ],
  9354. "time": "2019-12-10T11:53:27+00:00"
  9355. },
  9356. {
  9357. "name": "webflo/drupal-finder",
  9358. "version": "1.2.0",
  9359. "source": {
  9360. "type": "git",
  9361. "url": "https://github.com/webflo/drupal-finder.git",
  9362. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9363. },
  9364. "dist": {
  9365. "type": "zip",
  9366. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9367. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9368. "shasum": ""
  9369. },
  9370. "require": {
  9371. "ext-json": "*"
  9372. },
  9373. "require-dev": {
  9374. "mikey179/vfsstream": "^1.6",
  9375. "phpunit/phpunit": "^4.8"
  9376. },
  9377. "type": "library",
  9378. "autoload": {
  9379. "classmap": [
  9380. "src/DrupalFinder.php"
  9381. ]
  9382. },
  9383. "notification-url": "https://packagist.org/downloads/",
  9384. "license": [
  9385. "GPL-2.0+"
  9386. ],
  9387. "authors": [
  9388. {
  9389. "name": "Florian Weber",
  9390. "email": "florian@webflo.org"
  9391. }
  9392. ],
  9393. "description": "Helper class to locate a Drupal installation from a given path.",
  9394. "time": "2019-08-02T08:06:18+00:00"
  9395. },
  9396. {
  9397. "name": "webmozart/assert",
  9398. "version": "1.9.1",
  9399. "source": {
  9400. "type": "git",
  9401. "url": "https://github.com/webmozart/assert.git",
  9402. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  9403. },
  9404. "dist": {
  9405. "type": "zip",
  9406. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9407. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9408. "shasum": ""
  9409. },
  9410. "require": {
  9411. "php": "^5.3.3 || ^7.0 || ^8.0",
  9412. "symfony/polyfill-ctype": "^1.8"
  9413. },
  9414. "conflict": {
  9415. "phpstan/phpstan": "<0.12.20",
  9416. "vimeo/psalm": "<3.9.1"
  9417. },
  9418. "require-dev": {
  9419. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  9420. },
  9421. "type": "library",
  9422. "autoload": {
  9423. "psr-4": {
  9424. "Webmozart\\Assert\\": "src/"
  9425. }
  9426. },
  9427. "notification-url": "https://packagist.org/downloads/",
  9428. "license": [
  9429. "MIT"
  9430. ],
  9431. "authors": [
  9432. {
  9433. "name": "Bernhard Schussek",
  9434. "email": "bschussek@gmail.com"
  9435. }
  9436. ],
  9437. "description": "Assertions to validate method input/output with nice error messages.",
  9438. "keywords": [
  9439. "assert",
  9440. "check",
  9441. "validate"
  9442. ],
  9443. "time": "2020-07-08T17:02:28+00:00"
  9444. },
  9445. {
  9446. "name": "webmozart/path-util",
  9447. "version": "2.3.0",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/webmozart/path-util.git",
  9451. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9456. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "php": ">=5.3.3",
  9461. "webmozart/assert": "~1.0"
  9462. },
  9463. "require-dev": {
  9464. "phpunit/phpunit": "^4.6",
  9465. "sebastian/version": "^1.0.1"
  9466. },
  9467. "type": "library",
  9468. "extra": {
  9469. "branch-alias": {
  9470. "dev-master": "2.3-dev"
  9471. }
  9472. },
  9473. "autoload": {
  9474. "psr-4": {
  9475. "Webmozart\\PathUtil\\": "src/"
  9476. }
  9477. },
  9478. "notification-url": "https://packagist.org/downloads/",
  9479. "license": [
  9480. "MIT"
  9481. ],
  9482. "authors": [
  9483. {
  9484. "name": "Bernhard Schussek",
  9485. "email": "bschussek@gmail.com"
  9486. }
  9487. ],
  9488. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9489. "time": "2015-12-17T08:42:14+00:00"
  9490. },
  9491. {
  9492. "name": "willdurand/geocoder",
  9493. "version": "4.3.0",
  9494. "source": {
  9495. "type": "git",
  9496. "url": "https://github.com/geocoder-php/php-common.git",
  9497. "reference": "199d6a853947a5051e7ff14d35849759009bad5d"
  9498. },
  9499. "dist": {
  9500. "type": "zip",
  9501. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/199d6a853947a5051e7ff14d35849759009bad5d",
  9502. "reference": "199d6a853947a5051e7ff14d35849759009bad5d",
  9503. "shasum": ""
  9504. },
  9505. "require": {
  9506. "php": "^7.2"
  9507. },
  9508. "require-dev": {
  9509. "nyholm/nsa": "^1.1",
  9510. "phpunit/phpunit": "^7.5",
  9511. "symfony/stopwatch": "~2.5"
  9512. },
  9513. "suggest": {
  9514. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  9515. },
  9516. "type": "library",
  9517. "extra": {
  9518. "branch-alias": {
  9519. "dev-master": "4.1-dev"
  9520. }
  9521. },
  9522. "autoload": {
  9523. "psr-4": {
  9524. "Geocoder\\": ""
  9525. },
  9526. "exclude-from-classmap": [
  9527. "/Tests/"
  9528. ]
  9529. },
  9530. "notification-url": "https://packagist.org/downloads/",
  9531. "license": [
  9532. "MIT"
  9533. ],
  9534. "authors": [
  9535. {
  9536. "name": "William Durand",
  9537. "email": "william.durand1@gmail.com"
  9538. }
  9539. ],
  9540. "description": "Common files for PHP Geocoder",
  9541. "homepage": "http://geocoder-php.org",
  9542. "keywords": [
  9543. "abstraction",
  9544. "geocoder",
  9545. "geocoding",
  9546. "geoip"
  9547. ],
  9548. "time": "2020-07-04T13:18:10+00:00"
  9549. }
  9550. ],
  9551. "packages-dev": [],
  9552. "aliases": [],
  9553. "minimum-stability": "dev",
  9554. "stability-flags": [],
  9555. "prefer-stable": true,
  9556. "prefer-lowest": false,
  9557. "platform": [],
  9558. "platform-dev": [],
  9559. "plugin-api-version": "1.1.0"
  9560. }