composer.lock 454 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487
  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": "84be5126d592c2bf32a2150ab282983d",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.3.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  84. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2019-12-24T22:41:47+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.33.1",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  136. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "^3.4 || ^4.0",
  143. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  144. "twig/twig": "^1.41 || ^2.12"
  145. },
  146. "conflict": {
  147. "drush/drush": "< 10.3.2"
  148. },
  149. "bin": [
  150. "bin/dcg"
  151. ],
  152. "type": "library",
  153. "extra": {
  154. "branch-alias": {
  155. "dev-master": "1.x-dev"
  156. }
  157. },
  158. "autoload": {
  159. "files": [
  160. "src/bootstrap.php"
  161. ],
  162. "psr-4": {
  163. "DrupalCodeGenerator\\": "src"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "GPL-2.0-or-later"
  169. ],
  170. "description": "Drupal code generator",
  171. "time": "2020-12-05T05:59:11+00:00"
  172. },
  173. {
  174. "name": "commerceguys/addressing",
  175. "version": "v1.1.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/commerceguys/addressing.git",
  179. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2450ca97631042faf786855db206a2e48fb7dbb7",
  184. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "doctrine/collections": "~1.0",
  189. "php": ">=7.0.8"
  190. },
  191. "require-dev": {
  192. "mikey179/vfsstream": "1.*",
  193. "phpunit/phpunit": "^6.0",
  194. "squizlabs/php_codesniffer": "2.*",
  195. "symfony/validator": "^3.4"
  196. },
  197. "suggest": {
  198. "symfony/validator": "to validate addresses"
  199. },
  200. "type": "library",
  201. "extra": {
  202. "branch-alias": {
  203. "dev-master": "1.x-dev"
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "CommerceGuys\\Addressing\\": "src"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Bojan Zivanovic"
  218. },
  219. {
  220. "name": "Damien Tournoud"
  221. }
  222. ],
  223. "description": "Addressing library powered by CLDR and Google's address data.",
  224. "keywords": [
  225. "address",
  226. "internationalization",
  227. "localization",
  228. "postal"
  229. ],
  230. "time": "2020-11-29T18:48:07+00:00"
  231. },
  232. {
  233. "name": "components/highlightjs",
  234. "version": "9.7.0",
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  238. },
  239. "type": "drupal-library"
  240. },
  241. {
  242. "name": "composer/installers",
  243. "version": "v1.9.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/composer/installers.git",
  247. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  252. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "composer-plugin-api": "^1.0 || ^2.0"
  257. },
  258. "replace": {
  259. "roundcube/plugin-installer": "*",
  260. "shama/baton": "*"
  261. },
  262. "require-dev": {
  263. "composer/composer": "1.6.* || 2.0.*@dev",
  264. "composer/semver": "1.0.* || 2.0.*@dev",
  265. "phpunit/phpunit": "^4.8.36",
  266. "sebastian/comparator": "^1.2.4",
  267. "symfony/process": "^2.3"
  268. },
  269. "type": "composer-plugin",
  270. "extra": {
  271. "class": "Composer\\Installers\\Plugin",
  272. "branch-alias": {
  273. "dev-master": "1.0-dev"
  274. }
  275. },
  276. "autoload": {
  277. "psr-4": {
  278. "Composer\\Installers\\": "src/Composer/Installers"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Kyle Robinson Young",
  288. "email": "kyle@dontkry.com",
  289. "homepage": "https://github.com/shama"
  290. }
  291. ],
  292. "description": "A multi-framework Composer library installer",
  293. "homepage": "https://composer.github.io/installers/",
  294. "keywords": [
  295. "Craft",
  296. "Dolibarr",
  297. "Eliasis",
  298. "Hurad",
  299. "ImageCMS",
  300. "Kanboard",
  301. "Lan Management System",
  302. "MODX Evo",
  303. "MantisBT",
  304. "Mautic",
  305. "Maya",
  306. "OXID",
  307. "Plentymarkets",
  308. "Porto",
  309. "RadPHP",
  310. "SMF",
  311. "Thelia",
  312. "Whmcs",
  313. "WolfCMS",
  314. "agl",
  315. "aimeos",
  316. "annotatecms",
  317. "attogram",
  318. "bitrix",
  319. "cakephp",
  320. "chef",
  321. "cockpit",
  322. "codeigniter",
  323. "concrete5",
  324. "croogo",
  325. "dokuwiki",
  326. "drupal",
  327. "eZ Platform",
  328. "elgg",
  329. "expressionengine",
  330. "fuelphp",
  331. "grav",
  332. "installer",
  333. "itop",
  334. "joomla",
  335. "known",
  336. "kohana",
  337. "laravel",
  338. "lavalite",
  339. "lithium",
  340. "magento",
  341. "majima",
  342. "mako",
  343. "mediawiki",
  344. "modulework",
  345. "modx",
  346. "moodle",
  347. "osclass",
  348. "phpbb",
  349. "piwik",
  350. "ppi",
  351. "puppet",
  352. "pxcms",
  353. "reindex",
  354. "roundcube",
  355. "shopware",
  356. "silverstripe",
  357. "sydes",
  358. "sylius",
  359. "symfony",
  360. "typo3",
  361. "wordpress",
  362. "yawik",
  363. "zend",
  364. "zikula"
  365. ],
  366. "funding": [
  367. {
  368. "url": "https://packagist.com",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  373. "type": "tidelift"
  374. }
  375. ],
  376. "time": "2020-04-07T06:57:05+00:00"
  377. },
  378. {
  379. "name": "composer/semver",
  380. "version": "3.2.2",
  381. "source": {
  382. "type": "git",
  383. "url": "https://github.com/composer/semver.git",
  384. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  385. },
  386. "dist": {
  387. "type": "zip",
  388. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  389. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  390. "shasum": ""
  391. },
  392. "require": {
  393. "php": "^5.3.2 || ^7.0 || ^8.0"
  394. },
  395. "require-dev": {
  396. "phpstan/phpstan": "^0.12.19",
  397. "symfony/phpunit-bridge": "^4.2 || ^5"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "branch-alias": {
  402. "dev-main": "3.x-dev"
  403. }
  404. },
  405. "autoload": {
  406. "psr-4": {
  407. "Composer\\Semver\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Nils Adermann",
  417. "email": "naderman@naderman.de",
  418. "homepage": "http://www.naderman.de"
  419. },
  420. {
  421. "name": "Jordi Boggiano",
  422. "email": "j.boggiano@seld.be",
  423. "homepage": "http://seld.be"
  424. },
  425. {
  426. "name": "Rob Bast",
  427. "email": "rob.bast@gmail.com",
  428. "homepage": "http://robbast.nl"
  429. }
  430. ],
  431. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  432. "keywords": [
  433. "semantic",
  434. "semver",
  435. "validation",
  436. "versioning"
  437. ],
  438. "funding": [
  439. {
  440. "url": "https://packagist.com",
  441. "type": "custom"
  442. },
  443. {
  444. "url": "https://github.com/composer",
  445. "type": "github"
  446. },
  447. {
  448. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  449. "type": "tidelift"
  450. }
  451. ],
  452. "time": "2020-10-14T08:51:15+00:00"
  453. },
  454. {
  455. "name": "consolidation/annotated-command",
  456. "version": "4.2.4",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/consolidation/annotated-command.git",
  460. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  465. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "consolidation/output-formatters": "^4.1.1",
  470. "php": ">=7.1.3",
  471. "psr/log": "^1|^2",
  472. "symfony/console": "^4.4.8|~5.1.0",
  473. "symfony/event-dispatcher": "^4.4.8|^5",
  474. "symfony/finder": "^4.4.8|^5"
  475. },
  476. "require-dev": {
  477. "phpunit/phpunit": ">=7.5.20",
  478. "squizlabs/php_codesniffer": "^3",
  479. "yoast/phpunit-polyfills": "^0.2.0"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-main": "4.x-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Consolidation\\AnnotatedCommand\\": "src"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Greg Anderson",
  499. "email": "greg.1.anderson@greenknowe.org"
  500. }
  501. ],
  502. "description": "Initialize Symfony Console commands from annotated command class methods.",
  503. "time": "2020-12-10T16:56:39+00:00"
  504. },
  505. {
  506. "name": "consolidation/config",
  507. "version": "1.2.1",
  508. "source": {
  509. "type": "git",
  510. "url": "https://github.com/consolidation/config.git",
  511. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  512. },
  513. "dist": {
  514. "type": "zip",
  515. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  516. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  517. "shasum": ""
  518. },
  519. "require": {
  520. "dflydev/dot-access-data": "^1.1.0",
  521. "grasmash/expander": "^1",
  522. "php": ">=5.4.0"
  523. },
  524. "require-dev": {
  525. "g1a/composer-test-scenarios": "^3",
  526. "php-coveralls/php-coveralls": "^1",
  527. "phpunit/phpunit": "^5",
  528. "squizlabs/php_codesniffer": "2.*",
  529. "symfony/console": "^2.5|^3|^4",
  530. "symfony/yaml": "^2.8.11|^3|^4"
  531. },
  532. "suggest": {
  533. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  534. },
  535. "type": "library",
  536. "extra": {
  537. "scenarios": {
  538. "symfony4": {
  539. "require-dev": {
  540. "symfony/console": "^4.0"
  541. },
  542. "config": {
  543. "platform": {
  544. "php": "7.1.3"
  545. }
  546. }
  547. },
  548. "symfony2": {
  549. "require-dev": {
  550. "symfony/console": "^2.8",
  551. "symfony/event-dispatcher": "^2.8",
  552. "phpunit/phpunit": "^4.8.36"
  553. },
  554. "remove": [
  555. "php-coveralls/php-coveralls"
  556. ],
  557. "config": {
  558. "platform": {
  559. "php": "5.4.8"
  560. }
  561. }
  562. }
  563. },
  564. "branch-alias": {
  565. "dev-master": "1.x-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Consolidation\\Config\\": "src"
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Greg Anderson",
  580. "email": "greg.1.anderson@greenknowe.org"
  581. }
  582. ],
  583. "description": "Provide configuration services for a commandline tool.",
  584. "time": "2019-03-03T19:37:04+00:00"
  585. },
  586. {
  587. "name": "consolidation/filter-via-dot-access-data",
  588. "version": "1.0.0",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  592. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  597. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "dflydev/dot-access-data": "^1.1.0",
  602. "php": ">=5.5.0"
  603. },
  604. "require-dev": {
  605. "consolidation/robo": "^1.2.3",
  606. "g1a/composer-test-scenarios": "^3",
  607. "knplabs/github-api": "^2.7",
  608. "php-coveralls/php-coveralls": "^1",
  609. "php-http/guzzle6-adapter": "^1.1",
  610. "phpunit/phpunit": "^5",
  611. "squizlabs/php_codesniffer": "^2.8",
  612. "symfony/console": "^2.8|^3|^4"
  613. },
  614. "type": "library",
  615. "extra": {
  616. "scenarios": {
  617. "phpunit5": {
  618. "require-dev": {
  619. "phpunit/phpunit": "^5.7.27"
  620. },
  621. "remove": [
  622. "php-coveralls/php-coveralls"
  623. ],
  624. "config": {
  625. "platform": {
  626. "php": "5.6.33"
  627. }
  628. }
  629. }
  630. },
  631. "branch-alias": {
  632. "dev-master": "1.x-dev"
  633. }
  634. },
  635. "autoload": {
  636. "psr-4": {
  637. "Consolidation\\Filter\\": "src"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "MIT"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Greg Anderson",
  647. "email": "greg.1.anderson@greenknowe.org"
  648. }
  649. ],
  650. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  651. "time": "2019-01-18T06:05:07+00:00"
  652. },
  653. {
  654. "name": "consolidation/log",
  655. "version": "2.0.2",
  656. "source": {
  657. "type": "git",
  658. "url": "https://github.com/consolidation/log.git",
  659. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  660. },
  661. "dist": {
  662. "type": "zip",
  663. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  664. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  665. "shasum": ""
  666. },
  667. "require": {
  668. "php": ">=7.1.3",
  669. "psr/log": "^1.0",
  670. "symfony/console": "^4|^5"
  671. },
  672. "require-dev": {
  673. "phpunit/phpunit": ">=7.5.20",
  674. "squizlabs/php_codesniffer": "^3",
  675. "yoast/phpunit-polyfills": "^0.2.0"
  676. },
  677. "type": "library",
  678. "extra": {
  679. "branch-alias": {
  680. "dev-main": "2.x-dev"
  681. }
  682. },
  683. "autoload": {
  684. "psr-4": {
  685. "Consolidation\\Log\\": "src"
  686. }
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "MIT"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Greg Anderson",
  695. "email": "greg.1.anderson@greenknowe.org"
  696. }
  697. ],
  698. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  699. "time": "2020-12-10T16:26:23+00:00"
  700. },
  701. {
  702. "name": "consolidation/output-formatters",
  703. "version": "4.1.2",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/consolidation/output-formatters.git",
  707. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  712. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  713. "shasum": ""
  714. },
  715. "require": {
  716. "dflydev/dot-access-data": "^1.1.0",
  717. "php": ">=7.1.3",
  718. "symfony/console": "^4|^5",
  719. "symfony/finder": "^4|^5"
  720. },
  721. "require-dev": {
  722. "php-coveralls/php-coveralls": "^2.4.2",
  723. "phpunit/phpunit": ">=7",
  724. "squizlabs/php_codesniffer": "^3",
  725. "symfony/var-dumper": "^4",
  726. "symfony/yaml": "^4",
  727. "yoast/phpunit-polyfills": "^0.2.0"
  728. },
  729. "suggest": {
  730. "symfony/var-dumper": "For using the var_dump formatter"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-main": "4.x-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "Consolidation\\OutputFormatters\\": "src"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Greg Anderson",
  750. "email": "greg.1.anderson@greenknowe.org"
  751. }
  752. ],
  753. "description": "Format text by applying transformations provided by plug-in formatters.",
  754. "time": "2020-12-12T19:04:59+00:00"
  755. },
  756. {
  757. "name": "consolidation/robo",
  758. "version": "2.2.1",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/consolidation/Robo.git",
  762. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/consolidation/Robo/zipball/1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  767. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "consolidation/annotated-command": "^4.2.1",
  772. "consolidation/config": "^1.2.1|^2",
  773. "consolidation/log": "^1.1.1|^2.0.1",
  774. "consolidation/output-formatters": "^4.1.1",
  775. "consolidation/self-update": "^1.2",
  776. "league/container": "^2.4.1",
  777. "php": ">=7.1.3",
  778. "symfony/console": "^4.4.11|^5",
  779. "symfony/event-dispatcher": "^4.4.11|^5",
  780. "symfony/filesystem": "^4.4.11|^5",
  781. "symfony/finder": "^4.4.11|^5",
  782. "symfony/process": "^4.4.11|^5"
  783. },
  784. "conflict": {
  785. "codegyre/robo": "*"
  786. },
  787. "require-dev": {
  788. "g1a/composer-test-scenarios": "^3",
  789. "natxet/cssmin": "3.0.4",
  790. "patchwork/jsqueeze": "^2",
  791. "pear/archive_tar": "^1.4.4",
  792. "php-coveralls/php-coveralls": "^2.2",
  793. "phpdocumentor/reflection-docblock": "^4.3.2",
  794. "phpunit/phpunit": "^6.5.14",
  795. "squizlabs/php_codesniffer": "^3"
  796. },
  797. "suggest": {
  798. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  799. "natxet/cssmin": "For minifying CSS files in taskMinify",
  800. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  801. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  802. },
  803. "bin": [
  804. "robo"
  805. ],
  806. "type": "library",
  807. "extra": {
  808. "scenarios": {
  809. "symfony4": {
  810. "require": {
  811. "symfony/console": "^4.4.11",
  812. "symfony/event-dispatcher": "^4.4.11",
  813. "symfony/filesystem": "^4.4.11",
  814. "symfony/finder": "^4.4.11",
  815. "symfony/process": "^4.4.11",
  816. "phpunit/phpunit": "^6",
  817. "nikic/php-parser": "^2"
  818. },
  819. "remove": [
  820. "codeception/phpunit-wrapper"
  821. ],
  822. "config": {
  823. "platform": {
  824. "php": "7.1.3"
  825. }
  826. }
  827. }
  828. },
  829. "branch-alias": {
  830. "dev-master": "2.x-dev",
  831. "dev-main": "2.x-dev"
  832. }
  833. },
  834. "autoload": {
  835. "psr-4": {
  836. "Robo\\": "src"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Davert",
  846. "email": "davert.php@resend.cc"
  847. }
  848. ],
  849. "description": "Modern task runner",
  850. "time": "2020-09-08T16:23:18+00:00"
  851. },
  852. {
  853. "name": "consolidation/self-update",
  854. "version": "1.2.0",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/consolidation/self-update.git",
  858. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  863. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "php": ">=5.5.0",
  868. "symfony/console": "^2.8|^3|^4|^5",
  869. "symfony/filesystem": "^2.5|^3|^4|^5"
  870. },
  871. "bin": [
  872. "scripts/release"
  873. ],
  874. "type": "library",
  875. "extra": {
  876. "branch-alias": {
  877. "dev-master": "1.x-dev"
  878. }
  879. },
  880. "autoload": {
  881. "psr-4": {
  882. "SelfUpdate\\": "src"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Alexander Menk",
  892. "email": "menk@mestrona.net"
  893. },
  894. {
  895. "name": "Greg Anderson",
  896. "email": "greg.1.anderson@greenknowe.org"
  897. }
  898. ],
  899. "description": "Provides a self:update command for Symfony Console applications.",
  900. "time": "2020-04-13T02:49:20+00:00"
  901. },
  902. {
  903. "name": "consolidation/site-alias",
  904. "version": "3.0.1",
  905. "source": {
  906. "type": "git",
  907. "url": "https://github.com/consolidation/site-alias.git",
  908. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  909. },
  910. "dist": {
  911. "type": "zip",
  912. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  913. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  914. "shasum": ""
  915. },
  916. "require": {
  917. "consolidation/config": "^1.2.1|^2",
  918. "php": ">=5.5.0"
  919. },
  920. "require-dev": {
  921. "consolidation/robo": "^1.2.3|^2",
  922. "g1a/composer-test-scenarios": "^3",
  923. "knplabs/github-api": "^2.7",
  924. "php-coveralls/php-coveralls": "^2.2",
  925. "php-http/guzzle6-adapter": "^1.1",
  926. "phpunit/phpunit": "^6",
  927. "squizlabs/php_codesniffer": "^2.8",
  928. "symfony/yaml": "~2.3|^3|^4.4|^5"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "scenarios": {
  933. "phpunit5": {
  934. "require-dev": {
  935. "phpunit/phpunit": "^5.7.27"
  936. },
  937. "remove": [
  938. "php-coveralls/php-coveralls"
  939. ],
  940. "config": {
  941. "platform": {
  942. "php": "5.6.33"
  943. }
  944. }
  945. }
  946. },
  947. "branch-alias": {
  948. "dev-master": "3.x-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Consolidation\\SiteAlias\\": "src"
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Greg Anderson",
  963. "email": "greg.1.anderson@greenknowe.org"
  964. },
  965. {
  966. "name": "Moshe Weitzman",
  967. "email": "weitzman@tejasa.com"
  968. }
  969. ],
  970. "description": "Manage alias records for local and remote sites.",
  971. "time": "2020-05-28T00:33:41+00:00"
  972. },
  973. {
  974. "name": "consolidation/site-process",
  975. "version": "4.0.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/consolidation/site-process.git",
  979. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  984. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "consolidation/config": "^1.2.1|^2",
  989. "consolidation/site-alias": "^3",
  990. "php": ">=7.1.3",
  991. "symfony/process": "^4.3.4"
  992. },
  993. "require-dev": {
  994. "consolidation/robo": "^1.4.10|^2",
  995. "g1a/composer-test-scenarios": "^3.0.4",
  996. "knplabs/github-api": "^2.7",
  997. "php-coveralls/php-coveralls": "^2.2",
  998. "php-http/guzzle6-adapter": "^1.1",
  999. "phpunit/phpunit": "^6.5.14",
  1000. "squizlabs/php_codesniffer": "^2.9.2"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "scenarios": {
  1005. "symfony4": {
  1006. "require": {
  1007. "symfony/console": "^4.4.8",
  1008. "symfony/event-dispatcher": "^4.4.8",
  1009. "symfony/filesystem": "^4.4.8",
  1010. "symfony/finder": "^4.4.8"
  1011. },
  1012. "config": {
  1013. "platform": {
  1014. "php": "7.1.3"
  1015. }
  1016. }
  1017. }
  1018. },
  1019. "branch-alias": {
  1020. "dev-master": "4.x-dev"
  1021. }
  1022. },
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Consolidation\\SiteProcess\\": "src"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Greg Anderson",
  1035. "email": "greg.1.anderson@greenknowe.org"
  1036. },
  1037. {
  1038. "name": "Moshe Weitzman",
  1039. "email": "weitzman@tejasa.com"
  1040. }
  1041. ],
  1042. "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.",
  1043. "time": "2020-05-28T00:05:34+00:00"
  1044. },
  1045. {
  1046. "name": "container-interop/container-interop",
  1047. "version": "1.2.0",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/container-interop/container-interop.git",
  1051. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1056. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "psr/container": "^1.0"
  1061. },
  1062. "type": "library",
  1063. "autoload": {
  1064. "psr-4": {
  1065. "Interop\\Container\\": "src/Interop/Container/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1073. "homepage": "https://github.com/container-interop/container-interop",
  1074. "abandoned": "psr/container",
  1075. "time": "2017-02-14T19:40:03+00:00"
  1076. },
  1077. {
  1078. "name": "cweagans/composer-patches",
  1079. "version": "1.7.0",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/cweagans/composer-patches.git",
  1083. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1088. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "composer-plugin-api": "^1.0 || ^2.0",
  1093. "php": ">=5.3.0"
  1094. },
  1095. "require-dev": {
  1096. "composer/composer": "~1.0 || ~2.0",
  1097. "phpunit/phpunit": "~4.6"
  1098. },
  1099. "type": "composer-plugin",
  1100. "extra": {
  1101. "class": "cweagans\\Composer\\Patches"
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "cweagans\\Composer\\": "src"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "BSD-3-Clause"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Cameron Eagans",
  1115. "email": "me@cweagans.net"
  1116. }
  1117. ],
  1118. "description": "Provides a way to patch Composer packages.",
  1119. "time": "2020-09-30T17:56:20+00:00"
  1120. },
  1121. {
  1122. "name": "d3/d3",
  1123. "version": "v3.5.17",
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1127. },
  1128. "type": "drupal-library"
  1129. },
  1130. {
  1131. "name": "dflydev/dot-access-configuration",
  1132. "version": "v1.0.3",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1136. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1141. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1142. "shasum": ""
  1143. },
  1144. "require": {
  1145. "dflydev/dot-access-data": "1.*",
  1146. "dflydev/placeholder-resolver": "1.*",
  1147. "php": ">=5.3.2"
  1148. },
  1149. "require-dev": {
  1150. "symfony/yaml": "~2.1"
  1151. },
  1152. "suggest": {
  1153. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "1.0-dev"
  1159. }
  1160. },
  1161. "autoload": {
  1162. "psr-0": {
  1163. "Dflydev\\DotAccessConfiguration": "src"
  1164. }
  1165. },
  1166. "notification-url": "https://packagist.org/downloads/",
  1167. "license": [
  1168. "MIT"
  1169. ],
  1170. "authors": [
  1171. {
  1172. "name": "Dragonfly Development Inc.",
  1173. "email": "info@dflydev.com",
  1174. "homepage": "http://dflydev.com"
  1175. },
  1176. {
  1177. "name": "Beau Simensen",
  1178. "email": "beau@dflydev.com",
  1179. "homepage": "http://beausimensen.com"
  1180. }
  1181. ],
  1182. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1183. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1184. "keywords": [
  1185. "config",
  1186. "configuration"
  1187. ],
  1188. "time": "2018-09-08T23:00:17+00:00"
  1189. },
  1190. {
  1191. "name": "dflydev/dot-access-data",
  1192. "version": "v1.1.0",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1196. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1201. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1202. "shasum": ""
  1203. },
  1204. "require": {
  1205. "php": ">=5.3.2"
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "1.0-dev"
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-0": {
  1215. "Dflydev\\DotAccessData": "src"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Dragonfly Development Inc.",
  1225. "email": "info@dflydev.com",
  1226. "homepage": "http://dflydev.com"
  1227. },
  1228. {
  1229. "name": "Beau Simensen",
  1230. "email": "beau@dflydev.com",
  1231. "homepage": "http://beausimensen.com"
  1232. },
  1233. {
  1234. "name": "Carlos Frutos",
  1235. "email": "carlos@kiwing.it",
  1236. "homepage": "https://github.com/cfrutos"
  1237. }
  1238. ],
  1239. "description": "Given a deep data structure, access data by dot notation.",
  1240. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1241. "keywords": [
  1242. "access",
  1243. "data",
  1244. "dot",
  1245. "notation"
  1246. ],
  1247. "time": "2017-01-20T21:14:22+00:00"
  1248. },
  1249. {
  1250. "name": "dflydev/placeholder-resolver",
  1251. "version": "v1.0.2",
  1252. "source": {
  1253. "type": "git",
  1254. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1255. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1256. },
  1257. "dist": {
  1258. "type": "zip",
  1259. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1260. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1261. "shasum": ""
  1262. },
  1263. "require": {
  1264. "php": ">=5.3.2"
  1265. },
  1266. "type": "library",
  1267. "extra": {
  1268. "branch-alias": {
  1269. "dev-master": "1.0-dev"
  1270. }
  1271. },
  1272. "autoload": {
  1273. "psr-0": {
  1274. "Dflydev\\PlaceholderResolver": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Dragonfly Development Inc.",
  1284. "email": "info@dflydev.com",
  1285. "homepage": "http://dflydev.com"
  1286. },
  1287. {
  1288. "name": "Beau Simensen",
  1289. "email": "beau@dflydev.com",
  1290. "homepage": "http://beausimensen.com"
  1291. }
  1292. ],
  1293. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1294. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1295. "keywords": [
  1296. "placeholder",
  1297. "resolver"
  1298. ],
  1299. "time": "2012-10-28T21:08:28+00:00"
  1300. },
  1301. {
  1302. "name": "dnoegel/php-xdg-base-dir",
  1303. "version": "v0.1.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1307. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1312. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1313. "shasum": ""
  1314. },
  1315. "require": {
  1316. "php": ">=5.3.2"
  1317. },
  1318. "require-dev": {
  1319. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1320. },
  1321. "type": "library",
  1322. "autoload": {
  1323. "psr-4": {
  1324. "XdgBaseDir\\": "src/"
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "MIT"
  1330. ],
  1331. "description": "implementation of xdg base directory specification for php",
  1332. "time": "2019-12-04T15:06:13+00:00"
  1333. },
  1334. {
  1335. "name": "doctrine/annotations",
  1336. "version": "1.11.1",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/doctrine/annotations.git",
  1340. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1345. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "doctrine/lexer": "1.*",
  1350. "ext-tokenizer": "*",
  1351. "php": "^7.1 || ^8.0"
  1352. },
  1353. "require-dev": {
  1354. "doctrine/cache": "1.*",
  1355. "doctrine/coding-standard": "^6.0 || ^8.1",
  1356. "phpstan/phpstan": "^0.12.20",
  1357. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.11.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-4": {
  1367. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Guilherme Blanco",
  1377. "email": "guilhermeblanco@gmail.com"
  1378. },
  1379. {
  1380. "name": "Roman Borschel",
  1381. "email": "roman@code-factory.org"
  1382. },
  1383. {
  1384. "name": "Benjamin Eberlei",
  1385. "email": "kontakt@beberlei.de"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Docblock Annotations Parser",
  1397. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1398. "keywords": [
  1399. "annotations",
  1400. "docblock",
  1401. "parser"
  1402. ],
  1403. "time": "2020-10-26T10:28:16+00:00"
  1404. },
  1405. {
  1406. "name": "doctrine/cache",
  1407. "version": "1.10.2",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/doctrine/cache.git",
  1411. "reference": "13e3381b25847283a91948d04640543941309727"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  1416. "reference": "13e3381b25847283a91948d04640543941309727",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "php": "~7.1 || ^8.0"
  1421. },
  1422. "conflict": {
  1423. "doctrine/common": ">2.2,<2.4"
  1424. },
  1425. "require-dev": {
  1426. "alcaeus/mongo-php-adapter": "^1.1",
  1427. "doctrine/coding-standard": "^6.0",
  1428. "mongodb/mongodb": "^1.1",
  1429. "phpunit/phpunit": "^7.0",
  1430. "predis/predis": "~1.0"
  1431. },
  1432. "suggest": {
  1433. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-master": "1.9.x-dev"
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Guilherme Blanco",
  1453. "email": "guilhermeblanco@gmail.com"
  1454. },
  1455. {
  1456. "name": "Roman Borschel",
  1457. "email": "roman@code-factory.org"
  1458. },
  1459. {
  1460. "name": "Benjamin Eberlei",
  1461. "email": "kontakt@beberlei.de"
  1462. },
  1463. {
  1464. "name": "Jonathan Wage",
  1465. "email": "jonwage@gmail.com"
  1466. },
  1467. {
  1468. "name": "Johannes Schmitt",
  1469. "email": "schmittjoh@gmail.com"
  1470. }
  1471. ],
  1472. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1473. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1474. "keywords": [
  1475. "abstraction",
  1476. "apcu",
  1477. "cache",
  1478. "caching",
  1479. "couchdb",
  1480. "memcached",
  1481. "php",
  1482. "redis",
  1483. "xcache"
  1484. ],
  1485. "funding": [
  1486. {
  1487. "url": "https://www.doctrine-project.org/sponsorship.html",
  1488. "type": "custom"
  1489. },
  1490. {
  1491. "url": "https://www.patreon.com/phpdoctrine",
  1492. "type": "patreon"
  1493. },
  1494. {
  1495. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1496. "type": "tidelift"
  1497. }
  1498. ],
  1499. "time": "2020-07-07T18:54:01+00:00"
  1500. },
  1501. {
  1502. "name": "doctrine/collections",
  1503. "version": "1.6.7",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/doctrine/collections.git",
  1507. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1512. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1513. "shasum": ""
  1514. },
  1515. "require": {
  1516. "php": "^7.1.3 || ^8.0"
  1517. },
  1518. "require-dev": {
  1519. "doctrine/coding-standard": "^6.0",
  1520. "phpstan/phpstan-shim": "^0.9.2",
  1521. "phpunit/phpunit": "^7.0",
  1522. "vimeo/psalm": "^3.8.1"
  1523. },
  1524. "type": "library",
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "Guilherme Blanco",
  1537. "email": "guilhermeblanco@gmail.com"
  1538. },
  1539. {
  1540. "name": "Roman Borschel",
  1541. "email": "roman@code-factory.org"
  1542. },
  1543. {
  1544. "name": "Benjamin Eberlei",
  1545. "email": "kontakt@beberlei.de"
  1546. },
  1547. {
  1548. "name": "Jonathan Wage",
  1549. "email": "jonwage@gmail.com"
  1550. },
  1551. {
  1552. "name": "Johannes Schmitt",
  1553. "email": "schmittjoh@gmail.com"
  1554. }
  1555. ],
  1556. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1557. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1558. "keywords": [
  1559. "array",
  1560. "collections",
  1561. "iterators",
  1562. "php"
  1563. ],
  1564. "time": "2020-07-27T17:53:49+00:00"
  1565. },
  1566. {
  1567. "name": "doctrine/common",
  1568. "version": "2.13.3",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/doctrine/common.git",
  1572. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1577. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "doctrine/annotations": "^1.0",
  1582. "doctrine/cache": "^1.0",
  1583. "doctrine/collections": "^1.0",
  1584. "doctrine/event-manager": "^1.0",
  1585. "doctrine/inflector": "^1.0",
  1586. "doctrine/lexer": "^1.0",
  1587. "doctrine/persistence": "^1.3.3",
  1588. "doctrine/reflection": "^1.0",
  1589. "php": "^7.1 || ^8.0"
  1590. },
  1591. "require-dev": {
  1592. "doctrine/coding-standard": "^1.0",
  1593. "phpstan/phpstan": "^0.11",
  1594. "phpstan/phpstan-phpunit": "^0.11",
  1595. "phpunit/phpunit": "^7.0",
  1596. "squizlabs/php_codesniffer": "^3.0",
  1597. "symfony/phpunit-bridge": "^4.0.5"
  1598. },
  1599. "type": "library",
  1600. "extra": {
  1601. "branch-alias": {
  1602. "dev-master": "2.11.x-dev"
  1603. }
  1604. },
  1605. "autoload": {
  1606. "psr-4": {
  1607. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1608. }
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "license": [
  1612. "MIT"
  1613. ],
  1614. "authors": [
  1615. {
  1616. "name": "Guilherme Blanco",
  1617. "email": "guilhermeblanco@gmail.com"
  1618. },
  1619. {
  1620. "name": "Roman Borschel",
  1621. "email": "roman@code-factory.org"
  1622. },
  1623. {
  1624. "name": "Benjamin Eberlei",
  1625. "email": "kontakt@beberlei.de"
  1626. },
  1627. {
  1628. "name": "Jonathan Wage",
  1629. "email": "jonwage@gmail.com"
  1630. },
  1631. {
  1632. "name": "Johannes Schmitt",
  1633. "email": "schmittjoh@gmail.com"
  1634. },
  1635. {
  1636. "name": "Marco Pivetta",
  1637. "email": "ocramius@gmail.com"
  1638. }
  1639. ],
  1640. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  1641. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1642. "keywords": [
  1643. "common",
  1644. "doctrine",
  1645. "php"
  1646. ],
  1647. "funding": [
  1648. {
  1649. "url": "https://www.doctrine-project.org/sponsorship.html",
  1650. "type": "custom"
  1651. },
  1652. {
  1653. "url": "https://www.patreon.com/phpdoctrine",
  1654. "type": "patreon"
  1655. },
  1656. {
  1657. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1658. "type": "tidelift"
  1659. }
  1660. ],
  1661. "time": "2020-06-05T16:46:05+00:00"
  1662. },
  1663. {
  1664. "name": "doctrine/event-manager",
  1665. "version": "1.1.1",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/doctrine/event-manager.git",
  1669. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1674. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "php": "^7.1 || ^8.0"
  1679. },
  1680. "conflict": {
  1681. "doctrine/common": "<2.9@dev"
  1682. },
  1683. "require-dev": {
  1684. "doctrine/coding-standard": "^6.0",
  1685. "phpunit/phpunit": "^7.0"
  1686. },
  1687. "type": "library",
  1688. "extra": {
  1689. "branch-alias": {
  1690. "dev-master": "1.0.x-dev"
  1691. }
  1692. },
  1693. "autoload": {
  1694. "psr-4": {
  1695. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Guilherme Blanco",
  1705. "email": "guilhermeblanco@gmail.com"
  1706. },
  1707. {
  1708. "name": "Roman Borschel",
  1709. "email": "roman@code-factory.org"
  1710. },
  1711. {
  1712. "name": "Benjamin Eberlei",
  1713. "email": "kontakt@beberlei.de"
  1714. },
  1715. {
  1716. "name": "Jonathan Wage",
  1717. "email": "jonwage@gmail.com"
  1718. },
  1719. {
  1720. "name": "Johannes Schmitt",
  1721. "email": "schmittjoh@gmail.com"
  1722. },
  1723. {
  1724. "name": "Marco Pivetta",
  1725. "email": "ocramius@gmail.com"
  1726. }
  1727. ],
  1728. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1729. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1730. "keywords": [
  1731. "event",
  1732. "event dispatcher",
  1733. "event manager",
  1734. "event system",
  1735. "events"
  1736. ],
  1737. "funding": [
  1738. {
  1739. "url": "https://www.doctrine-project.org/sponsorship.html",
  1740. "type": "custom"
  1741. },
  1742. {
  1743. "url": "https://www.patreon.com/phpdoctrine",
  1744. "type": "patreon"
  1745. },
  1746. {
  1747. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1748. "type": "tidelift"
  1749. }
  1750. ],
  1751. "time": "2020-05-29T18:28:51+00:00"
  1752. },
  1753. {
  1754. "name": "doctrine/inflector",
  1755. "version": "1.4.3",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/doctrine/inflector.git",
  1759. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1764. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": "^7.2 || ^8.0"
  1769. },
  1770. "require-dev": {
  1771. "doctrine/coding-standard": "^7.0",
  1772. "phpstan/phpstan": "^0.11",
  1773. "phpstan/phpstan-phpunit": "^0.11",
  1774. "phpstan/phpstan-strict-rules": "^0.11",
  1775. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "2.0.x-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "psr-4": {
  1785. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1786. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1787. }
  1788. },
  1789. "notification-url": "https://packagist.org/downloads/",
  1790. "license": [
  1791. "MIT"
  1792. ],
  1793. "authors": [
  1794. {
  1795. "name": "Guilherme Blanco",
  1796. "email": "guilhermeblanco@gmail.com"
  1797. },
  1798. {
  1799. "name": "Roman Borschel",
  1800. "email": "roman@code-factory.org"
  1801. },
  1802. {
  1803. "name": "Benjamin Eberlei",
  1804. "email": "kontakt@beberlei.de"
  1805. },
  1806. {
  1807. "name": "Jonathan Wage",
  1808. "email": "jonwage@gmail.com"
  1809. },
  1810. {
  1811. "name": "Johannes Schmitt",
  1812. "email": "schmittjoh@gmail.com"
  1813. }
  1814. ],
  1815. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1816. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1817. "keywords": [
  1818. "inflection",
  1819. "inflector",
  1820. "lowercase",
  1821. "manipulation",
  1822. "php",
  1823. "plural",
  1824. "singular",
  1825. "strings",
  1826. "uppercase",
  1827. "words"
  1828. ],
  1829. "funding": [
  1830. {
  1831. "url": "https://www.doctrine-project.org/sponsorship.html",
  1832. "type": "custom"
  1833. },
  1834. {
  1835. "url": "https://www.patreon.com/phpdoctrine",
  1836. "type": "patreon"
  1837. },
  1838. {
  1839. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1840. "type": "tidelift"
  1841. }
  1842. ],
  1843. "time": "2020-05-29T07:19:59+00:00"
  1844. },
  1845. {
  1846. "name": "doctrine/lexer",
  1847. "version": "1.2.1",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/doctrine/lexer.git",
  1851. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1856. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "php": "^7.2 || ^8.0"
  1861. },
  1862. "require-dev": {
  1863. "doctrine/coding-standard": "^6.0",
  1864. "phpstan/phpstan": "^0.11.8",
  1865. "phpunit/phpunit": "^8.2"
  1866. },
  1867. "type": "library",
  1868. "extra": {
  1869. "branch-alias": {
  1870. "dev-master": "1.2.x-dev"
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "Guilherme Blanco",
  1885. "email": "guilhermeblanco@gmail.com"
  1886. },
  1887. {
  1888. "name": "Roman Borschel",
  1889. "email": "roman@code-factory.org"
  1890. },
  1891. {
  1892. "name": "Johannes Schmitt",
  1893. "email": "schmittjoh@gmail.com"
  1894. }
  1895. ],
  1896. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1897. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1898. "keywords": [
  1899. "annotations",
  1900. "docblock",
  1901. "lexer",
  1902. "parser",
  1903. "php"
  1904. ],
  1905. "funding": [
  1906. {
  1907. "url": "https://www.doctrine-project.org/sponsorship.html",
  1908. "type": "custom"
  1909. },
  1910. {
  1911. "url": "https://www.patreon.com/phpdoctrine",
  1912. "type": "patreon"
  1913. },
  1914. {
  1915. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1916. "type": "tidelift"
  1917. }
  1918. ],
  1919. "time": "2020-05-25T17:44:05+00:00"
  1920. },
  1921. {
  1922. "name": "doctrine/persistence",
  1923. "version": "1.3.8",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/doctrine/persistence.git",
  1927. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1932. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "doctrine/annotations": "^1.0",
  1937. "doctrine/cache": "^1.0",
  1938. "doctrine/collections": "^1.0",
  1939. "doctrine/event-manager": "^1.0",
  1940. "doctrine/reflection": "^1.2",
  1941. "php": "^7.1 || ^8.0"
  1942. },
  1943. "conflict": {
  1944. "doctrine/common": "<2.10@dev"
  1945. },
  1946. "require-dev": {
  1947. "doctrine/coding-standard": "^6.0",
  1948. "phpstan/phpstan": "^0.11",
  1949. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1950. "vimeo/psalm": "^3.11"
  1951. },
  1952. "type": "library",
  1953. "extra": {
  1954. "branch-alias": {
  1955. "dev-master": "1.3.x-dev"
  1956. }
  1957. },
  1958. "autoload": {
  1959. "psr-4": {
  1960. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1961. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1962. }
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Guilherme Blanco",
  1971. "email": "guilhermeblanco@gmail.com"
  1972. },
  1973. {
  1974. "name": "Roman Borschel",
  1975. "email": "roman@code-factory.org"
  1976. },
  1977. {
  1978. "name": "Benjamin Eberlei",
  1979. "email": "kontakt@beberlei.de"
  1980. },
  1981. {
  1982. "name": "Jonathan Wage",
  1983. "email": "jonwage@gmail.com"
  1984. },
  1985. {
  1986. "name": "Johannes Schmitt",
  1987. "email": "schmittjoh@gmail.com"
  1988. },
  1989. {
  1990. "name": "Marco Pivetta",
  1991. "email": "ocramius@gmail.com"
  1992. }
  1993. ],
  1994. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1995. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1996. "keywords": [
  1997. "mapper",
  1998. "object",
  1999. "odm",
  2000. "orm",
  2001. "persistence"
  2002. ],
  2003. "funding": [
  2004. {
  2005. "url": "https://www.doctrine-project.org/sponsorship.html",
  2006. "type": "custom"
  2007. },
  2008. {
  2009. "url": "https://www.patreon.com/phpdoctrine",
  2010. "type": "patreon"
  2011. },
  2012. {
  2013. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2014. "type": "tidelift"
  2015. }
  2016. ],
  2017. "time": "2020-06-20T12:56:16+00:00"
  2018. },
  2019. {
  2020. "name": "doctrine/reflection",
  2021. "version": "1.2.2",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/doctrine/reflection.git",
  2025. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2030. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2031. "shasum": ""
  2032. },
  2033. "require": {
  2034. "doctrine/annotations": "^1.0",
  2035. "ext-tokenizer": "*",
  2036. "php": "^7.1 || ^8.0"
  2037. },
  2038. "conflict": {
  2039. "doctrine/common": "<2.9"
  2040. },
  2041. "require-dev": {
  2042. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2043. "doctrine/common": "^2.10",
  2044. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2045. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2046. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "1.2.x-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "psr-4": {
  2056. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2057. }
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "MIT"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Guilherme Blanco",
  2066. "email": "guilhermeblanco@gmail.com"
  2067. },
  2068. {
  2069. "name": "Roman Borschel",
  2070. "email": "roman@code-factory.org"
  2071. },
  2072. {
  2073. "name": "Benjamin Eberlei",
  2074. "email": "kontakt@beberlei.de"
  2075. },
  2076. {
  2077. "name": "Jonathan Wage",
  2078. "email": "jonwage@gmail.com"
  2079. },
  2080. {
  2081. "name": "Johannes Schmitt",
  2082. "email": "schmittjoh@gmail.com"
  2083. },
  2084. {
  2085. "name": "Marco Pivetta",
  2086. "email": "ocramius@gmail.com"
  2087. }
  2088. ],
  2089. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  2090. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2091. "keywords": [
  2092. "reflection",
  2093. "static"
  2094. ],
  2095. "abandoned": "roave/better-reflection",
  2096. "time": "2020-10-27T21:46:55+00:00"
  2097. },
  2098. {
  2099. "name": "drupal/address",
  2100. "version": "1.9.0",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://git.drupalcode.org/project/address.git",
  2104. "reference": "8.x-1.9"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2109. "reference": "8.x-1.9",
  2110. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2111. },
  2112. "require": {
  2113. "commerceguys/addressing": "^1.0.7",
  2114. "drupal/core": "^8.8 || ^9"
  2115. },
  2116. "require-dev": {
  2117. "drupal/token": "^1.0"
  2118. },
  2119. "type": "drupal-module",
  2120. "extra": {
  2121. "drupal": {
  2122. "version": "8.x-1.9",
  2123. "datestamp": "1604422821",
  2124. "security-coverage": {
  2125. "status": "covered",
  2126. "message": "Covered by Drupal's security advisory policy"
  2127. }
  2128. }
  2129. },
  2130. "notification-url": "https://packages.drupal.org/8/downloads",
  2131. "license": [
  2132. "GPL-2.0-or-later"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "bojanz",
  2137. "homepage": "https://www.drupal.org/user/86106"
  2138. },
  2139. {
  2140. "name": "dww",
  2141. "homepage": "https://www.drupal.org/user/46549"
  2142. },
  2143. {
  2144. "name": "googletorp",
  2145. "homepage": "https://www.drupal.org/user/386230"
  2146. },
  2147. {
  2148. "name": "jsacksick",
  2149. "homepage": "https://www.drupal.org/user/972218"
  2150. },
  2151. {
  2152. "name": "mglaman",
  2153. "homepage": "https://www.drupal.org/user/2416470"
  2154. },
  2155. {
  2156. "name": "rszrama",
  2157. "homepage": "https://www.drupal.org/user/49344"
  2158. }
  2159. ],
  2160. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2161. "homepage": "http://drupal.org/project/address",
  2162. "support": {
  2163. "source": "https://git.drupalcode.org/project/address"
  2164. }
  2165. },
  2166. {
  2167. "name": "drupal/admin_toolbar",
  2168. "version": "2.4.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2172. "reference": "8.x-2.4"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip",
  2177. "reference": "8.x-2.4",
  2178. "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38"
  2179. },
  2180. "require": {
  2181. "drupal/core": "^8.8.0 || ^9.0"
  2182. },
  2183. "type": "drupal-module",
  2184. "extra": {
  2185. "drupal": {
  2186. "version": "8.x-2.4",
  2187. "datestamp": "1601999178",
  2188. "security-coverage": {
  2189. "status": "covered",
  2190. "message": "Covered by Drupal's security advisory policy"
  2191. }
  2192. }
  2193. },
  2194. "notification-url": "https://packages.drupal.org/8/downloads",
  2195. "license": [
  2196. "GPL-2.0-or-later"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Wilfrid Roze (eme)",
  2201. "homepage": "https://www.drupal.org/u/eme",
  2202. "role": "Maintainer"
  2203. },
  2204. {
  2205. "name": "Romain Jarraud (romainj)",
  2206. "homepage": "https://www.drupal.org/u/romainj",
  2207. "role": "Maintainer"
  2208. },
  2209. {
  2210. "name": "Adrian Cid Almaguer (adriancid)",
  2211. "homepage": "https://www.drupal.org/u/adriancid",
  2212. "email": "adriancid@gmail.com",
  2213. "role": "Maintainer"
  2214. },
  2215. {
  2216. "name": "Mohamed Anis Taktak (matio89)",
  2217. "homepage": "https://www.drupal.org/u/matio89",
  2218. "role": "Maintainer"
  2219. },
  2220. {
  2221. "name": "fethi.krout",
  2222. "homepage": "https://www.drupal.org/user/3206765"
  2223. },
  2224. {
  2225. "name": "matio89",
  2226. "homepage": "https://www.drupal.org/user/2320090"
  2227. },
  2228. {
  2229. "name": "romainj",
  2230. "homepage": "https://www.drupal.org/user/370706"
  2231. }
  2232. ],
  2233. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2234. "homepage": "http://drupal.org/project/admin_toolbar",
  2235. "keywords": [
  2236. "Drupal",
  2237. "Toolbar"
  2238. ],
  2239. "support": {
  2240. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2241. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2242. }
  2243. },
  2244. {
  2245. "name": "drupal/adminimal_theme",
  2246. "version": "1.6.0",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2250. "reference": "8.x-1.6"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2255. "reference": "8.x-1.6",
  2256. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2257. },
  2258. "require": {
  2259. "drupal/core": "^8.8 || ^9"
  2260. },
  2261. "type": "drupal-theme",
  2262. "extra": {
  2263. "drupal": {
  2264. "version": "8.x-1.6",
  2265. "datestamp": "1602006937",
  2266. "security-coverage": {
  2267. "status": "covered",
  2268. "message": "Covered by Drupal's security advisory policy"
  2269. }
  2270. }
  2271. },
  2272. "notification-url": "https://packages.drupal.org/8/downloads",
  2273. "license": [
  2274. "GPL-2.0+"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "ANDiTKO",
  2279. "homepage": "https://www.drupal.org/user/1428124"
  2280. },
  2281. {
  2282. "name": "andrey.troeglazov",
  2283. "homepage": "https://www.drupal.org/user/3145389"
  2284. },
  2285. {
  2286. "name": "realityloop",
  2287. "homepage": "https://www.drupal.org/user/139189"
  2288. }
  2289. ],
  2290. "description": "Drupal administration theme with modern minimalist design.",
  2291. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2292. "support": {
  2293. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2294. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2295. }
  2296. },
  2297. {
  2298. "name": "drupal/advanced_text_formatter",
  2299. "version": "2.0.0",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2303. "reference": "2.0.0"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.0.0.zip",
  2308. "reference": "2.0.0",
  2309. "shasum": "ecd1d0e46dfc137251f9b71e724c6edddd5c48df"
  2310. },
  2311. "require": {
  2312. "drupal/core": "^8 || ^9"
  2313. },
  2314. "type": "drupal-module",
  2315. "extra": {
  2316. "drupal": {
  2317. "version": "2.0.0",
  2318. "datestamp": "1591030704",
  2319. "security-coverage": {
  2320. "status": "covered",
  2321. "message": "Covered by Drupal's security advisory policy"
  2322. }
  2323. }
  2324. },
  2325. "notification-url": "https://packages.drupal.org/8/downloads",
  2326. "license": [
  2327. "GPL-2.0-or-later"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "azovsky",
  2332. "homepage": "https://www.drupal.org/user/330533"
  2333. },
  2334. {
  2335. "name": "thmnhat",
  2336. "homepage": "https://www.drupal.org/user/998946"
  2337. }
  2338. ],
  2339. "description": "Provides an additional formatter for text field, text area and text format.",
  2340. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2341. "support": {
  2342. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2343. }
  2344. },
  2345. {
  2346. "name": "drupal/audiofield",
  2347. "version": "1.10.0",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://git.drupalcode.org/project/audiofield.git",
  2351. "reference": "8.x-1.10"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2356. "reference": "8.x-1.10",
  2357. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2358. },
  2359. "require": {
  2360. "drupal/core": "^8 || ^9"
  2361. },
  2362. "type": "drupal-module",
  2363. "extra": {
  2364. "drupal": {
  2365. "version": "8.x-1.10",
  2366. "datestamp": "1607014410",
  2367. "security-coverage": {
  2368. "status": "covered",
  2369. "message": "Covered by Drupal's security advisory policy"
  2370. }
  2371. },
  2372. "drush": {
  2373. "services": {
  2374. "drush.services.yml": "^9"
  2375. }
  2376. }
  2377. },
  2378. "notification-url": "https://packages.drupal.org/8/downloads",
  2379. "license": [
  2380. "GPL-2.0-or-later"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Daniel Moberly",
  2385. "homepage": "https://www.drupal.org/u/danielmoberly",
  2386. "role": "Maintainer"
  2387. },
  2388. {
  2389. "name": "josipsaric",
  2390. "homepage": "https://www.drupal.org/user/3063287"
  2391. },
  2392. {
  2393. "name": "tamerzg",
  2394. "homepage": "https://www.drupal.org/user/464564"
  2395. }
  2396. ],
  2397. "description": "AudioField Module",
  2398. "homepage": "https://www.drupal.org/project/audiofield",
  2399. "support": {
  2400. "source": "https://git.drupalcode.org/project/audiofield",
  2401. "issues": "https://www.drupal.org/project/issues/audiofield"
  2402. }
  2403. },
  2404. {
  2405. "name": "drupal/autocomplete_deluxe",
  2406. "version": "2.0.0-rc1",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2410. "reference": "2.0.0-rc1"
  2411. },
  2412. "dist": {
  2413. "type": "zip",
  2414. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0-rc1.zip",
  2415. "reference": "2.0.0-rc1",
  2416. "shasum": "9f3c63862652862322184bb892cc1fa80c9f47c1"
  2417. },
  2418. "require": {
  2419. "drupal/core": "^8 || ^9"
  2420. },
  2421. "type": "drupal-module",
  2422. "extra": {
  2423. "drupal": {
  2424. "version": "2.0.0-rc1",
  2425. "datestamp": "1592389562",
  2426. "security-coverage": {
  2427. "status": "not-covered",
  2428. "message": "RC releases are not covered by Drupal security advisories."
  2429. }
  2430. }
  2431. },
  2432. "notification-url": "https://packages.drupal.org/8/downloads",
  2433. "license": [
  2434. "GPL-2.0-or-later"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Vardot",
  2439. "homepage": "https://www.drupal.org/vardot",
  2440. "role": "Maintenance for D8 and D9 versions"
  2441. },
  2442. {
  2443. "name": "Mediacurrent",
  2444. "homepage": "https://www.drupal.org/mediacurrent",
  2445. "role": "Supporting organization"
  2446. },
  2447. {
  2448. "name": "RajabNatshah",
  2449. "homepage": "https://www.drupal.org/user/1414312"
  2450. },
  2451. {
  2452. "name": "edwardchiapet",
  2453. "homepage": "https://www.drupal.org/user/2354784"
  2454. },
  2455. {
  2456. "name": "mpriscella",
  2457. "homepage": "https://www.drupal.org/user/2354820"
  2458. },
  2459. {
  2460. "name": "sepgil",
  2461. "homepage": "https://www.drupal.org/user/512828"
  2462. }
  2463. ],
  2464. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2465. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2466. "support": {
  2467. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2468. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2469. }
  2470. },
  2471. {
  2472. "name": "drupal/autologout",
  2473. "version": "1.3.0",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://git.drupalcode.org/project/autologout.git",
  2477. "reference": "8.x-1.3"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2482. "reference": "8.x-1.3",
  2483. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2484. },
  2485. "require": {
  2486. "drupal/core": "^8 || ^9"
  2487. },
  2488. "type": "drupal-module",
  2489. "extra": {
  2490. "drupal": {
  2491. "version": "8.x-1.3",
  2492. "datestamp": "1587193798",
  2493. "security-coverage": {
  2494. "status": "covered",
  2495. "message": "Covered by Drupal's security advisory policy"
  2496. }
  2497. }
  2498. },
  2499. "notification-url": "https://packages.drupal.org/8/downloads",
  2500. "license": [
  2501. "GPL-2.0+"
  2502. ],
  2503. "authors": [
  2504. {
  2505. "name": "AjK",
  2506. "homepage": "https://www.drupal.org/user/39030"
  2507. },
  2508. {
  2509. "name": "AjitS",
  2510. "homepage": "https://www.drupal.org/user/981944"
  2511. },
  2512. {
  2513. "name": "boshtian",
  2514. "homepage": "https://www.drupal.org/user/1773456"
  2515. },
  2516. {
  2517. "name": "dandrews",
  2518. "homepage": "https://www.drupal.org/user/2014490"
  2519. },
  2520. {
  2521. "name": "darksnow",
  2522. "homepage": "https://www.drupal.org/user/391915"
  2523. },
  2524. {
  2525. "name": "johnennew",
  2526. "homepage": "https://www.drupal.org/user/1150042"
  2527. },
  2528. {
  2529. "name": "jrglasgow",
  2530. "homepage": "https://www.drupal.org/user/36590"
  2531. },
  2532. {
  2533. "name": "kmasood",
  2534. "homepage": "https://www.drupal.org/user/1262860"
  2535. },
  2536. {
  2537. "name": "levelos",
  2538. "homepage": "https://www.drupal.org/user/54135"
  2539. },
  2540. {
  2541. "name": "prabeen.giri",
  2542. "homepage": "https://www.drupal.org/user/913078"
  2543. },
  2544. {
  2545. "name": "str8",
  2546. "homepage": "https://www.drupal.org/user/2865063"
  2547. }
  2548. ],
  2549. "description": "Adds automated timed logout.",
  2550. "homepage": "http://drupal.org/project/autologout",
  2551. "support": {
  2552. "source": "https://git.drupalcode.org/project/autologout"
  2553. }
  2554. },
  2555. {
  2556. "name": "drupal/better_exposed_filters",
  2557. "version": "5.0.0-beta1",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2561. "reference": "8.x-5.0-beta1"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta1.zip",
  2566. "reference": "8.x-5.0-beta1",
  2567. "shasum": "bc5ce873fa699ee584fdeb2fd28ad6c5cb456b03"
  2568. },
  2569. "require": {
  2570. "drupal/core": "^8.8 || ^9",
  2571. "drupal/jquery_ui": "^1.4",
  2572. "drupal/jquery_ui_datepicker": "^1.0",
  2573. "drupal/jquery_ui_slider": "^1.1",
  2574. "drupal/jquery_ui_touch_punch": "^1.0"
  2575. },
  2576. "type": "drupal-module",
  2577. "extra": {
  2578. "drupal": {
  2579. "version": "8.x-5.0-beta1",
  2580. "datestamp": "1594141892",
  2581. "security-coverage": {
  2582. "status": "not-covered",
  2583. "message": "Beta releases are not covered by Drupal security advisories."
  2584. }
  2585. }
  2586. },
  2587. "notification-url": "https://packages.drupal.org/8/downloads",
  2588. "license": [
  2589. "GPL-2.0+"
  2590. ],
  2591. "authors": [
  2592. {
  2593. "name": "Mike Keran",
  2594. "homepage": "https://www.drupal.org/u/mikeker"
  2595. },
  2596. {
  2597. "name": "Martin Keereman",
  2598. "homepage": "https://www.drupal.org/u/etroid"
  2599. },
  2600. {
  2601. "name": "chr.fritsch",
  2602. "homepage": "https://www.drupal.org/user/2103716"
  2603. },
  2604. {
  2605. "name": "jkopel",
  2606. "homepage": "https://www.drupal.org/user/66207"
  2607. },
  2608. {
  2609. "name": "mikeker",
  2610. "homepage": "https://www.drupal.org/user/192273"
  2611. },
  2612. {
  2613. "name": "rlhawk",
  2614. "homepage": "https://www.drupal.org/user/352283"
  2615. }
  2616. ],
  2617. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2618. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2619. "support": {
  2620. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2621. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2622. }
  2623. },
  2624. {
  2625. "name": "drupal/betterlogin",
  2626. "version": "1.5.0",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2630. "reference": "8.x-1.5"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2635. "reference": "8.x-1.5",
  2636. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2637. },
  2638. "require": {
  2639. "drupal/core": "^8 || ^9"
  2640. },
  2641. "type": "drupal-module",
  2642. "extra": {
  2643. "drupal": {
  2644. "version": "8.x-1.5",
  2645. "datestamp": "1588242718",
  2646. "security-coverage": {
  2647. "status": "covered",
  2648. "message": "Covered by Drupal's security advisory policy"
  2649. }
  2650. }
  2651. },
  2652. "notification-url": "https://packages.drupal.org/8/downloads",
  2653. "license": [
  2654. "GPL-2.0-or-later"
  2655. ],
  2656. "authors": [
  2657. {
  2658. "name": "theamoeba",
  2659. "homepage": "https://www.drupal.org/user/251700"
  2660. },
  2661. {
  2662. "name": "yogeshmpawar",
  2663. "homepage": "https://www.drupal.org/user/2922907"
  2664. }
  2665. ],
  2666. "description": "Make the login screens better :)",
  2667. "homepage": "https://www.drupal.org/project/betterlogin",
  2668. "support": {
  2669. "source": "https://git.drupalcode.org/project/betterlogin"
  2670. }
  2671. },
  2672. {
  2673. "name": "drupal/block_class",
  2674. "version": "1.3.0",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://git.drupalcode.org/project/block_class.git",
  2678. "reference": "8.x-1.3"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2683. "reference": "8.x-1.3",
  2684. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2685. },
  2686. "require": {
  2687. "drupal/core": "^8 || ^9"
  2688. },
  2689. "type": "drupal-module",
  2690. "extra": {
  2691. "drupal": {
  2692. "version": "8.x-1.3",
  2693. "datestamp": "1604426178",
  2694. "security-coverage": {
  2695. "status": "covered",
  2696. "message": "Covered by Drupal's security advisory policy"
  2697. }
  2698. }
  2699. },
  2700. "notification-url": "https://packages.drupal.org/8/downloads",
  2701. "license": [
  2702. "GPL-2.0-or-later"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Todd Nienkerk",
  2707. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2708. "role": "Maintainer"
  2709. },
  2710. {
  2711. "name": "Renato Gonçalves (RenatoG)",
  2712. "homepage": "https://www.drupal.org/u/RenatoG",
  2713. "email": "renatog@ciandt.com",
  2714. "role": "Maintainer"
  2715. },
  2716. {
  2717. "name": "Neslee Canil Pinto",
  2718. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2719. "role": "Maintainer"
  2720. },
  2721. {
  2722. "name": "Aaron Stanush",
  2723. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2724. "role": "Maintainer"
  2725. },
  2726. {
  2727. "name": "David Suissa (DYdave)",
  2728. "homepage": "https://www.drupal.org/u/DYdave",
  2729. "role": "Maintainer"
  2730. },
  2731. {
  2732. "name": "Four Kitchens",
  2733. "homepage": "https://www.drupal.org/user/358502",
  2734. "role": "Maintainer"
  2735. },
  2736. {
  2737. "name": "berenddeboer",
  2738. "homepage": "https://www.drupal.org/u/berenddeboer",
  2739. "role": "Maintainer"
  2740. },
  2741. {
  2742. "name": "elliotttf",
  2743. "homepage": "https://www.drupal.org/u/elliotttf",
  2744. "role": "Maintainer"
  2745. },
  2746. {
  2747. "name": "Michal Minecki (mirzu)",
  2748. "homepage": "https://www.drupal.org/u/mirzu",
  2749. "role": "Maintainer"
  2750. },
  2751. {
  2752. "name": "Patrick Coffey (pcoffey)",
  2753. "homepage": "https://www.drupal.org/u/pcoffey",
  2754. "role": "Maintainer"
  2755. },
  2756. {
  2757. "name": "Taylor Smith (tsmith512)",
  2758. "homepage": "https://www.drupal.org/u/tsmith512",
  2759. "role": "Maintainer"
  2760. }
  2761. ],
  2762. "description": "Allows assigning classes to Blocks.",
  2763. "homepage": "https://www.drupal.org/project/block_class",
  2764. "keywords": [
  2765. "Drupal"
  2766. ],
  2767. "support": {
  2768. "source": "https://git.drupalcode.org/project/block_class",
  2769. "issues": "https://www.drupal.org/project/issues/block_class",
  2770. "irc": "irc://irc.freenode.org/drupal-contribute"
  2771. }
  2772. },
  2773. {
  2774. "name": "drupal/bulkdelete",
  2775. "version": "dev-1.x",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2779. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2780. },
  2781. "require": {
  2782. "drupal/core": "^8.7.7 || ^9"
  2783. },
  2784. "type": "drupal-module",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-1.x": "1.x-dev"
  2788. },
  2789. "drupal": {
  2790. "version": "8.x-1.x-dev",
  2791. "datestamp": "1590300128",
  2792. "security-coverage": {
  2793. "status": "not-covered",
  2794. "message": "Dev releases are not covered by Drupal security advisories."
  2795. }
  2796. }
  2797. },
  2798. "notification-url": "https://packages.drupal.org/8/downloads",
  2799. "license": [
  2800. "GPL-2.0-or-later"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "Kars-T",
  2805. "homepage": "https://www.drupal.org/user/224499"
  2806. },
  2807. {
  2808. "name": "Rahul Seth",
  2809. "homepage": "https://www.drupal.org/user/2694359"
  2810. },
  2811. {
  2812. "name": "adriancid",
  2813. "homepage": "https://www.drupal.org/user/1962106"
  2814. },
  2815. {
  2816. "name": "robertDouglass",
  2817. "homepage": "https://www.drupal.org/user/5449"
  2818. }
  2819. ],
  2820. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2821. "homepage": "https://www.drupal.org/project/bulkdelete",
  2822. "support": {
  2823. "source": "https://git.drupalcode.org/project/bulkdelete"
  2824. },
  2825. "time": "2020-05-24T06:01:38+00:00"
  2826. },
  2827. {
  2828. "name": "drupal/config_devel",
  2829. "version": "dev-1.x",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://git.drupalcode.org/project/config_devel.git",
  2833. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  2834. },
  2835. "require": {
  2836. "drupal/core": "^8 || ^9"
  2837. },
  2838. "type": "drupal-module",
  2839. "extra": {
  2840. "branch-alias": {
  2841. "dev-1.x": "1.x-dev"
  2842. },
  2843. "drupal": {
  2844. "version": "8.x-1.7+3-dev",
  2845. "datestamp": "1607535421",
  2846. "security-coverage": {
  2847. "status": "not-covered",
  2848. "message": "Dev releases are not covered by Drupal security advisories."
  2849. }
  2850. }
  2851. },
  2852. "notification-url": "https://packages.drupal.org/8/downloads",
  2853. "license": [
  2854. "GPL-2.0+"
  2855. ],
  2856. "authors": [
  2857. {
  2858. "name": "alexpott",
  2859. "homepage": "https://www.drupal.org/user/157725"
  2860. },
  2861. {
  2862. "name": "benjy",
  2863. "homepage": "https://www.drupal.org/user/1852732"
  2864. },
  2865. {
  2866. "name": "chx",
  2867. "homepage": "https://www.drupal.org/user/9446"
  2868. },
  2869. {
  2870. "name": "joachim",
  2871. "homepage": "https://www.drupal.org/user/107701"
  2872. },
  2873. {
  2874. "name": "nedjo",
  2875. "homepage": "https://www.drupal.org/user/4481"
  2876. },
  2877. {
  2878. "name": "tim.plunkett",
  2879. "homepage": "https://www.drupal.org/user/241634"
  2880. },
  2881. {
  2882. "name": "vijaycs85",
  2883. "homepage": "https://www.drupal.org/user/93488"
  2884. }
  2885. ],
  2886. "description": "Helps developers work with configuration.",
  2887. "homepage": "https://www.drupal.org/project/config_devel",
  2888. "support": {
  2889. "source": "https://git.drupalcode.org/project/config_devel"
  2890. },
  2891. "time": "2020-12-11T15:36:08+00:00"
  2892. },
  2893. {
  2894. "name": "drupal/config_filter",
  2895. "version": "1.8.0",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://git.drupalcode.org/project/config_filter.git",
  2899. "reference": "8.x-1.8"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  2904. "reference": "8.x-1.8",
  2905. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  2906. },
  2907. "require": {
  2908. "drupal/core": "^8 || ^9"
  2909. },
  2910. "suggest": {
  2911. "drupal/config_split": "Split site configuration for different environments."
  2912. },
  2913. "type": "drupal-module",
  2914. "extra": {
  2915. "drupal": {
  2916. "version": "8.x-1.8",
  2917. "datestamp": "1603870062",
  2918. "security-coverage": {
  2919. "status": "covered",
  2920. "message": "Covered by Drupal's security advisory policy"
  2921. }
  2922. }
  2923. },
  2924. "notification-url": "https://packages.drupal.org/8/downloads",
  2925. "license": [
  2926. "GPL-2.0-or-later"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Fabian Bircher",
  2931. "homepage": "https://www.drupal.org/u/bircher",
  2932. "email": "opensource@fabianbircher.com",
  2933. "role": "Maintainer"
  2934. },
  2935. {
  2936. "name": "Nuvole Web",
  2937. "homepage": "http://nuvole.org",
  2938. "email": "info@nuvole.org",
  2939. "role": "Maintainer"
  2940. },
  2941. {
  2942. "name": "pescetti",
  2943. "homepage": "https://www.drupal.org/user/436244"
  2944. }
  2945. ],
  2946. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2947. "homepage": "https://www.drupal.org/project/config_filter",
  2948. "keywords": [
  2949. "Drupal",
  2950. "configuration",
  2951. "configuration management"
  2952. ],
  2953. "support": {
  2954. "source": "https://git.drupalcode.org/project/config_filter",
  2955. "issues": "https://www.drupal.org/project/issues/config_filter",
  2956. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2957. }
  2958. },
  2959. {
  2960. "name": "drupal/config_ignore",
  2961. "version": "2.3.0",
  2962. "source": {
  2963. "type": "git",
  2964. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2965. "reference": "8.x-2.3"
  2966. },
  2967. "dist": {
  2968. "type": "zip",
  2969. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  2970. "reference": "8.x-2.3",
  2971. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  2972. },
  2973. "require": {
  2974. "drupal/config_filter": "^1 || ^2",
  2975. "drupal/core": "^8 || ^9"
  2976. },
  2977. "type": "drupal-module",
  2978. "extra": {
  2979. "drupal": {
  2980. "version": "8.x-2.3",
  2981. "datestamp": "1608306489",
  2982. "security-coverage": {
  2983. "status": "covered",
  2984. "message": "Covered by Drupal's security advisory policy"
  2985. }
  2986. }
  2987. },
  2988. "notification-url": "https://packages.drupal.org/8/downloads",
  2989. "license": [
  2990. "GPL-2.0-or-later"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Tommy Lynge Jørgensen",
  2995. "homepage": "https://www.drupal.org/u/tlyngej",
  2996. "email": "tlyngej@gmail.com",
  2997. "role": "Maintainer"
  2998. },
  2999. {
  3000. "name": "Fabian Bircher",
  3001. "homepage": "https://www.drupal.org/u/bircher",
  3002. "role": "Maintainer"
  3003. },
  3004. {
  3005. "name": "tlyngej",
  3006. "homepage": "https://www.drupal.org/user/413139"
  3007. }
  3008. ],
  3009. "description": "Ignore certain configuration during import.",
  3010. "homepage": "http://drupal.org/project/config_ignore",
  3011. "support": {
  3012. "source": "https://git.drupalcode.org/project/config_ignore",
  3013. "issues": "http://drupal.org/project/config_ignore",
  3014. "irc": "irc://irc.freenode.org/drupal-contribute"
  3015. }
  3016. },
  3017. {
  3018. "name": "drupal/config_update",
  3019. "version": "1.7.0",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://git.drupalcode.org/project/config_update.git",
  3023. "reference": "8.x-1.7"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3028. "reference": "8.x-1.7",
  3029. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3030. },
  3031. "require": {
  3032. "drupal/core": "^8 || ^9"
  3033. },
  3034. "type": "drupal-module",
  3035. "extra": {
  3036. "drupal": {
  3037. "version": "8.x-1.7",
  3038. "datestamp": "1586355587",
  3039. "security-coverage": {
  3040. "status": "covered",
  3041. "message": "Covered by Drupal's security advisory policy"
  3042. }
  3043. }
  3044. },
  3045. "notification-url": "https://packages.drupal.org/8/downloads",
  3046. "license": [
  3047. "GPL-2.0-or-later"
  3048. ],
  3049. "authors": [
  3050. {
  3051. "name": "jhodgdon",
  3052. "homepage": "https://www.drupal.org/user/155601"
  3053. },
  3054. {
  3055. "name": "nedjo",
  3056. "homepage": "https://www.drupal.org/user/4481"
  3057. }
  3058. ],
  3059. "description": "Provides basic revert and update functionality for other modules",
  3060. "homepage": "https://www.drupal.org/project/config_update",
  3061. "support": {
  3062. "source": "https://git.drupalcode.org/project/config_update"
  3063. }
  3064. },
  3065. {
  3066. "name": "drupal/console",
  3067. "version": "1.9.7",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3071. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3076. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3077. "shasum": ""
  3078. },
  3079. "require": {
  3080. "alchemy/zippy": "~0.4",
  3081. "composer/installers": "~1.0",
  3082. "doctrine/annotations": "^1.2",
  3083. "doctrine/collections": "^1.3",
  3084. "drupal/console-core": "1.9.7",
  3085. "drupal/console-extend-plugin": "~0.9.5",
  3086. "php": ">=7.0.8",
  3087. "psy/psysh": "0.6.* || ~0.8",
  3088. "symfony/css-selector": "~3.0|~4.0",
  3089. "symfony/dom-crawler": "~3.0|~4.0",
  3090. "symfony/http-foundation": "~3.0|~4.0"
  3091. },
  3092. "suggest": {
  3093. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3094. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3095. },
  3096. "bin": [
  3097. "bin/drupal"
  3098. ],
  3099. "type": "library",
  3100. "autoload": {
  3101. "psr-4": {
  3102. "Drupal\\Console\\": "src"
  3103. }
  3104. },
  3105. "notification-url": "https://packagist.org/downloads/",
  3106. "license": [
  3107. "GPL-2.0-or-later"
  3108. ],
  3109. "authors": [
  3110. {
  3111. "name": "David Flores",
  3112. "email": "dmousex@gmail.com",
  3113. "homepage": "http://dmouse.net"
  3114. },
  3115. {
  3116. "name": "Jesus Manuel Olivas",
  3117. "email": "jesus.olivas@gmail.com",
  3118. "homepage": "http://jmolivas.com"
  3119. },
  3120. {
  3121. "name": "Eduardo Garcia",
  3122. "email": "enzo@enzolutions.com",
  3123. "homepage": "http://enzolutions.com/"
  3124. },
  3125. {
  3126. "name": "Omar Aguirre",
  3127. "email": "omersguchigu@gmail.com"
  3128. },
  3129. {
  3130. "name": "Drupal Console Contributors",
  3131. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3132. }
  3133. ],
  3134. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3135. "homepage": "http://drupalconsole.com/",
  3136. "keywords": [
  3137. "console",
  3138. "development",
  3139. "drupal",
  3140. "symfony"
  3141. ],
  3142. "funding": [
  3143. {
  3144. "url": "https://opencollective.com/drupalconsole",
  3145. "type": "open_collective"
  3146. }
  3147. ],
  3148. "time": "2020-11-30T02:09:53+00:00"
  3149. },
  3150. {
  3151. "name": "drupal/console-core",
  3152. "version": "1.9.7",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3156. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3161. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3162. "shasum": ""
  3163. },
  3164. "require": {
  3165. "dflydev/dot-access-configuration": "^1.0",
  3166. "drupal/console-en": "1.9.7",
  3167. "guzzlehttp/guzzle": "~6.1",
  3168. "php": ">=7.0.8",
  3169. "stecman/symfony-console-completion": "~0.7",
  3170. "symfony/config": "~3.0|^4.4",
  3171. "symfony/console": "~3.0|^4.4",
  3172. "symfony/debug": "~3.0|^4.4",
  3173. "symfony/dependency-injection": "~3.0|^4.4",
  3174. "symfony/event-dispatcher": "~3.0|^4.4",
  3175. "symfony/filesystem": "~3.0|^4.4",
  3176. "symfony/finder": "~3.0|^4.4",
  3177. "symfony/process": "~3.0|^4.4",
  3178. "symfony/translation": "~3.0|^4.4",
  3179. "symfony/yaml": "~3.0|^4.4",
  3180. "twig/twig": "^1.38.2|^2.12.0",
  3181. "webflo/drupal-finder": "^1.0",
  3182. "webmozart/path-util": "^2.3"
  3183. },
  3184. "type": "library",
  3185. "autoload": {
  3186. "files": [
  3187. "src/functions.php"
  3188. ],
  3189. "psr-4": {
  3190. "Drupal\\Console\\Core\\": "src"
  3191. }
  3192. },
  3193. "notification-url": "https://packagist.org/downloads/",
  3194. "license": [
  3195. "GPL-2.0-or-later"
  3196. ],
  3197. "authors": [
  3198. {
  3199. "name": "David Flores",
  3200. "email": "dmousex@gmail.com",
  3201. "homepage": "http://dmouse.net"
  3202. },
  3203. {
  3204. "name": "Jesus Manuel Olivas",
  3205. "email": "jesus.olivas@gmail.com",
  3206. "homepage": "http://jmolivas.com"
  3207. },
  3208. {
  3209. "name": "Eduardo Garcia",
  3210. "email": "enzo@enzolutions.com",
  3211. "homepage": "http://enzolutions.com/"
  3212. },
  3213. {
  3214. "name": "Omar Aguirre",
  3215. "email": "omersguchigu@gmail.com"
  3216. },
  3217. {
  3218. "name": "Drupal Console Contributors",
  3219. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3220. }
  3221. ],
  3222. "description": "Drupal Console Core",
  3223. "homepage": "http://drupalconsole.com/",
  3224. "keywords": [
  3225. "console",
  3226. "development",
  3227. "drupal",
  3228. "symfony"
  3229. ],
  3230. "time": "2020-11-30T01:45:57+00:00"
  3231. },
  3232. {
  3233. "name": "drupal/console-en",
  3234. "version": "v1.9.7",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3238. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3243. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3244. "shasum": ""
  3245. },
  3246. "type": "library",
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "GPL-2.0-or-later"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "David Flores",
  3254. "email": "dmousex@gmail.com",
  3255. "homepage": "http://dmouse.net"
  3256. },
  3257. {
  3258. "name": "Jesus Manuel Olivas",
  3259. "email": "jesus.olivas@gmail.com",
  3260. "homepage": "http://jmolivas.com"
  3261. },
  3262. {
  3263. "name": "Eduardo Garcia",
  3264. "email": "enzo@enzolutions.com",
  3265. "homepage": "http://enzolutions.com/"
  3266. },
  3267. {
  3268. "name": "Omar Aguirre",
  3269. "email": "omersguchigu@gmail.com"
  3270. },
  3271. {
  3272. "name": "Drupal Console Contributors",
  3273. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3274. }
  3275. ],
  3276. "description": "Drupal Console English Language",
  3277. "homepage": "http://drupalconsole.com/",
  3278. "keywords": [
  3279. "console",
  3280. "development",
  3281. "drupal",
  3282. "symfony"
  3283. ],
  3284. "time": "2020-08-15T03:34:54+00:00"
  3285. },
  3286. {
  3287. "name": "drupal/console-extend-plugin",
  3288. "version": "0.9.5",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3292. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3297. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "composer-plugin-api": "^1.0 || ^2.0",
  3302. "composer/installers": "^1.2",
  3303. "symfony/finder": "~3.0|^4.4",
  3304. "symfony/yaml": "~3.0|^4.4"
  3305. },
  3306. "type": "composer-plugin",
  3307. "extra": {
  3308. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3309. },
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "GPL-2.0+"
  3318. ],
  3319. "authors": [
  3320. {
  3321. "name": "Jesus Manuel Olivas",
  3322. "email": "jesus.olivas@gmail.com"
  3323. }
  3324. ],
  3325. "description": "Drupal Console Extend Plugin",
  3326. "time": "2020-11-18T00:15:28+00:00"
  3327. },
  3328. {
  3329. "name": "drupal/content_lock",
  3330. "version": "2.2.0",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://git.drupalcode.org/project/content_lock.git",
  3334. "reference": "8.x-2.2"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3339. "reference": "8.x-2.2",
  3340. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3341. },
  3342. "require": {
  3343. "drupal/core": "^8.8|^9.0"
  3344. },
  3345. "require-dev": {
  3346. "drupal/conflict": "^2.0@ALPHA",
  3347. "drupal/prefetch_cache": "dev-1.x"
  3348. },
  3349. "type": "drupal-module",
  3350. "extra": {
  3351. "drupal": {
  3352. "version": "8.x-2.2",
  3353. "datestamp": "1607936866",
  3354. "security-coverage": {
  3355. "status": "covered",
  3356. "message": "Covered by Drupal's security advisory policy"
  3357. }
  3358. }
  3359. },
  3360. "notification-url": "https://packages.drupal.org/8/downloads",
  3361. "license": [
  3362. "GPL-2.0-or-later"
  3363. ],
  3364. "authors": [
  3365. {
  3366. "name": "chr.fritsch",
  3367. "homepage": "https://www.drupal.org/user/2103716"
  3368. },
  3369. {
  3370. "name": "ergonlogic",
  3371. "homepage": "https://www.drupal.org/user/368613"
  3372. },
  3373. {
  3374. "name": "mfb",
  3375. "homepage": "https://www.drupal.org/user/12302"
  3376. },
  3377. {
  3378. "name": "pandaski",
  3379. "homepage": "https://www.drupal.org/user/1987218"
  3380. }
  3381. ],
  3382. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3383. "homepage": "https://www.drupal.org/project/content_lock",
  3384. "support": {
  3385. "source": "https://git.drupalcode.org/project/content_lock"
  3386. }
  3387. },
  3388. {
  3389. "name": "drupal/context",
  3390. "version": "4.0.0-beta5",
  3391. "source": {
  3392. "type": "git",
  3393. "url": "https://git.drupalcode.org/project/context.git",
  3394. "reference": "8.x-4.0-beta5"
  3395. },
  3396. "dist": {
  3397. "type": "zip",
  3398. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta5.zip",
  3399. "reference": "8.x-4.0-beta5",
  3400. "shasum": "893d7e6ce07b23764baa6fd609da811ec80c5a04"
  3401. },
  3402. "require": {
  3403. "drupal/core": "^8.8 || ^9"
  3404. },
  3405. "type": "drupal-module",
  3406. "extra": {
  3407. "drupal": {
  3408. "version": "8.x-4.0-beta5",
  3409. "datestamp": "1600783508",
  3410. "security-coverage": {
  3411. "status": "not-covered",
  3412. "message": "Beta releases are not covered by Drupal security advisories."
  3413. }
  3414. }
  3415. },
  3416. "notification-url": "https://packages.drupal.org/8/downloads",
  3417. "license": [
  3418. "MIT"
  3419. ],
  3420. "authors": [
  3421. {
  3422. "name": "Christoffer Palm",
  3423. "homepage": "http://www.oddhill.se/",
  3424. "email": "christoffer.palm@oddhill.se",
  3425. "role": "Developer"
  3426. },
  3427. {
  3428. "name": "Steven Jones",
  3429. "homepage": "https://www.drupal.org/user/99644"
  3430. },
  3431. {
  3432. "name": "alex_b",
  3433. "homepage": "https://www.drupal.org/user/53995"
  3434. },
  3435. {
  3436. "name": "boshtian",
  3437. "homepage": "https://www.drupal.org/user/1773456"
  3438. },
  3439. {
  3440. "name": "colan",
  3441. "homepage": "https://www.drupal.org/user/58704"
  3442. },
  3443. {
  3444. "name": "emanaton",
  3445. "homepage": "https://www.drupal.org/user/120853"
  3446. },
  3447. {
  3448. "name": "febbraro",
  3449. "homepage": "https://www.drupal.org/user/43670"
  3450. },
  3451. {
  3452. "name": "fizk",
  3453. "homepage": "https://www.drupal.org/user/473174"
  3454. },
  3455. {
  3456. "name": "hass",
  3457. "homepage": "https://www.drupal.org/user/85918"
  3458. },
  3459. {
  3460. "name": "hefox",
  3461. "homepage": "https://www.drupal.org/user/426416"
  3462. },
  3463. {
  3464. "name": "jmiccolis",
  3465. "homepage": "https://www.drupal.org/user/31731"
  3466. },
  3467. {
  3468. "name": "nedjo",
  3469. "homepage": "https://www.drupal.org/user/4481"
  3470. },
  3471. {
  3472. "name": "patricksettle",
  3473. "homepage": "https://www.drupal.org/user/26618"
  3474. },
  3475. {
  3476. "name": "paulocs",
  3477. "homepage": "https://www.drupal.org/user/3640109"
  3478. },
  3479. {
  3480. "name": "tekante",
  3481. "homepage": "https://www.drupal.org/user/640024"
  3482. },
  3483. {
  3484. "name": "yhahn",
  3485. "homepage": "https://www.drupal.org/user/264833"
  3486. }
  3487. ],
  3488. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3489. "homepage": "https://github.com/oddhill/context",
  3490. "keywords": [
  3491. "Drupal",
  3492. "block",
  3493. "conditions",
  3494. "context",
  3495. "visibility"
  3496. ],
  3497. "support": {
  3498. "source": "https://github.com/oddhill/context",
  3499. "issues": "https://github.com/oddhill/context/issues",
  3500. "docs": "https://github.com/oddhill/context"
  3501. }
  3502. },
  3503. {
  3504. "name": "drupal/core",
  3505. "version": "9.1.4",
  3506. "source": {
  3507. "type": "git",
  3508. "url": "https://github.com/drupal/core.git",
  3509. "reference": "d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4"
  3510. },
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "https://api.github.com/repos/drupal/core/zipball/d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4",
  3514. "reference": "d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4",
  3515. "shasum": ""
  3516. },
  3517. "require": {
  3518. "asm89/stack-cors": "^1.1",
  3519. "composer/semver": "^3.0",
  3520. "doctrine/annotations": "^1.4",
  3521. "doctrine/reflection": "^1.1",
  3522. "egulias/email-validator": "^2.0",
  3523. "ext-date": "*",
  3524. "ext-dom": "*",
  3525. "ext-filter": "*",
  3526. "ext-gd": "*",
  3527. "ext-hash": "*",
  3528. "ext-json": "*",
  3529. "ext-pcre": "*",
  3530. "ext-pdo": "*",
  3531. "ext-session": "*",
  3532. "ext-simplexml": "*",
  3533. "ext-spl": "*",
  3534. "ext-tokenizer": "*",
  3535. "ext-xml": "*",
  3536. "guzzlehttp/guzzle": "^6.5.2",
  3537. "laminas/laminas-diactoros": "^2.1",
  3538. "laminas/laminas-feed": "^2.12",
  3539. "masterminds/html5": "^2.1",
  3540. "pear/archive_tar": "^1.4.12",
  3541. "php": ">=7.3.0",
  3542. "psr/log": "^1.0",
  3543. "stack/builder": "^1.0",
  3544. "symfony-cmf/routing": "^2.1",
  3545. "symfony/console": "^4.4",
  3546. "symfony/dependency-injection": "^4.4",
  3547. "symfony/event-dispatcher": "^4.4",
  3548. "symfony/http-foundation": "^4.4.7",
  3549. "symfony/http-kernel": "^4.4",
  3550. "symfony/polyfill-iconv": "^1.0",
  3551. "symfony/process": "^4.4",
  3552. "symfony/psr-http-message-bridge": "^2.0",
  3553. "symfony/routing": "^4.4",
  3554. "symfony/serializer": "^4.4",
  3555. "symfony/translation": "^4.4",
  3556. "symfony/validator": "^4.4",
  3557. "symfony/yaml": "^4.4",
  3558. "twig/twig": "^2.12.0",
  3559. "typo3/phar-stream-wrapper": "^3.1.3"
  3560. },
  3561. "conflict": {
  3562. "drush/drush": "<8.1.10"
  3563. },
  3564. "replace": {
  3565. "drupal/action": "self.version",
  3566. "drupal/aggregator": "self.version",
  3567. "drupal/automated_cron": "self.version",
  3568. "drupal/ban": "self.version",
  3569. "drupal/bartik": "self.version",
  3570. "drupal/basic_auth": "self.version",
  3571. "drupal/big_pipe": "self.version",
  3572. "drupal/block": "self.version",
  3573. "drupal/block_content": "self.version",
  3574. "drupal/book": "self.version",
  3575. "drupal/breakpoint": "self.version",
  3576. "drupal/ckeditor": "self.version",
  3577. "drupal/claro": "self.version",
  3578. "drupal/classy": "self.version",
  3579. "drupal/color": "self.version",
  3580. "drupal/comment": "self.version",
  3581. "drupal/config": "self.version",
  3582. "drupal/config_translation": "self.version",
  3583. "drupal/contact": "self.version",
  3584. "drupal/content_moderation": "self.version",
  3585. "drupal/content_translation": "self.version",
  3586. "drupal/contextual": "self.version",
  3587. "drupal/core-annotation": "self.version",
  3588. "drupal/core-assertion": "self.version",
  3589. "drupal/core-bridge": "self.version",
  3590. "drupal/core-class-finder": "self.version",
  3591. "drupal/core-datetime": "self.version",
  3592. "drupal/core-dependency-injection": "self.version",
  3593. "drupal/core-diff": "self.version",
  3594. "drupal/core-discovery": "self.version",
  3595. "drupal/core-event-dispatcher": "self.version",
  3596. "drupal/core-file-cache": "self.version",
  3597. "drupal/core-file-security": "self.version",
  3598. "drupal/core-filesystem": "self.version",
  3599. "drupal/core-front-matter": "self.version",
  3600. "drupal/core-gettext": "self.version",
  3601. "drupal/core-graph": "self.version",
  3602. "drupal/core-http-foundation": "self.version",
  3603. "drupal/core-php-storage": "self.version",
  3604. "drupal/core-plugin": "self.version",
  3605. "drupal/core-proxy-builder": "self.version",
  3606. "drupal/core-render": "self.version",
  3607. "drupal/core-serialization": "self.version",
  3608. "drupal/core-transliteration": "self.version",
  3609. "drupal/core-utility": "self.version",
  3610. "drupal/core-uuid": "self.version",
  3611. "drupal/core-version": "self.version",
  3612. "drupal/datetime": "self.version",
  3613. "drupal/datetime_range": "self.version",
  3614. "drupal/dblog": "self.version",
  3615. "drupal/dynamic_page_cache": "self.version",
  3616. "drupal/editor": "self.version",
  3617. "drupal/entity_reference": "self.version",
  3618. "drupal/field": "self.version",
  3619. "drupal/field_layout": "self.version",
  3620. "drupal/field_ui": "self.version",
  3621. "drupal/file": "self.version",
  3622. "drupal/filter": "self.version",
  3623. "drupal/forum": "self.version",
  3624. "drupal/hal": "self.version",
  3625. "drupal/help": "self.version",
  3626. "drupal/help_topics": "self.version",
  3627. "drupal/history": "self.version",
  3628. "drupal/image": "self.version",
  3629. "drupal/inline_form_errors": "self.version",
  3630. "drupal/jsonapi": "self.version",
  3631. "drupal/language": "self.version",
  3632. "drupal/layout_builder": "self.version",
  3633. "drupal/layout_discovery": "self.version",
  3634. "drupal/link": "self.version",
  3635. "drupal/locale": "self.version",
  3636. "drupal/media": "self.version",
  3637. "drupal/media_library": "self.version",
  3638. "drupal/menu_link_content": "self.version",
  3639. "drupal/menu_ui": "self.version",
  3640. "drupal/migrate": "self.version",
  3641. "drupal/migrate_drupal": "self.version",
  3642. "drupal/migrate_drupal_multilingual": "self.version",
  3643. "drupal/migrate_drupal_ui": "self.version",
  3644. "drupal/minimal": "self.version",
  3645. "drupal/node": "self.version",
  3646. "drupal/olivero": "self.version",
  3647. "drupal/options": "self.version",
  3648. "drupal/page_cache": "self.version",
  3649. "drupal/path": "self.version",
  3650. "drupal/path_alias": "self.version",
  3651. "drupal/quickedit": "self.version",
  3652. "drupal/rdf": "self.version",
  3653. "drupal/responsive_image": "self.version",
  3654. "drupal/rest": "self.version",
  3655. "drupal/search": "self.version",
  3656. "drupal/serialization": "self.version",
  3657. "drupal/settings_tray": "self.version",
  3658. "drupal/seven": "self.version",
  3659. "drupal/shortcut": "self.version",
  3660. "drupal/standard": "self.version",
  3661. "drupal/stark": "self.version",
  3662. "drupal/statistics": "self.version",
  3663. "drupal/syslog": "self.version",
  3664. "drupal/system": "self.version",
  3665. "drupal/taxonomy": "self.version",
  3666. "drupal/telephone": "self.version",
  3667. "drupal/text": "self.version",
  3668. "drupal/toolbar": "self.version",
  3669. "drupal/tour": "self.version",
  3670. "drupal/tracker": "self.version",
  3671. "drupal/update": "self.version",
  3672. "drupal/user": "self.version",
  3673. "drupal/views": "self.version",
  3674. "drupal/views_ui": "self.version",
  3675. "drupal/workflows": "self.version",
  3676. "drupal/workspaces": "self.version"
  3677. },
  3678. "type": "drupal-core",
  3679. "extra": {
  3680. "drupal-scaffold": {
  3681. "file-mapping": {
  3682. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3683. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3684. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3685. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3686. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3687. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3688. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3689. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3690. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3691. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3692. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3693. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3694. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3695. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3696. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3697. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3698. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3699. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3700. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3701. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3702. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3703. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3704. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3705. }
  3706. }
  3707. },
  3708. "autoload": {
  3709. "psr-4": {
  3710. "Drupal\\Core\\": "lib/Drupal/Core",
  3711. "Drupal\\Component\\": "lib/Drupal/Component",
  3712. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3713. },
  3714. "classmap": [
  3715. "lib/Drupal.php",
  3716. "lib/Drupal/Component/DependencyInjection/Container.php",
  3717. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3718. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3719. "lib/Drupal/Component/Utility/Timer.php",
  3720. "lib/Drupal/Component/Utility/Unicode.php",
  3721. "lib/Drupal/Core/Cache/Cache.php",
  3722. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3723. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3724. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3725. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3726. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3727. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3728. "lib/Drupal/Core/Database/Connection.php",
  3729. "lib/Drupal/Core/Database/Database.php",
  3730. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3731. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3732. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3733. "lib/Drupal/Core/Database/Statement.php",
  3734. "lib/Drupal/Core/Database/StatementInterface.php",
  3735. "lib/Drupal/Core/DependencyInjection/Container.php",
  3736. "lib/Drupal/Core/DrupalKernel.php",
  3737. "lib/Drupal/Core/DrupalKernelInterface.php",
  3738. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3739. "lib/Drupal/Core/Site/Settings.php"
  3740. ],
  3741. "files": [
  3742. "includes/bootstrap.inc"
  3743. ]
  3744. },
  3745. "notification-url": "https://packagist.org/downloads/",
  3746. "license": [
  3747. "GPL-2.0-or-later"
  3748. ],
  3749. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3750. "time": "2021-02-03T19:21:05+00:00"
  3751. },
  3752. {
  3753. "name": "drupal/core-composer-scaffold",
  3754. "version": "9.1.4",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3758. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3763. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3764. "shasum": ""
  3765. },
  3766. "require": {
  3767. "composer-plugin-api": "^1 || ^2",
  3768. "php": ">=7.3.0"
  3769. },
  3770. "conflict": {
  3771. "drupal-composer/drupal-scaffold": "*"
  3772. },
  3773. "require-dev": {
  3774. "composer/composer": "^1.8@stable"
  3775. },
  3776. "type": "composer-plugin",
  3777. "extra": {
  3778. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3779. "branch-alias": {
  3780. "dev-master": "1.0.x-dev"
  3781. }
  3782. },
  3783. "autoload": {
  3784. "psr-4": {
  3785. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3786. }
  3787. },
  3788. "notification-url": "https://packagist.org/downloads/",
  3789. "license": [
  3790. "GPL-2.0-or-later"
  3791. ],
  3792. "description": "A flexible Composer project scaffold builder.",
  3793. "homepage": "https://www.drupal.org/project/drupal",
  3794. "keywords": [
  3795. "drupal"
  3796. ],
  3797. "time": "2020-08-07T22:30:13+00:00"
  3798. },
  3799. {
  3800. "name": "drupal/core-project-message",
  3801. "version": "9.1.4",
  3802. "source": {
  3803. "type": "git",
  3804. "url": "https://github.com/drupal/core-project-message.git",
  3805. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3806. },
  3807. "dist": {
  3808. "type": "zip",
  3809. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3810. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3811. "shasum": ""
  3812. },
  3813. "require": {
  3814. "composer-plugin-api": "^1.1 || ^2",
  3815. "php": ">=7.3.0"
  3816. },
  3817. "type": "composer-plugin",
  3818. "extra": {
  3819. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3820. },
  3821. "autoload": {
  3822. "psr-4": {
  3823. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3824. }
  3825. },
  3826. "notification-url": "https://packagist.org/downloads/",
  3827. "license": [
  3828. "GPL-2.0-or-later"
  3829. ],
  3830. "description": "Adds a message after Composer installation.",
  3831. "homepage": "https://www.drupal.org/project/drupal",
  3832. "keywords": [
  3833. "drupal"
  3834. ],
  3835. "time": "2020-09-14T13:40:36+00:00"
  3836. },
  3837. {
  3838. "name": "drupal/core-recommended",
  3839. "version": "9.1.4",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/drupal/core-recommended.git",
  3843. "reference": "e48e05b546b0ebef74af26a6d3104dd3bd499202"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/e48e05b546b0ebef74af26a6d3104dd3bd499202",
  3848. "reference": "e48e05b546b0ebef74af26a6d3104dd3bd499202",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "asm89/stack-cors": "1.3.0",
  3853. "composer/semver": "3.2.2",
  3854. "doctrine/annotations": "1.11.1",
  3855. "doctrine/lexer": "1.2.1",
  3856. "doctrine/reflection": "1.2.2",
  3857. "drupal/core": "9.1.4",
  3858. "egulias/email-validator": "2.1.22",
  3859. "guzzlehttp/guzzle": "6.5.5",
  3860. "guzzlehttp/promises": "1.4.0",
  3861. "guzzlehttp/psr7": "1.7.0",
  3862. "laminas/laminas-diactoros": "2.5.0",
  3863. "laminas/laminas-escaper": "2.7.0",
  3864. "laminas/laminas-feed": "2.13.0",
  3865. "laminas/laminas-stdlib": "3.3.0",
  3866. "laminas/laminas-zendframework-bridge": "1.1.1",
  3867. "masterminds/html5": "2.7.4",
  3868. "pear/archive_tar": "1.4.12",
  3869. "pear/console_getopt": "v1.4.3",
  3870. "pear/pear-core-minimal": "v1.10.10",
  3871. "pear/pear_exception": "v1.0.1",
  3872. "psr/container": "1.0.0",
  3873. "psr/http-factory": "1.0.1",
  3874. "psr/http-message": "1.0.1",
  3875. "psr/log": "1.1.3",
  3876. "ralouphie/getallheaders": "3.0.3",
  3877. "stack/builder": "v1.0.6",
  3878. "symfony-cmf/routing": "2.3.3",
  3879. "symfony/console": "v4.4.16",
  3880. "symfony/debug": "v4.4.16",
  3881. "symfony/dependency-injection": "v4.4.16",
  3882. "symfony/error-handler": "v4.4.16",
  3883. "symfony/event-dispatcher": "v4.4.16",
  3884. "symfony/event-dispatcher-contracts": "v1.1.9",
  3885. "symfony/http-client-contracts": "v2.3.1",
  3886. "symfony/http-foundation": "v4.4.16",
  3887. "symfony/http-kernel": "v4.4.16",
  3888. "symfony/mime": "v5.1.8",
  3889. "symfony/polyfill-ctype": "v1.20.0",
  3890. "symfony/polyfill-iconv": "v1.20.0",
  3891. "symfony/polyfill-intl-idn": "v1.20.0",
  3892. "symfony/polyfill-intl-normalizer": "v1.20.0",
  3893. "symfony/polyfill-mbstring": "v1.20.0",
  3894. "symfony/polyfill-php80": "v1.20.0",
  3895. "symfony/process": "v4.4.16",
  3896. "symfony/psr-http-message-bridge": "v2.0.2",
  3897. "symfony/routing": "v4.4.16",
  3898. "symfony/serializer": "v4.4.16",
  3899. "symfony/service-contracts": "v2.2.0",
  3900. "symfony/translation": "v4.4.16",
  3901. "symfony/translation-contracts": "v2.3.0",
  3902. "symfony/validator": "v4.4.16",
  3903. "symfony/var-dumper": "v5.1.8",
  3904. "symfony/yaml": "v4.4.16",
  3905. "twig/twig": "v2.14.1",
  3906. "typo3/phar-stream-wrapper": "v3.1.6"
  3907. },
  3908. "conflict": {
  3909. "webflo/drupal-core-strict": "*"
  3910. },
  3911. "type": "metapackage",
  3912. "notification-url": "https://packagist.org/downloads/",
  3913. "license": [
  3914. "GPL-2.0-or-later"
  3915. ],
  3916. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  3917. "time": "2021-02-03T19:21:05+00:00"
  3918. },
  3919. {
  3920. "name": "drupal/cshs",
  3921. "version": "dev-1.x",
  3922. "source": {
  3923. "type": "git",
  3924. "url": "https://git.drupalcode.org/project/cshs.git",
  3925. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  3926. },
  3927. "require": {
  3928. "drupal/core": "^8 || ^9"
  3929. },
  3930. "type": "drupal-module",
  3931. "extra": {
  3932. "branch-alias": {
  3933. "dev-1.x": "1.x-dev"
  3934. },
  3935. "drupal": {
  3936. "version": "8.x-1.2+4-dev",
  3937. "datestamp": "1607678639",
  3938. "security-coverage": {
  3939. "status": "not-covered",
  3940. "message": "Dev releases are not covered by Drupal security advisories."
  3941. }
  3942. }
  3943. },
  3944. "notification-url": "https://packages.drupal.org/8/downloads",
  3945. "license": [
  3946. "GPL-2.0-or-later"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "Walter Jenner",
  3951. "homepage": "https://drupal.org/u/valderama"
  3952. },
  3953. {
  3954. "name": "Sergii Bondarenko",
  3955. "homepage": "https://drupal.org/u/BR0kEN",
  3956. "email": "sb@firstvector.org"
  3957. },
  3958. {
  3959. "name": "Daneel Cruz",
  3960. "homepage": "https://drupal.org/u/daneelcm"
  3961. },
  3962. {
  3963. "name": "Purushotam Rai",
  3964. "homepage": "https://drupal.org/u/purushotam.rai"
  3965. }
  3966. ],
  3967. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3968. "homepage": "https://www.drupal.org/project/cshs",
  3969. "keywords": [
  3970. "client-side-select",
  3971. "hierarchical-select",
  3972. "module",
  3973. "select",
  3974. "taxonomy"
  3975. ],
  3976. "support": {
  3977. "source": "https://git.drupalcode.org/project/cshs",
  3978. "issues": "https://www.drupal.org/project/issues/cshs"
  3979. },
  3980. "time": "2020-12-11T09:23:35+00:00"
  3981. },
  3982. {
  3983. "name": "drupal/ctools",
  3984. "version": "3.4.0",
  3985. "source": {
  3986. "type": "git",
  3987. "url": "https://git.drupalcode.org/project/ctools.git",
  3988. "reference": "8.x-3.4"
  3989. },
  3990. "dist": {
  3991. "type": "zip",
  3992. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  3993. "reference": "8.x-3.4",
  3994. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  3995. },
  3996. "require": {
  3997. "drupal/core": "^8.7.7 || ^9"
  3998. },
  3999. "type": "drupal-module",
  4000. "extra": {
  4001. "drupal": {
  4002. "version": "8.x-3.4",
  4003. "datestamp": "1585763383",
  4004. "security-coverage": {
  4005. "status": "covered",
  4006. "message": "Covered by Drupal's security advisory policy"
  4007. }
  4008. }
  4009. },
  4010. "notification-url": "https://packages.drupal.org/8/downloads",
  4011. "license": [
  4012. "GPL-2.0+"
  4013. ],
  4014. "authors": [
  4015. {
  4016. "name": "Kris Vanderwater (EclipseGc)",
  4017. "homepage": "https://www.drupal.org/u/eclipsegc",
  4018. "role": "Maintainer"
  4019. },
  4020. {
  4021. "name": "Jakob Perry (japerry)",
  4022. "homepage": "https://www.drupal.org/u/japerry",
  4023. "role": "Maintainer"
  4024. },
  4025. {
  4026. "name": "Tim Plunkett (tim.plunkett)",
  4027. "homepage": "https://www.drupal.org/u/timplunkett",
  4028. "role": "Maintainer"
  4029. },
  4030. {
  4031. "name": "James Gilliland (neclimdul)",
  4032. "homepage": "https://www.drupal.org/u/neclimdul",
  4033. "role": "Maintainer"
  4034. },
  4035. {
  4036. "name": "Daniel Wehner (dawehner)",
  4037. "homepage": "https://www.drupal.org/u/dawehner",
  4038. "role": "Maintainer"
  4039. },
  4040. {
  4041. "name": "joelpittet",
  4042. "homepage": "https://www.drupal.org/user/160302"
  4043. },
  4044. {
  4045. "name": "merlinofchaos",
  4046. "homepage": "https://www.drupal.org/user/26979"
  4047. },
  4048. {
  4049. "name": "neclimdul",
  4050. "homepage": "https://www.drupal.org/user/48673"
  4051. },
  4052. {
  4053. "name": "sdboyer",
  4054. "homepage": "https://www.drupal.org/user/146719"
  4055. },
  4056. {
  4057. "name": "sun",
  4058. "homepage": "https://www.drupal.org/user/54136"
  4059. },
  4060. {
  4061. "name": "tim.plunkett",
  4062. "homepage": "https://www.drupal.org/user/241634"
  4063. }
  4064. ],
  4065. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4066. "homepage": "https://www.drupal.org/project/ctools",
  4067. "support": {
  4068. "source": "https://git.drupalcode.org/project/ctools",
  4069. "issues": "https://www.drupal.org/project/issues/ctools"
  4070. }
  4071. },
  4072. {
  4073. "name": "drupal/date_range_formatter",
  4074. "version": "dev-9.0.x",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4078. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4079. },
  4080. "require": {
  4081. "drupal/core": "^8 || ^9"
  4082. },
  4083. "type": "drupal-module",
  4084. "extra": {
  4085. "branch-alias": {
  4086. "dev-9.0.x": "9.0.x-dev"
  4087. },
  4088. "drupal": {
  4089. "version": "9.0.x-dev",
  4090. "datestamp": "1589956448",
  4091. "security-coverage": {
  4092. "status": "not-covered",
  4093. "message": "Dev releases are not covered by Drupal security advisories."
  4094. }
  4095. }
  4096. },
  4097. "notification-url": "https://packages.drupal.org/8/downloads",
  4098. "license": [
  4099. "GPL-2.0-or-later"
  4100. ],
  4101. "authors": [
  4102. {
  4103. "name": "maximpodorov",
  4104. "homepage": "https://www.drupal.org/user/515310"
  4105. },
  4106. {
  4107. "name": "sudishth",
  4108. "homepage": "https://www.drupal.org/user/1440562"
  4109. }
  4110. ],
  4111. "description": "Formats date ranges.",
  4112. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4113. "support": {
  4114. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4115. },
  4116. "time": "2020-05-20T06:32:37+00:00"
  4117. },
  4118. {
  4119. "name": "drupal/devel",
  4120. "version": "4.1.1",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://git.drupalcode.org/project/devel.git",
  4124. "reference": "4.1.1"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4129. "reference": "4.1.1",
  4130. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4131. },
  4132. "require": {
  4133. "doctrine/common": "^2.7",
  4134. "drupal/core": "^8.8 || ^9",
  4135. "symfony/var-dumper": "^4 || ^5"
  4136. },
  4137. "conflict": {
  4138. "kint-php/kint": "<3"
  4139. },
  4140. "require-dev": {
  4141. "drush/drush": "^10"
  4142. },
  4143. "suggest": {
  4144. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4145. },
  4146. "type": "drupal-module",
  4147. "extra": {
  4148. "drupal": {
  4149. "version": "4.1.1",
  4150. "datestamp": "1609419527",
  4151. "security-coverage": {
  4152. "status": "covered",
  4153. "message": "Covered by Drupal's security advisory policy"
  4154. }
  4155. },
  4156. "drush": {
  4157. "services": {
  4158. "drush.services.yml": "^9 || ^10"
  4159. }
  4160. }
  4161. },
  4162. "notification-url": "https://packages.drupal.org/8/downloads",
  4163. "license": [
  4164. "GPL-2.0-or-later"
  4165. ],
  4166. "authors": [
  4167. {
  4168. "name": "drupalspoons",
  4169. "homepage": "https://www.drupal.org/user/3647684"
  4170. },
  4171. {
  4172. "name": "moshe weitzman",
  4173. "homepage": "https://www.drupal.org/user/23"
  4174. }
  4175. ],
  4176. "description": "Various blocks, pages, and functions for developers.",
  4177. "homepage": "https://www.drupal.org/project/devel",
  4178. "support": {
  4179. "source": "https://gitlab.com/drupalspoons/devel",
  4180. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4181. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4182. }
  4183. },
  4184. {
  4185. "name": "drupal/domain",
  4186. "version": "dev-1.x",
  4187. "source": {
  4188. "type": "git",
  4189. "url": "https://git.drupalcode.org/project/domain.git",
  4190. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4191. },
  4192. "require": {
  4193. "drupal/core": "^8 || ^9"
  4194. },
  4195. "require-dev": {
  4196. "drupal/domain_access": "*",
  4197. "drupal/domain_config": "*"
  4198. },
  4199. "type": "drupal-module",
  4200. "extra": {
  4201. "branch-alias": {
  4202. "dev-1.x": "1.x-dev"
  4203. },
  4204. "drupal": {
  4205. "version": "8.x-1.x-dev",
  4206. "datestamp": "1603119924",
  4207. "security-coverage": {
  4208. "status": "not-covered",
  4209. "message": "Dev releases are not covered by Drupal security advisories."
  4210. }
  4211. }
  4212. },
  4213. "notification-url": "https://packages.drupal.org/8/downloads",
  4214. "license": [
  4215. "GPL-2.0-or-later"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "agentrickard",
  4220. "homepage": "https://www.drupal.org/user/20975"
  4221. },
  4222. {
  4223. "name": "nonsie",
  4224. "homepage": "https://www.drupal.org/user/29899"
  4225. }
  4226. ],
  4227. "description": "Creates domain records within a Drupal installation.",
  4228. "homepage": "https://www.drupal.org/project/domain",
  4229. "support": {
  4230. "source": "https://git.drupalcode.org/project/domain"
  4231. },
  4232. "time": "2020-11-18T18:57:19+00:00"
  4233. },
  4234. {
  4235. "name": "drupal/domain_alias",
  4236. "version": "dev-1.x",
  4237. "require": {
  4238. "drupal/core": "^8 || ^9",
  4239. "drupal/domain": "*"
  4240. },
  4241. "type": "metapackage",
  4242. "extra": {
  4243. "branch-alias": {
  4244. "dev-1.x": "1.x-dev"
  4245. },
  4246. "drupal": {
  4247. "version": "8.x-1.x-dev",
  4248. "datestamp": "1603119924",
  4249. "security-coverage": {
  4250. "status": "not-covered",
  4251. "message": "Dev releases are not covered by Drupal security advisories."
  4252. }
  4253. }
  4254. },
  4255. "notification-url": "https://packages.drupal.org/8/downloads",
  4256. "license": [
  4257. "GPL-2.0-or-later"
  4258. ],
  4259. "authors": [
  4260. {
  4261. "name": "agentrickard",
  4262. "homepage": "https://www.drupal.org/user/20975"
  4263. },
  4264. {
  4265. "name": "nonsie",
  4266. "homepage": "https://www.drupal.org/user/29899"
  4267. }
  4268. ],
  4269. "description": "Maps multiple host requests to a single domain record.",
  4270. "homepage": "https://www.drupal.org/project/domain",
  4271. "support": {
  4272. "source": "https://git.drupalcode.org/project/domain"
  4273. }
  4274. },
  4275. {
  4276. "name": "drupal/domain_config",
  4277. "version": "dev-1.x",
  4278. "require": {
  4279. "drupal/core": "^8 || ^9",
  4280. "drupal/domain": "*"
  4281. },
  4282. "type": "metapackage",
  4283. "extra": {
  4284. "branch-alias": {
  4285. "dev-1.x": "1.x-dev"
  4286. },
  4287. "drupal": {
  4288. "version": "8.x-1.x-dev",
  4289. "datestamp": "1603119924",
  4290. "security-coverage": {
  4291. "status": "not-covered",
  4292. "message": "Dev releases are not covered by Drupal security advisories."
  4293. }
  4294. }
  4295. },
  4296. "notification-url": "https://packages.drupal.org/8/downloads",
  4297. "license": [
  4298. "GPL-2.0-or-later"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "agentrickard",
  4303. "homepage": "https://www.drupal.org/user/20975"
  4304. },
  4305. {
  4306. "name": "nonsie",
  4307. "homepage": "https://www.drupal.org/user/29899"
  4308. }
  4309. ],
  4310. "description": "Allows domain specific configuration.",
  4311. "homepage": "https://www.drupal.org/project/domain",
  4312. "support": {
  4313. "source": "https://git.drupalcode.org/project/domain"
  4314. }
  4315. },
  4316. {
  4317. "name": "drupal/domain_site_settings",
  4318. "version": "dev-1.x",
  4319. "source": {
  4320. "type": "git",
  4321. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4322. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4323. },
  4324. "require": {
  4325. "drupal/core": "^8 || ^9",
  4326. "drupal/domain": "*",
  4327. "drupal/domain_config": "*"
  4328. },
  4329. "type": "drupal-module",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-1.x": "1.x-dev"
  4333. },
  4334. "drupal": {
  4335. "version": "8.x-1.3+7-dev",
  4336. "datestamp": "1584297727",
  4337. "security-coverage": {
  4338. "status": "not-covered",
  4339. "message": "Dev releases are not covered by Drupal security advisories."
  4340. }
  4341. }
  4342. },
  4343. "notification-url": "https://packages.drupal.org/8/downloads",
  4344. "license": [
  4345. "GPL-2.0+"
  4346. ],
  4347. "authors": [
  4348. {
  4349. "name": "aloknarwaria",
  4350. "homepage": "https://www.drupal.org/user/906640"
  4351. },
  4352. {
  4353. "name": "malaynayak",
  4354. "homepage": "https://www.drupal.org/user/3529755"
  4355. }
  4356. ],
  4357. "description": "Basic Site Setting for Domains.",
  4358. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4359. "keywords": [
  4360. "Drupal"
  4361. ],
  4362. "support": {
  4363. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4364. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4365. },
  4366. "time": "2020-03-15T18:41:41+00:00"
  4367. },
  4368. {
  4369. "name": "drupal/email_registration",
  4370. "version": "1.1.0",
  4371. "source": {
  4372. "type": "git",
  4373. "url": "https://git.drupalcode.org/project/email_registration.git",
  4374. "reference": "8.x-1.1"
  4375. },
  4376. "dist": {
  4377. "type": "zip",
  4378. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4379. "reference": "8.x-1.1",
  4380. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4381. },
  4382. "require": {
  4383. "drupal/core": "^8.7.7 || ^9"
  4384. },
  4385. "conflict": {
  4386. "drupal/commerce": "<2.12"
  4387. },
  4388. "require-dev": {
  4389. "drupal/commerce": "^2.0"
  4390. },
  4391. "type": "drupal-module",
  4392. "extra": {
  4393. "drupal": {
  4394. "version": "8.x-1.1",
  4395. "datestamp": "1592317072",
  4396. "security-coverage": {
  4397. "status": "covered",
  4398. "message": "Covered by Drupal's security advisory policy"
  4399. }
  4400. }
  4401. },
  4402. "notification-url": "https://packages.drupal.org/8/downloads",
  4403. "license": [
  4404. "GPL-2.0-or-later"
  4405. ],
  4406. "authors": [
  4407. {
  4408. "name": "Greg Knaddison (greggles)",
  4409. "homepage": "https://www.drupal.org/u/greggles",
  4410. "role": "Maintainer"
  4411. },
  4412. {
  4413. "name": "Andrey Postnikov (andypost)",
  4414. "homepage": "https://www.drupal.org/u/andypost",
  4415. "role": "Maintainer"
  4416. },
  4417. {
  4418. "name": "Chris Herberte",
  4419. "homepage": "https://www.drupal.org/u/chris-herberte",
  4420. "role": "Maintainer"
  4421. },
  4422. {
  4423. "name": "Moshe Weitzman (moshe weitzman)",
  4424. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4425. "role": "Maintainer"
  4426. }
  4427. ],
  4428. "description": "Allows users to register with an email address as their username.",
  4429. "homepage": "https://www.drupal.org/project/email_registration",
  4430. "support": {
  4431. "source": "https://git.drupalcode.org/project/email_registration",
  4432. "issues": "http://drupal.org/project/issues/email_registration"
  4433. }
  4434. },
  4435. {
  4436. "name": "drupal/embed",
  4437. "version": "1.4.0",
  4438. "source": {
  4439. "type": "git",
  4440. "url": "https://git.drupalcode.org/project/embed.git",
  4441. "reference": "8.x-1.4"
  4442. },
  4443. "dist": {
  4444. "type": "zip",
  4445. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4446. "reference": "8.x-1.4",
  4447. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4448. },
  4449. "require": {
  4450. "drupal/core": "^8.7.7 || ^9"
  4451. },
  4452. "type": "drupal-module",
  4453. "extra": {
  4454. "drupal": {
  4455. "version": "8.x-1.4",
  4456. "datestamp": "1590176831",
  4457. "security-coverage": {
  4458. "status": "covered",
  4459. "message": "Covered by Drupal's security advisory policy"
  4460. }
  4461. }
  4462. },
  4463. "notification-url": "https://packages.drupal.org/8/downloads",
  4464. "license": [
  4465. "GPL-2.0-or-later"
  4466. ],
  4467. "authors": [
  4468. {
  4469. "name": "Dave Reid",
  4470. "homepage": "https://www.drupal.org/user/53892"
  4471. },
  4472. {
  4473. "name": "Devin Carlson",
  4474. "homepage": "https://www.drupal.org/user/290182"
  4475. },
  4476. {
  4477. "name": "Drupal Media Team",
  4478. "homepage": "https://www.drupal.org/user/3260690"
  4479. },
  4480. {
  4481. "name": "cs_shadow",
  4482. "homepage": "https://www.drupal.org/user/2828287"
  4483. },
  4484. {
  4485. "name": "phenaproxima",
  4486. "homepage": "https://www.drupal.org/user/205645"
  4487. },
  4488. {
  4489. "name": "slashrsm",
  4490. "homepage": "https://www.drupal.org/user/744628"
  4491. }
  4492. ],
  4493. "description": "Provides a framework for different types of embeds in text editors.",
  4494. "homepage": "https://www.drupal.org/project/embed",
  4495. "support": {
  4496. "source": "https://git.drupalcode.org/project/embed"
  4497. }
  4498. },
  4499. {
  4500. "name": "drupal/entity",
  4501. "version": "1.2.0",
  4502. "source": {
  4503. "type": "git",
  4504. "url": "https://git.drupalcode.org/project/entity.git",
  4505. "reference": "8.x-1.2"
  4506. },
  4507. "dist": {
  4508. "type": "zip",
  4509. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4510. "reference": "8.x-1.2",
  4511. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4512. },
  4513. "require": {
  4514. "drupal/core": "^8.8 || ^9"
  4515. },
  4516. "type": "drupal-module",
  4517. "extra": {
  4518. "drupal": {
  4519. "version": "8.x-1.2",
  4520. "datestamp": "1606399149",
  4521. "security-coverage": {
  4522. "status": "covered",
  4523. "message": "Covered by Drupal's security advisory policy"
  4524. }
  4525. }
  4526. },
  4527. "notification-url": "https://packages.drupal.org/8/downloads",
  4528. "license": [
  4529. "GPL-2.0-or-later"
  4530. ],
  4531. "authors": [
  4532. {
  4533. "name": "Berdir",
  4534. "homepage": "https://www.drupal.org/user/214652"
  4535. },
  4536. {
  4537. "name": "bojanz",
  4538. "homepage": "https://www.drupal.org/user/86106"
  4539. },
  4540. {
  4541. "name": "dawehner",
  4542. "homepage": "https://www.drupal.org/user/99340"
  4543. },
  4544. {
  4545. "name": "dixon_",
  4546. "homepage": "https://www.drupal.org/user/239911"
  4547. },
  4548. {
  4549. "name": "fago",
  4550. "homepage": "https://www.drupal.org/user/16747"
  4551. },
  4552. {
  4553. "name": "mglaman",
  4554. "homepage": "https://www.drupal.org/user/2416470"
  4555. }
  4556. ],
  4557. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4558. "homepage": "http://drupal.org/project/entity",
  4559. "support": {
  4560. "source": "https://git.drupalcode.org/project/entity"
  4561. }
  4562. },
  4563. {
  4564. "name": "drupal/entity_browser",
  4565. "version": "2.5.0",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4569. "reference": "8.x-2.5"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  4574. "reference": "8.x-2.5",
  4575. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  4576. },
  4577. "require": {
  4578. "drupal/core": "^8.8 || ^9"
  4579. },
  4580. "require-dev": {
  4581. "drupal/embed": "~1.0",
  4582. "drupal/entity_embed": "1.x-dev",
  4583. "drupal/entity_reference_revisions": "1.x-dev",
  4584. "drupal/entityqueue": "1.x-dev",
  4585. "drupal/inline_entity_form": "1.x-dev",
  4586. "drupal/paragraphs": "1.x-dev",
  4587. "drupal/token": "~1.0"
  4588. },
  4589. "type": "drupal-module",
  4590. "extra": {
  4591. "drupal": {
  4592. "version": "8.x-2.5",
  4593. "datestamp": "1588015429",
  4594. "security-coverage": {
  4595. "status": "covered",
  4596. "message": "Covered by Drupal's security advisory policy"
  4597. }
  4598. }
  4599. },
  4600. "notification-url": "https://packages.drupal.org/8/downloads",
  4601. "license": [
  4602. "GPL-2.0+"
  4603. ],
  4604. "authors": [
  4605. {
  4606. "name": "Janez Urevc",
  4607. "homepage": "https://github.com/slashrsm",
  4608. "role": "Maintainer"
  4609. },
  4610. {
  4611. "name": "Primoz Hmeljak",
  4612. "homepage": "https://github.com/primsi",
  4613. "role": "Maintainer"
  4614. },
  4615. {
  4616. "name": "See other contributors",
  4617. "homepage": "https://www.drupal.org/node/1943336/committers",
  4618. "role": "contributor"
  4619. },
  4620. {
  4621. "name": "Drupal Media Team",
  4622. "homepage": "https://www.drupal.org/user/3260690"
  4623. },
  4624. {
  4625. "name": "Primsi",
  4626. "homepage": "https://www.drupal.org/user/282629"
  4627. },
  4628. {
  4629. "name": "marcingy",
  4630. "homepage": "https://www.drupal.org/user/77320"
  4631. },
  4632. {
  4633. "name": "oknate",
  4634. "homepage": "https://www.drupal.org/user/471638"
  4635. },
  4636. {
  4637. "name": "samuel.mortenson",
  4638. "homepage": "https://www.drupal.org/user/2582268"
  4639. },
  4640. {
  4641. "name": "slashrsm",
  4642. "homepage": "https://www.drupal.org/user/744628"
  4643. }
  4644. ],
  4645. "description": "Entity browsing and selecting component.",
  4646. "homepage": "http://drupal.org/project/entity_browser",
  4647. "support": {
  4648. "source": "https://git.drupalcode.org/project/entity_browser",
  4649. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4650. "irc": "irc://irc.freenode.org/drupal-contribute"
  4651. }
  4652. },
  4653. {
  4654. "name": "drupal/entity_browser_enhanced",
  4655. "version": "1.0.0",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4659. "reference": "8.x-1.0"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4664. "reference": "8.x-1.0",
  4665. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4666. },
  4667. "require": {
  4668. "drupal/core": "^8 || ^9",
  4669. "drupal/entity_browser": "~2.0"
  4670. },
  4671. "type": "drupal-module",
  4672. "extra": {
  4673. "drupal": {
  4674. "version": "8.x-1.0",
  4675. "datestamp": "1581940931",
  4676. "security-coverage": {
  4677. "status": "covered",
  4678. "message": "Covered by Drupal's security advisory policy"
  4679. }
  4680. },
  4681. "branch-alias": {
  4682. "dev-8.x-1.x": "8.1.x-dev"
  4683. }
  4684. },
  4685. "notification-url": "https://packages.drupal.org/8/downloads",
  4686. "license": [
  4687. "GPL-2.0-or-later"
  4688. ],
  4689. "authors": [
  4690. {
  4691. "name": "Vardot",
  4692. "homepage": "https://www.drupal.org/vardot",
  4693. "role": "Maintainer"
  4694. },
  4695. {
  4696. "name": "RajabNatshah",
  4697. "homepage": "https://www.drupal.org/user/1414312"
  4698. }
  4699. ],
  4700. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4701. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4702. "support": {
  4703. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4704. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4705. }
  4706. },
  4707. {
  4708. "name": "drupal/entity_clone",
  4709. "version": "1.0.0-beta4",
  4710. "source": {
  4711. "type": "git",
  4712. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4713. "reference": "8.x-1.0-beta4"
  4714. },
  4715. "dist": {
  4716. "type": "zip",
  4717. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4718. "reference": "8.x-1.0-beta4",
  4719. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4720. },
  4721. "require": {
  4722. "drupal/core": "^8 || ^9"
  4723. },
  4724. "type": "drupal-module",
  4725. "extra": {
  4726. "drupal": {
  4727. "version": "8.x-1.0-beta4",
  4728. "datestamp": "1588605099",
  4729. "security-coverage": {
  4730. "status": "not-covered",
  4731. "message": "Beta releases are not covered by Drupal security advisories."
  4732. }
  4733. }
  4734. },
  4735. "notification-url": "https://packages.drupal.org/8/downloads",
  4736. "license": [
  4737. "GPL-2.0-or-later"
  4738. ],
  4739. "authors": [
  4740. {
  4741. "name": "vpeltot",
  4742. "homepage": "https://www.drupal.org/user/1361586"
  4743. }
  4744. ],
  4745. "description": "Add a clone action for all entities",
  4746. "homepage": "https://www.drupal.org/project/entity_clone",
  4747. "support": {
  4748. "source": "https://git.drupalcode.org/project/entity_clone"
  4749. }
  4750. },
  4751. {
  4752. "name": "drupal/entity_reference_revisions",
  4753. "version": "1.8.0",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4757. "reference": "8.x-1.8"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.8.zip",
  4762. "reference": "8.x-1.8",
  4763. "shasum": "c1279e6c683edc2dbccedba8de1505340c8a62b6"
  4764. },
  4765. "require": {
  4766. "drupal/core": "^8.7.7 || ^9"
  4767. },
  4768. "require-dev": {
  4769. "drupal/diff": "1.x-dev"
  4770. },
  4771. "type": "drupal-module",
  4772. "extra": {
  4773. "drupal": {
  4774. "version": "8.x-1.8",
  4775. "datestamp": "1583961846",
  4776. "security-coverage": {
  4777. "status": "covered",
  4778. "message": "Covered by Drupal's security advisory policy"
  4779. }
  4780. }
  4781. },
  4782. "notification-url": "https://packages.drupal.org/8/downloads",
  4783. "license": [
  4784. "GPL-2.0"
  4785. ],
  4786. "authors": [
  4787. {
  4788. "name": "Berdir",
  4789. "homepage": "https://www.drupal.org/user/214652"
  4790. },
  4791. {
  4792. "name": "Frans",
  4793. "homepage": "https://www.drupal.org/user/514222"
  4794. },
  4795. {
  4796. "name": "jeroen.b",
  4797. "homepage": "https://www.drupal.org/user/1853532"
  4798. },
  4799. {
  4800. "name": "miro_dietiker",
  4801. "homepage": "https://www.drupal.org/user/227761"
  4802. }
  4803. ],
  4804. "description": "Entity Reference Revisions",
  4805. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4806. "support": {
  4807. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4808. }
  4809. },
  4810. {
  4811. "name": "drupal/extlink",
  4812. "version": "1.5.0",
  4813. "source": {
  4814. "type": "git",
  4815. "url": "https://git.drupalcode.org/project/extlink.git",
  4816. "reference": "8.x-1.5"
  4817. },
  4818. "dist": {
  4819. "type": "zip",
  4820. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.5.zip",
  4821. "reference": "8.x-1.5",
  4822. "shasum": "5a2b74d12ff9e9257a0566cca8dac3872da64970"
  4823. },
  4824. "require": {
  4825. "drupal/core": "^8 || ^9"
  4826. },
  4827. "type": "drupal-module",
  4828. "extra": {
  4829. "drupal": {
  4830. "version": "8.x-1.5",
  4831. "datestamp": "1601382250",
  4832. "security-coverage": {
  4833. "status": "covered",
  4834. "message": "Covered by Drupal's security advisory policy"
  4835. }
  4836. }
  4837. },
  4838. "notification-url": "https://packages.drupal.org/8/downloads",
  4839. "license": [
  4840. "GPL-2.0-or-later"
  4841. ],
  4842. "authors": [
  4843. {
  4844. "name": "Nate Lampton",
  4845. "homepage": "https://www.drupal.org/u/quicksketch",
  4846. "role": "Maintainer"
  4847. },
  4848. {
  4849. "name": "Lachlan Ennis",
  4850. "homepage": "https://www.drupal.org/u/elachlan",
  4851. "role": "Maintainer"
  4852. },
  4853. {
  4854. "name": "Neslee Canil Pinto",
  4855. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4856. "role": "Maintainer"
  4857. }
  4858. ],
  4859. "description": "Modify behavior and appearance of external links.",
  4860. "homepage": "https://www.drupal.org/project/extlink",
  4861. "keywords": [
  4862. "Drupal",
  4863. "External Links"
  4864. ],
  4865. "support": {
  4866. "source": "https://git.drupalcode.org/project/extlink",
  4867. "issues": "https://www.drupal.org/project/issues/extlink"
  4868. }
  4869. },
  4870. {
  4871. "name": "drupal/field_group",
  4872. "version": "3.1.0",
  4873. "source": {
  4874. "type": "git",
  4875. "url": "https://git.drupalcode.org/project/field_group.git",
  4876. "reference": "8.x-3.1"
  4877. },
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  4881. "reference": "8.x-3.1",
  4882. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  4883. },
  4884. "require": {
  4885. "drupal/core": "^8.8 || ^9"
  4886. },
  4887. "require-dev": {
  4888. "drupal/jquery_ui_accordion": "^1.0"
  4889. },
  4890. "type": "drupal-module",
  4891. "extra": {
  4892. "drupal": {
  4893. "version": "8.x-3.1",
  4894. "datestamp": "1591772567",
  4895. "security-coverage": {
  4896. "status": "covered",
  4897. "message": "Covered by Drupal's security advisory policy"
  4898. }
  4899. }
  4900. },
  4901. "notification-url": "https://packages.drupal.org/8/downloads",
  4902. "license": [
  4903. "GPL-2.0-or-later"
  4904. ],
  4905. "authors": [
  4906. {
  4907. "name": "Hydra",
  4908. "homepage": "https://www.drupal.org/user/647364"
  4909. },
  4910. {
  4911. "name": "Stalski",
  4912. "homepage": "https://www.drupal.org/user/322618"
  4913. },
  4914. {
  4915. "name": "jyve",
  4916. "homepage": "https://www.drupal.org/user/591438"
  4917. },
  4918. {
  4919. "name": "nils.destoop",
  4920. "homepage": "https://www.drupal.org/user/361625"
  4921. },
  4922. {
  4923. "name": "swentel",
  4924. "homepage": "https://www.drupal.org/user/107403"
  4925. }
  4926. ],
  4927. "description": "Provides the field_group module.",
  4928. "homepage": "https://www.drupal.org/project/field_group",
  4929. "support": {
  4930. "source": "https://git.drupalcode.org/project/field_group",
  4931. "issues": "https://www.drupal.org/project/issues/field_group"
  4932. }
  4933. },
  4934. {
  4935. "name": "drupal/file_mdm",
  4936. "version": "2.1.0",
  4937. "source": {
  4938. "type": "git",
  4939. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4940. "reference": "8.x-2.1"
  4941. },
  4942. "dist": {
  4943. "type": "zip",
  4944. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  4945. "reference": "8.x-2.1",
  4946. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  4947. },
  4948. "require": {
  4949. "drupal/core": "^8.8 || ^9",
  4950. "lsolesen/pel": "^0.9.8",
  4951. "phenx/php-font-lib": "^0.5.2",
  4952. "php": ">=7"
  4953. },
  4954. "require-dev": {
  4955. "drupal/image_effects": "*"
  4956. },
  4957. "type": "drupal-module",
  4958. "extra": {
  4959. "drupal": {
  4960. "version": "8.x-2.1",
  4961. "datestamp": "1586801064",
  4962. "security-coverage": {
  4963. "status": "covered",
  4964. "message": "Covered by Drupal's security advisory policy"
  4965. }
  4966. }
  4967. },
  4968. "notification-url": "https://packages.drupal.org/8/downloads",
  4969. "license": [
  4970. "GPL-2.0-or-later"
  4971. ],
  4972. "authors": [
  4973. {
  4974. "name": "mondrake",
  4975. "homepage": "https://www.drupal.org/user/1307444"
  4976. }
  4977. ],
  4978. "description": "Provides a service to manage file metadata.",
  4979. "homepage": "https://www.drupal.org/project/file_mdm",
  4980. "support": {
  4981. "source": "https://git.drupalcode.org/project/file_mdm"
  4982. }
  4983. },
  4984. {
  4985. "name": "drupal/filefield_sources",
  4986. "version": "dev-1.x",
  4987. "source": {
  4988. "type": "git",
  4989. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4990. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  4991. },
  4992. "require": {
  4993. "drupal/core": "^8 || ^9"
  4994. },
  4995. "require-dev": {
  4996. "drupal/imce": "*"
  4997. },
  4998. "type": "drupal-module",
  4999. "extra": {
  5000. "branch-alias": {
  5001. "dev-1.x": "1.x-dev"
  5002. },
  5003. "drupal": {
  5004. "version": "8.x-1.0-alpha3+3-dev",
  5005. "datestamp": "1604712687",
  5006. "security-coverage": {
  5007. "status": "not-covered",
  5008. "message": "Dev releases are not covered by Drupal security advisories."
  5009. }
  5010. }
  5011. },
  5012. "notification-url": "https://packages.drupal.org/8/downloads",
  5013. "license": [
  5014. "GPL-2.0-or-later"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Nate Lampton (quicksketch)",
  5019. "homepage": "https://www.drupal.org/u/quicksketch",
  5020. "role": "Maintainer"
  5021. },
  5022. {
  5023. "name": "Andrey Khromyshev (profak)",
  5024. "homepage": "https://www.drupal.org/u/profak",
  5025. "role": "Maintainer"
  5026. },
  5027. {
  5028. "name": "David Valdez (gnuget)",
  5029. "homepage": "https://www.drupal.org/u/gnuget",
  5030. "role": "Maintainer"
  5031. }
  5032. ],
  5033. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5034. "homepage": "https://www.drupal.org/project/filefield_sources",
  5035. "support": {
  5036. "source": "https://git.drupalcode.org/project/filefield_sources",
  5037. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5038. "irc": "irc://irc.freenode.org/drupal-contribute"
  5039. },
  5040. "time": "2020-11-07T01:30:52+00:00"
  5041. },
  5042. {
  5043. "name": "drupal/filter_perms",
  5044. "version": "dev-1.x",
  5045. "source": {
  5046. "type": "git",
  5047. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5048. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5049. },
  5050. "require": {
  5051. "drupal/core": "^8 || ^9"
  5052. },
  5053. "type": "drupal-module",
  5054. "extra": {
  5055. "branch-alias": {
  5056. "dev-1.x": "1.x-dev"
  5057. },
  5058. "drupal": {
  5059. "version": "8.x-1.0-alpha1+2-dev",
  5060. "datestamp": "1599239698",
  5061. "security-coverage": {
  5062. "status": "not-covered",
  5063. "message": "Dev releases are not covered by Drupal security advisories."
  5064. }
  5065. }
  5066. },
  5067. "notification-url": "https://packages.drupal.org/8/downloads",
  5068. "license": [
  5069. "GPL-2.0-or-later"
  5070. ],
  5071. "authors": [
  5072. {
  5073. "name": "cYu",
  5074. "homepage": "https://www.drupal.org/user/202205"
  5075. },
  5076. {
  5077. "name": "deekayen",
  5078. "homepage": "https://www.drupal.org/user/972"
  5079. },
  5080. {
  5081. "name": "ivagold",
  5082. "homepage": "https://www.drupal.org/user/3061533"
  5083. },
  5084. {
  5085. "name": "mgbellaire",
  5086. "homepage": "https://www.drupal.org/user/1831932"
  5087. },
  5088. {
  5089. "name": "willzyx",
  5090. "homepage": "https://www.drupal.org/user/1043862"
  5091. }
  5092. ],
  5093. "description": "Provides role and module filters to simplify the user permissions page.",
  5094. "homepage": "https://www.drupal.org/project/filter_perms",
  5095. "support": {
  5096. "source": "https://git.drupalcode.org/project/filter_perms"
  5097. },
  5098. "time": "2020-11-17T18:20:11+00:00"
  5099. },
  5100. {
  5101. "name": "drupal/honeypot",
  5102. "version": "2.0.1",
  5103. "source": {
  5104. "type": "git",
  5105. "url": "https://git.drupalcode.org/project/honeypot.git",
  5106. "reference": "2.0.1"
  5107. },
  5108. "dist": {
  5109. "type": "zip",
  5110. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5111. "reference": "2.0.1",
  5112. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5113. },
  5114. "require": {
  5115. "drupal/core": "^8.0 || ^9.0"
  5116. },
  5117. "type": "drupal-module",
  5118. "extra": {
  5119. "drupal": {
  5120. "version": "2.0.1",
  5121. "datestamp": "1597855128",
  5122. "security-coverage": {
  5123. "status": "covered",
  5124. "message": "Covered by Drupal's security advisory policy"
  5125. }
  5126. }
  5127. },
  5128. "notification-url": "https://packages.drupal.org/8/downloads",
  5129. "license": [
  5130. "GPL-2.0-or-later"
  5131. ],
  5132. "authors": [
  5133. {
  5134. "name": "Jeff Geerling",
  5135. "homepage": "https://www.drupal.org/user/213194",
  5136. "email": "geerlingguy@mac.com"
  5137. },
  5138. {
  5139. "name": "geerlingguy",
  5140. "homepage": "https://www.drupal.org/user/389011"
  5141. },
  5142. {
  5143. "name": "vijaycs85",
  5144. "homepage": "https://www.drupal.org/user/93488"
  5145. }
  5146. ],
  5147. "description": "Mitigates spam form submissions using the honeypot method.",
  5148. "homepage": "https://www.drupal.org/project/honeypot",
  5149. "keywords": [
  5150. "deterrent",
  5151. "form",
  5152. "honeypot",
  5153. "honeytrap",
  5154. "php",
  5155. "spam"
  5156. ],
  5157. "support": {
  5158. "source": "https://git.drupalcode.org/project/honeypot",
  5159. "issues": "https://www.drupal.org/project/issues/honeypot"
  5160. }
  5161. },
  5162. {
  5163. "name": "drupal/imagemagick",
  5164. "version": "3.1.0",
  5165. "source": {
  5166. "type": "git",
  5167. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5168. "reference": "8.x-3.1"
  5169. },
  5170. "dist": {
  5171. "type": "zip",
  5172. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5173. "reference": "8.x-3.1",
  5174. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5175. },
  5176. "require": {
  5177. "drupal/core": "^8.8 || ^9",
  5178. "drupal/file_mdm": "^2",
  5179. "drupal/sophron": "^1",
  5180. "php": ">=7"
  5181. },
  5182. "type": "drupal-module",
  5183. "extra": {
  5184. "drupal": {
  5185. "version": "8.x-3.1",
  5186. "datestamp": "1581420882",
  5187. "security-coverage": {
  5188. "status": "covered",
  5189. "message": "Covered by Drupal's security advisory policy"
  5190. }
  5191. }
  5192. },
  5193. "notification-url": "https://packages.drupal.org/8/downloads",
  5194. "license": [
  5195. "GPL-2.0-or-later"
  5196. ],
  5197. "authors": [
  5198. {
  5199. "name": "Chris Charlton",
  5200. "homepage": "https://www.drupal.org/user/17089"
  5201. },
  5202. {
  5203. "name": "chx",
  5204. "homepage": "https://www.drupal.org/user/9446"
  5205. },
  5206. {
  5207. "name": "claudiu.cristea",
  5208. "homepage": "https://www.drupal.org/user/56348"
  5209. },
  5210. {
  5211. "name": "dman",
  5212. "homepage": "https://www.drupal.org/user/33240"
  5213. },
  5214. {
  5215. "name": "dopry",
  5216. "homepage": "https://www.drupal.org/user/22202"
  5217. },
  5218. {
  5219. "name": "drewish",
  5220. "homepage": "https://www.drupal.org/user/34869"
  5221. },
  5222. {
  5223. "name": "gdl",
  5224. "homepage": "https://www.drupal.org/user/507326"
  5225. },
  5226. {
  5227. "name": "mondrake",
  5228. "homepage": "https://www.drupal.org/user/1307444"
  5229. },
  5230. {
  5231. "name": "quicksketch",
  5232. "homepage": "https://www.drupal.org/user/35821"
  5233. },
  5234. {
  5235. "name": "sun",
  5236. "homepage": "https://www.drupal.org/user/54136"
  5237. },
  5238. {
  5239. "name": "walkah",
  5240. "homepage": "https://www.drupal.org/user/1531"
  5241. }
  5242. ],
  5243. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5244. "homepage": "https://www.drupal.org/project/imagemagick",
  5245. "support": {
  5246. "source": "https://git.drupalcode.org/project/imagemagick"
  5247. }
  5248. },
  5249. {
  5250. "name": "drupal/inline_entity_form",
  5251. "version": "1.0.0-rc8",
  5252. "source": {
  5253. "type": "git",
  5254. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5255. "reference": "8.x-1.0-rc8"
  5256. },
  5257. "dist": {
  5258. "type": "zip",
  5259. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc8.zip",
  5260. "reference": "8.x-1.0-rc8",
  5261. "shasum": "103de382dd07b4acdd6bacd5ad76628fdf0eefda"
  5262. },
  5263. "require": {
  5264. "drupal/core": "^8.7.7 || ^9"
  5265. },
  5266. "require-dev": {
  5267. "drupal/entity_reference_revisions": "^1.0"
  5268. },
  5269. "type": "drupal-module",
  5270. "extra": {
  5271. "drupal": {
  5272. "version": "8.x-1.0-rc8",
  5273. "datestamp": "1602172716",
  5274. "security-coverage": {
  5275. "status": "not-covered",
  5276. "message": "RC releases are not covered by Drupal security advisories."
  5277. }
  5278. }
  5279. },
  5280. "notification-url": "https://packages.drupal.org/8/downloads",
  5281. "license": [
  5282. "GPL-2.0-or-later"
  5283. ],
  5284. "authors": [
  5285. {
  5286. "name": "bojanz",
  5287. "homepage": "https://www.drupal.org/user/86106"
  5288. },
  5289. {
  5290. "name": "dawehner",
  5291. "homepage": "https://www.drupal.org/user/99340"
  5292. },
  5293. {
  5294. "name": "geek-merlin",
  5295. "homepage": "https://www.drupal.org/user/229048"
  5296. },
  5297. {
  5298. "name": "joachim",
  5299. "homepage": "https://www.drupal.org/user/107701"
  5300. },
  5301. {
  5302. "name": "jsacksick",
  5303. "homepage": "https://www.drupal.org/user/972218"
  5304. },
  5305. {
  5306. "name": "kaythay",
  5307. "homepage": "https://www.drupal.org/user/2182186"
  5308. },
  5309. {
  5310. "name": "oknate",
  5311. "homepage": "https://www.drupal.org/user/471638"
  5312. },
  5313. {
  5314. "name": "rszrama",
  5315. "homepage": "https://www.drupal.org/user/49344"
  5316. },
  5317. {
  5318. "name": "slashrsm",
  5319. "homepage": "https://www.drupal.org/user/744628"
  5320. },
  5321. {
  5322. "name": "webflo",
  5323. "homepage": "https://www.drupal.org/user/254778"
  5324. }
  5325. ],
  5326. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5327. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5328. "support": {
  5329. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5330. }
  5331. },
  5332. {
  5333. "name": "drupal/jquery_ui",
  5334. "version": "1.4.0",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5338. "reference": "8.x-1.4"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5343. "reference": "8.x-1.4",
  5344. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5345. },
  5346. "require": {
  5347. "drupal/core": "^8 || ^9"
  5348. },
  5349. "type": "drupal-module",
  5350. "extra": {
  5351. "drupal": {
  5352. "version": "8.x-1.4",
  5353. "datestamp": "1582149957",
  5354. "security-coverage": {
  5355. "status": "covered",
  5356. "message": "Covered by Drupal's security advisory policy"
  5357. }
  5358. }
  5359. },
  5360. "notification-url": "https://packages.drupal.org/8/downloads",
  5361. "license": [
  5362. "GPL-2.0-or-later"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "RobLoach",
  5367. "homepage": "https://www.drupal.org/user/61114"
  5368. },
  5369. {
  5370. "name": "jjeff",
  5371. "homepage": "https://www.drupal.org/user/17190"
  5372. },
  5373. {
  5374. "name": "lauriii",
  5375. "homepage": "https://www.drupal.org/user/1078742"
  5376. },
  5377. {
  5378. "name": "litwol",
  5379. "homepage": "https://www.drupal.org/user/78134"
  5380. },
  5381. {
  5382. "name": "mfb",
  5383. "homepage": "https://www.drupal.org/user/12302"
  5384. },
  5385. {
  5386. "name": "mfer",
  5387. "homepage": "https://www.drupal.org/user/25701"
  5388. },
  5389. {
  5390. "name": "mikelutz",
  5391. "homepage": "https://www.drupal.org/user/2972409"
  5392. },
  5393. {
  5394. "name": "sun",
  5395. "homepage": "https://www.drupal.org/user/54136"
  5396. },
  5397. {
  5398. "name": "webchick",
  5399. "homepage": "https://www.drupal.org/user/24967"
  5400. },
  5401. {
  5402. "name": "zrpnr",
  5403. "homepage": "https://www.drupal.org/user/1448368"
  5404. }
  5405. ],
  5406. "description": "Provides jQuery UI library.",
  5407. "homepage": "https://www.drupal.org/project/jquery_ui",
  5408. "support": {
  5409. "source": "https://git.drupalcode.org/project/jquery_ui"
  5410. }
  5411. },
  5412. {
  5413. "name": "drupal/jquery_ui_button",
  5414. "version": "1.1.0",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5418. "reference": "8.x-1.1"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5423. "reference": "8.x-1.1",
  5424. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5425. },
  5426. "require": {
  5427. "drupal/core": "^8 || ^9",
  5428. "drupal/jquery_ui": "*",
  5429. "drupal/jquery_ui_checkboxradio": "*",
  5430. "drupal/jquery_ui_controlgroup": "*"
  5431. },
  5432. "type": "drupal-module",
  5433. "extra": {
  5434. "drupal": {
  5435. "version": "8.x-1.1",
  5436. "datestamp": "1584106807",
  5437. "security-coverage": {
  5438. "status": "covered",
  5439. "message": "Covered by Drupal's security advisory policy"
  5440. }
  5441. }
  5442. },
  5443. "notification-url": "https://packages.drupal.org/8/downloads",
  5444. "license": [
  5445. "GPL-2.0-or-later"
  5446. ],
  5447. "authors": [
  5448. {
  5449. "name": "bnjmnm",
  5450. "homepage": "https://www.drupal.org/user/2369194"
  5451. },
  5452. {
  5453. "name": "lauriii",
  5454. "homepage": "https://www.drupal.org/user/1078742"
  5455. },
  5456. {
  5457. "name": "zrpnr",
  5458. "homepage": "https://www.drupal.org/user/1448368"
  5459. }
  5460. ],
  5461. "description": "Provides jQuery UI Button library.",
  5462. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5463. "support": {
  5464. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5465. }
  5466. },
  5467. {
  5468. "name": "drupal/jquery_ui_checkboxradio",
  5469. "version": "1.2.0",
  5470. "source": {
  5471. "type": "git",
  5472. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5473. "reference": "8.x-1.2"
  5474. },
  5475. "dist": {
  5476. "type": "zip",
  5477. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5478. "reference": "8.x-1.2",
  5479. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5480. },
  5481. "require": {
  5482. "drupal/core": "^8 || ^9",
  5483. "drupal/jquery_ui": "*"
  5484. },
  5485. "type": "drupal-module",
  5486. "extra": {
  5487. "drupal": {
  5488. "version": "8.x-1.2",
  5489. "datestamp": "1584106406",
  5490. "security-coverage": {
  5491. "status": "covered",
  5492. "message": "Covered by Drupal's security advisory policy"
  5493. }
  5494. }
  5495. },
  5496. "notification-url": "https://packages.drupal.org/8/downloads",
  5497. "license": [
  5498. "GPL-2.0-or-later"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "bnjmnm",
  5503. "homepage": "https://www.drupal.org/user/2369194"
  5504. },
  5505. {
  5506. "name": "lauriii",
  5507. "homepage": "https://www.drupal.org/user/1078742"
  5508. },
  5509. {
  5510. "name": "zrpnr",
  5511. "homepage": "https://www.drupal.org/user/1448368"
  5512. }
  5513. ],
  5514. "description": "Provides jQuery UI Checkboxradio library.",
  5515. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5516. "support": {
  5517. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5518. }
  5519. },
  5520. {
  5521. "name": "drupal/jquery_ui_controlgroup",
  5522. "version": "1.1.0",
  5523. "source": {
  5524. "type": "git",
  5525. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5526. "reference": "8.x-1.1"
  5527. },
  5528. "dist": {
  5529. "type": "zip",
  5530. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5531. "reference": "8.x-1.1",
  5532. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5533. },
  5534. "require": {
  5535. "drupal/core": "^8 || ^9",
  5536. "drupal/jquery_ui": "*"
  5537. },
  5538. "type": "drupal-module",
  5539. "extra": {
  5540. "drupal": {
  5541. "version": "8.x-1.1",
  5542. "datestamp": "1584106616",
  5543. "security-coverage": {
  5544. "status": "covered",
  5545. "message": "Covered by Drupal's security advisory policy"
  5546. }
  5547. }
  5548. },
  5549. "notification-url": "https://packages.drupal.org/8/downloads",
  5550. "license": [
  5551. "GPL-2.0-or-later"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "bnjmnm",
  5556. "homepage": "https://www.drupal.org/user/2369194"
  5557. },
  5558. {
  5559. "name": "lauriii",
  5560. "homepage": "https://www.drupal.org/user/1078742"
  5561. },
  5562. {
  5563. "name": "zrpnr",
  5564. "homepage": "https://www.drupal.org/user/1448368"
  5565. }
  5566. ],
  5567. "description": "Provides jQuery UI Controlgroup library.",
  5568. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5569. "support": {
  5570. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5571. }
  5572. },
  5573. {
  5574. "name": "drupal/jquery_ui_datepicker",
  5575. "version": "1.0.0",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5579. "reference": "8.x-1.0"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip",
  5584. "reference": "8.x-1.0",
  5585. "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2"
  5586. },
  5587. "require": {
  5588. "drupal/core": "^8 || ^9",
  5589. "drupal/jquery_ui": "*"
  5590. },
  5591. "type": "drupal-module",
  5592. "extra": {
  5593. "drupal": {
  5594. "version": "8.x-1.0",
  5595. "datestamp": "1589684301",
  5596. "security-coverage": {
  5597. "status": "covered",
  5598. "message": "Covered by Drupal's security advisory policy"
  5599. }
  5600. }
  5601. },
  5602. "notification-url": "https://packages.drupal.org/8/downloads",
  5603. "license": [
  5604. "GPL-2.0-or-later"
  5605. ],
  5606. "authors": [
  5607. {
  5608. "name": "jrockowitz",
  5609. "homepage": "https://www.drupal.org/user/371407"
  5610. },
  5611. {
  5612. "name": "zrpnr",
  5613. "homepage": "https://www.drupal.org/user/1448368"
  5614. }
  5615. ],
  5616. "description": "Provides jQuery UI Datepicker library.",
  5617. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5618. "support": {
  5619. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5620. }
  5621. },
  5622. {
  5623. "name": "drupal/jquery_ui_slider",
  5624. "version": "1.1.0",
  5625. "source": {
  5626. "type": "git",
  5627. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5628. "reference": "8.x-1.1"
  5629. },
  5630. "dist": {
  5631. "type": "zip",
  5632. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5633. "reference": "8.x-1.1",
  5634. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5635. },
  5636. "require": {
  5637. "drupal/core": "^8 || ^9",
  5638. "drupal/jquery_ui": "*"
  5639. },
  5640. "type": "drupal-module",
  5641. "extra": {
  5642. "drupal": {
  5643. "version": "8.x-1.1",
  5644. "datestamp": "1584107817",
  5645. "security-coverage": {
  5646. "status": "covered",
  5647. "message": "Covered by Drupal's security advisory policy"
  5648. }
  5649. }
  5650. },
  5651. "notification-url": "https://packages.drupal.org/8/downloads",
  5652. "license": [
  5653. "GPL-2.0-or-later"
  5654. ],
  5655. "authors": [
  5656. {
  5657. "name": "bnjmnm",
  5658. "homepage": "https://www.drupal.org/user/2369194"
  5659. },
  5660. {
  5661. "name": "lauriii",
  5662. "homepage": "https://www.drupal.org/user/1078742"
  5663. },
  5664. {
  5665. "name": "zrpnr",
  5666. "homepage": "https://www.drupal.org/user/1448368"
  5667. }
  5668. ],
  5669. "description": "Provides jQuery UI Slider library.",
  5670. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5671. "support": {
  5672. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5673. }
  5674. },
  5675. {
  5676. "name": "drupal/jquery_ui_touch_punch",
  5677. "version": "1.0.0",
  5678. "source": {
  5679. "type": "git",
  5680. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5681. "reference": "1.0.0"
  5682. },
  5683. "dist": {
  5684. "type": "zip",
  5685. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  5686. "reference": "1.0.0",
  5687. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  5688. },
  5689. "require": {
  5690. "drupal/core": "^8 || ^9",
  5691. "drupal/jquery_ui": "^1.0"
  5692. },
  5693. "suggest": {
  5694. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  5695. },
  5696. "type": "drupal-module",
  5697. "extra": {
  5698. "drupal": {
  5699. "version": "1.0.0",
  5700. "datestamp": "1591893292",
  5701. "security-coverage": {
  5702. "status": "not-covered",
  5703. "message": "Project has not opted into security advisory coverage!"
  5704. }
  5705. }
  5706. },
  5707. "notification-url": "https://packages.drupal.org/8/downloads",
  5708. "license": [
  5709. "GPL-2.0+"
  5710. ],
  5711. "authors": [
  5712. {
  5713. "name": "Naveen Valecha",
  5714. "homepage": "https://drupal.org/u/naveenvalecha",
  5715. "role": "Maintainer"
  5716. }
  5717. ],
  5718. "description": "Provides jQuery UI Touch Punch library.",
  5719. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5720. "keywords": [
  5721. "Drupal",
  5722. "jquery_ui_touch_punch"
  5723. ],
  5724. "support": {
  5725. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5726. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  5727. "irc": "irc://irc.freenode.org/drupal-contribute"
  5728. }
  5729. },
  5730. {
  5731. "name": "drupal/link_attributes",
  5732. "version": "1.11.0",
  5733. "source": {
  5734. "type": "git",
  5735. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5736. "reference": "8.x-1.11"
  5737. },
  5738. "dist": {
  5739. "type": "zip",
  5740. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  5741. "reference": "8.x-1.11",
  5742. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  5743. },
  5744. "require": {
  5745. "drupal/core": "^8 || ^9"
  5746. },
  5747. "type": "drupal-module",
  5748. "extra": {
  5749. "drupal": {
  5750. "version": "8.x-1.11",
  5751. "datestamp": "1598323550",
  5752. "security-coverage": {
  5753. "status": "covered",
  5754. "message": "Covered by Drupal's security advisory policy"
  5755. }
  5756. }
  5757. },
  5758. "notification-url": "https://packages.drupal.org/8/downloads",
  5759. "license": [
  5760. "GPL-2.0-or-later"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "larowlan",
  5765. "homepage": "https://www.drupal.org/user/395439"
  5766. }
  5767. ],
  5768. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5769. "homepage": "https://www.drupal.org/project/link_attributes",
  5770. "support": {
  5771. "source": "https://git.drupalcode.org/project/link_attributes"
  5772. }
  5773. },
  5774. {
  5775. "name": "drupal/linkit",
  5776. "version": "5.0.0-beta12",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://git.drupalcode.org/project/linkit.git",
  5780. "reference": "8.x-5.0-beta12"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta12.zip",
  5785. "reference": "8.x-5.0-beta12",
  5786. "shasum": "9e03975b476f893112d8b12d8b8610926a4e7f2c"
  5787. },
  5788. "require": {
  5789. "drupal/core": "^8.7.7 || ^9"
  5790. },
  5791. "require-dev": {
  5792. "drupal/imce": "*"
  5793. },
  5794. "type": "drupal-module",
  5795. "extra": {
  5796. "drupal": {
  5797. "version": "8.x-5.0-beta12",
  5798. "datestamp": "1608957625",
  5799. "security-coverage": {
  5800. "status": "not-covered",
  5801. "message": "Beta releases are not covered by Drupal security advisories."
  5802. }
  5803. }
  5804. },
  5805. "notification-url": "https://packages.drupal.org/8/downloads",
  5806. "license": [
  5807. "GPL-2.0-or-later"
  5808. ],
  5809. "authors": [
  5810. {
  5811. "name": "Emil Stjerneman",
  5812. "homepage": "https://stjerneman.com",
  5813. "email": "emil@stjerneman.com",
  5814. "role": "Maintainer"
  5815. }
  5816. ],
  5817. "description": "Linkit - Enriched linking experience",
  5818. "homepage": "http://drupal.org/project/linkit",
  5819. "support": {
  5820. "source": "http://cgit.drupalcode.org/linkit",
  5821. "issues": "http://drupal.org/project/linkit"
  5822. }
  5823. },
  5824. {
  5825. "name": "drupal/login_destination",
  5826. "version": "dev-2.x",
  5827. "source": {
  5828. "type": "git",
  5829. "url": "https://git.drupalcode.org/project/login_destination.git",
  5830. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  5831. },
  5832. "require": {
  5833. "drupal/core": "^8.7.10 || ^9"
  5834. },
  5835. "require-dev": {
  5836. "drupal/admin_toolbar": "^1.23",
  5837. "drupal/admin_toolbar_tools": "*"
  5838. },
  5839. "type": "drupal-module",
  5840. "extra": {
  5841. "branch-alias": {
  5842. "dev-2.x": "2.x-dev"
  5843. },
  5844. "drupal": {
  5845. "version": "8.x-2.0-alpha3+8-dev",
  5846. "datestamp": "1603450565",
  5847. "security-coverage": {
  5848. "status": "not-covered",
  5849. "message": "Dev releases are not covered by Drupal security advisories."
  5850. }
  5851. }
  5852. },
  5853. "notification-url": "https://packages.drupal.org/8/downloads",
  5854. "license": [
  5855. "GPL-2.0-or-later"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "3CWebDev",
  5860. "homepage": "https://www.drupal.org/user/61221"
  5861. },
  5862. {
  5863. "name": "Oliver Huynh",
  5864. "homepage": "https://www.drupal.org/user/243730"
  5865. },
  5866. {
  5867. "name": "beautifulmind",
  5868. "homepage": "https://www.drupal.org/user/219482"
  5869. },
  5870. {
  5871. "name": "ddrozdik",
  5872. "homepage": "https://www.drupal.org/user/574124"
  5873. },
  5874. {
  5875. "name": "jng12",
  5876. "homepage": "https://www.drupal.org/user/204316"
  5877. },
  5878. {
  5879. "name": "marcp",
  5880. "homepage": "https://www.drupal.org/user/20885"
  5881. },
  5882. {
  5883. "name": "mithy",
  5884. "homepage": "https://www.drupal.org/user/258911"
  5885. },
  5886. {
  5887. "name": "moshe weitzman",
  5888. "homepage": "https://www.drupal.org/user/23"
  5889. },
  5890. {
  5891. "name": "perennial.sky",
  5892. "homepage": "https://www.drupal.org/user/2622667"
  5893. },
  5894. {
  5895. "name": "rsvelko",
  5896. "homepage": "https://www.drupal.org/user/337401"
  5897. }
  5898. ],
  5899. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5900. "homepage": "https://www.drupal.org/project/login_destination",
  5901. "support": {
  5902. "source": "https://git.drupalcode.org/project/login_destination"
  5903. },
  5904. "time": "2020-10-23T10:55:36+00:00"
  5905. },
  5906. {
  5907. "name": "drupal/maillog",
  5908. "version": "dev-1.x",
  5909. "source": {
  5910. "type": "git",
  5911. "url": "https://git.drupalcode.org/project/maillog.git",
  5912. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  5913. },
  5914. "require": {
  5915. "drupal/core": "^8 || ^9"
  5916. },
  5917. "type": "drupal-module",
  5918. "extra": {
  5919. "branch-alias": {
  5920. "dev-1.x": "1.x-dev"
  5921. },
  5922. "drupal": {
  5923. "version": "8.x-1.0-beta1+0-dev",
  5924. "datestamp": "1600799873",
  5925. "security-coverage": {
  5926. "status": "not-covered",
  5927. "message": "Dev releases are not covered by Drupal security advisories."
  5928. }
  5929. }
  5930. },
  5931. "notification-url": "https://packages.drupal.org/8/downloads",
  5932. "license": [
  5933. "GPL-2.0-or-later"
  5934. ],
  5935. "authors": [
  5936. {
  5937. "name": "Berdir",
  5938. "homepage": "https://www.drupal.org/user/214652"
  5939. },
  5940. {
  5941. "name": "DamienMcKenna",
  5942. "homepage": "https://www.drupal.org/user/108450"
  5943. },
  5944. {
  5945. "name": "miro_dietiker",
  5946. "homepage": "https://www.drupal.org/user/227761"
  5947. },
  5948. {
  5949. "name": "pluess",
  5950. "homepage": "https://www.drupal.org/user/84659"
  5951. }
  5952. ],
  5953. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5954. "homepage": "https://www.drupal.org/project/maillog",
  5955. "support": {
  5956. "source": "https://git.drupalcode.org/project/maillog"
  5957. },
  5958. "time": "2020-09-22T18:37:31+00:00"
  5959. },
  5960. {
  5961. "name": "drupal/mailsystem",
  5962. "version": "4.3.0",
  5963. "source": {
  5964. "type": "git",
  5965. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5966. "reference": "8.x-4.3"
  5967. },
  5968. "dist": {
  5969. "type": "zip",
  5970. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  5971. "reference": "8.x-4.3",
  5972. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  5973. },
  5974. "require": {
  5975. "drupal/core": "^8.7.7 || ^9"
  5976. },
  5977. "type": "drupal-module",
  5978. "extra": {
  5979. "drupal": {
  5980. "version": "8.x-4.3",
  5981. "datestamp": "1586203024",
  5982. "security-coverage": {
  5983. "status": "covered",
  5984. "message": "Covered by Drupal's security advisory policy"
  5985. }
  5986. }
  5987. },
  5988. "notification-url": "https://packages.drupal.org/8/downloads",
  5989. "license": [
  5990. "GPL-2.0+"
  5991. ],
  5992. "authors": [
  5993. {
  5994. "name": "Berdir",
  5995. "homepage": "https://www.drupal.org/user/214652"
  5996. },
  5997. {
  5998. "name": "Les Lim",
  5999. "homepage": "https://www.drupal.org/user/84263"
  6000. },
  6001. {
  6002. "name": "Manuel Garcia",
  6003. "homepage": "https://www.drupal.org/user/213194"
  6004. },
  6005. {
  6006. "name": "Nafes",
  6007. "homepage": "https://www.drupal.org/user/2489926"
  6008. },
  6009. {
  6010. "name": "miro_dietiker",
  6011. "homepage": "https://www.drupal.org/user/227761"
  6012. },
  6013. {
  6014. "name": "pillarsdotnet",
  6015. "homepage": "https://www.drupal.org/user/36148"
  6016. }
  6017. ],
  6018. "description": "Mail System",
  6019. "homepage": "https://www.drupal.org/project/mailsystem",
  6020. "support": {
  6021. "source": "https://git.drupalcode.org/project/mailsystem"
  6022. }
  6023. },
  6024. {
  6025. "name": "drupal/matomo",
  6026. "version": "1.11.0",
  6027. "source": {
  6028. "type": "git",
  6029. "url": "https://git.drupalcode.org/project/matomo.git",
  6030. "reference": "8.x-1.11"
  6031. },
  6032. "dist": {
  6033. "type": "zip",
  6034. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6035. "reference": "8.x-1.11",
  6036. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6037. },
  6038. "require": {
  6039. "drupal/core": "^8 || ^9"
  6040. },
  6041. "require-dev": {
  6042. "drupal/php": "*",
  6043. "drupal/token": "*"
  6044. },
  6045. "type": "drupal-module",
  6046. "extra": {
  6047. "drupal": {
  6048. "version": "8.x-1.11",
  6049. "datestamp": "1601651459",
  6050. "security-coverage": {
  6051. "status": "covered",
  6052. "message": "Covered by Drupal's security advisory policy"
  6053. }
  6054. }
  6055. },
  6056. "notification-url": "https://packages.drupal.org/8/downloads",
  6057. "license": [
  6058. "GPL-2.0-or-later"
  6059. ],
  6060. "authors": [
  6061. {
  6062. "name": "Carsten Logemann",
  6063. "homepage": "https://www.drupal.org/u/C_Logemann"
  6064. },
  6065. {
  6066. "name": "Shelane French",
  6067. "homepage": "https://www.drupal.org/u/shelane"
  6068. },
  6069. {
  6070. "name": "See other contributors",
  6071. "homepage": "https://www.drupal.org/node/247808/committers"
  6072. }
  6073. ],
  6074. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6075. "homepage": "https://www.drupal.org/project/matomo",
  6076. "support": {
  6077. "source": "https://git.drupal.org/project/matomo.git",
  6078. "issues": "https://www.drupal.org/project/issues/matomo"
  6079. }
  6080. },
  6081. {
  6082. "name": "drupal/maxlength",
  6083. "version": "1.0.0-rc1",
  6084. "source": {
  6085. "type": "git",
  6086. "url": "https://git.drupalcode.org/project/maxlength.git",
  6087. "reference": "8.x-1.0-rc1"
  6088. },
  6089. "dist": {
  6090. "type": "zip",
  6091. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6092. "reference": "8.x-1.0-rc1",
  6093. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6094. },
  6095. "require": {
  6096. "drupal/core": "^8.8 || ^9"
  6097. },
  6098. "type": "drupal-module",
  6099. "extra": {
  6100. "drupal": {
  6101. "version": "8.x-1.0-rc1",
  6102. "datestamp": "1593198218",
  6103. "security-coverage": {
  6104. "status": "not-covered",
  6105. "message": "RC releases are not covered by Drupal security advisories."
  6106. }
  6107. }
  6108. },
  6109. "notification-url": "https://packages.drupal.org/8/downloads",
  6110. "license": [
  6111. "GPL-2.0-or-later"
  6112. ],
  6113. "authors": [
  6114. {
  6115. "name": "Aron Novak",
  6116. "homepage": "https://www.drupal.org/user/61864"
  6117. },
  6118. {
  6119. "name": "Schnitzel",
  6120. "homepage": "https://www.drupal.org/user/643820"
  6121. },
  6122. {
  6123. "name": "a_c_m",
  6124. "homepage": "https://www.drupal.org/user/195063"
  6125. },
  6126. {
  6127. "name": "barneytech",
  6128. "homepage": "https://www.drupal.org/user/669922"
  6129. },
  6130. {
  6131. "name": "claudiu_cristea",
  6132. "homepage": "https://www.drupal.org/user/2623935"
  6133. },
  6134. {
  6135. "name": "dawehner",
  6136. "homepage": "https://www.drupal.org/user/99340"
  6137. },
  6138. {
  6139. "name": "derhasi",
  6140. "homepage": "https://www.drupal.org/user/83474"
  6141. },
  6142. {
  6143. "name": "frjo",
  6144. "homepage": "https://www.drupal.org/user/5546"
  6145. },
  6146. {
  6147. "name": "hefox",
  6148. "homepage": "https://www.drupal.org/user/426416"
  6149. },
  6150. {
  6151. "name": "jm.federico",
  6152. "homepage": "https://www.drupal.org/user/509892"
  6153. },
  6154. {
  6155. "name": "k4v",
  6156. "homepage": "https://www.drupal.org/user/744246"
  6157. },
  6158. {
  6159. "name": "mariano73",
  6160. "homepage": "https://www.drupal.org/user/1324866"
  6161. },
  6162. {
  6163. "name": "mariuss",
  6164. "homepage": "https://www.drupal.org/user/28539"
  6165. },
  6166. {
  6167. "name": "sanduhrs",
  6168. "homepage": "https://www.drupal.org/user/28074"
  6169. },
  6170. {
  6171. "name": "vasi1186",
  6172. "homepage": "https://www.drupal.org/user/342104"
  6173. },
  6174. {
  6175. "name": "webiator GmbH",
  6176. "homepage": "https://www.drupal.org/user/2390554"
  6177. }
  6178. ],
  6179. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6180. "homepage": "https://www.drupal.org/project/maxlength",
  6181. "support": {
  6182. "source": "https://git.drupalcode.org/project/maxlength"
  6183. }
  6184. },
  6185. {
  6186. "name": "drupal/menu_admin_per_menu",
  6187. "version": "1.3.0",
  6188. "source": {
  6189. "type": "git",
  6190. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6191. "reference": "8.x-1.3"
  6192. },
  6193. "dist": {
  6194. "type": "zip",
  6195. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6196. "reference": "8.x-1.3",
  6197. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6198. },
  6199. "require": {
  6200. "drupal/core": "^8 || ^9"
  6201. },
  6202. "type": "drupal-module",
  6203. "extra": {
  6204. "drupal": {
  6205. "version": "8.x-1.3",
  6206. "datestamp": "1593436060",
  6207. "security-coverage": {
  6208. "status": "covered",
  6209. "message": "Covered by Drupal's security advisory policy"
  6210. }
  6211. }
  6212. },
  6213. "notification-url": "https://packages.drupal.org/8/downloads",
  6214. "license": [
  6215. "GPL-2.0-or-later"
  6216. ],
  6217. "authors": [
  6218. {
  6219. "name": "JeroenT",
  6220. "homepage": "https://www.drupal.org/user/2228934"
  6221. },
  6222. {
  6223. "name": "anrikun",
  6224. "homepage": "https://www.drupal.org/user/410199"
  6225. },
  6226. {
  6227. "name": "jonas139",
  6228. "homepage": "https://www.drupal.org/user/2873401"
  6229. },
  6230. {
  6231. "name": "mkdok",
  6232. "homepage": "https://www.drupal.org/user/3308753"
  6233. }
  6234. ],
  6235. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6236. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6237. "support": {
  6238. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6239. }
  6240. },
  6241. {
  6242. "name": "drupal/menu_block",
  6243. "version": "dev-1.x",
  6244. "source": {
  6245. "type": "git",
  6246. "url": "https://git.drupalcode.org/project/menu_block.git",
  6247. "reference": "567becffbb0589e824fb053f15fb38a5846e7276"
  6248. },
  6249. "require": {
  6250. "drupal/core": "^8 || ^9"
  6251. },
  6252. "type": "drupal-module",
  6253. "extra": {
  6254. "branch-alias": {
  6255. "dev-1.x": "1.x-dev"
  6256. },
  6257. "drupal": {
  6258. "version": "8.x-1.6+5-dev",
  6259. "datestamp": "1591593747",
  6260. "security-coverage": {
  6261. "status": "not-covered",
  6262. "message": "Dev releases are not covered by Drupal security advisories."
  6263. }
  6264. }
  6265. },
  6266. "notification-url": "https://packages.drupal.org/8/downloads",
  6267. "license": [
  6268. "GPL-2.0-or-later"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Dave Reid",
  6273. "homepage": "https://www.drupal.org/user/53892"
  6274. },
  6275. {
  6276. "name": "JohnAlbin",
  6277. "homepage": "https://www.drupal.org/user/32095"
  6278. },
  6279. {
  6280. "name": "joelpittet",
  6281. "homepage": "https://www.drupal.org/user/160302"
  6282. },
  6283. {
  6284. "name": "kim.pepper",
  6285. "homepage": "https://www.drupal.org/user/370574"
  6286. },
  6287. {
  6288. "name": "rrrob",
  6289. "homepage": "https://www.drupal.org/user/273533"
  6290. }
  6291. ],
  6292. "description": "Provides configurable blocks of menu links.",
  6293. "homepage": "https://www.drupal.org/project/menu_block",
  6294. "support": {
  6295. "source": "https://git.drupalcode.org/project/menu_block"
  6296. },
  6297. "time": "2020-11-18T00:42:05+00:00"
  6298. },
  6299. {
  6300. "name": "drupal/menu_position",
  6301. "version": "dev-1.x",
  6302. "source": {
  6303. "type": "git",
  6304. "url": "https://git.drupalcode.org/project/menu_position.git",
  6305. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6306. },
  6307. "require": {
  6308. "drupal/core": "^8 || ^9"
  6309. },
  6310. "type": "drupal-module",
  6311. "extra": {
  6312. "branch-alias": {
  6313. "dev-1.x": "1.x-dev"
  6314. },
  6315. "drupal": {
  6316. "version": "8.x-1.0-alpha4+4-dev",
  6317. "datestamp": "1587797468",
  6318. "security-coverage": {
  6319. "status": "not-covered",
  6320. "message": "Dev releases are not covered by Drupal security advisories."
  6321. }
  6322. }
  6323. },
  6324. "notification-url": "https://packages.drupal.org/8/downloads",
  6325. "license": [
  6326. "GPL-2.0+"
  6327. ],
  6328. "authors": [
  6329. {
  6330. "name": "BarisW",
  6331. "homepage": "https://www.drupal.org/user/107229"
  6332. },
  6333. {
  6334. "name": "JohnAlbin",
  6335. "homepage": "https://www.drupal.org/user/32095"
  6336. },
  6337. {
  6338. "name": "Sutharsan",
  6339. "homepage": "https://www.drupal.org/user/73854"
  6340. },
  6341. {
  6342. "name": "joelpittet",
  6343. "homepage": "https://www.drupal.org/user/160302"
  6344. },
  6345. {
  6346. "name": "lbainbridge",
  6347. "homepage": "https://www.drupal.org/user/2406996"
  6348. }
  6349. ],
  6350. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6351. "homepage": "https://www.drupal.org/project/menu_position",
  6352. "support": {
  6353. "source": "https://git.drupalcode.org/project/menu_position",
  6354. "issues": "https://www.drupal.org/project/issues/menu_position"
  6355. },
  6356. "time": "2020-04-25T06:50:43+00:00"
  6357. },
  6358. {
  6359. "name": "drupal/pagerer",
  6360. "version": "2.0.0",
  6361. "source": {
  6362. "type": "git",
  6363. "url": "https://git.drupalcode.org/project/pagerer.git",
  6364. "reference": "8.x-2.0"
  6365. },
  6366. "dist": {
  6367. "type": "zip",
  6368. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  6369. "reference": "8.x-2.0",
  6370. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  6371. },
  6372. "require": {
  6373. "drupal/core": "^8.8 || ^9",
  6374. "drupal/jquery_ui_button": "*",
  6375. "drupal/jquery_ui_slider": "*",
  6376. "php": ">=7.1"
  6377. },
  6378. "type": "drupal-module",
  6379. "extra": {
  6380. "drupal": {
  6381. "version": "8.x-2.0",
  6382. "datestamp": "1589289359",
  6383. "security-coverage": {
  6384. "status": "covered",
  6385. "message": "Covered by Drupal's security advisory policy"
  6386. }
  6387. }
  6388. },
  6389. "notification-url": "https://packages.drupal.org/8/downloads",
  6390. "license": [
  6391. "GPL-2.0-or-later"
  6392. ],
  6393. "authors": [
  6394. {
  6395. "name": "mondrake",
  6396. "homepage": "https://www.drupal.org/user/1307444"
  6397. }
  6398. ],
  6399. "description": "Configurable pager styles.",
  6400. "homepage": "https://www.drupal.org/project/pagerer",
  6401. "support": {
  6402. "source": "https://git.drupalcode.org/project/pagerer"
  6403. }
  6404. },
  6405. {
  6406. "name": "drupal/paragraphs",
  6407. "version": "1.12.0",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6411. "reference": "8.x-1.12"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  6416. "reference": "8.x-1.12",
  6417. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  6418. },
  6419. "require": {
  6420. "drupal/core": "^8.8 || ^9",
  6421. "drupal/entity_reference_revisions": "~1.3"
  6422. },
  6423. "require-dev": {
  6424. "drupal/block_field": "~1.0",
  6425. "drupal/ctools": "3.x-dev",
  6426. "drupal/diff": "~1.0",
  6427. "drupal/entity_browser": "2.x-dev",
  6428. "drupal/entity_usage": "2.x-dev",
  6429. "drupal/field_group": "3.x-dev",
  6430. "drupal/inline_entity_form": "~1.0",
  6431. "drupal/paragraphs-paragraphs_library": "*",
  6432. "drupal/replicate": "~1.0",
  6433. "drupal/search_api": "~1.0",
  6434. "drupal/search_api_db": "*"
  6435. },
  6436. "suggest": {
  6437. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6438. },
  6439. "type": "drupal-module",
  6440. "extra": {
  6441. "drupal": {
  6442. "version": "8.x-1.12",
  6443. "datestamp": "1590140081",
  6444. "security-coverage": {
  6445. "status": "covered",
  6446. "message": "Covered by Drupal's security advisory policy"
  6447. }
  6448. }
  6449. },
  6450. "notification-url": "https://packages.drupal.org/8/downloads",
  6451. "license": [
  6452. "GPL-2.0-or-later"
  6453. ],
  6454. "authors": [
  6455. {
  6456. "name": "Berdir",
  6457. "homepage": "https://www.drupal.org/user/214652"
  6458. },
  6459. {
  6460. "name": "Frans",
  6461. "homepage": "https://www.drupal.org/user/514222"
  6462. },
  6463. {
  6464. "name": "Primsi",
  6465. "homepage": "https://www.drupal.org/user/282629"
  6466. },
  6467. {
  6468. "name": "jeroen.b",
  6469. "homepage": "https://www.drupal.org/user/1853532"
  6470. },
  6471. {
  6472. "name": "jstoller",
  6473. "homepage": "https://www.drupal.org/user/99012"
  6474. },
  6475. {
  6476. "name": "miro_dietiker",
  6477. "homepage": "https://www.drupal.org/user/227761"
  6478. }
  6479. ],
  6480. "description": "Enables the creation of Paragraphs entities.",
  6481. "homepage": "https://www.drupal.org/project/paragraphs",
  6482. "support": {
  6483. "source": "https://git.drupalcode.org/project/paragraphs"
  6484. }
  6485. },
  6486. {
  6487. "name": "drupal/path_alias_xt",
  6488. "version": "dev-1.x",
  6489. "source": {
  6490. "type": "git",
  6491. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6492. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6493. },
  6494. "require": {
  6495. "drupal/core": "^8.7.7 || ^9"
  6496. },
  6497. "type": "drupal-module",
  6498. "extra": {
  6499. "branch-alias": {
  6500. "dev-1.x": "1.x-dev"
  6501. },
  6502. "drupal": {
  6503. "version": "8.x-1.x-dev",
  6504. "datestamp": "1590299862",
  6505. "security-coverage": {
  6506. "status": "not-covered",
  6507. "message": "Dev releases are not covered by Drupal security advisories."
  6508. }
  6509. }
  6510. },
  6511. "notification-url": "https://packages.drupal.org/8/downloads",
  6512. "license": [
  6513. "GPL-2.0-or-later"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "RdeBoer",
  6518. "homepage": "https://www.drupal.org/user/404007"
  6519. },
  6520. {
  6521. "name": "adriancid",
  6522. "homepage": "https://www.drupal.org/user/1962106"
  6523. },
  6524. {
  6525. "name": "sdstyles",
  6526. "homepage": "https://www.drupal.org/user/1420228"
  6527. }
  6528. ],
  6529. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  6530. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6531. "support": {
  6532. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6533. },
  6534. "time": "2020-05-24T05:57:09+00:00"
  6535. },
  6536. {
  6537. "name": "drupal/pathauto",
  6538. "version": "1.8.0",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://git.drupalcode.org/project/pathauto.git",
  6542. "reference": "8.x-1.8"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6547. "reference": "8.x-1.8",
  6548. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6549. },
  6550. "require": {
  6551. "drupal/core": "^8.8 || ^9",
  6552. "drupal/ctools": "*",
  6553. "drupal/token": "*"
  6554. },
  6555. "suggest": {
  6556. "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."
  6557. },
  6558. "type": "drupal-module",
  6559. "extra": {
  6560. "drupal": {
  6561. "version": "8.x-1.8",
  6562. "datestamp": "1588103046",
  6563. "security-coverage": {
  6564. "status": "covered",
  6565. "message": "Covered by Drupal's security advisory policy"
  6566. }
  6567. },
  6568. "drush": {
  6569. "services": {
  6570. "drush.services.yml": "^9 || ^10"
  6571. }
  6572. }
  6573. },
  6574. "notification-url": "https://packages.drupal.org/8/downloads",
  6575. "license": [
  6576. "GPL-2.0-or-later"
  6577. ],
  6578. "authors": [
  6579. {
  6580. "name": "Berdir",
  6581. "homepage": "https://www.drupal.org/user/214652"
  6582. },
  6583. {
  6584. "name": "Dave Reid",
  6585. "homepage": "https://www.drupal.org/user/53892"
  6586. },
  6587. {
  6588. "name": "Freso",
  6589. "homepage": "https://www.drupal.org/user/27504"
  6590. },
  6591. {
  6592. "name": "greggles",
  6593. "homepage": "https://www.drupal.org/user/36762"
  6594. }
  6595. ],
  6596. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6597. "homepage": "https://www.drupal.org/project/pathauto",
  6598. "support": {
  6599. "source": "https://cgit.drupalcode.org/pathauto",
  6600. "issues": "https://www.drupal.org/project/issues/pathauto",
  6601. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6602. }
  6603. },
  6604. {
  6605. "name": "drupal/pathologic",
  6606. "version": "1.0.0-alpha2",
  6607. "source": {
  6608. "type": "git",
  6609. "url": "https://git.drupalcode.org/project/pathologic.git",
  6610. "reference": "8.x-1.0-alpha2"
  6611. },
  6612. "dist": {
  6613. "type": "zip",
  6614. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6615. "reference": "8.x-1.0-alpha2",
  6616. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6617. },
  6618. "require": {
  6619. "drupal/core": "^8 || ^9"
  6620. },
  6621. "type": "drupal-module",
  6622. "extra": {
  6623. "drupal": {
  6624. "version": "8.x-1.0-alpha2",
  6625. "datestamp": "1593911470",
  6626. "security-coverage": {
  6627. "status": "not-covered",
  6628. "message": "Alpha releases are not covered by Drupal security advisories."
  6629. }
  6630. }
  6631. },
  6632. "notification-url": "https://packages.drupal.org/8/downloads",
  6633. "license": [
  6634. "GPL-2.0-or-later"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Berdir",
  6639. "homepage": "https://www.drupal.org/user/214652"
  6640. },
  6641. {
  6642. "name": "Garrett Albright",
  6643. "homepage": "https://www.drupal.org/user/191212"
  6644. },
  6645. {
  6646. "name": "dww",
  6647. "homepage": "https://www.drupal.org/user/46549"
  6648. }
  6649. ],
  6650. "description": "Helps avoid broken links and incorrect paths in content.",
  6651. "homepage": "https://www.drupal.org/project/pathologic",
  6652. "support": {
  6653. "source": "https://git.drupalcode.org/project/pathologic"
  6654. }
  6655. },
  6656. {
  6657. "name": "drupal/persistent_login",
  6658. "version": "1.3.0",
  6659. "source": {
  6660. "type": "git",
  6661. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6662. "reference": "8.x-1.3"
  6663. },
  6664. "dist": {
  6665. "type": "zip",
  6666. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6667. "reference": "8.x-1.3",
  6668. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6669. },
  6670. "require": {
  6671. "drupal/core": "^8.3 || ^9.0"
  6672. },
  6673. "type": "drupal-module",
  6674. "extra": {
  6675. "drupal": {
  6676. "version": "8.x-1.3",
  6677. "datestamp": "1591597823",
  6678. "security-coverage": {
  6679. "status": "covered",
  6680. "message": "Covered by Drupal's security advisory policy"
  6681. }
  6682. }
  6683. },
  6684. "notification-url": "https://packages.drupal.org/8/downloads",
  6685. "license": [
  6686. "GPL-2.0-or-later"
  6687. ],
  6688. "authors": [
  6689. {
  6690. "name": "gapple",
  6691. "homepage": "https://www.drupal.org/user/490940"
  6692. }
  6693. ],
  6694. "description": "Provides a \"Remember Me\" feature on the login form.",
  6695. "homepage": "https://www.drupal.org/project/persistent_login",
  6696. "keywords": [
  6697. "Drupal"
  6698. ],
  6699. "support": {
  6700. "source": "https://git.drupalcode.org/project/persistent_login",
  6701. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6702. }
  6703. },
  6704. {
  6705. "name": "drupal/profile",
  6706. "version": "1.2.0",
  6707. "source": {
  6708. "type": "git",
  6709. "url": "https://git.drupalcode.org/project/profile.git",
  6710. "reference": "8.x-1.2"
  6711. },
  6712. "dist": {
  6713. "type": "zip",
  6714. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  6715. "reference": "8.x-1.2",
  6716. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  6717. },
  6718. "require": {
  6719. "drupal/core": "^8.8 || ^9",
  6720. "drupal/entity": "^1.0-rc2"
  6721. },
  6722. "require-dev": {
  6723. "drupal/token": "^1.7"
  6724. },
  6725. "type": "drupal-module",
  6726. "extra": {
  6727. "drupal": {
  6728. "version": "8.x-1.2",
  6729. "datestamp": "1604422701",
  6730. "security-coverage": {
  6731. "status": "covered",
  6732. "message": "Covered by Drupal's security advisory policy"
  6733. }
  6734. }
  6735. },
  6736. "notification-url": "https://packages.drupal.org/8/downloads",
  6737. "license": [
  6738. "GPL-2.0-or-later"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "bojanz",
  6743. "homepage": "https://www.drupal.org/user/86106"
  6744. },
  6745. {
  6746. "name": "daggerhart",
  6747. "homepage": "https://www.drupal.org/user/167806"
  6748. },
  6749. {
  6750. "name": "fago",
  6751. "homepage": "https://www.drupal.org/user/16747"
  6752. },
  6753. {
  6754. "name": "jsacksick",
  6755. "homepage": "https://www.drupal.org/user/972218"
  6756. },
  6757. {
  6758. "name": "mglaman",
  6759. "homepage": "https://www.drupal.org/user/2416470"
  6760. },
  6761. {
  6762. "name": "pcambra",
  6763. "homepage": "https://www.drupal.org/user/122101"
  6764. }
  6765. ],
  6766. "description": "Provides configurable user profiles.",
  6767. "homepage": "http://drupal.org/project/profile",
  6768. "support": {
  6769. "source": "https://git.drupalcode.org/project/profile"
  6770. }
  6771. },
  6772. {
  6773. "name": "drupal/redirect",
  6774. "version": "1.6.0",
  6775. "source": {
  6776. "type": "git",
  6777. "url": "https://git.drupalcode.org/project/redirect.git",
  6778. "reference": "8.x-1.6"
  6779. },
  6780. "dist": {
  6781. "type": "zip",
  6782. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  6783. "reference": "8.x-1.6",
  6784. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  6785. },
  6786. "require": {
  6787. "drupal/core": "^8.8 || ^9"
  6788. },
  6789. "type": "drupal-module",
  6790. "extra": {
  6791. "drupal": {
  6792. "version": "8.x-1.6",
  6793. "datestamp": "1589312204",
  6794. "security-coverage": {
  6795. "status": "covered",
  6796. "message": "Covered by Drupal's security advisory policy"
  6797. }
  6798. }
  6799. },
  6800. "notification-url": "https://packages.drupal.org/8/downloads",
  6801. "license": [
  6802. "GPL-2.0-or-later"
  6803. ],
  6804. "authors": [
  6805. {
  6806. "name": "Berdir",
  6807. "homepage": "https://www.drupal.org/user/214652"
  6808. },
  6809. {
  6810. "name": "Dave Reid",
  6811. "homepage": "https://www.drupal.org/user/53892"
  6812. },
  6813. {
  6814. "name": "pifagor",
  6815. "homepage": "https://www.drupal.org/user/2375692"
  6816. }
  6817. ],
  6818. "description": "Allows users to redirect from old URLs to new URLs.",
  6819. "homepage": "https://www.drupal.org/project/redirect",
  6820. "support": {
  6821. "source": "https://git.drupalcode.org/project/redirect"
  6822. }
  6823. },
  6824. {
  6825. "name": "drupal/redis",
  6826. "version": "1.5.0",
  6827. "source": {
  6828. "type": "git",
  6829. "url": "https://git.drupalcode.org/project/redis.git",
  6830. "reference": "8.x-1.5"
  6831. },
  6832. "dist": {
  6833. "type": "zip",
  6834. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  6835. "reference": "8.x-1.5",
  6836. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  6837. },
  6838. "require": {
  6839. "drupal/core": "^8.8 || ^9"
  6840. },
  6841. "suggest": {
  6842. "predis/predis": "^1.1.1"
  6843. },
  6844. "type": "drupal-module",
  6845. "extra": {
  6846. "drupal": {
  6847. "version": "8.x-1.5",
  6848. "datestamp": "1609972488",
  6849. "security-coverage": {
  6850. "status": "covered",
  6851. "message": "Covered by Drupal's security advisory policy"
  6852. }
  6853. }
  6854. },
  6855. "autoload": {
  6856. "psr-4": {
  6857. "Drupal\\redis\\": "src"
  6858. }
  6859. },
  6860. "notification-url": "https://packages.drupal.org/8/downloads",
  6861. "license": [
  6862. "GPL-2.0-or-later"
  6863. ],
  6864. "authors": [
  6865. {
  6866. "name": "Berdir",
  6867. "homepage": "https://www.drupal.org/user/214652"
  6868. },
  6869. {
  6870. "name": "pounard",
  6871. "homepage": "https://www.drupal.org/user/240164"
  6872. }
  6873. ],
  6874. "description": "Integration of Drupal with the Redis key-value store.",
  6875. "homepage": "https://www.drupal.org/project/redis",
  6876. "support": {
  6877. "source": "https://git.drupalcode.org/project/redis"
  6878. }
  6879. },
  6880. {
  6881. "name": "drupal/search_api",
  6882. "version": "1.19.0",
  6883. "source": {
  6884. "type": "git",
  6885. "url": "https://git.drupalcode.org/project/search_api.git",
  6886. "reference": "8.x-1.19"
  6887. },
  6888. "dist": {
  6889. "type": "zip",
  6890. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  6891. "reference": "8.x-1.19",
  6892. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  6893. },
  6894. "require": {
  6895. "drupal/core": "^8.8 || ^9"
  6896. },
  6897. "conflict": {
  6898. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6899. },
  6900. "require-dev": {
  6901. "drupal/language_fallback_fix": "@dev",
  6902. "drupal/search_api_autocomplete": "@dev",
  6903. "drupal/search_api_db": "*"
  6904. },
  6905. "suggest": {
  6906. "drupal/facets": "Adds the ability to create faceted searches.",
  6907. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6908. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6909. },
  6910. "type": "drupal-module",
  6911. "extra": {
  6912. "drupal": {
  6913. "version": "8.x-1.19",
  6914. "datestamp": "1612192040",
  6915. "security-coverage": {
  6916. "status": "covered",
  6917. "message": "Covered by Drupal's security advisory policy"
  6918. }
  6919. },
  6920. "drush": {
  6921. "services": {
  6922. "drush.services.yml": "^9"
  6923. }
  6924. }
  6925. },
  6926. "notification-url": "https://packages.drupal.org/8/downloads",
  6927. "license": [
  6928. "GPL-2.0-or-later"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "Thomas Seidl",
  6933. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6934. },
  6935. {
  6936. "name": "Nick Veenhof",
  6937. "homepage": "https://www.drupal.org/u/nick_vh"
  6938. },
  6939. {
  6940. "name": "See other contributors",
  6941. "homepage": "https://www.drupal.org/node/790418/committers"
  6942. }
  6943. ],
  6944. "description": "Provides a generic framework for modules offering search capabilities.",
  6945. "homepage": "https://www.drupal.org/project/search_api",
  6946. "support": {
  6947. "source": "https://git.drupalcode.org/project/search_api",
  6948. "issues": "https://www.drupal.org/project/issues/search_api",
  6949. "irc": "irc://irc.freenode.org/drupal-search-api"
  6950. }
  6951. },
  6952. {
  6953. "name": "drupal/search_api_db",
  6954. "version": "1.18.0",
  6955. "require": {
  6956. "drupal/core": "^8.8 || ^9",
  6957. "drupal/search_api": "*"
  6958. },
  6959. "type": "metapackage",
  6960. "extra": {
  6961. "drupal": {
  6962. "version": "8.x-1.18",
  6963. "datestamp": "1605204423",
  6964. "security-coverage": {
  6965. "status": "covered",
  6966. "message": "Covered by Drupal's security advisory policy"
  6967. }
  6968. }
  6969. },
  6970. "notification-url": "https://packages.drupal.org/8/downloads",
  6971. "license": [
  6972. "GPL-2.0-or-later"
  6973. ],
  6974. "authors": [
  6975. {
  6976. "name": "Nick_vh",
  6977. "homepage": "https://www.drupal.org/user/122682"
  6978. },
  6979. {
  6980. "name": "borisson_",
  6981. "homepage": "https://www.drupal.org/user/2393360"
  6982. },
  6983. {
  6984. "name": "drunken monkey",
  6985. "homepage": "https://www.drupal.org/user/205582"
  6986. }
  6987. ],
  6988. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6989. "homepage": "https://www.drupal.org/project/search_api",
  6990. "support": {
  6991. "source": "https://git.drupalcode.org/project/search_api"
  6992. }
  6993. },
  6994. {
  6995. "name": "drupal/smart_trim",
  6996. "version": "1.3.0",
  6997. "source": {
  6998. "type": "git",
  6999. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7000. "reference": "8.x-1.3"
  7001. },
  7002. "dist": {
  7003. "type": "zip",
  7004. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7005. "reference": "8.x-1.3",
  7006. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7007. },
  7008. "require": {
  7009. "drupal/core": "^8 || ^9"
  7010. },
  7011. "type": "drupal-module",
  7012. "extra": {
  7013. "drupal": {
  7014. "version": "8.x-1.3",
  7015. "datestamp": "1589766531",
  7016. "security-coverage": {
  7017. "status": "covered",
  7018. "message": "Covered by Drupal's security advisory policy"
  7019. }
  7020. }
  7021. },
  7022. "notification-url": "https://packages.drupal.org/8/downloads",
  7023. "license": [
  7024. "GPL-2.0-or-later"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Mark Casias (markie)",
  7029. "homepage": "https://www.drupal.org/u/markie",
  7030. "role": "Maintainer"
  7031. },
  7032. {
  7033. "name": "chrisjlee",
  7034. "homepage": "https://www.drupal.org/user/760600"
  7035. },
  7036. {
  7037. "name": "drywall",
  7038. "homepage": "https://www.drupal.org/user/192591"
  7039. },
  7040. {
  7041. "name": "jsenich",
  7042. "homepage": "https://www.drupal.org/user/58871"
  7043. },
  7044. {
  7045. "name": "markie",
  7046. "homepage": "https://www.drupal.org/user/206687"
  7047. },
  7048. {
  7049. "name": "newsignature",
  7050. "homepage": "https://www.drupal.org/user/765518"
  7051. }
  7052. ],
  7053. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7054. "homepage": "https://drupal.org/project/smart_trim",
  7055. "support": {
  7056. "source": "https://cgit.drupalcode.org/smart_trim",
  7057. "issues": "https://drupal.org/project/issues/smart_trim"
  7058. }
  7059. },
  7060. {
  7061. "name": "drupal/smtp",
  7062. "version": "1.0.0",
  7063. "source": {
  7064. "type": "git",
  7065. "url": "https://git.drupalcode.org/project/smtp.git",
  7066. "reference": "8.x-1.0"
  7067. },
  7068. "dist": {
  7069. "type": "zip",
  7070. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7071. "reference": "8.x-1.0",
  7072. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7073. },
  7074. "require": {
  7075. "drupal/core": "^8.8 || ^9",
  7076. "phpmailer/phpmailer": "^6.1.7"
  7077. },
  7078. "suggest": {
  7079. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7080. },
  7081. "type": "drupal-module",
  7082. "extra": {
  7083. "drupal": {
  7084. "version": "8.x-1.0",
  7085. "datestamp": "1601070985",
  7086. "security-coverage": {
  7087. "status": "covered",
  7088. "message": "Covered by Drupal's security advisory policy"
  7089. }
  7090. },
  7091. "branch-alias": {
  7092. "dev-8.x-1.x": "1.x-dev"
  7093. }
  7094. },
  7095. "notification-url": "https://packages.drupal.org/8/downloads",
  7096. "license": [
  7097. "GPL-2.0-or-later"
  7098. ],
  7099. "authors": [
  7100. {
  7101. "name": "LukeLast",
  7102. "homepage": "https://www.drupal.org/user/30151"
  7103. },
  7104. {
  7105. "name": "japerry",
  7106. "homepage": "https://www.drupal.org/user/45640"
  7107. },
  7108. {
  7109. "name": "josesanmartin",
  7110. "homepage": "https://www.drupal.org/user/72012"
  7111. },
  7112. {
  7113. "name": "oadaeh",
  7114. "homepage": "https://www.drupal.org/user/4649"
  7115. },
  7116. {
  7117. "name": "sadashiv",
  7118. "homepage": "https://www.drupal.org/user/1773304"
  7119. },
  7120. {
  7121. "name": "wundo",
  7122. "homepage": "https://www.drupal.org/user/25523"
  7123. },
  7124. {
  7125. "name": "yettyn",
  7126. "homepage": "https://www.drupal.org/user/93281"
  7127. }
  7128. ],
  7129. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7130. "homepage": "https://www.drupal.org/project/smtp",
  7131. "support": {
  7132. "source": "https://git.drupalcode.org/project/smtp",
  7133. "issues": "https://www.drupal.org/project/issues/smtp"
  7134. }
  7135. },
  7136. {
  7137. "name": "drupal/sophron",
  7138. "version": "1.1.0",
  7139. "source": {
  7140. "type": "git",
  7141. "url": "https://git.drupalcode.org/project/sophron.git",
  7142. "reference": "8.x-1.1"
  7143. },
  7144. "dist": {
  7145. "type": "zip",
  7146. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7147. "reference": "8.x-1.1",
  7148. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7149. },
  7150. "require": {
  7151. "drupal/core": "^8.9 || ^9",
  7152. "fileeye/mimemap": "^1.1.4",
  7153. "php": ">=7.1"
  7154. },
  7155. "type": "drupal-module",
  7156. "extra": {
  7157. "drupal": {
  7158. "version": "8.x-1.1",
  7159. "datestamp": "1606047077",
  7160. "security-coverage": {
  7161. "status": "covered",
  7162. "message": "Covered by Drupal's security advisory policy"
  7163. }
  7164. }
  7165. },
  7166. "autoload": {
  7167. "psr-4": {
  7168. "Drupal\\sophron\\": "src/"
  7169. }
  7170. },
  7171. "notification-url": "https://packages.drupal.org/8/downloads",
  7172. "license": [
  7173. "GPL-2.0-or-later"
  7174. ],
  7175. "authors": [
  7176. {
  7177. "name": "mondrake",
  7178. "homepage": "https://www.drupal.org/user/1307444"
  7179. }
  7180. ],
  7181. "description": "Provides an extensive MIME types management API",
  7182. "homepage": "https://www.drupal.org/project/sophron",
  7183. "support": {
  7184. "source": "https://git.drupalcode.org/project/sophron"
  7185. }
  7186. },
  7187. {
  7188. "name": "drupal/synonyms",
  7189. "version": "dev-1.x",
  7190. "source": {
  7191. "type": "git",
  7192. "url": "https://git.drupalcode.org/project/synonyms.git",
  7193. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7194. },
  7195. "require": {
  7196. "drupal/core": "^8 || ^9"
  7197. },
  7198. "type": "drupal-module",
  7199. "extra": {
  7200. "branch-alias": {
  7201. "dev-1.x": "1.x-dev"
  7202. },
  7203. "drupal": {
  7204. "version": "8.x-1.0-alpha1+23-dev",
  7205. "datestamp": "1607727823",
  7206. "security-coverage": {
  7207. "status": "not-covered",
  7208. "message": "Dev releases are not covered by Drupal security advisories."
  7209. }
  7210. }
  7211. },
  7212. "notification-url": "https://packages.drupal.org/8/downloads",
  7213. "license": [
  7214. "GPL-2.0-or-later"
  7215. ],
  7216. "authors": [
  7217. {
  7218. "name": "Zen",
  7219. "homepage": "https://www.drupal.org/user/21209"
  7220. },
  7221. {
  7222. "name": "bojanz",
  7223. "homepage": "https://www.drupal.org/user/86106"
  7224. },
  7225. {
  7226. "name": "bucefal91",
  7227. "homepage": "https://www.drupal.org/user/504128"
  7228. },
  7229. {
  7230. "name": "devad",
  7231. "homepage": "https://www.drupal.org/user/2268520"
  7232. }
  7233. ],
  7234. "description": "Provides synonyms feature for content entities.",
  7235. "homepage": "https://www.drupal.org/project/synonyms",
  7236. "support": {
  7237. "source": "https://git.drupalcode.org/project/synonyms"
  7238. },
  7239. "time": "2020-12-11T23:17:33+00:00"
  7240. },
  7241. {
  7242. "name": "drupal/token",
  7243. "version": "1.9.0",
  7244. "source": {
  7245. "type": "git",
  7246. "url": "https://git.drupalcode.org/project/token.git",
  7247. "reference": "8.x-1.9"
  7248. },
  7249. "dist": {
  7250. "type": "zip",
  7251. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7252. "reference": "8.x-1.9",
  7253. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7254. },
  7255. "require": {
  7256. "drupal/core": "^8.8 || ^9"
  7257. },
  7258. "type": "drupal-module",
  7259. "extra": {
  7260. "drupal": {
  7261. "version": "8.x-1.9",
  7262. "datestamp": "1608284866",
  7263. "security-coverage": {
  7264. "status": "covered",
  7265. "message": "Covered by Drupal's security advisory policy"
  7266. }
  7267. },
  7268. "drush": {
  7269. "services": {
  7270. "drush.services.yml": "^9 || ^10"
  7271. }
  7272. }
  7273. },
  7274. "notification-url": "https://packages.drupal.org/8/downloads",
  7275. "license": [
  7276. "GPL-2.0-or-later"
  7277. ],
  7278. "authors": [
  7279. {
  7280. "name": "Berdir",
  7281. "homepage": "https://www.drupal.org/user/214652"
  7282. },
  7283. {
  7284. "name": "Dave Reid",
  7285. "homepage": "https://www.drupal.org/user/53892"
  7286. },
  7287. {
  7288. "name": "eaton",
  7289. "homepage": "https://www.drupal.org/user/16496"
  7290. },
  7291. {
  7292. "name": "fago",
  7293. "homepage": "https://www.drupal.org/user/16747"
  7294. },
  7295. {
  7296. "name": "greggles",
  7297. "homepage": "https://www.drupal.org/user/36762"
  7298. },
  7299. {
  7300. "name": "mikeryan",
  7301. "homepage": "https://www.drupal.org/user/4420"
  7302. }
  7303. ],
  7304. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7305. "homepage": "https://www.drupal.org/project/token",
  7306. "support": {
  7307. "source": "https://git.drupalcode.org/project/token"
  7308. }
  7309. },
  7310. {
  7311. "name": "drupal/translation_views",
  7312. "version": "1.0.0-alpha10",
  7313. "source": {
  7314. "type": "git",
  7315. "url": "https://git.drupalcode.org/project/translation_views.git",
  7316. "reference": "8.x-1.0-alpha10"
  7317. },
  7318. "dist": {
  7319. "type": "zip",
  7320. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7321. "reference": "8.x-1.0-alpha10",
  7322. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7323. },
  7324. "require": {
  7325. "drupal/core": "^8.8 || ^9"
  7326. },
  7327. "require-dev": {
  7328. "drupal/translators": "*",
  7329. "drupal/translators_content": "*"
  7330. },
  7331. "type": "drupal-module",
  7332. "extra": {
  7333. "drupal": {
  7334. "version": "8.x-1.0-alpha10",
  7335. "datestamp": "1584303687",
  7336. "security-coverage": {
  7337. "status": "not-covered",
  7338. "message": "Project has not opted into security advisory coverage!"
  7339. }
  7340. }
  7341. },
  7342. "notification-url": "https://packages.drupal.org/8/downloads",
  7343. "license": [
  7344. "GPL-2.0-or-later"
  7345. ],
  7346. "authors": [
  7347. {
  7348. "name": "matsbla",
  7349. "homepage": "https://www.drupal.org/user/2325394"
  7350. },
  7351. {
  7352. "name": "vlad.dancer",
  7353. "homepage": "https://www.drupal.org/user/903844"
  7354. }
  7355. ],
  7356. "description": "Create customized lists and queries of translations from your database.",
  7357. "homepage": "https://www.drupal.org/project/translation_views",
  7358. "support": {
  7359. "source": "https://git.drupalcode.org/project/translation_views"
  7360. }
  7361. },
  7362. {
  7363. "name": "drupal/ultimate_cron",
  7364. "version": "2.0.0-alpha5",
  7365. "source": {
  7366. "type": "git",
  7367. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7368. "reference": "8.x-2.0-alpha5"
  7369. },
  7370. "dist": {
  7371. "type": "zip",
  7372. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7373. "reference": "8.x-2.0-alpha5",
  7374. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7375. },
  7376. "require": {
  7377. "drupal/core": "^8.7.7 || ^9"
  7378. },
  7379. "type": "drupal-module",
  7380. "extra": {
  7381. "drupal": {
  7382. "version": "8.x-2.0-alpha5",
  7383. "datestamp": "1600928948",
  7384. "security-coverage": {
  7385. "status": "not-covered",
  7386. "message": "Alpha releases are not covered by Drupal security advisories."
  7387. }
  7388. },
  7389. "drush": {
  7390. "services": {
  7391. "drush.services.yml": "^9 || ^10"
  7392. }
  7393. }
  7394. },
  7395. "notification-url": "https://packages.drupal.org/8/downloads",
  7396. "license": [
  7397. "GPL-2.0+"
  7398. ],
  7399. "authors": [
  7400. {
  7401. "name": "Berdir",
  7402. "homepage": "https://www.drupal.org/user/214652"
  7403. },
  7404. {
  7405. "name": "Dane Powell",
  7406. "homepage": "https://www.drupal.org/user/339326"
  7407. },
  7408. {
  7409. "name": "Primsi",
  7410. "homepage": "https://www.drupal.org/user/282629"
  7411. },
  7412. {
  7413. "name": "arnested",
  7414. "homepage": "https://www.drupal.org/user/245635"
  7415. },
  7416. {
  7417. "name": "gielfeldt",
  7418. "homepage": "https://www.drupal.org/user/366993"
  7419. },
  7420. {
  7421. "name": "miro_dietiker",
  7422. "homepage": "https://www.drupal.org/user/227761"
  7423. }
  7424. ],
  7425. "description": "Ultimate cron",
  7426. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7427. "support": {
  7428. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7429. }
  7430. },
  7431. {
  7432. "name": "drupal/url_to_video_filter",
  7433. "version": "2.0.0",
  7434. "source": {
  7435. "type": "git",
  7436. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7437. "reference": "2.0.0"
  7438. },
  7439. "dist": {
  7440. "type": "zip",
  7441. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7442. "reference": "2.0.0",
  7443. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7444. },
  7445. "require": {
  7446. "drupal/core": "^8 || ^9"
  7447. },
  7448. "type": "drupal-module",
  7449. "extra": {
  7450. "drupal": {
  7451. "version": "2.0.0",
  7452. "datestamp": "1607298389",
  7453. "security-coverage": {
  7454. "status": "covered",
  7455. "message": "Covered by Drupal's security advisory policy"
  7456. }
  7457. }
  7458. },
  7459. "notification-url": "https://packages.drupal.org/8/downloads",
  7460. "license": [
  7461. "GPL-2.0-or-later"
  7462. ],
  7463. "authors": [
  7464. {
  7465. "name": "Jaypan",
  7466. "homepage": "https://www.drupal.org/user/324696"
  7467. }
  7468. ],
  7469. "description": "Text filter to convert URLs to embedded videos",
  7470. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7471. "support": {
  7472. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7473. }
  7474. },
  7475. {
  7476. "name": "drupal/video_embed_field",
  7477. "version": "2.4.0",
  7478. "source": {
  7479. "type": "git",
  7480. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7481. "reference": "8.x-2.4"
  7482. },
  7483. "dist": {
  7484. "type": "zip",
  7485. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7486. "reference": "8.x-2.4",
  7487. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7488. },
  7489. "require": {
  7490. "drupal/core": "^8.8 || ^9"
  7491. },
  7492. "require-dev": {
  7493. "drupal/colorbox": "^1.0",
  7494. "drupal/video_embed_media": "*"
  7495. },
  7496. "type": "drupal-module",
  7497. "extra": {
  7498. "drupal": {
  7499. "version": "8.x-2.4",
  7500. "datestamp": "1587686337",
  7501. "security-coverage": {
  7502. "status": "covered",
  7503. "message": "Covered by Drupal's security advisory policy"
  7504. }
  7505. }
  7506. },
  7507. "notification-url": "https://packages.drupal.org/8/downloads",
  7508. "license": [
  7509. "GPL-2.0+"
  7510. ],
  7511. "authors": [
  7512. {
  7513. "name": "Sam152",
  7514. "homepage": "https://www.drupal.org/user/1485048"
  7515. },
  7516. {
  7517. "name": "jec006",
  7518. "homepage": "https://www.drupal.org/user/855980"
  7519. },
  7520. {
  7521. "name": "plopesc",
  7522. "homepage": "https://www.drupal.org/user/282415"
  7523. }
  7524. ],
  7525. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7526. "homepage": "https://www.drupal.org/project/video_embed_field",
  7527. "support": {
  7528. "source": "https://git.drupalcode.org/project/video_embed_field"
  7529. }
  7530. },
  7531. {
  7532. "name": "drupal/views_bulk_edit",
  7533. "version": "2.5.0",
  7534. "source": {
  7535. "type": "git",
  7536. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7537. "reference": "8.x-2.5"
  7538. },
  7539. "dist": {
  7540. "type": "zip",
  7541. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  7542. "reference": "8.x-2.5",
  7543. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  7544. },
  7545. "require": {
  7546. "drupal/core": "^8 || ^9"
  7547. },
  7548. "require-dev": {
  7549. "drupal/views_bulk_operations": "~3.0"
  7550. },
  7551. "suggest": {
  7552. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7553. },
  7554. "type": "drupal-module",
  7555. "extra": {
  7556. "drupal": {
  7557. "version": "8.x-2.5",
  7558. "datestamp": "1606726163",
  7559. "security-coverage": {
  7560. "status": "covered",
  7561. "message": "Covered by Drupal's security advisory policy"
  7562. }
  7563. }
  7564. },
  7565. "notification-url": "https://packages.drupal.org/8/downloads",
  7566. "license": [
  7567. "GPL-2.0+"
  7568. ],
  7569. "authors": [
  7570. {
  7571. "name": "Marcin Grabias",
  7572. "homepage": "https://www.drupal.org/u/graber"
  7573. },
  7574. {
  7575. "name": "benjy",
  7576. "homepage": "https://www.drupal.org/user/1852732"
  7577. }
  7578. ],
  7579. "description": "Allows bulk edition of entity field values.",
  7580. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7581. "support": {
  7582. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7583. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7584. }
  7585. },
  7586. {
  7587. "name": "drupal/views_bulk_operations",
  7588. "version": "3.10.0",
  7589. "source": {
  7590. "type": "git",
  7591. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7592. "reference": "8.x-3.10"
  7593. },
  7594. "dist": {
  7595. "type": "zip",
  7596. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.10.zip",
  7597. "reference": "8.x-3.10",
  7598. "shasum": "e346c2a72fc9a1ae8af418e6a02076f52c0fcc7b"
  7599. },
  7600. "require": {
  7601. "drupal/core": "^8.8 || ^9"
  7602. },
  7603. "require-dev": {
  7604. "drush/drush": "^10"
  7605. },
  7606. "suggest": {
  7607. "drush/drush": "^9 || ^10"
  7608. },
  7609. "type": "drupal-module",
  7610. "extra": {
  7611. "drupal": {
  7612. "version": "8.x-3.10",
  7613. "datestamp": "1608795018",
  7614. "security-coverage": {
  7615. "status": "covered",
  7616. "message": "Covered by Drupal's security advisory policy"
  7617. }
  7618. },
  7619. "drush": {
  7620. "services": {
  7621. "drush.services.yml": "^9 || ^10"
  7622. }
  7623. }
  7624. },
  7625. "notification-url": "https://packages.drupal.org/8/downloads",
  7626. "license": [
  7627. "GPL-2.0-or-later"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "Marcin Grabias",
  7632. "homepage": "https://www.drupal.org/u/graber"
  7633. },
  7634. {
  7635. "name": "Jon Pugh",
  7636. "homepage": "https://www.drupal.org/user/17028"
  7637. },
  7638. {
  7639. "name": "bojanz",
  7640. "homepage": "https://www.drupal.org/user/86106"
  7641. },
  7642. {
  7643. "name": "infojunkie",
  7644. "homepage": "https://www.drupal.org/user/48424"
  7645. },
  7646. {
  7647. "name": "joelpittet",
  7648. "homepage": "https://www.drupal.org/user/160302"
  7649. }
  7650. ],
  7651. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7652. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7653. "support": {
  7654. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7655. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7656. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7657. }
  7658. },
  7659. {
  7660. "name": "drupal/views_ef_fieldset",
  7661. "version": "1.5.0",
  7662. "source": {
  7663. "type": "git",
  7664. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7665. "reference": "8.x-1.5"
  7666. },
  7667. "dist": {
  7668. "type": "zip",
  7669. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  7670. "reference": "8.x-1.5",
  7671. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  7672. },
  7673. "require": {
  7674. "drupal/core": "^8 || ^9",
  7675. "php": ">=7"
  7676. },
  7677. "type": "drupal-module",
  7678. "extra": {
  7679. "drupal": {
  7680. "version": "8.x-1.5",
  7681. "datestamp": "1604567512",
  7682. "security-coverage": {
  7683. "status": "covered",
  7684. "message": "Covered by Drupal's security advisory policy"
  7685. }
  7686. },
  7687. "composer-exit-on-patch-failure": true,
  7688. "enable-patching": true,
  7689. "patches": {
  7690. "drupal/core": {
  7691. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  7692. }
  7693. }
  7694. },
  7695. "autoload-dev": {
  7696. "psr-4": {
  7697. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  7698. }
  7699. },
  7700. "notification-url": "https://packages.drupal.org/8/downloads",
  7701. "scripts": {
  7702. "grumphp": [
  7703. "./vendor/bin/grumphp run"
  7704. ]
  7705. },
  7706. "license": [
  7707. "GPL-2.0+"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "Pol Dellaiera",
  7712. "homepage": "https://www.drupal.org/user/47194",
  7713. "email": "pol.dellaiera@protonmail.com"
  7714. },
  7715. {
  7716. "name": "ciss",
  7717. "homepage": "https://www.drupal.org/user/1632364"
  7718. }
  7719. ],
  7720. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  7721. "homepage": "https://drupal.org/project/views_field_formatter",
  7722. "support": {
  7723. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7724. }
  7725. },
  7726. {
  7727. "name": "drush/drush",
  7728. "version": "10.3.6",
  7729. "source": {
  7730. "type": "git",
  7731. "url": "https://github.com/drush-ops/drush.git",
  7732. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  7733. },
  7734. "dist": {
  7735. "type": "zip",
  7736. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  7737. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  7738. "shasum": ""
  7739. },
  7740. "require": {
  7741. "chi-teck/drupal-code-generator": "^1.32.1",
  7742. "composer/semver": "^1.4 || ^3",
  7743. "consolidation/config": "^1.2",
  7744. "consolidation/filter-via-dot-access-data": "^1",
  7745. "consolidation/robo": "^1.4.11 || ^2",
  7746. "consolidation/site-alias": "^3.0.0@stable",
  7747. "consolidation/site-process": "^2.1 || ^4",
  7748. "ext-dom": "*",
  7749. "grasmash/yaml-expander": "^1.1.1",
  7750. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  7751. "league/container": "~2",
  7752. "php": ">=7.1.3",
  7753. "psr/log": "~1.0",
  7754. "psy/psysh": "~0.6",
  7755. "symfony/event-dispatcher": "^3.4 || ^4.0",
  7756. "symfony/finder": "^3.4 || ^4.0 || ^5",
  7757. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  7758. "symfony/yaml": "^3.4 || ^4.0",
  7759. "webflo/drupal-finder": "^1.2",
  7760. "webmozart/path-util": "^2.1.0"
  7761. },
  7762. "require-dev": {
  7763. "composer/installers": "^1.7",
  7764. "cweagans/composer-patches": "~1.0",
  7765. "david-garcia/phpwhois": "4.3.0",
  7766. "drupal/alinks": "1.0.0",
  7767. "drupal/core-recommended": "^8.8",
  7768. "lox/xhprof": "dev-master",
  7769. "phpunit/phpunit": "^4.8.36 || ^6.1",
  7770. "squizlabs/php_codesniffer": "^2.7 || ^3",
  7771. "vlucas/phpdotenv": "^2.4"
  7772. },
  7773. "bin": [
  7774. "drush"
  7775. ],
  7776. "type": "library",
  7777. "extra": {
  7778. "installer-paths": {
  7779. "sut/core": [
  7780. "type:drupal-core"
  7781. ],
  7782. "sut/libraries/{$name}": [
  7783. "type:drupal-library"
  7784. ],
  7785. "sut/modules/unish/{$name}": [
  7786. "drupal/devel"
  7787. ],
  7788. "sut/themes/unish/{$name}": [
  7789. "drupal/empty_theme"
  7790. ],
  7791. "sut/modules/contrib/{$name}": [
  7792. "type:drupal-module"
  7793. ],
  7794. "sut/profiles/contrib/{$name}": [
  7795. "type:drupal-profile"
  7796. ],
  7797. "sut/themes/contrib/{$name}": [
  7798. "type:drupal-theme"
  7799. ],
  7800. "sut/drush/contrib/{$name}": [
  7801. "type:drupal-drush"
  7802. ]
  7803. }
  7804. },
  7805. "autoload": {
  7806. "psr-4": {
  7807. "Drush\\": "src/",
  7808. "Drush\\Internal\\": "src/internal-forks"
  7809. }
  7810. },
  7811. "notification-url": "https://packagist.org/downloads/",
  7812. "license": [
  7813. "GPL-2.0-or-later"
  7814. ],
  7815. "authors": [
  7816. {
  7817. "name": "Moshe Weitzman",
  7818. "email": "weitzman@tejasa.com"
  7819. },
  7820. {
  7821. "name": "Owen Barton",
  7822. "email": "drupal@owenbarton.com"
  7823. },
  7824. {
  7825. "name": "Greg Anderson",
  7826. "email": "greg.1.anderson@greenknowe.org"
  7827. },
  7828. {
  7829. "name": "Jonathan Araña Cruz",
  7830. "email": "jonhattan@faita.net"
  7831. },
  7832. {
  7833. "name": "Jonathan Hedstrom",
  7834. "email": "jhedstrom@gmail.com"
  7835. },
  7836. {
  7837. "name": "Christopher Gervais",
  7838. "email": "chris@ergonlogic.com"
  7839. },
  7840. {
  7841. "name": "Dave Reid",
  7842. "email": "dave@davereid.net"
  7843. },
  7844. {
  7845. "name": "Damian Lee",
  7846. "email": "damiankloip@googlemail.com"
  7847. }
  7848. ],
  7849. "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.",
  7850. "homepage": "http://www.drush.org",
  7851. "funding": [
  7852. {
  7853. "url": "https://github.com/weitzman",
  7854. "type": "github"
  7855. }
  7856. ],
  7857. "time": "2020-11-11T04:36:51+00:00"
  7858. },
  7859. {
  7860. "name": "egulias/email-validator",
  7861. "version": "2.1.22",
  7862. "source": {
  7863. "type": "git",
  7864. "url": "https://github.com/egulias/EmailValidator.git",
  7865. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  7866. },
  7867. "dist": {
  7868. "type": "zip",
  7869. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7870. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7871. "shasum": ""
  7872. },
  7873. "require": {
  7874. "doctrine/lexer": "^1.0.1",
  7875. "php": ">=5.5",
  7876. "symfony/polyfill-intl-idn": "^1.10"
  7877. },
  7878. "require-dev": {
  7879. "dominicsayers/isemail": "^3.0.7",
  7880. "phpunit/phpunit": "^4.8.36|^7.5.15",
  7881. "satooshi/php-coveralls": "^1.0.1"
  7882. },
  7883. "suggest": {
  7884. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7885. },
  7886. "type": "library",
  7887. "extra": {
  7888. "branch-alias": {
  7889. "dev-master": "2.1.x-dev"
  7890. }
  7891. },
  7892. "autoload": {
  7893. "psr-4": {
  7894. "Egulias\\EmailValidator\\": "src"
  7895. }
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Eduardo Gulias Davis"
  7904. }
  7905. ],
  7906. "description": "A library for validating emails against several RFCs",
  7907. "homepage": "https://github.com/egulias/EmailValidator",
  7908. "keywords": [
  7909. "email",
  7910. "emailvalidation",
  7911. "emailvalidator",
  7912. "validation",
  7913. "validator"
  7914. ],
  7915. "time": "2020-09-26T15:48:38+00:00"
  7916. },
  7917. {
  7918. "name": "fileeye/mimemap",
  7919. "version": "1.1.4",
  7920. "source": {
  7921. "type": "git",
  7922. "url": "https://github.com/FileEye/MimeMap.git",
  7923. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  7924. },
  7925. "dist": {
  7926. "type": "zip",
  7927. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7928. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7929. "shasum": ""
  7930. },
  7931. "require": {
  7932. "php": ">=5.4"
  7933. },
  7934. "require-dev": {
  7935. "phpunit/phpunit": "<10",
  7936. "sebastian/comparator": "*",
  7937. "sebastian/diff": "*",
  7938. "squizlabs/php_codesniffer": "*",
  7939. "symfony/console": "*",
  7940. "symfony/filesystem": "*",
  7941. "symfony/var-dumper": "*",
  7942. "symfony/yaml": "*"
  7943. },
  7944. "bin": [
  7945. "bin/fileeye-mimemap"
  7946. ],
  7947. "type": "library",
  7948. "extra": {
  7949. "branch-alias": {
  7950. "dev-master": "1.x-dev"
  7951. }
  7952. },
  7953. "autoload": {
  7954. "psr-4": {
  7955. "FileEye\\MimeMap\\": "src/"
  7956. }
  7957. },
  7958. "notification-url": "https://packagist.org/downloads/",
  7959. "license": [
  7960. "LGPL-3.0-or-later"
  7961. ],
  7962. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7963. "homepage": "https://github.com/FileEye/MimeMap",
  7964. "keywords": [
  7965. "mime",
  7966. "mime-database",
  7967. "mime-parser",
  7968. "mime-type"
  7969. ],
  7970. "time": "2020-05-16T10:19:16+00:00"
  7971. },
  7972. {
  7973. "name": "grasmash/expander",
  7974. "version": "1.0.0",
  7975. "source": {
  7976. "type": "git",
  7977. "url": "https://github.com/grasmash/expander.git",
  7978. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7979. },
  7980. "dist": {
  7981. "type": "zip",
  7982. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7983. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7984. "shasum": ""
  7985. },
  7986. "require": {
  7987. "dflydev/dot-access-data": "^1.1.0",
  7988. "php": ">=5.4"
  7989. },
  7990. "require-dev": {
  7991. "greg-1-anderson/composer-test-scenarios": "^1",
  7992. "phpunit/phpunit": "^4|^5.5.4",
  7993. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7994. "squizlabs/php_codesniffer": "^2.7"
  7995. },
  7996. "type": "library",
  7997. "extra": {
  7998. "branch-alias": {
  7999. "dev-master": "1.x-dev"
  8000. }
  8001. },
  8002. "autoload": {
  8003. "psr-4": {
  8004. "Grasmash\\Expander\\": "src/"
  8005. }
  8006. },
  8007. "notification-url": "https://packagist.org/downloads/",
  8008. "license": [
  8009. "MIT"
  8010. ],
  8011. "authors": [
  8012. {
  8013. "name": "Matthew Grasmick"
  8014. }
  8015. ],
  8016. "description": "Expands internal property references in PHP arrays file.",
  8017. "time": "2017-12-21T22:14:55+00:00"
  8018. },
  8019. {
  8020. "name": "grasmash/yaml-expander",
  8021. "version": "1.4.0",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/grasmash/yaml-expander.git",
  8025. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8030. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8031. "shasum": ""
  8032. },
  8033. "require": {
  8034. "dflydev/dot-access-data": "^1.1.0",
  8035. "php": ">=5.4",
  8036. "symfony/yaml": "^2.8.11|^3|^4"
  8037. },
  8038. "require-dev": {
  8039. "greg-1-anderson/composer-test-scenarios": "^1",
  8040. "phpunit/phpunit": "^4.8|^5.5.4",
  8041. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8042. "squizlabs/php_codesniffer": "^2.7"
  8043. },
  8044. "type": "library",
  8045. "extra": {
  8046. "branch-alias": {
  8047. "dev-master": "1.x-dev"
  8048. }
  8049. },
  8050. "autoload": {
  8051. "psr-4": {
  8052. "Grasmash\\YamlExpander\\": "src/"
  8053. }
  8054. },
  8055. "notification-url": "https://packagist.org/downloads/",
  8056. "license": [
  8057. "MIT"
  8058. ],
  8059. "authors": [
  8060. {
  8061. "name": "Matthew Grasmick"
  8062. }
  8063. ],
  8064. "description": "Expands internal property references in a yaml file.",
  8065. "time": "2017-12-16T16:06:03+00:00"
  8066. },
  8067. {
  8068. "name": "guzzlehttp/guzzle",
  8069. "version": "6.5.5",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/guzzle/guzzle.git",
  8073. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8078. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8079. "shasum": ""
  8080. },
  8081. "require": {
  8082. "ext-json": "*",
  8083. "guzzlehttp/promises": "^1.0",
  8084. "guzzlehttp/psr7": "^1.6.1",
  8085. "php": ">=5.5",
  8086. "symfony/polyfill-intl-idn": "^1.17.0"
  8087. },
  8088. "require-dev": {
  8089. "ext-curl": "*",
  8090. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8091. "psr/log": "^1.1"
  8092. },
  8093. "suggest": {
  8094. "psr/log": "Required for using the Log middleware"
  8095. },
  8096. "type": "library",
  8097. "extra": {
  8098. "branch-alias": {
  8099. "dev-master": "6.5-dev"
  8100. }
  8101. },
  8102. "autoload": {
  8103. "psr-4": {
  8104. "GuzzleHttp\\": "src/"
  8105. },
  8106. "files": [
  8107. "src/functions_include.php"
  8108. ]
  8109. },
  8110. "notification-url": "https://packagist.org/downloads/",
  8111. "license": [
  8112. "MIT"
  8113. ],
  8114. "authors": [
  8115. {
  8116. "name": "Michael Dowling",
  8117. "email": "mtdowling@gmail.com",
  8118. "homepage": "https://github.com/mtdowling"
  8119. }
  8120. ],
  8121. "description": "Guzzle is a PHP HTTP client library",
  8122. "homepage": "http://guzzlephp.org/",
  8123. "keywords": [
  8124. "client",
  8125. "curl",
  8126. "framework",
  8127. "http",
  8128. "http client",
  8129. "rest",
  8130. "web service"
  8131. ],
  8132. "time": "2020-06-16T21:01:06+00:00"
  8133. },
  8134. {
  8135. "name": "guzzlehttp/promises",
  8136. "version": "1.4.0",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/guzzle/promises.git",
  8140. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8145. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8146. "shasum": ""
  8147. },
  8148. "require": {
  8149. "php": ">=5.5"
  8150. },
  8151. "require-dev": {
  8152. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8153. },
  8154. "type": "library",
  8155. "extra": {
  8156. "branch-alias": {
  8157. "dev-master": "1.4-dev"
  8158. }
  8159. },
  8160. "autoload": {
  8161. "psr-4": {
  8162. "GuzzleHttp\\Promise\\": "src/"
  8163. },
  8164. "files": [
  8165. "src/functions_include.php"
  8166. ]
  8167. },
  8168. "notification-url": "https://packagist.org/downloads/",
  8169. "license": [
  8170. "MIT"
  8171. ],
  8172. "authors": [
  8173. {
  8174. "name": "Michael Dowling",
  8175. "email": "mtdowling@gmail.com",
  8176. "homepage": "https://github.com/mtdowling"
  8177. }
  8178. ],
  8179. "description": "Guzzle promises library",
  8180. "keywords": [
  8181. "promise"
  8182. ],
  8183. "time": "2020-09-30T07:37:28+00:00"
  8184. },
  8185. {
  8186. "name": "guzzlehttp/psr7",
  8187. "version": "1.7.0",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/guzzle/psr7.git",
  8191. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8196. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8197. "shasum": ""
  8198. },
  8199. "require": {
  8200. "php": ">=5.4.0",
  8201. "psr/http-message": "~1.0",
  8202. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8203. },
  8204. "provide": {
  8205. "psr/http-message-implementation": "1.0"
  8206. },
  8207. "require-dev": {
  8208. "ext-zlib": "*",
  8209. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8210. },
  8211. "suggest": {
  8212. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8213. },
  8214. "type": "library",
  8215. "extra": {
  8216. "branch-alias": {
  8217. "dev-master": "1.7-dev"
  8218. }
  8219. },
  8220. "autoload": {
  8221. "psr-4": {
  8222. "GuzzleHttp\\Psr7\\": "src/"
  8223. },
  8224. "files": [
  8225. "src/functions_include.php"
  8226. ]
  8227. },
  8228. "notification-url": "https://packagist.org/downloads/",
  8229. "license": [
  8230. "MIT"
  8231. ],
  8232. "authors": [
  8233. {
  8234. "name": "Michael Dowling",
  8235. "email": "mtdowling@gmail.com",
  8236. "homepage": "https://github.com/mtdowling"
  8237. },
  8238. {
  8239. "name": "Tobias Schultze",
  8240. "homepage": "https://github.com/Tobion"
  8241. }
  8242. ],
  8243. "description": "PSR-7 message implementation that also provides common utility methods",
  8244. "keywords": [
  8245. "http",
  8246. "message",
  8247. "psr-7",
  8248. "request",
  8249. "response",
  8250. "stream",
  8251. "uri",
  8252. "url"
  8253. ],
  8254. "time": "2020-09-30T07:37:11+00:00"
  8255. },
  8256. {
  8257. "name": "laminas/laminas-diactoros",
  8258. "version": "2.5.0",
  8259. "source": {
  8260. "type": "git",
  8261. "url": "https://github.com/laminas/laminas-diactoros.git",
  8262. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8263. },
  8264. "dist": {
  8265. "type": "zip",
  8266. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8267. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8268. "shasum": ""
  8269. },
  8270. "require": {
  8271. "laminas/laminas-zendframework-bridge": "^1.0",
  8272. "php": "^7.3 || ~8.0.0",
  8273. "psr/http-factory": "^1.0",
  8274. "psr/http-message": "^1.0"
  8275. },
  8276. "conflict": {
  8277. "phpspec/prophecy": "<1.9.0"
  8278. },
  8279. "provide": {
  8280. "psr/http-factory-implementation": "1.0",
  8281. "psr/http-message-implementation": "1.0"
  8282. },
  8283. "replace": {
  8284. "zendframework/zend-diactoros": "^2.2.1"
  8285. },
  8286. "require-dev": {
  8287. "ext-curl": "*",
  8288. "ext-dom": "*",
  8289. "ext-gd": "*",
  8290. "ext-libxml": "*",
  8291. "http-interop/http-factory-tests": "^0.8.0",
  8292. "laminas/laminas-coding-standard": "~1.0.0",
  8293. "php-http/psr7-integration-tests": "^1.1",
  8294. "phpspec/prophecy-phpunit": "^2.0",
  8295. "phpunit/phpunit": "^9.1"
  8296. },
  8297. "type": "library",
  8298. "extra": {
  8299. "laminas": {
  8300. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8301. "module": "Laminas\\Diactoros"
  8302. }
  8303. },
  8304. "autoload": {
  8305. "files": [
  8306. "src/functions/create_uploaded_file.php",
  8307. "src/functions/marshal_headers_from_sapi.php",
  8308. "src/functions/marshal_method_from_sapi.php",
  8309. "src/functions/marshal_protocol_version_from_sapi.php",
  8310. "src/functions/marshal_uri_from_sapi.php",
  8311. "src/functions/normalize_server.php",
  8312. "src/functions/normalize_uploaded_files.php",
  8313. "src/functions/parse_cookie_header.php",
  8314. "src/functions/create_uploaded_file.legacy.php",
  8315. "src/functions/marshal_headers_from_sapi.legacy.php",
  8316. "src/functions/marshal_method_from_sapi.legacy.php",
  8317. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8318. "src/functions/marshal_uri_from_sapi.legacy.php",
  8319. "src/functions/normalize_server.legacy.php",
  8320. "src/functions/normalize_uploaded_files.legacy.php",
  8321. "src/functions/parse_cookie_header.legacy.php"
  8322. ],
  8323. "psr-4": {
  8324. "Laminas\\Diactoros\\": "src/"
  8325. }
  8326. },
  8327. "notification-url": "https://packagist.org/downloads/",
  8328. "license": [
  8329. "BSD-3-Clause"
  8330. ],
  8331. "description": "PSR HTTP Message implementations",
  8332. "homepage": "https://laminas.dev",
  8333. "keywords": [
  8334. "http",
  8335. "laminas",
  8336. "psr",
  8337. "psr-17",
  8338. "psr-7"
  8339. ],
  8340. "funding": [
  8341. {
  8342. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8343. "type": "community_bridge"
  8344. }
  8345. ],
  8346. "time": "2020-11-18T18:39:28+00:00"
  8347. },
  8348. {
  8349. "name": "laminas/laminas-escaper",
  8350. "version": "2.7.0",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/laminas/laminas-escaper.git",
  8354. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8359. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8360. "shasum": ""
  8361. },
  8362. "require": {
  8363. "laminas/laminas-zendframework-bridge": "^1.0",
  8364. "php": "^7.3 || ~8.0.0"
  8365. },
  8366. "replace": {
  8367. "zendframework/zend-escaper": "^2.6.1"
  8368. },
  8369. "require-dev": {
  8370. "laminas/laminas-coding-standard": "~1.0.0",
  8371. "phpunit/phpunit": "^9.3",
  8372. "psalm/plugin-phpunit": "^0.12.2",
  8373. "vimeo/psalm": "^3.16"
  8374. },
  8375. "suggest": {
  8376. "ext-iconv": "*",
  8377. "ext-mbstring": "*"
  8378. },
  8379. "type": "library",
  8380. "autoload": {
  8381. "psr-4": {
  8382. "Laminas\\Escaper\\": "src/"
  8383. }
  8384. },
  8385. "notification-url": "https://packagist.org/downloads/",
  8386. "license": [
  8387. "BSD-3-Clause"
  8388. ],
  8389. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8390. "homepage": "https://laminas.dev",
  8391. "keywords": [
  8392. "escaper",
  8393. "laminas"
  8394. ],
  8395. "funding": [
  8396. {
  8397. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8398. "type": "community_bridge"
  8399. }
  8400. ],
  8401. "time": "2020-11-17T21:26:43+00:00"
  8402. },
  8403. {
  8404. "name": "laminas/laminas-feed",
  8405. "version": "2.13.0",
  8406. "source": {
  8407. "type": "git",
  8408. "url": "https://github.com/laminas/laminas-feed.git",
  8409. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  8410. },
  8411. "dist": {
  8412. "type": "zip",
  8413. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  8414. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  8415. "shasum": ""
  8416. },
  8417. "require": {
  8418. "ext-dom": "*",
  8419. "ext-libxml": "*",
  8420. "laminas/laminas-escaper": "^2.5.2",
  8421. "laminas/laminas-stdlib": "^3.2.1",
  8422. "laminas/laminas-zendframework-bridge": "^1.0",
  8423. "php": "^7.3 || ~8.0.0"
  8424. },
  8425. "conflict": {
  8426. "laminas/laminas-servicemanager": "<3.3"
  8427. },
  8428. "replace": {
  8429. "zendframework/zend-feed": "^2.12.0"
  8430. },
  8431. "require-dev": {
  8432. "laminas/laminas-cache": "^2.7.2",
  8433. "laminas/laminas-coding-standard": "~1.0.0",
  8434. "laminas/laminas-db": "^2.8.2",
  8435. "laminas/laminas-http": "^2.7",
  8436. "laminas/laminas-servicemanager": "^3.3",
  8437. "laminas/laminas-validator": "^2.10.1",
  8438. "phpunit/phpunit": "^9.3",
  8439. "psalm/plugin-phpunit": "^0.13.0",
  8440. "psr/http-message": "^1.0.1",
  8441. "vimeo/psalm": "^4.1"
  8442. },
  8443. "suggest": {
  8444. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  8445. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  8446. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  8447. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  8448. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  8449. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  8450. },
  8451. "type": "library",
  8452. "autoload": {
  8453. "psr-4": {
  8454. "Laminas\\Feed\\": "src/"
  8455. }
  8456. },
  8457. "notification-url": "https://packagist.org/downloads/",
  8458. "license": [
  8459. "BSD-3-Clause"
  8460. ],
  8461. "description": "provides functionality for consuming RSS and Atom feeds",
  8462. "homepage": "https://laminas.dev",
  8463. "keywords": [
  8464. "feed",
  8465. "laminas"
  8466. ],
  8467. "funding": [
  8468. {
  8469. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8470. "type": "community_bridge"
  8471. }
  8472. ],
  8473. "time": "2020-11-18T21:02:52+00:00"
  8474. },
  8475. {
  8476. "name": "laminas/laminas-stdlib",
  8477. "version": "3.3.0",
  8478. "source": {
  8479. "type": "git",
  8480. "url": "https://github.com/laminas/laminas-stdlib.git",
  8481. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  8482. },
  8483. "dist": {
  8484. "type": "zip",
  8485. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  8486. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  8487. "shasum": ""
  8488. },
  8489. "require": {
  8490. "laminas/laminas-zendframework-bridge": "^1.0",
  8491. "php": "^7.3 || ^8.0"
  8492. },
  8493. "replace": {
  8494. "zendframework/zend-stdlib": "^3.2.1"
  8495. },
  8496. "require-dev": {
  8497. "laminas/laminas-coding-standard": "~1.0.0",
  8498. "phpbench/phpbench": "^0.17.1",
  8499. "phpunit/phpunit": "^9.3.7"
  8500. },
  8501. "type": "library",
  8502. "extra": {
  8503. "branch-alias": {
  8504. "dev-master": "3.3.x-dev",
  8505. "dev-develop": "3.4.x-dev"
  8506. }
  8507. },
  8508. "autoload": {
  8509. "psr-4": {
  8510. "Laminas\\Stdlib\\": "src/"
  8511. }
  8512. },
  8513. "notification-url": "https://packagist.org/downloads/",
  8514. "license": [
  8515. "BSD-3-Clause"
  8516. ],
  8517. "description": "SPL extensions, array utilities, error handlers, and more",
  8518. "homepage": "https://laminas.dev",
  8519. "keywords": [
  8520. "laminas",
  8521. "stdlib"
  8522. ],
  8523. "funding": [
  8524. {
  8525. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8526. "type": "community_bridge"
  8527. }
  8528. ],
  8529. "time": "2020-08-25T09:08:16+00:00"
  8530. },
  8531. {
  8532. "name": "laminas/laminas-zendframework-bridge",
  8533. "version": "1.1.1",
  8534. "source": {
  8535. "type": "git",
  8536. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  8537. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  8538. },
  8539. "dist": {
  8540. "type": "zip",
  8541. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  8542. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  8543. "shasum": ""
  8544. },
  8545. "require": {
  8546. "php": "^5.6 || ^7.0 || ^8.0"
  8547. },
  8548. "require-dev": {
  8549. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  8550. "squizlabs/php_codesniffer": "^3.5"
  8551. },
  8552. "type": "library",
  8553. "extra": {
  8554. "laminas": {
  8555. "module": "Laminas\\ZendFrameworkBridge"
  8556. }
  8557. },
  8558. "autoload": {
  8559. "files": [
  8560. "src/autoload.php"
  8561. ],
  8562. "psr-4": {
  8563. "Laminas\\ZendFrameworkBridge\\": "src//"
  8564. }
  8565. },
  8566. "notification-url": "https://packagist.org/downloads/",
  8567. "license": [
  8568. "BSD-3-Clause"
  8569. ],
  8570. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  8571. "keywords": [
  8572. "ZendFramework",
  8573. "autoloading",
  8574. "laminas",
  8575. "zf"
  8576. ],
  8577. "funding": [
  8578. {
  8579. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8580. "type": "community_bridge"
  8581. }
  8582. ],
  8583. "time": "2020-09-14T14:23:00+00:00"
  8584. },
  8585. {
  8586. "name": "league/container",
  8587. "version": "2.4.1",
  8588. "source": {
  8589. "type": "git",
  8590. "url": "https://github.com/thephpleague/container.git",
  8591. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  8592. },
  8593. "dist": {
  8594. "type": "zip",
  8595. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  8596. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  8597. "shasum": ""
  8598. },
  8599. "require": {
  8600. "container-interop/container-interop": "^1.2",
  8601. "php": "^5.4.0 || ^7.0"
  8602. },
  8603. "provide": {
  8604. "container-interop/container-interop-implementation": "^1.2",
  8605. "psr/container-implementation": "^1.0"
  8606. },
  8607. "replace": {
  8608. "orno/di": "~2.0"
  8609. },
  8610. "require-dev": {
  8611. "phpunit/phpunit": "4.*"
  8612. },
  8613. "type": "library",
  8614. "extra": {
  8615. "branch-alias": {
  8616. "dev-2.x": "2.x-dev",
  8617. "dev-1.x": "1.x-dev"
  8618. }
  8619. },
  8620. "autoload": {
  8621. "psr-4": {
  8622. "League\\Container\\": "src"
  8623. }
  8624. },
  8625. "notification-url": "https://packagist.org/downloads/",
  8626. "license": [
  8627. "MIT"
  8628. ],
  8629. "authors": [
  8630. {
  8631. "name": "Phil Bennett",
  8632. "email": "philipobenito@gmail.com",
  8633. "homepage": "http://www.philipobenito.com",
  8634. "role": "Developer"
  8635. }
  8636. ],
  8637. "description": "A fast and intuitive dependency injection container.",
  8638. "homepage": "https://github.com/thephpleague/container",
  8639. "keywords": [
  8640. "container",
  8641. "dependency",
  8642. "di",
  8643. "injection",
  8644. "league",
  8645. "provider",
  8646. "service"
  8647. ],
  8648. "time": "2017-05-10T09:20:27+00:00"
  8649. },
  8650. {
  8651. "name": "lsolesen/pel",
  8652. "version": "0.9.9",
  8653. "source": {
  8654. "type": "git",
  8655. "url": "https://github.com/pel/pel.git",
  8656. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  8657. },
  8658. "dist": {
  8659. "type": "zip",
  8660. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  8661. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  8662. "shasum": ""
  8663. },
  8664. "require": {
  8665. "php": ">=5.4.0"
  8666. },
  8667. "require-dev": {
  8668. "ext-gd": "*",
  8669. "phpunit/phpunit": ">=4.8.36 <8",
  8670. "satooshi/php-coveralls": "1.0.*",
  8671. "squizlabs/php_codesniffer": "^3.0.0"
  8672. },
  8673. "type": "library",
  8674. "autoload": {
  8675. "psr-4": {
  8676. "lsolesen\\pel\\": "src/"
  8677. }
  8678. },
  8679. "notification-url": "https://packagist.org/downloads/",
  8680. "license": [
  8681. "GPL-2.0"
  8682. ],
  8683. "authors": [
  8684. {
  8685. "name": "Lars Olesen",
  8686. "email": "lars@intraface.dk",
  8687. "homepage": "http://intraface.dk",
  8688. "role": "Developer"
  8689. },
  8690. {
  8691. "name": "Martin Geisler",
  8692. "email": "martin@geisler.net",
  8693. "homepage": "http://geisler.net",
  8694. "role": "Developer"
  8695. }
  8696. ],
  8697. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8698. "homepage": "http://pel.github.com/pel/",
  8699. "keywords": [
  8700. "exif",
  8701. "image"
  8702. ],
  8703. "time": "2020-11-07T06:04:18+00:00"
  8704. },
  8705. {
  8706. "name": "masterminds/html5",
  8707. "version": "2.7.4",
  8708. "source": {
  8709. "type": "git",
  8710. "url": "https://github.com/Masterminds/html5-php.git",
  8711. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  8712. },
  8713. "dist": {
  8714. "type": "zip",
  8715. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  8716. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  8717. "shasum": ""
  8718. },
  8719. "require": {
  8720. "ext-ctype": "*",
  8721. "ext-dom": "*",
  8722. "ext-libxml": "*",
  8723. "php": ">=5.3.0"
  8724. },
  8725. "require-dev": {
  8726. "phpunit/phpunit": "^4.8.35"
  8727. },
  8728. "type": "library",
  8729. "extra": {
  8730. "branch-alias": {
  8731. "dev-master": "2.7-dev"
  8732. }
  8733. },
  8734. "autoload": {
  8735. "psr-4": {
  8736. "Masterminds\\": "src"
  8737. }
  8738. },
  8739. "notification-url": "https://packagist.org/downloads/",
  8740. "license": [
  8741. "MIT"
  8742. ],
  8743. "authors": [
  8744. {
  8745. "name": "Matt Butcher",
  8746. "email": "technosophos@gmail.com"
  8747. },
  8748. {
  8749. "name": "Matt Farina",
  8750. "email": "matt@mattfarina.com"
  8751. },
  8752. {
  8753. "name": "Asmir Mustafic",
  8754. "email": "goetas@gmail.com"
  8755. }
  8756. ],
  8757. "description": "An HTML5 parser and serializer.",
  8758. "homepage": "http://masterminds.github.io/html5-php",
  8759. "keywords": [
  8760. "HTML5",
  8761. "dom",
  8762. "html",
  8763. "parser",
  8764. "querypath",
  8765. "serializer",
  8766. "xml"
  8767. ],
  8768. "time": "2020-10-01T13:52:52+00:00"
  8769. },
  8770. {
  8771. "name": "nikic/php-parser",
  8772. "version": "v4.10.3",
  8773. "source": {
  8774. "type": "git",
  8775. "url": "https://github.com/nikic/PHP-Parser.git",
  8776. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  8777. },
  8778. "dist": {
  8779. "type": "zip",
  8780. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  8781. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  8782. "shasum": ""
  8783. },
  8784. "require": {
  8785. "ext-tokenizer": "*",
  8786. "php": ">=7.0"
  8787. },
  8788. "require-dev": {
  8789. "ircmaxell/php-yacc": "^0.0.7",
  8790. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8791. },
  8792. "bin": [
  8793. "bin/php-parse"
  8794. ],
  8795. "type": "library",
  8796. "extra": {
  8797. "branch-alias": {
  8798. "dev-master": "4.9-dev"
  8799. }
  8800. },
  8801. "autoload": {
  8802. "psr-4": {
  8803. "PhpParser\\": "lib/PhpParser"
  8804. }
  8805. },
  8806. "notification-url": "https://packagist.org/downloads/",
  8807. "license": [
  8808. "BSD-3-Clause"
  8809. ],
  8810. "authors": [
  8811. {
  8812. "name": "Nikita Popov"
  8813. }
  8814. ],
  8815. "description": "A PHP parser written in PHP",
  8816. "keywords": [
  8817. "parser",
  8818. "php"
  8819. ],
  8820. "time": "2020-12-03T17:45:45+00:00"
  8821. },
  8822. {
  8823. "name": "pear/archive_tar",
  8824. "version": "1.4.12",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/pear/Archive_Tar.git",
  8828. "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/19bb8e95490d3e3ad92fcac95500ca80bdcc7495",
  8833. "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495",
  8834. "shasum": ""
  8835. },
  8836. "require": {
  8837. "pear/pear-core-minimal": "^1.10.0alpha2",
  8838. "php": ">=5.2.0"
  8839. },
  8840. "require-dev": {
  8841. "phpunit/phpunit": "*"
  8842. },
  8843. "suggest": {
  8844. "ext-bz2": "Bz2 compression support.",
  8845. "ext-xz": "Lzma2 compression support.",
  8846. "ext-zlib": "Gzip compression support."
  8847. },
  8848. "type": "library",
  8849. "extra": {
  8850. "branch-alias": {
  8851. "dev-master": "1.4.x-dev"
  8852. }
  8853. },
  8854. "autoload": {
  8855. "psr-0": {
  8856. "Archive_Tar": ""
  8857. }
  8858. },
  8859. "notification-url": "https://packagist.org/downloads/",
  8860. "include-path": [
  8861. "./"
  8862. ],
  8863. "license": [
  8864. "BSD-3-Clause"
  8865. ],
  8866. "authors": [
  8867. {
  8868. "name": "Vincent Blavet",
  8869. "email": "vincent@phpconcept.net"
  8870. },
  8871. {
  8872. "name": "Greg Beaver",
  8873. "email": "greg@chiaraquartet.net"
  8874. },
  8875. {
  8876. "name": "Michiel Rook",
  8877. "email": "mrook@php.net"
  8878. }
  8879. ],
  8880. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8881. "homepage": "https://github.com/pear/Archive_Tar",
  8882. "keywords": [
  8883. "archive",
  8884. "tar"
  8885. ],
  8886. "funding": [
  8887. {
  8888. "url": "https://github.com/mrook",
  8889. "type": "github"
  8890. },
  8891. {
  8892. "url": "https://www.patreon.com/michielrook",
  8893. "type": "patreon"
  8894. }
  8895. ],
  8896. "time": "2021-01-18T19:32:54+00:00"
  8897. },
  8898. {
  8899. "name": "pear/console_getopt",
  8900. "version": "v1.4.3",
  8901. "source": {
  8902. "type": "git",
  8903. "url": "https://github.com/pear/Console_Getopt.git",
  8904. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8905. },
  8906. "dist": {
  8907. "type": "zip",
  8908. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8909. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8910. "shasum": ""
  8911. },
  8912. "type": "library",
  8913. "autoload": {
  8914. "psr-0": {
  8915. "Console": "./"
  8916. }
  8917. },
  8918. "notification-url": "https://packagist.org/downloads/",
  8919. "include-path": [
  8920. "./"
  8921. ],
  8922. "license": [
  8923. "BSD-2-Clause"
  8924. ],
  8925. "authors": [
  8926. {
  8927. "name": "Andrei Zmievski",
  8928. "email": "andrei@php.net",
  8929. "role": "Lead"
  8930. },
  8931. {
  8932. "name": "Stig Bakken",
  8933. "email": "stig@php.net",
  8934. "role": "Developer"
  8935. },
  8936. {
  8937. "name": "Greg Beaver",
  8938. "email": "cellog@php.net",
  8939. "role": "Helper"
  8940. }
  8941. ],
  8942. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8943. "time": "2019-11-20T18:27:48+00:00"
  8944. },
  8945. {
  8946. "name": "pear/pear-core-minimal",
  8947. "version": "v1.10.10",
  8948. "source": {
  8949. "type": "git",
  8950. "url": "https://github.com/pear/pear-core-minimal.git",
  8951. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  8952. },
  8953. "dist": {
  8954. "type": "zip",
  8955. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  8956. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  8957. "shasum": ""
  8958. },
  8959. "require": {
  8960. "pear/console_getopt": "~1.4",
  8961. "pear/pear_exception": "~1.0"
  8962. },
  8963. "replace": {
  8964. "rsky/pear-core-min": "self.version"
  8965. },
  8966. "type": "library",
  8967. "autoload": {
  8968. "psr-0": {
  8969. "": "src/"
  8970. }
  8971. },
  8972. "notification-url": "https://packagist.org/downloads/",
  8973. "include-path": [
  8974. "src/"
  8975. ],
  8976. "license": [
  8977. "BSD-3-Clause"
  8978. ],
  8979. "authors": [
  8980. {
  8981. "name": "Christian Weiske",
  8982. "email": "cweiske@php.net",
  8983. "role": "Lead"
  8984. }
  8985. ],
  8986. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8987. "time": "2019-11-19T19:00:24+00:00"
  8988. },
  8989. {
  8990. "name": "pear/pear_exception",
  8991. "version": "v1.0.1",
  8992. "source": {
  8993. "type": "git",
  8994. "url": "https://github.com/pear/PEAR_Exception.git",
  8995. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  8996. },
  8997. "dist": {
  8998. "type": "zip",
  8999. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9000. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9001. "shasum": ""
  9002. },
  9003. "require": {
  9004. "php": ">=4.4.0"
  9005. },
  9006. "require-dev": {
  9007. "phpunit/phpunit": "*"
  9008. },
  9009. "type": "class",
  9010. "extra": {
  9011. "branch-alias": {
  9012. "dev-master": "1.0.x-dev"
  9013. }
  9014. },
  9015. "autoload": {
  9016. "classmap": [
  9017. "PEAR/"
  9018. ]
  9019. },
  9020. "notification-url": "https://packagist.org/downloads/",
  9021. "include-path": [
  9022. "."
  9023. ],
  9024. "license": [
  9025. "BSD-2-Clause"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Helgi Thormar",
  9030. "email": "dufuz@php.net"
  9031. },
  9032. {
  9033. "name": "Greg Beaver",
  9034. "email": "cellog@php.net"
  9035. }
  9036. ],
  9037. "description": "The PEAR Exception base class.",
  9038. "homepage": "https://github.com/pear/PEAR_Exception",
  9039. "keywords": [
  9040. "exception"
  9041. ],
  9042. "time": "2019-12-10T10:24:42+00:00"
  9043. },
  9044. {
  9045. "name": "phenx/php-font-lib",
  9046. "version": "0.5.2",
  9047. "source": {
  9048. "type": "git",
  9049. "url": "https://github.com/PhenX/php-font-lib.git",
  9050. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9051. },
  9052. "dist": {
  9053. "type": "zip",
  9054. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9055. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9056. "shasum": ""
  9057. },
  9058. "require-dev": {
  9059. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9060. },
  9061. "type": "library",
  9062. "autoload": {
  9063. "psr-4": {
  9064. "FontLib\\": "src/FontLib"
  9065. }
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "LGPL-3.0"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Fabien Ménager",
  9074. "email": "fabien.menager@gmail.com"
  9075. }
  9076. ],
  9077. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9078. "homepage": "https://github.com/PhenX/php-font-lib",
  9079. "time": "2020-03-08T15:31:32+00:00"
  9080. },
  9081. {
  9082. "name": "phpmailer/phpmailer",
  9083. "version": "v6.2.0",
  9084. "source": {
  9085. "type": "git",
  9086. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9087. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9088. },
  9089. "dist": {
  9090. "type": "zip",
  9091. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9092. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9093. "shasum": ""
  9094. },
  9095. "require": {
  9096. "ext-ctype": "*",
  9097. "ext-filter": "*",
  9098. "ext-hash": "*",
  9099. "php": ">=5.5.0"
  9100. },
  9101. "require-dev": {
  9102. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9103. "doctrine/annotations": "^1.2",
  9104. "phpcompatibility/php-compatibility": "^9.3.5",
  9105. "roave/security-advisories": "dev-latest",
  9106. "squizlabs/php_codesniffer": "^3.5.6",
  9107. "yoast/phpunit-polyfills": "^0.2.0"
  9108. },
  9109. "suggest": {
  9110. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9111. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9112. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9113. "psr/log": "For optional PSR-3 debug logging",
  9114. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9115. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9116. },
  9117. "type": "library",
  9118. "autoload": {
  9119. "psr-4": {
  9120. "PHPMailer\\PHPMailer\\": "src/"
  9121. }
  9122. },
  9123. "notification-url": "https://packagist.org/downloads/",
  9124. "license": [
  9125. "LGPL-2.1-only"
  9126. ],
  9127. "authors": [
  9128. {
  9129. "name": "Marcus Bointon",
  9130. "email": "phpmailer@synchromedia.co.uk"
  9131. },
  9132. {
  9133. "name": "Jim Jagielski",
  9134. "email": "jimjag@gmail.com"
  9135. },
  9136. {
  9137. "name": "Andy Prevost",
  9138. "email": "codeworxtech@users.sourceforge.net"
  9139. },
  9140. {
  9141. "name": "Brent R. Matzelle"
  9142. }
  9143. ],
  9144. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9145. "funding": [
  9146. {
  9147. "url": "https://github.com/Synchro",
  9148. "type": "github"
  9149. }
  9150. ],
  9151. "time": "2020-11-25T15:24:57+00:00"
  9152. },
  9153. {
  9154. "name": "psr/container",
  9155. "version": "1.0.0",
  9156. "source": {
  9157. "type": "git",
  9158. "url": "https://github.com/php-fig/container.git",
  9159. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9160. },
  9161. "dist": {
  9162. "type": "zip",
  9163. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9164. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9165. "shasum": ""
  9166. },
  9167. "require": {
  9168. "php": ">=5.3.0"
  9169. },
  9170. "type": "library",
  9171. "extra": {
  9172. "branch-alias": {
  9173. "dev-master": "1.0.x-dev"
  9174. }
  9175. },
  9176. "autoload": {
  9177. "psr-4": {
  9178. "Psr\\Container\\": "src/"
  9179. }
  9180. },
  9181. "notification-url": "https://packagist.org/downloads/",
  9182. "license": [
  9183. "MIT"
  9184. ],
  9185. "authors": [
  9186. {
  9187. "name": "PHP-FIG",
  9188. "homepage": "http://www.php-fig.org/"
  9189. }
  9190. ],
  9191. "description": "Common Container Interface (PHP FIG PSR-11)",
  9192. "homepage": "https://github.com/php-fig/container",
  9193. "keywords": [
  9194. "PSR-11",
  9195. "container",
  9196. "container-interface",
  9197. "container-interop",
  9198. "psr"
  9199. ],
  9200. "time": "2017-02-14T16:28:37+00:00"
  9201. },
  9202. {
  9203. "name": "psr/http-factory",
  9204. "version": "1.0.1",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/php-fig/http-factory.git",
  9208. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9213. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "php": ">=7.0.0",
  9218. "psr/http-message": "^1.0"
  9219. },
  9220. "type": "library",
  9221. "extra": {
  9222. "branch-alias": {
  9223. "dev-master": "1.0.x-dev"
  9224. }
  9225. },
  9226. "autoload": {
  9227. "psr-4": {
  9228. "Psr\\Http\\Message\\": "src/"
  9229. }
  9230. },
  9231. "notification-url": "https://packagist.org/downloads/",
  9232. "license": [
  9233. "MIT"
  9234. ],
  9235. "authors": [
  9236. {
  9237. "name": "PHP-FIG",
  9238. "homepage": "http://www.php-fig.org/"
  9239. }
  9240. ],
  9241. "description": "Common interfaces for PSR-7 HTTP message factories",
  9242. "keywords": [
  9243. "factory",
  9244. "http",
  9245. "message",
  9246. "psr",
  9247. "psr-17",
  9248. "psr-7",
  9249. "request",
  9250. "response"
  9251. ],
  9252. "time": "2019-04-30T12:38:16+00:00"
  9253. },
  9254. {
  9255. "name": "psr/http-message",
  9256. "version": "1.0.1",
  9257. "source": {
  9258. "type": "git",
  9259. "url": "https://github.com/php-fig/http-message.git",
  9260. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9261. },
  9262. "dist": {
  9263. "type": "zip",
  9264. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9265. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9266. "shasum": ""
  9267. },
  9268. "require": {
  9269. "php": ">=5.3.0"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-master": "1.0.x-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "psr-4": {
  9279. "Psr\\Http\\Message\\": "src/"
  9280. }
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "MIT"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "PHP-FIG",
  9289. "homepage": "http://www.php-fig.org/"
  9290. }
  9291. ],
  9292. "description": "Common interface for HTTP messages",
  9293. "homepage": "https://github.com/php-fig/http-message",
  9294. "keywords": [
  9295. "http",
  9296. "http-message",
  9297. "psr",
  9298. "psr-7",
  9299. "request",
  9300. "response"
  9301. ],
  9302. "time": "2016-08-06T14:39:51+00:00"
  9303. },
  9304. {
  9305. "name": "psr/log",
  9306. "version": "1.1.3",
  9307. "source": {
  9308. "type": "git",
  9309. "url": "https://github.com/php-fig/log.git",
  9310. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  9311. },
  9312. "dist": {
  9313. "type": "zip",
  9314. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  9315. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  9316. "shasum": ""
  9317. },
  9318. "require": {
  9319. "php": ">=5.3.0"
  9320. },
  9321. "type": "library",
  9322. "extra": {
  9323. "branch-alias": {
  9324. "dev-master": "1.1.x-dev"
  9325. }
  9326. },
  9327. "autoload": {
  9328. "psr-4": {
  9329. "Psr\\Log\\": "Psr/Log/"
  9330. }
  9331. },
  9332. "notification-url": "https://packagist.org/downloads/",
  9333. "license": [
  9334. "MIT"
  9335. ],
  9336. "authors": [
  9337. {
  9338. "name": "PHP-FIG",
  9339. "homepage": "http://www.php-fig.org/"
  9340. }
  9341. ],
  9342. "description": "Common interface for logging libraries",
  9343. "homepage": "https://github.com/php-fig/log",
  9344. "keywords": [
  9345. "log",
  9346. "psr",
  9347. "psr-3"
  9348. ],
  9349. "time": "2020-03-23T09:12:05+00:00"
  9350. },
  9351. {
  9352. "name": "psy/psysh",
  9353. "version": "v0.10.5",
  9354. "source": {
  9355. "type": "git",
  9356. "url": "https://github.com/bobthecow/psysh.git",
  9357. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  9358. },
  9359. "dist": {
  9360. "type": "zip",
  9361. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  9362. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  9363. "shasum": ""
  9364. },
  9365. "require": {
  9366. "dnoegel/php-xdg-base-dir": "0.1.*",
  9367. "ext-json": "*",
  9368. "ext-tokenizer": "*",
  9369. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  9370. "php": "^8.0 || ^7.0 || ^5.5.9",
  9371. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  9372. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  9373. },
  9374. "require-dev": {
  9375. "bamarni/composer-bin-plugin": "^1.2",
  9376. "hoa/console": "3.17.*"
  9377. },
  9378. "suggest": {
  9379. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9380. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9381. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9382. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  9383. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  9384. },
  9385. "bin": [
  9386. "bin/psysh"
  9387. ],
  9388. "type": "library",
  9389. "extra": {
  9390. "branch-alias": {
  9391. "dev-master": "0.10.x-dev"
  9392. }
  9393. },
  9394. "autoload": {
  9395. "files": [
  9396. "src/functions.php"
  9397. ],
  9398. "psr-4": {
  9399. "Psy\\": "src/"
  9400. }
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "MIT"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Justin Hileman",
  9409. "email": "justin@justinhileman.info",
  9410. "homepage": "http://justinhileman.com"
  9411. }
  9412. ],
  9413. "description": "An interactive shell for modern PHP.",
  9414. "homepage": "http://psysh.org",
  9415. "keywords": [
  9416. "REPL",
  9417. "console",
  9418. "interactive",
  9419. "shell"
  9420. ],
  9421. "time": "2020-12-04T02:51:30+00:00"
  9422. },
  9423. {
  9424. "name": "ralouphie/getallheaders",
  9425. "version": "3.0.3",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/ralouphie/getallheaders.git",
  9429. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9434. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9435. "shasum": ""
  9436. },
  9437. "require": {
  9438. "php": ">=5.6"
  9439. },
  9440. "require-dev": {
  9441. "php-coveralls/php-coveralls": "^2.1",
  9442. "phpunit/phpunit": "^5 || ^6.5"
  9443. },
  9444. "type": "library",
  9445. "autoload": {
  9446. "files": [
  9447. "src/getallheaders.php"
  9448. ]
  9449. },
  9450. "notification-url": "https://packagist.org/downloads/",
  9451. "license": [
  9452. "MIT"
  9453. ],
  9454. "authors": [
  9455. {
  9456. "name": "Ralph Khattar",
  9457. "email": "ralph.khattar@gmail.com"
  9458. }
  9459. ],
  9460. "description": "A polyfill for getallheaders.",
  9461. "time": "2019-03-08T08:55:37+00:00"
  9462. },
  9463. {
  9464. "name": "stack/builder",
  9465. "version": "v1.0.6",
  9466. "source": {
  9467. "type": "git",
  9468. "url": "https://github.com/stackphp/builder.git",
  9469. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  9470. },
  9471. "dist": {
  9472. "type": "zip",
  9473. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9474. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9475. "shasum": ""
  9476. },
  9477. "require": {
  9478. "php": ">=7.2.0",
  9479. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  9480. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  9481. },
  9482. "require-dev": {
  9483. "phpunit/phpunit": "~8.0",
  9484. "symfony/routing": "^5.0"
  9485. },
  9486. "type": "library",
  9487. "extra": {
  9488. "branch-alias": {
  9489. "dev-master": "1.0-dev"
  9490. }
  9491. },
  9492. "autoload": {
  9493. "psr-0": {
  9494. "Stack": "src"
  9495. }
  9496. },
  9497. "notification-url": "https://packagist.org/downloads/",
  9498. "license": [
  9499. "MIT"
  9500. ],
  9501. "authors": [
  9502. {
  9503. "name": "Igor Wiedler",
  9504. "email": "igor@wiedler.ch"
  9505. }
  9506. ],
  9507. "description": "Builder for stack middleware based on HttpKernelInterface.",
  9508. "keywords": [
  9509. "stack"
  9510. ],
  9511. "time": "2020-01-30T12:17:27+00:00"
  9512. },
  9513. {
  9514. "name": "stecman/symfony-console-completion",
  9515. "version": "0.11.0",
  9516. "source": {
  9517. "type": "git",
  9518. "url": "https://github.com/stecman/symfony-console-completion.git",
  9519. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  9520. },
  9521. "dist": {
  9522. "type": "zip",
  9523. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  9524. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  9525. "shasum": ""
  9526. },
  9527. "require": {
  9528. "php": ">=5.3.2",
  9529. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  9530. },
  9531. "require-dev": {
  9532. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9533. },
  9534. "type": "library",
  9535. "extra": {
  9536. "branch-alias": {
  9537. "dev-master": "0.10.x-dev"
  9538. }
  9539. },
  9540. "autoload": {
  9541. "psr-4": {
  9542. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9543. }
  9544. },
  9545. "notification-url": "https://packagist.org/downloads/",
  9546. "license": [
  9547. "MIT"
  9548. ],
  9549. "authors": [
  9550. {
  9551. "name": "Stephen Holdaway",
  9552. "email": "stephen@stecman.co.nz"
  9553. }
  9554. ],
  9555. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9556. "time": "2019-11-24T17:03:06+00:00"
  9557. },
  9558. {
  9559. "name": "symfony-cmf/routing",
  9560. "version": "2.3.3",
  9561. "source": {
  9562. "type": "git",
  9563. "url": "https://github.com/symfony-cmf/Routing.git",
  9564. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  9565. },
  9566. "dist": {
  9567. "type": "zip",
  9568. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9569. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9570. "shasum": ""
  9571. },
  9572. "require": {
  9573. "php": "^7.2 || ^8.0",
  9574. "psr/log": "^1.0",
  9575. "symfony/http-kernel": "^4.4 || ^5.0",
  9576. "symfony/routing": "^4.4 || ^5.0"
  9577. },
  9578. "require-dev": {
  9579. "symfony-cmf/testing": "^3@dev",
  9580. "symfony/config": "^4.4 || ^5.0",
  9581. "symfony/dependency-injection": "^4.4 || ^5.0",
  9582. "symfony/event-dispatcher": "^4.4 || ^5.0",
  9583. "symfony/phpunit-bridge": "^5.0"
  9584. },
  9585. "suggest": {
  9586. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  9587. },
  9588. "type": "library",
  9589. "extra": {
  9590. "branch-alias": {
  9591. "dev-master": "2.x-dev"
  9592. }
  9593. },
  9594. "autoload": {
  9595. "psr-4": {
  9596. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  9597. }
  9598. },
  9599. "notification-url": "https://packagist.org/downloads/",
  9600. "license": [
  9601. "MIT"
  9602. ],
  9603. "authors": [
  9604. {
  9605. "name": "Symfony CMF Community",
  9606. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9607. }
  9608. ],
  9609. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  9610. "homepage": "http://cmf.symfony.com",
  9611. "keywords": [
  9612. "database",
  9613. "routing"
  9614. ],
  9615. "time": "2020-10-06T10:15:37+00:00"
  9616. },
  9617. {
  9618. "name": "symfony/config",
  9619. "version": "v4.4.17",
  9620. "source": {
  9621. "type": "git",
  9622. "url": "https://github.com/symfony/config.git",
  9623. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065"
  9624. },
  9625. "dist": {
  9626. "type": "zip",
  9627. "url": "https://api.github.com/repos/symfony/config/zipball/4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  9628. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  9629. "shasum": ""
  9630. },
  9631. "require": {
  9632. "php": ">=7.1.3",
  9633. "symfony/filesystem": "^3.4|^4.0|^5.0",
  9634. "symfony/polyfill-ctype": "~1.8"
  9635. },
  9636. "conflict": {
  9637. "symfony/finder": "<3.4"
  9638. },
  9639. "require-dev": {
  9640. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  9641. "symfony/finder": "^3.4|^4.0|^5.0",
  9642. "symfony/messenger": "^4.1|^5.0",
  9643. "symfony/service-contracts": "^1.1|^2",
  9644. "symfony/yaml": "^3.4|^4.0|^5.0"
  9645. },
  9646. "suggest": {
  9647. "symfony/yaml": "To use the yaml reference dumper"
  9648. },
  9649. "type": "library",
  9650. "autoload": {
  9651. "psr-4": {
  9652. "Symfony\\Component\\Config\\": ""
  9653. },
  9654. "exclude-from-classmap": [
  9655. "/Tests/"
  9656. ]
  9657. },
  9658. "notification-url": "https://packagist.org/downloads/",
  9659. "license": [
  9660. "MIT"
  9661. ],
  9662. "authors": [
  9663. {
  9664. "name": "Fabien Potencier",
  9665. "email": "fabien@symfony.com"
  9666. },
  9667. {
  9668. "name": "Symfony Community",
  9669. "homepage": "https://symfony.com/contributors"
  9670. }
  9671. ],
  9672. "description": "Symfony Config Component",
  9673. "homepage": "https://symfony.com",
  9674. "funding": [
  9675. {
  9676. "url": "https://symfony.com/sponsor",
  9677. "type": "custom"
  9678. },
  9679. {
  9680. "url": "https://github.com/fabpot",
  9681. "type": "github"
  9682. },
  9683. {
  9684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9685. "type": "tidelift"
  9686. }
  9687. ],
  9688. "time": "2020-11-16T11:15:53+00:00"
  9689. },
  9690. {
  9691. "name": "symfony/console",
  9692. "version": "v4.4.16",
  9693. "source": {
  9694. "type": "git",
  9695. "url": "https://github.com/symfony/console.git",
  9696. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  9697. },
  9698. "dist": {
  9699. "type": "zip",
  9700. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9701. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9702. "shasum": ""
  9703. },
  9704. "require": {
  9705. "php": ">=7.1.3",
  9706. "symfony/polyfill-mbstring": "~1.0",
  9707. "symfony/polyfill-php73": "^1.8",
  9708. "symfony/polyfill-php80": "^1.15",
  9709. "symfony/service-contracts": "^1.1|^2"
  9710. },
  9711. "conflict": {
  9712. "symfony/dependency-injection": "<3.4",
  9713. "symfony/event-dispatcher": "<4.3|>=5",
  9714. "symfony/lock": "<4.4",
  9715. "symfony/process": "<3.3"
  9716. },
  9717. "provide": {
  9718. "psr/log-implementation": "1.0"
  9719. },
  9720. "require-dev": {
  9721. "psr/log": "~1.0",
  9722. "symfony/config": "^3.4|^4.0|^5.0",
  9723. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9724. "symfony/event-dispatcher": "^4.3",
  9725. "symfony/lock": "^4.4|^5.0",
  9726. "symfony/process": "^3.4|^4.0|^5.0",
  9727. "symfony/var-dumper": "^4.3|^5.0"
  9728. },
  9729. "suggest": {
  9730. "psr/log": "For using the console logger",
  9731. "symfony/event-dispatcher": "",
  9732. "symfony/lock": "",
  9733. "symfony/process": ""
  9734. },
  9735. "type": "library",
  9736. "autoload": {
  9737. "psr-4": {
  9738. "Symfony\\Component\\Console\\": ""
  9739. },
  9740. "exclude-from-classmap": [
  9741. "/Tests/"
  9742. ]
  9743. },
  9744. "notification-url": "https://packagist.org/downloads/",
  9745. "license": [
  9746. "MIT"
  9747. ],
  9748. "authors": [
  9749. {
  9750. "name": "Fabien Potencier",
  9751. "email": "fabien@symfony.com"
  9752. },
  9753. {
  9754. "name": "Symfony Community",
  9755. "homepage": "https://symfony.com/contributors"
  9756. }
  9757. ],
  9758. "description": "Symfony Console Component",
  9759. "homepage": "https://symfony.com",
  9760. "funding": [
  9761. {
  9762. "url": "https://symfony.com/sponsor",
  9763. "type": "custom"
  9764. },
  9765. {
  9766. "url": "https://github.com/fabpot",
  9767. "type": "github"
  9768. },
  9769. {
  9770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9771. "type": "tidelift"
  9772. }
  9773. ],
  9774. "time": "2020-10-24T11:50:19+00:00"
  9775. },
  9776. {
  9777. "name": "symfony/css-selector",
  9778. "version": "v4.4.17",
  9779. "source": {
  9780. "type": "git",
  9781. "url": "https://github.com/symfony/css-selector.git",
  9782. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931"
  9783. },
  9784. "dist": {
  9785. "type": "zip",
  9786. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5e6efcb6e5d120249da366417e2517c55b50c931",
  9787. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931",
  9788. "shasum": ""
  9789. },
  9790. "require": {
  9791. "php": ">=7.1.3"
  9792. },
  9793. "type": "library",
  9794. "autoload": {
  9795. "psr-4": {
  9796. "Symfony\\Component\\CssSelector\\": ""
  9797. },
  9798. "exclude-from-classmap": [
  9799. "/Tests/"
  9800. ]
  9801. },
  9802. "notification-url": "https://packagist.org/downloads/",
  9803. "license": [
  9804. "MIT"
  9805. ],
  9806. "authors": [
  9807. {
  9808. "name": "Fabien Potencier",
  9809. "email": "fabien@symfony.com"
  9810. },
  9811. {
  9812. "name": "Jean-François Simon",
  9813. "email": "jeanfrancois.simon@sensiolabs.com"
  9814. },
  9815. {
  9816. "name": "Symfony Community",
  9817. "homepage": "https://symfony.com/contributors"
  9818. }
  9819. ],
  9820. "description": "Symfony CssSelector Component",
  9821. "homepage": "https://symfony.com",
  9822. "funding": [
  9823. {
  9824. "url": "https://symfony.com/sponsor",
  9825. "type": "custom"
  9826. },
  9827. {
  9828. "url": "https://github.com/fabpot",
  9829. "type": "github"
  9830. },
  9831. {
  9832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9833. "type": "tidelift"
  9834. }
  9835. ],
  9836. "time": "2020-10-28T20:42:29+00:00"
  9837. },
  9838. {
  9839. "name": "symfony/debug",
  9840. "version": "v4.4.16",
  9841. "source": {
  9842. "type": "git",
  9843. "url": "https://github.com/symfony/debug.git",
  9844. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  9845. },
  9846. "dist": {
  9847. "type": "zip",
  9848. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9849. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9850. "shasum": ""
  9851. },
  9852. "require": {
  9853. "php": ">=7.1.3",
  9854. "psr/log": "~1.0",
  9855. "symfony/polyfill-php80": "^1.15"
  9856. },
  9857. "conflict": {
  9858. "symfony/http-kernel": "<3.4"
  9859. },
  9860. "require-dev": {
  9861. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9862. },
  9863. "type": "library",
  9864. "autoload": {
  9865. "psr-4": {
  9866. "Symfony\\Component\\Debug\\": ""
  9867. },
  9868. "exclude-from-classmap": [
  9869. "/Tests/"
  9870. ]
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "MIT"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Fabien Potencier",
  9879. "email": "fabien@symfony.com"
  9880. },
  9881. {
  9882. "name": "Symfony Community",
  9883. "homepage": "https://symfony.com/contributors"
  9884. }
  9885. ],
  9886. "description": "Symfony Debug Component",
  9887. "homepage": "https://symfony.com",
  9888. "funding": [
  9889. {
  9890. "url": "https://symfony.com/sponsor",
  9891. "type": "custom"
  9892. },
  9893. {
  9894. "url": "https://github.com/fabpot",
  9895. "type": "github"
  9896. },
  9897. {
  9898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9899. "type": "tidelift"
  9900. }
  9901. ],
  9902. "time": "2020-10-24T11:50:19+00:00"
  9903. },
  9904. {
  9905. "name": "symfony/dependency-injection",
  9906. "version": "v4.4.16",
  9907. "source": {
  9908. "type": "git",
  9909. "url": "https://github.com/symfony/dependency-injection.git",
  9910. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  9911. },
  9912. "dist": {
  9913. "type": "zip",
  9914. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9915. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9916. "shasum": ""
  9917. },
  9918. "require": {
  9919. "php": ">=7.1.3",
  9920. "psr/container": "^1.0",
  9921. "symfony/service-contracts": "^1.1.6|^2"
  9922. },
  9923. "conflict": {
  9924. "symfony/config": "<4.3|>=5.0",
  9925. "symfony/finder": "<3.4",
  9926. "symfony/proxy-manager-bridge": "<3.4",
  9927. "symfony/yaml": "<3.4"
  9928. },
  9929. "provide": {
  9930. "psr/container-implementation": "1.0",
  9931. "symfony/service-implementation": "1.0"
  9932. },
  9933. "require-dev": {
  9934. "symfony/config": "^4.3",
  9935. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9936. "symfony/yaml": "^3.4|^4.0|^5.0"
  9937. },
  9938. "suggest": {
  9939. "symfony/config": "",
  9940. "symfony/expression-language": "For using expressions in service container configuration",
  9941. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9942. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9943. "symfony/yaml": ""
  9944. },
  9945. "type": "library",
  9946. "autoload": {
  9947. "psr-4": {
  9948. "Symfony\\Component\\DependencyInjection\\": ""
  9949. },
  9950. "exclude-from-classmap": [
  9951. "/Tests/"
  9952. ]
  9953. },
  9954. "notification-url": "https://packagist.org/downloads/",
  9955. "license": [
  9956. "MIT"
  9957. ],
  9958. "authors": [
  9959. {
  9960. "name": "Fabien Potencier",
  9961. "email": "fabien@symfony.com"
  9962. },
  9963. {
  9964. "name": "Symfony Community",
  9965. "homepage": "https://symfony.com/contributors"
  9966. }
  9967. ],
  9968. "description": "Symfony DependencyInjection Component",
  9969. "homepage": "https://symfony.com",
  9970. "funding": [
  9971. {
  9972. "url": "https://symfony.com/sponsor",
  9973. "type": "custom"
  9974. },
  9975. {
  9976. "url": "https://github.com/fabpot",
  9977. "type": "github"
  9978. },
  9979. {
  9980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9981. "type": "tidelift"
  9982. }
  9983. ],
  9984. "time": "2020-10-27T10:05:40+00:00"
  9985. },
  9986. {
  9987. "name": "symfony/dom-crawler",
  9988. "version": "v4.4.17",
  9989. "source": {
  9990. "type": "git",
  9991. "url": "https://github.com/symfony/dom-crawler.git",
  9992. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  9993. },
  9994. "dist": {
  9995. "type": "zip",
  9996. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  9997. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  9998. "shasum": ""
  9999. },
  10000. "require": {
  10001. "php": ">=7.1.3",
  10002. "symfony/polyfill-ctype": "~1.8",
  10003. "symfony/polyfill-mbstring": "~1.0"
  10004. },
  10005. "conflict": {
  10006. "masterminds/html5": "<2.6"
  10007. },
  10008. "require-dev": {
  10009. "masterminds/html5": "^2.6",
  10010. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10011. },
  10012. "suggest": {
  10013. "symfony/css-selector": ""
  10014. },
  10015. "type": "library",
  10016. "autoload": {
  10017. "psr-4": {
  10018. "Symfony\\Component\\DomCrawler\\": ""
  10019. },
  10020. "exclude-from-classmap": [
  10021. "/Tests/"
  10022. ]
  10023. },
  10024. "notification-url": "https://packagist.org/downloads/",
  10025. "license": [
  10026. "MIT"
  10027. ],
  10028. "authors": [
  10029. {
  10030. "name": "Fabien Potencier",
  10031. "email": "fabien@symfony.com"
  10032. },
  10033. {
  10034. "name": "Symfony Community",
  10035. "homepage": "https://symfony.com/contributors"
  10036. }
  10037. ],
  10038. "description": "Symfony DomCrawler Component",
  10039. "homepage": "https://symfony.com",
  10040. "funding": [
  10041. {
  10042. "url": "https://symfony.com/sponsor",
  10043. "type": "custom"
  10044. },
  10045. {
  10046. "url": "https://github.com/fabpot",
  10047. "type": "github"
  10048. },
  10049. {
  10050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10051. "type": "tidelift"
  10052. }
  10053. ],
  10054. "time": "2020-10-24T11:50:19+00:00"
  10055. },
  10056. {
  10057. "name": "symfony/error-handler",
  10058. "version": "v4.4.16",
  10059. "source": {
  10060. "type": "git",
  10061. "url": "https://github.com/symfony/error-handler.git",
  10062. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  10063. },
  10064. "dist": {
  10065. "type": "zip",
  10066. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  10067. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  10068. "shasum": ""
  10069. },
  10070. "require": {
  10071. "php": ">=7.1.3",
  10072. "psr/log": "~1.0",
  10073. "symfony/debug": "^4.4.5",
  10074. "symfony/polyfill-php80": "^1.15",
  10075. "symfony/var-dumper": "^4.4|^5.0"
  10076. },
  10077. "require-dev": {
  10078. "symfony/http-kernel": "^4.4|^5.0",
  10079. "symfony/serializer": "^4.4|^5.0"
  10080. },
  10081. "type": "library",
  10082. "autoload": {
  10083. "psr-4": {
  10084. "Symfony\\Component\\ErrorHandler\\": ""
  10085. },
  10086. "exclude-from-classmap": [
  10087. "/Tests/"
  10088. ]
  10089. },
  10090. "notification-url": "https://packagist.org/downloads/",
  10091. "license": [
  10092. "MIT"
  10093. ],
  10094. "authors": [
  10095. {
  10096. "name": "Fabien Potencier",
  10097. "email": "fabien@symfony.com"
  10098. },
  10099. {
  10100. "name": "Symfony Community",
  10101. "homepage": "https://symfony.com/contributors"
  10102. }
  10103. ],
  10104. "description": "Symfony ErrorHandler Component",
  10105. "homepage": "https://symfony.com",
  10106. "funding": [
  10107. {
  10108. "url": "https://symfony.com/sponsor",
  10109. "type": "custom"
  10110. },
  10111. {
  10112. "url": "https://github.com/fabpot",
  10113. "type": "github"
  10114. },
  10115. {
  10116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10117. "type": "tidelift"
  10118. }
  10119. ],
  10120. "time": "2020-10-24T11:50:19+00:00"
  10121. },
  10122. {
  10123. "name": "symfony/event-dispatcher",
  10124. "version": "v4.4.16",
  10125. "source": {
  10126. "type": "git",
  10127. "url": "https://github.com/symfony/event-dispatcher.git",
  10128. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  10129. },
  10130. "dist": {
  10131. "type": "zip",
  10132. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10133. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10134. "shasum": ""
  10135. },
  10136. "require": {
  10137. "php": ">=7.1.3",
  10138. "symfony/event-dispatcher-contracts": "^1.1"
  10139. },
  10140. "conflict": {
  10141. "symfony/dependency-injection": "<3.4"
  10142. },
  10143. "provide": {
  10144. "psr/event-dispatcher-implementation": "1.0",
  10145. "symfony/event-dispatcher-implementation": "1.1"
  10146. },
  10147. "require-dev": {
  10148. "psr/log": "~1.0",
  10149. "symfony/config": "^3.4|^4.0|^5.0",
  10150. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10151. "symfony/error-handler": "~3.4|~4.4",
  10152. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10153. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10154. "symfony/service-contracts": "^1.1|^2",
  10155. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10156. },
  10157. "suggest": {
  10158. "symfony/dependency-injection": "",
  10159. "symfony/http-kernel": ""
  10160. },
  10161. "type": "library",
  10162. "autoload": {
  10163. "psr-4": {
  10164. "Symfony\\Component\\EventDispatcher\\": ""
  10165. },
  10166. "exclude-from-classmap": [
  10167. "/Tests/"
  10168. ]
  10169. },
  10170. "notification-url": "https://packagist.org/downloads/",
  10171. "license": [
  10172. "MIT"
  10173. ],
  10174. "authors": [
  10175. {
  10176. "name": "Fabien Potencier",
  10177. "email": "fabien@symfony.com"
  10178. },
  10179. {
  10180. "name": "Symfony Community",
  10181. "homepage": "https://symfony.com/contributors"
  10182. }
  10183. ],
  10184. "description": "Symfony EventDispatcher Component",
  10185. "homepage": "https://symfony.com",
  10186. "funding": [
  10187. {
  10188. "url": "https://symfony.com/sponsor",
  10189. "type": "custom"
  10190. },
  10191. {
  10192. "url": "https://github.com/fabpot",
  10193. "type": "github"
  10194. },
  10195. {
  10196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10197. "type": "tidelift"
  10198. }
  10199. ],
  10200. "time": "2020-10-24T11:50:19+00:00"
  10201. },
  10202. {
  10203. "name": "symfony/event-dispatcher-contracts",
  10204. "version": "v1.1.9",
  10205. "source": {
  10206. "type": "git",
  10207. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10208. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10209. },
  10210. "dist": {
  10211. "type": "zip",
  10212. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10213. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10214. "shasum": ""
  10215. },
  10216. "require": {
  10217. "php": ">=7.1.3"
  10218. },
  10219. "suggest": {
  10220. "psr/event-dispatcher": "",
  10221. "symfony/event-dispatcher-implementation": ""
  10222. },
  10223. "type": "library",
  10224. "extra": {
  10225. "branch-alias": {
  10226. "dev-master": "1.1-dev"
  10227. },
  10228. "thanks": {
  10229. "name": "symfony/contracts",
  10230. "url": "https://github.com/symfony/contracts"
  10231. }
  10232. },
  10233. "autoload": {
  10234. "psr-4": {
  10235. "Symfony\\Contracts\\EventDispatcher\\": ""
  10236. }
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "MIT"
  10241. ],
  10242. "authors": [
  10243. {
  10244. "name": "Nicolas Grekas",
  10245. "email": "p@tchwork.com"
  10246. },
  10247. {
  10248. "name": "Symfony Community",
  10249. "homepage": "https://symfony.com/contributors"
  10250. }
  10251. ],
  10252. "description": "Generic abstractions related to dispatching event",
  10253. "homepage": "https://symfony.com",
  10254. "keywords": [
  10255. "abstractions",
  10256. "contracts",
  10257. "decoupling",
  10258. "interfaces",
  10259. "interoperability",
  10260. "standards"
  10261. ],
  10262. "funding": [
  10263. {
  10264. "url": "https://symfony.com/sponsor",
  10265. "type": "custom"
  10266. },
  10267. {
  10268. "url": "https://github.com/fabpot",
  10269. "type": "github"
  10270. },
  10271. {
  10272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10273. "type": "tidelift"
  10274. }
  10275. ],
  10276. "time": "2020-07-06T13:19:58+00:00"
  10277. },
  10278. {
  10279. "name": "symfony/filesystem",
  10280. "version": "v4.4.17",
  10281. "source": {
  10282. "type": "git",
  10283. "url": "https://github.com/symfony/filesystem.git",
  10284. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2"
  10285. },
  10286. "dist": {
  10287. "type": "zip",
  10288. "url": "https://api.github.com/repos/symfony/filesystem/zipball/17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10289. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10290. "shasum": ""
  10291. },
  10292. "require": {
  10293. "php": ">=7.1.3",
  10294. "symfony/polyfill-ctype": "~1.8"
  10295. },
  10296. "type": "library",
  10297. "autoload": {
  10298. "psr-4": {
  10299. "Symfony\\Component\\Filesystem\\": ""
  10300. },
  10301. "exclude-from-classmap": [
  10302. "/Tests/"
  10303. ]
  10304. },
  10305. "notification-url": "https://packagist.org/downloads/",
  10306. "license": [
  10307. "MIT"
  10308. ],
  10309. "authors": [
  10310. {
  10311. "name": "Fabien Potencier",
  10312. "email": "fabien@symfony.com"
  10313. },
  10314. {
  10315. "name": "Symfony Community",
  10316. "homepage": "https://symfony.com/contributors"
  10317. }
  10318. ],
  10319. "description": "Symfony Filesystem Component",
  10320. "homepage": "https://symfony.com",
  10321. "funding": [
  10322. {
  10323. "url": "https://symfony.com/sponsor",
  10324. "type": "custom"
  10325. },
  10326. {
  10327. "url": "https://github.com/fabpot",
  10328. "type": "github"
  10329. },
  10330. {
  10331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10332. "type": "tidelift"
  10333. }
  10334. ],
  10335. "time": "2020-11-11T22:20:15+00:00"
  10336. },
  10337. {
  10338. "name": "symfony/finder",
  10339. "version": "v4.4.17",
  10340. "source": {
  10341. "type": "git",
  10342. "url": "https://github.com/symfony/finder.git",
  10343. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e"
  10344. },
  10345. "dist": {
  10346. "type": "zip",
  10347. "url": "https://api.github.com/repos/symfony/finder/zipball/9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10348. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10349. "shasum": ""
  10350. },
  10351. "require": {
  10352. "php": ">=7.1.3"
  10353. },
  10354. "type": "library",
  10355. "autoload": {
  10356. "psr-4": {
  10357. "Symfony\\Component\\Finder\\": ""
  10358. },
  10359. "exclude-from-classmap": [
  10360. "/Tests/"
  10361. ]
  10362. },
  10363. "notification-url": "https://packagist.org/downloads/",
  10364. "license": [
  10365. "MIT"
  10366. ],
  10367. "authors": [
  10368. {
  10369. "name": "Fabien Potencier",
  10370. "email": "fabien@symfony.com"
  10371. },
  10372. {
  10373. "name": "Symfony Community",
  10374. "homepage": "https://symfony.com/contributors"
  10375. }
  10376. ],
  10377. "description": "Symfony Finder Component",
  10378. "homepage": "https://symfony.com",
  10379. "funding": [
  10380. {
  10381. "url": "https://symfony.com/sponsor",
  10382. "type": "custom"
  10383. },
  10384. {
  10385. "url": "https://github.com/fabpot",
  10386. "type": "github"
  10387. },
  10388. {
  10389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10390. "type": "tidelift"
  10391. }
  10392. ],
  10393. "time": "2020-11-17T19:45:34+00:00"
  10394. },
  10395. {
  10396. "name": "symfony/http-client-contracts",
  10397. "version": "v2.3.1",
  10398. "source": {
  10399. "type": "git",
  10400. "url": "https://github.com/symfony/http-client-contracts.git",
  10401. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  10402. },
  10403. "dist": {
  10404. "type": "zip",
  10405. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  10406. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  10407. "shasum": ""
  10408. },
  10409. "require": {
  10410. "php": ">=7.2.5"
  10411. },
  10412. "suggest": {
  10413. "symfony/http-client-implementation": ""
  10414. },
  10415. "type": "library",
  10416. "extra": {
  10417. "branch-version": "2.3",
  10418. "branch-alias": {
  10419. "dev-main": "2.3-dev"
  10420. },
  10421. "thanks": {
  10422. "name": "symfony/contracts",
  10423. "url": "https://github.com/symfony/contracts"
  10424. }
  10425. },
  10426. "autoload": {
  10427. "psr-4": {
  10428. "Symfony\\Contracts\\HttpClient\\": ""
  10429. }
  10430. },
  10431. "notification-url": "https://packagist.org/downloads/",
  10432. "license": [
  10433. "MIT"
  10434. ],
  10435. "authors": [
  10436. {
  10437. "name": "Nicolas Grekas",
  10438. "email": "p@tchwork.com"
  10439. },
  10440. {
  10441. "name": "Symfony Community",
  10442. "homepage": "https://symfony.com/contributors"
  10443. }
  10444. ],
  10445. "description": "Generic abstractions related to HTTP clients",
  10446. "homepage": "https://symfony.com",
  10447. "keywords": [
  10448. "abstractions",
  10449. "contracts",
  10450. "decoupling",
  10451. "interfaces",
  10452. "interoperability",
  10453. "standards"
  10454. ],
  10455. "funding": [
  10456. {
  10457. "url": "https://symfony.com/sponsor",
  10458. "type": "custom"
  10459. },
  10460. {
  10461. "url": "https://github.com/fabpot",
  10462. "type": "github"
  10463. },
  10464. {
  10465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10466. "type": "tidelift"
  10467. }
  10468. ],
  10469. "time": "2020-10-14T17:08:19+00:00"
  10470. },
  10471. {
  10472. "name": "symfony/http-foundation",
  10473. "version": "v4.4.16",
  10474. "source": {
  10475. "type": "git",
  10476. "url": "https://github.com/symfony/http-foundation.git",
  10477. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  10478. },
  10479. "dist": {
  10480. "type": "zip",
  10481. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  10482. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  10483. "shasum": ""
  10484. },
  10485. "require": {
  10486. "php": ">=7.1.3",
  10487. "symfony/mime": "^4.3|^5.0",
  10488. "symfony/polyfill-mbstring": "~1.1"
  10489. },
  10490. "require-dev": {
  10491. "predis/predis": "~1.0",
  10492. "symfony/expression-language": "^3.4|^4.0|^5.0"
  10493. },
  10494. "type": "library",
  10495. "autoload": {
  10496. "psr-4": {
  10497. "Symfony\\Component\\HttpFoundation\\": ""
  10498. },
  10499. "exclude-from-classmap": [
  10500. "/Tests/"
  10501. ]
  10502. },
  10503. "notification-url": "https://packagist.org/downloads/",
  10504. "license": [
  10505. "MIT"
  10506. ],
  10507. "authors": [
  10508. {
  10509. "name": "Fabien Potencier",
  10510. "email": "fabien@symfony.com"
  10511. },
  10512. {
  10513. "name": "Symfony Community",
  10514. "homepage": "https://symfony.com/contributors"
  10515. }
  10516. ],
  10517. "description": "Symfony HttpFoundation Component",
  10518. "homepage": "https://symfony.com",
  10519. "funding": [
  10520. {
  10521. "url": "https://symfony.com/sponsor",
  10522. "type": "custom"
  10523. },
  10524. {
  10525. "url": "https://github.com/fabpot",
  10526. "type": "github"
  10527. },
  10528. {
  10529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10530. "type": "tidelift"
  10531. }
  10532. ],
  10533. "time": "2020-10-24T11:50:19+00:00"
  10534. },
  10535. {
  10536. "name": "symfony/http-kernel",
  10537. "version": "v4.4.16",
  10538. "source": {
  10539. "type": "git",
  10540. "url": "https://github.com/symfony/http-kernel.git",
  10541. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  10542. },
  10543. "dist": {
  10544. "type": "zip",
  10545. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10546. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10547. "shasum": ""
  10548. },
  10549. "require": {
  10550. "php": ">=7.1.3",
  10551. "psr/log": "~1.0",
  10552. "symfony/error-handler": "^4.4",
  10553. "symfony/event-dispatcher": "^4.4",
  10554. "symfony/http-client-contracts": "^1.1|^2",
  10555. "symfony/http-foundation": "^4.4|^5.0",
  10556. "symfony/polyfill-ctype": "^1.8",
  10557. "symfony/polyfill-php73": "^1.9",
  10558. "symfony/polyfill-php80": "^1.15"
  10559. },
  10560. "conflict": {
  10561. "symfony/browser-kit": "<4.3",
  10562. "symfony/config": "<3.4",
  10563. "symfony/console": ">=5",
  10564. "symfony/dependency-injection": "<4.3",
  10565. "symfony/translation": "<4.2",
  10566. "twig/twig": "<1.34|<2.4,>=2"
  10567. },
  10568. "provide": {
  10569. "psr/log-implementation": "1.0"
  10570. },
  10571. "require-dev": {
  10572. "psr/cache": "~1.0",
  10573. "symfony/browser-kit": "^4.3|^5.0",
  10574. "symfony/config": "^3.4|^4.0|^5.0",
  10575. "symfony/console": "^3.4|^4.0",
  10576. "symfony/css-selector": "^3.4|^4.0|^5.0",
  10577. "symfony/dependency-injection": "^4.3|^5.0",
  10578. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  10579. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10580. "symfony/finder": "^3.4|^4.0|^5.0",
  10581. "symfony/process": "^3.4|^4.0|^5.0",
  10582. "symfony/routing": "^3.4|^4.0|^5.0",
  10583. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  10584. "symfony/templating": "^3.4|^4.0|^5.0",
  10585. "symfony/translation": "^4.2|^5.0",
  10586. "symfony/translation-contracts": "^1.1|^2",
  10587. "twig/twig": "^1.34|^2.4|^3.0"
  10588. },
  10589. "suggest": {
  10590. "symfony/browser-kit": "",
  10591. "symfony/config": "",
  10592. "symfony/console": "",
  10593. "symfony/dependency-injection": ""
  10594. },
  10595. "type": "library",
  10596. "autoload": {
  10597. "psr-4": {
  10598. "Symfony\\Component\\HttpKernel\\": ""
  10599. },
  10600. "exclude-from-classmap": [
  10601. "/Tests/"
  10602. ]
  10603. },
  10604. "notification-url": "https://packagist.org/downloads/",
  10605. "license": [
  10606. "MIT"
  10607. ],
  10608. "authors": [
  10609. {
  10610. "name": "Fabien Potencier",
  10611. "email": "fabien@symfony.com"
  10612. },
  10613. {
  10614. "name": "Symfony Community",
  10615. "homepage": "https://symfony.com/contributors"
  10616. }
  10617. ],
  10618. "description": "Symfony HttpKernel Component",
  10619. "homepage": "https://symfony.com",
  10620. "funding": [
  10621. {
  10622. "url": "https://symfony.com/sponsor",
  10623. "type": "custom"
  10624. },
  10625. {
  10626. "url": "https://github.com/fabpot",
  10627. "type": "github"
  10628. },
  10629. {
  10630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10631. "type": "tidelift"
  10632. }
  10633. ],
  10634. "time": "2020-10-28T05:50:56+00:00"
  10635. },
  10636. {
  10637. "name": "symfony/mime",
  10638. "version": "v5.1.8",
  10639. "source": {
  10640. "type": "git",
  10641. "url": "https://github.com/symfony/mime.git",
  10642. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  10643. },
  10644. "dist": {
  10645. "type": "zip",
  10646. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10647. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10648. "shasum": ""
  10649. },
  10650. "require": {
  10651. "php": ">=7.2.5",
  10652. "symfony/polyfill-intl-idn": "^1.10",
  10653. "symfony/polyfill-mbstring": "^1.0",
  10654. "symfony/polyfill-php80": "^1.15"
  10655. },
  10656. "conflict": {
  10657. "symfony/mailer": "<4.4"
  10658. },
  10659. "require-dev": {
  10660. "egulias/email-validator": "^2.1.10",
  10661. "symfony/dependency-injection": "^4.4|^5.0"
  10662. },
  10663. "type": "library",
  10664. "autoload": {
  10665. "psr-4": {
  10666. "Symfony\\Component\\Mime\\": ""
  10667. },
  10668. "exclude-from-classmap": [
  10669. "/Tests/"
  10670. ]
  10671. },
  10672. "notification-url": "https://packagist.org/downloads/",
  10673. "license": [
  10674. "MIT"
  10675. ],
  10676. "authors": [
  10677. {
  10678. "name": "Fabien Potencier",
  10679. "email": "fabien@symfony.com"
  10680. },
  10681. {
  10682. "name": "Symfony Community",
  10683. "homepage": "https://symfony.com/contributors"
  10684. }
  10685. ],
  10686. "description": "A library to manipulate MIME messages",
  10687. "homepage": "https://symfony.com",
  10688. "keywords": [
  10689. "mime",
  10690. "mime-type"
  10691. ],
  10692. "funding": [
  10693. {
  10694. "url": "https://symfony.com/sponsor",
  10695. "type": "custom"
  10696. },
  10697. {
  10698. "url": "https://github.com/fabpot",
  10699. "type": "github"
  10700. },
  10701. {
  10702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10703. "type": "tidelift"
  10704. }
  10705. ],
  10706. "time": "2020-10-24T12:01:57+00:00"
  10707. },
  10708. {
  10709. "name": "symfony/polyfill-ctype",
  10710. "version": "v1.20.0",
  10711. "source": {
  10712. "type": "git",
  10713. "url": "https://github.com/symfony/polyfill-ctype.git",
  10714. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  10715. },
  10716. "dist": {
  10717. "type": "zip",
  10718. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10719. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10720. "shasum": ""
  10721. },
  10722. "require": {
  10723. "php": ">=7.1"
  10724. },
  10725. "suggest": {
  10726. "ext-ctype": "For best performance"
  10727. },
  10728. "type": "library",
  10729. "extra": {
  10730. "branch-alias": {
  10731. "dev-main": "1.20-dev"
  10732. },
  10733. "thanks": {
  10734. "name": "symfony/polyfill",
  10735. "url": "https://github.com/symfony/polyfill"
  10736. }
  10737. },
  10738. "autoload": {
  10739. "psr-4": {
  10740. "Symfony\\Polyfill\\Ctype\\": ""
  10741. },
  10742. "files": [
  10743. "bootstrap.php"
  10744. ]
  10745. },
  10746. "notification-url": "https://packagist.org/downloads/",
  10747. "license": [
  10748. "MIT"
  10749. ],
  10750. "authors": [
  10751. {
  10752. "name": "Gert de Pagter",
  10753. "email": "BackEndTea@gmail.com"
  10754. },
  10755. {
  10756. "name": "Symfony Community",
  10757. "homepage": "https://symfony.com/contributors"
  10758. }
  10759. ],
  10760. "description": "Symfony polyfill for ctype functions",
  10761. "homepage": "https://symfony.com",
  10762. "keywords": [
  10763. "compatibility",
  10764. "ctype",
  10765. "polyfill",
  10766. "portable"
  10767. ],
  10768. "funding": [
  10769. {
  10770. "url": "https://symfony.com/sponsor",
  10771. "type": "custom"
  10772. },
  10773. {
  10774. "url": "https://github.com/fabpot",
  10775. "type": "github"
  10776. },
  10777. {
  10778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10779. "type": "tidelift"
  10780. }
  10781. ],
  10782. "time": "2020-10-23T14:02:19+00:00"
  10783. },
  10784. {
  10785. "name": "symfony/polyfill-iconv",
  10786. "version": "v1.20.0",
  10787. "source": {
  10788. "type": "git",
  10789. "url": "https://github.com/symfony/polyfill-iconv.git",
  10790. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  10791. },
  10792. "dist": {
  10793. "type": "zip",
  10794. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10795. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10796. "shasum": ""
  10797. },
  10798. "require": {
  10799. "php": ">=7.1"
  10800. },
  10801. "suggest": {
  10802. "ext-iconv": "For best performance"
  10803. },
  10804. "type": "library",
  10805. "extra": {
  10806. "branch-alias": {
  10807. "dev-main": "1.20-dev"
  10808. },
  10809. "thanks": {
  10810. "name": "symfony/polyfill",
  10811. "url": "https://github.com/symfony/polyfill"
  10812. }
  10813. },
  10814. "autoload": {
  10815. "psr-4": {
  10816. "Symfony\\Polyfill\\Iconv\\": ""
  10817. },
  10818. "files": [
  10819. "bootstrap.php"
  10820. ]
  10821. },
  10822. "notification-url": "https://packagist.org/downloads/",
  10823. "license": [
  10824. "MIT"
  10825. ],
  10826. "authors": [
  10827. {
  10828. "name": "Nicolas Grekas",
  10829. "email": "p@tchwork.com"
  10830. },
  10831. {
  10832. "name": "Symfony Community",
  10833. "homepage": "https://symfony.com/contributors"
  10834. }
  10835. ],
  10836. "description": "Symfony polyfill for the Iconv extension",
  10837. "homepage": "https://symfony.com",
  10838. "keywords": [
  10839. "compatibility",
  10840. "iconv",
  10841. "polyfill",
  10842. "portable",
  10843. "shim"
  10844. ],
  10845. "funding": [
  10846. {
  10847. "url": "https://symfony.com/sponsor",
  10848. "type": "custom"
  10849. },
  10850. {
  10851. "url": "https://github.com/fabpot",
  10852. "type": "github"
  10853. },
  10854. {
  10855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10856. "type": "tidelift"
  10857. }
  10858. ],
  10859. "time": "2020-10-23T14:02:19+00:00"
  10860. },
  10861. {
  10862. "name": "symfony/polyfill-intl-idn",
  10863. "version": "v1.20.0",
  10864. "source": {
  10865. "type": "git",
  10866. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10867. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  10868. },
  10869. "dist": {
  10870. "type": "zip",
  10871. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10872. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10873. "shasum": ""
  10874. },
  10875. "require": {
  10876. "php": ">=7.1",
  10877. "symfony/polyfill-intl-normalizer": "^1.10",
  10878. "symfony/polyfill-php72": "^1.10"
  10879. },
  10880. "suggest": {
  10881. "ext-intl": "For best performance"
  10882. },
  10883. "type": "library",
  10884. "extra": {
  10885. "branch-alias": {
  10886. "dev-main": "1.20-dev"
  10887. },
  10888. "thanks": {
  10889. "name": "symfony/polyfill",
  10890. "url": "https://github.com/symfony/polyfill"
  10891. }
  10892. },
  10893. "autoload": {
  10894. "psr-4": {
  10895. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10896. },
  10897. "files": [
  10898. "bootstrap.php"
  10899. ]
  10900. },
  10901. "notification-url": "https://packagist.org/downloads/",
  10902. "license": [
  10903. "MIT"
  10904. ],
  10905. "authors": [
  10906. {
  10907. "name": "Laurent Bassin",
  10908. "email": "laurent@bassin.info"
  10909. },
  10910. {
  10911. "name": "Trevor Rowbotham",
  10912. "email": "trevor.rowbotham@pm.me"
  10913. },
  10914. {
  10915. "name": "Symfony Community",
  10916. "homepage": "https://symfony.com/contributors"
  10917. }
  10918. ],
  10919. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10920. "homepage": "https://symfony.com",
  10921. "keywords": [
  10922. "compatibility",
  10923. "idn",
  10924. "intl",
  10925. "polyfill",
  10926. "portable",
  10927. "shim"
  10928. ],
  10929. "funding": [
  10930. {
  10931. "url": "https://symfony.com/sponsor",
  10932. "type": "custom"
  10933. },
  10934. {
  10935. "url": "https://github.com/fabpot",
  10936. "type": "github"
  10937. },
  10938. {
  10939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10940. "type": "tidelift"
  10941. }
  10942. ],
  10943. "time": "2020-10-23T14:02:19+00:00"
  10944. },
  10945. {
  10946. "name": "symfony/polyfill-intl-normalizer",
  10947. "version": "v1.20.0",
  10948. "source": {
  10949. "type": "git",
  10950. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10951. "reference": "727d1096295d807c309fb01a851577302394c897"
  10952. },
  10953. "dist": {
  10954. "type": "zip",
  10955. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  10956. "reference": "727d1096295d807c309fb01a851577302394c897",
  10957. "shasum": ""
  10958. },
  10959. "require": {
  10960. "php": ">=7.1"
  10961. },
  10962. "suggest": {
  10963. "ext-intl": "For best performance"
  10964. },
  10965. "type": "library",
  10966. "extra": {
  10967. "branch-alias": {
  10968. "dev-main": "1.20-dev"
  10969. },
  10970. "thanks": {
  10971. "name": "symfony/polyfill",
  10972. "url": "https://github.com/symfony/polyfill"
  10973. }
  10974. },
  10975. "autoload": {
  10976. "psr-4": {
  10977. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10978. },
  10979. "files": [
  10980. "bootstrap.php"
  10981. ],
  10982. "classmap": [
  10983. "Resources/stubs"
  10984. ]
  10985. },
  10986. "notification-url": "https://packagist.org/downloads/",
  10987. "license": [
  10988. "MIT"
  10989. ],
  10990. "authors": [
  10991. {
  10992. "name": "Nicolas Grekas",
  10993. "email": "p@tchwork.com"
  10994. },
  10995. {
  10996. "name": "Symfony Community",
  10997. "homepage": "https://symfony.com/contributors"
  10998. }
  10999. ],
  11000. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11001. "homepage": "https://symfony.com",
  11002. "keywords": [
  11003. "compatibility",
  11004. "intl",
  11005. "normalizer",
  11006. "polyfill",
  11007. "portable",
  11008. "shim"
  11009. ],
  11010. "funding": [
  11011. {
  11012. "url": "https://symfony.com/sponsor",
  11013. "type": "custom"
  11014. },
  11015. {
  11016. "url": "https://github.com/fabpot",
  11017. "type": "github"
  11018. },
  11019. {
  11020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11021. "type": "tidelift"
  11022. }
  11023. ],
  11024. "time": "2020-10-23T14:02:19+00:00"
  11025. },
  11026. {
  11027. "name": "symfony/polyfill-mbstring",
  11028. "version": "v1.20.0",
  11029. "source": {
  11030. "type": "git",
  11031. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11032. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  11033. },
  11034. "dist": {
  11035. "type": "zip",
  11036. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  11037. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  11038. "shasum": ""
  11039. },
  11040. "require": {
  11041. "php": ">=7.1"
  11042. },
  11043. "suggest": {
  11044. "ext-mbstring": "For best performance"
  11045. },
  11046. "type": "library",
  11047. "extra": {
  11048. "branch-alias": {
  11049. "dev-main": "1.20-dev"
  11050. },
  11051. "thanks": {
  11052. "name": "symfony/polyfill",
  11053. "url": "https://github.com/symfony/polyfill"
  11054. }
  11055. },
  11056. "autoload": {
  11057. "psr-4": {
  11058. "Symfony\\Polyfill\\Mbstring\\": ""
  11059. },
  11060. "files": [
  11061. "bootstrap.php"
  11062. ]
  11063. },
  11064. "notification-url": "https://packagist.org/downloads/",
  11065. "license": [
  11066. "MIT"
  11067. ],
  11068. "authors": [
  11069. {
  11070. "name": "Nicolas Grekas",
  11071. "email": "p@tchwork.com"
  11072. },
  11073. {
  11074. "name": "Symfony Community",
  11075. "homepage": "https://symfony.com/contributors"
  11076. }
  11077. ],
  11078. "description": "Symfony polyfill for the Mbstring extension",
  11079. "homepage": "https://symfony.com",
  11080. "keywords": [
  11081. "compatibility",
  11082. "mbstring",
  11083. "polyfill",
  11084. "portable",
  11085. "shim"
  11086. ],
  11087. "funding": [
  11088. {
  11089. "url": "https://symfony.com/sponsor",
  11090. "type": "custom"
  11091. },
  11092. {
  11093. "url": "https://github.com/fabpot",
  11094. "type": "github"
  11095. },
  11096. {
  11097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11098. "type": "tidelift"
  11099. }
  11100. ],
  11101. "time": "2020-10-23T14:02:19+00:00"
  11102. },
  11103. {
  11104. "name": "symfony/polyfill-php72",
  11105. "version": "v1.22.0",
  11106. "source": {
  11107. "type": "git",
  11108. "url": "https://github.com/symfony/polyfill-php72.git",
  11109. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  11110. },
  11111. "dist": {
  11112. "type": "zip",
  11113. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11114. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11115. "shasum": ""
  11116. },
  11117. "require": {
  11118. "php": ">=7.1"
  11119. },
  11120. "type": "library",
  11121. "extra": {
  11122. "branch-alias": {
  11123. "dev-main": "1.22-dev"
  11124. },
  11125. "thanks": {
  11126. "name": "symfony/polyfill",
  11127. "url": "https://github.com/symfony/polyfill"
  11128. }
  11129. },
  11130. "autoload": {
  11131. "psr-4": {
  11132. "Symfony\\Polyfill\\Php72\\": ""
  11133. },
  11134. "files": [
  11135. "bootstrap.php"
  11136. ]
  11137. },
  11138. "notification-url": "https://packagist.org/downloads/",
  11139. "license": [
  11140. "MIT"
  11141. ],
  11142. "authors": [
  11143. {
  11144. "name": "Nicolas Grekas",
  11145. "email": "p@tchwork.com"
  11146. },
  11147. {
  11148. "name": "Symfony Community",
  11149. "homepage": "https://symfony.com/contributors"
  11150. }
  11151. ],
  11152. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11153. "homepage": "https://symfony.com",
  11154. "keywords": [
  11155. "compatibility",
  11156. "polyfill",
  11157. "portable",
  11158. "shim"
  11159. ],
  11160. "funding": [
  11161. {
  11162. "url": "https://symfony.com/sponsor",
  11163. "type": "custom"
  11164. },
  11165. {
  11166. "url": "https://github.com/fabpot",
  11167. "type": "github"
  11168. },
  11169. {
  11170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11171. "type": "tidelift"
  11172. }
  11173. ],
  11174. "time": "2021-01-07T16:49:33+00:00"
  11175. },
  11176. {
  11177. "name": "symfony/polyfill-php73",
  11178. "version": "v1.22.0",
  11179. "source": {
  11180. "type": "git",
  11181. "url": "https://github.com/symfony/polyfill-php73.git",
  11182. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  11183. },
  11184. "dist": {
  11185. "type": "zip",
  11186. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11187. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11188. "shasum": ""
  11189. },
  11190. "require": {
  11191. "php": ">=7.1"
  11192. },
  11193. "type": "library",
  11194. "extra": {
  11195. "branch-alias": {
  11196. "dev-main": "1.22-dev"
  11197. },
  11198. "thanks": {
  11199. "name": "symfony/polyfill",
  11200. "url": "https://github.com/symfony/polyfill"
  11201. }
  11202. },
  11203. "autoload": {
  11204. "psr-4": {
  11205. "Symfony\\Polyfill\\Php73\\": ""
  11206. },
  11207. "files": [
  11208. "bootstrap.php"
  11209. ],
  11210. "classmap": [
  11211. "Resources/stubs"
  11212. ]
  11213. },
  11214. "notification-url": "https://packagist.org/downloads/",
  11215. "license": [
  11216. "MIT"
  11217. ],
  11218. "authors": [
  11219. {
  11220. "name": "Nicolas Grekas",
  11221. "email": "p@tchwork.com"
  11222. },
  11223. {
  11224. "name": "Symfony Community",
  11225. "homepage": "https://symfony.com/contributors"
  11226. }
  11227. ],
  11228. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11229. "homepage": "https://symfony.com",
  11230. "keywords": [
  11231. "compatibility",
  11232. "polyfill",
  11233. "portable",
  11234. "shim"
  11235. ],
  11236. "funding": [
  11237. {
  11238. "url": "https://symfony.com/sponsor",
  11239. "type": "custom"
  11240. },
  11241. {
  11242. "url": "https://github.com/fabpot",
  11243. "type": "github"
  11244. },
  11245. {
  11246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11247. "type": "tidelift"
  11248. }
  11249. ],
  11250. "time": "2021-01-07T16:49:33+00:00"
  11251. },
  11252. {
  11253. "name": "symfony/polyfill-php80",
  11254. "version": "v1.20.0",
  11255. "source": {
  11256. "type": "git",
  11257. "url": "https://github.com/symfony/polyfill-php80.git",
  11258. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  11259. },
  11260. "dist": {
  11261. "type": "zip",
  11262. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11263. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11264. "shasum": ""
  11265. },
  11266. "require": {
  11267. "php": ">=7.1"
  11268. },
  11269. "type": "library",
  11270. "extra": {
  11271. "branch-alias": {
  11272. "dev-main": "1.20-dev"
  11273. },
  11274. "thanks": {
  11275. "name": "symfony/polyfill",
  11276. "url": "https://github.com/symfony/polyfill"
  11277. }
  11278. },
  11279. "autoload": {
  11280. "psr-4": {
  11281. "Symfony\\Polyfill\\Php80\\": ""
  11282. },
  11283. "files": [
  11284. "bootstrap.php"
  11285. ],
  11286. "classmap": [
  11287. "Resources/stubs"
  11288. ]
  11289. },
  11290. "notification-url": "https://packagist.org/downloads/",
  11291. "license": [
  11292. "MIT"
  11293. ],
  11294. "authors": [
  11295. {
  11296. "name": "Ion Bazan",
  11297. "email": "ion.bazan@gmail.com"
  11298. },
  11299. {
  11300. "name": "Nicolas Grekas",
  11301. "email": "p@tchwork.com"
  11302. },
  11303. {
  11304. "name": "Symfony Community",
  11305. "homepage": "https://symfony.com/contributors"
  11306. }
  11307. ],
  11308. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11309. "homepage": "https://symfony.com",
  11310. "keywords": [
  11311. "compatibility",
  11312. "polyfill",
  11313. "portable",
  11314. "shim"
  11315. ],
  11316. "funding": [
  11317. {
  11318. "url": "https://symfony.com/sponsor",
  11319. "type": "custom"
  11320. },
  11321. {
  11322. "url": "https://github.com/fabpot",
  11323. "type": "github"
  11324. },
  11325. {
  11326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11327. "type": "tidelift"
  11328. }
  11329. ],
  11330. "time": "2020-10-23T14:02:19+00:00"
  11331. },
  11332. {
  11333. "name": "symfony/process",
  11334. "version": "v4.4.16",
  11335. "source": {
  11336. "type": "git",
  11337. "url": "https://github.com/symfony/process.git",
  11338. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  11339. },
  11340. "dist": {
  11341. "type": "zip",
  11342. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11343. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11344. "shasum": ""
  11345. },
  11346. "require": {
  11347. "php": ">=7.1.3"
  11348. },
  11349. "type": "library",
  11350. "autoload": {
  11351. "psr-4": {
  11352. "Symfony\\Component\\Process\\": ""
  11353. },
  11354. "exclude-from-classmap": [
  11355. "/Tests/"
  11356. ]
  11357. },
  11358. "notification-url": "https://packagist.org/downloads/",
  11359. "license": [
  11360. "MIT"
  11361. ],
  11362. "authors": [
  11363. {
  11364. "name": "Fabien Potencier",
  11365. "email": "fabien@symfony.com"
  11366. },
  11367. {
  11368. "name": "Symfony Community",
  11369. "homepage": "https://symfony.com/contributors"
  11370. }
  11371. ],
  11372. "description": "Symfony Process Component",
  11373. "homepage": "https://symfony.com",
  11374. "funding": [
  11375. {
  11376. "url": "https://symfony.com/sponsor",
  11377. "type": "custom"
  11378. },
  11379. {
  11380. "url": "https://github.com/fabpot",
  11381. "type": "github"
  11382. },
  11383. {
  11384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11385. "type": "tidelift"
  11386. }
  11387. ],
  11388. "time": "2020-10-24T11:50:19+00:00"
  11389. },
  11390. {
  11391. "name": "symfony/psr-http-message-bridge",
  11392. "version": "v2.0.2",
  11393. "source": {
  11394. "type": "git",
  11395. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11396. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  11397. },
  11398. "dist": {
  11399. "type": "zip",
  11400. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11401. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11402. "shasum": ""
  11403. },
  11404. "require": {
  11405. "php": ">=7.1",
  11406. "psr/http-message": "^1.0",
  11407. "symfony/http-foundation": "^4.4 || ^5.0"
  11408. },
  11409. "require-dev": {
  11410. "nyholm/psr7": "^1.1",
  11411. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  11412. },
  11413. "suggest": {
  11414. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11415. },
  11416. "type": "symfony-bridge",
  11417. "extra": {
  11418. "branch-alias": {
  11419. "dev-master": "2.0-dev"
  11420. }
  11421. },
  11422. "autoload": {
  11423. "psr-4": {
  11424. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11425. },
  11426. "exclude-from-classmap": [
  11427. "/Tests/"
  11428. ]
  11429. },
  11430. "notification-url": "https://packagist.org/downloads/",
  11431. "license": [
  11432. "MIT"
  11433. ],
  11434. "authors": [
  11435. {
  11436. "name": "Fabien Potencier",
  11437. "email": "fabien@symfony.com"
  11438. },
  11439. {
  11440. "name": "Symfony Community",
  11441. "homepage": "http://symfony.com/contributors"
  11442. }
  11443. ],
  11444. "description": "PSR HTTP message bridge",
  11445. "homepage": "http://symfony.com",
  11446. "keywords": [
  11447. "http",
  11448. "http-message",
  11449. "psr-17",
  11450. "psr-7"
  11451. ],
  11452. "funding": [
  11453. {
  11454. "url": "https://symfony.com/sponsor",
  11455. "type": "custom"
  11456. },
  11457. {
  11458. "url": "https://github.com/fabpot",
  11459. "type": "github"
  11460. },
  11461. {
  11462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11463. "type": "tidelift"
  11464. }
  11465. ],
  11466. "time": "2020-09-29T08:17:46+00:00"
  11467. },
  11468. {
  11469. "name": "symfony/routing",
  11470. "version": "v4.4.16",
  11471. "source": {
  11472. "type": "git",
  11473. "url": "https://github.com/symfony/routing.git",
  11474. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  11475. },
  11476. "dist": {
  11477. "type": "zip",
  11478. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  11479. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  11480. "shasum": ""
  11481. },
  11482. "require": {
  11483. "php": ">=7.1.3"
  11484. },
  11485. "conflict": {
  11486. "symfony/config": "<4.2",
  11487. "symfony/dependency-injection": "<3.4",
  11488. "symfony/yaml": "<3.4"
  11489. },
  11490. "require-dev": {
  11491. "doctrine/annotations": "~1.2",
  11492. "psr/log": "~1.0",
  11493. "symfony/config": "^4.2|^5.0",
  11494. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11495. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11496. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11497. "symfony/yaml": "^3.4|^4.0|^5.0"
  11498. },
  11499. "suggest": {
  11500. "doctrine/annotations": "For using the annotation loader",
  11501. "symfony/config": "For using the all-in-one router or any loader",
  11502. "symfony/expression-language": "For using expression matching",
  11503. "symfony/http-foundation": "For using a Symfony Request object",
  11504. "symfony/yaml": "For using the YAML loader"
  11505. },
  11506. "type": "library",
  11507. "autoload": {
  11508. "psr-4": {
  11509. "Symfony\\Component\\Routing\\": ""
  11510. },
  11511. "exclude-from-classmap": [
  11512. "/Tests/"
  11513. ]
  11514. },
  11515. "notification-url": "https://packagist.org/downloads/",
  11516. "license": [
  11517. "MIT"
  11518. ],
  11519. "authors": [
  11520. {
  11521. "name": "Fabien Potencier",
  11522. "email": "fabien@symfony.com"
  11523. },
  11524. {
  11525. "name": "Symfony Community",
  11526. "homepage": "https://symfony.com/contributors"
  11527. }
  11528. ],
  11529. "description": "Symfony Routing Component",
  11530. "homepage": "https://symfony.com",
  11531. "keywords": [
  11532. "router",
  11533. "routing",
  11534. "uri",
  11535. "url"
  11536. ],
  11537. "funding": [
  11538. {
  11539. "url": "https://symfony.com/sponsor",
  11540. "type": "custom"
  11541. },
  11542. {
  11543. "url": "https://github.com/fabpot",
  11544. "type": "github"
  11545. },
  11546. {
  11547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11548. "type": "tidelift"
  11549. }
  11550. ],
  11551. "time": "2020-10-24T11:50:19+00:00"
  11552. },
  11553. {
  11554. "name": "symfony/serializer",
  11555. "version": "v4.4.16",
  11556. "source": {
  11557. "type": "git",
  11558. "url": "https://github.com/symfony/serializer.git",
  11559. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  11560. },
  11561. "dist": {
  11562. "type": "zip",
  11563. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11564. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11565. "shasum": ""
  11566. },
  11567. "require": {
  11568. "php": ">=7.1.3",
  11569. "symfony/polyfill-ctype": "~1.8"
  11570. },
  11571. "conflict": {
  11572. "phpdocumentor/type-resolver": "<0.2.1",
  11573. "symfony/dependency-injection": "<3.4",
  11574. "symfony/property-access": "<3.4",
  11575. "symfony/property-info": "<3.4",
  11576. "symfony/yaml": "<3.4"
  11577. },
  11578. "require-dev": {
  11579. "doctrine/annotations": "~1.0",
  11580. "doctrine/cache": "~1.0",
  11581. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  11582. "symfony/cache": "^3.4|^4.0|^5.0",
  11583. "symfony/config": "^3.4|^4.0|^5.0",
  11584. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11585. "symfony/error-handler": "^4.4|^5.0",
  11586. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11587. "symfony/mime": "^4.4|^5.0",
  11588. "symfony/property-access": "^3.4|^4.0|^5.0",
  11589. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  11590. "symfony/validator": "^3.4|^4.0|^5.0",
  11591. "symfony/yaml": "^3.4|^4.0|^5.0"
  11592. },
  11593. "suggest": {
  11594. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11595. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  11596. "psr/cache-implementation": "For using the metadata cache.",
  11597. "symfony/config": "For using the XML mapping loader.",
  11598. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  11599. "symfony/property-access": "For using the ObjectNormalizer.",
  11600. "symfony/property-info": "To deserialize relations.",
  11601. "symfony/yaml": "For using the default YAML mapping loader."
  11602. },
  11603. "type": "library",
  11604. "autoload": {
  11605. "psr-4": {
  11606. "Symfony\\Component\\Serializer\\": ""
  11607. },
  11608. "exclude-from-classmap": [
  11609. "/Tests/"
  11610. ]
  11611. },
  11612. "notification-url": "https://packagist.org/downloads/",
  11613. "license": [
  11614. "MIT"
  11615. ],
  11616. "authors": [
  11617. {
  11618. "name": "Fabien Potencier",
  11619. "email": "fabien@symfony.com"
  11620. },
  11621. {
  11622. "name": "Symfony Community",
  11623. "homepage": "https://symfony.com/contributors"
  11624. }
  11625. ],
  11626. "description": "Symfony Serializer Component",
  11627. "homepage": "https://symfony.com",
  11628. "funding": [
  11629. {
  11630. "url": "https://symfony.com/sponsor",
  11631. "type": "custom"
  11632. },
  11633. {
  11634. "url": "https://github.com/fabpot",
  11635. "type": "github"
  11636. },
  11637. {
  11638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11639. "type": "tidelift"
  11640. }
  11641. ],
  11642. "time": "2020-10-24T11:50:19+00:00"
  11643. },
  11644. {
  11645. "name": "symfony/service-contracts",
  11646. "version": "v2.2.0",
  11647. "source": {
  11648. "type": "git",
  11649. "url": "https://github.com/symfony/service-contracts.git",
  11650. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  11651. },
  11652. "dist": {
  11653. "type": "zip",
  11654. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11655. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11656. "shasum": ""
  11657. },
  11658. "require": {
  11659. "php": ">=7.2.5",
  11660. "psr/container": "^1.0"
  11661. },
  11662. "suggest": {
  11663. "symfony/service-implementation": ""
  11664. },
  11665. "type": "library",
  11666. "extra": {
  11667. "branch-alias": {
  11668. "dev-master": "2.2-dev"
  11669. },
  11670. "thanks": {
  11671. "name": "symfony/contracts",
  11672. "url": "https://github.com/symfony/contracts"
  11673. }
  11674. },
  11675. "autoload": {
  11676. "psr-4": {
  11677. "Symfony\\Contracts\\Service\\": ""
  11678. }
  11679. },
  11680. "notification-url": "https://packagist.org/downloads/",
  11681. "license": [
  11682. "MIT"
  11683. ],
  11684. "authors": [
  11685. {
  11686. "name": "Nicolas Grekas",
  11687. "email": "p@tchwork.com"
  11688. },
  11689. {
  11690. "name": "Symfony Community",
  11691. "homepage": "https://symfony.com/contributors"
  11692. }
  11693. ],
  11694. "description": "Generic abstractions related to writing services",
  11695. "homepage": "https://symfony.com",
  11696. "keywords": [
  11697. "abstractions",
  11698. "contracts",
  11699. "decoupling",
  11700. "interfaces",
  11701. "interoperability",
  11702. "standards"
  11703. ],
  11704. "funding": [
  11705. {
  11706. "url": "https://symfony.com/sponsor",
  11707. "type": "custom"
  11708. },
  11709. {
  11710. "url": "https://github.com/fabpot",
  11711. "type": "github"
  11712. },
  11713. {
  11714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11715. "type": "tidelift"
  11716. }
  11717. ],
  11718. "time": "2020-09-07T11:33:47+00:00"
  11719. },
  11720. {
  11721. "name": "symfony/translation",
  11722. "version": "v4.4.16",
  11723. "source": {
  11724. "type": "git",
  11725. "url": "https://github.com/symfony/translation.git",
  11726. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  11727. },
  11728. "dist": {
  11729. "type": "zip",
  11730. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  11731. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  11732. "shasum": ""
  11733. },
  11734. "require": {
  11735. "php": ">=7.1.3",
  11736. "symfony/polyfill-mbstring": "~1.0",
  11737. "symfony/translation-contracts": "^1.1.6|^2"
  11738. },
  11739. "conflict": {
  11740. "symfony/config": "<3.4",
  11741. "symfony/dependency-injection": "<3.4",
  11742. "symfony/http-kernel": "<4.4",
  11743. "symfony/yaml": "<3.4"
  11744. },
  11745. "provide": {
  11746. "symfony/translation-implementation": "1.0"
  11747. },
  11748. "require-dev": {
  11749. "psr/log": "~1.0",
  11750. "symfony/config": "^3.4|^4.0|^5.0",
  11751. "symfony/console": "^3.4|^4.0|^5.0",
  11752. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11753. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  11754. "symfony/http-kernel": "^4.4",
  11755. "symfony/intl": "^3.4|^4.0|^5.0",
  11756. "symfony/service-contracts": "^1.1.2|^2",
  11757. "symfony/yaml": "^3.4|^4.0|^5.0"
  11758. },
  11759. "suggest": {
  11760. "psr/log-implementation": "To use logging capability in translator",
  11761. "symfony/config": "",
  11762. "symfony/yaml": ""
  11763. },
  11764. "type": "library",
  11765. "autoload": {
  11766. "psr-4": {
  11767. "Symfony\\Component\\Translation\\": ""
  11768. },
  11769. "exclude-from-classmap": [
  11770. "/Tests/"
  11771. ]
  11772. },
  11773. "notification-url": "https://packagist.org/downloads/",
  11774. "license": [
  11775. "MIT"
  11776. ],
  11777. "authors": [
  11778. {
  11779. "name": "Fabien Potencier",
  11780. "email": "fabien@symfony.com"
  11781. },
  11782. {
  11783. "name": "Symfony Community",
  11784. "homepage": "https://symfony.com/contributors"
  11785. }
  11786. ],
  11787. "description": "Symfony Translation Component",
  11788. "homepage": "https://symfony.com",
  11789. "funding": [
  11790. {
  11791. "url": "https://symfony.com/sponsor",
  11792. "type": "custom"
  11793. },
  11794. {
  11795. "url": "https://github.com/fabpot",
  11796. "type": "github"
  11797. },
  11798. {
  11799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11800. "type": "tidelift"
  11801. }
  11802. ],
  11803. "time": "2020-10-24T11:50:19+00:00"
  11804. },
  11805. {
  11806. "name": "symfony/translation-contracts",
  11807. "version": "v2.3.0",
  11808. "source": {
  11809. "type": "git",
  11810. "url": "https://github.com/symfony/translation-contracts.git",
  11811. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  11812. },
  11813. "dist": {
  11814. "type": "zip",
  11815. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11816. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11817. "shasum": ""
  11818. },
  11819. "require": {
  11820. "php": ">=7.2.5"
  11821. },
  11822. "suggest": {
  11823. "symfony/translation-implementation": ""
  11824. },
  11825. "type": "library",
  11826. "extra": {
  11827. "branch-alias": {
  11828. "dev-master": "2.3-dev"
  11829. },
  11830. "thanks": {
  11831. "name": "symfony/contracts",
  11832. "url": "https://github.com/symfony/contracts"
  11833. }
  11834. },
  11835. "autoload": {
  11836. "psr-4": {
  11837. "Symfony\\Contracts\\Translation\\": ""
  11838. }
  11839. },
  11840. "notification-url": "https://packagist.org/downloads/",
  11841. "license": [
  11842. "MIT"
  11843. ],
  11844. "authors": [
  11845. {
  11846. "name": "Nicolas Grekas",
  11847. "email": "p@tchwork.com"
  11848. },
  11849. {
  11850. "name": "Symfony Community",
  11851. "homepage": "https://symfony.com/contributors"
  11852. }
  11853. ],
  11854. "description": "Generic abstractions related to translation",
  11855. "homepage": "https://symfony.com",
  11856. "keywords": [
  11857. "abstractions",
  11858. "contracts",
  11859. "decoupling",
  11860. "interfaces",
  11861. "interoperability",
  11862. "standards"
  11863. ],
  11864. "funding": [
  11865. {
  11866. "url": "https://symfony.com/sponsor",
  11867. "type": "custom"
  11868. },
  11869. {
  11870. "url": "https://github.com/fabpot",
  11871. "type": "github"
  11872. },
  11873. {
  11874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11875. "type": "tidelift"
  11876. }
  11877. ],
  11878. "time": "2020-09-28T13:05:58+00:00"
  11879. },
  11880. {
  11881. "name": "symfony/validator",
  11882. "version": "v4.4.16",
  11883. "source": {
  11884. "type": "git",
  11885. "url": "https://github.com/symfony/validator.git",
  11886. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  11887. },
  11888. "dist": {
  11889. "type": "zip",
  11890. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11891. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11892. "shasum": ""
  11893. },
  11894. "require": {
  11895. "php": ">=7.1.3",
  11896. "symfony/polyfill-ctype": "~1.8",
  11897. "symfony/polyfill-mbstring": "~1.0",
  11898. "symfony/translation-contracts": "^1.1|^2"
  11899. },
  11900. "conflict": {
  11901. "doctrine/lexer": "<1.0.2",
  11902. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  11903. "symfony/dependency-injection": "<3.4",
  11904. "symfony/http-kernel": "<4.4",
  11905. "symfony/intl": "<4.3",
  11906. "symfony/translation": ">=5.0",
  11907. "symfony/yaml": "<3.4"
  11908. },
  11909. "require-dev": {
  11910. "doctrine/annotations": "~1.7",
  11911. "doctrine/cache": "~1.0",
  11912. "egulias/email-validator": "^2.1.10",
  11913. "symfony/cache": "^3.4|^4.0|^5.0",
  11914. "symfony/config": "^3.4|^4.0|^5.0",
  11915. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11916. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11917. "symfony/http-client": "^4.3|^5.0",
  11918. "symfony/http-foundation": "^4.1|^5.0",
  11919. "symfony/http-kernel": "^4.4",
  11920. "symfony/intl": "^4.3|^5.0",
  11921. "symfony/mime": "^4.4|^5.0",
  11922. "symfony/property-access": "^3.4|^4.0|^5.0",
  11923. "symfony/property-info": "^3.4|^4.0|^5.0",
  11924. "symfony/translation": "^4.2",
  11925. "symfony/yaml": "^3.4|^4.0|^5.0"
  11926. },
  11927. "suggest": {
  11928. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11929. "doctrine/cache": "For using the default cached annotation reader.",
  11930. "egulias/email-validator": "Strict (RFC compliant) email validation",
  11931. "psr/cache-implementation": "For using the mapping cache.",
  11932. "symfony/config": "",
  11933. "symfony/expression-language": "For using the Expression validator",
  11934. "symfony/http-foundation": "",
  11935. "symfony/intl": "",
  11936. "symfony/property-access": "For accessing properties within comparison constraints",
  11937. "symfony/property-info": "To automatically add NotNull and Type constraints",
  11938. "symfony/translation": "For translating validation errors.",
  11939. "symfony/yaml": ""
  11940. },
  11941. "type": "library",
  11942. "autoload": {
  11943. "psr-4": {
  11944. "Symfony\\Component\\Validator\\": ""
  11945. },
  11946. "exclude-from-classmap": [
  11947. "/Tests/"
  11948. ]
  11949. },
  11950. "notification-url": "https://packagist.org/downloads/",
  11951. "license": [
  11952. "MIT"
  11953. ],
  11954. "authors": [
  11955. {
  11956. "name": "Fabien Potencier",
  11957. "email": "fabien@symfony.com"
  11958. },
  11959. {
  11960. "name": "Symfony Community",
  11961. "homepage": "https://symfony.com/contributors"
  11962. }
  11963. ],
  11964. "description": "Symfony Validator Component",
  11965. "homepage": "https://symfony.com",
  11966. "funding": [
  11967. {
  11968. "url": "https://symfony.com/sponsor",
  11969. "type": "custom"
  11970. },
  11971. {
  11972. "url": "https://github.com/fabpot",
  11973. "type": "github"
  11974. },
  11975. {
  11976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11977. "type": "tidelift"
  11978. }
  11979. ],
  11980. "time": "2020-10-28T05:25:24+00:00"
  11981. },
  11982. {
  11983. "name": "symfony/var-dumper",
  11984. "version": "v5.1.8",
  11985. "source": {
  11986. "type": "git",
  11987. "url": "https://github.com/symfony/var-dumper.git",
  11988. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  11989. },
  11990. "dist": {
  11991. "type": "zip",
  11992. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  11993. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  11994. "shasum": ""
  11995. },
  11996. "require": {
  11997. "php": ">=7.2.5",
  11998. "symfony/polyfill-mbstring": "~1.0",
  11999. "symfony/polyfill-php80": "^1.15"
  12000. },
  12001. "conflict": {
  12002. "phpunit/phpunit": "<5.4.3",
  12003. "symfony/console": "<4.4"
  12004. },
  12005. "require-dev": {
  12006. "ext-iconv": "*",
  12007. "symfony/console": "^4.4|^5.0",
  12008. "symfony/process": "^4.4|^5.0",
  12009. "twig/twig": "^2.4|^3.0"
  12010. },
  12011. "suggest": {
  12012. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  12013. "ext-intl": "To show region name in time zone dump",
  12014. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  12015. },
  12016. "bin": [
  12017. "Resources/bin/var-dump-server"
  12018. ],
  12019. "type": "library",
  12020. "autoload": {
  12021. "files": [
  12022. "Resources/functions/dump.php"
  12023. ],
  12024. "psr-4": {
  12025. "Symfony\\Component\\VarDumper\\": ""
  12026. },
  12027. "exclude-from-classmap": [
  12028. "/Tests/"
  12029. ]
  12030. },
  12031. "notification-url": "https://packagist.org/downloads/",
  12032. "license": [
  12033. "MIT"
  12034. ],
  12035. "authors": [
  12036. {
  12037. "name": "Nicolas Grekas",
  12038. "email": "p@tchwork.com"
  12039. },
  12040. {
  12041. "name": "Symfony Community",
  12042. "homepage": "https://symfony.com/contributors"
  12043. }
  12044. ],
  12045. "description": "Symfony mechanism for exploring and dumping PHP variables",
  12046. "homepage": "https://symfony.com",
  12047. "keywords": [
  12048. "debug",
  12049. "dump"
  12050. ],
  12051. "funding": [
  12052. {
  12053. "url": "https://symfony.com/sponsor",
  12054. "type": "custom"
  12055. },
  12056. {
  12057. "url": "https://github.com/fabpot",
  12058. "type": "github"
  12059. },
  12060. {
  12061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12062. "type": "tidelift"
  12063. }
  12064. ],
  12065. "time": "2020-10-27T10:11:13+00:00"
  12066. },
  12067. {
  12068. "name": "symfony/yaml",
  12069. "version": "v4.4.16",
  12070. "source": {
  12071. "type": "git",
  12072. "url": "https://github.com/symfony/yaml.git",
  12073. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  12074. },
  12075. "dist": {
  12076. "type": "zip",
  12077. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12078. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12079. "shasum": ""
  12080. },
  12081. "require": {
  12082. "php": ">=7.1.3",
  12083. "symfony/polyfill-ctype": "~1.8"
  12084. },
  12085. "conflict": {
  12086. "symfony/console": "<3.4"
  12087. },
  12088. "require-dev": {
  12089. "symfony/console": "^3.4|^4.0|^5.0"
  12090. },
  12091. "suggest": {
  12092. "symfony/console": "For validating YAML files using the lint command"
  12093. },
  12094. "type": "library",
  12095. "autoload": {
  12096. "psr-4": {
  12097. "Symfony\\Component\\Yaml\\": ""
  12098. },
  12099. "exclude-from-classmap": [
  12100. "/Tests/"
  12101. ]
  12102. },
  12103. "notification-url": "https://packagist.org/downloads/",
  12104. "license": [
  12105. "MIT"
  12106. ],
  12107. "authors": [
  12108. {
  12109. "name": "Fabien Potencier",
  12110. "email": "fabien@symfony.com"
  12111. },
  12112. {
  12113. "name": "Symfony Community",
  12114. "homepage": "https://symfony.com/contributors"
  12115. }
  12116. ],
  12117. "description": "Symfony Yaml Component",
  12118. "homepage": "https://symfony.com",
  12119. "funding": [
  12120. {
  12121. "url": "https://symfony.com/sponsor",
  12122. "type": "custom"
  12123. },
  12124. {
  12125. "url": "https://github.com/fabpot",
  12126. "type": "github"
  12127. },
  12128. {
  12129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12130. "type": "tidelift"
  12131. }
  12132. ],
  12133. "time": "2020-10-24T11:50:19+00:00"
  12134. },
  12135. {
  12136. "name": "twig/twig",
  12137. "version": "v2.14.1",
  12138. "source": {
  12139. "type": "git",
  12140. "url": "https://github.com/twigphp/Twig.git",
  12141. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12142. },
  12143. "dist": {
  12144. "type": "zip",
  12145. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12146. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12147. "shasum": ""
  12148. },
  12149. "require": {
  12150. "php": ">=7.2.5",
  12151. "symfony/polyfill-ctype": "^1.8",
  12152. "symfony/polyfill-mbstring": "^1.3"
  12153. },
  12154. "require-dev": {
  12155. "psr/container": "^1.0",
  12156. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12157. },
  12158. "type": "library",
  12159. "extra": {
  12160. "branch-alias": {
  12161. "dev-master": "2.14-dev"
  12162. }
  12163. },
  12164. "autoload": {
  12165. "psr-0": {
  12166. "Twig_": "lib/"
  12167. },
  12168. "psr-4": {
  12169. "Twig\\": "src/"
  12170. }
  12171. },
  12172. "notification-url": "https://packagist.org/downloads/",
  12173. "license": [
  12174. "BSD-3-Clause"
  12175. ],
  12176. "authors": [
  12177. {
  12178. "name": "Fabien Potencier",
  12179. "email": "fabien@symfony.com",
  12180. "homepage": "http://fabien.potencier.org",
  12181. "role": "Lead Developer"
  12182. },
  12183. {
  12184. "name": "Twig Team",
  12185. "role": "Contributors"
  12186. },
  12187. {
  12188. "name": "Armin Ronacher",
  12189. "email": "armin.ronacher@active-4.com",
  12190. "role": "Project Founder"
  12191. }
  12192. ],
  12193. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12194. "homepage": "https://twig.symfony.com",
  12195. "keywords": [
  12196. "templating"
  12197. ],
  12198. "funding": [
  12199. {
  12200. "url": "https://github.com/fabpot",
  12201. "type": "github"
  12202. },
  12203. {
  12204. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12205. "type": "tidelift"
  12206. }
  12207. ],
  12208. "time": "2020-10-27T19:25:29+00:00"
  12209. },
  12210. {
  12211. "name": "typo3/phar-stream-wrapper",
  12212. "version": "v3.1.6",
  12213. "source": {
  12214. "type": "git",
  12215. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  12216. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  12217. },
  12218. "dist": {
  12219. "type": "zip",
  12220. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12221. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12222. "shasum": ""
  12223. },
  12224. "require": {
  12225. "ext-json": "*",
  12226. "php": "^7.0 || ^8.0"
  12227. },
  12228. "require-dev": {
  12229. "ext-xdebug": "*",
  12230. "phpspec/prophecy": "^1.10",
  12231. "symfony/phpunit-bridge": "^5.1"
  12232. },
  12233. "suggest": {
  12234. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  12235. },
  12236. "type": "library",
  12237. "extra": {
  12238. "branch-alias": {
  12239. "dev-master": "v3.x-dev"
  12240. }
  12241. },
  12242. "autoload": {
  12243. "psr-4": {
  12244. "TYPO3\\PharStreamWrapper\\": "src/"
  12245. }
  12246. },
  12247. "notification-url": "https://packagist.org/downloads/",
  12248. "license": [
  12249. "MIT"
  12250. ],
  12251. "description": "Interceptors for PHP's native phar:// stream handling",
  12252. "homepage": "https://typo3.org/",
  12253. "keywords": [
  12254. "phar",
  12255. "php",
  12256. "security",
  12257. "stream-wrapper"
  12258. ],
  12259. "time": "2020-11-07T09:06:16+00:00"
  12260. },
  12261. {
  12262. "name": "webflo/drupal-finder",
  12263. "version": "1.2.2",
  12264. "source": {
  12265. "type": "git",
  12266. "url": "https://github.com/webflo/drupal-finder.git",
  12267. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12268. },
  12269. "dist": {
  12270. "type": "zip",
  12271. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12272. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12273. "shasum": ""
  12274. },
  12275. "require": {
  12276. "ext-json": "*"
  12277. },
  12278. "require-dev": {
  12279. "mikey179/vfsstream": "^1.6",
  12280. "phpunit/phpunit": "^4.8"
  12281. },
  12282. "type": "library",
  12283. "autoload": {
  12284. "classmap": [
  12285. "src/DrupalFinder.php"
  12286. ]
  12287. },
  12288. "notification-url": "https://packagist.org/downloads/",
  12289. "license": [
  12290. "GPL-2.0-or-later"
  12291. ],
  12292. "authors": [
  12293. {
  12294. "name": "Florian Weber",
  12295. "email": "florian@webflo.org"
  12296. }
  12297. ],
  12298. "description": "Helper class to locate a Drupal installation from a given path.",
  12299. "time": "2020-10-27T09:42:17+00:00"
  12300. },
  12301. {
  12302. "name": "webmozart/assert",
  12303. "version": "1.9.1",
  12304. "source": {
  12305. "type": "git",
  12306. "url": "https://github.com/webmozarts/assert.git",
  12307. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  12308. },
  12309. "dist": {
  12310. "type": "zip",
  12311. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12312. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12313. "shasum": ""
  12314. },
  12315. "require": {
  12316. "php": "^5.3.3 || ^7.0 || ^8.0",
  12317. "symfony/polyfill-ctype": "^1.8"
  12318. },
  12319. "conflict": {
  12320. "phpstan/phpstan": "<0.12.20",
  12321. "vimeo/psalm": "<3.9.1"
  12322. },
  12323. "require-dev": {
  12324. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  12325. },
  12326. "type": "library",
  12327. "autoload": {
  12328. "psr-4": {
  12329. "Webmozart\\Assert\\": "src/"
  12330. }
  12331. },
  12332. "notification-url": "https://packagist.org/downloads/",
  12333. "license": [
  12334. "MIT"
  12335. ],
  12336. "authors": [
  12337. {
  12338. "name": "Bernhard Schussek",
  12339. "email": "bschussek@gmail.com"
  12340. }
  12341. ],
  12342. "description": "Assertions to validate method input/output with nice error messages.",
  12343. "keywords": [
  12344. "assert",
  12345. "check",
  12346. "validate"
  12347. ],
  12348. "time": "2020-07-08T17:02:28+00:00"
  12349. },
  12350. {
  12351. "name": "webmozart/path-util",
  12352. "version": "2.3.0",
  12353. "source": {
  12354. "type": "git",
  12355. "url": "https://github.com/webmozart/path-util.git",
  12356. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  12357. },
  12358. "dist": {
  12359. "type": "zip",
  12360. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12361. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12362. "shasum": ""
  12363. },
  12364. "require": {
  12365. "php": ">=5.3.3",
  12366. "webmozart/assert": "~1.0"
  12367. },
  12368. "require-dev": {
  12369. "phpunit/phpunit": "^4.6",
  12370. "sebastian/version": "^1.0.1"
  12371. },
  12372. "type": "library",
  12373. "extra": {
  12374. "branch-alias": {
  12375. "dev-master": "2.3-dev"
  12376. }
  12377. },
  12378. "autoload": {
  12379. "psr-4": {
  12380. "Webmozart\\PathUtil\\": "src/"
  12381. }
  12382. },
  12383. "notification-url": "https://packagist.org/downloads/",
  12384. "license": [
  12385. "MIT"
  12386. ],
  12387. "authors": [
  12388. {
  12389. "name": "Bernhard Schussek",
  12390. "email": "bschussek@gmail.com"
  12391. }
  12392. ],
  12393. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  12394. "time": "2015-12-17T08:42:14+00:00"
  12395. },
  12396. {
  12397. "name": "wikimedia/composer-merge-plugin",
  12398. "version": "v1.4.1",
  12399. "source": {
  12400. "type": "git",
  12401. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12402. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  12403. },
  12404. "dist": {
  12405. "type": "zip",
  12406. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  12407. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  12408. "shasum": ""
  12409. },
  12410. "require": {
  12411. "composer-plugin-api": "^1.0",
  12412. "php": ">=5.3.2"
  12413. },
  12414. "require-dev": {
  12415. "composer/composer": "~1.0.0",
  12416. "jakub-onderka/php-parallel-lint": "~0.8",
  12417. "phpunit/phpunit": "~4.8|~5.0",
  12418. "squizlabs/php_codesniffer": "~2.1.0"
  12419. },
  12420. "type": "composer-plugin",
  12421. "extra": {
  12422. "branch-alias": {
  12423. "dev-master": "1.3.x-dev"
  12424. },
  12425. "class": "Wikimedia\\Composer\\MergePlugin"
  12426. },
  12427. "autoload": {
  12428. "psr-4": {
  12429. "Wikimedia\\Composer\\": "src/"
  12430. }
  12431. },
  12432. "notification-url": "https://packagist.org/downloads/",
  12433. "license": [
  12434. "MIT"
  12435. ],
  12436. "authors": [
  12437. {
  12438. "name": "Bryan Davis",
  12439. "email": "bd808@wikimedia.org"
  12440. }
  12441. ],
  12442. "description": "Composer plugin to merge multiple composer.json files",
  12443. "time": "2017-04-25T02:31:25+00:00"
  12444. }
  12445. ],
  12446. "packages-dev": [],
  12447. "aliases": [],
  12448. "minimum-stability": "stable",
  12449. "stability-flags": {
  12450. "drupal/autocomplete_deluxe": 5,
  12451. "drupal/better_exposed_filters": 10,
  12452. "drupal/bulkdelete": 20,
  12453. "drupal/cshs": 20,
  12454. "drupal/config_ignore": 5,
  12455. "drupal/config_devel": 20,
  12456. "drupal/context": 10,
  12457. "drupal/date_range_formatter": 20,
  12458. "drupal/domain": 20,
  12459. "drupal/domain_alias": 20,
  12460. "drupal/domain_config": 20,
  12461. "drupal/domain_site_settings": 20,
  12462. "drupal/email_registration": 5,
  12463. "drupal/entity_browser_enhanced": 5,
  12464. "drupal/entity_clone": 15,
  12465. "drupal/filefield_sources": 20,
  12466. "drupal/filter_perms": 20,
  12467. "drupal/inline_entity_form": 5,
  12468. "drupal/linkit": 10,
  12469. "drupal/login_destination": 20,
  12470. "drupal/maillog": 20,
  12471. "drupal/maxlength": 10,
  12472. "drupal/menu_block": 20,
  12473. "drupal/menu_position": 20,
  12474. "drupal/path_alias_xt": 20,
  12475. "drupal/pathologic": 15,
  12476. "drupal/profile": 5,
  12477. "drupal/smtp": 10,
  12478. "drupal/synonyms": 20,
  12479. "drupal/translation_views": 15,
  12480. "drupal/ultimate_cron": 15
  12481. },
  12482. "prefer-stable": true,
  12483. "prefer-lowest": false,
  12484. "platform": [],
  12485. "platform-dev": [],
  12486. "plugin-api-version": "1.1.0"
  12487. }