composer.lock 514 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999
  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": "bd93f9735e0c7f21949b564228b80afd",
  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. "support": {
  72. "issues": "https://github.com/alchemy-fr/Zippy/issues",
  73. "source": "https://github.com/alchemy-fr/Zippy/tree/master"
  74. },
  75. "time": "2018-02-22T13:58:36+00:00"
  76. },
  77. {
  78. "name": "asm89/stack-cors",
  79. "version": "1.3.0",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/asm89/stack-cors.git",
  83. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  88. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "php": ">=5.5.9",
  93. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  94. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  95. },
  96. "require-dev": {
  97. "phpunit/phpunit": "^5.0 || ^4.8.10",
  98. "squizlabs/php_codesniffer": "^2.3"
  99. },
  100. "type": "library",
  101. "extra": {
  102. "branch-alias": {
  103. "dev-master": "1.2-dev"
  104. }
  105. },
  106. "autoload": {
  107. "psr-4": {
  108. "Asm89\\Stack\\": "src/Asm89/Stack/"
  109. }
  110. },
  111. "notification-url": "https://packagist.org/downloads/",
  112. "license": [
  113. "MIT"
  114. ],
  115. "authors": [
  116. {
  117. "name": "Alexander",
  118. "email": "iam.asm89@gmail.com"
  119. }
  120. ],
  121. "description": "Cross-origin resource sharing library and stack middleware",
  122. "homepage": "https://github.com/asm89/stack-cors",
  123. "keywords": [
  124. "cors",
  125. "stack"
  126. ],
  127. "support": {
  128. "issues": "https://github.com/asm89/stack-cors/issues",
  129. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  130. },
  131. "time": "2019-12-24T22:41:47+00:00"
  132. },
  133. {
  134. "name": "chi-teck/drupal-code-generator",
  135. "version": "1.33.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  139. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  144. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "ext-json": "*",
  149. "php": ">=5.5.9",
  150. "symfony/console": "^3.4 || ^4.0",
  151. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  152. "twig/twig": "^1.41 || ^2.12"
  153. },
  154. "conflict": {
  155. "drush/drush": "< 10.3.2"
  156. },
  157. "bin": [
  158. "bin/dcg"
  159. ],
  160. "type": "library",
  161. "extra": {
  162. "branch-alias": {
  163. "dev-master": "1.x-dev"
  164. }
  165. },
  166. "autoload": {
  167. "files": [
  168. "src/bootstrap.php"
  169. ],
  170. "psr-4": {
  171. "DrupalCodeGenerator\\": "src"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "GPL-2.0-or-later"
  177. ],
  178. "description": "Drupal code generator",
  179. "support": {
  180. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  181. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1"
  182. },
  183. "time": "2020-12-05T05:59:11+00:00"
  184. },
  185. {
  186. "name": "commerceguys/addressing",
  187. "version": "v1.2.0",
  188. "source": {
  189. "type": "git",
  190. "url": "https://github.com/commerceguys/addressing.git",
  191. "reference": "00c263fa945e7f78524bbb6b99d331f3b493be2a"
  192. },
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/00c263fa945e7f78524bbb6b99d331f3b493be2a",
  196. "reference": "00c263fa945e7f78524bbb6b99d331f3b493be2a",
  197. "shasum": ""
  198. },
  199. "require": {
  200. "doctrine/collections": "~1.0",
  201. "php": ">=7.1.3"
  202. },
  203. "require-dev": {
  204. "mikey179/vfsstream": "1.*",
  205. "phpunit/phpunit": "^7.5",
  206. "squizlabs/php_codesniffer": "3.*",
  207. "symfony/validator": "^4.4"
  208. },
  209. "suggest": {
  210. "symfony/validator": "to validate addresses"
  211. },
  212. "type": "library",
  213. "extra": {
  214. "branch-alias": {
  215. "dev-master": "1.x-dev"
  216. }
  217. },
  218. "autoload": {
  219. "psr-4": {
  220. "CommerceGuys\\Addressing\\": "src"
  221. }
  222. },
  223. "notification-url": "https://packagist.org/downloads/",
  224. "license": [
  225. "MIT"
  226. ],
  227. "authors": [
  228. {
  229. "name": "Bojan Zivanovic"
  230. },
  231. {
  232. "name": "Damien Tournoud"
  233. }
  234. ],
  235. "description": "Addressing library powered by CLDR and Google's address data.",
  236. "keywords": [
  237. "address",
  238. "internationalization",
  239. "localization",
  240. "postal"
  241. ],
  242. "support": {
  243. "issues": "https://github.com/commerceguys/addressing/issues",
  244. "source": "https://github.com/commerceguys/addressing/tree/v1.2.0"
  245. },
  246. "time": "2021-03-14T20:04:10+00:00"
  247. },
  248. {
  249. "name": "components/highlightjs",
  250. "version": "9.7.0",
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  254. },
  255. "type": "drupal-library"
  256. },
  257. {
  258. "name": "composer/installers",
  259. "version": "v1.10.0",
  260. "source": {
  261. "type": "git",
  262. "url": "https://github.com/composer/installers.git",
  263. "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d"
  264. },
  265. "dist": {
  266. "type": "zip",
  267. "url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
  268. "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
  269. "shasum": ""
  270. },
  271. "require": {
  272. "composer-plugin-api": "^1.0 || ^2.0"
  273. },
  274. "replace": {
  275. "roundcube/plugin-installer": "*",
  276. "shama/baton": "*"
  277. },
  278. "require-dev": {
  279. "composer/composer": "1.6.* || ^2.0",
  280. "composer/semver": "^1 || ^3",
  281. "phpstan/phpstan": "^0.12.55",
  282. "phpstan/phpstan-phpunit": "^0.12.16",
  283. "symfony/phpunit-bridge": "^4.2 || ^5",
  284. "symfony/process": "^2.3"
  285. },
  286. "type": "composer-plugin",
  287. "extra": {
  288. "class": "Composer\\Installers\\Plugin",
  289. "branch-alias": {
  290. "dev-main": "1.x-dev"
  291. }
  292. },
  293. "autoload": {
  294. "psr-4": {
  295. "Composer\\Installers\\": "src/Composer/Installers"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "MIT"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Kyle Robinson Young",
  305. "email": "kyle@dontkry.com",
  306. "homepage": "https://github.com/shama"
  307. }
  308. ],
  309. "description": "A multi-framework Composer library installer",
  310. "homepage": "https://composer.github.io/installers/",
  311. "keywords": [
  312. "Craft",
  313. "Dolibarr",
  314. "Eliasis",
  315. "Hurad",
  316. "ImageCMS",
  317. "Kanboard",
  318. "Lan Management System",
  319. "MODX Evo",
  320. "MantisBT",
  321. "Mautic",
  322. "Maya",
  323. "OXID",
  324. "Plentymarkets",
  325. "Porto",
  326. "RadPHP",
  327. "SMF",
  328. "Starbug",
  329. "Thelia",
  330. "Whmcs",
  331. "WolfCMS",
  332. "agl",
  333. "aimeos",
  334. "annotatecms",
  335. "attogram",
  336. "bitrix",
  337. "cakephp",
  338. "chef",
  339. "cockpit",
  340. "codeigniter",
  341. "concrete5",
  342. "croogo",
  343. "dokuwiki",
  344. "drupal",
  345. "eZ Platform",
  346. "elgg",
  347. "expressionengine",
  348. "fuelphp",
  349. "grav",
  350. "installer",
  351. "itop",
  352. "joomla",
  353. "known",
  354. "kohana",
  355. "laravel",
  356. "lavalite",
  357. "lithium",
  358. "magento",
  359. "majima",
  360. "mako",
  361. "mediawiki",
  362. "modulework",
  363. "modx",
  364. "moodle",
  365. "osclass",
  366. "phpbb",
  367. "piwik",
  368. "ppi",
  369. "processwire",
  370. "puppet",
  371. "pxcms",
  372. "reindex",
  373. "roundcube",
  374. "shopware",
  375. "silverstripe",
  376. "sydes",
  377. "sylius",
  378. "symfony",
  379. "typo3",
  380. "wordpress",
  381. "yawik",
  382. "zend",
  383. "zikula"
  384. ],
  385. "support": {
  386. "issues": "https://github.com/composer/installers/issues",
  387. "source": "https://github.com/composer/installers/tree/v1.10.0"
  388. },
  389. "funding": [
  390. {
  391. "url": "https://packagist.com",
  392. "type": "custom"
  393. },
  394. {
  395. "url": "https://github.com/composer",
  396. "type": "github"
  397. },
  398. {
  399. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  400. "type": "tidelift"
  401. }
  402. ],
  403. "time": "2021-01-14T11:07:16+00:00"
  404. },
  405. {
  406. "name": "composer/semver",
  407. "version": "3.2.2",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/composer/semver.git",
  411. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  416. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  417. "shasum": ""
  418. },
  419. "require": {
  420. "php": "^5.3.2 || ^7.0 || ^8.0"
  421. },
  422. "require-dev": {
  423. "phpstan/phpstan": "^0.12.19",
  424. "symfony/phpunit-bridge": "^4.2 || ^5"
  425. },
  426. "type": "library",
  427. "extra": {
  428. "branch-alias": {
  429. "dev-main": "3.x-dev"
  430. }
  431. },
  432. "autoload": {
  433. "psr-4": {
  434. "Composer\\Semver\\": "src"
  435. }
  436. },
  437. "notification-url": "https://packagist.org/downloads/",
  438. "license": [
  439. "MIT"
  440. ],
  441. "authors": [
  442. {
  443. "name": "Nils Adermann",
  444. "email": "naderman@naderman.de",
  445. "homepage": "http://www.naderman.de"
  446. },
  447. {
  448. "name": "Jordi Boggiano",
  449. "email": "j.boggiano@seld.be",
  450. "homepage": "http://seld.be"
  451. },
  452. {
  453. "name": "Rob Bast",
  454. "email": "rob.bast@gmail.com",
  455. "homepage": "http://robbast.nl"
  456. }
  457. ],
  458. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  459. "keywords": [
  460. "semantic",
  461. "semver",
  462. "validation",
  463. "versioning"
  464. ],
  465. "support": {
  466. "irc": "irc://irc.freenode.org/composer",
  467. "issues": "https://github.com/composer/semver/issues",
  468. "source": "https://github.com/composer/semver/tree/3.2.2"
  469. },
  470. "funding": [
  471. {
  472. "url": "https://packagist.com",
  473. "type": "custom"
  474. },
  475. {
  476. "url": "https://github.com/composer",
  477. "type": "github"
  478. },
  479. {
  480. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  481. "type": "tidelift"
  482. }
  483. ],
  484. "time": "2020-10-14T08:51:15+00:00"
  485. },
  486. {
  487. "name": "consolidation/annotated-command",
  488. "version": "4.2.4",
  489. "source": {
  490. "type": "git",
  491. "url": "https://github.com/consolidation/annotated-command.git",
  492. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  493. },
  494. "dist": {
  495. "type": "zip",
  496. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  497. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  498. "shasum": ""
  499. },
  500. "require": {
  501. "consolidation/output-formatters": "^4.1.1",
  502. "php": ">=7.1.3",
  503. "psr/log": "^1|^2",
  504. "symfony/console": "^4.4.8|~5.1.0",
  505. "symfony/event-dispatcher": "^4.4.8|^5",
  506. "symfony/finder": "^4.4.8|^5"
  507. },
  508. "require-dev": {
  509. "phpunit/phpunit": ">=7.5.20",
  510. "squizlabs/php_codesniffer": "^3",
  511. "yoast/phpunit-polyfills": "^0.2.0"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-main": "4.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Consolidation\\AnnotatedCommand\\": "src"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Greg Anderson",
  531. "email": "greg.1.anderson@greenknowe.org"
  532. }
  533. ],
  534. "description": "Initialize Symfony Console commands from annotated command class methods.",
  535. "support": {
  536. "issues": "https://github.com/consolidation/annotated-command/issues",
  537. "source": "https://github.com/consolidation/annotated-command/tree/4.2.4"
  538. },
  539. "time": "2020-12-10T16:56:39+00:00"
  540. },
  541. {
  542. "name": "consolidation/config",
  543. "version": "1.2.1",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/consolidation/config.git",
  547. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  552. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "dflydev/dot-access-data": "^1.1.0",
  557. "grasmash/expander": "^1",
  558. "php": ">=5.4.0"
  559. },
  560. "require-dev": {
  561. "g1a/composer-test-scenarios": "^3",
  562. "php-coveralls/php-coveralls": "^1",
  563. "phpunit/phpunit": "^5",
  564. "squizlabs/php_codesniffer": "2.*",
  565. "symfony/console": "^2.5|^3|^4",
  566. "symfony/yaml": "^2.8.11|^3|^4"
  567. },
  568. "suggest": {
  569. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  570. },
  571. "type": "library",
  572. "extra": {
  573. "scenarios": {
  574. "symfony4": {
  575. "require-dev": {
  576. "symfony/console": "^4.0"
  577. },
  578. "config": {
  579. "platform": {
  580. "php": "7.1.3"
  581. }
  582. }
  583. },
  584. "symfony2": {
  585. "require-dev": {
  586. "symfony/console": "^2.8",
  587. "symfony/event-dispatcher": "^2.8",
  588. "phpunit/phpunit": "^4.8.36"
  589. },
  590. "remove": [
  591. "php-coveralls/php-coveralls"
  592. ],
  593. "config": {
  594. "platform": {
  595. "php": "5.4.8"
  596. }
  597. }
  598. }
  599. },
  600. "branch-alias": {
  601. "dev-master": "1.x-dev"
  602. }
  603. },
  604. "autoload": {
  605. "psr-4": {
  606. "Consolidation\\Config\\": "src"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "license": [
  611. "MIT"
  612. ],
  613. "authors": [
  614. {
  615. "name": "Greg Anderson",
  616. "email": "greg.1.anderson@greenknowe.org"
  617. }
  618. ],
  619. "description": "Provide configuration services for a commandline tool.",
  620. "support": {
  621. "issues": "https://github.com/consolidation/config/issues",
  622. "source": "https://github.com/consolidation/config/tree/master"
  623. },
  624. "time": "2019-03-03T19:37:04+00:00"
  625. },
  626. {
  627. "name": "consolidation/filter-via-dot-access-data",
  628. "version": "1.0.0",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  632. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  637. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  638. "shasum": ""
  639. },
  640. "require": {
  641. "dflydev/dot-access-data": "^1.1.0",
  642. "php": ">=5.5.0"
  643. },
  644. "require-dev": {
  645. "consolidation/robo": "^1.2.3",
  646. "g1a/composer-test-scenarios": "^3",
  647. "knplabs/github-api": "^2.7",
  648. "php-coveralls/php-coveralls": "^1",
  649. "php-http/guzzle6-adapter": "^1.1",
  650. "phpunit/phpunit": "^5",
  651. "squizlabs/php_codesniffer": "^2.8",
  652. "symfony/console": "^2.8|^3|^4"
  653. },
  654. "type": "library",
  655. "extra": {
  656. "scenarios": {
  657. "phpunit5": {
  658. "require-dev": {
  659. "phpunit/phpunit": "^5.7.27"
  660. },
  661. "remove": [
  662. "php-coveralls/php-coveralls"
  663. ],
  664. "config": {
  665. "platform": {
  666. "php": "5.6.33"
  667. }
  668. }
  669. }
  670. },
  671. "branch-alias": {
  672. "dev-master": "1.x-dev"
  673. }
  674. },
  675. "autoload": {
  676. "psr-4": {
  677. "Consolidation\\Filter\\": "src"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Greg Anderson",
  687. "email": "greg.1.anderson@greenknowe.org"
  688. }
  689. ],
  690. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  691. "support": {
  692. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  693. },
  694. "time": "2019-01-18T06:05:07+00:00"
  695. },
  696. {
  697. "name": "consolidation/log",
  698. "version": "2.0.2",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/consolidation/log.git",
  702. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  707. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  708. "shasum": ""
  709. },
  710. "require": {
  711. "php": ">=7.1.3",
  712. "psr/log": "^1.0",
  713. "symfony/console": "^4|^5"
  714. },
  715. "require-dev": {
  716. "phpunit/phpunit": ">=7.5.20",
  717. "squizlabs/php_codesniffer": "^3",
  718. "yoast/phpunit-polyfills": "^0.2.0"
  719. },
  720. "type": "library",
  721. "extra": {
  722. "branch-alias": {
  723. "dev-main": "2.x-dev"
  724. }
  725. },
  726. "autoload": {
  727. "psr-4": {
  728. "Consolidation\\Log\\": "src"
  729. }
  730. },
  731. "notification-url": "https://packagist.org/downloads/",
  732. "license": [
  733. "MIT"
  734. ],
  735. "authors": [
  736. {
  737. "name": "Greg Anderson",
  738. "email": "greg.1.anderson@greenknowe.org"
  739. }
  740. ],
  741. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  742. "support": {
  743. "issues": "https://github.com/consolidation/log/issues",
  744. "source": "https://github.com/consolidation/log/tree/2.0.2"
  745. },
  746. "time": "2020-12-10T16:26:23+00:00"
  747. },
  748. {
  749. "name": "consolidation/output-formatters",
  750. "version": "4.1.2",
  751. "source": {
  752. "type": "git",
  753. "url": "https://github.com/consolidation/output-formatters.git",
  754. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  755. },
  756. "dist": {
  757. "type": "zip",
  758. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  759. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  760. "shasum": ""
  761. },
  762. "require": {
  763. "dflydev/dot-access-data": "^1.1.0",
  764. "php": ">=7.1.3",
  765. "symfony/console": "^4|^5",
  766. "symfony/finder": "^4|^5"
  767. },
  768. "require-dev": {
  769. "php-coveralls/php-coveralls": "^2.4.2",
  770. "phpunit/phpunit": ">=7",
  771. "squizlabs/php_codesniffer": "^3",
  772. "symfony/var-dumper": "^4",
  773. "symfony/yaml": "^4",
  774. "yoast/phpunit-polyfills": "^0.2.0"
  775. },
  776. "suggest": {
  777. "symfony/var-dumper": "For using the var_dump formatter"
  778. },
  779. "type": "library",
  780. "extra": {
  781. "branch-alias": {
  782. "dev-main": "4.x-dev"
  783. }
  784. },
  785. "autoload": {
  786. "psr-4": {
  787. "Consolidation\\OutputFormatters\\": "src"
  788. }
  789. },
  790. "notification-url": "https://packagist.org/downloads/",
  791. "license": [
  792. "MIT"
  793. ],
  794. "authors": [
  795. {
  796. "name": "Greg Anderson",
  797. "email": "greg.1.anderson@greenknowe.org"
  798. }
  799. ],
  800. "description": "Format text by applying transformations provided by plug-in formatters.",
  801. "support": {
  802. "issues": "https://github.com/consolidation/output-formatters/issues",
  803. "source": "https://github.com/consolidation/output-formatters/tree/4.1.2"
  804. },
  805. "time": "2020-12-12T19:04:59+00:00"
  806. },
  807. {
  808. "name": "consolidation/robo",
  809. "version": "2.2.2",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/consolidation/Robo.git",
  813. "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/consolidation/Robo/zipball/b365df174d9cfb0f5814e4f3275a1c558b17bc4c",
  818. "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "consolidation/annotated-command": "^4.2.1",
  823. "consolidation/config": "^1.2.1|^2",
  824. "consolidation/log": "^1.1.1|^2.0.1",
  825. "consolidation/output-formatters": "^4.1.1",
  826. "consolidation/self-update": "^1.2",
  827. "league/container": "^2.4.1",
  828. "php": ">=7.1.3",
  829. "symfony/console": "^4.4.11|^5",
  830. "symfony/event-dispatcher": "^4.4.11|^5",
  831. "symfony/filesystem": "^4.4.11|^5",
  832. "symfony/finder": "^4.4.11|^5",
  833. "symfony/process": "^4.4.11|^5",
  834. "symfony/yaml": "^4.0 || ^5.0"
  835. },
  836. "conflict": {
  837. "codegyre/robo": "*"
  838. },
  839. "require-dev": {
  840. "g1a/composer-test-scenarios": "^3",
  841. "natxet/cssmin": "3.0.4",
  842. "patchwork/jsqueeze": "^2",
  843. "pear/archive_tar": "^1.4.4",
  844. "php-coveralls/php-coveralls": "^2.2",
  845. "phpdocumentor/reflection-docblock": "^4.3.2",
  846. "phpunit/phpunit": "^6.5.14",
  847. "squizlabs/php_codesniffer": "^3"
  848. },
  849. "suggest": {
  850. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  851. "natxet/cssmin": "For minifying CSS files in taskMinify",
  852. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  853. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  854. },
  855. "bin": [
  856. "robo"
  857. ],
  858. "type": "library",
  859. "extra": {
  860. "scenarios": {
  861. "symfony4": {
  862. "require": {
  863. "symfony/console": "^4.4.11",
  864. "symfony/event-dispatcher": "^4.4.11",
  865. "symfony/filesystem": "^4.4.11",
  866. "symfony/finder": "^4.4.11",
  867. "symfony/process": "^4.4.11",
  868. "phpunit/phpunit": "^6",
  869. "nikic/php-parser": "^2"
  870. },
  871. "remove": [
  872. "codeception/phpunit-wrapper"
  873. ],
  874. "config": {
  875. "platform": {
  876. "php": "7.1.3"
  877. }
  878. }
  879. }
  880. },
  881. "branch-alias": {
  882. "dev-master": "2.x-dev",
  883. "dev-main": "2.x-dev"
  884. }
  885. },
  886. "autoload": {
  887. "psr-4": {
  888. "Robo\\": "src"
  889. }
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Davert",
  898. "email": "davert.php@resend.cc"
  899. }
  900. ],
  901. "description": "Modern task runner",
  902. "support": {
  903. "issues": "https://github.com/consolidation/Robo/issues",
  904. "source": "https://github.com/consolidation/Robo/tree/2.2.2"
  905. },
  906. "time": "2020-12-18T22:09:18+00:00"
  907. },
  908. {
  909. "name": "consolidation/self-update",
  910. "version": "1.2.0",
  911. "source": {
  912. "type": "git",
  913. "url": "https://github.com/consolidation/self-update.git",
  914. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  915. },
  916. "dist": {
  917. "type": "zip",
  918. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  919. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  920. "shasum": ""
  921. },
  922. "require": {
  923. "php": ">=5.5.0",
  924. "symfony/console": "^2.8|^3|^4|^5",
  925. "symfony/filesystem": "^2.5|^3|^4|^5"
  926. },
  927. "bin": [
  928. "scripts/release"
  929. ],
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "1.x-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "SelfUpdate\\": "src"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Alexander Menk",
  948. "email": "menk@mestrona.net"
  949. },
  950. {
  951. "name": "Greg Anderson",
  952. "email": "greg.1.anderson@greenknowe.org"
  953. }
  954. ],
  955. "description": "Provides a self:update command for Symfony Console applications.",
  956. "support": {
  957. "issues": "https://github.com/consolidation/self-update/issues",
  958. "source": "https://github.com/consolidation/self-update/tree/1.2.0"
  959. },
  960. "time": "2020-04-13T02:49:20+00:00"
  961. },
  962. {
  963. "name": "consolidation/site-alias",
  964. "version": "3.1.0",
  965. "source": {
  966. "type": "git",
  967. "url": "https://github.com/consolidation/site-alias.git",
  968. "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c"
  969. },
  970. "dist": {
  971. "type": "zip",
  972. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/9ed3c590be9fcf9fea69c73456c2fd4b27f5204c",
  973. "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c",
  974. "shasum": ""
  975. },
  976. "require": {
  977. "consolidation/config": "^1.2.1|^2",
  978. "php": ">=5.5.0",
  979. "symfony/finder": "~2.3|^3|^4.4|^5"
  980. },
  981. "require-dev": {
  982. "php-coveralls/php-coveralls": "^2.4.2",
  983. "phpunit/phpunit": ">=7",
  984. "squizlabs/php_codesniffer": "^3",
  985. "symfony/var-dumper": "^4",
  986. "yoast/phpunit-polyfills": "^0.2.0"
  987. },
  988. "type": "library",
  989. "extra": {
  990. "branch-alias": {
  991. "dev-main": "3.x-dev"
  992. }
  993. },
  994. "autoload": {
  995. "psr-4": {
  996. "Consolidation\\SiteAlias\\": "src"
  997. }
  998. },
  999. "notification-url": "https://packagist.org/downloads/",
  1000. "license": [
  1001. "MIT"
  1002. ],
  1003. "authors": [
  1004. {
  1005. "name": "Greg Anderson",
  1006. "email": "greg.1.anderson@greenknowe.org"
  1007. },
  1008. {
  1009. "name": "Moshe Weitzman",
  1010. "email": "weitzman@tejasa.com"
  1011. }
  1012. ],
  1013. "description": "Manage alias records for local and remote sites.",
  1014. "support": {
  1015. "issues": "https://github.com/consolidation/site-alias/issues",
  1016. "source": "https://github.com/consolidation/site-alias/tree/3.1.0"
  1017. },
  1018. "time": "2021-02-20T20:03:10+00:00"
  1019. },
  1020. {
  1021. "name": "consolidation/site-process",
  1022. "version": "4.1.0",
  1023. "source": {
  1024. "type": "git",
  1025. "url": "https://github.com/consolidation/site-process.git",
  1026. "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c"
  1027. },
  1028. "dist": {
  1029. "type": "zip",
  1030. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ef57711d7049f7606ce936ded16ad93f1ad7f02c",
  1031. "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c",
  1032. "shasum": ""
  1033. },
  1034. "require": {
  1035. "consolidation/config": "^1.2.1|^2",
  1036. "consolidation/site-alias": "^3",
  1037. "php": ">=7.1.3",
  1038. "symfony/console": "^2.8.52|^3|^4.4|^5",
  1039. "symfony/process": "^4.3.4"
  1040. },
  1041. "require-dev": {
  1042. "phpunit/phpunit": "^7.5.20|^8.5.14",
  1043. "squizlabs/php_codesniffer": "^3",
  1044. "yoast/phpunit-polyfills": "^0.2.0"
  1045. },
  1046. "type": "library",
  1047. "extra": {
  1048. "branch-alias": {
  1049. "dev-main": "4.x-dev"
  1050. }
  1051. },
  1052. "autoload": {
  1053. "psr-4": {
  1054. "Consolidation\\SiteProcess\\": "src"
  1055. }
  1056. },
  1057. "notification-url": "https://packagist.org/downloads/",
  1058. "license": [
  1059. "MIT"
  1060. ],
  1061. "authors": [
  1062. {
  1063. "name": "Greg Anderson",
  1064. "email": "greg.1.anderson@greenknowe.org"
  1065. },
  1066. {
  1067. "name": "Moshe Weitzman",
  1068. "email": "weitzman@tejasa.com"
  1069. }
  1070. ],
  1071. "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.",
  1072. "support": {
  1073. "issues": "https://github.com/consolidation/site-process/issues",
  1074. "source": "https://github.com/consolidation/site-process/tree/4.1.0"
  1075. },
  1076. "time": "2021-02-21T02:53:33+00:00"
  1077. },
  1078. {
  1079. "name": "container-interop/container-interop",
  1080. "version": "1.2.0",
  1081. "source": {
  1082. "type": "git",
  1083. "url": "https://github.com/container-interop/container-interop.git",
  1084. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1085. },
  1086. "dist": {
  1087. "type": "zip",
  1088. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1089. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1090. "shasum": ""
  1091. },
  1092. "require": {
  1093. "psr/container": "^1.0"
  1094. },
  1095. "type": "library",
  1096. "autoload": {
  1097. "psr-4": {
  1098. "Interop\\Container\\": "src/Interop/Container/"
  1099. }
  1100. },
  1101. "notification-url": "https://packagist.org/downloads/",
  1102. "license": [
  1103. "MIT"
  1104. ],
  1105. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1106. "homepage": "https://github.com/container-interop/container-interop",
  1107. "support": {
  1108. "issues": "https://github.com/container-interop/container-interop/issues",
  1109. "source": "https://github.com/container-interop/container-interop/tree/master"
  1110. },
  1111. "abandoned": "psr/container",
  1112. "time": "2017-02-14T19:40:03+00:00"
  1113. },
  1114. {
  1115. "name": "cweagans/composer-patches",
  1116. "version": "1.7.0",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/cweagans/composer-patches.git",
  1120. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1125. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "composer-plugin-api": "^1.0 || ^2.0",
  1130. "php": ">=5.3.0"
  1131. },
  1132. "require-dev": {
  1133. "composer/composer": "~1.0 || ~2.0",
  1134. "phpunit/phpunit": "~4.6"
  1135. },
  1136. "type": "composer-plugin",
  1137. "extra": {
  1138. "class": "cweagans\\Composer\\Patches"
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "cweagans\\Composer\\": "src"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "BSD-3-Clause"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "Cameron Eagans",
  1152. "email": "me@cweagans.net"
  1153. }
  1154. ],
  1155. "description": "Provides a way to patch Composer packages.",
  1156. "support": {
  1157. "issues": "https://github.com/cweagans/composer-patches/issues",
  1158. "source": "https://github.com/cweagans/composer-patches/tree/1.7.0"
  1159. },
  1160. "time": "2020-09-30T17:56:20+00:00"
  1161. },
  1162. {
  1163. "name": "d3/d3",
  1164. "version": "v3.5.17",
  1165. "dist": {
  1166. "type": "zip",
  1167. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1168. },
  1169. "type": "drupal-library"
  1170. },
  1171. {
  1172. "name": "dflydev/dot-access-configuration",
  1173. "version": "v1.0.3",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1177. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1182. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "dflydev/dot-access-data": "1.*",
  1187. "dflydev/placeholder-resolver": "1.*",
  1188. "php": ">=5.3.2"
  1189. },
  1190. "require-dev": {
  1191. "symfony/yaml": "~2.1"
  1192. },
  1193. "suggest": {
  1194. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1195. },
  1196. "type": "library",
  1197. "extra": {
  1198. "branch-alias": {
  1199. "dev-master": "1.0-dev"
  1200. }
  1201. },
  1202. "autoload": {
  1203. "psr-0": {
  1204. "Dflydev\\DotAccessConfiguration": "src"
  1205. }
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "MIT"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "Dragonfly Development Inc.",
  1214. "email": "info@dflydev.com",
  1215. "homepage": "http://dflydev.com"
  1216. },
  1217. {
  1218. "name": "Beau Simensen",
  1219. "email": "beau@dflydev.com",
  1220. "homepage": "http://beausimensen.com"
  1221. }
  1222. ],
  1223. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1224. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1225. "keywords": [
  1226. "config",
  1227. "configuration"
  1228. ],
  1229. "support": {
  1230. "issues": "https://github.com/dflydev/dflydev-dot-access-configuration/issues",
  1231. "source": "https://github.com/dflydev/dflydev-dot-access-configuration/tree/master"
  1232. },
  1233. "time": "2018-09-08T23:00:17+00:00"
  1234. },
  1235. {
  1236. "name": "dflydev/dot-access-data",
  1237. "version": "v1.1.0",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1241. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1246. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "php": ">=5.3.2"
  1251. },
  1252. "type": "library",
  1253. "extra": {
  1254. "branch-alias": {
  1255. "dev-master": "1.0-dev"
  1256. }
  1257. },
  1258. "autoload": {
  1259. "psr-0": {
  1260. "Dflydev\\DotAccessData": "src"
  1261. }
  1262. },
  1263. "notification-url": "https://packagist.org/downloads/",
  1264. "license": [
  1265. "MIT"
  1266. ],
  1267. "authors": [
  1268. {
  1269. "name": "Dragonfly Development Inc.",
  1270. "email": "info@dflydev.com",
  1271. "homepage": "http://dflydev.com"
  1272. },
  1273. {
  1274. "name": "Beau Simensen",
  1275. "email": "beau@dflydev.com",
  1276. "homepage": "http://beausimensen.com"
  1277. },
  1278. {
  1279. "name": "Carlos Frutos",
  1280. "email": "carlos@kiwing.it",
  1281. "homepage": "https://github.com/cfrutos"
  1282. }
  1283. ],
  1284. "description": "Given a deep data structure, access data by dot notation.",
  1285. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1286. "keywords": [
  1287. "access",
  1288. "data",
  1289. "dot",
  1290. "notation"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1294. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1295. },
  1296. "time": "2017-01-20T21:14:22+00:00"
  1297. },
  1298. {
  1299. "name": "dflydev/placeholder-resolver",
  1300. "version": "v1.0.2",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1304. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1309. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "php": ">=5.3.2"
  1314. },
  1315. "type": "library",
  1316. "extra": {
  1317. "branch-alias": {
  1318. "dev-master": "1.0-dev"
  1319. }
  1320. },
  1321. "autoload": {
  1322. "psr-0": {
  1323. "Dflydev\\PlaceholderResolver": "src"
  1324. }
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "MIT"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Dragonfly Development Inc.",
  1333. "email": "info@dflydev.com",
  1334. "homepage": "http://dflydev.com"
  1335. },
  1336. {
  1337. "name": "Beau Simensen",
  1338. "email": "beau@dflydev.com",
  1339. "homepage": "http://beausimensen.com"
  1340. }
  1341. ],
  1342. "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.",
  1343. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1344. "keywords": [
  1345. "placeholder",
  1346. "resolver"
  1347. ],
  1348. "support": {
  1349. "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues",
  1350. "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.2"
  1351. },
  1352. "time": "2012-10-28T21:08:28+00:00"
  1353. },
  1354. {
  1355. "name": "doctrine/annotations",
  1356. "version": "1.11.1",
  1357. "source": {
  1358. "type": "git",
  1359. "url": "https://github.com/doctrine/annotations.git",
  1360. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1361. },
  1362. "dist": {
  1363. "type": "zip",
  1364. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1365. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1366. "shasum": ""
  1367. },
  1368. "require": {
  1369. "doctrine/lexer": "1.*",
  1370. "ext-tokenizer": "*",
  1371. "php": "^7.1 || ^8.0"
  1372. },
  1373. "require-dev": {
  1374. "doctrine/cache": "1.*",
  1375. "doctrine/coding-standard": "^6.0 || ^8.1",
  1376. "phpstan/phpstan": "^0.12.20",
  1377. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1378. },
  1379. "type": "library",
  1380. "extra": {
  1381. "branch-alias": {
  1382. "dev-master": "1.11.x-dev"
  1383. }
  1384. },
  1385. "autoload": {
  1386. "psr-4": {
  1387. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1388. }
  1389. },
  1390. "notification-url": "https://packagist.org/downloads/",
  1391. "license": [
  1392. "MIT"
  1393. ],
  1394. "authors": [
  1395. {
  1396. "name": "Guilherme Blanco",
  1397. "email": "guilhermeblanco@gmail.com"
  1398. },
  1399. {
  1400. "name": "Roman Borschel",
  1401. "email": "roman@code-factory.org"
  1402. },
  1403. {
  1404. "name": "Benjamin Eberlei",
  1405. "email": "kontakt@beberlei.de"
  1406. },
  1407. {
  1408. "name": "Jonathan Wage",
  1409. "email": "jonwage@gmail.com"
  1410. },
  1411. {
  1412. "name": "Johannes Schmitt",
  1413. "email": "schmittjoh@gmail.com"
  1414. }
  1415. ],
  1416. "description": "Docblock Annotations Parser",
  1417. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1418. "keywords": [
  1419. "annotations",
  1420. "docblock",
  1421. "parser"
  1422. ],
  1423. "support": {
  1424. "issues": "https://github.com/doctrine/annotations/issues",
  1425. "source": "https://github.com/doctrine/annotations/tree/1.11.1"
  1426. },
  1427. "time": "2020-10-26T10:28:16+00:00"
  1428. },
  1429. {
  1430. "name": "doctrine/cache",
  1431. "version": "1.10.2",
  1432. "source": {
  1433. "type": "git",
  1434. "url": "https://github.com/doctrine/cache.git",
  1435. "reference": "13e3381b25847283a91948d04640543941309727"
  1436. },
  1437. "dist": {
  1438. "type": "zip",
  1439. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  1440. "reference": "13e3381b25847283a91948d04640543941309727",
  1441. "shasum": ""
  1442. },
  1443. "require": {
  1444. "php": "~7.1 || ^8.0"
  1445. },
  1446. "conflict": {
  1447. "doctrine/common": ">2.2,<2.4"
  1448. },
  1449. "require-dev": {
  1450. "alcaeus/mongo-php-adapter": "^1.1",
  1451. "doctrine/coding-standard": "^6.0",
  1452. "mongodb/mongodb": "^1.1",
  1453. "phpunit/phpunit": "^7.0",
  1454. "predis/predis": "~1.0"
  1455. },
  1456. "suggest": {
  1457. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1458. },
  1459. "type": "library",
  1460. "extra": {
  1461. "branch-alias": {
  1462. "dev-master": "1.9.x-dev"
  1463. }
  1464. },
  1465. "autoload": {
  1466. "psr-4": {
  1467. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "MIT"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Guilherme Blanco",
  1477. "email": "guilhermeblanco@gmail.com"
  1478. },
  1479. {
  1480. "name": "Roman Borschel",
  1481. "email": "roman@code-factory.org"
  1482. },
  1483. {
  1484. "name": "Benjamin Eberlei",
  1485. "email": "kontakt@beberlei.de"
  1486. },
  1487. {
  1488. "name": "Jonathan Wage",
  1489. "email": "jonwage@gmail.com"
  1490. },
  1491. {
  1492. "name": "Johannes Schmitt",
  1493. "email": "schmittjoh@gmail.com"
  1494. }
  1495. ],
  1496. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1497. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1498. "keywords": [
  1499. "abstraction",
  1500. "apcu",
  1501. "cache",
  1502. "caching",
  1503. "couchdb",
  1504. "memcached",
  1505. "php",
  1506. "redis",
  1507. "xcache"
  1508. ],
  1509. "support": {
  1510. "issues": "https://github.com/doctrine/cache/issues",
  1511. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  1512. },
  1513. "funding": [
  1514. {
  1515. "url": "https://www.doctrine-project.org/sponsorship.html",
  1516. "type": "custom"
  1517. },
  1518. {
  1519. "url": "https://www.patreon.com/phpdoctrine",
  1520. "type": "patreon"
  1521. },
  1522. {
  1523. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1524. "type": "tidelift"
  1525. }
  1526. ],
  1527. "time": "2020-07-07T18:54:01+00:00"
  1528. },
  1529. {
  1530. "name": "doctrine/collections",
  1531. "version": "1.6.7",
  1532. "source": {
  1533. "type": "git",
  1534. "url": "https://github.com/doctrine/collections.git",
  1535. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  1536. },
  1537. "dist": {
  1538. "type": "zip",
  1539. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1540. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1541. "shasum": ""
  1542. },
  1543. "require": {
  1544. "php": "^7.1.3 || ^8.0"
  1545. },
  1546. "require-dev": {
  1547. "doctrine/coding-standard": "^6.0",
  1548. "phpstan/phpstan-shim": "^0.9.2",
  1549. "phpunit/phpunit": "^7.0",
  1550. "vimeo/psalm": "^3.8.1"
  1551. },
  1552. "type": "library",
  1553. "autoload": {
  1554. "psr-4": {
  1555. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1556. }
  1557. },
  1558. "notification-url": "https://packagist.org/downloads/",
  1559. "license": [
  1560. "MIT"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "Guilherme Blanco",
  1565. "email": "guilhermeblanco@gmail.com"
  1566. },
  1567. {
  1568. "name": "Roman Borschel",
  1569. "email": "roman@code-factory.org"
  1570. },
  1571. {
  1572. "name": "Benjamin Eberlei",
  1573. "email": "kontakt@beberlei.de"
  1574. },
  1575. {
  1576. "name": "Jonathan Wage",
  1577. "email": "jonwage@gmail.com"
  1578. },
  1579. {
  1580. "name": "Johannes Schmitt",
  1581. "email": "schmittjoh@gmail.com"
  1582. }
  1583. ],
  1584. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1585. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1586. "keywords": [
  1587. "array",
  1588. "collections",
  1589. "iterators",
  1590. "php"
  1591. ],
  1592. "support": {
  1593. "issues": "https://github.com/doctrine/collections/issues",
  1594. "source": "https://github.com/doctrine/collections/tree/1.6.7"
  1595. },
  1596. "time": "2020-07-27T17:53:49+00:00"
  1597. },
  1598. {
  1599. "name": "doctrine/common",
  1600. "version": "2.13.3",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/doctrine/common.git",
  1604. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1609. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "doctrine/annotations": "^1.0",
  1614. "doctrine/cache": "^1.0",
  1615. "doctrine/collections": "^1.0",
  1616. "doctrine/event-manager": "^1.0",
  1617. "doctrine/inflector": "^1.0",
  1618. "doctrine/lexer": "^1.0",
  1619. "doctrine/persistence": "^1.3.3",
  1620. "doctrine/reflection": "^1.0",
  1621. "php": "^7.1 || ^8.0"
  1622. },
  1623. "require-dev": {
  1624. "doctrine/coding-standard": "^1.0",
  1625. "phpstan/phpstan": "^0.11",
  1626. "phpstan/phpstan-phpunit": "^0.11",
  1627. "phpunit/phpunit": "^7.0",
  1628. "squizlabs/php_codesniffer": "^3.0",
  1629. "symfony/phpunit-bridge": "^4.0.5"
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "branch-alias": {
  1634. "dev-master": "2.11.x-dev"
  1635. }
  1636. },
  1637. "autoload": {
  1638. "psr-4": {
  1639. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1640. }
  1641. },
  1642. "notification-url": "https://packagist.org/downloads/",
  1643. "license": [
  1644. "MIT"
  1645. ],
  1646. "authors": [
  1647. {
  1648. "name": "Guilherme Blanco",
  1649. "email": "guilhermeblanco@gmail.com"
  1650. },
  1651. {
  1652. "name": "Roman Borschel",
  1653. "email": "roman@code-factory.org"
  1654. },
  1655. {
  1656. "name": "Benjamin Eberlei",
  1657. "email": "kontakt@beberlei.de"
  1658. },
  1659. {
  1660. "name": "Jonathan Wage",
  1661. "email": "jonwage@gmail.com"
  1662. },
  1663. {
  1664. "name": "Johannes Schmitt",
  1665. "email": "schmittjoh@gmail.com"
  1666. },
  1667. {
  1668. "name": "Marco Pivetta",
  1669. "email": "ocramius@gmail.com"
  1670. }
  1671. ],
  1672. "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.",
  1673. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1674. "keywords": [
  1675. "common",
  1676. "doctrine",
  1677. "php"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/doctrine/common/issues",
  1681. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://www.doctrine-project.org/sponsorship.html",
  1686. "type": "custom"
  1687. },
  1688. {
  1689. "url": "https://www.patreon.com/phpdoctrine",
  1690. "type": "patreon"
  1691. },
  1692. {
  1693. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1694. "type": "tidelift"
  1695. }
  1696. ],
  1697. "time": "2020-06-05T16:46:05+00:00"
  1698. },
  1699. {
  1700. "name": "doctrine/event-manager",
  1701. "version": "1.1.1",
  1702. "source": {
  1703. "type": "git",
  1704. "url": "https://github.com/doctrine/event-manager.git",
  1705. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1706. },
  1707. "dist": {
  1708. "type": "zip",
  1709. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1710. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1711. "shasum": ""
  1712. },
  1713. "require": {
  1714. "php": "^7.1 || ^8.0"
  1715. },
  1716. "conflict": {
  1717. "doctrine/common": "<2.9@dev"
  1718. },
  1719. "require-dev": {
  1720. "doctrine/coding-standard": "^6.0",
  1721. "phpunit/phpunit": "^7.0"
  1722. },
  1723. "type": "library",
  1724. "extra": {
  1725. "branch-alias": {
  1726. "dev-master": "1.0.x-dev"
  1727. }
  1728. },
  1729. "autoload": {
  1730. "psr-4": {
  1731. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1732. }
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Guilherme Blanco",
  1741. "email": "guilhermeblanco@gmail.com"
  1742. },
  1743. {
  1744. "name": "Roman Borschel",
  1745. "email": "roman@code-factory.org"
  1746. },
  1747. {
  1748. "name": "Benjamin Eberlei",
  1749. "email": "kontakt@beberlei.de"
  1750. },
  1751. {
  1752. "name": "Jonathan Wage",
  1753. "email": "jonwage@gmail.com"
  1754. },
  1755. {
  1756. "name": "Johannes Schmitt",
  1757. "email": "schmittjoh@gmail.com"
  1758. },
  1759. {
  1760. "name": "Marco Pivetta",
  1761. "email": "ocramius@gmail.com"
  1762. }
  1763. ],
  1764. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1765. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1766. "keywords": [
  1767. "event",
  1768. "event dispatcher",
  1769. "event manager",
  1770. "event system",
  1771. "events"
  1772. ],
  1773. "support": {
  1774. "issues": "https://github.com/doctrine/event-manager/issues",
  1775. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1776. },
  1777. "funding": [
  1778. {
  1779. "url": "https://www.doctrine-project.org/sponsorship.html",
  1780. "type": "custom"
  1781. },
  1782. {
  1783. "url": "https://www.patreon.com/phpdoctrine",
  1784. "type": "patreon"
  1785. },
  1786. {
  1787. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1788. "type": "tidelift"
  1789. }
  1790. ],
  1791. "time": "2020-05-29T18:28:51+00:00"
  1792. },
  1793. {
  1794. "name": "doctrine/inflector",
  1795. "version": "1.4.3",
  1796. "source": {
  1797. "type": "git",
  1798. "url": "https://github.com/doctrine/inflector.git",
  1799. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  1800. },
  1801. "dist": {
  1802. "type": "zip",
  1803. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1804. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1805. "shasum": ""
  1806. },
  1807. "require": {
  1808. "php": "^7.2 || ^8.0"
  1809. },
  1810. "require-dev": {
  1811. "doctrine/coding-standard": "^7.0",
  1812. "phpstan/phpstan": "^0.11",
  1813. "phpstan/phpstan-phpunit": "^0.11",
  1814. "phpstan/phpstan-strict-rules": "^0.11",
  1815. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1816. },
  1817. "type": "library",
  1818. "extra": {
  1819. "branch-alias": {
  1820. "dev-master": "2.0.x-dev"
  1821. }
  1822. },
  1823. "autoload": {
  1824. "psr-4": {
  1825. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1826. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1827. }
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Guilherme Blanco",
  1836. "email": "guilhermeblanco@gmail.com"
  1837. },
  1838. {
  1839. "name": "Roman Borschel",
  1840. "email": "roman@code-factory.org"
  1841. },
  1842. {
  1843. "name": "Benjamin Eberlei",
  1844. "email": "kontakt@beberlei.de"
  1845. },
  1846. {
  1847. "name": "Jonathan Wage",
  1848. "email": "jonwage@gmail.com"
  1849. },
  1850. {
  1851. "name": "Johannes Schmitt",
  1852. "email": "schmittjoh@gmail.com"
  1853. }
  1854. ],
  1855. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1856. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1857. "keywords": [
  1858. "inflection",
  1859. "inflector",
  1860. "lowercase",
  1861. "manipulation",
  1862. "php",
  1863. "plural",
  1864. "singular",
  1865. "strings",
  1866. "uppercase",
  1867. "words"
  1868. ],
  1869. "support": {
  1870. "issues": "https://github.com/doctrine/inflector/issues",
  1871. "source": "https://github.com/doctrine/inflector/tree/1.4.x"
  1872. },
  1873. "funding": [
  1874. {
  1875. "url": "https://www.doctrine-project.org/sponsorship.html",
  1876. "type": "custom"
  1877. },
  1878. {
  1879. "url": "https://www.patreon.com/phpdoctrine",
  1880. "type": "patreon"
  1881. },
  1882. {
  1883. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1884. "type": "tidelift"
  1885. }
  1886. ],
  1887. "time": "2020-05-29T07:19:59+00:00"
  1888. },
  1889. {
  1890. "name": "doctrine/lexer",
  1891. "version": "1.2.1",
  1892. "source": {
  1893. "type": "git",
  1894. "url": "https://github.com/doctrine/lexer.git",
  1895. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1896. },
  1897. "dist": {
  1898. "type": "zip",
  1899. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1900. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1901. "shasum": ""
  1902. },
  1903. "require": {
  1904. "php": "^7.2 || ^8.0"
  1905. },
  1906. "require-dev": {
  1907. "doctrine/coding-standard": "^6.0",
  1908. "phpstan/phpstan": "^0.11.8",
  1909. "phpunit/phpunit": "^8.2"
  1910. },
  1911. "type": "library",
  1912. "extra": {
  1913. "branch-alias": {
  1914. "dev-master": "1.2.x-dev"
  1915. }
  1916. },
  1917. "autoload": {
  1918. "psr-4": {
  1919. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1920. }
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "authors": [
  1927. {
  1928. "name": "Guilherme Blanco",
  1929. "email": "guilhermeblanco@gmail.com"
  1930. },
  1931. {
  1932. "name": "Roman Borschel",
  1933. "email": "roman@code-factory.org"
  1934. },
  1935. {
  1936. "name": "Johannes Schmitt",
  1937. "email": "schmittjoh@gmail.com"
  1938. }
  1939. ],
  1940. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1941. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1942. "keywords": [
  1943. "annotations",
  1944. "docblock",
  1945. "lexer",
  1946. "parser",
  1947. "php"
  1948. ],
  1949. "support": {
  1950. "issues": "https://github.com/doctrine/lexer/issues",
  1951. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1952. },
  1953. "funding": [
  1954. {
  1955. "url": "https://www.doctrine-project.org/sponsorship.html",
  1956. "type": "custom"
  1957. },
  1958. {
  1959. "url": "https://www.patreon.com/phpdoctrine",
  1960. "type": "patreon"
  1961. },
  1962. {
  1963. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1964. "type": "tidelift"
  1965. }
  1966. ],
  1967. "time": "2020-05-25T17:44:05+00:00"
  1968. },
  1969. {
  1970. "name": "doctrine/persistence",
  1971. "version": "1.3.8",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/doctrine/persistence.git",
  1975. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1980. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "doctrine/annotations": "^1.0",
  1985. "doctrine/cache": "^1.0",
  1986. "doctrine/collections": "^1.0",
  1987. "doctrine/event-manager": "^1.0",
  1988. "doctrine/reflection": "^1.2",
  1989. "php": "^7.1 || ^8.0"
  1990. },
  1991. "conflict": {
  1992. "doctrine/common": "<2.10@dev"
  1993. },
  1994. "require-dev": {
  1995. "doctrine/coding-standard": "^6.0",
  1996. "phpstan/phpstan": "^0.11",
  1997. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1998. "vimeo/psalm": "^3.11"
  1999. },
  2000. "type": "library",
  2001. "extra": {
  2002. "branch-alias": {
  2003. "dev-master": "1.3.x-dev"
  2004. }
  2005. },
  2006. "autoload": {
  2007. "psr-4": {
  2008. "Doctrine\\Common\\": "lib/Doctrine/Common",
  2009. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  2010. }
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "MIT"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "Guilherme Blanco",
  2019. "email": "guilhermeblanco@gmail.com"
  2020. },
  2021. {
  2022. "name": "Roman Borschel",
  2023. "email": "roman@code-factory.org"
  2024. },
  2025. {
  2026. "name": "Benjamin Eberlei",
  2027. "email": "kontakt@beberlei.de"
  2028. },
  2029. {
  2030. "name": "Jonathan Wage",
  2031. "email": "jonwage@gmail.com"
  2032. },
  2033. {
  2034. "name": "Johannes Schmitt",
  2035. "email": "schmittjoh@gmail.com"
  2036. },
  2037. {
  2038. "name": "Marco Pivetta",
  2039. "email": "ocramius@gmail.com"
  2040. }
  2041. ],
  2042. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  2043. "homepage": "https://doctrine-project.org/projects/persistence.html",
  2044. "keywords": [
  2045. "mapper",
  2046. "object",
  2047. "odm",
  2048. "orm",
  2049. "persistence"
  2050. ],
  2051. "support": {
  2052. "issues": "https://github.com/doctrine/persistence/issues",
  2053. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  2054. },
  2055. "funding": [
  2056. {
  2057. "url": "https://www.doctrine-project.org/sponsorship.html",
  2058. "type": "custom"
  2059. },
  2060. {
  2061. "url": "https://www.patreon.com/phpdoctrine",
  2062. "type": "patreon"
  2063. },
  2064. {
  2065. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2066. "type": "tidelift"
  2067. }
  2068. ],
  2069. "time": "2020-06-20T12:56:16+00:00"
  2070. },
  2071. {
  2072. "name": "doctrine/reflection",
  2073. "version": "1.2.2",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/doctrine/reflection.git",
  2077. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2082. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "doctrine/annotations": "^1.0",
  2087. "ext-tokenizer": "*",
  2088. "php": "^7.1 || ^8.0"
  2089. },
  2090. "conflict": {
  2091. "doctrine/common": "<2.9"
  2092. },
  2093. "require-dev": {
  2094. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2095. "doctrine/common": "^2.10",
  2096. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2097. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2098. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2099. },
  2100. "type": "library",
  2101. "extra": {
  2102. "branch-alias": {
  2103. "dev-master": "1.2.x-dev"
  2104. }
  2105. },
  2106. "autoload": {
  2107. "psr-4": {
  2108. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2109. }
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "MIT"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "Guilherme Blanco",
  2118. "email": "guilhermeblanco@gmail.com"
  2119. },
  2120. {
  2121. "name": "Roman Borschel",
  2122. "email": "roman@code-factory.org"
  2123. },
  2124. {
  2125. "name": "Benjamin Eberlei",
  2126. "email": "kontakt@beberlei.de"
  2127. },
  2128. {
  2129. "name": "Jonathan Wage",
  2130. "email": "jonwage@gmail.com"
  2131. },
  2132. {
  2133. "name": "Johannes Schmitt",
  2134. "email": "schmittjoh@gmail.com"
  2135. },
  2136. {
  2137. "name": "Marco Pivetta",
  2138. "email": "ocramius@gmail.com"
  2139. }
  2140. ],
  2141. "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.",
  2142. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2143. "keywords": [
  2144. "reflection",
  2145. "static"
  2146. ],
  2147. "support": {
  2148. "issues": "https://github.com/doctrine/reflection/issues",
  2149. "source": "https://github.com/doctrine/reflection/tree/1.2.2"
  2150. },
  2151. "abandoned": "roave/better-reflection",
  2152. "time": "2020-10-27T21:46:55+00:00"
  2153. },
  2154. {
  2155. "name": "drupal/address",
  2156. "version": "1.9.0",
  2157. "source": {
  2158. "type": "git",
  2159. "url": "https://git.drupalcode.org/project/address.git",
  2160. "reference": "8.x-1.9"
  2161. },
  2162. "dist": {
  2163. "type": "zip",
  2164. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2165. "reference": "8.x-1.9",
  2166. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2167. },
  2168. "require": {
  2169. "commerceguys/addressing": "^1.0.7",
  2170. "drupal/core": "^8.8 || ^9"
  2171. },
  2172. "require-dev": {
  2173. "drupal/token": "^1.0"
  2174. },
  2175. "type": "drupal-module",
  2176. "extra": {
  2177. "drupal": {
  2178. "version": "8.x-1.9",
  2179. "datestamp": "1604422821",
  2180. "security-coverage": {
  2181. "status": "covered",
  2182. "message": "Covered by Drupal's security advisory policy"
  2183. }
  2184. }
  2185. },
  2186. "notification-url": "https://packages.drupal.org/8/downloads",
  2187. "license": [
  2188. "GPL-2.0-or-later"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "bojanz",
  2193. "homepage": "https://www.drupal.org/user/86106"
  2194. },
  2195. {
  2196. "name": "dww",
  2197. "homepage": "https://www.drupal.org/user/46549"
  2198. },
  2199. {
  2200. "name": "googletorp",
  2201. "homepage": "https://www.drupal.org/user/386230"
  2202. },
  2203. {
  2204. "name": "jsacksick",
  2205. "homepage": "https://www.drupal.org/user/972218"
  2206. },
  2207. {
  2208. "name": "mglaman",
  2209. "homepage": "https://www.drupal.org/user/2416470"
  2210. },
  2211. {
  2212. "name": "rszrama",
  2213. "homepage": "https://www.drupal.org/user/49344"
  2214. }
  2215. ],
  2216. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2217. "homepage": "http://drupal.org/project/address",
  2218. "support": {
  2219. "source": "https://git.drupalcode.org/project/address"
  2220. }
  2221. },
  2222. {
  2223. "name": "drupal/admin_toolbar",
  2224. "version": "2.4.0",
  2225. "source": {
  2226. "type": "git",
  2227. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2228. "reference": "8.x-2.4"
  2229. },
  2230. "dist": {
  2231. "type": "zip",
  2232. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip",
  2233. "reference": "8.x-2.4",
  2234. "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38"
  2235. },
  2236. "require": {
  2237. "drupal/core": "^8.8.0 || ^9.0"
  2238. },
  2239. "type": "drupal-module",
  2240. "extra": {
  2241. "drupal": {
  2242. "version": "8.x-2.4",
  2243. "datestamp": "1601999178",
  2244. "security-coverage": {
  2245. "status": "covered",
  2246. "message": "Covered by Drupal's security advisory policy"
  2247. }
  2248. }
  2249. },
  2250. "notification-url": "https://packages.drupal.org/8/downloads",
  2251. "license": [
  2252. "GPL-2.0-or-later"
  2253. ],
  2254. "authors": [
  2255. {
  2256. "name": "Wilfrid Roze (eme)",
  2257. "homepage": "https://www.drupal.org/u/eme",
  2258. "role": "Maintainer"
  2259. },
  2260. {
  2261. "name": "Romain Jarraud (romainj)",
  2262. "homepage": "https://www.drupal.org/u/romainj",
  2263. "role": "Maintainer"
  2264. },
  2265. {
  2266. "name": "Adrian Cid Almaguer (adriancid)",
  2267. "homepage": "https://www.drupal.org/u/adriancid",
  2268. "email": "adriancid@gmail.com",
  2269. "role": "Maintainer"
  2270. },
  2271. {
  2272. "name": "Mohamed Anis Taktak (matio89)",
  2273. "homepage": "https://www.drupal.org/u/matio89",
  2274. "role": "Maintainer"
  2275. },
  2276. {
  2277. "name": "fethi.krout",
  2278. "homepage": "https://www.drupal.org/user/3206765"
  2279. },
  2280. {
  2281. "name": "matio89",
  2282. "homepage": "https://www.drupal.org/user/2320090"
  2283. },
  2284. {
  2285. "name": "romainj",
  2286. "homepage": "https://www.drupal.org/user/370706"
  2287. }
  2288. ],
  2289. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2290. "homepage": "http://drupal.org/project/admin_toolbar",
  2291. "keywords": [
  2292. "Drupal",
  2293. "Toolbar"
  2294. ],
  2295. "support": {
  2296. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2297. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2298. }
  2299. },
  2300. {
  2301. "name": "drupal/adminimal_theme",
  2302. "version": "1.6.0",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2306. "reference": "8.x-1.6"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2311. "reference": "8.x-1.6",
  2312. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2313. },
  2314. "require": {
  2315. "drupal/core": "^8.8 || ^9"
  2316. },
  2317. "type": "drupal-theme",
  2318. "extra": {
  2319. "drupal": {
  2320. "version": "8.x-1.6",
  2321. "datestamp": "1602006937",
  2322. "security-coverage": {
  2323. "status": "covered",
  2324. "message": "Covered by Drupal's security advisory policy"
  2325. }
  2326. }
  2327. },
  2328. "notification-url": "https://packages.drupal.org/8/downloads",
  2329. "license": [
  2330. "GPL-2.0+"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "ANDiTKO",
  2335. "homepage": "https://www.drupal.org/user/1428124"
  2336. },
  2337. {
  2338. "name": "andrey.troeglazov",
  2339. "homepage": "https://www.drupal.org/user/3145389"
  2340. },
  2341. {
  2342. "name": "realityloop",
  2343. "homepage": "https://www.drupal.org/user/139189"
  2344. }
  2345. ],
  2346. "description": "Drupal administration theme with modern minimalist design.",
  2347. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2348. "support": {
  2349. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2350. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2351. }
  2352. },
  2353. {
  2354. "name": "drupal/administerusersbyrole",
  2355. "version": "dev-3.x",
  2356. "source": {
  2357. "type": "git",
  2358. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  2359. "reference": "1f416a9fb86f77a2508aa51fe97fa2c3228e02da"
  2360. },
  2361. "require": {
  2362. "drupal/core": "^8 || ^9"
  2363. },
  2364. "type": "drupal-module",
  2365. "extra": {
  2366. "branch-alias": {
  2367. "dev-3.x": "3.x-dev"
  2368. },
  2369. "drupal": {
  2370. "version": "8.x-3.0+1-dev",
  2371. "datestamp": "1612104401",
  2372. "security-coverage": {
  2373. "status": "not-covered",
  2374. "message": "Dev releases are not covered by Drupal security advisories."
  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": "AdamPS",
  2385. "homepage": "https://www.drupal.org/user/2650563"
  2386. },
  2387. {
  2388. "name": "mrfelton",
  2389. "homepage": "https://www.drupal.org/user/305669"
  2390. },
  2391. {
  2392. "name": "smokris",
  2393. "homepage": "https://www.drupal.org/user/161913"
  2394. }
  2395. ],
  2396. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  2397. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  2398. "support": {
  2399. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  2400. }
  2401. },
  2402. {
  2403. "name": "drupal/advanced_text_formatter",
  2404. "version": "2.0.0",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2408. "reference": "2.0.0"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.0.0.zip",
  2413. "reference": "2.0.0",
  2414. "shasum": "ecd1d0e46dfc137251f9b71e724c6edddd5c48df"
  2415. },
  2416. "require": {
  2417. "drupal/core": "^8 || ^9"
  2418. },
  2419. "type": "drupal-module",
  2420. "extra": {
  2421. "drupal": {
  2422. "version": "2.0.0",
  2423. "datestamp": "1591030704",
  2424. "security-coverage": {
  2425. "status": "covered",
  2426. "message": "Covered by Drupal's security advisory policy"
  2427. }
  2428. }
  2429. },
  2430. "notification-url": "https://packages.drupal.org/8/downloads",
  2431. "license": [
  2432. "GPL-2.0-or-later"
  2433. ],
  2434. "authors": [
  2435. {
  2436. "name": "azovsky",
  2437. "homepage": "https://www.drupal.org/user/330533"
  2438. },
  2439. {
  2440. "name": "thmnhat",
  2441. "homepage": "https://www.drupal.org/user/998946"
  2442. }
  2443. ],
  2444. "description": "Provides an additional formatter for text field, text area and text format.",
  2445. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2446. "support": {
  2447. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2448. }
  2449. },
  2450. {
  2451. "name": "drupal/audiofield",
  2452. "version": "1.10.0",
  2453. "source": {
  2454. "type": "git",
  2455. "url": "https://git.drupalcode.org/project/audiofield.git",
  2456. "reference": "8.x-1.10"
  2457. },
  2458. "dist": {
  2459. "type": "zip",
  2460. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2461. "reference": "8.x-1.10",
  2462. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2463. },
  2464. "require": {
  2465. "drupal/core": "^8 || ^9"
  2466. },
  2467. "type": "drupal-module",
  2468. "extra": {
  2469. "drupal": {
  2470. "version": "8.x-1.10",
  2471. "datestamp": "1607014410",
  2472. "security-coverage": {
  2473. "status": "covered",
  2474. "message": "Covered by Drupal's security advisory policy"
  2475. }
  2476. },
  2477. "drush": {
  2478. "services": {
  2479. "drush.services.yml": "^9"
  2480. }
  2481. }
  2482. },
  2483. "notification-url": "https://packages.drupal.org/8/downloads",
  2484. "license": [
  2485. "GPL-2.0-or-later"
  2486. ],
  2487. "authors": [
  2488. {
  2489. "name": "Daniel Moberly",
  2490. "homepage": "https://www.drupal.org/u/danielmoberly",
  2491. "role": "Maintainer"
  2492. },
  2493. {
  2494. "name": "josipsaric",
  2495. "homepage": "https://www.drupal.org/user/3063287"
  2496. },
  2497. {
  2498. "name": "tamerzg",
  2499. "homepage": "https://www.drupal.org/user/464564"
  2500. }
  2501. ],
  2502. "description": "AudioField Module",
  2503. "homepage": "https://www.drupal.org/project/audiofield",
  2504. "support": {
  2505. "source": "https://git.drupalcode.org/project/audiofield",
  2506. "issues": "https://www.drupal.org/project/issues/audiofield"
  2507. }
  2508. },
  2509. {
  2510. "name": "drupal/autocomplete_deluxe",
  2511. "version": "2.0.0-rc1",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2515. "reference": "2.0.0-rc1"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0-rc1.zip",
  2520. "reference": "2.0.0-rc1",
  2521. "shasum": "9f3c63862652862322184bb892cc1fa80c9f47c1"
  2522. },
  2523. "require": {
  2524. "drupal/core": "^8 || ^9"
  2525. },
  2526. "type": "drupal-module",
  2527. "extra": {
  2528. "drupal": {
  2529. "version": "2.0.0-rc1",
  2530. "datestamp": "1592389562",
  2531. "security-coverage": {
  2532. "status": "not-covered",
  2533. "message": "RC releases are not covered by Drupal security advisories."
  2534. }
  2535. }
  2536. },
  2537. "notification-url": "https://packages.drupal.org/8/downloads",
  2538. "license": [
  2539. "GPL-2.0-or-later"
  2540. ],
  2541. "authors": [
  2542. {
  2543. "name": "Vardot",
  2544. "homepage": "https://www.drupal.org/vardot",
  2545. "role": "Maintenance for D8 and D9 versions"
  2546. },
  2547. {
  2548. "name": "Mediacurrent",
  2549. "homepage": "https://www.drupal.org/mediacurrent",
  2550. "role": "Supporting organization"
  2551. },
  2552. {
  2553. "name": "RajabNatshah",
  2554. "homepage": "https://www.drupal.org/user/1414312"
  2555. },
  2556. {
  2557. "name": "edwardchiapet",
  2558. "homepage": "https://www.drupal.org/user/2354784"
  2559. },
  2560. {
  2561. "name": "mpriscella",
  2562. "homepage": "https://www.drupal.org/user/2354820"
  2563. },
  2564. {
  2565. "name": "sepgil",
  2566. "homepage": "https://www.drupal.org/user/512828"
  2567. }
  2568. ],
  2569. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2570. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2571. "support": {
  2572. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2573. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2574. }
  2575. },
  2576. {
  2577. "name": "drupal/autologout",
  2578. "version": "1.3.0",
  2579. "source": {
  2580. "type": "git",
  2581. "url": "https://git.drupalcode.org/project/autologout.git",
  2582. "reference": "8.x-1.3"
  2583. },
  2584. "dist": {
  2585. "type": "zip",
  2586. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2587. "reference": "8.x-1.3",
  2588. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2589. },
  2590. "require": {
  2591. "drupal/core": "^8 || ^9"
  2592. },
  2593. "type": "drupal-module",
  2594. "extra": {
  2595. "drupal": {
  2596. "version": "8.x-1.3",
  2597. "datestamp": "1587193798",
  2598. "security-coverage": {
  2599. "status": "covered",
  2600. "message": "Covered by Drupal's security advisory policy"
  2601. }
  2602. }
  2603. },
  2604. "notification-url": "https://packages.drupal.org/8/downloads",
  2605. "license": [
  2606. "GPL-2.0+"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "AjK",
  2611. "homepage": "https://www.drupal.org/user/39030"
  2612. },
  2613. {
  2614. "name": "AjitS",
  2615. "homepage": "https://www.drupal.org/user/981944"
  2616. },
  2617. {
  2618. "name": "boshtian",
  2619. "homepage": "https://www.drupal.org/user/1773456"
  2620. },
  2621. {
  2622. "name": "dandrews",
  2623. "homepage": "https://www.drupal.org/user/2014490"
  2624. },
  2625. {
  2626. "name": "darksnow",
  2627. "homepage": "https://www.drupal.org/user/391915"
  2628. },
  2629. {
  2630. "name": "johnennew",
  2631. "homepage": "https://www.drupal.org/user/1150042"
  2632. },
  2633. {
  2634. "name": "jrglasgow",
  2635. "homepage": "https://www.drupal.org/user/36590"
  2636. },
  2637. {
  2638. "name": "kmasood",
  2639. "homepage": "https://www.drupal.org/user/1262860"
  2640. },
  2641. {
  2642. "name": "levelos",
  2643. "homepage": "https://www.drupal.org/user/54135"
  2644. },
  2645. {
  2646. "name": "prabeen.giri",
  2647. "homepage": "https://www.drupal.org/user/913078"
  2648. },
  2649. {
  2650. "name": "str8",
  2651. "homepage": "https://www.drupal.org/user/2865063"
  2652. }
  2653. ],
  2654. "description": "Adds automated timed logout.",
  2655. "homepage": "http://drupal.org/project/autologout",
  2656. "support": {
  2657. "source": "https://git.drupalcode.org/project/autologout"
  2658. }
  2659. },
  2660. {
  2661. "name": "drupal/better_exposed_filters",
  2662. "version": "5.0.0-beta1",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2666. "reference": "8.x-5.0-beta1"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta1.zip",
  2671. "reference": "8.x-5.0-beta1",
  2672. "shasum": "bc5ce873fa699ee584fdeb2fd28ad6c5cb456b03"
  2673. },
  2674. "require": {
  2675. "drupal/core": "^8.8 || ^9",
  2676. "drupal/jquery_ui": "^1.4",
  2677. "drupal/jquery_ui_datepicker": "^1.0",
  2678. "drupal/jquery_ui_slider": "^1.1",
  2679. "drupal/jquery_ui_touch_punch": "^1.0"
  2680. },
  2681. "type": "drupal-module",
  2682. "extra": {
  2683. "drupal": {
  2684. "version": "8.x-5.0-beta1",
  2685. "datestamp": "1594141892",
  2686. "security-coverage": {
  2687. "status": "not-covered",
  2688. "message": "Beta releases are not covered by Drupal security advisories."
  2689. }
  2690. }
  2691. },
  2692. "notification-url": "https://packages.drupal.org/8/downloads",
  2693. "license": [
  2694. "GPL-2.0+"
  2695. ],
  2696. "authors": [
  2697. {
  2698. "name": "Mike Keran",
  2699. "homepage": "https://www.drupal.org/u/mikeker"
  2700. },
  2701. {
  2702. "name": "Martin Keereman",
  2703. "homepage": "https://www.drupal.org/u/etroid"
  2704. },
  2705. {
  2706. "name": "chr.fritsch",
  2707. "homepage": "https://www.drupal.org/user/2103716"
  2708. },
  2709. {
  2710. "name": "jkopel",
  2711. "homepage": "https://www.drupal.org/user/66207"
  2712. },
  2713. {
  2714. "name": "mikeker",
  2715. "homepage": "https://www.drupal.org/user/192273"
  2716. },
  2717. {
  2718. "name": "rlhawk",
  2719. "homepage": "https://www.drupal.org/user/352283"
  2720. }
  2721. ],
  2722. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2723. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2724. "support": {
  2725. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2726. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2727. }
  2728. },
  2729. {
  2730. "name": "drupal/betterlogin",
  2731. "version": "1.5.0",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2735. "reference": "8.x-1.5"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2740. "reference": "8.x-1.5",
  2741. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2742. },
  2743. "require": {
  2744. "drupal/core": "^8 || ^9"
  2745. },
  2746. "type": "drupal-module",
  2747. "extra": {
  2748. "drupal": {
  2749. "version": "8.x-1.5",
  2750. "datestamp": "1588242718",
  2751. "security-coverage": {
  2752. "status": "covered",
  2753. "message": "Covered by Drupal's security advisory policy"
  2754. }
  2755. }
  2756. },
  2757. "notification-url": "https://packages.drupal.org/8/downloads",
  2758. "license": [
  2759. "GPL-2.0-or-later"
  2760. ],
  2761. "authors": [
  2762. {
  2763. "name": "theamoeba",
  2764. "homepage": "https://www.drupal.org/user/251700"
  2765. },
  2766. {
  2767. "name": "yogeshmpawar",
  2768. "homepage": "https://www.drupal.org/user/2922907"
  2769. }
  2770. ],
  2771. "description": "Make the login screens better :)",
  2772. "homepage": "https://www.drupal.org/project/betterlogin",
  2773. "support": {
  2774. "source": "https://git.drupalcode.org/project/betterlogin"
  2775. }
  2776. },
  2777. {
  2778. "name": "drupal/block_class",
  2779. "version": "1.3.0",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://git.drupalcode.org/project/block_class.git",
  2783. "reference": "8.x-1.3"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2788. "reference": "8.x-1.3",
  2789. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2790. },
  2791. "require": {
  2792. "drupal/core": "^8 || ^9"
  2793. },
  2794. "type": "drupal-module",
  2795. "extra": {
  2796. "drupal": {
  2797. "version": "8.x-1.3",
  2798. "datestamp": "1615217722",
  2799. "security-coverage": {
  2800. "status": "covered",
  2801. "message": "Covered by Drupal's security advisory policy"
  2802. }
  2803. }
  2804. },
  2805. "notification-url": "https://packages.drupal.org/8/downloads",
  2806. "license": [
  2807. "GPL-2.0-or-later"
  2808. ],
  2809. "authors": [
  2810. {
  2811. "name": "Todd Nienkerk",
  2812. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2813. "role": "Maintainer"
  2814. },
  2815. {
  2816. "name": "Renato Gonçalves (RenatoG)",
  2817. "homepage": "https://www.drupal.org/u/RenatoG",
  2818. "email": "renatog@ciandt.com",
  2819. "role": "Maintainer"
  2820. },
  2821. {
  2822. "name": "Neslee Canil Pinto",
  2823. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2824. "role": "Maintainer"
  2825. },
  2826. {
  2827. "name": "Aaron Stanush",
  2828. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2829. "role": "Maintainer"
  2830. },
  2831. {
  2832. "name": "David Suissa (DYdave)",
  2833. "homepage": "https://www.drupal.org/u/DYdave",
  2834. "role": "Maintainer"
  2835. },
  2836. {
  2837. "name": "Four Kitchens",
  2838. "homepage": "https://www.drupal.org/user/358502",
  2839. "role": "Maintainer"
  2840. },
  2841. {
  2842. "name": "berenddeboer",
  2843. "homepage": "https://www.drupal.org/u/berenddeboer",
  2844. "role": "Maintainer"
  2845. },
  2846. {
  2847. "name": "elliotttf",
  2848. "homepage": "https://www.drupal.org/u/elliotttf",
  2849. "role": "Maintainer"
  2850. },
  2851. {
  2852. "name": "Michal Minecki (mirzu)",
  2853. "homepage": "https://www.drupal.org/u/mirzu",
  2854. "role": "Maintainer"
  2855. },
  2856. {
  2857. "name": "Patrick Coffey (pcoffey)",
  2858. "homepage": "https://www.drupal.org/u/pcoffey",
  2859. "role": "Maintainer"
  2860. },
  2861. {
  2862. "name": "Taylor Smith (tsmith512)",
  2863. "homepage": "https://www.drupal.org/u/tsmith512",
  2864. "role": "Maintainer"
  2865. }
  2866. ],
  2867. "description": "Allows assigning classes to Blocks.",
  2868. "homepage": "https://www.drupal.org/project/block_class",
  2869. "keywords": [
  2870. "Drupal"
  2871. ],
  2872. "support": {
  2873. "source": "https://git.drupalcode.org/project/block_class",
  2874. "issues": "https://www.drupal.org/project/issues/block_class",
  2875. "irc": "irc://irc.freenode.org/drupal-contribute"
  2876. }
  2877. },
  2878. {
  2879. "name": "drupal/bulkdelete",
  2880. "version": "dev-1.x",
  2881. "source": {
  2882. "type": "git",
  2883. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2884. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2885. },
  2886. "require": {
  2887. "drupal/core": "^8.7.7 || ^9"
  2888. },
  2889. "type": "drupal-module",
  2890. "extra": {
  2891. "branch-alias": {
  2892. "dev-1.x": "1.x-dev"
  2893. },
  2894. "drupal": {
  2895. "version": "8.x-1.x-dev",
  2896. "datestamp": "1590300128",
  2897. "security-coverage": {
  2898. "status": "not-covered",
  2899. "message": "Dev releases are not covered by Drupal security advisories."
  2900. }
  2901. }
  2902. },
  2903. "notification-url": "https://packages.drupal.org/8/downloads",
  2904. "license": [
  2905. "GPL-2.0-or-later"
  2906. ],
  2907. "authors": [
  2908. {
  2909. "name": "Kars-T",
  2910. "homepage": "https://www.drupal.org/user/224499"
  2911. },
  2912. {
  2913. "name": "Rahul Seth",
  2914. "homepage": "https://www.drupal.org/user/2694359"
  2915. },
  2916. {
  2917. "name": "adriancid",
  2918. "homepage": "https://www.drupal.org/user/1962106"
  2919. },
  2920. {
  2921. "name": "robertDouglass",
  2922. "homepage": "https://www.drupal.org/user/5449"
  2923. }
  2924. ],
  2925. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2926. "homepage": "https://www.drupal.org/project/bulkdelete",
  2927. "support": {
  2928. "source": "https://git.drupalcode.org/project/bulkdelete"
  2929. }
  2930. },
  2931. {
  2932. "name": "drupal/config_devel",
  2933. "version": "dev-1.x",
  2934. "source": {
  2935. "type": "git",
  2936. "url": "https://git.drupalcode.org/project/config_devel.git",
  2937. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  2938. },
  2939. "require": {
  2940. "drupal/core": "^8 || ^9"
  2941. },
  2942. "type": "drupal-module",
  2943. "extra": {
  2944. "branch-alias": {
  2945. "dev-1.x": "1.x-dev"
  2946. },
  2947. "drupal": {
  2948. "version": "8.x-1.7+4-dev",
  2949. "datestamp": "1607768995",
  2950. "security-coverage": {
  2951. "status": "not-covered",
  2952. "message": "Dev releases are not covered by Drupal security advisories."
  2953. }
  2954. }
  2955. },
  2956. "notification-url": "https://packages.drupal.org/8/downloads",
  2957. "license": [
  2958. "GPL-2.0+"
  2959. ],
  2960. "authors": [
  2961. {
  2962. "name": "alexpott",
  2963. "homepage": "https://www.drupal.org/user/157725"
  2964. },
  2965. {
  2966. "name": "benjy",
  2967. "homepage": "https://www.drupal.org/user/1852732"
  2968. },
  2969. {
  2970. "name": "chx",
  2971. "homepage": "https://www.drupal.org/user/9446"
  2972. },
  2973. {
  2974. "name": "joachim",
  2975. "homepage": "https://www.drupal.org/user/107701"
  2976. },
  2977. {
  2978. "name": "nedjo",
  2979. "homepage": "https://www.drupal.org/user/4481"
  2980. },
  2981. {
  2982. "name": "tim.plunkett",
  2983. "homepage": "https://www.drupal.org/user/241634"
  2984. },
  2985. {
  2986. "name": "vijaycs85",
  2987. "homepage": "https://www.drupal.org/user/93488"
  2988. }
  2989. ],
  2990. "description": "Helps developers work with configuration.",
  2991. "homepage": "https://www.drupal.org/project/config_devel",
  2992. "support": {
  2993. "source": "https://git.drupalcode.org/project/config_devel"
  2994. }
  2995. },
  2996. {
  2997. "name": "drupal/config_filter",
  2998. "version": "1.8.0",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://git.drupalcode.org/project/config_filter.git",
  3002. "reference": "8.x-1.8"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  3007. "reference": "8.x-1.8",
  3008. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  3009. },
  3010. "require": {
  3011. "drupal/core": "^8 || ^9"
  3012. },
  3013. "suggest": {
  3014. "drupal/config_split": "Split site configuration for different environments."
  3015. },
  3016. "type": "drupal-module",
  3017. "extra": {
  3018. "drupal": {
  3019. "version": "8.x-1.8",
  3020. "datestamp": "1603870062",
  3021. "security-coverage": {
  3022. "status": "covered",
  3023. "message": "Covered by Drupal's security advisory policy"
  3024. }
  3025. }
  3026. },
  3027. "notification-url": "https://packages.drupal.org/8/downloads",
  3028. "license": [
  3029. "GPL-2.0-or-later"
  3030. ],
  3031. "authors": [
  3032. {
  3033. "name": "Fabian Bircher",
  3034. "homepage": "https://www.drupal.org/u/bircher",
  3035. "email": "opensource@fabianbircher.com",
  3036. "role": "Maintainer"
  3037. },
  3038. {
  3039. "name": "Nuvole Web",
  3040. "homepage": "http://nuvole.org",
  3041. "email": "info@nuvole.org",
  3042. "role": "Maintainer"
  3043. },
  3044. {
  3045. "name": "pescetti",
  3046. "homepage": "https://www.drupal.org/user/436244"
  3047. }
  3048. ],
  3049. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3050. "homepage": "https://www.drupal.org/project/config_filter",
  3051. "keywords": [
  3052. "Drupal",
  3053. "configuration",
  3054. "configuration management"
  3055. ],
  3056. "support": {
  3057. "source": "https://git.drupalcode.org/project/config_filter",
  3058. "issues": "https://www.drupal.org/project/issues/config_filter",
  3059. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3060. }
  3061. },
  3062. {
  3063. "name": "drupal/config_ignore",
  3064. "version": "2.3.0",
  3065. "source": {
  3066. "type": "git",
  3067. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3068. "reference": "8.x-2.3"
  3069. },
  3070. "dist": {
  3071. "type": "zip",
  3072. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  3073. "reference": "8.x-2.3",
  3074. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  3075. },
  3076. "require": {
  3077. "drupal/config_filter": "^1 || ^2",
  3078. "drupal/core": "^8 || ^9"
  3079. },
  3080. "type": "drupal-module",
  3081. "extra": {
  3082. "drupal": {
  3083. "version": "8.x-2.3",
  3084. "datestamp": "1608306489",
  3085. "security-coverage": {
  3086. "status": "covered",
  3087. "message": "Covered by Drupal's security advisory policy"
  3088. }
  3089. }
  3090. },
  3091. "notification-url": "https://packages.drupal.org/8/downloads",
  3092. "license": [
  3093. "GPL-2.0-or-later"
  3094. ],
  3095. "authors": [
  3096. {
  3097. "name": "Tommy Lynge Jørgensen",
  3098. "homepage": "https://www.drupal.org/u/tlyngej",
  3099. "email": "tlyngej@gmail.com",
  3100. "role": "Maintainer"
  3101. },
  3102. {
  3103. "name": "Fabian Bircher",
  3104. "homepage": "https://www.drupal.org/u/bircher",
  3105. "role": "Maintainer"
  3106. },
  3107. {
  3108. "name": "tlyngej",
  3109. "homepage": "https://www.drupal.org/user/413139"
  3110. }
  3111. ],
  3112. "description": "Ignore certain configuration during import.",
  3113. "homepage": "http://drupal.org/project/config_ignore",
  3114. "support": {
  3115. "source": "https://git.drupalcode.org/project/config_ignore",
  3116. "issues": "http://drupal.org/project/config_ignore",
  3117. "irc": "irc://irc.freenode.org/drupal-contribute"
  3118. }
  3119. },
  3120. {
  3121. "name": "drupal/config_update",
  3122. "version": "1.7.0",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://git.drupalcode.org/project/config_update.git",
  3126. "reference": "8.x-1.7"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3131. "reference": "8.x-1.7",
  3132. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3133. },
  3134. "require": {
  3135. "drupal/core": "^8 || ^9"
  3136. },
  3137. "type": "drupal-module",
  3138. "extra": {
  3139. "drupal": {
  3140. "version": "8.x-1.7",
  3141. "datestamp": "1586355587",
  3142. "security-coverage": {
  3143. "status": "covered",
  3144. "message": "Covered by Drupal's security advisory policy"
  3145. }
  3146. }
  3147. },
  3148. "notification-url": "https://packages.drupal.org/8/downloads",
  3149. "license": [
  3150. "GPL-2.0-or-later"
  3151. ],
  3152. "authors": [
  3153. {
  3154. "name": "jhodgdon",
  3155. "homepage": "https://www.drupal.org/user/155601"
  3156. },
  3157. {
  3158. "name": "nedjo",
  3159. "homepage": "https://www.drupal.org/user/4481"
  3160. }
  3161. ],
  3162. "description": "Provides basic revert and update functionality for other modules",
  3163. "homepage": "https://www.drupal.org/project/config_update",
  3164. "support": {
  3165. "source": "https://git.drupalcode.org/project/config_update"
  3166. }
  3167. },
  3168. {
  3169. "name": "drupal/console",
  3170. "version": "1.9.7",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3174. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3179. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "alchemy/zippy": "~0.4",
  3184. "composer/installers": "~1.0",
  3185. "doctrine/annotations": "^1.2",
  3186. "doctrine/collections": "^1.3",
  3187. "drupal/console-core": "1.9.7",
  3188. "drupal/console-extend-plugin": "~0.9.5",
  3189. "php": ">=7.0.8",
  3190. "psy/psysh": "0.6.* || ~0.8",
  3191. "symfony/css-selector": "~3.0|~4.0",
  3192. "symfony/dom-crawler": "~3.0|~4.0",
  3193. "symfony/http-foundation": "~3.0|~4.0"
  3194. },
  3195. "suggest": {
  3196. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3197. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3198. },
  3199. "bin": [
  3200. "bin/drupal"
  3201. ],
  3202. "type": "library",
  3203. "autoload": {
  3204. "psr-4": {
  3205. "Drupal\\Console\\": "src"
  3206. }
  3207. },
  3208. "notification-url": "https://packagist.org/downloads/",
  3209. "license": [
  3210. "GPL-2.0-or-later"
  3211. ],
  3212. "authors": [
  3213. {
  3214. "name": "David Flores",
  3215. "email": "dmousex@gmail.com",
  3216. "homepage": "http://dmouse.net"
  3217. },
  3218. {
  3219. "name": "Jesus Manuel Olivas",
  3220. "email": "jesus.olivas@gmail.com",
  3221. "homepage": "http://jmolivas.com"
  3222. },
  3223. {
  3224. "name": "Eduardo Garcia",
  3225. "email": "enzo@enzolutions.com",
  3226. "homepage": "http://enzolutions.com/"
  3227. },
  3228. {
  3229. "name": "Omar Aguirre",
  3230. "email": "omersguchigu@gmail.com"
  3231. },
  3232. {
  3233. "name": "Drupal Console Contributors",
  3234. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3235. }
  3236. ],
  3237. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3238. "homepage": "http://drupalconsole.com/",
  3239. "keywords": [
  3240. "console",
  3241. "development",
  3242. "drupal",
  3243. "symfony"
  3244. ],
  3245. "support": {
  3246. "docs": "https://docs.drupalconsole.com/",
  3247. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3248. "issues": "https://github.com/hechoendrupal/drupal-console/issues",
  3249. "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.7"
  3250. },
  3251. "funding": [
  3252. {
  3253. "url": "https://opencollective.com/drupalconsole",
  3254. "type": "open_collective"
  3255. }
  3256. ],
  3257. "time": "2020-11-30T02:09:53+00:00"
  3258. },
  3259. {
  3260. "name": "drupal/console-core",
  3261. "version": "1.9.7",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3265. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3270. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3271. "shasum": ""
  3272. },
  3273. "require": {
  3274. "dflydev/dot-access-configuration": "^1.0",
  3275. "drupal/console-en": "1.9.7",
  3276. "guzzlehttp/guzzle": "~6.1",
  3277. "php": ">=7.0.8",
  3278. "stecman/symfony-console-completion": "~0.7",
  3279. "symfony/config": "~3.0|^4.4",
  3280. "symfony/console": "~3.0|^4.4",
  3281. "symfony/debug": "~3.0|^4.4",
  3282. "symfony/dependency-injection": "~3.0|^4.4",
  3283. "symfony/event-dispatcher": "~3.0|^4.4",
  3284. "symfony/filesystem": "~3.0|^4.4",
  3285. "symfony/finder": "~3.0|^4.4",
  3286. "symfony/process": "~3.0|^4.4",
  3287. "symfony/translation": "~3.0|^4.4",
  3288. "symfony/yaml": "~3.0|^4.4",
  3289. "twig/twig": "^1.38.2|^2.12.0",
  3290. "webflo/drupal-finder": "^1.0",
  3291. "webmozart/path-util": "^2.3"
  3292. },
  3293. "type": "library",
  3294. "autoload": {
  3295. "files": [
  3296. "src/functions.php"
  3297. ],
  3298. "psr-4": {
  3299. "Drupal\\Console\\Core\\": "src"
  3300. }
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "GPL-2.0-or-later"
  3305. ],
  3306. "authors": [
  3307. {
  3308. "name": "David Flores",
  3309. "email": "dmousex@gmail.com",
  3310. "homepage": "http://dmouse.net"
  3311. },
  3312. {
  3313. "name": "Jesus Manuel Olivas",
  3314. "email": "jesus.olivas@gmail.com",
  3315. "homepage": "http://jmolivas.com"
  3316. },
  3317. {
  3318. "name": "Eduardo Garcia",
  3319. "email": "enzo@enzolutions.com",
  3320. "homepage": "http://enzolutions.com/"
  3321. },
  3322. {
  3323. "name": "Omar Aguirre",
  3324. "email": "omersguchigu@gmail.com"
  3325. },
  3326. {
  3327. "name": "Drupal Console Contributors",
  3328. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3329. }
  3330. ],
  3331. "description": "Drupal Console Core",
  3332. "homepage": "http://drupalconsole.com/",
  3333. "keywords": [
  3334. "console",
  3335. "development",
  3336. "drupal",
  3337. "symfony"
  3338. ],
  3339. "support": {
  3340. "docs": "http://docs.drupalconsole.com/",
  3341. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3342. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3343. "source": "https://github.com/hechoendrupal/drupal-console-core/tree/1.9.7"
  3344. },
  3345. "time": "2020-11-30T01:45:57+00:00"
  3346. },
  3347. {
  3348. "name": "drupal/console-en",
  3349. "version": "v1.9.7",
  3350. "source": {
  3351. "type": "git",
  3352. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3353. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3354. },
  3355. "dist": {
  3356. "type": "zip",
  3357. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3358. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3359. "shasum": ""
  3360. },
  3361. "type": "library",
  3362. "notification-url": "https://packagist.org/downloads/",
  3363. "license": [
  3364. "GPL-2.0-or-later"
  3365. ],
  3366. "authors": [
  3367. {
  3368. "name": "David Flores",
  3369. "email": "dmousex@gmail.com",
  3370. "homepage": "http://dmouse.net"
  3371. },
  3372. {
  3373. "name": "Jesus Manuel Olivas",
  3374. "email": "jesus.olivas@gmail.com",
  3375. "homepage": "http://jmolivas.com"
  3376. },
  3377. {
  3378. "name": "Eduardo Garcia",
  3379. "email": "enzo@enzolutions.com",
  3380. "homepage": "http://enzolutions.com/"
  3381. },
  3382. {
  3383. "name": "Omar Aguirre",
  3384. "email": "omersguchigu@gmail.com"
  3385. },
  3386. {
  3387. "name": "Drupal Console Contributors",
  3388. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3389. }
  3390. ],
  3391. "description": "Drupal Console English Language",
  3392. "homepage": "http://drupalconsole.com/",
  3393. "keywords": [
  3394. "console",
  3395. "development",
  3396. "drupal",
  3397. "symfony"
  3398. ],
  3399. "support": {
  3400. "docs": "https://docs.drupalconsole.com",
  3401. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3402. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3403. "source": "https://github.com/hechoendrupal/drupal-console-en/tree/master"
  3404. },
  3405. "time": "2020-08-15T03:34:54+00:00"
  3406. },
  3407. {
  3408. "name": "drupal/console-extend-plugin",
  3409. "version": "0.9.5",
  3410. "source": {
  3411. "type": "git",
  3412. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3413. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3414. },
  3415. "dist": {
  3416. "type": "zip",
  3417. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3418. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3419. "shasum": ""
  3420. },
  3421. "require": {
  3422. "composer-plugin-api": "^1.0 || ^2.0",
  3423. "composer/installers": "^1.2",
  3424. "symfony/finder": "~3.0|^4.4",
  3425. "symfony/yaml": "~3.0|^4.4"
  3426. },
  3427. "type": "composer-plugin",
  3428. "extra": {
  3429. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3430. },
  3431. "autoload": {
  3432. "psr-4": {
  3433. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3434. }
  3435. },
  3436. "notification-url": "https://packagist.org/downloads/",
  3437. "license": [
  3438. "GPL-2.0+"
  3439. ],
  3440. "authors": [
  3441. {
  3442. "name": "Jesus Manuel Olivas",
  3443. "email": "jesus.olivas@gmail.com"
  3444. }
  3445. ],
  3446. "description": "Drupal Console Extend Plugin",
  3447. "support": {
  3448. "issues": "https://github.com/hechoendrupal/drupal-console-extend-plugin/issues",
  3449. "source": "https://github.com/hechoendrupal/drupal-console-extend-plugin/tree/0.9.5"
  3450. },
  3451. "time": "2020-11-18T00:15:28+00:00"
  3452. },
  3453. {
  3454. "name": "drupal/content_lock",
  3455. "version": "2.2.0",
  3456. "source": {
  3457. "type": "git",
  3458. "url": "https://git.drupalcode.org/project/content_lock.git",
  3459. "reference": "8.x-2.2"
  3460. },
  3461. "dist": {
  3462. "type": "zip",
  3463. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3464. "reference": "8.x-2.2",
  3465. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3466. },
  3467. "require": {
  3468. "drupal/core": "^8.8|^9.0"
  3469. },
  3470. "require-dev": {
  3471. "drupal/conflict": "^2.0@ALPHA",
  3472. "drupal/prefetch_cache": "dev-1.x"
  3473. },
  3474. "type": "drupal-module",
  3475. "extra": {
  3476. "drupal": {
  3477. "version": "8.x-2.2",
  3478. "datestamp": "1607936866",
  3479. "security-coverage": {
  3480. "status": "covered",
  3481. "message": "Covered by Drupal's security advisory policy"
  3482. }
  3483. }
  3484. },
  3485. "notification-url": "https://packages.drupal.org/8/downloads",
  3486. "license": [
  3487. "GPL-2.0-or-later"
  3488. ],
  3489. "authors": [
  3490. {
  3491. "name": "chr.fritsch",
  3492. "homepage": "https://www.drupal.org/user/2103716"
  3493. },
  3494. {
  3495. "name": "ergonlogic",
  3496. "homepage": "https://www.drupal.org/user/368613"
  3497. },
  3498. {
  3499. "name": "mfb",
  3500. "homepage": "https://www.drupal.org/user/12302"
  3501. },
  3502. {
  3503. "name": "pandaski",
  3504. "homepage": "https://www.drupal.org/user/1987218"
  3505. }
  3506. ],
  3507. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3508. "homepage": "https://www.drupal.org/project/content_lock",
  3509. "support": {
  3510. "source": "https://git.drupalcode.org/project/content_lock"
  3511. }
  3512. },
  3513. {
  3514. "name": "drupal/context",
  3515. "version": "4.0.0-beta5",
  3516. "source": {
  3517. "type": "git",
  3518. "url": "https://git.drupalcode.org/project/context.git",
  3519. "reference": "8.x-4.0-beta5"
  3520. },
  3521. "dist": {
  3522. "type": "zip",
  3523. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta5.zip",
  3524. "reference": "8.x-4.0-beta5",
  3525. "shasum": "893d7e6ce07b23764baa6fd609da811ec80c5a04"
  3526. },
  3527. "require": {
  3528. "drupal/core": "^8.8 || ^9"
  3529. },
  3530. "type": "drupal-module",
  3531. "extra": {
  3532. "drupal": {
  3533. "version": "8.x-4.0-beta5",
  3534. "datestamp": "1600783508",
  3535. "security-coverage": {
  3536. "status": "not-covered",
  3537. "message": "Beta releases are not covered by Drupal security advisories."
  3538. }
  3539. }
  3540. },
  3541. "notification-url": "https://packages.drupal.org/8/downloads",
  3542. "license": [
  3543. "MIT"
  3544. ],
  3545. "authors": [
  3546. {
  3547. "name": "Christoffer Palm",
  3548. "homepage": "http://www.oddhill.se/",
  3549. "email": "christoffer.palm@oddhill.se",
  3550. "role": "Developer"
  3551. },
  3552. {
  3553. "name": "Steven Jones",
  3554. "homepage": "https://www.drupal.org/user/99644"
  3555. },
  3556. {
  3557. "name": "alex_b",
  3558. "homepage": "https://www.drupal.org/user/53995"
  3559. },
  3560. {
  3561. "name": "boshtian",
  3562. "homepage": "https://www.drupal.org/user/1773456"
  3563. },
  3564. {
  3565. "name": "colan",
  3566. "homepage": "https://www.drupal.org/user/58704"
  3567. },
  3568. {
  3569. "name": "emanaton",
  3570. "homepage": "https://www.drupal.org/user/120853"
  3571. },
  3572. {
  3573. "name": "febbraro",
  3574. "homepage": "https://www.drupal.org/user/43670"
  3575. },
  3576. {
  3577. "name": "fizk",
  3578. "homepage": "https://www.drupal.org/user/473174"
  3579. },
  3580. {
  3581. "name": "hass",
  3582. "homepage": "https://www.drupal.org/user/85918"
  3583. },
  3584. {
  3585. "name": "hefox",
  3586. "homepage": "https://www.drupal.org/user/426416"
  3587. },
  3588. {
  3589. "name": "jmiccolis",
  3590. "homepage": "https://www.drupal.org/user/31731"
  3591. },
  3592. {
  3593. "name": "nedjo",
  3594. "homepage": "https://www.drupal.org/user/4481"
  3595. },
  3596. {
  3597. "name": "patricksettle",
  3598. "homepage": "https://www.drupal.org/user/26618"
  3599. },
  3600. {
  3601. "name": "paulocs",
  3602. "homepage": "https://www.drupal.org/user/3640109"
  3603. },
  3604. {
  3605. "name": "tekante",
  3606. "homepage": "https://www.drupal.org/user/640024"
  3607. },
  3608. {
  3609. "name": "yhahn",
  3610. "homepage": "https://www.drupal.org/user/264833"
  3611. }
  3612. ],
  3613. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3614. "homepage": "https://github.com/oddhill/context",
  3615. "keywords": [
  3616. "Drupal",
  3617. "block",
  3618. "conditions",
  3619. "context",
  3620. "visibility"
  3621. ],
  3622. "support": {
  3623. "source": "https://github.com/oddhill/context",
  3624. "issues": "https://github.com/oddhill/context/issues",
  3625. "docs": "https://github.com/oddhill/context"
  3626. }
  3627. },
  3628. {
  3629. "name": "drupal/core",
  3630. "version": "9.1.6",
  3631. "source": {
  3632. "type": "git",
  3633. "url": "https://github.com/drupal/core.git",
  3634. "reference": "775b801f12bbcfb0634b2ae442c5ed4529b3150d"
  3635. },
  3636. "dist": {
  3637. "type": "zip",
  3638. "url": "https://api.github.com/repos/drupal/core/zipball/775b801f12bbcfb0634b2ae442c5ed4529b3150d",
  3639. "reference": "775b801f12bbcfb0634b2ae442c5ed4529b3150d",
  3640. "shasum": ""
  3641. },
  3642. "require": {
  3643. "asm89/stack-cors": "^1.1",
  3644. "composer/semver": "^3.0",
  3645. "doctrine/annotations": "^1.4",
  3646. "doctrine/reflection": "^1.1",
  3647. "egulias/email-validator": "^2.0",
  3648. "ext-date": "*",
  3649. "ext-dom": "*",
  3650. "ext-filter": "*",
  3651. "ext-gd": "*",
  3652. "ext-hash": "*",
  3653. "ext-json": "*",
  3654. "ext-pcre": "*",
  3655. "ext-pdo": "*",
  3656. "ext-session": "*",
  3657. "ext-simplexml": "*",
  3658. "ext-spl": "*",
  3659. "ext-tokenizer": "*",
  3660. "ext-xml": "*",
  3661. "guzzlehttp/guzzle": "^6.5.2",
  3662. "laminas/laminas-diactoros": "^2.1",
  3663. "laminas/laminas-feed": "^2.12",
  3664. "masterminds/html5": "^2.1",
  3665. "pear/archive_tar": "^1.4.12",
  3666. "php": ">=7.3.0",
  3667. "psr/log": "^1.0",
  3668. "stack/builder": "^1.0",
  3669. "symfony-cmf/routing": "^2.1",
  3670. "symfony/console": "^4.4",
  3671. "symfony/dependency-injection": "^4.4",
  3672. "symfony/event-dispatcher": "^4.4",
  3673. "symfony/http-foundation": "^4.4.7",
  3674. "symfony/http-kernel": "^4.4",
  3675. "symfony/polyfill-iconv": "^1.0",
  3676. "symfony/process": "^4.4",
  3677. "symfony/psr-http-message-bridge": "^2.0",
  3678. "symfony/routing": "^4.4",
  3679. "symfony/serializer": "^4.4",
  3680. "symfony/translation": "^4.4",
  3681. "symfony/validator": "^4.4",
  3682. "symfony/yaml": "^4.4",
  3683. "twig/twig": "^2.12.0",
  3684. "typo3/phar-stream-wrapper": "^3.1.3"
  3685. },
  3686. "conflict": {
  3687. "drush/drush": "<8.1.10"
  3688. },
  3689. "replace": {
  3690. "drupal/action": "self.version",
  3691. "drupal/aggregator": "self.version",
  3692. "drupal/automated_cron": "self.version",
  3693. "drupal/ban": "self.version",
  3694. "drupal/bartik": "self.version",
  3695. "drupal/basic_auth": "self.version",
  3696. "drupal/big_pipe": "self.version",
  3697. "drupal/block": "self.version",
  3698. "drupal/block_content": "self.version",
  3699. "drupal/book": "self.version",
  3700. "drupal/breakpoint": "self.version",
  3701. "drupal/ckeditor": "self.version",
  3702. "drupal/claro": "self.version",
  3703. "drupal/classy": "self.version",
  3704. "drupal/color": "self.version",
  3705. "drupal/comment": "self.version",
  3706. "drupal/config": "self.version",
  3707. "drupal/config_translation": "self.version",
  3708. "drupal/contact": "self.version",
  3709. "drupal/content_moderation": "self.version",
  3710. "drupal/content_translation": "self.version",
  3711. "drupal/contextual": "self.version",
  3712. "drupal/core-annotation": "self.version",
  3713. "drupal/core-assertion": "self.version",
  3714. "drupal/core-bridge": "self.version",
  3715. "drupal/core-class-finder": "self.version",
  3716. "drupal/core-datetime": "self.version",
  3717. "drupal/core-dependency-injection": "self.version",
  3718. "drupal/core-diff": "self.version",
  3719. "drupal/core-discovery": "self.version",
  3720. "drupal/core-event-dispatcher": "self.version",
  3721. "drupal/core-file-cache": "self.version",
  3722. "drupal/core-file-security": "self.version",
  3723. "drupal/core-filesystem": "self.version",
  3724. "drupal/core-front-matter": "self.version",
  3725. "drupal/core-gettext": "self.version",
  3726. "drupal/core-graph": "self.version",
  3727. "drupal/core-http-foundation": "self.version",
  3728. "drupal/core-php-storage": "self.version",
  3729. "drupal/core-plugin": "self.version",
  3730. "drupal/core-proxy-builder": "self.version",
  3731. "drupal/core-render": "self.version",
  3732. "drupal/core-serialization": "self.version",
  3733. "drupal/core-transliteration": "self.version",
  3734. "drupal/core-utility": "self.version",
  3735. "drupal/core-uuid": "self.version",
  3736. "drupal/core-version": "self.version",
  3737. "drupal/datetime": "self.version",
  3738. "drupal/datetime_range": "self.version",
  3739. "drupal/dblog": "self.version",
  3740. "drupal/dynamic_page_cache": "self.version",
  3741. "drupal/editor": "self.version",
  3742. "drupal/entity_reference": "self.version",
  3743. "drupal/field": "self.version",
  3744. "drupal/field_layout": "self.version",
  3745. "drupal/field_ui": "self.version",
  3746. "drupal/file": "self.version",
  3747. "drupal/filter": "self.version",
  3748. "drupal/forum": "self.version",
  3749. "drupal/hal": "self.version",
  3750. "drupal/help": "self.version",
  3751. "drupal/help_topics": "self.version",
  3752. "drupal/history": "self.version",
  3753. "drupal/image": "self.version",
  3754. "drupal/inline_form_errors": "self.version",
  3755. "drupal/jsonapi": "self.version",
  3756. "drupal/language": "self.version",
  3757. "drupal/layout_builder": "self.version",
  3758. "drupal/layout_discovery": "self.version",
  3759. "drupal/link": "self.version",
  3760. "drupal/locale": "self.version",
  3761. "drupal/media": "self.version",
  3762. "drupal/media_library": "self.version",
  3763. "drupal/menu_link_content": "self.version",
  3764. "drupal/menu_ui": "self.version",
  3765. "drupal/migrate": "self.version",
  3766. "drupal/migrate_drupal": "self.version",
  3767. "drupal/migrate_drupal_multilingual": "self.version",
  3768. "drupal/migrate_drupal_ui": "self.version",
  3769. "drupal/minimal": "self.version",
  3770. "drupal/node": "self.version",
  3771. "drupal/olivero": "self.version",
  3772. "drupal/options": "self.version",
  3773. "drupal/page_cache": "self.version",
  3774. "drupal/path": "self.version",
  3775. "drupal/path_alias": "self.version",
  3776. "drupal/quickedit": "self.version",
  3777. "drupal/rdf": "self.version",
  3778. "drupal/responsive_image": "self.version",
  3779. "drupal/rest": "self.version",
  3780. "drupal/search": "self.version",
  3781. "drupal/serialization": "self.version",
  3782. "drupal/settings_tray": "self.version",
  3783. "drupal/seven": "self.version",
  3784. "drupal/shortcut": "self.version",
  3785. "drupal/standard": "self.version",
  3786. "drupal/stark": "self.version",
  3787. "drupal/statistics": "self.version",
  3788. "drupal/syslog": "self.version",
  3789. "drupal/system": "self.version",
  3790. "drupal/taxonomy": "self.version",
  3791. "drupal/telephone": "self.version",
  3792. "drupal/text": "self.version",
  3793. "drupal/toolbar": "self.version",
  3794. "drupal/tour": "self.version",
  3795. "drupal/tracker": "self.version",
  3796. "drupal/update": "self.version",
  3797. "drupal/user": "self.version",
  3798. "drupal/views": "self.version",
  3799. "drupal/views_ui": "self.version",
  3800. "drupal/workflows": "self.version",
  3801. "drupal/workspaces": "self.version"
  3802. },
  3803. "type": "drupal-core",
  3804. "extra": {
  3805. "drupal-scaffold": {
  3806. "file-mapping": {
  3807. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3808. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3809. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3810. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3811. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3812. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3813. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3814. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3815. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3816. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3817. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3818. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3819. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3820. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3821. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3822. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3823. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3824. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3825. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3826. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3827. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3828. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3829. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3830. }
  3831. }
  3832. },
  3833. "autoload": {
  3834. "psr-4": {
  3835. "Drupal\\Core\\": "lib/Drupal/Core",
  3836. "Drupal\\Component\\": "lib/Drupal/Component",
  3837. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3838. },
  3839. "classmap": [
  3840. "lib/Drupal.php",
  3841. "lib/Drupal/Component/DependencyInjection/Container.php",
  3842. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3843. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3844. "lib/Drupal/Component/Utility/Timer.php",
  3845. "lib/Drupal/Component/Utility/Unicode.php",
  3846. "lib/Drupal/Core/Cache/Cache.php",
  3847. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3848. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3849. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3850. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3851. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3852. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3853. "lib/Drupal/Core/Database/Connection.php",
  3854. "lib/Drupal/Core/Database/Database.php",
  3855. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3856. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3857. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3858. "lib/Drupal/Core/Database/Statement.php",
  3859. "lib/Drupal/Core/Database/StatementInterface.php",
  3860. "lib/Drupal/Core/DependencyInjection/Container.php",
  3861. "lib/Drupal/Core/DrupalKernel.php",
  3862. "lib/Drupal/Core/DrupalKernelInterface.php",
  3863. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3864. "lib/Drupal/Core/Site/Settings.php"
  3865. ],
  3866. "files": [
  3867. "includes/bootstrap.inc"
  3868. ]
  3869. },
  3870. "notification-url": "https://packagist.org/downloads/",
  3871. "license": [
  3872. "GPL-2.0-or-later"
  3873. ],
  3874. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3875. "support": {
  3876. "source": "https://github.com/drupal/core/tree/9.1.6"
  3877. },
  3878. "time": "2021-04-07T11:18:45+00:00"
  3879. },
  3880. {
  3881. "name": "drupal/core-composer-scaffold",
  3882. "version": "9.1.6",
  3883. "source": {
  3884. "type": "git",
  3885. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3886. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3887. },
  3888. "dist": {
  3889. "type": "zip",
  3890. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3891. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3892. "shasum": ""
  3893. },
  3894. "require": {
  3895. "composer-plugin-api": "^1 || ^2",
  3896. "php": ">=7.3.0"
  3897. },
  3898. "conflict": {
  3899. "drupal-composer/drupal-scaffold": "*"
  3900. },
  3901. "require-dev": {
  3902. "composer/composer": "^1.8@stable"
  3903. },
  3904. "type": "composer-plugin",
  3905. "extra": {
  3906. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3907. "branch-alias": {
  3908. "dev-master": "1.0.x-dev"
  3909. }
  3910. },
  3911. "autoload": {
  3912. "psr-4": {
  3913. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3914. }
  3915. },
  3916. "notification-url": "https://packagist.org/downloads/",
  3917. "license": [
  3918. "GPL-2.0-or-later"
  3919. ],
  3920. "description": "A flexible Composer project scaffold builder.",
  3921. "homepage": "https://www.drupal.org/project/drupal",
  3922. "keywords": [
  3923. "drupal"
  3924. ],
  3925. "support": {
  3926. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.1.6"
  3927. },
  3928. "time": "2020-08-07T22:30:13+00:00"
  3929. },
  3930. {
  3931. "name": "drupal/core-project-message",
  3932. "version": "9.1.6",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://github.com/drupal/core-project-message.git",
  3936. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3941. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3942. "shasum": ""
  3943. },
  3944. "require": {
  3945. "composer-plugin-api": "^1.1 || ^2",
  3946. "php": ">=7.3.0"
  3947. },
  3948. "type": "composer-plugin",
  3949. "extra": {
  3950. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3951. },
  3952. "autoload": {
  3953. "psr-4": {
  3954. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3955. }
  3956. },
  3957. "notification-url": "https://packagist.org/downloads/",
  3958. "license": [
  3959. "GPL-2.0-or-later"
  3960. ],
  3961. "description": "Adds a message after Composer installation.",
  3962. "homepage": "https://www.drupal.org/project/drupal",
  3963. "keywords": [
  3964. "drupal"
  3965. ],
  3966. "support": {
  3967. "source": "https://github.com/drupal/core-project-message/tree/9.1.6"
  3968. },
  3969. "time": "2020-09-14T13:40:36+00:00"
  3970. },
  3971. {
  3972. "name": "drupal/core-recommended",
  3973. "version": "9.1.6",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/drupal/core-recommended.git",
  3977. "reference": "03a5765123d9c76e0ca2ab3de26059356193d35c"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/03a5765123d9c76e0ca2ab3de26059356193d35c",
  3982. "reference": "03a5765123d9c76e0ca2ab3de26059356193d35c",
  3983. "shasum": ""
  3984. },
  3985. "require": {
  3986. "asm89/stack-cors": "1.3.0",
  3987. "composer/semver": "3.2.2",
  3988. "doctrine/annotations": "1.11.1",
  3989. "doctrine/lexer": "1.2.1",
  3990. "doctrine/reflection": "1.2.2",
  3991. "drupal/core": "9.1.6",
  3992. "egulias/email-validator": "2.1.22",
  3993. "guzzlehttp/guzzle": "6.5.5",
  3994. "guzzlehttp/promises": "1.4.0",
  3995. "guzzlehttp/psr7": "1.7.0",
  3996. "laminas/laminas-diactoros": "2.5.0",
  3997. "laminas/laminas-escaper": "2.7.0",
  3998. "laminas/laminas-feed": "2.13.0",
  3999. "laminas/laminas-stdlib": "3.3.0",
  4000. "laminas/laminas-zendframework-bridge": "1.1.1",
  4001. "masterminds/html5": "2.7.4",
  4002. "pear/archive_tar": "1.4.13",
  4003. "pear/console_getopt": "v1.4.3",
  4004. "pear/pear-core-minimal": "v1.10.10",
  4005. "pear/pear_exception": "v1.0.1",
  4006. "psr/container": "1.0.0",
  4007. "psr/http-factory": "1.0.1",
  4008. "psr/http-message": "1.0.1",
  4009. "psr/log": "1.1.3",
  4010. "ralouphie/getallheaders": "3.0.3",
  4011. "stack/builder": "v1.0.6",
  4012. "symfony-cmf/routing": "2.3.3",
  4013. "symfony/console": "v4.4.16",
  4014. "symfony/debug": "v4.4.16",
  4015. "symfony/dependency-injection": "v4.4.16",
  4016. "symfony/error-handler": "v4.4.16",
  4017. "symfony/event-dispatcher": "v4.4.16",
  4018. "symfony/event-dispatcher-contracts": "v1.1.9",
  4019. "symfony/http-client-contracts": "v2.3.1",
  4020. "symfony/http-foundation": "v4.4.16",
  4021. "symfony/http-kernel": "v4.4.16",
  4022. "symfony/mime": "v5.1.8",
  4023. "symfony/polyfill-ctype": "v1.20.0",
  4024. "symfony/polyfill-iconv": "v1.20.0",
  4025. "symfony/polyfill-intl-idn": "v1.20.0",
  4026. "symfony/polyfill-intl-normalizer": "v1.20.0",
  4027. "symfony/polyfill-mbstring": "v1.20.0",
  4028. "symfony/polyfill-php80": "v1.20.0",
  4029. "symfony/process": "v4.4.16",
  4030. "symfony/psr-http-message-bridge": "v2.0.2",
  4031. "symfony/routing": "v4.4.16",
  4032. "symfony/serializer": "v4.4.16",
  4033. "symfony/service-contracts": "v2.2.0",
  4034. "symfony/translation": "v4.4.16",
  4035. "symfony/translation-contracts": "v2.3.0",
  4036. "symfony/validator": "v4.4.16",
  4037. "symfony/var-dumper": "v5.1.8",
  4038. "symfony/yaml": "v4.4.16",
  4039. "twig/twig": "v2.14.1",
  4040. "typo3/phar-stream-wrapper": "v3.1.6"
  4041. },
  4042. "conflict": {
  4043. "webflo/drupal-core-strict": "*"
  4044. },
  4045. "type": "metapackage",
  4046. "notification-url": "https://packagist.org/downloads/",
  4047. "license": [
  4048. "GPL-2.0-or-later"
  4049. ],
  4050. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  4051. "support": {
  4052. "source": "https://github.com/drupal/core-recommended/tree/9.1.6"
  4053. },
  4054. "time": "2021-04-07T11:18:45+00:00"
  4055. },
  4056. {
  4057. "name": "drupal/cshs",
  4058. "version": "dev-1.x",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://git.drupalcode.org/project/cshs.git",
  4062. "reference": "fb5b1b8eff6391819b28bf9bf1cce5d1c5b7423f"
  4063. },
  4064. "require": {
  4065. "drupal/core": "^8 || ^9",
  4066. "php": ">=7.1.0"
  4067. },
  4068. "type": "drupal-module",
  4069. "extra": {
  4070. "branch-alias": {
  4071. "dev-1.x": "1.x-dev"
  4072. },
  4073. "drupal": {
  4074. "version": "8.x-1.7+0-dev",
  4075. "datestamp": "1612535860",
  4076. "security-coverage": {
  4077. "status": "not-covered",
  4078. "message": "Dev releases are not covered by Drupal security advisories."
  4079. }
  4080. }
  4081. },
  4082. "notification-url": "https://packages.drupal.org/8/downloads",
  4083. "license": [
  4084. "GPL-2.0-or-later"
  4085. ],
  4086. "authors": [
  4087. {
  4088. "name": "Walter Jenner",
  4089. "homepage": "https://drupal.org/u/valderama"
  4090. },
  4091. {
  4092. "name": "Sergii Bondarenko",
  4093. "homepage": "https://drupal.org/u/BR0kEN",
  4094. "email": "sb@firstvector.org"
  4095. },
  4096. {
  4097. "name": "Daneel Cruz",
  4098. "homepage": "https://drupal.org/u/daneelcm"
  4099. },
  4100. {
  4101. "name": "Purushotam Rai",
  4102. "homepage": "https://drupal.org/u/purushotam.rai"
  4103. }
  4104. ],
  4105. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4106. "homepage": "https://www.drupal.org/project/cshs",
  4107. "keywords": [
  4108. "client-side-select",
  4109. "hierarchical-select",
  4110. "module",
  4111. "select",
  4112. "taxonomy"
  4113. ],
  4114. "support": {
  4115. "source": "https://git.drupalcode.org/project/cshs",
  4116. "issues": "https://www.drupal.org/project/issues/cshs"
  4117. }
  4118. },
  4119. {
  4120. "name": "drupal/ctools",
  4121. "version": "3.4.0",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://git.drupalcode.org/project/ctools.git",
  4125. "reference": "8.x-3.4"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  4130. "reference": "8.x-3.4",
  4131. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  4132. },
  4133. "require": {
  4134. "drupal/core": "^8.7.7 || ^9"
  4135. },
  4136. "type": "drupal-module",
  4137. "extra": {
  4138. "drupal": {
  4139. "version": "8.x-3.4",
  4140. "datestamp": "1585763383",
  4141. "security-coverage": {
  4142. "status": "covered",
  4143. "message": "Covered by Drupal's security advisory policy"
  4144. }
  4145. }
  4146. },
  4147. "notification-url": "https://packages.drupal.org/8/downloads",
  4148. "license": [
  4149. "GPL-2.0+"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "Kris Vanderwater (EclipseGc)",
  4154. "homepage": "https://www.drupal.org/u/eclipsegc",
  4155. "role": "Maintainer"
  4156. },
  4157. {
  4158. "name": "Jakob Perry (japerry)",
  4159. "homepage": "https://www.drupal.org/u/japerry",
  4160. "role": "Maintainer"
  4161. },
  4162. {
  4163. "name": "Tim Plunkett (tim.plunkett)",
  4164. "homepage": "https://www.drupal.org/u/timplunkett",
  4165. "role": "Maintainer"
  4166. },
  4167. {
  4168. "name": "James Gilliland (neclimdul)",
  4169. "homepage": "https://www.drupal.org/u/neclimdul",
  4170. "role": "Maintainer"
  4171. },
  4172. {
  4173. "name": "Daniel Wehner (dawehner)",
  4174. "homepage": "https://www.drupal.org/u/dawehner",
  4175. "role": "Maintainer"
  4176. },
  4177. {
  4178. "name": "joelpittet",
  4179. "homepage": "https://www.drupal.org/user/160302"
  4180. },
  4181. {
  4182. "name": "merlinofchaos",
  4183. "homepage": "https://www.drupal.org/user/26979"
  4184. },
  4185. {
  4186. "name": "neclimdul",
  4187. "homepage": "https://www.drupal.org/user/48673"
  4188. },
  4189. {
  4190. "name": "sdboyer",
  4191. "homepage": "https://www.drupal.org/user/146719"
  4192. },
  4193. {
  4194. "name": "sun",
  4195. "homepage": "https://www.drupal.org/user/54136"
  4196. },
  4197. {
  4198. "name": "tim.plunkett",
  4199. "homepage": "https://www.drupal.org/user/241634"
  4200. }
  4201. ],
  4202. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4203. "homepage": "https://www.drupal.org/project/ctools",
  4204. "support": {
  4205. "source": "https://git.drupalcode.org/project/ctools",
  4206. "issues": "https://www.drupal.org/project/issues/ctools"
  4207. }
  4208. },
  4209. {
  4210. "name": "drupal/ctools_block",
  4211. "version": "3.5.0",
  4212. "require": {
  4213. "drupal/core": "^8.8 || ^9",
  4214. "drupal/ctools": "*"
  4215. },
  4216. "type": "metapackage",
  4217. "extra": {
  4218. "drupal": {
  4219. "version": "8.x-3.5",
  4220. "datestamp": "1618592931",
  4221. "security-coverage": {
  4222. "status": "covered",
  4223. "message": "Covered by Drupal's security advisory policy"
  4224. }
  4225. }
  4226. },
  4227. "notification-url": "https://packages.drupal.org/8/downloads",
  4228. "license": [
  4229. "GPL-2.0-or-later"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "EclipseGc",
  4234. "homepage": "https://www.drupal.org/user/61203"
  4235. },
  4236. {
  4237. "name": "damiankloip",
  4238. "homepage": "https://www.drupal.org/user/1037976"
  4239. },
  4240. {
  4241. "name": "dawehner",
  4242. "homepage": "https://www.drupal.org/user/99340"
  4243. },
  4244. {
  4245. "name": "esmerel",
  4246. "homepage": "https://www.drupal.org/user/164022"
  4247. },
  4248. {
  4249. "name": "japerry",
  4250. "homepage": "https://www.drupal.org/user/45640"
  4251. },
  4252. {
  4253. "name": "joelpittet",
  4254. "homepage": "https://www.drupal.org/user/160302"
  4255. },
  4256. {
  4257. "name": "merlinofchaos",
  4258. "homepage": "https://www.drupal.org/user/26979"
  4259. },
  4260. {
  4261. "name": "neclimdul",
  4262. "homepage": "https://www.drupal.org/user/48673"
  4263. },
  4264. {
  4265. "name": "sdboyer",
  4266. "homepage": "https://www.drupal.org/user/146719"
  4267. },
  4268. {
  4269. "name": "sun",
  4270. "homepage": "https://www.drupal.org/user/54136"
  4271. },
  4272. {
  4273. "name": "tim.plunkett",
  4274. "homepage": "https://www.drupal.org/user/241634"
  4275. }
  4276. ],
  4277. "description": "Provides improvements to blocks that will one day be added to Drupal core.",
  4278. "homepage": "https://www.drupal.org/project/ctools",
  4279. "support": {
  4280. "source": "https://git.drupalcode.org/project/ctools"
  4281. }
  4282. },
  4283. {
  4284. "name": "drupal/date_range_formatter",
  4285. "version": "dev-9.0.x",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4289. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4290. },
  4291. "require": {
  4292. "drupal/core": "^8 || ^9"
  4293. },
  4294. "type": "drupal-module",
  4295. "extra": {
  4296. "branch-alias": {
  4297. "dev-9.0.x": "9.0.x-dev"
  4298. },
  4299. "drupal": {
  4300. "version": "9.0.x-dev",
  4301. "datestamp": "1589956448",
  4302. "security-coverage": {
  4303. "status": "not-covered",
  4304. "message": "Dev releases are not covered by Drupal security advisories."
  4305. }
  4306. }
  4307. },
  4308. "notification-url": "https://packages.drupal.org/8/downloads",
  4309. "license": [
  4310. "GPL-2.0-or-later"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "maximpodorov",
  4315. "homepage": "https://www.drupal.org/user/515310"
  4316. },
  4317. {
  4318. "name": "sudishth",
  4319. "homepage": "https://www.drupal.org/user/1440562"
  4320. }
  4321. ],
  4322. "description": "Formats date ranges.",
  4323. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4324. "support": {
  4325. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4326. }
  4327. },
  4328. {
  4329. "name": "drupal/devel",
  4330. "version": "4.1.1",
  4331. "source": {
  4332. "type": "git",
  4333. "url": "https://git.drupalcode.org/project/devel.git",
  4334. "reference": "4.1.1"
  4335. },
  4336. "dist": {
  4337. "type": "zip",
  4338. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4339. "reference": "4.1.1",
  4340. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4341. },
  4342. "require": {
  4343. "doctrine/common": "^2.7",
  4344. "drupal/core": "^8.8 || ^9",
  4345. "symfony/var-dumper": "^4 || ^5"
  4346. },
  4347. "conflict": {
  4348. "kint-php/kint": "<3"
  4349. },
  4350. "require-dev": {
  4351. "drush/drush": "^10"
  4352. },
  4353. "suggest": {
  4354. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4355. },
  4356. "type": "drupal-module",
  4357. "extra": {
  4358. "drupal": {
  4359. "version": "4.1.1",
  4360. "datestamp": "1609419527",
  4361. "security-coverage": {
  4362. "status": "covered",
  4363. "message": "Covered by Drupal's security advisory policy"
  4364. }
  4365. },
  4366. "drush": {
  4367. "services": {
  4368. "drush.services.yml": "^9 || ^10"
  4369. }
  4370. }
  4371. },
  4372. "notification-url": "https://packages.drupal.org/8/downloads",
  4373. "license": [
  4374. "GPL-2.0-or-later"
  4375. ],
  4376. "authors": [
  4377. {
  4378. "name": "drupalspoons",
  4379. "homepage": "https://www.drupal.org/user/3647684"
  4380. },
  4381. {
  4382. "name": "moshe weitzman",
  4383. "homepage": "https://www.drupal.org/user/23"
  4384. }
  4385. ],
  4386. "description": "Various blocks, pages, and functions for developers.",
  4387. "homepage": "https://www.drupal.org/project/devel",
  4388. "support": {
  4389. "source": "https://gitlab.com/drupalspoons/devel",
  4390. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4391. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4392. }
  4393. },
  4394. {
  4395. "name": "drupal/devel_kint_extras",
  4396. "version": "1.0.0",
  4397. "source": {
  4398. "type": "git",
  4399. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  4400. "reference": "1.0.0"
  4401. },
  4402. "dist": {
  4403. "type": "zip",
  4404. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.0.0.zip",
  4405. "reference": "1.0.0",
  4406. "shasum": "286b5183552cc673fb96de7e3d943a3cfd82ec00"
  4407. },
  4408. "require": {
  4409. "drupal/core": "^8 || ^9",
  4410. "drupal/devel": "^4.0",
  4411. "kint-php/kint": "^3.3"
  4412. },
  4413. "type": "drupal-module",
  4414. "extra": {
  4415. "drupal": {
  4416. "version": "1.0.0",
  4417. "datestamp": "1597133801",
  4418. "security-coverage": {
  4419. "status": "not-covered",
  4420. "message": "Project has not opted into security advisory coverage!"
  4421. }
  4422. }
  4423. },
  4424. "notification-url": "https://packages.drupal.org/8/downloads",
  4425. "license": [
  4426. "GPL-2.0-or-later"
  4427. ],
  4428. "authors": [
  4429. {
  4430. "name": "Jan Chojnacki",
  4431. "homepage": "https://www.drupal.org/u/janchojnacki"
  4432. },
  4433. {
  4434. "name": "Other contributors",
  4435. "homepage": "https://www.drupal.org/node/3164492/committers"
  4436. }
  4437. ],
  4438. "description": "Shows methods and statics available for an object when using Kint with Devel",
  4439. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  4440. "support": {
  4441. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  4442. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  4443. "chat": "irc://irc.freenode.org/drupal-contribute"
  4444. }
  4445. },
  4446. {
  4447. "name": "drupal/domain",
  4448. "version": "dev-1.x",
  4449. "source": {
  4450. "type": "git",
  4451. "url": "https://git.drupalcode.org/project/domain.git",
  4452. "reference": "699198404cee4688650639ac11c1b9f30cd57cec"
  4453. },
  4454. "require": {
  4455. "drupal/core": "^8 || ^9"
  4456. },
  4457. "require-dev": {
  4458. "drupal/domain_access": "*",
  4459. "drupal/domain_config": "*"
  4460. },
  4461. "type": "drupal-module",
  4462. "extra": {
  4463. "branch-alias": {
  4464. "dev-1.x": "1.x-dev"
  4465. },
  4466. "drupal": {
  4467. "version": "8.x-1.x-dev",
  4468. "datestamp": "1614265913",
  4469. "security-coverage": {
  4470. "status": "not-covered",
  4471. "message": "Dev releases are not covered by Drupal security advisories."
  4472. }
  4473. }
  4474. },
  4475. "notification-url": "https://packages.drupal.org/8/downloads",
  4476. "license": [
  4477. "GPL-2.0-or-later"
  4478. ],
  4479. "authors": [
  4480. {
  4481. "name": "agentrickard",
  4482. "homepage": "https://www.drupal.org/user/20975"
  4483. },
  4484. {
  4485. "name": "nonsie",
  4486. "homepage": "https://www.drupal.org/user/29899"
  4487. }
  4488. ],
  4489. "description": "Creates domain records within a Drupal installation.",
  4490. "homepage": "https://www.drupal.org/project/domain",
  4491. "support": {
  4492. "source": "https://git.drupalcode.org/project/domain"
  4493. }
  4494. },
  4495. {
  4496. "name": "drupal/domain_alias",
  4497. "version": "dev-1.x",
  4498. "require": {
  4499. "drupal/core": "^8 || ^9",
  4500. "drupal/domain": "*"
  4501. },
  4502. "type": "metapackage",
  4503. "extra": {
  4504. "branch-alias": {
  4505. "dev-1.x": "1.x-dev"
  4506. },
  4507. "drupal": {
  4508. "version": "8.x-1.x-dev",
  4509. "datestamp": "1614265913",
  4510. "security-coverage": {
  4511. "status": "not-covered",
  4512. "message": "Dev releases are not covered by Drupal security advisories."
  4513. }
  4514. }
  4515. },
  4516. "notification-url": "https://packages.drupal.org/8/downloads",
  4517. "license": [
  4518. "GPL-2.0-or-later"
  4519. ],
  4520. "authors": [
  4521. {
  4522. "name": "agentrickard",
  4523. "homepage": "https://www.drupal.org/user/20975"
  4524. },
  4525. {
  4526. "name": "nonsie",
  4527. "homepage": "https://www.drupal.org/user/29899"
  4528. }
  4529. ],
  4530. "description": "Maps multiple host requests to a single domain record.",
  4531. "homepage": "https://www.drupal.org/project/domain",
  4532. "support": {
  4533. "source": "https://git.drupalcode.org/project/domain"
  4534. }
  4535. },
  4536. {
  4537. "name": "drupal/domain_config",
  4538. "version": "dev-1.x",
  4539. "require": {
  4540. "drupal/core": "^8 || ^9",
  4541. "drupal/domain": "*"
  4542. },
  4543. "type": "metapackage",
  4544. "extra": {
  4545. "branch-alias": {
  4546. "dev-1.x": "1.x-dev"
  4547. },
  4548. "drupal": {
  4549. "version": "8.x-1.x-dev",
  4550. "datestamp": "1614265913",
  4551. "security-coverage": {
  4552. "status": "not-covered",
  4553. "message": "Dev releases are not covered by Drupal security advisories."
  4554. }
  4555. }
  4556. },
  4557. "notification-url": "https://packages.drupal.org/8/downloads",
  4558. "license": [
  4559. "GPL-2.0-or-later"
  4560. ],
  4561. "authors": [
  4562. {
  4563. "name": "agentrickard",
  4564. "homepage": "https://www.drupal.org/user/20975"
  4565. },
  4566. {
  4567. "name": "nonsie",
  4568. "homepage": "https://www.drupal.org/user/29899"
  4569. }
  4570. ],
  4571. "description": "Allows domain specific configuration.",
  4572. "homepage": "https://www.drupal.org/project/domain",
  4573. "support": {
  4574. "source": "https://git.drupalcode.org/project/domain"
  4575. }
  4576. },
  4577. {
  4578. "name": "drupal/domain_site_settings",
  4579. "version": "dev-1.x",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4583. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4584. },
  4585. "require": {
  4586. "drupal/core": "^8 || ^9",
  4587. "drupal/domain": "*",
  4588. "drupal/domain_config": "*"
  4589. },
  4590. "type": "drupal-module",
  4591. "extra": {
  4592. "branch-alias": {
  4593. "dev-1.x": "1.x-dev"
  4594. },
  4595. "drupal": {
  4596. "version": "8.x-1.3+7-dev",
  4597. "datestamp": "1584297727",
  4598. "security-coverage": {
  4599. "status": "not-covered",
  4600. "message": "Dev releases are not covered by Drupal security advisories."
  4601. }
  4602. }
  4603. },
  4604. "notification-url": "https://packages.drupal.org/8/downloads",
  4605. "license": [
  4606. "GPL-2.0+"
  4607. ],
  4608. "authors": [
  4609. {
  4610. "name": "aloknarwaria",
  4611. "homepage": "https://www.drupal.org/user/906640"
  4612. },
  4613. {
  4614. "name": "malaynayak",
  4615. "homepage": "https://www.drupal.org/user/3529755"
  4616. }
  4617. ],
  4618. "description": "Basic Site Setting for Domains.",
  4619. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4620. "keywords": [
  4621. "Drupal"
  4622. ],
  4623. "support": {
  4624. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4625. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4626. }
  4627. },
  4628. {
  4629. "name": "drupal/email_registration",
  4630. "version": "1.1.0",
  4631. "source": {
  4632. "type": "git",
  4633. "url": "https://git.drupalcode.org/project/email_registration.git",
  4634. "reference": "8.x-1.1"
  4635. },
  4636. "dist": {
  4637. "type": "zip",
  4638. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4639. "reference": "8.x-1.1",
  4640. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4641. },
  4642. "require": {
  4643. "drupal/core": "^8.7.7 || ^9"
  4644. },
  4645. "conflict": {
  4646. "drupal/commerce": "<2.12"
  4647. },
  4648. "require-dev": {
  4649. "drupal/commerce": "^2.0"
  4650. },
  4651. "type": "drupal-module",
  4652. "extra": {
  4653. "drupal": {
  4654. "version": "8.x-1.1",
  4655. "datestamp": "1592317072",
  4656. "security-coverage": {
  4657. "status": "covered",
  4658. "message": "Covered by Drupal's security advisory policy"
  4659. }
  4660. }
  4661. },
  4662. "notification-url": "https://packages.drupal.org/8/downloads",
  4663. "license": [
  4664. "GPL-2.0-or-later"
  4665. ],
  4666. "authors": [
  4667. {
  4668. "name": "Greg Knaddison (greggles)",
  4669. "homepage": "https://www.drupal.org/u/greggles",
  4670. "role": "Maintainer"
  4671. },
  4672. {
  4673. "name": "Andrey Postnikov (andypost)",
  4674. "homepage": "https://www.drupal.org/u/andypost",
  4675. "role": "Maintainer"
  4676. },
  4677. {
  4678. "name": "Chris Herberte",
  4679. "homepage": "https://www.drupal.org/u/chris-herberte",
  4680. "role": "Maintainer"
  4681. },
  4682. {
  4683. "name": "Moshe Weitzman (moshe weitzman)",
  4684. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4685. "role": "Maintainer"
  4686. }
  4687. ],
  4688. "description": "Allows users to register with an email address as their username.",
  4689. "homepage": "https://www.drupal.org/project/email_registration",
  4690. "support": {
  4691. "source": "https://git.drupalcode.org/project/email_registration",
  4692. "issues": "http://drupal.org/project/issues/email_registration"
  4693. }
  4694. },
  4695. {
  4696. "name": "drupal/embed",
  4697. "version": "1.4.0",
  4698. "source": {
  4699. "type": "git",
  4700. "url": "https://git.drupalcode.org/project/embed.git",
  4701. "reference": "8.x-1.4"
  4702. },
  4703. "dist": {
  4704. "type": "zip",
  4705. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4706. "reference": "8.x-1.4",
  4707. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4708. },
  4709. "require": {
  4710. "drupal/core": "^8.7.7 || ^9"
  4711. },
  4712. "type": "drupal-module",
  4713. "extra": {
  4714. "drupal": {
  4715. "version": "8.x-1.4",
  4716. "datestamp": "1590176831",
  4717. "security-coverage": {
  4718. "status": "covered",
  4719. "message": "Covered by Drupal's security advisory policy"
  4720. }
  4721. }
  4722. },
  4723. "notification-url": "https://packages.drupal.org/8/downloads",
  4724. "license": [
  4725. "GPL-2.0-or-later"
  4726. ],
  4727. "authors": [
  4728. {
  4729. "name": "Dave Reid",
  4730. "homepage": "https://www.drupal.org/user/53892"
  4731. },
  4732. {
  4733. "name": "Devin Carlson",
  4734. "homepage": "https://www.drupal.org/user/290182"
  4735. },
  4736. {
  4737. "name": "Drupal Media Team",
  4738. "homepage": "https://www.drupal.org/user/3260690"
  4739. },
  4740. {
  4741. "name": "cs_shadow",
  4742. "homepage": "https://www.drupal.org/user/2828287"
  4743. },
  4744. {
  4745. "name": "phenaproxima",
  4746. "homepage": "https://www.drupal.org/user/205645"
  4747. },
  4748. {
  4749. "name": "slashrsm",
  4750. "homepage": "https://www.drupal.org/user/744628"
  4751. }
  4752. ],
  4753. "description": "Provides a framework for different types of embeds in text editors.",
  4754. "homepage": "https://www.drupal.org/project/embed",
  4755. "support": {
  4756. "source": "https://git.drupalcode.org/project/embed"
  4757. }
  4758. },
  4759. {
  4760. "name": "drupal/entity",
  4761. "version": "1.2.0",
  4762. "source": {
  4763. "type": "git",
  4764. "url": "https://git.drupalcode.org/project/entity.git",
  4765. "reference": "8.x-1.2"
  4766. },
  4767. "dist": {
  4768. "type": "zip",
  4769. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4770. "reference": "8.x-1.2",
  4771. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4772. },
  4773. "require": {
  4774. "drupal/core": "^8.8 || ^9"
  4775. },
  4776. "type": "drupal-module",
  4777. "extra": {
  4778. "drupal": {
  4779. "version": "8.x-1.2",
  4780. "datestamp": "1606399149",
  4781. "security-coverage": {
  4782. "status": "covered",
  4783. "message": "Covered by Drupal's security advisory policy"
  4784. }
  4785. }
  4786. },
  4787. "notification-url": "https://packages.drupal.org/8/downloads",
  4788. "license": [
  4789. "GPL-2.0-or-later"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Berdir",
  4794. "homepage": "https://www.drupal.org/user/214652"
  4795. },
  4796. {
  4797. "name": "bojanz",
  4798. "homepage": "https://www.drupal.org/user/86106"
  4799. },
  4800. {
  4801. "name": "dawehner",
  4802. "homepage": "https://www.drupal.org/user/99340"
  4803. },
  4804. {
  4805. "name": "dixon_",
  4806. "homepage": "https://www.drupal.org/user/239911"
  4807. },
  4808. {
  4809. "name": "fago",
  4810. "homepage": "https://www.drupal.org/user/16747"
  4811. },
  4812. {
  4813. "name": "mglaman",
  4814. "homepage": "https://www.drupal.org/user/2416470"
  4815. }
  4816. ],
  4817. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4818. "homepage": "http://drupal.org/project/entity",
  4819. "support": {
  4820. "source": "https://git.drupalcode.org/project/entity"
  4821. }
  4822. },
  4823. {
  4824. "name": "drupal/entity_browser",
  4825. "version": "2.5.0",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4829. "reference": "8.x-2.5"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  4834. "reference": "8.x-2.5",
  4835. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  4836. },
  4837. "require": {
  4838. "drupal/core": "^8.8 || ^9"
  4839. },
  4840. "require-dev": {
  4841. "drupal/embed": "~1.0",
  4842. "drupal/entity_embed": "1.x-dev",
  4843. "drupal/entity_reference_revisions": "1.x-dev",
  4844. "drupal/entityqueue": "1.x-dev",
  4845. "drupal/inline_entity_form": "1.x-dev",
  4846. "drupal/paragraphs": "1.x-dev",
  4847. "drupal/token": "~1.0"
  4848. },
  4849. "type": "drupal-module",
  4850. "extra": {
  4851. "drupal": {
  4852. "version": "8.x-2.5",
  4853. "datestamp": "1588015429",
  4854. "security-coverage": {
  4855. "status": "covered",
  4856. "message": "Covered by Drupal's security advisory policy"
  4857. }
  4858. }
  4859. },
  4860. "notification-url": "https://packages.drupal.org/8/downloads",
  4861. "license": [
  4862. "GPL-2.0+"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Janez Urevc",
  4867. "homepage": "https://github.com/slashrsm",
  4868. "role": "Maintainer"
  4869. },
  4870. {
  4871. "name": "Primoz Hmeljak",
  4872. "homepage": "https://github.com/primsi",
  4873. "role": "Maintainer"
  4874. },
  4875. {
  4876. "name": "See other contributors",
  4877. "homepage": "https://www.drupal.org/node/1943336/committers",
  4878. "role": "contributor"
  4879. },
  4880. {
  4881. "name": "Drupal Media Team",
  4882. "homepage": "https://www.drupal.org/user/3260690"
  4883. },
  4884. {
  4885. "name": "Primsi",
  4886. "homepage": "https://www.drupal.org/user/282629"
  4887. },
  4888. {
  4889. "name": "marcingy",
  4890. "homepage": "https://www.drupal.org/user/77320"
  4891. },
  4892. {
  4893. "name": "oknate",
  4894. "homepage": "https://www.drupal.org/user/471638"
  4895. },
  4896. {
  4897. "name": "samuel.mortenson",
  4898. "homepage": "https://www.drupal.org/user/2582268"
  4899. },
  4900. {
  4901. "name": "slashrsm",
  4902. "homepage": "https://www.drupal.org/user/744628"
  4903. }
  4904. ],
  4905. "description": "Entity browsing and selecting component.",
  4906. "homepage": "http://drupal.org/project/entity_browser",
  4907. "support": {
  4908. "source": "https://git.drupalcode.org/project/entity_browser",
  4909. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4910. "irc": "irc://irc.freenode.org/drupal-contribute"
  4911. }
  4912. },
  4913. {
  4914. "name": "drupal/entity_browser_enhanced",
  4915. "version": "1.0.0",
  4916. "source": {
  4917. "type": "git",
  4918. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4919. "reference": "8.x-1.0"
  4920. },
  4921. "dist": {
  4922. "type": "zip",
  4923. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4924. "reference": "8.x-1.0",
  4925. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4926. },
  4927. "require": {
  4928. "drupal/core": "^8 || ^9",
  4929. "drupal/entity_browser": "~2.0"
  4930. },
  4931. "type": "drupal-module",
  4932. "extra": {
  4933. "drupal": {
  4934. "version": "8.x-1.0",
  4935. "datestamp": "1581940931",
  4936. "security-coverage": {
  4937. "status": "covered",
  4938. "message": "Covered by Drupal's security advisory policy"
  4939. }
  4940. },
  4941. "branch-alias": {
  4942. "dev-8.x-1.x": "8.1.x-dev"
  4943. }
  4944. },
  4945. "notification-url": "https://packages.drupal.org/8/downloads",
  4946. "license": [
  4947. "GPL-2.0-or-later"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "Vardot",
  4952. "homepage": "https://www.drupal.org/vardot",
  4953. "role": "Maintainer"
  4954. },
  4955. {
  4956. "name": "RajabNatshah",
  4957. "homepage": "https://www.drupal.org/user/1414312"
  4958. }
  4959. ],
  4960. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4961. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4962. "support": {
  4963. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4964. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4965. }
  4966. },
  4967. {
  4968. "name": "drupal/entity_clone",
  4969. "version": "1.0.0-beta6",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4973. "reference": "8.x-1.0-beta6"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta6.zip",
  4978. "reference": "8.x-1.0-beta6",
  4979. "shasum": "35d04649b6fb349df761abab37506a94f172981f"
  4980. },
  4981. "require": {
  4982. "drupal/core": "^8 || ^9"
  4983. },
  4984. "type": "drupal-module",
  4985. "extra": {
  4986. "drupal": {
  4987. "version": "8.x-1.0-beta6",
  4988. "datestamp": "1617209997",
  4989. "security-coverage": {
  4990. "status": "not-covered",
  4991. "message": "Beta releases are not covered by Drupal security advisories."
  4992. }
  4993. }
  4994. },
  4995. "notification-url": "https://packages.drupal.org/8/downloads",
  4996. "license": [
  4997. "GPL-2.0-or-later"
  4998. ],
  4999. "authors": [
  5000. {
  5001. "name": "NickDickinsonWilde",
  5002. "homepage": "https://www.drupal.org/user/3094661"
  5003. },
  5004. {
  5005. "name": "colan",
  5006. "homepage": "https://www.drupal.org/user/58704"
  5007. },
  5008. {
  5009. "name": "vpeltot",
  5010. "homepage": "https://www.drupal.org/user/1361586"
  5011. }
  5012. ],
  5013. "description": "Add a clone action for all entities",
  5014. "homepage": "https://www.drupal.org/project/entity_clone",
  5015. "support": {
  5016. "source": "https://git.drupalcode.org/project/entity_clone"
  5017. }
  5018. },
  5019. {
  5020. "name": "drupal/entity_reference_revisions",
  5021. "version": "1.9.0",
  5022. "source": {
  5023. "type": "git",
  5024. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  5025. "reference": "8.x-1.9"
  5026. },
  5027. "dist": {
  5028. "type": "zip",
  5029. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip",
  5030. "reference": "8.x-1.9",
  5031. "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df"
  5032. },
  5033. "require": {
  5034. "drupal/core": "^8.7.7 || ^9"
  5035. },
  5036. "require-dev": {
  5037. "drupal/diff": "1.x-dev"
  5038. },
  5039. "type": "drupal-module",
  5040. "extra": {
  5041. "drupal": {
  5042. "version": "8.x-1.9",
  5043. "datestamp": "1614805871",
  5044. "security-coverage": {
  5045. "status": "covered",
  5046. "message": "Covered by Drupal's security advisory policy"
  5047. }
  5048. }
  5049. },
  5050. "notification-url": "https://packages.drupal.org/8/downloads",
  5051. "license": [
  5052. "GPL-2.0-or-later"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "Berdir",
  5057. "homepage": "https://www.drupal.org/user/214652"
  5058. },
  5059. {
  5060. "name": "Frans",
  5061. "homepage": "https://www.drupal.org/user/514222"
  5062. },
  5063. {
  5064. "name": "jeroen.b",
  5065. "homepage": "https://www.drupal.org/user/1853532"
  5066. },
  5067. {
  5068. "name": "miro_dietiker",
  5069. "homepage": "https://www.drupal.org/user/227761"
  5070. }
  5071. ],
  5072. "description": "Entity Reference Revisions",
  5073. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  5074. "support": {
  5075. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  5076. }
  5077. },
  5078. {
  5079. "name": "drupal/extlink",
  5080. "version": "1.6.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://git.drupalcode.org/project/extlink.git",
  5084. "reference": "8.x-1.6"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.6.zip",
  5089. "reference": "8.x-1.6",
  5090. "shasum": "92c2794b1d5ece7978f5f6fa37f719c0b37d470e"
  5091. },
  5092. "require": {
  5093. "drupal/core": "^8 || ^9"
  5094. },
  5095. "type": "drupal-module",
  5096. "extra": {
  5097. "drupal": {
  5098. "version": "8.x-1.6",
  5099. "datestamp": "1614961993",
  5100. "security-coverage": {
  5101. "status": "covered",
  5102. "message": "Covered by Drupal's security advisory policy"
  5103. }
  5104. }
  5105. },
  5106. "notification-url": "https://packages.drupal.org/8/downloads",
  5107. "license": [
  5108. "GPL-2.0-or-later"
  5109. ],
  5110. "authors": [
  5111. {
  5112. "name": "Nate Lampton",
  5113. "homepage": "https://www.drupal.org/u/quicksketch",
  5114. "role": "Maintainer"
  5115. },
  5116. {
  5117. "name": "Lachlan Ennis",
  5118. "homepage": "https://www.drupal.org/u/elachlan",
  5119. "role": "Maintainer"
  5120. },
  5121. {
  5122. "name": "Neslee Canil Pinto",
  5123. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  5124. "role": "Maintainer"
  5125. }
  5126. ],
  5127. "description": "Modify behavior and appearance of external links.",
  5128. "homepage": "https://www.drupal.org/project/extlink",
  5129. "keywords": [
  5130. "Drupal",
  5131. "External Links"
  5132. ],
  5133. "support": {
  5134. "source": "https://git.drupalcode.org/project/extlink",
  5135. "issues": "https://www.drupal.org/project/issues/extlink"
  5136. }
  5137. },
  5138. {
  5139. "name": "drupal/field_group",
  5140. "version": "3.1.0",
  5141. "source": {
  5142. "type": "git",
  5143. "url": "https://git.drupalcode.org/project/field_group.git",
  5144. "reference": "8.x-3.1"
  5145. },
  5146. "dist": {
  5147. "type": "zip",
  5148. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  5149. "reference": "8.x-3.1",
  5150. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  5151. },
  5152. "require": {
  5153. "drupal/core": "^8.8 || ^9"
  5154. },
  5155. "require-dev": {
  5156. "drupal/jquery_ui_accordion": "^1.0"
  5157. },
  5158. "type": "drupal-module",
  5159. "extra": {
  5160. "drupal": {
  5161. "version": "8.x-3.1",
  5162. "datestamp": "1591772567",
  5163. "security-coverage": {
  5164. "status": "covered",
  5165. "message": "Covered by Drupal's security advisory policy"
  5166. }
  5167. }
  5168. },
  5169. "notification-url": "https://packages.drupal.org/8/downloads",
  5170. "license": [
  5171. "GPL-2.0-or-later"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "Hydra",
  5176. "homepage": "https://www.drupal.org/user/647364"
  5177. },
  5178. {
  5179. "name": "Stalski",
  5180. "homepage": "https://www.drupal.org/user/322618"
  5181. },
  5182. {
  5183. "name": "jyve",
  5184. "homepage": "https://www.drupal.org/user/591438"
  5185. },
  5186. {
  5187. "name": "nils.destoop",
  5188. "homepage": "https://www.drupal.org/user/361625"
  5189. },
  5190. {
  5191. "name": "swentel",
  5192. "homepage": "https://www.drupal.org/user/107403"
  5193. }
  5194. ],
  5195. "description": "Provides the field_group module.",
  5196. "homepage": "https://www.drupal.org/project/field_group",
  5197. "support": {
  5198. "source": "https://git.drupalcode.org/project/field_group",
  5199. "issues": "https://www.drupal.org/project/issues/field_group"
  5200. }
  5201. },
  5202. {
  5203. "name": "drupal/file_mdm",
  5204. "version": "2.1.0",
  5205. "source": {
  5206. "type": "git",
  5207. "url": "https://git.drupalcode.org/project/file_mdm.git",
  5208. "reference": "8.x-2.1"
  5209. },
  5210. "dist": {
  5211. "type": "zip",
  5212. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  5213. "reference": "8.x-2.1",
  5214. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  5215. },
  5216. "require": {
  5217. "drupal/core": "^8.8 || ^9",
  5218. "lsolesen/pel": "^0.9.8",
  5219. "phenx/php-font-lib": "^0.5.2",
  5220. "php": ">=7"
  5221. },
  5222. "require-dev": {
  5223. "drupal/image_effects": "*"
  5224. },
  5225. "type": "drupal-module",
  5226. "extra": {
  5227. "drupal": {
  5228. "version": "8.x-2.1",
  5229. "datestamp": "1586801064",
  5230. "security-coverage": {
  5231. "status": "covered",
  5232. "message": "Covered by Drupal's security advisory policy"
  5233. }
  5234. }
  5235. },
  5236. "notification-url": "https://packages.drupal.org/8/downloads",
  5237. "license": [
  5238. "GPL-2.0-or-later"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "mondrake",
  5243. "homepage": "https://www.drupal.org/user/1307444"
  5244. }
  5245. ],
  5246. "description": "Provides a service to manage file metadata.",
  5247. "homepage": "https://www.drupal.org/project/file_mdm",
  5248. "support": {
  5249. "source": "https://git.drupalcode.org/project/file_mdm"
  5250. }
  5251. },
  5252. {
  5253. "name": "drupal/filefield_sources",
  5254. "version": "dev-1.x",
  5255. "source": {
  5256. "type": "git",
  5257. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5258. "reference": "bbcd869d2d3430235ec88b06b4dacaae1a9256d5"
  5259. },
  5260. "require": {
  5261. "drupal/core": "^8 || ^9"
  5262. },
  5263. "require-dev": {
  5264. "drupal/imce": "^2.3"
  5265. },
  5266. "type": "drupal-module",
  5267. "extra": {
  5268. "branch-alias": {
  5269. "dev-1.x": "1.x-dev"
  5270. },
  5271. "drupal": {
  5272. "version": "8.x-1.0-alpha4+2-dev",
  5273. "datestamp": "1610733921",
  5274. "security-coverage": {
  5275. "status": "not-covered",
  5276. "message": "Dev 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": "Nate Lampton (quicksketch)",
  5287. "homepage": "https://www.drupal.org/u/quicksketch",
  5288. "role": "Maintainer"
  5289. },
  5290. {
  5291. "name": "Andrey Khromyshev (profak)",
  5292. "homepage": "https://www.drupal.org/u/profak",
  5293. "role": "Maintainer"
  5294. },
  5295. {
  5296. "name": "David Valdez (gnuget)",
  5297. "homepage": "https://www.drupal.org/u/gnuget",
  5298. "role": "Maintainer"
  5299. }
  5300. ],
  5301. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5302. "homepage": "https://www.drupal.org/project/filefield_sources",
  5303. "support": {
  5304. "source": "https://git.drupalcode.org/project/filefield_sources",
  5305. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5306. "irc": "irc://irc.freenode.org/drupal-contribute"
  5307. }
  5308. },
  5309. {
  5310. "name": "drupal/filter_perms",
  5311. "version": "dev-1.x",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5315. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5316. },
  5317. "require": {
  5318. "drupal/core": "^8 || ^9"
  5319. },
  5320. "type": "drupal-module",
  5321. "extra": {
  5322. "branch-alias": {
  5323. "dev-1.x": "1.x-dev"
  5324. },
  5325. "drupal": {
  5326. "version": "8.x-1.0-alpha1+2-dev",
  5327. "datestamp": "1599239698",
  5328. "security-coverage": {
  5329. "status": "not-covered",
  5330. "message": "Dev releases are not covered by Drupal security advisories."
  5331. }
  5332. }
  5333. },
  5334. "notification-url": "https://packages.drupal.org/8/downloads",
  5335. "license": [
  5336. "GPL-2.0-or-later"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "cYu",
  5341. "homepage": "https://www.drupal.org/user/202205"
  5342. },
  5343. {
  5344. "name": "deekayen",
  5345. "homepage": "https://www.drupal.org/user/972"
  5346. },
  5347. {
  5348. "name": "ivagold",
  5349. "homepage": "https://www.drupal.org/user/3061533"
  5350. },
  5351. {
  5352. "name": "mgbellaire",
  5353. "homepage": "https://www.drupal.org/user/1831932"
  5354. },
  5355. {
  5356. "name": "willzyx",
  5357. "homepage": "https://www.drupal.org/user/1043862"
  5358. }
  5359. ],
  5360. "description": "Provides role and module filters to simplify the user permissions page.",
  5361. "homepage": "https://www.drupal.org/project/filter_perms",
  5362. "support": {
  5363. "source": "https://git.drupalcode.org/project/filter_perms"
  5364. }
  5365. },
  5366. {
  5367. "name": "drupal/honeypot",
  5368. "version": "2.0.1",
  5369. "source": {
  5370. "type": "git",
  5371. "url": "https://git.drupalcode.org/project/honeypot.git",
  5372. "reference": "2.0.1"
  5373. },
  5374. "dist": {
  5375. "type": "zip",
  5376. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5377. "reference": "2.0.1",
  5378. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5379. },
  5380. "require": {
  5381. "drupal/core": "^8.0 || ^9.0"
  5382. },
  5383. "type": "drupal-module",
  5384. "extra": {
  5385. "drupal": {
  5386. "version": "2.0.1",
  5387. "datestamp": "1597855128",
  5388. "security-coverage": {
  5389. "status": "covered",
  5390. "message": "Covered by Drupal's security advisory policy"
  5391. }
  5392. }
  5393. },
  5394. "notification-url": "https://packages.drupal.org/8/downloads",
  5395. "license": [
  5396. "GPL-2.0-or-later"
  5397. ],
  5398. "authors": [
  5399. {
  5400. "name": "Jeff Geerling",
  5401. "homepage": "https://www.drupal.org/user/213194",
  5402. "email": "geerlingguy@mac.com"
  5403. },
  5404. {
  5405. "name": "geerlingguy",
  5406. "homepage": "https://www.drupal.org/user/389011"
  5407. },
  5408. {
  5409. "name": "vijaycs85",
  5410. "homepage": "https://www.drupal.org/user/93488"
  5411. }
  5412. ],
  5413. "description": "Mitigates spam form submissions using the honeypot method.",
  5414. "homepage": "https://www.drupal.org/project/honeypot",
  5415. "keywords": [
  5416. "deterrent",
  5417. "form",
  5418. "honeypot",
  5419. "honeytrap",
  5420. "php",
  5421. "spam"
  5422. ],
  5423. "support": {
  5424. "source": "https://git.drupalcode.org/project/honeypot",
  5425. "issues": "https://www.drupal.org/project/issues/honeypot"
  5426. }
  5427. },
  5428. {
  5429. "name": "drupal/imagemagick",
  5430. "version": "3.1.0",
  5431. "source": {
  5432. "type": "git",
  5433. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5434. "reference": "8.x-3.1"
  5435. },
  5436. "dist": {
  5437. "type": "zip",
  5438. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5439. "reference": "8.x-3.1",
  5440. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5441. },
  5442. "require": {
  5443. "drupal/core": "^8.8 || ^9",
  5444. "drupal/file_mdm": "^2",
  5445. "drupal/sophron": "^1",
  5446. "php": ">=7"
  5447. },
  5448. "type": "drupal-module",
  5449. "extra": {
  5450. "drupal": {
  5451. "version": "8.x-3.1",
  5452. "datestamp": "1581420882",
  5453. "security-coverage": {
  5454. "status": "covered",
  5455. "message": "Covered by Drupal's security advisory policy"
  5456. }
  5457. }
  5458. },
  5459. "notification-url": "https://packages.drupal.org/8/downloads",
  5460. "license": [
  5461. "GPL-2.0-or-later"
  5462. ],
  5463. "authors": [
  5464. {
  5465. "name": "Chris Charlton",
  5466. "homepage": "https://www.drupal.org/user/17089"
  5467. },
  5468. {
  5469. "name": "chx",
  5470. "homepage": "https://www.drupal.org/user/9446"
  5471. },
  5472. {
  5473. "name": "claudiu.cristea",
  5474. "homepage": "https://www.drupal.org/user/56348"
  5475. },
  5476. {
  5477. "name": "dman",
  5478. "homepage": "https://www.drupal.org/user/33240"
  5479. },
  5480. {
  5481. "name": "dopry",
  5482. "homepage": "https://www.drupal.org/user/22202"
  5483. },
  5484. {
  5485. "name": "drewish",
  5486. "homepage": "https://www.drupal.org/user/34869"
  5487. },
  5488. {
  5489. "name": "gdl",
  5490. "homepage": "https://www.drupal.org/user/507326"
  5491. },
  5492. {
  5493. "name": "mondrake",
  5494. "homepage": "https://www.drupal.org/user/1307444"
  5495. },
  5496. {
  5497. "name": "quicksketch",
  5498. "homepage": "https://www.drupal.org/user/35821"
  5499. },
  5500. {
  5501. "name": "sun",
  5502. "homepage": "https://www.drupal.org/user/54136"
  5503. },
  5504. {
  5505. "name": "walkah",
  5506. "homepage": "https://www.drupal.org/user/1531"
  5507. }
  5508. ],
  5509. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5510. "homepage": "https://www.drupal.org/project/imagemagick",
  5511. "support": {
  5512. "source": "https://git.drupalcode.org/project/imagemagick"
  5513. }
  5514. },
  5515. {
  5516. "name": "drupal/imce",
  5517. "version": "2.4.0",
  5518. "source": {
  5519. "type": "git",
  5520. "url": "https://git.drupalcode.org/project/imce.git",
  5521. "reference": "8.x-2.4"
  5522. },
  5523. "dist": {
  5524. "type": "zip",
  5525. "url": "https://ftp.drupal.org/files/projects/imce-8.x-2.4.zip",
  5526. "reference": "8.x-2.4",
  5527. "shasum": "2797d6a669b739490edd00c753303cd9263f8dc3"
  5528. },
  5529. "require": {
  5530. "drupal/core": "^8.8 || ^9"
  5531. },
  5532. "type": "drupal-module",
  5533. "extra": {
  5534. "drupal": {
  5535. "version": "8.x-2.4",
  5536. "datestamp": "1618251147",
  5537. "security-coverage": {
  5538. "status": "covered",
  5539. "message": "Covered by Drupal's security advisory policy"
  5540. }
  5541. }
  5542. },
  5543. "notification-url": "https://packages.drupal.org/8/downloads",
  5544. "license": [
  5545. "GPL-2.0-or-later"
  5546. ],
  5547. "authors": [
  5548. {
  5549. "name": "See contributors",
  5550. "homepage": "https://www.drupal.org/node/2841111/committers",
  5551. "role": "Developer"
  5552. },
  5553. {
  5554. "name": "ufku",
  5555. "homepage": "https://www.drupal.org/user/9910"
  5556. }
  5557. ],
  5558. "description": "Provides a file manager supporting personal folders.",
  5559. "homepage": "https://drupal.org/project/imce",
  5560. "support": {
  5561. "source": "https://git.drupalcode.org/project/imce",
  5562. "issues": "https://www.drupal.org/project/issues/imce?version=8.x"
  5563. }
  5564. },
  5565. {
  5566. "name": "drupal/inline_entity_form",
  5567. "version": "1.0.0-rc9",
  5568. "source": {
  5569. "type": "git",
  5570. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5571. "reference": "8.x-1.0-rc9"
  5572. },
  5573. "dist": {
  5574. "type": "zip",
  5575. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc9.zip",
  5576. "reference": "8.x-1.0-rc9",
  5577. "shasum": "78953103a9c6e4e44bc877820a35f39913ea4559"
  5578. },
  5579. "require": {
  5580. "drupal/core": "^8.8 || ^9",
  5581. "php": ">=7.1"
  5582. },
  5583. "require-dev": {
  5584. "drupal/entity_reference_revisions": "^1.0"
  5585. },
  5586. "type": "drupal-module",
  5587. "extra": {
  5588. "drupal": {
  5589. "version": "8.x-1.0-rc9",
  5590. "datestamp": "1618174486",
  5591. "security-coverage": {
  5592. "status": "not-covered",
  5593. "message": "RC releases are not covered by Drupal security advisories."
  5594. }
  5595. }
  5596. },
  5597. "notification-url": "https://packages.drupal.org/8/downloads",
  5598. "license": [
  5599. "GPL-2.0-or-later"
  5600. ],
  5601. "authors": [
  5602. {
  5603. "name": "bojanz",
  5604. "homepage": "https://www.drupal.org/user/86106"
  5605. },
  5606. {
  5607. "name": "dawehner",
  5608. "homepage": "https://www.drupal.org/user/99340"
  5609. },
  5610. {
  5611. "name": "geek-merlin",
  5612. "homepage": "https://www.drupal.org/user/229048"
  5613. },
  5614. {
  5615. "name": "joachim",
  5616. "homepage": "https://www.drupal.org/user/107701"
  5617. },
  5618. {
  5619. "name": "jsacksick",
  5620. "homepage": "https://www.drupal.org/user/972218"
  5621. },
  5622. {
  5623. "name": "kaythay",
  5624. "homepage": "https://www.drupal.org/user/2182186"
  5625. },
  5626. {
  5627. "name": "oknate",
  5628. "homepage": "https://www.drupal.org/user/471638"
  5629. },
  5630. {
  5631. "name": "rszrama",
  5632. "homepage": "https://www.drupal.org/user/49344"
  5633. },
  5634. {
  5635. "name": "slashrsm",
  5636. "homepage": "https://www.drupal.org/user/744628"
  5637. },
  5638. {
  5639. "name": "webflo",
  5640. "homepage": "https://www.drupal.org/user/254778"
  5641. }
  5642. ],
  5643. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5644. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5645. "support": {
  5646. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5647. }
  5648. },
  5649. {
  5650. "name": "drupal/jquery_ui",
  5651. "version": "1.4.0",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5655. "reference": "8.x-1.4"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5660. "reference": "8.x-1.4",
  5661. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5662. },
  5663. "require": {
  5664. "drupal/core": "^8 || ^9"
  5665. },
  5666. "type": "drupal-module",
  5667. "extra": {
  5668. "drupal": {
  5669. "version": "8.x-1.4",
  5670. "datestamp": "1582149957",
  5671. "security-coverage": {
  5672. "status": "covered",
  5673. "message": "Covered by Drupal's security advisory policy"
  5674. }
  5675. }
  5676. },
  5677. "notification-url": "https://packages.drupal.org/8/downloads",
  5678. "license": [
  5679. "GPL-2.0-or-later"
  5680. ],
  5681. "authors": [
  5682. {
  5683. "name": "RobLoach",
  5684. "homepage": "https://www.drupal.org/user/61114"
  5685. },
  5686. {
  5687. "name": "jjeff",
  5688. "homepage": "https://www.drupal.org/user/17190"
  5689. },
  5690. {
  5691. "name": "lauriii",
  5692. "homepage": "https://www.drupal.org/user/1078742"
  5693. },
  5694. {
  5695. "name": "litwol",
  5696. "homepage": "https://www.drupal.org/user/78134"
  5697. },
  5698. {
  5699. "name": "mfb",
  5700. "homepage": "https://www.drupal.org/user/12302"
  5701. },
  5702. {
  5703. "name": "mfer",
  5704. "homepage": "https://www.drupal.org/user/25701"
  5705. },
  5706. {
  5707. "name": "mikelutz",
  5708. "homepage": "https://www.drupal.org/user/2972409"
  5709. },
  5710. {
  5711. "name": "sun",
  5712. "homepage": "https://www.drupal.org/user/54136"
  5713. },
  5714. {
  5715. "name": "webchick",
  5716. "homepage": "https://www.drupal.org/user/24967"
  5717. },
  5718. {
  5719. "name": "zrpnr",
  5720. "homepage": "https://www.drupal.org/user/1448368"
  5721. }
  5722. ],
  5723. "description": "Provides jQuery UI library.",
  5724. "homepage": "https://www.drupal.org/project/jquery_ui",
  5725. "support": {
  5726. "source": "https://git.drupalcode.org/project/jquery_ui"
  5727. }
  5728. },
  5729. {
  5730. "name": "drupal/jquery_ui_button",
  5731. "version": "1.1.0",
  5732. "source": {
  5733. "type": "git",
  5734. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5735. "reference": "8.x-1.1"
  5736. },
  5737. "dist": {
  5738. "type": "zip",
  5739. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5740. "reference": "8.x-1.1",
  5741. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5742. },
  5743. "require": {
  5744. "drupal/core": "^8 || ^9",
  5745. "drupal/jquery_ui": "*",
  5746. "drupal/jquery_ui_checkboxradio": "*",
  5747. "drupal/jquery_ui_controlgroup": "*"
  5748. },
  5749. "type": "drupal-module",
  5750. "extra": {
  5751. "drupal": {
  5752. "version": "8.x-1.1",
  5753. "datestamp": "1584106807",
  5754. "security-coverage": {
  5755. "status": "covered",
  5756. "message": "Covered by Drupal's security advisory policy"
  5757. }
  5758. }
  5759. },
  5760. "notification-url": "https://packages.drupal.org/8/downloads",
  5761. "license": [
  5762. "GPL-2.0-or-later"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "bnjmnm",
  5767. "homepage": "https://www.drupal.org/user/2369194"
  5768. },
  5769. {
  5770. "name": "lauriii",
  5771. "homepage": "https://www.drupal.org/user/1078742"
  5772. },
  5773. {
  5774. "name": "zrpnr",
  5775. "homepage": "https://www.drupal.org/user/1448368"
  5776. }
  5777. ],
  5778. "description": "Provides jQuery UI Button library.",
  5779. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5780. "support": {
  5781. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5782. }
  5783. },
  5784. {
  5785. "name": "drupal/jquery_ui_checkboxradio",
  5786. "version": "1.2.0",
  5787. "source": {
  5788. "type": "git",
  5789. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5790. "reference": "8.x-1.2"
  5791. },
  5792. "dist": {
  5793. "type": "zip",
  5794. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5795. "reference": "8.x-1.2",
  5796. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5797. },
  5798. "require": {
  5799. "drupal/core": "^8 || ^9",
  5800. "drupal/jquery_ui": "*"
  5801. },
  5802. "type": "drupal-module",
  5803. "extra": {
  5804. "drupal": {
  5805. "version": "8.x-1.2",
  5806. "datestamp": "1584106406",
  5807. "security-coverage": {
  5808. "status": "covered",
  5809. "message": "Covered by Drupal's security advisory policy"
  5810. }
  5811. }
  5812. },
  5813. "notification-url": "https://packages.drupal.org/8/downloads",
  5814. "license": [
  5815. "GPL-2.0-or-later"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "bnjmnm",
  5820. "homepage": "https://www.drupal.org/user/2369194"
  5821. },
  5822. {
  5823. "name": "lauriii",
  5824. "homepage": "https://www.drupal.org/user/1078742"
  5825. },
  5826. {
  5827. "name": "zrpnr",
  5828. "homepage": "https://www.drupal.org/user/1448368"
  5829. }
  5830. ],
  5831. "description": "Provides jQuery UI Checkboxradio library.",
  5832. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5833. "support": {
  5834. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5835. }
  5836. },
  5837. {
  5838. "name": "drupal/jquery_ui_controlgroup",
  5839. "version": "1.1.0",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5843. "reference": "8.x-1.1"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5848. "reference": "8.x-1.1",
  5849. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5850. },
  5851. "require": {
  5852. "drupal/core": "^8 || ^9",
  5853. "drupal/jquery_ui": "*"
  5854. },
  5855. "type": "drupal-module",
  5856. "extra": {
  5857. "drupal": {
  5858. "version": "8.x-1.1",
  5859. "datestamp": "1584106616",
  5860. "security-coverage": {
  5861. "status": "covered",
  5862. "message": "Covered by Drupal's security advisory policy"
  5863. }
  5864. }
  5865. },
  5866. "notification-url": "https://packages.drupal.org/8/downloads",
  5867. "license": [
  5868. "GPL-2.0-or-later"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "bnjmnm",
  5873. "homepage": "https://www.drupal.org/user/2369194"
  5874. },
  5875. {
  5876. "name": "lauriii",
  5877. "homepage": "https://www.drupal.org/user/1078742"
  5878. },
  5879. {
  5880. "name": "zrpnr",
  5881. "homepage": "https://www.drupal.org/user/1448368"
  5882. }
  5883. ],
  5884. "description": "Provides jQuery UI Controlgroup library.",
  5885. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5886. "support": {
  5887. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5888. }
  5889. },
  5890. {
  5891. "name": "drupal/jquery_ui_datepicker",
  5892. "version": "1.1.0",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5896. "reference": "8.x-1.1"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.1.zip",
  5901. "reference": "8.x-1.1",
  5902. "shasum": "69f62467f846bb514a10fa93f4c3b34c6275353f"
  5903. },
  5904. "require": {
  5905. "drupal/core": "^8 || ^9",
  5906. "drupal/jquery_ui": "*"
  5907. },
  5908. "type": "drupal-module",
  5909. "extra": {
  5910. "drupal": {
  5911. "version": "8.x-1.1",
  5912. "datestamp": "1615962535",
  5913. "security-coverage": {
  5914. "status": "covered",
  5915. "message": "Covered by Drupal's security advisory policy"
  5916. }
  5917. }
  5918. },
  5919. "notification-url": "https://packages.drupal.org/8/downloads",
  5920. "license": [
  5921. "GPL-2.0-or-later"
  5922. ],
  5923. "authors": [
  5924. {
  5925. "name": "bnjmnm",
  5926. "homepage": "https://www.drupal.org/user/2369194"
  5927. },
  5928. {
  5929. "name": "ivnish",
  5930. "homepage": "https://www.drupal.org/user/3547706"
  5931. },
  5932. {
  5933. "name": "jrockowitz",
  5934. "homepage": "https://www.drupal.org/user/371407"
  5935. },
  5936. {
  5937. "name": "lauriii",
  5938. "homepage": "https://www.drupal.org/user/1078742"
  5939. },
  5940. {
  5941. "name": "zrpnr",
  5942. "homepage": "https://www.drupal.org/user/1448368"
  5943. }
  5944. ],
  5945. "description": "Provides jQuery UI Datepicker library.",
  5946. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5947. "support": {
  5948. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5949. }
  5950. },
  5951. {
  5952. "name": "drupal/jquery_ui_draggable",
  5953. "version": "1.2.0",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5957. "reference": "8.x-1.2"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  5962. "reference": "8.x-1.2",
  5963. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  5964. },
  5965. "require": {
  5966. "drupal/core": "^8 || ^9",
  5967. "drupal/jquery_ui": "*"
  5968. },
  5969. "type": "drupal-module",
  5970. "extra": {
  5971. "drupal": {
  5972. "version": "8.x-1.2",
  5973. "datestamp": "1582150027",
  5974. "security-coverage": {
  5975. "status": "covered",
  5976. "message": "Covered by Drupal's security advisory policy"
  5977. }
  5978. }
  5979. },
  5980. "notification-url": "https://packages.drupal.org/8/downloads",
  5981. "license": [
  5982. "GPL-2.0-or-later"
  5983. ],
  5984. "authors": [
  5985. {
  5986. "name": "bnjmnm",
  5987. "homepage": "https://www.drupal.org/user/2369194"
  5988. },
  5989. {
  5990. "name": "lauriii",
  5991. "homepage": "https://www.drupal.org/user/1078742"
  5992. },
  5993. {
  5994. "name": "zrpnr",
  5995. "homepage": "https://www.drupal.org/user/1448368"
  5996. }
  5997. ],
  5998. "description": "Provides jQuery UI Draggable library.",
  5999. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  6000. "support": {
  6001. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  6002. }
  6003. },
  6004. {
  6005. "name": "drupal/jquery_ui_droppable",
  6006. "version": "1.2.0",
  6007. "source": {
  6008. "type": "git",
  6009. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  6010. "reference": "8.x-1.2"
  6011. },
  6012. "dist": {
  6013. "type": "zip",
  6014. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  6015. "reference": "8.x-1.2",
  6016. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  6017. },
  6018. "require": {
  6019. "drupal/core": "^8 || ^9",
  6020. "drupal/jquery_ui": "*",
  6021. "drupal/jquery_ui_draggable": "*"
  6022. },
  6023. "type": "drupal-module",
  6024. "extra": {
  6025. "drupal": {
  6026. "version": "8.x-1.2",
  6027. "datestamp": "1582150071",
  6028. "security-coverage": {
  6029. "status": "covered",
  6030. "message": "Covered by Drupal's security advisory policy"
  6031. }
  6032. }
  6033. },
  6034. "notification-url": "https://packages.drupal.org/8/downloads",
  6035. "license": [
  6036. "GPL-2.0-or-later"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "bnjmnm",
  6041. "homepage": "https://www.drupal.org/user/2369194"
  6042. },
  6043. {
  6044. "name": "lauriii",
  6045. "homepage": "https://www.drupal.org/user/1078742"
  6046. },
  6047. {
  6048. "name": "zrpnr",
  6049. "homepage": "https://www.drupal.org/user/1448368"
  6050. }
  6051. ],
  6052. "description": "Provides jQuery UI Droppable library.",
  6053. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  6054. "support": {
  6055. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  6056. }
  6057. },
  6058. {
  6059. "name": "drupal/jquery_ui_slider",
  6060. "version": "1.1.0",
  6061. "source": {
  6062. "type": "git",
  6063. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  6064. "reference": "8.x-1.1"
  6065. },
  6066. "dist": {
  6067. "type": "zip",
  6068. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  6069. "reference": "8.x-1.1",
  6070. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  6071. },
  6072. "require": {
  6073. "drupal/core": "^8 || ^9",
  6074. "drupal/jquery_ui": "*"
  6075. },
  6076. "type": "drupal-module",
  6077. "extra": {
  6078. "drupal": {
  6079. "version": "8.x-1.1",
  6080. "datestamp": "1584107817",
  6081. "security-coverage": {
  6082. "status": "covered",
  6083. "message": "Covered by Drupal's security advisory policy"
  6084. }
  6085. }
  6086. },
  6087. "notification-url": "https://packages.drupal.org/8/downloads",
  6088. "license": [
  6089. "GPL-2.0-or-later"
  6090. ],
  6091. "authors": [
  6092. {
  6093. "name": "bnjmnm",
  6094. "homepage": "https://www.drupal.org/user/2369194"
  6095. },
  6096. {
  6097. "name": "lauriii",
  6098. "homepage": "https://www.drupal.org/user/1078742"
  6099. },
  6100. {
  6101. "name": "zrpnr",
  6102. "homepage": "https://www.drupal.org/user/1448368"
  6103. }
  6104. ],
  6105. "description": "Provides jQuery UI Slider library.",
  6106. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  6107. "support": {
  6108. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  6109. }
  6110. },
  6111. {
  6112. "name": "drupal/jquery_ui_touch_punch",
  6113. "version": "1.0.0",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  6117. "reference": "1.0.0"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  6122. "reference": "1.0.0",
  6123. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  6124. },
  6125. "require": {
  6126. "drupal/core": "^8 || ^9",
  6127. "drupal/jquery_ui": "^1.0"
  6128. },
  6129. "suggest": {
  6130. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  6131. },
  6132. "type": "drupal-module",
  6133. "extra": {
  6134. "drupal": {
  6135. "version": "1.0.0",
  6136. "datestamp": "1591893292",
  6137. "security-coverage": {
  6138. "status": "not-covered",
  6139. "message": "Project has not opted into security advisory coverage!"
  6140. }
  6141. }
  6142. },
  6143. "notification-url": "https://packages.drupal.org/8/downloads",
  6144. "license": [
  6145. "GPL-2.0+"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "Naveen Valecha",
  6150. "homepage": "https://drupal.org/u/naveenvalecha",
  6151. "role": "Maintainer"
  6152. }
  6153. ],
  6154. "description": "Provides jQuery UI Touch Punch library.",
  6155. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6156. "keywords": [
  6157. "Drupal",
  6158. "jquery_ui_touch_punch"
  6159. ],
  6160. "support": {
  6161. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6162. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  6163. "irc": "irc://irc.freenode.org/drupal-contribute"
  6164. }
  6165. },
  6166. {
  6167. "name": "drupal/link_attributes",
  6168. "version": "1.11.0",
  6169. "source": {
  6170. "type": "git",
  6171. "url": "https://git.drupalcode.org/project/link_attributes.git",
  6172. "reference": "8.x-1.11"
  6173. },
  6174. "dist": {
  6175. "type": "zip",
  6176. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  6177. "reference": "8.x-1.11",
  6178. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  6179. },
  6180. "require": {
  6181. "drupal/core": "^8 || ^9"
  6182. },
  6183. "type": "drupal-module",
  6184. "extra": {
  6185. "drupal": {
  6186. "version": "8.x-1.11",
  6187. "datestamp": "1598323550",
  6188. "security-coverage": {
  6189. "status": "covered",
  6190. "message": "Covered by Drupal's security advisory policy"
  6191. }
  6192. }
  6193. },
  6194. "notification-url": "https://packages.drupal.org/8/downloads",
  6195. "license": [
  6196. "GPL-2.0-or-later"
  6197. ],
  6198. "authors": [
  6199. {
  6200. "name": "larowlan",
  6201. "homepage": "https://www.drupal.org/user/395439"
  6202. }
  6203. ],
  6204. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6205. "homepage": "https://www.drupal.org/project/link_attributes",
  6206. "support": {
  6207. "source": "https://git.drupalcode.org/project/link_attributes"
  6208. }
  6209. },
  6210. {
  6211. "name": "drupal/linkit",
  6212. "version": "5.0.0-beta12",
  6213. "source": {
  6214. "type": "git",
  6215. "url": "https://git.drupalcode.org/project/linkit.git",
  6216. "reference": "8.x-5.0-beta12"
  6217. },
  6218. "dist": {
  6219. "type": "zip",
  6220. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta12.zip",
  6221. "reference": "8.x-5.0-beta12",
  6222. "shasum": "9e03975b476f893112d8b12d8b8610926a4e7f2c"
  6223. },
  6224. "require": {
  6225. "drupal/core": "^8.7.7 || ^9"
  6226. },
  6227. "require-dev": {
  6228. "drupal/imce": "*"
  6229. },
  6230. "type": "drupal-module",
  6231. "extra": {
  6232. "drupal": {
  6233. "version": "8.x-5.0-beta12",
  6234. "datestamp": "1608957625",
  6235. "security-coverage": {
  6236. "status": "not-covered",
  6237. "message": "Beta releases are not covered by Drupal security advisories."
  6238. }
  6239. }
  6240. },
  6241. "notification-url": "https://packages.drupal.org/8/downloads",
  6242. "license": [
  6243. "GPL-2.0-or-later"
  6244. ],
  6245. "authors": [
  6246. {
  6247. "name": "Emil Stjerneman",
  6248. "homepage": "https://stjerneman.com",
  6249. "email": "emil@stjerneman.com",
  6250. "role": "Maintainer"
  6251. }
  6252. ],
  6253. "description": "Linkit - Enriched linking experience",
  6254. "homepage": "http://drupal.org/project/linkit",
  6255. "support": {
  6256. "source": "http://cgit.drupalcode.org/linkit",
  6257. "issues": "http://drupal.org/project/linkit"
  6258. }
  6259. },
  6260. {
  6261. "name": "drupal/login_destination",
  6262. "version": "dev-2.x",
  6263. "source": {
  6264. "type": "git",
  6265. "url": "https://git.drupalcode.org/project/login_destination.git",
  6266. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  6267. },
  6268. "require": {
  6269. "drupal/core": "^8.7.10 || ^9"
  6270. },
  6271. "require-dev": {
  6272. "drupal/admin_toolbar": "^1.23",
  6273. "drupal/admin_toolbar_tools": "*"
  6274. },
  6275. "type": "drupal-module",
  6276. "extra": {
  6277. "branch-alias": {
  6278. "dev-2.x": "2.x-dev"
  6279. },
  6280. "drupal": {
  6281. "version": "8.x-2.0-alpha3+8-dev",
  6282. "datestamp": "1603450565",
  6283. "security-coverage": {
  6284. "status": "not-covered",
  6285. "message": "Dev releases are not covered by Drupal security advisories."
  6286. }
  6287. }
  6288. },
  6289. "notification-url": "https://packages.drupal.org/8/downloads",
  6290. "license": [
  6291. "GPL-2.0-or-later"
  6292. ],
  6293. "authors": [
  6294. {
  6295. "name": "3CWebDev",
  6296. "homepage": "https://www.drupal.org/user/61221"
  6297. },
  6298. {
  6299. "name": "Oliver Huynh",
  6300. "homepage": "https://www.drupal.org/user/243730"
  6301. },
  6302. {
  6303. "name": "beautifulmind",
  6304. "homepage": "https://www.drupal.org/user/219482"
  6305. },
  6306. {
  6307. "name": "ddrozdik",
  6308. "homepage": "https://www.drupal.org/user/574124"
  6309. },
  6310. {
  6311. "name": "jng12",
  6312. "homepage": "https://www.drupal.org/user/204316"
  6313. },
  6314. {
  6315. "name": "marcp",
  6316. "homepage": "https://www.drupal.org/user/20885"
  6317. },
  6318. {
  6319. "name": "mithy",
  6320. "homepage": "https://www.drupal.org/user/258911"
  6321. },
  6322. {
  6323. "name": "moshe weitzman",
  6324. "homepage": "https://www.drupal.org/user/23"
  6325. },
  6326. {
  6327. "name": "perennial.sky",
  6328. "homepage": "https://www.drupal.org/user/2622667"
  6329. },
  6330. {
  6331. "name": "rsvelko",
  6332. "homepage": "https://www.drupal.org/user/337401"
  6333. }
  6334. ],
  6335. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  6336. "homepage": "https://www.drupal.org/project/login_destination",
  6337. "support": {
  6338. "source": "https://git.drupalcode.org/project/login_destination"
  6339. }
  6340. },
  6341. {
  6342. "name": "drupal/maillog",
  6343. "version": "dev-1.x",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://git.drupalcode.org/project/maillog.git",
  6347. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6348. },
  6349. "require": {
  6350. "drupal/core": "^8 || ^9"
  6351. },
  6352. "type": "drupal-module",
  6353. "extra": {
  6354. "branch-alias": {
  6355. "dev-1.x": "1.x-dev"
  6356. },
  6357. "drupal": {
  6358. "version": "8.x-1.0-beta1+0-dev",
  6359. "datestamp": "1600799873",
  6360. "security-coverage": {
  6361. "status": "not-covered",
  6362. "message": "Dev releases are not covered by Drupal security advisories."
  6363. }
  6364. }
  6365. },
  6366. "notification-url": "https://packages.drupal.org/8/downloads",
  6367. "license": [
  6368. "GPL-2.0-or-later"
  6369. ],
  6370. "authors": [
  6371. {
  6372. "name": "Berdir",
  6373. "homepage": "https://www.drupal.org/user/214652"
  6374. },
  6375. {
  6376. "name": "DamienMcKenna",
  6377. "homepage": "https://www.drupal.org/user/108450"
  6378. },
  6379. {
  6380. "name": "miro_dietiker",
  6381. "homepage": "https://www.drupal.org/user/227761"
  6382. },
  6383. {
  6384. "name": "pluess",
  6385. "homepage": "https://www.drupal.org/user/84659"
  6386. }
  6387. ],
  6388. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6389. "homepage": "https://www.drupal.org/project/maillog",
  6390. "support": {
  6391. "source": "https://git.drupalcode.org/project/maillog"
  6392. }
  6393. },
  6394. {
  6395. "name": "drupal/mailsystem",
  6396. "version": "4.3.0",
  6397. "source": {
  6398. "type": "git",
  6399. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6400. "reference": "8.x-4.3"
  6401. },
  6402. "dist": {
  6403. "type": "zip",
  6404. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6405. "reference": "8.x-4.3",
  6406. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6407. },
  6408. "require": {
  6409. "drupal/core": "^8.7.7 || ^9"
  6410. },
  6411. "type": "drupal-module",
  6412. "extra": {
  6413. "drupal": {
  6414. "version": "8.x-4.3",
  6415. "datestamp": "1586203024",
  6416. "security-coverage": {
  6417. "status": "covered",
  6418. "message": "Covered by Drupal's security advisory policy"
  6419. }
  6420. }
  6421. },
  6422. "notification-url": "https://packages.drupal.org/8/downloads",
  6423. "license": [
  6424. "GPL-2.0+"
  6425. ],
  6426. "authors": [
  6427. {
  6428. "name": "Berdir",
  6429. "homepage": "https://www.drupal.org/user/214652"
  6430. },
  6431. {
  6432. "name": "Les Lim",
  6433. "homepage": "https://www.drupal.org/user/84263"
  6434. },
  6435. {
  6436. "name": "Manuel Garcia",
  6437. "homepage": "https://www.drupal.org/user/213194"
  6438. },
  6439. {
  6440. "name": "Nafes",
  6441. "homepage": "https://www.drupal.org/user/2489926"
  6442. },
  6443. {
  6444. "name": "miro_dietiker",
  6445. "homepage": "https://www.drupal.org/user/227761"
  6446. },
  6447. {
  6448. "name": "pillarsdotnet",
  6449. "homepage": "https://www.drupal.org/user/36148"
  6450. }
  6451. ],
  6452. "description": "Mail System",
  6453. "homepage": "https://www.drupal.org/project/mailsystem",
  6454. "support": {
  6455. "source": "https://git.drupalcode.org/project/mailsystem"
  6456. }
  6457. },
  6458. {
  6459. "name": "drupal/matomo",
  6460. "version": "1.11.0",
  6461. "source": {
  6462. "type": "git",
  6463. "url": "https://git.drupalcode.org/project/matomo.git",
  6464. "reference": "8.x-1.11"
  6465. },
  6466. "dist": {
  6467. "type": "zip",
  6468. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6469. "reference": "8.x-1.11",
  6470. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6471. },
  6472. "require": {
  6473. "drupal/core": "^8 || ^9"
  6474. },
  6475. "require-dev": {
  6476. "drupal/php": "*",
  6477. "drupal/token": "*"
  6478. },
  6479. "type": "drupal-module",
  6480. "extra": {
  6481. "drupal": {
  6482. "version": "8.x-1.11",
  6483. "datestamp": "1601651459",
  6484. "security-coverage": {
  6485. "status": "covered",
  6486. "message": "Covered by Drupal's security advisory policy"
  6487. }
  6488. }
  6489. },
  6490. "notification-url": "https://packages.drupal.org/8/downloads",
  6491. "license": [
  6492. "GPL-2.0-or-later"
  6493. ],
  6494. "authors": [
  6495. {
  6496. "name": "Carsten Logemann",
  6497. "homepage": "https://www.drupal.org/u/C_Logemann"
  6498. },
  6499. {
  6500. "name": "Shelane French",
  6501. "homepage": "https://www.drupal.org/u/shelane"
  6502. },
  6503. {
  6504. "name": "See other contributors",
  6505. "homepage": "https://www.drupal.org/node/247808/committers"
  6506. }
  6507. ],
  6508. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6509. "homepage": "https://www.drupal.org/project/matomo",
  6510. "support": {
  6511. "source": "https://git.drupal.org/project/matomo.git",
  6512. "issues": "https://www.drupal.org/project/issues/matomo"
  6513. }
  6514. },
  6515. {
  6516. "name": "drupal/maxlength",
  6517. "version": "1.0.0-rc1",
  6518. "source": {
  6519. "type": "git",
  6520. "url": "https://git.drupalcode.org/project/maxlength.git",
  6521. "reference": "8.x-1.0-rc1"
  6522. },
  6523. "dist": {
  6524. "type": "zip",
  6525. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6526. "reference": "8.x-1.0-rc1",
  6527. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6528. },
  6529. "require": {
  6530. "drupal/core": "^8.8 || ^9"
  6531. },
  6532. "type": "drupal-module",
  6533. "extra": {
  6534. "drupal": {
  6535. "version": "8.x-1.0-rc1",
  6536. "datestamp": "1593198218",
  6537. "security-coverage": {
  6538. "status": "not-covered",
  6539. "message": "RC releases are not covered by Drupal security advisories."
  6540. }
  6541. }
  6542. },
  6543. "notification-url": "https://packages.drupal.org/8/downloads",
  6544. "license": [
  6545. "GPL-2.0-or-later"
  6546. ],
  6547. "authors": [
  6548. {
  6549. "name": "Aron Novak",
  6550. "homepage": "https://www.drupal.org/user/61864"
  6551. },
  6552. {
  6553. "name": "Schnitzel",
  6554. "homepage": "https://www.drupal.org/user/643820"
  6555. },
  6556. {
  6557. "name": "a_c_m",
  6558. "homepage": "https://www.drupal.org/user/195063"
  6559. },
  6560. {
  6561. "name": "barneytech",
  6562. "homepage": "https://www.drupal.org/user/669922"
  6563. },
  6564. {
  6565. "name": "claudiu_cristea",
  6566. "homepage": "https://www.drupal.org/user/2623935"
  6567. },
  6568. {
  6569. "name": "dawehner",
  6570. "homepage": "https://www.drupal.org/user/99340"
  6571. },
  6572. {
  6573. "name": "derhasi",
  6574. "homepage": "https://www.drupal.org/user/83474"
  6575. },
  6576. {
  6577. "name": "frjo",
  6578. "homepage": "https://www.drupal.org/user/5546"
  6579. },
  6580. {
  6581. "name": "hefox",
  6582. "homepage": "https://www.drupal.org/user/426416"
  6583. },
  6584. {
  6585. "name": "jm.federico",
  6586. "homepage": "https://www.drupal.org/user/509892"
  6587. },
  6588. {
  6589. "name": "k4v",
  6590. "homepage": "https://www.drupal.org/user/744246"
  6591. },
  6592. {
  6593. "name": "mariano73",
  6594. "homepage": "https://www.drupal.org/user/1324866"
  6595. },
  6596. {
  6597. "name": "mariuss",
  6598. "homepage": "https://www.drupal.org/user/28539"
  6599. },
  6600. {
  6601. "name": "sanduhrs",
  6602. "homepage": "https://www.drupal.org/user/28074"
  6603. },
  6604. {
  6605. "name": "vasi1186",
  6606. "homepage": "https://www.drupal.org/user/342104"
  6607. },
  6608. {
  6609. "name": "webiator GmbH",
  6610. "homepage": "https://www.drupal.org/user/2390554"
  6611. }
  6612. ],
  6613. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6614. "homepage": "https://www.drupal.org/project/maxlength",
  6615. "support": {
  6616. "source": "https://git.drupalcode.org/project/maxlength"
  6617. }
  6618. },
  6619. {
  6620. "name": "drupal/menu_admin_per_menu",
  6621. "version": "1.3.0",
  6622. "source": {
  6623. "type": "git",
  6624. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6625. "reference": "8.x-1.3"
  6626. },
  6627. "dist": {
  6628. "type": "zip",
  6629. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6630. "reference": "8.x-1.3",
  6631. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6632. },
  6633. "require": {
  6634. "drupal/core": "^8 || ^9"
  6635. },
  6636. "type": "drupal-module",
  6637. "extra": {
  6638. "drupal": {
  6639. "version": "8.x-1.3",
  6640. "datestamp": "1593436060",
  6641. "security-coverage": {
  6642. "status": "covered",
  6643. "message": "Covered by Drupal's security advisory policy"
  6644. }
  6645. }
  6646. },
  6647. "notification-url": "https://packages.drupal.org/8/downloads",
  6648. "license": [
  6649. "GPL-2.0-or-later"
  6650. ],
  6651. "authors": [
  6652. {
  6653. "name": "JeroenT",
  6654. "homepage": "https://www.drupal.org/user/2228934"
  6655. },
  6656. {
  6657. "name": "anrikun",
  6658. "homepage": "https://www.drupal.org/user/410199"
  6659. },
  6660. {
  6661. "name": "jonas139",
  6662. "homepage": "https://www.drupal.org/user/2873401"
  6663. },
  6664. {
  6665. "name": "mkdok",
  6666. "homepage": "https://www.drupal.org/user/3308753"
  6667. }
  6668. ],
  6669. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6670. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6671. "support": {
  6672. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6673. }
  6674. },
  6675. {
  6676. "name": "drupal/menu_block",
  6677. "version": "dev-1.x",
  6678. "source": {
  6679. "type": "git",
  6680. "url": "https://git.drupalcode.org/project/menu_block.git",
  6681. "reference": "17bc5a2094dec85a921fdac6aff0030bfe004744"
  6682. },
  6683. "require": {
  6684. "drupal/core": "^8 || ^9"
  6685. },
  6686. "type": "drupal-module",
  6687. "extra": {
  6688. "branch-alias": {
  6689. "dev-1.x": "1.x-dev"
  6690. },
  6691. "drupal": {
  6692. "version": "8.x-1.6+8-dev",
  6693. "datestamp": "1609550251",
  6694. "security-coverage": {
  6695. "status": "not-covered",
  6696. "message": "Dev releases are not covered by Drupal security advisories."
  6697. }
  6698. }
  6699. },
  6700. "notification-url": "https://packages.drupal.org/8/downloads",
  6701. "license": [
  6702. "GPL-2.0-or-later"
  6703. ],
  6704. "authors": [
  6705. {
  6706. "name": "Dave Reid",
  6707. "homepage": "https://www.drupal.org/user/53892"
  6708. },
  6709. {
  6710. "name": "JohnAlbin",
  6711. "homepage": "https://www.drupal.org/user/32095"
  6712. },
  6713. {
  6714. "name": "RenatoG",
  6715. "homepage": "https://www.drupal.org/user/3326031"
  6716. },
  6717. {
  6718. "name": "joelpittet",
  6719. "homepage": "https://www.drupal.org/user/160302"
  6720. },
  6721. {
  6722. "name": "kim.pepper",
  6723. "homepage": "https://www.drupal.org/user/370574"
  6724. },
  6725. {
  6726. "name": "rrrob",
  6727. "homepage": "https://www.drupal.org/user/273533"
  6728. }
  6729. ],
  6730. "description": "Provides configurable blocks of menu links.",
  6731. "homepage": "https://www.drupal.org/project/menu_block",
  6732. "support": {
  6733. "source": "https://git.drupalcode.org/project/menu_block"
  6734. }
  6735. },
  6736. {
  6737. "name": "drupal/menu_position",
  6738. "version": "dev-1.x",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://git.drupalcode.org/project/menu_position.git",
  6742. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6743. },
  6744. "require": {
  6745. "drupal/core": "^8 || ^9"
  6746. },
  6747. "type": "drupal-module",
  6748. "extra": {
  6749. "branch-alias": {
  6750. "dev-1.x": "1.x-dev"
  6751. },
  6752. "drupal": {
  6753. "version": "8.x-1.0-alpha4+4-dev",
  6754. "datestamp": "1587797468",
  6755. "security-coverage": {
  6756. "status": "not-covered",
  6757. "message": "Dev releases are not covered by Drupal security advisories."
  6758. }
  6759. }
  6760. },
  6761. "notification-url": "https://packages.drupal.org/8/downloads",
  6762. "license": [
  6763. "GPL-2.0+"
  6764. ],
  6765. "authors": [
  6766. {
  6767. "name": "BarisW",
  6768. "homepage": "https://www.drupal.org/user/107229"
  6769. },
  6770. {
  6771. "name": "JohnAlbin",
  6772. "homepage": "https://www.drupal.org/user/32095"
  6773. },
  6774. {
  6775. "name": "Sutharsan",
  6776. "homepage": "https://www.drupal.org/user/73854"
  6777. },
  6778. {
  6779. "name": "joelpittet",
  6780. "homepage": "https://www.drupal.org/user/160302"
  6781. },
  6782. {
  6783. "name": "lbainbridge",
  6784. "homepage": "https://www.drupal.org/user/2406996"
  6785. }
  6786. ],
  6787. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6788. "homepage": "https://www.drupal.org/project/menu_position",
  6789. "support": {
  6790. "source": "https://git.drupalcode.org/project/menu_position",
  6791. "issues": "https://www.drupal.org/project/issues/menu_position"
  6792. }
  6793. },
  6794. {
  6795. "name": "drupal/migrate_devel",
  6796. "version": "dev-2.x",
  6797. "source": {
  6798. "type": "git",
  6799. "url": "https://git.drupalcode.org/project/migrate_devel.git",
  6800. "reference": "c60d049d91389bde0cc5368fabfda24c5eb61780"
  6801. },
  6802. "require": {
  6803. "drupal/core": "^8 || ^9"
  6804. },
  6805. "conflict": {
  6806. "drush/drush": "<9"
  6807. },
  6808. "type": "drupal-module",
  6809. "extra": {
  6810. "branch-alias": {
  6811. "dev-2.x": "2.x-dev"
  6812. },
  6813. "drupal": {
  6814. "version": "8.x-2.0-alpha1+3-dev",
  6815. "datestamp": "1592898665",
  6816. "security-coverage": {
  6817. "status": "not-covered",
  6818. "message": "Dev releases are not covered by Drupal security advisories."
  6819. }
  6820. },
  6821. "drush": {
  6822. "services": {
  6823. "drush.services.yml": "^9"
  6824. }
  6825. }
  6826. },
  6827. "notification-url": "https://packages.drupal.org/8/downloads",
  6828. "license": [
  6829. "GPL-2.0-or-later"
  6830. ],
  6831. "authors": [
  6832. {
  6833. "name": "Derimagia",
  6834. "homepage": "https://www.drupal.org/user/819640"
  6835. },
  6836. {
  6837. "name": "aczietlow",
  6838. "homepage": "https://www.drupal.org/user/1616656"
  6839. },
  6840. {
  6841. "name": "andrewmacpherson",
  6842. "homepage": "https://www.drupal.org/user/265648"
  6843. }
  6844. ],
  6845. "description": "Migrate Development Tools",
  6846. "homepage": "https://www.drupal.org/project/migrate_devel",
  6847. "support": {
  6848. "source": "https://git.drupalcode.org/project/migrate_devel",
  6849. "issues": "https://www.drupal.org/project/issues/migrate_devel"
  6850. }
  6851. },
  6852. {
  6853. "name": "drupal/migrate_plus",
  6854. "version": "5.1.0",
  6855. "source": {
  6856. "type": "git",
  6857. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  6858. "reference": "8.x-5.1"
  6859. },
  6860. "dist": {
  6861. "type": "zip",
  6862. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.1.zip",
  6863. "reference": "8.x-5.1",
  6864. "shasum": "1257427ab0c64459c3c1e42bb2a98d3114b77163"
  6865. },
  6866. "require": {
  6867. "drupal/core": "^8.8 || ^9",
  6868. "php": ">=7.1"
  6869. },
  6870. "require-dev": {
  6871. "drupal/migrate_example_advanced_setup": "*",
  6872. "drupal/migrate_example_setup": "*"
  6873. },
  6874. "suggest": {
  6875. "ext-soap": "*",
  6876. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  6877. },
  6878. "type": "drupal-module",
  6879. "extra": {
  6880. "drupal": {
  6881. "version": "8.x-5.1",
  6882. "datestamp": "1588261060",
  6883. "security-coverage": {
  6884. "status": "covered",
  6885. "message": "Covered by Drupal's security advisory policy"
  6886. }
  6887. }
  6888. },
  6889. "notification-url": "https://packages.drupal.org/8/downloads",
  6890. "license": [
  6891. "GPL-2.0-or-later"
  6892. ],
  6893. "authors": [
  6894. {
  6895. "name": "Mike Ryan",
  6896. "homepage": "https://www.drupal.org/u/mikeryan",
  6897. "role": "Maintainer"
  6898. },
  6899. {
  6900. "name": "Lucas Hedding",
  6901. "homepage": "https://www.drupal.org/u/heddn",
  6902. "role": "Maintainer"
  6903. }
  6904. ],
  6905. "description": "Enhancements to core migration support.",
  6906. "homepage": "https://www.drupal.org/project/migrate_plus",
  6907. "support": {
  6908. "source": "https://git.drupalcode.org/project/migrate_plus",
  6909. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  6910. "slack": "#migrate"
  6911. }
  6912. },
  6913. {
  6914. "name": "drupal/migrate_tools",
  6915. "version": "dev-5.x",
  6916. "source": {
  6917. "type": "git",
  6918. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  6919. "reference": "7ae3747d1e30790d11c2eefcc56e0796bea25c76"
  6920. },
  6921. "require": {
  6922. "drupal/core": "^8.8 | ^9",
  6923. "drupal/migrate_plus": "^5",
  6924. "php": ">=7.1"
  6925. },
  6926. "require-dev": {
  6927. "drupal/migrate_source_csv": "^3.0",
  6928. "drush/drush": "^10"
  6929. },
  6930. "suggest": {
  6931. "drush/drush": "^9 || ^10"
  6932. },
  6933. "type": "drupal-module",
  6934. "extra": {
  6935. "branch-alias": {
  6936. "dev-5.x": "5.x-dev"
  6937. },
  6938. "drupal": {
  6939. "version": "8.x-5.0+11-dev",
  6940. "datestamp": "1609524878",
  6941. "security-coverage": {
  6942. "status": "not-covered",
  6943. "message": "Dev releases are not covered by Drupal security advisories."
  6944. }
  6945. },
  6946. "drush": {
  6947. "services": {
  6948. "drush.services.yml": "^9 || ^10"
  6949. }
  6950. }
  6951. },
  6952. "notification-url": "https://packages.drupal.org/8/downloads",
  6953. "license": [
  6954. "GPL-2.0-or-later"
  6955. ],
  6956. "authors": [
  6957. {
  6958. "name": "Mike Ryan",
  6959. "homepage": "https://www.drupal.org/u/mikeryan",
  6960. "role": "Maintainer"
  6961. },
  6962. {
  6963. "name": "Lucas Hedding",
  6964. "homepage": "https://www.drupal.org/u/heddn",
  6965. "role": "Maintainer"
  6966. }
  6967. ],
  6968. "description": "Tools to assist in developing and running migrations.",
  6969. "homepage": "http://drupal.org/project/migrate_tools",
  6970. "support": {
  6971. "source": "https://git.drupalcode.org/project/migrate_tools",
  6972. "issues": "https://www.drupal.org/project/issues/migrate_tools",
  6973. "slack": "#migrate"
  6974. }
  6975. },
  6976. {
  6977. "name": "drupal/page_manager",
  6978. "version": "dev-4.x",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://git.drupalcode.org/project/page_manager.git",
  6982. "reference": "60182ede026574a1aac35b760eae12706a217e68"
  6983. },
  6984. "require": {
  6985. "drupal/core": "^8.8 || ^9",
  6986. "drupal/ctools": "^3.1"
  6987. },
  6988. "type": "drupal-module",
  6989. "extra": {
  6990. "branch-alias": {
  6991. "dev-4.x": "4.x-dev",
  6992. "dev-8.x-4.x": "4.x-dev"
  6993. },
  6994. "drupal": {
  6995. "version": "8.x-4.0-beta5+10-dev",
  6996. "datestamp": "1591120155",
  6997. "security-coverage": {
  6998. "status": "not-covered",
  6999. "message": "Project has not opted into security advisory coverage!"
  7000. }
  7001. }
  7002. },
  7003. "notification-url": "https://packages.drupal.org/8/downloads",
  7004. "license": [
  7005. "GPL-2.0-or-later"
  7006. ],
  7007. "authors": [
  7008. {
  7009. "name": "Tim Plunkett",
  7010. "homepage": "https://www.drupal.org/u/tim.plunkett",
  7011. "role": "Maintainer"
  7012. },
  7013. {
  7014. "name": "dsnopek",
  7015. "homepage": "https://www.drupal.org/user/266527"
  7016. },
  7017. {
  7018. "name": "japerry",
  7019. "homepage": "https://www.drupal.org/user/45640"
  7020. },
  7021. {
  7022. "name": "manuel.adan",
  7023. "homepage": "https://www.drupal.org/user/516420"
  7024. },
  7025. {
  7026. "name": "phenaproxima",
  7027. "homepage": "https://www.drupal.org/user/205645"
  7028. }
  7029. ],
  7030. "description": "Provides a way to place blocks on a custom page.",
  7031. "homepage": "https://www.drupal.org/project/page_manager",
  7032. "support": {
  7033. "source": "https://git.drupal.org/project/page_manager.git",
  7034. "issues": "https://www.drupal.org/project/issues/page_manager",
  7035. "irc": "irc://irc.freenode.org/drupal-contribute"
  7036. }
  7037. },
  7038. {
  7039. "name": "drupal/pagerer",
  7040. "version": "2.0.0",
  7041. "source": {
  7042. "type": "git",
  7043. "url": "https://git.drupalcode.org/project/pagerer.git",
  7044. "reference": "8.x-2.0"
  7045. },
  7046. "dist": {
  7047. "type": "zip",
  7048. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  7049. "reference": "8.x-2.0",
  7050. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  7051. },
  7052. "require": {
  7053. "drupal/core": "^8.8 || ^9",
  7054. "drupal/jquery_ui_button": "*",
  7055. "drupal/jquery_ui_slider": "*",
  7056. "php": ">=7.1"
  7057. },
  7058. "type": "drupal-module",
  7059. "extra": {
  7060. "drupal": {
  7061. "version": "8.x-2.0",
  7062. "datestamp": "1589289359",
  7063. "security-coverage": {
  7064. "status": "covered",
  7065. "message": "Covered by Drupal's security advisory policy"
  7066. }
  7067. }
  7068. },
  7069. "notification-url": "https://packages.drupal.org/8/downloads",
  7070. "license": [
  7071. "GPL-2.0-or-later"
  7072. ],
  7073. "authors": [
  7074. {
  7075. "name": "mondrake",
  7076. "homepage": "https://www.drupal.org/user/1307444"
  7077. }
  7078. ],
  7079. "description": "Configurable pager styles.",
  7080. "homepage": "https://www.drupal.org/project/pagerer",
  7081. "support": {
  7082. "source": "https://git.drupalcode.org/project/pagerer"
  7083. }
  7084. },
  7085. {
  7086. "name": "drupal/panelizer",
  7087. "version": "4.4.0",
  7088. "source": {
  7089. "type": "git",
  7090. "url": "https://git.drupalcode.org/project/panelizer.git",
  7091. "reference": "8.x-4.4"
  7092. },
  7093. "dist": {
  7094. "type": "zip",
  7095. "url": "https://ftp.drupal.org/files/projects/panelizer-8.x-4.4.zip",
  7096. "reference": "8.x-4.4",
  7097. "shasum": "2d19f0be1ad05a0882a276befabf746041b1b5d8"
  7098. },
  7099. "require": {
  7100. "drupal/core": "^8.8 || ^9",
  7101. "drupal/ctools": ">=3.1.0",
  7102. "drupal/ctools_block": "*",
  7103. "drupal/panels": ">=4.4.0",
  7104. "drupal/panels_ipe": "*"
  7105. },
  7106. "type": "drupal-module",
  7107. "extra": {
  7108. "drupal": {
  7109. "version": "8.x-4.4",
  7110. "datestamp": "1588097387",
  7111. "security-coverage": {
  7112. "status": "covered",
  7113. "message": "Covered by Drupal's security advisory policy"
  7114. }
  7115. },
  7116. "branch-alias": {
  7117. "dev-8.x-4.x": "4.x-dev"
  7118. }
  7119. },
  7120. "notification-url": "https://packages.drupal.org/8/downloads",
  7121. "license": [
  7122. "GPL-2.0+"
  7123. ],
  7124. "authors": [
  7125. {
  7126. "name": "Damien McKenna",
  7127. "homepage": "https://www.drupal.org/u/damienmckenna"
  7128. },
  7129. {
  7130. "name": "Kris Vanderwater",
  7131. "homepage": "https://www.drupal.org/u/eclipsegc"
  7132. },
  7133. {
  7134. "name": "David Snopek",
  7135. "homepage": "https://www.drupal.org/u/dsnopek"
  7136. },
  7137. {
  7138. "name": "Jakob Perry",
  7139. "homepage": "https://www.drupal.org/u/japerry"
  7140. },
  7141. {
  7142. "name": "Earl Miles",
  7143. "homepage": "https://www.drupal.org/u/merlinofchaos"
  7144. },
  7145. {
  7146. "name": "See other contributors",
  7147. "homepage": "https://www.drupal.org/node/1072922/committers"
  7148. },
  7149. {
  7150. "name": "phenaproxima",
  7151. "homepage": "https://www.drupal.org/user/205645"
  7152. },
  7153. {
  7154. "name": "tim.plunkett",
  7155. "homepage": "https://www.drupal.org/user/241634"
  7156. }
  7157. ],
  7158. "description": "Allow any entity view mode to be rendered using a Panels display.",
  7159. "homepage": "https://www.drupal.org/project/panelizer",
  7160. "support": {
  7161. "source": "http://git.drupal.org/project/panelizer.git",
  7162. "issues": "https://www.drupal.org/project/issues/panelizer",
  7163. "irc": "irc://irc.freenode.org/drupal-scotch"
  7164. }
  7165. },
  7166. {
  7167. "name": "drupal/panels",
  7168. "version": "4.6.0",
  7169. "source": {
  7170. "type": "git",
  7171. "url": "https://git.drupalcode.org/project/panels.git",
  7172. "reference": "8.x-4.6"
  7173. },
  7174. "dist": {
  7175. "type": "zip",
  7176. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.6.zip",
  7177. "reference": "8.x-4.6",
  7178. "shasum": "6430436a4d8fb64f8c113729dd92505a1e46b794"
  7179. },
  7180. "require": {
  7181. "drupal/core": "^8.8 || ^9",
  7182. "drupal/ctools": ">=3.0.0",
  7183. "drupal/jquery_ui_droppable": "^1.2"
  7184. },
  7185. "require-dev": {
  7186. "drupal/jquery_ui_droppable": "*",
  7187. "drupal/page_manager": "^4"
  7188. },
  7189. "type": "drupal-module",
  7190. "extra": {
  7191. "drupal": {
  7192. "version": "8.x-4.6",
  7193. "datestamp": "1585870866",
  7194. "security-coverage": {
  7195. "status": "covered",
  7196. "message": "Covered by Drupal's security advisory policy"
  7197. }
  7198. },
  7199. "branch-alias": {
  7200. "dev-8.x-4.x": "4.x-dev"
  7201. }
  7202. },
  7203. "notification-url": "https://packages.drupal.org/8/downloads",
  7204. "license": [
  7205. "GPL-2.0+"
  7206. ],
  7207. "authors": [
  7208. {
  7209. "name": "Jakob Perry",
  7210. "homepage": "https://www.drupal.org/u/japerry"
  7211. },
  7212. {
  7213. "name": "Samuel Mortenson",
  7214. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  7215. },
  7216. {
  7217. "name": "See other contributors",
  7218. "homepage": "https://www.drupal.org/node/74958/committers"
  7219. },
  7220. {
  7221. "name": "japerry",
  7222. "homepage": "https://www.drupal.org/user/45640"
  7223. },
  7224. {
  7225. "name": "joelpittet",
  7226. "homepage": "https://www.drupal.org/user/160302"
  7227. },
  7228. {
  7229. "name": "merlinofchaos",
  7230. "homepage": "https://www.drupal.org/user/26979"
  7231. },
  7232. {
  7233. "name": "neclimdul",
  7234. "homepage": "https://www.drupal.org/user/48673"
  7235. },
  7236. {
  7237. "name": "phenaproxima",
  7238. "homepage": "https://www.drupal.org/user/205645"
  7239. },
  7240. {
  7241. "name": "samuel.mortenson",
  7242. "homepage": "https://www.drupal.org/user/2582268"
  7243. },
  7244. {
  7245. "name": "tim.plunkett",
  7246. "homepage": "https://www.drupal.org/user/241634"
  7247. }
  7248. ],
  7249. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  7250. "homepage": "https://www.drupal.org/project/panels",
  7251. "support": {
  7252. "source": "http://git.drupal.org/project/panels.git",
  7253. "issues": "https://www.drupal.org/project/issues/panels",
  7254. "irc": "irc://irc.freenode.org/drupal-scotch"
  7255. }
  7256. },
  7257. {
  7258. "name": "drupal/panels_ipe",
  7259. "version": "4.6.0",
  7260. "require": {
  7261. "drupal/core": "^8.8 || ^9",
  7262. "drupal/jquery_ui_droppable": "*",
  7263. "drupal/panels": "*"
  7264. },
  7265. "type": "metapackage",
  7266. "extra": {
  7267. "drupal": {
  7268. "version": "8.x-4.6",
  7269. "datestamp": "1585870866",
  7270. "security-coverage": {
  7271. "status": "covered",
  7272. "message": "Covered by Drupal's security advisory policy"
  7273. }
  7274. }
  7275. },
  7276. "notification-url": "https://packages.drupal.org/8/downloads",
  7277. "license": [
  7278. "GPL-2.0-or-later"
  7279. ],
  7280. "authors": [
  7281. {
  7282. "name": "EclipseGc",
  7283. "homepage": "https://www.drupal.org/user/61203"
  7284. },
  7285. {
  7286. "name": "Letharion",
  7287. "homepage": "https://www.drupal.org/user/373603"
  7288. },
  7289. {
  7290. "name": "esmerel",
  7291. "homepage": "https://www.drupal.org/user/164022"
  7292. },
  7293. {
  7294. "name": "japerry",
  7295. "homepage": "https://www.drupal.org/user/45640"
  7296. },
  7297. {
  7298. "name": "joelpittet",
  7299. "homepage": "https://www.drupal.org/user/160302"
  7300. },
  7301. {
  7302. "name": "merlinofchaos",
  7303. "homepage": "https://www.drupal.org/user/26979"
  7304. },
  7305. {
  7306. "name": "neclimdul",
  7307. "homepage": "https://www.drupal.org/user/48673"
  7308. },
  7309. {
  7310. "name": "phenaproxima",
  7311. "homepage": "https://www.drupal.org/user/205645"
  7312. },
  7313. {
  7314. "name": "samuel.mortenson",
  7315. "homepage": "https://www.drupal.org/user/2582268"
  7316. },
  7317. {
  7318. "name": "tim.plunkett",
  7319. "homepage": "https://www.drupal.org/user/241634"
  7320. }
  7321. ],
  7322. "description": "Panels In-place editor.",
  7323. "homepage": "https://www.drupal.org/project/panels",
  7324. "support": {
  7325. "source": "https://git.drupalcode.org/project/panels"
  7326. }
  7327. },
  7328. {
  7329. "name": "drupal/paragraphs",
  7330. "version": "dev-1.x",
  7331. "source": {
  7332. "type": "git",
  7333. "url": "https://git.drupalcode.org/project/paragraphs.git",
  7334. "reference": "108c16ad07fdec0fdf3f272c8c6195d03a7afa7d"
  7335. },
  7336. "require": {
  7337. "drupal/core": "^8.8 || ^9",
  7338. "drupal/entity_reference_revisions": "~1.3"
  7339. },
  7340. "require-dev": {
  7341. "drupal/block_field": "~1.0",
  7342. "drupal/ctools": "3.x-dev",
  7343. "drupal/diff": "~1.0",
  7344. "drupal/entity_browser": "2.x-dev",
  7345. "drupal/entity_usage": "2.x-dev",
  7346. "drupal/field_group": "3.x-dev",
  7347. "drupal/inline_entity_form": "~1.0",
  7348. "drupal/paragraphs-paragraphs_library": "*",
  7349. "drupal/replicate": "~1.0",
  7350. "drupal/search_api": "~1.0",
  7351. "drupal/search_api_db": "*"
  7352. },
  7353. "suggest": {
  7354. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  7355. },
  7356. "type": "drupal-module",
  7357. "extra": {
  7358. "branch-alias": {
  7359. "dev-1.x": "1.x-dev"
  7360. },
  7361. "drupal": {
  7362. "version": "8.x-1.12+13-dev",
  7363. "datestamp": "1604927006",
  7364. "security-coverage": {
  7365. "status": "not-covered",
  7366. "message": "Dev releases are not covered by Drupal security advisories."
  7367. }
  7368. }
  7369. },
  7370. "notification-url": "https://packages.drupal.org/8/downloads",
  7371. "license": [
  7372. "GPL-2.0-or-later"
  7373. ],
  7374. "authors": [
  7375. {
  7376. "name": "Berdir",
  7377. "homepage": "https://www.drupal.org/user/214652"
  7378. },
  7379. {
  7380. "name": "Frans",
  7381. "homepage": "https://www.drupal.org/user/514222"
  7382. },
  7383. {
  7384. "name": "Primsi",
  7385. "homepage": "https://www.drupal.org/user/282629"
  7386. },
  7387. {
  7388. "name": "jeroen.b",
  7389. "homepage": "https://www.drupal.org/user/1853532"
  7390. },
  7391. {
  7392. "name": "jstoller",
  7393. "homepage": "https://www.drupal.org/user/99012"
  7394. },
  7395. {
  7396. "name": "miro_dietiker",
  7397. "homepage": "https://www.drupal.org/user/227761"
  7398. }
  7399. ],
  7400. "description": "Enables the creation of Paragraphs entities.",
  7401. "homepage": "https://www.drupal.org/project/paragraphs",
  7402. "support": {
  7403. "source": "https://git.drupalcode.org/project/paragraphs"
  7404. }
  7405. },
  7406. {
  7407. "name": "drupal/path_alias_xt",
  7408. "version": "dev-1.x",
  7409. "source": {
  7410. "type": "git",
  7411. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  7412. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  7413. },
  7414. "require": {
  7415. "drupal/core": "^8.7.7 || ^9"
  7416. },
  7417. "type": "drupal-module",
  7418. "extra": {
  7419. "branch-alias": {
  7420. "dev-1.x": "1.x-dev"
  7421. },
  7422. "drupal": {
  7423. "version": "8.x-1.x-dev",
  7424. "datestamp": "1590299862",
  7425. "security-coverage": {
  7426. "status": "not-covered",
  7427. "message": "Dev releases are not covered by Drupal security advisories."
  7428. }
  7429. }
  7430. },
  7431. "notification-url": "https://packages.drupal.org/8/downloads",
  7432. "license": [
  7433. "GPL-2.0-or-later"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "RdeBoer",
  7438. "homepage": "https://www.drupal.org/user/404007"
  7439. },
  7440. {
  7441. "name": "adriancid",
  7442. "homepage": "https://www.drupal.org/user/1962106"
  7443. },
  7444. {
  7445. "name": "sdstyles",
  7446. "homepage": "https://www.drupal.org/user/1420228"
  7447. }
  7448. ],
  7449. "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.",
  7450. "homepage": "https://www.drupal.org/project/path_alias_xt",
  7451. "support": {
  7452. "source": "https://git.drupalcode.org/project/path_alias_xt"
  7453. }
  7454. },
  7455. {
  7456. "name": "drupal/pathauto",
  7457. "version": "1.8.0",
  7458. "source": {
  7459. "type": "git",
  7460. "url": "https://git.drupalcode.org/project/pathauto.git",
  7461. "reference": "8.x-1.8"
  7462. },
  7463. "dist": {
  7464. "type": "zip",
  7465. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  7466. "reference": "8.x-1.8",
  7467. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  7468. },
  7469. "require": {
  7470. "drupal/core": "^8.8 || ^9",
  7471. "drupal/ctools": "*",
  7472. "drupal/token": "*"
  7473. },
  7474. "suggest": {
  7475. "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."
  7476. },
  7477. "type": "drupal-module",
  7478. "extra": {
  7479. "drupal": {
  7480. "version": "8.x-1.8",
  7481. "datestamp": "1588103046",
  7482. "security-coverage": {
  7483. "status": "covered",
  7484. "message": "Covered by Drupal's security advisory policy"
  7485. }
  7486. },
  7487. "drush": {
  7488. "services": {
  7489. "drush.services.yml": "^9 || ^10"
  7490. }
  7491. }
  7492. },
  7493. "notification-url": "https://packages.drupal.org/8/downloads",
  7494. "license": [
  7495. "GPL-2.0-or-later"
  7496. ],
  7497. "authors": [
  7498. {
  7499. "name": "Berdir",
  7500. "homepage": "https://www.drupal.org/user/214652"
  7501. },
  7502. {
  7503. "name": "Dave Reid",
  7504. "homepage": "https://www.drupal.org/user/53892"
  7505. },
  7506. {
  7507. "name": "Freso",
  7508. "homepage": "https://www.drupal.org/user/27504"
  7509. },
  7510. {
  7511. "name": "greggles",
  7512. "homepage": "https://www.drupal.org/user/36762"
  7513. }
  7514. ],
  7515. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  7516. "homepage": "https://www.drupal.org/project/pathauto",
  7517. "support": {
  7518. "source": "https://cgit.drupalcode.org/pathauto",
  7519. "issues": "https://www.drupal.org/project/issues/pathauto",
  7520. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  7521. }
  7522. },
  7523. {
  7524. "name": "drupal/pathologic",
  7525. "version": "1.0.0-alpha2",
  7526. "source": {
  7527. "type": "git",
  7528. "url": "https://git.drupalcode.org/project/pathologic.git",
  7529. "reference": "8.x-1.0-alpha2"
  7530. },
  7531. "dist": {
  7532. "type": "zip",
  7533. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  7534. "reference": "8.x-1.0-alpha2",
  7535. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  7536. },
  7537. "require": {
  7538. "drupal/core": "^8 || ^9"
  7539. },
  7540. "type": "drupal-module",
  7541. "extra": {
  7542. "drupal": {
  7543. "version": "8.x-1.0-alpha2",
  7544. "datestamp": "1593911470",
  7545. "security-coverage": {
  7546. "status": "not-covered",
  7547. "message": "Alpha releases are not covered by Drupal security advisories."
  7548. }
  7549. }
  7550. },
  7551. "notification-url": "https://packages.drupal.org/8/downloads",
  7552. "license": [
  7553. "GPL-2.0-or-later"
  7554. ],
  7555. "authors": [
  7556. {
  7557. "name": "Berdir",
  7558. "homepage": "https://www.drupal.org/user/214652"
  7559. },
  7560. {
  7561. "name": "Garrett Albright",
  7562. "homepage": "https://www.drupal.org/user/191212"
  7563. },
  7564. {
  7565. "name": "dww",
  7566. "homepage": "https://www.drupal.org/user/46549"
  7567. }
  7568. ],
  7569. "description": "Helps avoid broken links and incorrect paths in content.",
  7570. "homepage": "https://www.drupal.org/project/pathologic",
  7571. "support": {
  7572. "source": "https://git.drupalcode.org/project/pathologic"
  7573. }
  7574. },
  7575. {
  7576. "name": "drupal/persistent_login",
  7577. "version": "1.3.0",
  7578. "source": {
  7579. "type": "git",
  7580. "url": "https://git.drupalcode.org/project/persistent_login.git",
  7581. "reference": "8.x-1.3"
  7582. },
  7583. "dist": {
  7584. "type": "zip",
  7585. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  7586. "reference": "8.x-1.3",
  7587. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  7588. },
  7589. "require": {
  7590. "drupal/core": "^8.3 || ^9.0"
  7591. },
  7592. "type": "drupal-module",
  7593. "extra": {
  7594. "drupal": {
  7595. "version": "8.x-1.3",
  7596. "datestamp": "1591597823",
  7597. "security-coverage": {
  7598. "status": "covered",
  7599. "message": "Covered by Drupal's security advisory policy"
  7600. }
  7601. }
  7602. },
  7603. "notification-url": "https://packages.drupal.org/8/downloads",
  7604. "license": [
  7605. "GPL-2.0-or-later"
  7606. ],
  7607. "authors": [
  7608. {
  7609. "name": "gapple",
  7610. "homepage": "https://www.drupal.org/user/490940"
  7611. }
  7612. ],
  7613. "description": "Provides a \"Remember Me\" feature on the login form.",
  7614. "homepage": "https://www.drupal.org/project/persistent_login",
  7615. "keywords": [
  7616. "Drupal"
  7617. ],
  7618. "support": {
  7619. "source": "https://git.drupalcode.org/project/persistent_login",
  7620. "issues": "https://www.drupal.org/project/issues/persistent_login"
  7621. }
  7622. },
  7623. {
  7624. "name": "drupal/profile",
  7625. "version": "1.2.0",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://git.drupalcode.org/project/profile.git",
  7629. "reference": "8.x-1.2"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  7634. "reference": "8.x-1.2",
  7635. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  7636. },
  7637. "require": {
  7638. "drupal/core": "^8.8 || ^9",
  7639. "drupal/entity": "^1.0-rc2"
  7640. },
  7641. "require-dev": {
  7642. "drupal/token": "^1.7"
  7643. },
  7644. "type": "drupal-module",
  7645. "extra": {
  7646. "drupal": {
  7647. "version": "8.x-1.2",
  7648. "datestamp": "1604422701",
  7649. "security-coverage": {
  7650. "status": "covered",
  7651. "message": "Covered by Drupal's security advisory policy"
  7652. }
  7653. }
  7654. },
  7655. "notification-url": "https://packages.drupal.org/8/downloads",
  7656. "license": [
  7657. "GPL-2.0-or-later"
  7658. ],
  7659. "authors": [
  7660. {
  7661. "name": "bojanz",
  7662. "homepage": "https://www.drupal.org/user/86106"
  7663. },
  7664. {
  7665. "name": "daggerhart",
  7666. "homepage": "https://www.drupal.org/user/167806"
  7667. },
  7668. {
  7669. "name": "fago",
  7670. "homepage": "https://www.drupal.org/user/16747"
  7671. },
  7672. {
  7673. "name": "jsacksick",
  7674. "homepage": "https://www.drupal.org/user/972218"
  7675. },
  7676. {
  7677. "name": "mglaman",
  7678. "homepage": "https://www.drupal.org/user/2416470"
  7679. },
  7680. {
  7681. "name": "pcambra",
  7682. "homepage": "https://www.drupal.org/user/122101"
  7683. }
  7684. ],
  7685. "description": "Provides configurable user profiles.",
  7686. "homepage": "http://drupal.org/project/profile",
  7687. "support": {
  7688. "source": "https://git.drupalcode.org/project/profile"
  7689. }
  7690. },
  7691. {
  7692. "name": "drupal/redirect",
  7693. "version": "1.6.0",
  7694. "source": {
  7695. "type": "git",
  7696. "url": "https://git.drupalcode.org/project/redirect.git",
  7697. "reference": "8.x-1.6"
  7698. },
  7699. "dist": {
  7700. "type": "zip",
  7701. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  7702. "reference": "8.x-1.6",
  7703. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  7704. },
  7705. "require": {
  7706. "drupal/core": "^8.8 || ^9"
  7707. },
  7708. "type": "drupal-module",
  7709. "extra": {
  7710. "drupal": {
  7711. "version": "8.x-1.6",
  7712. "datestamp": "1589312204",
  7713. "security-coverage": {
  7714. "status": "covered",
  7715. "message": "Covered by Drupal's security advisory policy"
  7716. }
  7717. }
  7718. },
  7719. "notification-url": "https://packages.drupal.org/8/downloads",
  7720. "license": [
  7721. "GPL-2.0-or-later"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Berdir",
  7726. "homepage": "https://www.drupal.org/user/214652"
  7727. },
  7728. {
  7729. "name": "Dave Reid",
  7730. "homepage": "https://www.drupal.org/user/53892"
  7731. },
  7732. {
  7733. "name": "pifagor",
  7734. "homepage": "https://www.drupal.org/user/2375692"
  7735. }
  7736. ],
  7737. "description": "Allows users to redirect from old URLs to new URLs.",
  7738. "homepage": "https://www.drupal.org/project/redirect",
  7739. "support": {
  7740. "source": "https://git.drupalcode.org/project/redirect"
  7741. }
  7742. },
  7743. {
  7744. "name": "drupal/redis",
  7745. "version": "1.5.0",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://git.drupalcode.org/project/redis.git",
  7749. "reference": "8.x-1.5"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7754. "reference": "8.x-1.5",
  7755. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7756. },
  7757. "require": {
  7758. "drupal/core": "^8.8 || ^9"
  7759. },
  7760. "suggest": {
  7761. "predis/predis": "^1.1.1"
  7762. },
  7763. "type": "drupal-module",
  7764. "extra": {
  7765. "drupal": {
  7766. "version": "8.x-1.5",
  7767. "datestamp": "1609972488",
  7768. "security-coverage": {
  7769. "status": "covered",
  7770. "message": "Covered by Drupal's security advisory policy"
  7771. }
  7772. }
  7773. },
  7774. "autoload": {
  7775. "psr-4": {
  7776. "Drupal\\redis\\": "src"
  7777. }
  7778. },
  7779. "notification-url": "https://packages.drupal.org/8/downloads",
  7780. "license": [
  7781. "GPL-2.0-or-later"
  7782. ],
  7783. "authors": [
  7784. {
  7785. "name": "Berdir",
  7786. "homepage": "https://www.drupal.org/user/214652"
  7787. },
  7788. {
  7789. "name": "pounard",
  7790. "homepage": "https://www.drupal.org/user/240164"
  7791. }
  7792. ],
  7793. "description": "Integration of Drupal with the Redis key-value store.",
  7794. "homepage": "https://www.drupal.org/project/redis",
  7795. "support": {
  7796. "source": "https://git.drupalcode.org/project/redis"
  7797. }
  7798. },
  7799. {
  7800. "name": "drupal/role_delegation",
  7801. "version": "1.1.0",
  7802. "source": {
  7803. "type": "git",
  7804. "url": "https://git.drupalcode.org/project/role_delegation.git",
  7805. "reference": "8.x-1.1"
  7806. },
  7807. "dist": {
  7808. "type": "zip",
  7809. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.1.zip",
  7810. "reference": "8.x-1.1",
  7811. "shasum": "a63b548056cc729beacfd385625fafb983e0f73e"
  7812. },
  7813. "require": {
  7814. "drupal/core": "^8 || ^9"
  7815. },
  7816. "type": "drupal-module",
  7817. "extra": {
  7818. "drupal": {
  7819. "version": "8.x-1.1",
  7820. "datestamp": "1580498751",
  7821. "security-coverage": {
  7822. "status": "covered",
  7823. "message": "Covered by Drupal's security advisory policy"
  7824. }
  7825. }
  7826. },
  7827. "notification-url": "https://packages.drupal.org/8/downloads",
  7828. "license": [
  7829. "GPL-2.0-or-later"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Jeroen Tubex",
  7834. "homepage": "https://www.drupal.org/u/jeroent",
  7835. "role": "Maintainer"
  7836. },
  7837. {
  7838. "name": "benjy",
  7839. "homepage": "https://www.drupal.org/user/1852732"
  7840. }
  7841. ],
  7842. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  7843. "homepage": "http://drupal.org/project/role_delegation",
  7844. "support": {
  7845. "source": "https://git.drupalcode.org/project/role_delegation",
  7846. "issues": "http://drupal.org/project/role_delegation"
  7847. }
  7848. },
  7849. {
  7850. "name": "drupal/search_api",
  7851. "version": "1.19.0",
  7852. "source": {
  7853. "type": "git",
  7854. "url": "https://git.drupalcode.org/project/search_api.git",
  7855. "reference": "8.x-1.19"
  7856. },
  7857. "dist": {
  7858. "type": "zip",
  7859. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  7860. "reference": "8.x-1.19",
  7861. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  7862. },
  7863. "require": {
  7864. "drupal/core": "^8.8 || ^9"
  7865. },
  7866. "conflict": {
  7867. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7868. },
  7869. "require-dev": {
  7870. "drupal/language_fallback_fix": "@dev",
  7871. "drupal/search_api_autocomplete": "@dev",
  7872. "drupal/search_api_db": "*"
  7873. },
  7874. "suggest": {
  7875. "drupal/facets": "Adds the ability to create faceted searches.",
  7876. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7877. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7878. },
  7879. "type": "drupal-module",
  7880. "extra": {
  7881. "drupal": {
  7882. "version": "8.x-1.19",
  7883. "datestamp": "1612192040",
  7884. "security-coverage": {
  7885. "status": "covered",
  7886. "message": "Covered by Drupal's security advisory policy"
  7887. }
  7888. },
  7889. "drush": {
  7890. "services": {
  7891. "drush.services.yml": "^9"
  7892. }
  7893. }
  7894. },
  7895. "notification-url": "https://packages.drupal.org/8/downloads",
  7896. "license": [
  7897. "GPL-2.0-or-later"
  7898. ],
  7899. "authors": [
  7900. {
  7901. "name": "Thomas Seidl",
  7902. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7903. },
  7904. {
  7905. "name": "Nick Veenhof",
  7906. "homepage": "https://www.drupal.org/u/nick_vh"
  7907. },
  7908. {
  7909. "name": "See other contributors",
  7910. "homepage": "https://www.drupal.org/node/790418/committers"
  7911. }
  7912. ],
  7913. "description": "Provides a generic framework for modules offering search capabilities.",
  7914. "homepage": "https://www.drupal.org/project/search_api",
  7915. "support": {
  7916. "source": "https://git.drupalcode.org/project/search_api",
  7917. "issues": "https://www.drupal.org/project/issues/search_api",
  7918. "irc": "irc://irc.freenode.org/drupal-search-api"
  7919. }
  7920. },
  7921. {
  7922. "name": "drupal/search_api_db",
  7923. "version": "1.19.0",
  7924. "require": {
  7925. "drupal/core": "^8.8 || ^9",
  7926. "drupal/search_api": "*"
  7927. },
  7928. "type": "metapackage",
  7929. "extra": {
  7930. "drupal": {
  7931. "version": "8.x-1.19",
  7932. "datestamp": "1612192040",
  7933. "security-coverage": {
  7934. "status": "covered",
  7935. "message": "Covered by Drupal's security advisory policy"
  7936. }
  7937. }
  7938. },
  7939. "notification-url": "https://packages.drupal.org/8/downloads",
  7940. "license": [
  7941. "GPL-2.0-or-later"
  7942. ],
  7943. "authors": [
  7944. {
  7945. "name": "Nick_vh",
  7946. "homepage": "https://www.drupal.org/user/122682"
  7947. },
  7948. {
  7949. "name": "borisson_",
  7950. "homepage": "https://www.drupal.org/user/2393360"
  7951. },
  7952. {
  7953. "name": "drunken monkey",
  7954. "homepage": "https://www.drupal.org/user/205582"
  7955. }
  7956. ],
  7957. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7958. "homepage": "https://www.drupal.org/project/search_api",
  7959. "support": {
  7960. "source": "https://git.drupalcode.org/project/search_api"
  7961. }
  7962. },
  7963. {
  7964. "name": "drupal/smart_date",
  7965. "version": "3.1.2",
  7966. "source": {
  7967. "type": "git",
  7968. "url": "https://git.drupalcode.org/project/smart_date.git",
  7969. "reference": "3.1.2"
  7970. },
  7971. "dist": {
  7972. "type": "zip",
  7973. "url": "https://ftp.drupal.org/files/projects/smart_date-3.1.2.zip",
  7974. "reference": "3.1.2",
  7975. "shasum": "bf8efded21b493dd70728f6287419b7b8cef0879"
  7976. },
  7977. "require": {
  7978. "drupal/core": "^8 || ^9",
  7979. "php": ">=7.1",
  7980. "simshaun/recurr": "^4"
  7981. },
  7982. "suggest": {
  7983. "drupal/multiple_fields_remove_button": "Provides a button for editors to remove unwanted rows."
  7984. },
  7985. "type": "drupal-module",
  7986. "extra": {
  7987. "drupal": {
  7988. "version": "3.1.2",
  7989. "datestamp": "1618048522",
  7990. "security-coverage": {
  7991. "status": "covered",
  7992. "message": "Covered by Drupal's security advisory policy"
  7993. }
  7994. }
  7995. },
  7996. "notification-url": "https://packages.drupal.org/8/downloads",
  7997. "license": [
  7998. "GPL-2.0-or-later"
  7999. ],
  8000. "authors": [
  8001. {
  8002. "name": "mandclu",
  8003. "homepage": "https://www.drupal.org/user/52136"
  8004. },
  8005. {
  8006. "name": "mparker17",
  8007. "homepage": "https://www.drupal.org/user/536298"
  8008. },
  8009. {
  8010. "name": "stefan.korn",
  8011. "homepage": "https://www.drupal.org/user/1942204"
  8012. }
  8013. ],
  8014. "description": "Adds app-like date and recurring date functionality.",
  8015. "homepage": "https://www.drupal.org/project/smart_date",
  8016. "keywords": [
  8017. "Drupal"
  8018. ],
  8019. "support": {
  8020. "source": "http://cgit.drupalcode.org/smart_date",
  8021. "issues": "https://www.drupal.org/project/issues/smart_date",
  8022. "documentation": "https://www.drupal.org/docs/contributed-modules/smart-date"
  8023. }
  8024. },
  8025. {
  8026. "name": "drupal/smart_trim",
  8027. "version": "1.3.0",
  8028. "source": {
  8029. "type": "git",
  8030. "url": "https://git.drupalcode.org/project/smart_trim.git",
  8031. "reference": "8.x-1.3"
  8032. },
  8033. "dist": {
  8034. "type": "zip",
  8035. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  8036. "reference": "8.x-1.3",
  8037. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  8038. },
  8039. "require": {
  8040. "drupal/core": "^8 || ^9"
  8041. },
  8042. "type": "drupal-module",
  8043. "extra": {
  8044. "drupal": {
  8045. "version": "8.x-1.3",
  8046. "datestamp": "1589766531",
  8047. "security-coverage": {
  8048. "status": "covered",
  8049. "message": "Covered by Drupal's security advisory policy"
  8050. }
  8051. }
  8052. },
  8053. "notification-url": "https://packages.drupal.org/8/downloads",
  8054. "license": [
  8055. "GPL-2.0-or-later"
  8056. ],
  8057. "authors": [
  8058. {
  8059. "name": "Mark Casias (markie)",
  8060. "homepage": "https://www.drupal.org/u/markie",
  8061. "role": "Maintainer"
  8062. },
  8063. {
  8064. "name": "newsignature",
  8065. "homepage": "https://www.drupal.org/user/765518"
  8066. },
  8067. {
  8068. "name": "ultimike",
  8069. "homepage": "https://www.drupal.org/user/51132"
  8070. },
  8071. {
  8072. "name": "volkswagenchick",
  8073. "homepage": "https://www.drupal.org/user/3332522"
  8074. }
  8075. ],
  8076. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  8077. "homepage": "https://drupal.org/project/smart_trim",
  8078. "support": {
  8079. "source": "https://cgit.drupalcode.org/smart_trim",
  8080. "issues": "https://drupal.org/project/issues/smart_trim"
  8081. }
  8082. },
  8083. {
  8084. "name": "drupal/smtp",
  8085. "version": "1.0.0",
  8086. "source": {
  8087. "type": "git",
  8088. "url": "https://git.drupalcode.org/project/smtp.git",
  8089. "reference": "8.x-1.0"
  8090. },
  8091. "dist": {
  8092. "type": "zip",
  8093. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  8094. "reference": "8.x-1.0",
  8095. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  8096. },
  8097. "require": {
  8098. "drupal/core": "^8.8 || ^9",
  8099. "phpmailer/phpmailer": "^6.1.7"
  8100. },
  8101. "suggest": {
  8102. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  8103. },
  8104. "type": "drupal-module",
  8105. "extra": {
  8106. "drupal": {
  8107. "version": "8.x-1.0",
  8108. "datestamp": "1601070985",
  8109. "security-coverage": {
  8110. "status": "covered",
  8111. "message": "Covered by Drupal's security advisory policy"
  8112. }
  8113. },
  8114. "branch-alias": {
  8115. "dev-8.x-1.x": "1.x-dev"
  8116. }
  8117. },
  8118. "notification-url": "https://packages.drupal.org/8/downloads",
  8119. "license": [
  8120. "GPL-2.0-or-later"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "LukeLast",
  8125. "homepage": "https://www.drupal.org/user/30151"
  8126. },
  8127. {
  8128. "name": "japerry",
  8129. "homepage": "https://www.drupal.org/user/45640"
  8130. },
  8131. {
  8132. "name": "josesanmartin",
  8133. "homepage": "https://www.drupal.org/user/72012"
  8134. },
  8135. {
  8136. "name": "oadaeh",
  8137. "homepage": "https://www.drupal.org/user/4649"
  8138. },
  8139. {
  8140. "name": "sadashiv",
  8141. "homepage": "https://www.drupal.org/user/1773304"
  8142. },
  8143. {
  8144. "name": "wundo",
  8145. "homepage": "https://www.drupal.org/user/25523"
  8146. },
  8147. {
  8148. "name": "yettyn",
  8149. "homepage": "https://www.drupal.org/user/93281"
  8150. }
  8151. ],
  8152. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  8153. "homepage": "https://www.drupal.org/project/smtp",
  8154. "support": {
  8155. "source": "https://git.drupalcode.org/project/smtp",
  8156. "issues": "https://www.drupal.org/project/issues/smtp"
  8157. }
  8158. },
  8159. {
  8160. "name": "drupal/sophron",
  8161. "version": "1.1.0",
  8162. "source": {
  8163. "type": "git",
  8164. "url": "https://git.drupalcode.org/project/sophron.git",
  8165. "reference": "8.x-1.1"
  8166. },
  8167. "dist": {
  8168. "type": "zip",
  8169. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  8170. "reference": "8.x-1.1",
  8171. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  8172. },
  8173. "require": {
  8174. "drupal/core": "^8.9 || ^9",
  8175. "fileeye/mimemap": "^1.1.4",
  8176. "php": ">=7.1"
  8177. },
  8178. "type": "drupal-module",
  8179. "extra": {
  8180. "drupal": {
  8181. "version": "8.x-1.1",
  8182. "datestamp": "1606047077",
  8183. "security-coverage": {
  8184. "status": "covered",
  8185. "message": "Covered by Drupal's security advisory policy"
  8186. }
  8187. }
  8188. },
  8189. "autoload": {
  8190. "psr-4": {
  8191. "Drupal\\sophron\\": "src/"
  8192. }
  8193. },
  8194. "notification-url": "https://packages.drupal.org/8/downloads",
  8195. "license": [
  8196. "GPL-2.0-or-later"
  8197. ],
  8198. "authors": [
  8199. {
  8200. "name": "mondrake",
  8201. "homepage": "https://www.drupal.org/user/1307444"
  8202. }
  8203. ],
  8204. "description": "Provides an extensive MIME types management API",
  8205. "homepage": "https://www.drupal.org/project/sophron",
  8206. "support": {
  8207. "source": "https://git.drupalcode.org/project/sophron"
  8208. }
  8209. },
  8210. {
  8211. "name": "drupal/synonyms",
  8212. "version": "dev-1.x",
  8213. "source": {
  8214. "type": "git",
  8215. "url": "https://git.drupalcode.org/project/synonyms.git",
  8216. "reference": "d9c7956405622c5630284f15633845771e84ae54"
  8217. },
  8218. "require": {
  8219. "drupal/core": "^8 || ^9"
  8220. },
  8221. "type": "drupal-module",
  8222. "extra": {
  8223. "branch-alias": {
  8224. "dev-1.x": "1.x-dev"
  8225. },
  8226. "drupal": {
  8227. "version": "8.x-1.0-alpha3+4-dev",
  8228. "datestamp": "1613107043",
  8229. "security-coverage": {
  8230. "status": "not-covered",
  8231. "message": "Dev releases are not covered by Drupal security advisories."
  8232. }
  8233. }
  8234. },
  8235. "notification-url": "https://packages.drupal.org/8/downloads",
  8236. "license": [
  8237. "GPL-2.0-or-later"
  8238. ],
  8239. "authors": [
  8240. {
  8241. "name": "Zen",
  8242. "homepage": "https://www.drupal.org/user/21209"
  8243. },
  8244. {
  8245. "name": "bojanz",
  8246. "homepage": "https://www.drupal.org/user/86106"
  8247. },
  8248. {
  8249. "name": "bucefal91",
  8250. "homepage": "https://www.drupal.org/user/504128"
  8251. },
  8252. {
  8253. "name": "devad",
  8254. "homepage": "https://www.drupal.org/user/2268520"
  8255. }
  8256. ],
  8257. "description": "Provides synonyms feature for content entities.",
  8258. "homepage": "https://www.drupal.org/project/synonyms",
  8259. "support": {
  8260. "source": "https://git.drupalcode.org/project/synonyms"
  8261. }
  8262. },
  8263. {
  8264. "name": "drupal/token",
  8265. "version": "1.9.0",
  8266. "source": {
  8267. "type": "git",
  8268. "url": "https://git.drupalcode.org/project/token.git",
  8269. "reference": "8.x-1.9"
  8270. },
  8271. "dist": {
  8272. "type": "zip",
  8273. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  8274. "reference": "8.x-1.9",
  8275. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  8276. },
  8277. "require": {
  8278. "drupal/core": "^8.8 || ^9"
  8279. },
  8280. "type": "drupal-module",
  8281. "extra": {
  8282. "drupal": {
  8283. "version": "8.x-1.9",
  8284. "datestamp": "1608284866",
  8285. "security-coverage": {
  8286. "status": "covered",
  8287. "message": "Covered by Drupal's security advisory policy"
  8288. }
  8289. },
  8290. "drush": {
  8291. "services": {
  8292. "drush.services.yml": "^9 || ^10"
  8293. }
  8294. }
  8295. },
  8296. "notification-url": "https://packages.drupal.org/8/downloads",
  8297. "license": [
  8298. "GPL-2.0-or-later"
  8299. ],
  8300. "authors": [
  8301. {
  8302. "name": "Berdir",
  8303. "homepage": "https://www.drupal.org/user/214652"
  8304. },
  8305. {
  8306. "name": "Dave Reid",
  8307. "homepage": "https://www.drupal.org/user/53892"
  8308. },
  8309. {
  8310. "name": "eaton",
  8311. "homepage": "https://www.drupal.org/user/16496"
  8312. },
  8313. {
  8314. "name": "fago",
  8315. "homepage": "https://www.drupal.org/user/16747"
  8316. },
  8317. {
  8318. "name": "greggles",
  8319. "homepage": "https://www.drupal.org/user/36762"
  8320. },
  8321. {
  8322. "name": "mikeryan",
  8323. "homepage": "https://www.drupal.org/user/4420"
  8324. }
  8325. ],
  8326. "description": "Provides a user interface for the Token API, some missing core tokens.",
  8327. "homepage": "https://www.drupal.org/project/token",
  8328. "support": {
  8329. "source": "https://git.drupalcode.org/project/token"
  8330. }
  8331. },
  8332. {
  8333. "name": "drupal/translation_views",
  8334. "version": "1.0.0-alpha10",
  8335. "source": {
  8336. "type": "git",
  8337. "url": "https://git.drupalcode.org/project/translation_views.git",
  8338. "reference": "8.x-1.0-alpha10"
  8339. },
  8340. "dist": {
  8341. "type": "zip",
  8342. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  8343. "reference": "8.x-1.0-alpha10",
  8344. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  8345. },
  8346. "require": {
  8347. "drupal/core": "^8.8 || ^9"
  8348. },
  8349. "require-dev": {
  8350. "drupal/translators": "*",
  8351. "drupal/translators_content": "*"
  8352. },
  8353. "type": "drupal-module",
  8354. "extra": {
  8355. "drupal": {
  8356. "version": "8.x-1.0-alpha10",
  8357. "datestamp": "1584303687",
  8358. "security-coverage": {
  8359. "status": "not-covered",
  8360. "message": "Project has not opted into security advisory coverage!"
  8361. }
  8362. }
  8363. },
  8364. "notification-url": "https://packages.drupal.org/8/downloads",
  8365. "license": [
  8366. "GPL-2.0-or-later"
  8367. ],
  8368. "authors": [
  8369. {
  8370. "name": "matsbla",
  8371. "homepage": "https://www.drupal.org/user/2325394"
  8372. },
  8373. {
  8374. "name": "vlad.dancer",
  8375. "homepage": "https://www.drupal.org/user/903844"
  8376. }
  8377. ],
  8378. "description": "Create customized lists and queries of translations from your database.",
  8379. "homepage": "https://www.drupal.org/project/translation_views",
  8380. "support": {
  8381. "source": "https://git.drupalcode.org/project/translation_views"
  8382. }
  8383. },
  8384. {
  8385. "name": "drupal/ultimate_cron",
  8386. "version": "2.0.0-alpha5",
  8387. "source": {
  8388. "type": "git",
  8389. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  8390. "reference": "8.x-2.0-alpha5"
  8391. },
  8392. "dist": {
  8393. "type": "zip",
  8394. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  8395. "reference": "8.x-2.0-alpha5",
  8396. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  8397. },
  8398. "require": {
  8399. "drupal/core": "^8.7.7 || ^9"
  8400. },
  8401. "type": "drupal-module",
  8402. "extra": {
  8403. "drupal": {
  8404. "version": "8.x-2.0-alpha5",
  8405. "datestamp": "1600928948",
  8406. "security-coverage": {
  8407. "status": "not-covered",
  8408. "message": "Alpha releases are not covered by Drupal security advisories."
  8409. }
  8410. },
  8411. "drush": {
  8412. "services": {
  8413. "drush.services.yml": "^9 || ^10"
  8414. }
  8415. }
  8416. },
  8417. "notification-url": "https://packages.drupal.org/8/downloads",
  8418. "license": [
  8419. "GPL-2.0+"
  8420. ],
  8421. "authors": [
  8422. {
  8423. "name": "Berdir",
  8424. "homepage": "https://www.drupal.org/user/214652"
  8425. },
  8426. {
  8427. "name": "Dane Powell",
  8428. "homepage": "https://www.drupal.org/user/339326"
  8429. },
  8430. {
  8431. "name": "Primsi",
  8432. "homepage": "https://www.drupal.org/user/282629"
  8433. },
  8434. {
  8435. "name": "arnested",
  8436. "homepage": "https://www.drupal.org/user/245635"
  8437. },
  8438. {
  8439. "name": "gielfeldt",
  8440. "homepage": "https://www.drupal.org/user/366993"
  8441. },
  8442. {
  8443. "name": "miro_dietiker",
  8444. "homepage": "https://www.drupal.org/user/227761"
  8445. }
  8446. ],
  8447. "description": "Ultimate cron",
  8448. "homepage": "https://www.drupal.org/project/ultimate_cron",
  8449. "support": {
  8450. "source": "https://git.drupalcode.org/project/ultimate_cron"
  8451. }
  8452. },
  8453. {
  8454. "name": "drupal/url_to_video_filter",
  8455. "version": "2.0.0",
  8456. "source": {
  8457. "type": "git",
  8458. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  8459. "reference": "2.0.0"
  8460. },
  8461. "dist": {
  8462. "type": "zip",
  8463. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  8464. "reference": "2.0.0",
  8465. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  8466. },
  8467. "require": {
  8468. "drupal/core": "^8 || ^9"
  8469. },
  8470. "type": "drupal-module",
  8471. "extra": {
  8472. "drupal": {
  8473. "version": "2.0.0",
  8474. "datestamp": "1607298389",
  8475. "security-coverage": {
  8476. "status": "covered",
  8477. "message": "Covered by Drupal's security advisory policy"
  8478. }
  8479. }
  8480. },
  8481. "notification-url": "https://packages.drupal.org/8/downloads",
  8482. "license": [
  8483. "GPL-2.0-or-later"
  8484. ],
  8485. "authors": [
  8486. {
  8487. "name": "Jaypan",
  8488. "homepage": "https://www.drupal.org/user/324696"
  8489. }
  8490. ],
  8491. "description": "Text filter to convert URLs to embedded videos",
  8492. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  8493. "support": {
  8494. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  8495. }
  8496. },
  8497. {
  8498. "name": "drupal/video_embed_field",
  8499. "version": "2.4.0",
  8500. "source": {
  8501. "type": "git",
  8502. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  8503. "reference": "8.x-2.4"
  8504. },
  8505. "dist": {
  8506. "type": "zip",
  8507. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  8508. "reference": "8.x-2.4",
  8509. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  8510. },
  8511. "require": {
  8512. "drupal/core": "^8.8 || ^9"
  8513. },
  8514. "require-dev": {
  8515. "drupal/colorbox": "^1.0",
  8516. "drupal/video_embed_media": "*"
  8517. },
  8518. "type": "drupal-module",
  8519. "extra": {
  8520. "drupal": {
  8521. "version": "8.x-2.4",
  8522. "datestamp": "1587686337",
  8523. "security-coverage": {
  8524. "status": "covered",
  8525. "message": "Covered by Drupal's security advisory policy"
  8526. }
  8527. }
  8528. },
  8529. "notification-url": "https://packages.drupal.org/8/downloads",
  8530. "license": [
  8531. "GPL-2.0+"
  8532. ],
  8533. "authors": [
  8534. {
  8535. "name": "Sam152",
  8536. "homepage": "https://www.drupal.org/user/1485048"
  8537. },
  8538. {
  8539. "name": "jec006",
  8540. "homepage": "https://www.drupal.org/user/855980"
  8541. },
  8542. {
  8543. "name": "plopesc",
  8544. "homepage": "https://www.drupal.org/user/282415"
  8545. }
  8546. ],
  8547. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8548. "homepage": "https://www.drupal.org/project/video_embed_field",
  8549. "support": {
  8550. "source": "https://git.drupalcode.org/project/video_embed_field"
  8551. }
  8552. },
  8553. {
  8554. "name": "drupal/views_bulk_edit",
  8555. "version": "2.5.0",
  8556. "source": {
  8557. "type": "git",
  8558. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8559. "reference": "8.x-2.5"
  8560. },
  8561. "dist": {
  8562. "type": "zip",
  8563. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  8564. "reference": "8.x-2.5",
  8565. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  8566. },
  8567. "require": {
  8568. "drupal/core": "^8 || ^9"
  8569. },
  8570. "require-dev": {
  8571. "drupal/views_bulk_operations": "~3.0"
  8572. },
  8573. "suggest": {
  8574. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8575. },
  8576. "type": "drupal-module",
  8577. "extra": {
  8578. "drupal": {
  8579. "version": "8.x-2.5",
  8580. "datestamp": "1606726163",
  8581. "security-coverage": {
  8582. "status": "covered",
  8583. "message": "Covered by Drupal's security advisory policy"
  8584. }
  8585. }
  8586. },
  8587. "notification-url": "https://packages.drupal.org/8/downloads",
  8588. "license": [
  8589. "GPL-2.0+"
  8590. ],
  8591. "authors": [
  8592. {
  8593. "name": "Marcin Grabias",
  8594. "homepage": "https://www.drupal.org/u/graber"
  8595. },
  8596. {
  8597. "name": "benjy",
  8598. "homepage": "https://www.drupal.org/user/1852732"
  8599. }
  8600. ],
  8601. "description": "Allows bulk edition of entity field values.",
  8602. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8603. "support": {
  8604. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8605. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8606. }
  8607. },
  8608. {
  8609. "name": "drupal/views_bulk_operations",
  8610. "version": "3.12.0",
  8611. "source": {
  8612. "type": "git",
  8613. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8614. "reference": "8.x-3.12"
  8615. },
  8616. "dist": {
  8617. "type": "zip",
  8618. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.12.zip",
  8619. "reference": "8.x-3.12",
  8620. "shasum": "88a545c54680362162bfbfdb0639ce923a1a60a9"
  8621. },
  8622. "require": {
  8623. "drupal/core": "^8.8 || ^9"
  8624. },
  8625. "require-dev": {
  8626. "drush/drush": "^10"
  8627. },
  8628. "suggest": {
  8629. "drush/drush": "^9 || ^10"
  8630. },
  8631. "type": "drupal-module",
  8632. "extra": {
  8633. "drupal": {
  8634. "version": "8.x-3.12",
  8635. "datestamp": "1616148482",
  8636. "security-coverage": {
  8637. "status": "covered",
  8638. "message": "Covered by Drupal's security advisory policy"
  8639. }
  8640. },
  8641. "drush": {
  8642. "services": {
  8643. "drush.services.yml": "^9 || ^10"
  8644. }
  8645. }
  8646. },
  8647. "notification-url": "https://packages.drupal.org/8/downloads",
  8648. "license": [
  8649. "GPL-2.0-or-later"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "Marcin Grabias",
  8654. "homepage": "https://www.drupal.org/u/graber"
  8655. },
  8656. {
  8657. "name": "Jon Pugh",
  8658. "homepage": "https://www.drupal.org/user/17028"
  8659. },
  8660. {
  8661. "name": "bojanz",
  8662. "homepage": "https://www.drupal.org/user/86106"
  8663. },
  8664. {
  8665. "name": "infojunkie",
  8666. "homepage": "https://www.drupal.org/user/48424"
  8667. },
  8668. {
  8669. "name": "joelpittet",
  8670. "homepage": "https://www.drupal.org/user/160302"
  8671. }
  8672. ],
  8673. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8674. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8675. "support": {
  8676. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8677. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8678. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8679. }
  8680. },
  8681. {
  8682. "name": "drupal/views_ef_fieldset",
  8683. "version": "1.5.0",
  8684. "source": {
  8685. "type": "git",
  8686. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8687. "reference": "8.x-1.5"
  8688. },
  8689. "dist": {
  8690. "type": "zip",
  8691. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8692. "reference": "8.x-1.5",
  8693. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8694. },
  8695. "require": {
  8696. "drupal/core": "^8 || ^9",
  8697. "php": ">=7"
  8698. },
  8699. "type": "drupal-module",
  8700. "extra": {
  8701. "drupal": {
  8702. "version": "8.x-1.5",
  8703. "datestamp": "1604567512",
  8704. "security-coverage": {
  8705. "status": "covered",
  8706. "message": "Covered by Drupal's security advisory policy"
  8707. }
  8708. },
  8709. "composer-exit-on-patch-failure": true,
  8710. "enable-patching": true,
  8711. "patches": {
  8712. "drupal/core": {
  8713. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8714. }
  8715. }
  8716. },
  8717. "autoload-dev": {
  8718. "psr-4": {
  8719. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8720. }
  8721. },
  8722. "notification-url": "https://packages.drupal.org/8/downloads",
  8723. "scripts": {
  8724. "grumphp": [
  8725. "./vendor/bin/grumphp run"
  8726. ]
  8727. },
  8728. "license": [
  8729. "GPL-2.0+"
  8730. ],
  8731. "authors": [
  8732. {
  8733. "name": "Pol Dellaiera",
  8734. "homepage": "https://www.drupal.org/user/47194",
  8735. "email": "pol.dellaiera@protonmail.com"
  8736. },
  8737. {
  8738. "name": "ciss",
  8739. "homepage": "https://www.drupal.org/user/1632364"
  8740. }
  8741. ],
  8742. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8743. "homepage": "https://drupal.org/project/views_field_formatter",
  8744. "support": {
  8745. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8746. }
  8747. },
  8748. {
  8749. "name": "drush/drush",
  8750. "version": "10.4.2",
  8751. "source": {
  8752. "type": "git",
  8753. "url": "https://github.com/drush-ops/drush.git",
  8754. "reference": "0d48a046f5511dd8fda10ac3376b97bb65a2b7ec"
  8755. },
  8756. "dist": {
  8757. "type": "zip",
  8758. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0d48a046f5511dd8fda10ac3376b97bb65a2b7ec",
  8759. "reference": "0d48a046f5511dd8fda10ac3376b97bb65a2b7ec",
  8760. "shasum": ""
  8761. },
  8762. "require": {
  8763. "chi-teck/drupal-code-generator": "^1.32.1",
  8764. "composer/semver": "^1.4 || ^3",
  8765. "consolidation/config": "^1.2",
  8766. "consolidation/filter-via-dot-access-data": "^1",
  8767. "consolidation/robo": "^1.4.11 || ^2",
  8768. "consolidation/site-alias": "^3.0.0@stable",
  8769. "consolidation/site-process": "^2.1 || ^4",
  8770. "enlightn/security-checker": "^1",
  8771. "ext-dom": "*",
  8772. "grasmash/yaml-expander": "^1.1.1",
  8773. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8774. "league/container": "~2",
  8775. "php": ">=7.1.3",
  8776. "psr/log": "~1.0",
  8777. "psy/psysh": "~0.6",
  8778. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8779. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8780. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8781. "symfony/yaml": "^3.4 || ^4.0",
  8782. "webflo/drupal-finder": "^1.2",
  8783. "webmozart/path-util": "^2.1.0"
  8784. },
  8785. "conflict": {
  8786. "drupal/migrate_run": "*",
  8787. "drupal/migrate_tools": "<= 5"
  8788. },
  8789. "require-dev": {
  8790. "composer/installers": "^1.7",
  8791. "cweagans/composer-patches": "~1.0",
  8792. "david-garcia/phpwhois": "4.3.0",
  8793. "drupal/alinks": "1.0.0",
  8794. "drupal/core-recommended": "^8.8",
  8795. "phpunit/phpunit": ">=7.5.20",
  8796. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8797. "vlucas/phpdotenv": "^2.4",
  8798. "yoast/phpunit-polyfills": "^0.2.0"
  8799. },
  8800. "bin": [
  8801. "drush"
  8802. ],
  8803. "type": "library",
  8804. "extra": {
  8805. "installer-paths": {
  8806. "sut/core": [
  8807. "type:drupal-core"
  8808. ],
  8809. "sut/libraries/{$name}": [
  8810. "type:drupal-library"
  8811. ],
  8812. "sut/modules/unish/{$name}": [
  8813. "drupal/devel"
  8814. ],
  8815. "sut/themes/unish/{$name}": [
  8816. "drupal/empty_theme"
  8817. ],
  8818. "sut/modules/contrib/{$name}": [
  8819. "type:drupal-module"
  8820. ],
  8821. "sut/profiles/contrib/{$name}": [
  8822. "type:drupal-profile"
  8823. ],
  8824. "sut/themes/contrib/{$name}": [
  8825. "type:drupal-theme"
  8826. ],
  8827. "sut/drush/contrib/{$name}": [
  8828. "type:drupal-drush"
  8829. ]
  8830. }
  8831. },
  8832. "autoload": {
  8833. "psr-4": {
  8834. "Drush\\": "src/",
  8835. "Drush\\Internal\\": "src/internal-forks"
  8836. }
  8837. },
  8838. "notification-url": "https://packagist.org/downloads/",
  8839. "license": [
  8840. "GPL-2.0-or-later"
  8841. ],
  8842. "authors": [
  8843. {
  8844. "name": "Moshe Weitzman",
  8845. "email": "weitzman@tejasa.com"
  8846. },
  8847. {
  8848. "name": "Owen Barton",
  8849. "email": "drupal@owenbarton.com"
  8850. },
  8851. {
  8852. "name": "Greg Anderson",
  8853. "email": "greg.1.anderson@greenknowe.org"
  8854. },
  8855. {
  8856. "name": "Jonathan Araña Cruz",
  8857. "email": "jonhattan@faita.net"
  8858. },
  8859. {
  8860. "name": "Jonathan Hedstrom",
  8861. "email": "jhedstrom@gmail.com"
  8862. },
  8863. {
  8864. "name": "Christopher Gervais",
  8865. "email": "chris@ergonlogic.com"
  8866. },
  8867. {
  8868. "name": "Dave Reid",
  8869. "email": "dave@davereid.net"
  8870. },
  8871. {
  8872. "name": "Damian Lee",
  8873. "email": "damiankloip@googlemail.com"
  8874. }
  8875. ],
  8876. "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.",
  8877. "homepage": "http://www.drush.org",
  8878. "support": {
  8879. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8880. "irc": "irc://irc.freenode.org/drush",
  8881. "issues": "https://github.com/drush-ops/drush/issues",
  8882. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8883. "source": "https://github.com/drush-ops/drush/tree/10.4.2"
  8884. },
  8885. "funding": [
  8886. {
  8887. "url": "https://github.com/weitzman",
  8888. "type": "github"
  8889. }
  8890. ],
  8891. "time": "2021-04-06T03:37:46+00:00"
  8892. },
  8893. {
  8894. "name": "egulias/email-validator",
  8895. "version": "2.1.22",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/egulias/EmailValidator.git",
  8899. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8904. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8905. "shasum": ""
  8906. },
  8907. "require": {
  8908. "doctrine/lexer": "^1.0.1",
  8909. "php": ">=5.5",
  8910. "symfony/polyfill-intl-idn": "^1.10"
  8911. },
  8912. "require-dev": {
  8913. "dominicsayers/isemail": "^3.0.7",
  8914. "phpunit/phpunit": "^4.8.36|^7.5.15",
  8915. "satooshi/php-coveralls": "^1.0.1"
  8916. },
  8917. "suggest": {
  8918. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8919. },
  8920. "type": "library",
  8921. "extra": {
  8922. "branch-alias": {
  8923. "dev-master": "2.1.x-dev"
  8924. }
  8925. },
  8926. "autoload": {
  8927. "psr-4": {
  8928. "Egulias\\EmailValidator\\": "src"
  8929. }
  8930. },
  8931. "notification-url": "https://packagist.org/downloads/",
  8932. "license": [
  8933. "MIT"
  8934. ],
  8935. "authors": [
  8936. {
  8937. "name": "Eduardo Gulias Davis"
  8938. }
  8939. ],
  8940. "description": "A library for validating emails against several RFCs",
  8941. "homepage": "https://github.com/egulias/EmailValidator",
  8942. "keywords": [
  8943. "email",
  8944. "emailvalidation",
  8945. "emailvalidator",
  8946. "validation",
  8947. "validator"
  8948. ],
  8949. "support": {
  8950. "issues": "https://github.com/egulias/EmailValidator/issues",
  8951. "source": "https://github.com/egulias/EmailValidator/tree/2.1.22"
  8952. },
  8953. "time": "2020-09-26T15:48:38+00:00"
  8954. },
  8955. {
  8956. "name": "enlightn/security-checker",
  8957. "version": "v1.7.0",
  8958. "source": {
  8959. "type": "git",
  8960. "url": "https://github.com/enlightn/security-checker.git",
  8961. "reference": "1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29"
  8962. },
  8963. "dist": {
  8964. "type": "zip",
  8965. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29",
  8966. "reference": "1ac108ba278ba0c2e71d2ce2ac4fac07ed6e8a29",
  8967. "shasum": ""
  8968. },
  8969. "require": {
  8970. "ext-json": "*",
  8971. "ext-zip": "*",
  8972. "guzzlehttp/guzzle": "^6.3|^7.0",
  8973. "php": ">=5.6",
  8974. "symfony/console": "^3.4|^4|^5",
  8975. "symfony/finder": "^3|^4|^5",
  8976. "symfony/yaml": "^3.4|^4|^5"
  8977. },
  8978. "require-dev": {
  8979. "friendsofphp/php-cs-fixer": "^2.18",
  8980. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  8981. },
  8982. "bin": [
  8983. "security-checker"
  8984. ],
  8985. "type": "library",
  8986. "autoload": {
  8987. "psr-4": {
  8988. "Enlightn\\SecurityChecker\\": "src"
  8989. }
  8990. },
  8991. "notification-url": "https://packagist.org/downloads/",
  8992. "license": [
  8993. "MIT"
  8994. ],
  8995. "authors": [
  8996. {
  8997. "name": "Paras Malhotra",
  8998. "email": "paras@laravel-enlightn.com"
  8999. },
  9000. {
  9001. "name": "Miguel Piedrafita",
  9002. "email": "soy@miguelpiedrafita.com"
  9003. }
  9004. ],
  9005. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  9006. "keywords": [
  9007. "package",
  9008. "php",
  9009. "scanner",
  9010. "security",
  9011. "security advisories",
  9012. "vulnerability scanner"
  9013. ],
  9014. "support": {
  9015. "issues": "https://github.com/enlightn/security-checker/issues",
  9016. "source": "https://github.com/enlightn/security-checker/tree/v1.7.0"
  9017. },
  9018. "time": "2021-03-03T11:56:26+00:00"
  9019. },
  9020. {
  9021. "name": "fileeye/mimemap",
  9022. "version": "1.1.5",
  9023. "source": {
  9024. "type": "git",
  9025. "url": "https://github.com/FileEye/MimeMap.git",
  9026. "reference": "9efaad84adce38f2ee49331b2bd684c83fd9aa3b"
  9027. },
  9028. "dist": {
  9029. "type": "zip",
  9030. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/9efaad84adce38f2ee49331b2bd684c83fd9aa3b",
  9031. "reference": "9efaad84adce38f2ee49331b2bd684c83fd9aa3b",
  9032. "shasum": ""
  9033. },
  9034. "require": {
  9035. "php": ">=5.4"
  9036. },
  9037. "require-dev": {
  9038. "phpunit/phpunit": "<10",
  9039. "sebastian/comparator": "*",
  9040. "sebastian/diff": "*",
  9041. "squizlabs/php_codesniffer": "*",
  9042. "symfony/console": "*",
  9043. "symfony/filesystem": "*",
  9044. "symfony/var-dumper": "*",
  9045. "symfony/yaml": "*"
  9046. },
  9047. "bin": [
  9048. "bin/fileeye-mimemap"
  9049. ],
  9050. "type": "library",
  9051. "extra": {
  9052. "branch-alias": {
  9053. "dev-master": "1.x-dev"
  9054. }
  9055. },
  9056. "autoload": {
  9057. "psr-4": {
  9058. "FileEye\\MimeMap\\": "src/"
  9059. }
  9060. },
  9061. "notification-url": "https://packagist.org/downloads/",
  9062. "license": [
  9063. "LGPL-3.0-or-later"
  9064. ],
  9065. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  9066. "homepage": "https://github.com/FileEye/MimeMap",
  9067. "keywords": [
  9068. "mime",
  9069. "mime-database",
  9070. "mime-parser",
  9071. "mime-type"
  9072. ],
  9073. "support": {
  9074. "issues": "https://github.com/FileEye/MimeMap/issues",
  9075. "source": "https://github.com/FileEye/MimeMap/tree/1.1.5"
  9076. },
  9077. "time": "2021-04-02T20:21:45+00:00"
  9078. },
  9079. {
  9080. "name": "grasmash/expander",
  9081. "version": "1.0.0",
  9082. "source": {
  9083. "type": "git",
  9084. "url": "https://github.com/grasmash/expander.git",
  9085. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  9086. },
  9087. "dist": {
  9088. "type": "zip",
  9089. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  9090. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  9091. "shasum": ""
  9092. },
  9093. "require": {
  9094. "dflydev/dot-access-data": "^1.1.0",
  9095. "php": ">=5.4"
  9096. },
  9097. "require-dev": {
  9098. "greg-1-anderson/composer-test-scenarios": "^1",
  9099. "phpunit/phpunit": "^4|^5.5.4",
  9100. "satooshi/php-coveralls": "^1.0.2|dev-master",
  9101. "squizlabs/php_codesniffer": "^2.7"
  9102. },
  9103. "type": "library",
  9104. "extra": {
  9105. "branch-alias": {
  9106. "dev-master": "1.x-dev"
  9107. }
  9108. },
  9109. "autoload": {
  9110. "psr-4": {
  9111. "Grasmash\\Expander\\": "src/"
  9112. }
  9113. },
  9114. "notification-url": "https://packagist.org/downloads/",
  9115. "license": [
  9116. "MIT"
  9117. ],
  9118. "authors": [
  9119. {
  9120. "name": "Matthew Grasmick"
  9121. }
  9122. ],
  9123. "description": "Expands internal property references in PHP arrays file.",
  9124. "support": {
  9125. "issues": "https://github.com/grasmash/expander/issues",
  9126. "source": "https://github.com/grasmash/expander/tree/master"
  9127. },
  9128. "time": "2017-12-21T22:14:55+00:00"
  9129. },
  9130. {
  9131. "name": "grasmash/yaml-expander",
  9132. "version": "1.4.0",
  9133. "source": {
  9134. "type": "git",
  9135. "url": "https://github.com/grasmash/yaml-expander.git",
  9136. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  9137. },
  9138. "dist": {
  9139. "type": "zip",
  9140. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  9141. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  9142. "shasum": ""
  9143. },
  9144. "require": {
  9145. "dflydev/dot-access-data": "^1.1.0",
  9146. "php": ">=5.4",
  9147. "symfony/yaml": "^2.8.11|^3|^4"
  9148. },
  9149. "require-dev": {
  9150. "greg-1-anderson/composer-test-scenarios": "^1",
  9151. "phpunit/phpunit": "^4.8|^5.5.4",
  9152. "satooshi/php-coveralls": "^1.0.2|dev-master",
  9153. "squizlabs/php_codesniffer": "^2.7"
  9154. },
  9155. "type": "library",
  9156. "extra": {
  9157. "branch-alias": {
  9158. "dev-master": "1.x-dev"
  9159. }
  9160. },
  9161. "autoload": {
  9162. "psr-4": {
  9163. "Grasmash\\YamlExpander\\": "src/"
  9164. }
  9165. },
  9166. "notification-url": "https://packagist.org/downloads/",
  9167. "license": [
  9168. "MIT"
  9169. ],
  9170. "authors": [
  9171. {
  9172. "name": "Matthew Grasmick"
  9173. }
  9174. ],
  9175. "description": "Expands internal property references in a yaml file.",
  9176. "support": {
  9177. "issues": "https://github.com/grasmash/yaml-expander/issues",
  9178. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  9179. },
  9180. "time": "2017-12-16T16:06:03+00:00"
  9181. },
  9182. {
  9183. "name": "guzzlehttp/guzzle",
  9184. "version": "6.5.5",
  9185. "source": {
  9186. "type": "git",
  9187. "url": "https://github.com/guzzle/guzzle.git",
  9188. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  9189. },
  9190. "dist": {
  9191. "type": "zip",
  9192. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  9193. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  9194. "shasum": ""
  9195. },
  9196. "require": {
  9197. "ext-json": "*",
  9198. "guzzlehttp/promises": "^1.0",
  9199. "guzzlehttp/psr7": "^1.6.1",
  9200. "php": ">=5.5",
  9201. "symfony/polyfill-intl-idn": "^1.17.0"
  9202. },
  9203. "require-dev": {
  9204. "ext-curl": "*",
  9205. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  9206. "psr/log": "^1.1"
  9207. },
  9208. "suggest": {
  9209. "psr/log": "Required for using the Log middleware"
  9210. },
  9211. "type": "library",
  9212. "extra": {
  9213. "branch-alias": {
  9214. "dev-master": "6.5-dev"
  9215. }
  9216. },
  9217. "autoload": {
  9218. "psr-4": {
  9219. "GuzzleHttp\\": "src/"
  9220. },
  9221. "files": [
  9222. "src/functions_include.php"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "MIT"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Michael Dowling",
  9232. "email": "mtdowling@gmail.com",
  9233. "homepage": "https://github.com/mtdowling"
  9234. }
  9235. ],
  9236. "description": "Guzzle is a PHP HTTP client library",
  9237. "homepage": "http://guzzlephp.org/",
  9238. "keywords": [
  9239. "client",
  9240. "curl",
  9241. "framework",
  9242. "http",
  9243. "http client",
  9244. "rest",
  9245. "web service"
  9246. ],
  9247. "support": {
  9248. "issues": "https://github.com/guzzle/guzzle/issues",
  9249. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  9250. },
  9251. "time": "2020-06-16T21:01:06+00:00"
  9252. },
  9253. {
  9254. "name": "guzzlehttp/promises",
  9255. "version": "1.4.0",
  9256. "source": {
  9257. "type": "git",
  9258. "url": "https://github.com/guzzle/promises.git",
  9259. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  9260. },
  9261. "dist": {
  9262. "type": "zip",
  9263. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  9264. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  9265. "shasum": ""
  9266. },
  9267. "require": {
  9268. "php": ">=5.5"
  9269. },
  9270. "require-dev": {
  9271. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  9272. },
  9273. "type": "library",
  9274. "extra": {
  9275. "branch-alias": {
  9276. "dev-master": "1.4-dev"
  9277. }
  9278. },
  9279. "autoload": {
  9280. "psr-4": {
  9281. "GuzzleHttp\\Promise\\": "src/"
  9282. },
  9283. "files": [
  9284. "src/functions_include.php"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "MIT"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Michael Dowling",
  9294. "email": "mtdowling@gmail.com",
  9295. "homepage": "https://github.com/mtdowling"
  9296. }
  9297. ],
  9298. "description": "Guzzle promises library",
  9299. "keywords": [
  9300. "promise"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/guzzle/promises/issues",
  9304. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  9305. },
  9306. "time": "2020-09-30T07:37:28+00:00"
  9307. },
  9308. {
  9309. "name": "guzzlehttp/psr7",
  9310. "version": "1.7.0",
  9311. "source": {
  9312. "type": "git",
  9313. "url": "https://github.com/guzzle/psr7.git",
  9314. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  9315. },
  9316. "dist": {
  9317. "type": "zip",
  9318. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  9319. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  9320. "shasum": ""
  9321. },
  9322. "require": {
  9323. "php": ">=5.4.0",
  9324. "psr/http-message": "~1.0",
  9325. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  9326. },
  9327. "provide": {
  9328. "psr/http-message-implementation": "1.0"
  9329. },
  9330. "require-dev": {
  9331. "ext-zlib": "*",
  9332. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  9333. },
  9334. "suggest": {
  9335. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  9336. },
  9337. "type": "library",
  9338. "extra": {
  9339. "branch-alias": {
  9340. "dev-master": "1.7-dev"
  9341. }
  9342. },
  9343. "autoload": {
  9344. "psr-4": {
  9345. "GuzzleHttp\\Psr7\\": "src/"
  9346. },
  9347. "files": [
  9348. "src/functions_include.php"
  9349. ]
  9350. },
  9351. "notification-url": "https://packagist.org/downloads/",
  9352. "license": [
  9353. "MIT"
  9354. ],
  9355. "authors": [
  9356. {
  9357. "name": "Michael Dowling",
  9358. "email": "mtdowling@gmail.com",
  9359. "homepage": "https://github.com/mtdowling"
  9360. },
  9361. {
  9362. "name": "Tobias Schultze",
  9363. "homepage": "https://github.com/Tobion"
  9364. }
  9365. ],
  9366. "description": "PSR-7 message implementation that also provides common utility methods",
  9367. "keywords": [
  9368. "http",
  9369. "message",
  9370. "psr-7",
  9371. "request",
  9372. "response",
  9373. "stream",
  9374. "uri",
  9375. "url"
  9376. ],
  9377. "support": {
  9378. "issues": "https://github.com/guzzle/psr7/issues",
  9379. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  9380. },
  9381. "time": "2020-09-30T07:37:11+00:00"
  9382. },
  9383. {
  9384. "name": "kint-php/kint",
  9385. "version": "3.3",
  9386. "source": {
  9387. "type": "git",
  9388. "url": "https://github.com/kint-php/kint.git",
  9389. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  9390. },
  9391. "dist": {
  9392. "type": "zip",
  9393. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9394. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9395. "shasum": ""
  9396. },
  9397. "require": {
  9398. "php": ">=5.3.6"
  9399. },
  9400. "require-dev": {
  9401. "friendsofphp/php-cs-fixer": "^2.0",
  9402. "phpunit/phpunit": "^4.0",
  9403. "seld/phar-utils": "^1.0",
  9404. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  9405. "vimeo/psalm": "^3.0"
  9406. },
  9407. "suggest": {
  9408. "ext-ctype": "Simple data type tests",
  9409. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  9410. "ext-mbstring": "Provides string encoding detection",
  9411. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  9412. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  9413. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  9414. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  9415. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  9416. },
  9417. "type": "library",
  9418. "autoload": {
  9419. "files": [
  9420. "init.php"
  9421. ],
  9422. "psr-4": {
  9423. "Kint\\": "src/"
  9424. }
  9425. },
  9426. "notification-url": "https://packagist.org/downloads/",
  9427. "license": [
  9428. "MIT"
  9429. ],
  9430. "authors": [
  9431. {
  9432. "name": "Jonathan Vollebregt",
  9433. "homepage": "https://github.com/jnvsor"
  9434. },
  9435. {
  9436. "name": "Rokas Šleinius",
  9437. "homepage": "https://github.com/raveren"
  9438. },
  9439. {
  9440. "name": "Contributors",
  9441. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  9442. }
  9443. ],
  9444. "description": "Kint - debugging tool for PHP developers",
  9445. "homepage": "https://kint-php.github.io/kint/",
  9446. "keywords": [
  9447. "debug",
  9448. "kint",
  9449. "php"
  9450. ],
  9451. "support": {
  9452. "issues": "https://github.com/kint-php/kint/issues",
  9453. "source": "https://github.com/kint-php/kint/tree/master"
  9454. },
  9455. "time": "2019-10-17T18:05:24+00:00"
  9456. },
  9457. {
  9458. "name": "laminas/laminas-diactoros",
  9459. "version": "2.5.0",
  9460. "source": {
  9461. "type": "git",
  9462. "url": "https://github.com/laminas/laminas-diactoros.git",
  9463. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  9464. },
  9465. "dist": {
  9466. "type": "zip",
  9467. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  9468. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  9469. "shasum": ""
  9470. },
  9471. "require": {
  9472. "laminas/laminas-zendframework-bridge": "^1.0",
  9473. "php": "^7.3 || ~8.0.0",
  9474. "psr/http-factory": "^1.0",
  9475. "psr/http-message": "^1.0"
  9476. },
  9477. "conflict": {
  9478. "phpspec/prophecy": "<1.9.0"
  9479. },
  9480. "provide": {
  9481. "psr/http-factory-implementation": "1.0",
  9482. "psr/http-message-implementation": "1.0"
  9483. },
  9484. "replace": {
  9485. "zendframework/zend-diactoros": "^2.2.1"
  9486. },
  9487. "require-dev": {
  9488. "ext-curl": "*",
  9489. "ext-dom": "*",
  9490. "ext-gd": "*",
  9491. "ext-libxml": "*",
  9492. "http-interop/http-factory-tests": "^0.8.0",
  9493. "laminas/laminas-coding-standard": "~1.0.0",
  9494. "php-http/psr7-integration-tests": "^1.1",
  9495. "phpspec/prophecy-phpunit": "^2.0",
  9496. "phpunit/phpunit": "^9.1"
  9497. },
  9498. "type": "library",
  9499. "extra": {
  9500. "laminas": {
  9501. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  9502. "module": "Laminas\\Diactoros"
  9503. }
  9504. },
  9505. "autoload": {
  9506. "files": [
  9507. "src/functions/create_uploaded_file.php",
  9508. "src/functions/marshal_headers_from_sapi.php",
  9509. "src/functions/marshal_method_from_sapi.php",
  9510. "src/functions/marshal_protocol_version_from_sapi.php",
  9511. "src/functions/marshal_uri_from_sapi.php",
  9512. "src/functions/normalize_server.php",
  9513. "src/functions/normalize_uploaded_files.php",
  9514. "src/functions/parse_cookie_header.php",
  9515. "src/functions/create_uploaded_file.legacy.php",
  9516. "src/functions/marshal_headers_from_sapi.legacy.php",
  9517. "src/functions/marshal_method_from_sapi.legacy.php",
  9518. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  9519. "src/functions/marshal_uri_from_sapi.legacy.php",
  9520. "src/functions/normalize_server.legacy.php",
  9521. "src/functions/normalize_uploaded_files.legacy.php",
  9522. "src/functions/parse_cookie_header.legacy.php"
  9523. ],
  9524. "psr-4": {
  9525. "Laminas\\Diactoros\\": "src/"
  9526. }
  9527. },
  9528. "notification-url": "https://packagist.org/downloads/",
  9529. "license": [
  9530. "BSD-3-Clause"
  9531. ],
  9532. "description": "PSR HTTP Message implementations",
  9533. "homepage": "https://laminas.dev",
  9534. "keywords": [
  9535. "http",
  9536. "laminas",
  9537. "psr",
  9538. "psr-17",
  9539. "psr-7"
  9540. ],
  9541. "support": {
  9542. "chat": "https://laminas.dev/chat",
  9543. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  9544. "forum": "https://discourse.laminas.dev",
  9545. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  9546. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  9547. "source": "https://github.com/laminas/laminas-diactoros"
  9548. },
  9549. "funding": [
  9550. {
  9551. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9552. "type": "community_bridge"
  9553. }
  9554. ],
  9555. "time": "2020-11-18T18:39:28+00:00"
  9556. },
  9557. {
  9558. "name": "laminas/laminas-escaper",
  9559. "version": "2.7.0",
  9560. "source": {
  9561. "type": "git",
  9562. "url": "https://github.com/laminas/laminas-escaper.git",
  9563. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  9564. },
  9565. "dist": {
  9566. "type": "zip",
  9567. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  9568. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  9569. "shasum": ""
  9570. },
  9571. "require": {
  9572. "laminas/laminas-zendframework-bridge": "^1.0",
  9573. "php": "^7.3 || ~8.0.0"
  9574. },
  9575. "replace": {
  9576. "zendframework/zend-escaper": "^2.6.1"
  9577. },
  9578. "require-dev": {
  9579. "laminas/laminas-coding-standard": "~1.0.0",
  9580. "phpunit/phpunit": "^9.3",
  9581. "psalm/plugin-phpunit": "^0.12.2",
  9582. "vimeo/psalm": "^3.16"
  9583. },
  9584. "suggest": {
  9585. "ext-iconv": "*",
  9586. "ext-mbstring": "*"
  9587. },
  9588. "type": "library",
  9589. "autoload": {
  9590. "psr-4": {
  9591. "Laminas\\Escaper\\": "src/"
  9592. }
  9593. },
  9594. "notification-url": "https://packagist.org/downloads/",
  9595. "license": [
  9596. "BSD-3-Clause"
  9597. ],
  9598. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9599. "homepage": "https://laminas.dev",
  9600. "keywords": [
  9601. "escaper",
  9602. "laminas"
  9603. ],
  9604. "support": {
  9605. "chat": "https://laminas.dev/chat",
  9606. "docs": "https://docs.laminas.dev/laminas-escaper/",
  9607. "forum": "https://discourse.laminas.dev",
  9608. "issues": "https://github.com/laminas/laminas-escaper/issues",
  9609. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  9610. "source": "https://github.com/laminas/laminas-escaper"
  9611. },
  9612. "funding": [
  9613. {
  9614. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9615. "type": "community_bridge"
  9616. }
  9617. ],
  9618. "time": "2020-11-17T21:26:43+00:00"
  9619. },
  9620. {
  9621. "name": "laminas/laminas-feed",
  9622. "version": "2.13.0",
  9623. "source": {
  9624. "type": "git",
  9625. "url": "https://github.com/laminas/laminas-feed.git",
  9626. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  9627. },
  9628. "dist": {
  9629. "type": "zip",
  9630. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  9631. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  9632. "shasum": ""
  9633. },
  9634. "require": {
  9635. "ext-dom": "*",
  9636. "ext-libxml": "*",
  9637. "laminas/laminas-escaper": "^2.5.2",
  9638. "laminas/laminas-stdlib": "^3.2.1",
  9639. "laminas/laminas-zendframework-bridge": "^1.0",
  9640. "php": "^7.3 || ~8.0.0"
  9641. },
  9642. "conflict": {
  9643. "laminas/laminas-servicemanager": "<3.3"
  9644. },
  9645. "replace": {
  9646. "zendframework/zend-feed": "^2.12.0"
  9647. },
  9648. "require-dev": {
  9649. "laminas/laminas-cache": "^2.7.2",
  9650. "laminas/laminas-coding-standard": "~1.0.0",
  9651. "laminas/laminas-db": "^2.8.2",
  9652. "laminas/laminas-http": "^2.7",
  9653. "laminas/laminas-servicemanager": "^3.3",
  9654. "laminas/laminas-validator": "^2.10.1",
  9655. "phpunit/phpunit": "^9.3",
  9656. "psalm/plugin-phpunit": "^0.13.0",
  9657. "psr/http-message": "^1.0.1",
  9658. "vimeo/psalm": "^4.1"
  9659. },
  9660. "suggest": {
  9661. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  9662. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  9663. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  9664. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  9665. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  9666. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  9667. },
  9668. "type": "library",
  9669. "autoload": {
  9670. "psr-4": {
  9671. "Laminas\\Feed\\": "src/"
  9672. }
  9673. },
  9674. "notification-url": "https://packagist.org/downloads/",
  9675. "license": [
  9676. "BSD-3-Clause"
  9677. ],
  9678. "description": "provides functionality for consuming RSS and Atom feeds",
  9679. "homepage": "https://laminas.dev",
  9680. "keywords": [
  9681. "feed",
  9682. "laminas"
  9683. ],
  9684. "support": {
  9685. "chat": "https://laminas.dev/chat",
  9686. "docs": "https://docs.laminas.dev/laminas-feed/",
  9687. "forum": "https://discourse.laminas.dev",
  9688. "issues": "https://github.com/laminas/laminas-feed/issues",
  9689. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  9690. "source": "https://github.com/laminas/laminas-feed"
  9691. },
  9692. "funding": [
  9693. {
  9694. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9695. "type": "community_bridge"
  9696. }
  9697. ],
  9698. "time": "2020-11-18T21:02:52+00:00"
  9699. },
  9700. {
  9701. "name": "laminas/laminas-stdlib",
  9702. "version": "3.3.0",
  9703. "source": {
  9704. "type": "git",
  9705. "url": "https://github.com/laminas/laminas-stdlib.git",
  9706. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  9707. },
  9708. "dist": {
  9709. "type": "zip",
  9710. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  9711. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  9712. "shasum": ""
  9713. },
  9714. "require": {
  9715. "laminas/laminas-zendframework-bridge": "^1.0",
  9716. "php": "^7.3 || ^8.0"
  9717. },
  9718. "replace": {
  9719. "zendframework/zend-stdlib": "^3.2.1"
  9720. },
  9721. "require-dev": {
  9722. "laminas/laminas-coding-standard": "~1.0.0",
  9723. "phpbench/phpbench": "^0.17.1",
  9724. "phpunit/phpunit": "^9.3.7"
  9725. },
  9726. "type": "library",
  9727. "extra": {
  9728. "branch-alias": {
  9729. "dev-master": "3.3.x-dev",
  9730. "dev-develop": "3.4.x-dev"
  9731. }
  9732. },
  9733. "autoload": {
  9734. "psr-4": {
  9735. "Laminas\\Stdlib\\": "src/"
  9736. }
  9737. },
  9738. "notification-url": "https://packagist.org/downloads/",
  9739. "license": [
  9740. "BSD-3-Clause"
  9741. ],
  9742. "description": "SPL extensions, array utilities, error handlers, and more",
  9743. "homepage": "https://laminas.dev",
  9744. "keywords": [
  9745. "laminas",
  9746. "stdlib"
  9747. ],
  9748. "support": {
  9749. "chat": "https://laminas.dev/chat",
  9750. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  9751. "forum": "https://discourse.laminas.dev",
  9752. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  9753. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  9754. "source": "https://github.com/laminas/laminas-stdlib"
  9755. },
  9756. "funding": [
  9757. {
  9758. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9759. "type": "community_bridge"
  9760. }
  9761. ],
  9762. "time": "2020-08-25T09:08:16+00:00"
  9763. },
  9764. {
  9765. "name": "laminas/laminas-zendframework-bridge",
  9766. "version": "1.1.1",
  9767. "source": {
  9768. "type": "git",
  9769. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  9770. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  9771. },
  9772. "dist": {
  9773. "type": "zip",
  9774. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  9775. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  9776. "shasum": ""
  9777. },
  9778. "require": {
  9779. "php": "^5.6 || ^7.0 || ^8.0"
  9780. },
  9781. "require-dev": {
  9782. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  9783. "squizlabs/php_codesniffer": "^3.5"
  9784. },
  9785. "type": "library",
  9786. "extra": {
  9787. "laminas": {
  9788. "module": "Laminas\\ZendFrameworkBridge"
  9789. }
  9790. },
  9791. "autoload": {
  9792. "files": [
  9793. "src/autoload.php"
  9794. ],
  9795. "psr-4": {
  9796. "Laminas\\ZendFrameworkBridge\\": "src//"
  9797. }
  9798. },
  9799. "notification-url": "https://packagist.org/downloads/",
  9800. "license": [
  9801. "BSD-3-Clause"
  9802. ],
  9803. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  9804. "keywords": [
  9805. "ZendFramework",
  9806. "autoloading",
  9807. "laminas",
  9808. "zf"
  9809. ],
  9810. "support": {
  9811. "forum": "https://discourse.laminas.dev/",
  9812. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  9813. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  9814. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  9815. },
  9816. "funding": [
  9817. {
  9818. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9819. "type": "community_bridge"
  9820. }
  9821. ],
  9822. "time": "2020-09-14T14:23:00+00:00"
  9823. },
  9824. {
  9825. "name": "league/container",
  9826. "version": "2.5.0",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/thephpleague/container.git",
  9830. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  9835. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  9836. "shasum": ""
  9837. },
  9838. "require": {
  9839. "container-interop/container-interop": "^1.2",
  9840. "php": "^5.4 || ^7.0 || ^8.0"
  9841. },
  9842. "provide": {
  9843. "container-interop/container-interop-implementation": "^1.2",
  9844. "psr/container-implementation": "^1.0"
  9845. },
  9846. "replace": {
  9847. "orno/di": "~2.0"
  9848. },
  9849. "require-dev": {
  9850. "phpunit/phpunit": "^4.8.36",
  9851. "scrutinizer/ocular": "^1.3",
  9852. "squizlabs/php_codesniffer": "^3.5"
  9853. },
  9854. "type": "library",
  9855. "extra": {
  9856. "branch-alias": {
  9857. "dev-2.x": "2.x-dev",
  9858. "dev-1.x": "1.x-dev"
  9859. }
  9860. },
  9861. "autoload": {
  9862. "psr-4": {
  9863. "League\\Container\\": "src"
  9864. }
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "Phil Bennett",
  9873. "email": "philipobenito@gmail.com",
  9874. "homepage": "http://www.philipobenito.com",
  9875. "role": "Developer"
  9876. }
  9877. ],
  9878. "description": "A fast and intuitive dependency injection container.",
  9879. "homepage": "https://github.com/thephpleague/container",
  9880. "keywords": [
  9881. "container",
  9882. "dependency",
  9883. "di",
  9884. "injection",
  9885. "league",
  9886. "provider",
  9887. "service"
  9888. ],
  9889. "support": {
  9890. "issues": "https://github.com/thephpleague/container/issues",
  9891. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  9892. },
  9893. "funding": [
  9894. {
  9895. "url": "https://github.com/philipobenito",
  9896. "type": "github"
  9897. }
  9898. ],
  9899. "time": "2021-02-22T09:20:06+00:00"
  9900. },
  9901. {
  9902. "name": "lsolesen/pel",
  9903. "version": "0.9.10",
  9904. "source": {
  9905. "type": "git",
  9906. "url": "https://github.com/pel/pel.git",
  9907. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9"
  9908. },
  9909. "dist": {
  9910. "type": "zip",
  9911. "url": "https://api.github.com/repos/pel/pel/zipball/04ecb8a29e4b1628414193b0df9294232a44f8a9",
  9912. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9",
  9913. "shasum": ""
  9914. },
  9915. "require": {
  9916. "php": ">=7.1.0"
  9917. },
  9918. "require-dev": {
  9919. "ext-exif": "*",
  9920. "ext-gd": "*",
  9921. "php-coveralls/php-coveralls": ">2.4",
  9922. "squizlabs/php_codesniffer": ">3.5",
  9923. "symfony/phpunit-bridge": "^4 || ^5"
  9924. },
  9925. "type": "library",
  9926. "autoload": {
  9927. "psr-4": {
  9928. "lsolesen\\pel\\": "src/"
  9929. }
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "GPL-2.0"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Lars Olesen",
  9938. "email": "lars@intraface.dk",
  9939. "homepage": "http://intraface.dk",
  9940. "role": "Developer"
  9941. },
  9942. {
  9943. "name": "Martin Geisler",
  9944. "email": "martin@geisler.net",
  9945. "homepage": "http://geisler.net",
  9946. "role": "Developer"
  9947. }
  9948. ],
  9949. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9950. "homepage": "http://pel.github.com/pel/",
  9951. "keywords": [
  9952. "exif",
  9953. "image"
  9954. ],
  9955. "support": {
  9956. "issues": "https://github.com/pel/pel/issues",
  9957. "source": "https://github.com/pel/pel/tree/0.9.10"
  9958. },
  9959. "time": "2021-01-01T22:15:50+00:00"
  9960. },
  9961. {
  9962. "name": "masterminds/html5",
  9963. "version": "2.7.4",
  9964. "source": {
  9965. "type": "git",
  9966. "url": "https://github.com/Masterminds/html5-php.git",
  9967. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  9968. },
  9969. "dist": {
  9970. "type": "zip",
  9971. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  9972. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  9973. "shasum": ""
  9974. },
  9975. "require": {
  9976. "ext-ctype": "*",
  9977. "ext-dom": "*",
  9978. "ext-libxml": "*",
  9979. "php": ">=5.3.0"
  9980. },
  9981. "require-dev": {
  9982. "phpunit/phpunit": "^4.8.35"
  9983. },
  9984. "type": "library",
  9985. "extra": {
  9986. "branch-alias": {
  9987. "dev-master": "2.7-dev"
  9988. }
  9989. },
  9990. "autoload": {
  9991. "psr-4": {
  9992. "Masterminds\\": "src"
  9993. }
  9994. },
  9995. "notification-url": "https://packagist.org/downloads/",
  9996. "license": [
  9997. "MIT"
  9998. ],
  9999. "authors": [
  10000. {
  10001. "name": "Matt Butcher",
  10002. "email": "technosophos@gmail.com"
  10003. },
  10004. {
  10005. "name": "Matt Farina",
  10006. "email": "matt@mattfarina.com"
  10007. },
  10008. {
  10009. "name": "Asmir Mustafic",
  10010. "email": "goetas@gmail.com"
  10011. }
  10012. ],
  10013. "description": "An HTML5 parser and serializer.",
  10014. "homepage": "http://masterminds.github.io/html5-php",
  10015. "keywords": [
  10016. "HTML5",
  10017. "dom",
  10018. "html",
  10019. "parser",
  10020. "querypath",
  10021. "serializer",
  10022. "xml"
  10023. ],
  10024. "support": {
  10025. "issues": "https://github.com/Masterminds/html5-php/issues",
  10026. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  10027. },
  10028. "time": "2020-10-01T13:52:52+00:00"
  10029. },
  10030. {
  10031. "name": "nikic/php-parser",
  10032. "version": "v4.10.4",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/nikic/PHP-Parser.git",
  10036. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  10041. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "ext-tokenizer": "*",
  10046. "php": ">=7.0"
  10047. },
  10048. "require-dev": {
  10049. "ircmaxell/php-yacc": "^0.0.7",
  10050. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  10051. },
  10052. "bin": [
  10053. "bin/php-parse"
  10054. ],
  10055. "type": "library",
  10056. "extra": {
  10057. "branch-alias": {
  10058. "dev-master": "4.9-dev"
  10059. }
  10060. },
  10061. "autoload": {
  10062. "psr-4": {
  10063. "PhpParser\\": "lib/PhpParser"
  10064. }
  10065. },
  10066. "notification-url": "https://packagist.org/downloads/",
  10067. "license": [
  10068. "BSD-3-Clause"
  10069. ],
  10070. "authors": [
  10071. {
  10072. "name": "Nikita Popov"
  10073. }
  10074. ],
  10075. "description": "A PHP parser written in PHP",
  10076. "keywords": [
  10077. "parser",
  10078. "php"
  10079. ],
  10080. "support": {
  10081. "issues": "https://github.com/nikic/PHP-Parser/issues",
  10082. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  10083. },
  10084. "time": "2020-12-20T10:01:03+00:00"
  10085. },
  10086. {
  10087. "name": "pear/archive_tar",
  10088. "version": "1.4.13",
  10089. "source": {
  10090. "type": "git",
  10091. "url": "https://github.com/pear/Archive_Tar.git",
  10092. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011"
  10093. },
  10094. "dist": {
  10095. "type": "zip",
  10096. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/2b87b41178cc6d4ad3cba678a46a1cae49786011",
  10097. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011",
  10098. "shasum": ""
  10099. },
  10100. "require": {
  10101. "pear/pear-core-minimal": "^1.10.0alpha2",
  10102. "php": ">=5.2.0"
  10103. },
  10104. "require-dev": {
  10105. "phpunit/phpunit": "*"
  10106. },
  10107. "suggest": {
  10108. "ext-bz2": "Bz2 compression support.",
  10109. "ext-xz": "Lzma2 compression support.",
  10110. "ext-zlib": "Gzip compression support."
  10111. },
  10112. "type": "library",
  10113. "extra": {
  10114. "branch-alias": {
  10115. "dev-master": "1.4.x-dev"
  10116. }
  10117. },
  10118. "autoload": {
  10119. "psr-0": {
  10120. "Archive_Tar": ""
  10121. }
  10122. },
  10123. "notification-url": "https://packagist.org/downloads/",
  10124. "include-path": [
  10125. "./"
  10126. ],
  10127. "license": [
  10128. "BSD-3-Clause"
  10129. ],
  10130. "authors": [
  10131. {
  10132. "name": "Vincent Blavet",
  10133. "email": "vincent@phpconcept.net"
  10134. },
  10135. {
  10136. "name": "Greg Beaver",
  10137. "email": "greg@chiaraquartet.net"
  10138. },
  10139. {
  10140. "name": "Michiel Rook",
  10141. "email": "mrook@php.net"
  10142. }
  10143. ],
  10144. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  10145. "homepage": "https://github.com/pear/Archive_Tar",
  10146. "keywords": [
  10147. "archive",
  10148. "tar"
  10149. ],
  10150. "support": {
  10151. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  10152. "source": "https://github.com/pear/Archive_Tar"
  10153. },
  10154. "funding": [
  10155. {
  10156. "url": "https://github.com/mrook",
  10157. "type": "github"
  10158. },
  10159. {
  10160. "url": "https://www.patreon.com/michielrook",
  10161. "type": "patreon"
  10162. }
  10163. ],
  10164. "time": "2021-02-16T10:50:50+00:00"
  10165. },
  10166. {
  10167. "name": "pear/console_getopt",
  10168. "version": "v1.4.3",
  10169. "source": {
  10170. "type": "git",
  10171. "url": "https://github.com/pear/Console_Getopt.git",
  10172. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  10173. },
  10174. "dist": {
  10175. "type": "zip",
  10176. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  10177. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  10178. "shasum": ""
  10179. },
  10180. "type": "library",
  10181. "autoload": {
  10182. "psr-0": {
  10183. "Console": "./"
  10184. }
  10185. },
  10186. "notification-url": "https://packagist.org/downloads/",
  10187. "include-path": [
  10188. "./"
  10189. ],
  10190. "license": [
  10191. "BSD-2-Clause"
  10192. ],
  10193. "authors": [
  10194. {
  10195. "name": "Andrei Zmievski",
  10196. "email": "andrei@php.net",
  10197. "role": "Lead"
  10198. },
  10199. {
  10200. "name": "Stig Bakken",
  10201. "email": "stig@php.net",
  10202. "role": "Developer"
  10203. },
  10204. {
  10205. "name": "Greg Beaver",
  10206. "email": "cellog@php.net",
  10207. "role": "Helper"
  10208. }
  10209. ],
  10210. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  10211. "support": {
  10212. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  10213. "source": "https://github.com/pear/Console_Getopt"
  10214. },
  10215. "time": "2019-11-20T18:27:48+00:00"
  10216. },
  10217. {
  10218. "name": "pear/pear-core-minimal",
  10219. "version": "v1.10.10",
  10220. "source": {
  10221. "type": "git",
  10222. "url": "https://github.com/pear/pear-core-minimal.git",
  10223. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  10224. },
  10225. "dist": {
  10226. "type": "zip",
  10227. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  10228. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  10229. "shasum": ""
  10230. },
  10231. "require": {
  10232. "pear/console_getopt": "~1.4",
  10233. "pear/pear_exception": "~1.0"
  10234. },
  10235. "replace": {
  10236. "rsky/pear-core-min": "self.version"
  10237. },
  10238. "type": "library",
  10239. "autoload": {
  10240. "psr-0": {
  10241. "": "src/"
  10242. }
  10243. },
  10244. "notification-url": "https://packagist.org/downloads/",
  10245. "include-path": [
  10246. "src/"
  10247. ],
  10248. "license": [
  10249. "BSD-3-Clause"
  10250. ],
  10251. "authors": [
  10252. {
  10253. "name": "Christian Weiske",
  10254. "email": "cweiske@php.net",
  10255. "role": "Lead"
  10256. }
  10257. ],
  10258. "description": "Minimal set of PEAR core files to be used as composer dependency",
  10259. "support": {
  10260. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  10261. "source": "https://github.com/pear/pear-core-minimal"
  10262. },
  10263. "time": "2019-11-19T19:00:24+00:00"
  10264. },
  10265. {
  10266. "name": "pear/pear_exception",
  10267. "version": "v1.0.1",
  10268. "source": {
  10269. "type": "git",
  10270. "url": "https://github.com/pear/PEAR_Exception.git",
  10271. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  10272. },
  10273. "dist": {
  10274. "type": "zip",
  10275. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  10276. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  10277. "shasum": ""
  10278. },
  10279. "require": {
  10280. "php": ">=4.4.0"
  10281. },
  10282. "require-dev": {
  10283. "phpunit/phpunit": "*"
  10284. },
  10285. "type": "class",
  10286. "extra": {
  10287. "branch-alias": {
  10288. "dev-master": "1.0.x-dev"
  10289. }
  10290. },
  10291. "autoload": {
  10292. "classmap": [
  10293. "PEAR/"
  10294. ]
  10295. },
  10296. "notification-url": "https://packagist.org/downloads/",
  10297. "include-path": [
  10298. "."
  10299. ],
  10300. "license": [
  10301. "BSD-2-Clause"
  10302. ],
  10303. "authors": [
  10304. {
  10305. "name": "Helgi Thormar",
  10306. "email": "dufuz@php.net"
  10307. },
  10308. {
  10309. "name": "Greg Beaver",
  10310. "email": "cellog@php.net"
  10311. }
  10312. ],
  10313. "description": "The PEAR Exception base class.",
  10314. "homepage": "https://github.com/pear/PEAR_Exception",
  10315. "keywords": [
  10316. "exception"
  10317. ],
  10318. "support": {
  10319. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  10320. "source": "https://github.com/pear/PEAR_Exception"
  10321. },
  10322. "time": "2019-12-10T10:24:42+00:00"
  10323. },
  10324. {
  10325. "name": "phenx/php-font-lib",
  10326. "version": "0.5.2",
  10327. "source": {
  10328. "type": "git",
  10329. "url": "https://github.com/PhenX/php-font-lib.git",
  10330. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  10331. },
  10332. "dist": {
  10333. "type": "zip",
  10334. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  10335. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  10336. "shasum": ""
  10337. },
  10338. "require-dev": {
  10339. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  10340. },
  10341. "type": "library",
  10342. "autoload": {
  10343. "psr-4": {
  10344. "FontLib\\": "src/FontLib"
  10345. }
  10346. },
  10347. "notification-url": "https://packagist.org/downloads/",
  10348. "license": [
  10349. "LGPL-3.0"
  10350. ],
  10351. "authors": [
  10352. {
  10353. "name": "Fabien Ménager",
  10354. "email": "fabien.menager@gmail.com"
  10355. }
  10356. ],
  10357. "description": "A library to read, parse, export and make subsets of different types of font files.",
  10358. "homepage": "https://github.com/PhenX/php-font-lib",
  10359. "support": {
  10360. "issues": "https://github.com/PhenX/php-font-lib/issues",
  10361. "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2"
  10362. },
  10363. "time": "2020-03-08T15:31:32+00:00"
  10364. },
  10365. {
  10366. "name": "phpmailer/phpmailer",
  10367. "version": "v6.4.0",
  10368. "source": {
  10369. "type": "git",
  10370. "url": "https://github.com/PHPMailer/PHPMailer.git",
  10371. "reference": "050d430203105c27c30efd1dce7aa421ad882d01"
  10372. },
  10373. "dist": {
  10374. "type": "zip",
  10375. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/050d430203105c27c30efd1dce7aa421ad882d01",
  10376. "reference": "050d430203105c27c30efd1dce7aa421ad882d01",
  10377. "shasum": ""
  10378. },
  10379. "require": {
  10380. "ext-ctype": "*",
  10381. "ext-filter": "*",
  10382. "ext-hash": "*",
  10383. "php": ">=5.5.0"
  10384. },
  10385. "require-dev": {
  10386. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  10387. "doctrine/annotations": "^1.2",
  10388. "phpcompatibility/php-compatibility": "^9.3.5",
  10389. "roave/security-advisories": "dev-latest",
  10390. "squizlabs/php_codesniffer": "^3.5.6",
  10391. "yoast/phpunit-polyfills": "^0.2.0"
  10392. },
  10393. "suggest": {
  10394. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  10395. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  10396. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  10397. "psr/log": "For optional PSR-3 debug logging",
  10398. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  10399. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  10400. },
  10401. "type": "library",
  10402. "autoload": {
  10403. "psr-4": {
  10404. "PHPMailer\\PHPMailer\\": "src/"
  10405. }
  10406. },
  10407. "notification-url": "https://packagist.org/downloads/",
  10408. "license": [
  10409. "LGPL-2.1-only"
  10410. ],
  10411. "authors": [
  10412. {
  10413. "name": "Marcus Bointon",
  10414. "email": "phpmailer@synchromedia.co.uk"
  10415. },
  10416. {
  10417. "name": "Jim Jagielski",
  10418. "email": "jimjag@gmail.com"
  10419. },
  10420. {
  10421. "name": "Andy Prevost",
  10422. "email": "codeworxtech@users.sourceforge.net"
  10423. },
  10424. {
  10425. "name": "Brent R. Matzelle"
  10426. }
  10427. ],
  10428. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10429. "support": {
  10430. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10431. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.4.0"
  10432. },
  10433. "funding": [
  10434. {
  10435. "url": "https://github.com/Synchro",
  10436. "type": "github"
  10437. }
  10438. ],
  10439. "time": "2021-03-31T20:06:42+00:00"
  10440. },
  10441. {
  10442. "name": "psr/container",
  10443. "version": "1.0.0",
  10444. "source": {
  10445. "type": "git",
  10446. "url": "https://github.com/php-fig/container.git",
  10447. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  10448. },
  10449. "dist": {
  10450. "type": "zip",
  10451. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  10452. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  10453. "shasum": ""
  10454. },
  10455. "require": {
  10456. "php": ">=5.3.0"
  10457. },
  10458. "type": "library",
  10459. "extra": {
  10460. "branch-alias": {
  10461. "dev-master": "1.0.x-dev"
  10462. }
  10463. },
  10464. "autoload": {
  10465. "psr-4": {
  10466. "Psr\\Container\\": "src/"
  10467. }
  10468. },
  10469. "notification-url": "https://packagist.org/downloads/",
  10470. "license": [
  10471. "MIT"
  10472. ],
  10473. "authors": [
  10474. {
  10475. "name": "PHP-FIG",
  10476. "homepage": "http://www.php-fig.org/"
  10477. }
  10478. ],
  10479. "description": "Common Container Interface (PHP FIG PSR-11)",
  10480. "homepage": "https://github.com/php-fig/container",
  10481. "keywords": [
  10482. "PSR-11",
  10483. "container",
  10484. "container-interface",
  10485. "container-interop",
  10486. "psr"
  10487. ],
  10488. "support": {
  10489. "issues": "https://github.com/php-fig/container/issues",
  10490. "source": "https://github.com/php-fig/container/tree/master"
  10491. },
  10492. "time": "2017-02-14T16:28:37+00:00"
  10493. },
  10494. {
  10495. "name": "psr/http-factory",
  10496. "version": "1.0.1",
  10497. "source": {
  10498. "type": "git",
  10499. "url": "https://github.com/php-fig/http-factory.git",
  10500. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  10501. },
  10502. "dist": {
  10503. "type": "zip",
  10504. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  10505. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  10506. "shasum": ""
  10507. },
  10508. "require": {
  10509. "php": ">=7.0.0",
  10510. "psr/http-message": "^1.0"
  10511. },
  10512. "type": "library",
  10513. "extra": {
  10514. "branch-alias": {
  10515. "dev-master": "1.0.x-dev"
  10516. }
  10517. },
  10518. "autoload": {
  10519. "psr-4": {
  10520. "Psr\\Http\\Message\\": "src/"
  10521. }
  10522. },
  10523. "notification-url": "https://packagist.org/downloads/",
  10524. "license": [
  10525. "MIT"
  10526. ],
  10527. "authors": [
  10528. {
  10529. "name": "PHP-FIG",
  10530. "homepage": "http://www.php-fig.org/"
  10531. }
  10532. ],
  10533. "description": "Common interfaces for PSR-7 HTTP message factories",
  10534. "keywords": [
  10535. "factory",
  10536. "http",
  10537. "message",
  10538. "psr",
  10539. "psr-17",
  10540. "psr-7",
  10541. "request",
  10542. "response"
  10543. ],
  10544. "support": {
  10545. "source": "https://github.com/php-fig/http-factory/tree/master"
  10546. },
  10547. "time": "2019-04-30T12:38:16+00:00"
  10548. },
  10549. {
  10550. "name": "psr/http-message",
  10551. "version": "1.0.1",
  10552. "source": {
  10553. "type": "git",
  10554. "url": "https://github.com/php-fig/http-message.git",
  10555. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  10556. },
  10557. "dist": {
  10558. "type": "zip",
  10559. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  10560. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  10561. "shasum": ""
  10562. },
  10563. "require": {
  10564. "php": ">=5.3.0"
  10565. },
  10566. "type": "library",
  10567. "extra": {
  10568. "branch-alias": {
  10569. "dev-master": "1.0.x-dev"
  10570. }
  10571. },
  10572. "autoload": {
  10573. "psr-4": {
  10574. "Psr\\Http\\Message\\": "src/"
  10575. }
  10576. },
  10577. "notification-url": "https://packagist.org/downloads/",
  10578. "license": [
  10579. "MIT"
  10580. ],
  10581. "authors": [
  10582. {
  10583. "name": "PHP-FIG",
  10584. "homepage": "http://www.php-fig.org/"
  10585. }
  10586. ],
  10587. "description": "Common interface for HTTP messages",
  10588. "homepage": "https://github.com/php-fig/http-message",
  10589. "keywords": [
  10590. "http",
  10591. "http-message",
  10592. "psr",
  10593. "psr-7",
  10594. "request",
  10595. "response"
  10596. ],
  10597. "support": {
  10598. "source": "https://github.com/php-fig/http-message/tree/master"
  10599. },
  10600. "time": "2016-08-06T14:39:51+00:00"
  10601. },
  10602. {
  10603. "name": "psr/log",
  10604. "version": "1.1.3",
  10605. "source": {
  10606. "type": "git",
  10607. "url": "https://github.com/php-fig/log.git",
  10608. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  10609. },
  10610. "dist": {
  10611. "type": "zip",
  10612. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  10613. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  10614. "shasum": ""
  10615. },
  10616. "require": {
  10617. "php": ">=5.3.0"
  10618. },
  10619. "type": "library",
  10620. "extra": {
  10621. "branch-alias": {
  10622. "dev-master": "1.1.x-dev"
  10623. }
  10624. },
  10625. "autoload": {
  10626. "psr-4": {
  10627. "Psr\\Log\\": "Psr/Log/"
  10628. }
  10629. },
  10630. "notification-url": "https://packagist.org/downloads/",
  10631. "license": [
  10632. "MIT"
  10633. ],
  10634. "authors": [
  10635. {
  10636. "name": "PHP-FIG",
  10637. "homepage": "http://www.php-fig.org/"
  10638. }
  10639. ],
  10640. "description": "Common interface for logging libraries",
  10641. "homepage": "https://github.com/php-fig/log",
  10642. "keywords": [
  10643. "log",
  10644. "psr",
  10645. "psr-3"
  10646. ],
  10647. "support": {
  10648. "source": "https://github.com/php-fig/log/tree/1.1.3"
  10649. },
  10650. "time": "2020-03-23T09:12:05+00:00"
  10651. },
  10652. {
  10653. "name": "psy/psysh",
  10654. "version": "v0.10.8",
  10655. "source": {
  10656. "type": "git",
  10657. "url": "https://github.com/bobthecow/psysh.git",
  10658. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  10659. },
  10660. "dist": {
  10661. "type": "zip",
  10662. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  10663. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  10664. "shasum": ""
  10665. },
  10666. "require": {
  10667. "ext-json": "*",
  10668. "ext-tokenizer": "*",
  10669. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  10670. "php": "^8.0 || ^7.0 || ^5.5.9",
  10671. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  10672. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  10673. },
  10674. "require-dev": {
  10675. "bamarni/composer-bin-plugin": "^1.2",
  10676. "hoa/console": "3.17.*"
  10677. },
  10678. "suggest": {
  10679. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10680. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10681. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  10682. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  10683. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  10684. },
  10685. "bin": [
  10686. "bin/psysh"
  10687. ],
  10688. "type": "library",
  10689. "extra": {
  10690. "branch-alias": {
  10691. "dev-main": "0.10.x-dev"
  10692. }
  10693. },
  10694. "autoload": {
  10695. "files": [
  10696. "src/functions.php"
  10697. ],
  10698. "psr-4": {
  10699. "Psy\\": "src/"
  10700. }
  10701. },
  10702. "notification-url": "https://packagist.org/downloads/",
  10703. "license": [
  10704. "MIT"
  10705. ],
  10706. "authors": [
  10707. {
  10708. "name": "Justin Hileman",
  10709. "email": "justin@justinhileman.info",
  10710. "homepage": "http://justinhileman.com"
  10711. }
  10712. ],
  10713. "description": "An interactive shell for modern PHP.",
  10714. "homepage": "http://psysh.org",
  10715. "keywords": [
  10716. "REPL",
  10717. "console",
  10718. "interactive",
  10719. "shell"
  10720. ],
  10721. "support": {
  10722. "issues": "https://github.com/bobthecow/psysh/issues",
  10723. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  10724. },
  10725. "time": "2021-04-10T16:23:39+00:00"
  10726. },
  10727. {
  10728. "name": "ralouphie/getallheaders",
  10729. "version": "3.0.3",
  10730. "source": {
  10731. "type": "git",
  10732. "url": "https://github.com/ralouphie/getallheaders.git",
  10733. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10734. },
  10735. "dist": {
  10736. "type": "zip",
  10737. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10738. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10739. "shasum": ""
  10740. },
  10741. "require": {
  10742. "php": ">=5.6"
  10743. },
  10744. "require-dev": {
  10745. "php-coveralls/php-coveralls": "^2.1",
  10746. "phpunit/phpunit": "^5 || ^6.5"
  10747. },
  10748. "type": "library",
  10749. "autoload": {
  10750. "files": [
  10751. "src/getallheaders.php"
  10752. ]
  10753. },
  10754. "notification-url": "https://packagist.org/downloads/",
  10755. "license": [
  10756. "MIT"
  10757. ],
  10758. "authors": [
  10759. {
  10760. "name": "Ralph Khattar",
  10761. "email": "ralph.khattar@gmail.com"
  10762. }
  10763. ],
  10764. "description": "A polyfill for getallheaders.",
  10765. "support": {
  10766. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10767. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10768. },
  10769. "time": "2019-03-08T08:55:37+00:00"
  10770. },
  10771. {
  10772. "name": "simshaun/recurr",
  10773. "version": "v4.0.5",
  10774. "source": {
  10775. "type": "git",
  10776. "url": "https://github.com/simshaun/recurr.git",
  10777. "reference": "08b0b46879f598cd11dd42b4c1a9c221a0562749"
  10778. },
  10779. "dist": {
  10780. "type": "zip",
  10781. "url": "https://api.github.com/repos/simshaun/recurr/zipball/08b0b46879f598cd11dd42b4c1a9c221a0562749",
  10782. "reference": "08b0b46879f598cd11dd42b4c1a9c221a0562749",
  10783. "shasum": ""
  10784. },
  10785. "require": {
  10786. "doctrine/collections": "~1.3",
  10787. "php": ">=5.5.0"
  10788. },
  10789. "require-dev": {
  10790. "phpunit/phpunit": "~5.7"
  10791. },
  10792. "type": "library",
  10793. "extra": {
  10794. "branch-alias": {
  10795. "dev-master": "0.x-dev"
  10796. }
  10797. },
  10798. "autoload": {
  10799. "psr-4": {
  10800. "Recurr\\": "src/Recurr/"
  10801. }
  10802. },
  10803. "notification-url": "https://packagist.org/downloads/",
  10804. "license": [
  10805. "MIT"
  10806. ],
  10807. "authors": [
  10808. {
  10809. "name": "Shaun Simmons",
  10810. "email": "shaun@shaun.pub",
  10811. "homepage": "https://shaun.pub"
  10812. }
  10813. ],
  10814. "description": "PHP library for working with recurrence rules",
  10815. "homepage": "https://github.com/simshaun/recurr",
  10816. "keywords": [
  10817. "dates",
  10818. "events",
  10819. "recurrence",
  10820. "recurring",
  10821. "rrule"
  10822. ],
  10823. "support": {
  10824. "issues": "https://github.com/simshaun/recurr/issues",
  10825. "source": "https://github.com/simshaun/recurr/tree/v4.0.5"
  10826. },
  10827. "time": "2021-03-25T23:00:49+00:00"
  10828. },
  10829. {
  10830. "name": "stack/builder",
  10831. "version": "v1.0.6",
  10832. "source": {
  10833. "type": "git",
  10834. "url": "https://github.com/stackphp/builder.git",
  10835. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  10836. },
  10837. "dist": {
  10838. "type": "zip",
  10839. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10840. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10841. "shasum": ""
  10842. },
  10843. "require": {
  10844. "php": ">=7.2.0",
  10845. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  10846. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  10847. },
  10848. "require-dev": {
  10849. "phpunit/phpunit": "~8.0",
  10850. "symfony/routing": "^5.0"
  10851. },
  10852. "type": "library",
  10853. "extra": {
  10854. "branch-alias": {
  10855. "dev-master": "1.0-dev"
  10856. }
  10857. },
  10858. "autoload": {
  10859. "psr-0": {
  10860. "Stack": "src"
  10861. }
  10862. },
  10863. "notification-url": "https://packagist.org/downloads/",
  10864. "license": [
  10865. "MIT"
  10866. ],
  10867. "authors": [
  10868. {
  10869. "name": "Igor Wiedler",
  10870. "email": "igor@wiedler.ch"
  10871. }
  10872. ],
  10873. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10874. "keywords": [
  10875. "stack"
  10876. ],
  10877. "support": {
  10878. "issues": "https://github.com/stackphp/builder/issues",
  10879. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  10880. },
  10881. "time": "2020-01-30T12:17:27+00:00"
  10882. },
  10883. {
  10884. "name": "stecman/symfony-console-completion",
  10885. "version": "0.11.0",
  10886. "source": {
  10887. "type": "git",
  10888. "url": "https://github.com/stecman/symfony-console-completion.git",
  10889. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10890. },
  10891. "dist": {
  10892. "type": "zip",
  10893. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10894. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10895. "shasum": ""
  10896. },
  10897. "require": {
  10898. "php": ">=5.3.2",
  10899. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10900. },
  10901. "require-dev": {
  10902. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10903. },
  10904. "type": "library",
  10905. "extra": {
  10906. "branch-alias": {
  10907. "dev-master": "0.10.x-dev"
  10908. }
  10909. },
  10910. "autoload": {
  10911. "psr-4": {
  10912. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10913. }
  10914. },
  10915. "notification-url": "https://packagist.org/downloads/",
  10916. "license": [
  10917. "MIT"
  10918. ],
  10919. "authors": [
  10920. {
  10921. "name": "Stephen Holdaway",
  10922. "email": "stephen@stecman.co.nz"
  10923. }
  10924. ],
  10925. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10926. "support": {
  10927. "issues": "https://github.com/stecman/symfony-console-completion/issues",
  10928. "source": "https://github.com/stecman/symfony-console-completion/tree/0.11.0"
  10929. },
  10930. "time": "2019-11-24T17:03:06+00:00"
  10931. },
  10932. {
  10933. "name": "symfony-cmf/routing",
  10934. "version": "2.3.3",
  10935. "source": {
  10936. "type": "git",
  10937. "url": "https://github.com/symfony-cmf/Routing.git",
  10938. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  10939. },
  10940. "dist": {
  10941. "type": "zip",
  10942. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10943. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10944. "shasum": ""
  10945. },
  10946. "require": {
  10947. "php": "^7.2 || ^8.0",
  10948. "psr/log": "^1.0",
  10949. "symfony/http-kernel": "^4.4 || ^5.0",
  10950. "symfony/routing": "^4.4 || ^5.0"
  10951. },
  10952. "require-dev": {
  10953. "symfony-cmf/testing": "^3@dev",
  10954. "symfony/config": "^4.4 || ^5.0",
  10955. "symfony/dependency-injection": "^4.4 || ^5.0",
  10956. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10957. "symfony/phpunit-bridge": "^5.0"
  10958. },
  10959. "suggest": {
  10960. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10961. },
  10962. "type": "library",
  10963. "extra": {
  10964. "branch-alias": {
  10965. "dev-master": "2.x-dev"
  10966. }
  10967. },
  10968. "autoload": {
  10969. "psr-4": {
  10970. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10971. }
  10972. },
  10973. "notification-url": "https://packagist.org/downloads/",
  10974. "license": [
  10975. "MIT"
  10976. ],
  10977. "authors": [
  10978. {
  10979. "name": "Symfony CMF Community",
  10980. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10981. }
  10982. ],
  10983. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10984. "homepage": "http://cmf.symfony.com",
  10985. "keywords": [
  10986. "database",
  10987. "routing"
  10988. ],
  10989. "support": {
  10990. "issues": "https://github.com/symfony-cmf/Routing/issues",
  10991. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.3"
  10992. },
  10993. "time": "2020-10-06T10:15:37+00:00"
  10994. },
  10995. {
  10996. "name": "symfony/config",
  10997. "version": "v4.4.20",
  10998. "source": {
  10999. "type": "git",
  11000. "url": "https://github.com/symfony/config.git",
  11001. "reference": "98606c6fa1a8f55ff964ccdd704275bf5b9f71b3"
  11002. },
  11003. "dist": {
  11004. "type": "zip",
  11005. "url": "https://api.github.com/repos/symfony/config/zipball/98606c6fa1a8f55ff964ccdd704275bf5b9f71b3",
  11006. "reference": "98606c6fa1a8f55ff964ccdd704275bf5b9f71b3",
  11007. "shasum": ""
  11008. },
  11009. "require": {
  11010. "php": ">=7.1.3",
  11011. "symfony/filesystem": "^3.4|^4.0|^5.0",
  11012. "symfony/polyfill-ctype": "~1.8"
  11013. },
  11014. "conflict": {
  11015. "symfony/finder": "<3.4"
  11016. },
  11017. "require-dev": {
  11018. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  11019. "symfony/finder": "^3.4|^4.0|^5.0",
  11020. "symfony/messenger": "^4.1|^5.0",
  11021. "symfony/service-contracts": "^1.1|^2",
  11022. "symfony/yaml": "^3.4|^4.0|^5.0"
  11023. },
  11024. "suggest": {
  11025. "symfony/yaml": "To use the yaml reference dumper"
  11026. },
  11027. "type": "library",
  11028. "autoload": {
  11029. "psr-4": {
  11030. "Symfony\\Component\\Config\\": ""
  11031. },
  11032. "exclude-from-classmap": [
  11033. "/Tests/"
  11034. ]
  11035. },
  11036. "notification-url": "https://packagist.org/downloads/",
  11037. "license": [
  11038. "MIT"
  11039. ],
  11040. "authors": [
  11041. {
  11042. "name": "Fabien Potencier",
  11043. "email": "fabien@symfony.com"
  11044. },
  11045. {
  11046. "name": "Symfony Community",
  11047. "homepage": "https://symfony.com/contributors"
  11048. }
  11049. ],
  11050. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  11051. "homepage": "https://symfony.com",
  11052. "support": {
  11053. "source": "https://github.com/symfony/config/tree/v4.4.20"
  11054. },
  11055. "funding": [
  11056. {
  11057. "url": "https://symfony.com/sponsor",
  11058. "type": "custom"
  11059. },
  11060. {
  11061. "url": "https://github.com/fabpot",
  11062. "type": "github"
  11063. },
  11064. {
  11065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11066. "type": "tidelift"
  11067. }
  11068. ],
  11069. "time": "2021-02-22T15:36:50+00:00"
  11070. },
  11071. {
  11072. "name": "symfony/console",
  11073. "version": "v4.4.16",
  11074. "source": {
  11075. "type": "git",
  11076. "url": "https://github.com/symfony/console.git",
  11077. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  11078. },
  11079. "dist": {
  11080. "type": "zip",
  11081. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  11082. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  11083. "shasum": ""
  11084. },
  11085. "require": {
  11086. "php": ">=7.1.3",
  11087. "symfony/polyfill-mbstring": "~1.0",
  11088. "symfony/polyfill-php73": "^1.8",
  11089. "symfony/polyfill-php80": "^1.15",
  11090. "symfony/service-contracts": "^1.1|^2"
  11091. },
  11092. "conflict": {
  11093. "symfony/dependency-injection": "<3.4",
  11094. "symfony/event-dispatcher": "<4.3|>=5",
  11095. "symfony/lock": "<4.4",
  11096. "symfony/process": "<3.3"
  11097. },
  11098. "provide": {
  11099. "psr/log-implementation": "1.0"
  11100. },
  11101. "require-dev": {
  11102. "psr/log": "~1.0",
  11103. "symfony/config": "^3.4|^4.0|^5.0",
  11104. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11105. "symfony/event-dispatcher": "^4.3",
  11106. "symfony/lock": "^4.4|^5.0",
  11107. "symfony/process": "^3.4|^4.0|^5.0",
  11108. "symfony/var-dumper": "^4.3|^5.0"
  11109. },
  11110. "suggest": {
  11111. "psr/log": "For using the console logger",
  11112. "symfony/event-dispatcher": "",
  11113. "symfony/lock": "",
  11114. "symfony/process": ""
  11115. },
  11116. "type": "library",
  11117. "autoload": {
  11118. "psr-4": {
  11119. "Symfony\\Component\\Console\\": ""
  11120. },
  11121. "exclude-from-classmap": [
  11122. "/Tests/"
  11123. ]
  11124. },
  11125. "notification-url": "https://packagist.org/downloads/",
  11126. "license": [
  11127. "MIT"
  11128. ],
  11129. "authors": [
  11130. {
  11131. "name": "Fabien Potencier",
  11132. "email": "fabien@symfony.com"
  11133. },
  11134. {
  11135. "name": "Symfony Community",
  11136. "homepage": "https://symfony.com/contributors"
  11137. }
  11138. ],
  11139. "description": "Symfony Console Component",
  11140. "homepage": "https://symfony.com",
  11141. "support": {
  11142. "source": "https://github.com/symfony/console/tree/v4.4.16"
  11143. },
  11144. "funding": [
  11145. {
  11146. "url": "https://symfony.com/sponsor",
  11147. "type": "custom"
  11148. },
  11149. {
  11150. "url": "https://github.com/fabpot",
  11151. "type": "github"
  11152. },
  11153. {
  11154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11155. "type": "tidelift"
  11156. }
  11157. ],
  11158. "time": "2020-10-24T11:50:19+00:00"
  11159. },
  11160. {
  11161. "name": "symfony/css-selector",
  11162. "version": "v4.4.20",
  11163. "source": {
  11164. "type": "git",
  11165. "url": "https://github.com/symfony/css-selector.git",
  11166. "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8"
  11167. },
  11168. "dist": {
  11169. "type": "zip",
  11170. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f907d3e53ecb2a5fad8609eb2f30525287a734c8",
  11171. "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8",
  11172. "shasum": ""
  11173. },
  11174. "require": {
  11175. "php": ">=7.1.3"
  11176. },
  11177. "type": "library",
  11178. "autoload": {
  11179. "psr-4": {
  11180. "Symfony\\Component\\CssSelector\\": ""
  11181. },
  11182. "exclude-from-classmap": [
  11183. "/Tests/"
  11184. ]
  11185. },
  11186. "notification-url": "https://packagist.org/downloads/",
  11187. "license": [
  11188. "MIT"
  11189. ],
  11190. "authors": [
  11191. {
  11192. "name": "Fabien Potencier",
  11193. "email": "fabien@symfony.com"
  11194. },
  11195. {
  11196. "name": "Jean-François Simon",
  11197. "email": "jeanfrancois.simon@sensiolabs.com"
  11198. },
  11199. {
  11200. "name": "Symfony Community",
  11201. "homepage": "https://symfony.com/contributors"
  11202. }
  11203. ],
  11204. "description": "Converts CSS selectors to XPath expressions",
  11205. "homepage": "https://symfony.com",
  11206. "support": {
  11207. "source": "https://github.com/symfony/css-selector/tree/v4.4.20"
  11208. },
  11209. "funding": [
  11210. {
  11211. "url": "https://symfony.com/sponsor",
  11212. "type": "custom"
  11213. },
  11214. {
  11215. "url": "https://github.com/fabpot",
  11216. "type": "github"
  11217. },
  11218. {
  11219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11220. "type": "tidelift"
  11221. }
  11222. ],
  11223. "time": "2021-01-27T09:09:26+00:00"
  11224. },
  11225. {
  11226. "name": "symfony/debug",
  11227. "version": "v4.4.16",
  11228. "source": {
  11229. "type": "git",
  11230. "url": "https://github.com/symfony/debug.git",
  11231. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  11232. },
  11233. "dist": {
  11234. "type": "zip",
  11235. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  11236. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  11237. "shasum": ""
  11238. },
  11239. "require": {
  11240. "php": ">=7.1.3",
  11241. "psr/log": "~1.0",
  11242. "symfony/polyfill-php80": "^1.15"
  11243. },
  11244. "conflict": {
  11245. "symfony/http-kernel": "<3.4"
  11246. },
  11247. "require-dev": {
  11248. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11249. },
  11250. "type": "library",
  11251. "autoload": {
  11252. "psr-4": {
  11253. "Symfony\\Component\\Debug\\": ""
  11254. },
  11255. "exclude-from-classmap": [
  11256. "/Tests/"
  11257. ]
  11258. },
  11259. "notification-url": "https://packagist.org/downloads/",
  11260. "license": [
  11261. "MIT"
  11262. ],
  11263. "authors": [
  11264. {
  11265. "name": "Fabien Potencier",
  11266. "email": "fabien@symfony.com"
  11267. },
  11268. {
  11269. "name": "Symfony Community",
  11270. "homepage": "https://symfony.com/contributors"
  11271. }
  11272. ],
  11273. "description": "Symfony Debug Component",
  11274. "homepage": "https://symfony.com",
  11275. "support": {
  11276. "source": "https://github.com/symfony/debug/tree/v4.4.16"
  11277. },
  11278. "funding": [
  11279. {
  11280. "url": "https://symfony.com/sponsor",
  11281. "type": "custom"
  11282. },
  11283. {
  11284. "url": "https://github.com/fabpot",
  11285. "type": "github"
  11286. },
  11287. {
  11288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11289. "type": "tidelift"
  11290. }
  11291. ],
  11292. "time": "2020-10-24T11:50:19+00:00"
  11293. },
  11294. {
  11295. "name": "symfony/dependency-injection",
  11296. "version": "v4.4.16",
  11297. "source": {
  11298. "type": "git",
  11299. "url": "https://github.com/symfony/dependency-injection.git",
  11300. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  11301. },
  11302. "dist": {
  11303. "type": "zip",
  11304. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  11305. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  11306. "shasum": ""
  11307. },
  11308. "require": {
  11309. "php": ">=7.1.3",
  11310. "psr/container": "^1.0",
  11311. "symfony/service-contracts": "^1.1.6|^2"
  11312. },
  11313. "conflict": {
  11314. "symfony/config": "<4.3|>=5.0",
  11315. "symfony/finder": "<3.4",
  11316. "symfony/proxy-manager-bridge": "<3.4",
  11317. "symfony/yaml": "<3.4"
  11318. },
  11319. "provide": {
  11320. "psr/container-implementation": "1.0",
  11321. "symfony/service-implementation": "1.0"
  11322. },
  11323. "require-dev": {
  11324. "symfony/config": "^4.3",
  11325. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11326. "symfony/yaml": "^3.4|^4.0|^5.0"
  11327. },
  11328. "suggest": {
  11329. "symfony/config": "",
  11330. "symfony/expression-language": "For using expressions in service container configuration",
  11331. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  11332. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  11333. "symfony/yaml": ""
  11334. },
  11335. "type": "library",
  11336. "autoload": {
  11337. "psr-4": {
  11338. "Symfony\\Component\\DependencyInjection\\": ""
  11339. },
  11340. "exclude-from-classmap": [
  11341. "/Tests/"
  11342. ]
  11343. },
  11344. "notification-url": "https://packagist.org/downloads/",
  11345. "license": [
  11346. "MIT"
  11347. ],
  11348. "authors": [
  11349. {
  11350. "name": "Fabien Potencier",
  11351. "email": "fabien@symfony.com"
  11352. },
  11353. {
  11354. "name": "Symfony Community",
  11355. "homepage": "https://symfony.com/contributors"
  11356. }
  11357. ],
  11358. "description": "Symfony DependencyInjection Component",
  11359. "homepage": "https://symfony.com",
  11360. "support": {
  11361. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.16"
  11362. },
  11363. "funding": [
  11364. {
  11365. "url": "https://symfony.com/sponsor",
  11366. "type": "custom"
  11367. },
  11368. {
  11369. "url": "https://github.com/fabpot",
  11370. "type": "github"
  11371. },
  11372. {
  11373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11374. "type": "tidelift"
  11375. }
  11376. ],
  11377. "time": "2020-10-27T10:05:40+00:00"
  11378. },
  11379. {
  11380. "name": "symfony/dom-crawler",
  11381. "version": "v4.4.20",
  11382. "source": {
  11383. "type": "git",
  11384. "url": "https://github.com/symfony/dom-crawler.git",
  11385. "reference": "be133557f1b0e6672367325b508e65da5513a311"
  11386. },
  11387. "dist": {
  11388. "type": "zip",
  11389. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/be133557f1b0e6672367325b508e65da5513a311",
  11390. "reference": "be133557f1b0e6672367325b508e65da5513a311",
  11391. "shasum": ""
  11392. },
  11393. "require": {
  11394. "php": ">=7.1.3",
  11395. "symfony/polyfill-ctype": "~1.8",
  11396. "symfony/polyfill-mbstring": "~1.0"
  11397. },
  11398. "conflict": {
  11399. "masterminds/html5": "<2.6"
  11400. },
  11401. "require-dev": {
  11402. "masterminds/html5": "^2.6",
  11403. "symfony/css-selector": "^3.4|^4.0|^5.0"
  11404. },
  11405. "suggest": {
  11406. "symfony/css-selector": ""
  11407. },
  11408. "type": "library",
  11409. "autoload": {
  11410. "psr-4": {
  11411. "Symfony\\Component\\DomCrawler\\": ""
  11412. },
  11413. "exclude-from-classmap": [
  11414. "/Tests/"
  11415. ]
  11416. },
  11417. "notification-url": "https://packagist.org/downloads/",
  11418. "license": [
  11419. "MIT"
  11420. ],
  11421. "authors": [
  11422. {
  11423. "name": "Fabien Potencier",
  11424. "email": "fabien@symfony.com"
  11425. },
  11426. {
  11427. "name": "Symfony Community",
  11428. "homepage": "https://symfony.com/contributors"
  11429. }
  11430. ],
  11431. "description": "Eases DOM navigation for HTML and XML documents",
  11432. "homepage": "https://symfony.com",
  11433. "support": {
  11434. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.20"
  11435. },
  11436. "funding": [
  11437. {
  11438. "url": "https://symfony.com/sponsor",
  11439. "type": "custom"
  11440. },
  11441. {
  11442. "url": "https://github.com/fabpot",
  11443. "type": "github"
  11444. },
  11445. {
  11446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11447. "type": "tidelift"
  11448. }
  11449. ],
  11450. "time": "2021-02-14T12:29:41+00:00"
  11451. },
  11452. {
  11453. "name": "symfony/error-handler",
  11454. "version": "v4.4.16",
  11455. "source": {
  11456. "type": "git",
  11457. "url": "https://github.com/symfony/error-handler.git",
  11458. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  11459. },
  11460. "dist": {
  11461. "type": "zip",
  11462. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  11463. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  11464. "shasum": ""
  11465. },
  11466. "require": {
  11467. "php": ">=7.1.3",
  11468. "psr/log": "~1.0",
  11469. "symfony/debug": "^4.4.5",
  11470. "symfony/polyfill-php80": "^1.15",
  11471. "symfony/var-dumper": "^4.4|^5.0"
  11472. },
  11473. "require-dev": {
  11474. "symfony/http-kernel": "^4.4|^5.0",
  11475. "symfony/serializer": "^4.4|^5.0"
  11476. },
  11477. "type": "library",
  11478. "autoload": {
  11479. "psr-4": {
  11480. "Symfony\\Component\\ErrorHandler\\": ""
  11481. },
  11482. "exclude-from-classmap": [
  11483. "/Tests/"
  11484. ]
  11485. },
  11486. "notification-url": "https://packagist.org/downloads/",
  11487. "license": [
  11488. "MIT"
  11489. ],
  11490. "authors": [
  11491. {
  11492. "name": "Fabien Potencier",
  11493. "email": "fabien@symfony.com"
  11494. },
  11495. {
  11496. "name": "Symfony Community",
  11497. "homepage": "https://symfony.com/contributors"
  11498. }
  11499. ],
  11500. "description": "Symfony ErrorHandler Component",
  11501. "homepage": "https://symfony.com",
  11502. "support": {
  11503. "source": "https://github.com/symfony/error-handler/tree/v4.4.16"
  11504. },
  11505. "funding": [
  11506. {
  11507. "url": "https://symfony.com/sponsor",
  11508. "type": "custom"
  11509. },
  11510. {
  11511. "url": "https://github.com/fabpot",
  11512. "type": "github"
  11513. },
  11514. {
  11515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11516. "type": "tidelift"
  11517. }
  11518. ],
  11519. "time": "2020-10-24T11:50:19+00:00"
  11520. },
  11521. {
  11522. "name": "symfony/event-dispatcher",
  11523. "version": "v4.4.16",
  11524. "source": {
  11525. "type": "git",
  11526. "url": "https://github.com/symfony/event-dispatcher.git",
  11527. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  11528. },
  11529. "dist": {
  11530. "type": "zip",
  11531. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  11532. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  11533. "shasum": ""
  11534. },
  11535. "require": {
  11536. "php": ">=7.1.3",
  11537. "symfony/event-dispatcher-contracts": "^1.1"
  11538. },
  11539. "conflict": {
  11540. "symfony/dependency-injection": "<3.4"
  11541. },
  11542. "provide": {
  11543. "psr/event-dispatcher-implementation": "1.0",
  11544. "symfony/event-dispatcher-implementation": "1.1"
  11545. },
  11546. "require-dev": {
  11547. "psr/log": "~1.0",
  11548. "symfony/config": "^3.4|^4.0|^5.0",
  11549. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11550. "symfony/error-handler": "~3.4|~4.4",
  11551. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11552. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11553. "symfony/service-contracts": "^1.1|^2",
  11554. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  11555. },
  11556. "suggest": {
  11557. "symfony/dependency-injection": "",
  11558. "symfony/http-kernel": ""
  11559. },
  11560. "type": "library",
  11561. "autoload": {
  11562. "psr-4": {
  11563. "Symfony\\Component\\EventDispatcher\\": ""
  11564. },
  11565. "exclude-from-classmap": [
  11566. "/Tests/"
  11567. ]
  11568. },
  11569. "notification-url": "https://packagist.org/downloads/",
  11570. "license": [
  11571. "MIT"
  11572. ],
  11573. "authors": [
  11574. {
  11575. "name": "Fabien Potencier",
  11576. "email": "fabien@symfony.com"
  11577. },
  11578. {
  11579. "name": "Symfony Community",
  11580. "homepage": "https://symfony.com/contributors"
  11581. }
  11582. ],
  11583. "description": "Symfony EventDispatcher Component",
  11584. "homepage": "https://symfony.com",
  11585. "support": {
  11586. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.16"
  11587. },
  11588. "funding": [
  11589. {
  11590. "url": "https://symfony.com/sponsor",
  11591. "type": "custom"
  11592. },
  11593. {
  11594. "url": "https://github.com/fabpot",
  11595. "type": "github"
  11596. },
  11597. {
  11598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11599. "type": "tidelift"
  11600. }
  11601. ],
  11602. "time": "2020-10-24T11:50:19+00:00"
  11603. },
  11604. {
  11605. "name": "symfony/event-dispatcher-contracts",
  11606. "version": "v1.1.9",
  11607. "source": {
  11608. "type": "git",
  11609. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11610. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  11611. },
  11612. "dist": {
  11613. "type": "zip",
  11614. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  11615. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  11616. "shasum": ""
  11617. },
  11618. "require": {
  11619. "php": ">=7.1.3"
  11620. },
  11621. "suggest": {
  11622. "psr/event-dispatcher": "",
  11623. "symfony/event-dispatcher-implementation": ""
  11624. },
  11625. "type": "library",
  11626. "extra": {
  11627. "branch-alias": {
  11628. "dev-master": "1.1-dev"
  11629. },
  11630. "thanks": {
  11631. "name": "symfony/contracts",
  11632. "url": "https://github.com/symfony/contracts"
  11633. }
  11634. },
  11635. "autoload": {
  11636. "psr-4": {
  11637. "Symfony\\Contracts\\EventDispatcher\\": ""
  11638. }
  11639. },
  11640. "notification-url": "https://packagist.org/downloads/",
  11641. "license": [
  11642. "MIT"
  11643. ],
  11644. "authors": [
  11645. {
  11646. "name": "Nicolas Grekas",
  11647. "email": "p@tchwork.com"
  11648. },
  11649. {
  11650. "name": "Symfony Community",
  11651. "homepage": "https://symfony.com/contributors"
  11652. }
  11653. ],
  11654. "description": "Generic abstractions related to dispatching event",
  11655. "homepage": "https://symfony.com",
  11656. "keywords": [
  11657. "abstractions",
  11658. "contracts",
  11659. "decoupling",
  11660. "interfaces",
  11661. "interoperability",
  11662. "standards"
  11663. ],
  11664. "support": {
  11665. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  11666. },
  11667. "funding": [
  11668. {
  11669. "url": "https://symfony.com/sponsor",
  11670. "type": "custom"
  11671. },
  11672. {
  11673. "url": "https://github.com/fabpot",
  11674. "type": "github"
  11675. },
  11676. {
  11677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11678. "type": "tidelift"
  11679. }
  11680. ],
  11681. "time": "2020-07-06T13:19:58+00:00"
  11682. },
  11683. {
  11684. "name": "symfony/filesystem",
  11685. "version": "v4.4.21",
  11686. "source": {
  11687. "type": "git",
  11688. "url": "https://github.com/symfony/filesystem.git",
  11689. "reference": "940826c465be2690c9fae91b2793481e5cbd6834"
  11690. },
  11691. "dist": {
  11692. "type": "zip",
  11693. "url": "https://api.github.com/repos/symfony/filesystem/zipball/940826c465be2690c9fae91b2793481e5cbd6834",
  11694. "reference": "940826c465be2690c9fae91b2793481e5cbd6834",
  11695. "shasum": ""
  11696. },
  11697. "require": {
  11698. "php": ">=7.1.3",
  11699. "symfony/polyfill-ctype": "~1.8"
  11700. },
  11701. "type": "library",
  11702. "autoload": {
  11703. "psr-4": {
  11704. "Symfony\\Component\\Filesystem\\": ""
  11705. },
  11706. "exclude-from-classmap": [
  11707. "/Tests/"
  11708. ]
  11709. },
  11710. "notification-url": "https://packagist.org/downloads/",
  11711. "license": [
  11712. "MIT"
  11713. ],
  11714. "authors": [
  11715. {
  11716. "name": "Fabien Potencier",
  11717. "email": "fabien@symfony.com"
  11718. },
  11719. {
  11720. "name": "Symfony Community",
  11721. "homepage": "https://symfony.com/contributors"
  11722. }
  11723. ],
  11724. "description": "Provides basic utilities for the filesystem",
  11725. "homepage": "https://symfony.com",
  11726. "support": {
  11727. "source": "https://github.com/symfony/filesystem/tree/v4.4.21"
  11728. },
  11729. "funding": [
  11730. {
  11731. "url": "https://symfony.com/sponsor",
  11732. "type": "custom"
  11733. },
  11734. {
  11735. "url": "https://github.com/fabpot",
  11736. "type": "github"
  11737. },
  11738. {
  11739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11740. "type": "tidelift"
  11741. }
  11742. ],
  11743. "time": "2021-03-28T09:59:32+00:00"
  11744. },
  11745. {
  11746. "name": "symfony/finder",
  11747. "version": "v4.4.20",
  11748. "source": {
  11749. "type": "git",
  11750. "url": "https://github.com/symfony/finder.git",
  11751. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6"
  11752. },
  11753. "dist": {
  11754. "type": "zip",
  11755. "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  11756. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  11757. "shasum": ""
  11758. },
  11759. "require": {
  11760. "php": ">=7.1.3"
  11761. },
  11762. "type": "library",
  11763. "autoload": {
  11764. "psr-4": {
  11765. "Symfony\\Component\\Finder\\": ""
  11766. },
  11767. "exclude-from-classmap": [
  11768. "/Tests/"
  11769. ]
  11770. },
  11771. "notification-url": "https://packagist.org/downloads/",
  11772. "license": [
  11773. "MIT"
  11774. ],
  11775. "authors": [
  11776. {
  11777. "name": "Fabien Potencier",
  11778. "email": "fabien@symfony.com"
  11779. },
  11780. {
  11781. "name": "Symfony Community",
  11782. "homepage": "https://symfony.com/contributors"
  11783. }
  11784. ],
  11785. "description": "Finds files and directories via an intuitive fluent interface",
  11786. "homepage": "https://symfony.com",
  11787. "support": {
  11788. "source": "https://github.com/symfony/finder/tree/v4.4.20"
  11789. },
  11790. "funding": [
  11791. {
  11792. "url": "https://symfony.com/sponsor",
  11793. "type": "custom"
  11794. },
  11795. {
  11796. "url": "https://github.com/fabpot",
  11797. "type": "github"
  11798. },
  11799. {
  11800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11801. "type": "tidelift"
  11802. }
  11803. ],
  11804. "time": "2021-02-12T10:48:09+00:00"
  11805. },
  11806. {
  11807. "name": "symfony/http-client-contracts",
  11808. "version": "v2.3.1",
  11809. "source": {
  11810. "type": "git",
  11811. "url": "https://github.com/symfony/http-client-contracts.git",
  11812. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  11813. },
  11814. "dist": {
  11815. "type": "zip",
  11816. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  11817. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  11818. "shasum": ""
  11819. },
  11820. "require": {
  11821. "php": ">=7.2.5"
  11822. },
  11823. "suggest": {
  11824. "symfony/http-client-implementation": ""
  11825. },
  11826. "type": "library",
  11827. "extra": {
  11828. "branch-version": "2.3",
  11829. "branch-alias": {
  11830. "dev-main": "2.3-dev"
  11831. },
  11832. "thanks": {
  11833. "name": "symfony/contracts",
  11834. "url": "https://github.com/symfony/contracts"
  11835. }
  11836. },
  11837. "autoload": {
  11838. "psr-4": {
  11839. "Symfony\\Contracts\\HttpClient\\": ""
  11840. }
  11841. },
  11842. "notification-url": "https://packagist.org/downloads/",
  11843. "license": [
  11844. "MIT"
  11845. ],
  11846. "authors": [
  11847. {
  11848. "name": "Nicolas Grekas",
  11849. "email": "p@tchwork.com"
  11850. },
  11851. {
  11852. "name": "Symfony Community",
  11853. "homepage": "https://symfony.com/contributors"
  11854. }
  11855. ],
  11856. "description": "Generic abstractions related to HTTP clients",
  11857. "homepage": "https://symfony.com",
  11858. "keywords": [
  11859. "abstractions",
  11860. "contracts",
  11861. "decoupling",
  11862. "interfaces",
  11863. "interoperability",
  11864. "standards"
  11865. ],
  11866. "support": {
  11867. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  11868. },
  11869. "funding": [
  11870. {
  11871. "url": "https://symfony.com/sponsor",
  11872. "type": "custom"
  11873. },
  11874. {
  11875. "url": "https://github.com/fabpot",
  11876. "type": "github"
  11877. },
  11878. {
  11879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11880. "type": "tidelift"
  11881. }
  11882. ],
  11883. "time": "2020-10-14T17:08:19+00:00"
  11884. },
  11885. {
  11886. "name": "symfony/http-foundation",
  11887. "version": "v4.4.16",
  11888. "source": {
  11889. "type": "git",
  11890. "url": "https://github.com/symfony/http-foundation.git",
  11891. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  11892. },
  11893. "dist": {
  11894. "type": "zip",
  11895. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  11896. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  11897. "shasum": ""
  11898. },
  11899. "require": {
  11900. "php": ">=7.1.3",
  11901. "symfony/mime": "^4.3|^5.0",
  11902. "symfony/polyfill-mbstring": "~1.1"
  11903. },
  11904. "require-dev": {
  11905. "predis/predis": "~1.0",
  11906. "symfony/expression-language": "^3.4|^4.0|^5.0"
  11907. },
  11908. "type": "library",
  11909. "autoload": {
  11910. "psr-4": {
  11911. "Symfony\\Component\\HttpFoundation\\": ""
  11912. },
  11913. "exclude-from-classmap": [
  11914. "/Tests/"
  11915. ]
  11916. },
  11917. "notification-url": "https://packagist.org/downloads/",
  11918. "license": [
  11919. "MIT"
  11920. ],
  11921. "authors": [
  11922. {
  11923. "name": "Fabien Potencier",
  11924. "email": "fabien@symfony.com"
  11925. },
  11926. {
  11927. "name": "Symfony Community",
  11928. "homepage": "https://symfony.com/contributors"
  11929. }
  11930. ],
  11931. "description": "Symfony HttpFoundation Component",
  11932. "homepage": "https://symfony.com",
  11933. "support": {
  11934. "source": "https://github.com/symfony/http-foundation/tree/v4.4.16"
  11935. },
  11936. "funding": [
  11937. {
  11938. "url": "https://symfony.com/sponsor",
  11939. "type": "custom"
  11940. },
  11941. {
  11942. "url": "https://github.com/fabpot",
  11943. "type": "github"
  11944. },
  11945. {
  11946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11947. "type": "tidelift"
  11948. }
  11949. ],
  11950. "time": "2020-10-24T11:50:19+00:00"
  11951. },
  11952. {
  11953. "name": "symfony/http-kernel",
  11954. "version": "v4.4.16",
  11955. "source": {
  11956. "type": "git",
  11957. "url": "https://github.com/symfony/http-kernel.git",
  11958. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  11959. },
  11960. "dist": {
  11961. "type": "zip",
  11962. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  11963. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  11964. "shasum": ""
  11965. },
  11966. "require": {
  11967. "php": ">=7.1.3",
  11968. "psr/log": "~1.0",
  11969. "symfony/error-handler": "^4.4",
  11970. "symfony/event-dispatcher": "^4.4",
  11971. "symfony/http-client-contracts": "^1.1|^2",
  11972. "symfony/http-foundation": "^4.4|^5.0",
  11973. "symfony/polyfill-ctype": "^1.8",
  11974. "symfony/polyfill-php73": "^1.9",
  11975. "symfony/polyfill-php80": "^1.15"
  11976. },
  11977. "conflict": {
  11978. "symfony/browser-kit": "<4.3",
  11979. "symfony/config": "<3.4",
  11980. "symfony/console": ">=5",
  11981. "symfony/dependency-injection": "<4.3",
  11982. "symfony/translation": "<4.2",
  11983. "twig/twig": "<1.34|<2.4,>=2"
  11984. },
  11985. "provide": {
  11986. "psr/log-implementation": "1.0"
  11987. },
  11988. "require-dev": {
  11989. "psr/cache": "~1.0",
  11990. "symfony/browser-kit": "^4.3|^5.0",
  11991. "symfony/config": "^3.4|^4.0|^5.0",
  11992. "symfony/console": "^3.4|^4.0",
  11993. "symfony/css-selector": "^3.4|^4.0|^5.0",
  11994. "symfony/dependency-injection": "^4.3|^5.0",
  11995. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  11996. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11997. "symfony/finder": "^3.4|^4.0|^5.0",
  11998. "symfony/process": "^3.4|^4.0|^5.0",
  11999. "symfony/routing": "^3.4|^4.0|^5.0",
  12000. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  12001. "symfony/templating": "^3.4|^4.0|^5.0",
  12002. "symfony/translation": "^4.2|^5.0",
  12003. "symfony/translation-contracts": "^1.1|^2",
  12004. "twig/twig": "^1.34|^2.4|^3.0"
  12005. },
  12006. "suggest": {
  12007. "symfony/browser-kit": "",
  12008. "symfony/config": "",
  12009. "symfony/console": "",
  12010. "symfony/dependency-injection": ""
  12011. },
  12012. "type": "library",
  12013. "autoload": {
  12014. "psr-4": {
  12015. "Symfony\\Component\\HttpKernel\\": ""
  12016. },
  12017. "exclude-from-classmap": [
  12018. "/Tests/"
  12019. ]
  12020. },
  12021. "notification-url": "https://packagist.org/downloads/",
  12022. "license": [
  12023. "MIT"
  12024. ],
  12025. "authors": [
  12026. {
  12027. "name": "Fabien Potencier",
  12028. "email": "fabien@symfony.com"
  12029. },
  12030. {
  12031. "name": "Symfony Community",
  12032. "homepage": "https://symfony.com/contributors"
  12033. }
  12034. ],
  12035. "description": "Symfony HttpKernel Component",
  12036. "homepage": "https://symfony.com",
  12037. "support": {
  12038. "source": "https://github.com/symfony/http-kernel/tree/v4.4.16"
  12039. },
  12040. "funding": [
  12041. {
  12042. "url": "https://symfony.com/sponsor",
  12043. "type": "custom"
  12044. },
  12045. {
  12046. "url": "https://github.com/fabpot",
  12047. "type": "github"
  12048. },
  12049. {
  12050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12051. "type": "tidelift"
  12052. }
  12053. ],
  12054. "time": "2020-10-28T05:50:56+00:00"
  12055. },
  12056. {
  12057. "name": "symfony/mime",
  12058. "version": "v5.1.8",
  12059. "source": {
  12060. "type": "git",
  12061. "url": "https://github.com/symfony/mime.git",
  12062. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  12063. },
  12064. "dist": {
  12065. "type": "zip",
  12066. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  12067. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  12068. "shasum": ""
  12069. },
  12070. "require": {
  12071. "php": ">=7.2.5",
  12072. "symfony/polyfill-intl-idn": "^1.10",
  12073. "symfony/polyfill-mbstring": "^1.0",
  12074. "symfony/polyfill-php80": "^1.15"
  12075. },
  12076. "conflict": {
  12077. "symfony/mailer": "<4.4"
  12078. },
  12079. "require-dev": {
  12080. "egulias/email-validator": "^2.1.10",
  12081. "symfony/dependency-injection": "^4.4|^5.0"
  12082. },
  12083. "type": "library",
  12084. "autoload": {
  12085. "psr-4": {
  12086. "Symfony\\Component\\Mime\\": ""
  12087. },
  12088. "exclude-from-classmap": [
  12089. "/Tests/"
  12090. ]
  12091. },
  12092. "notification-url": "https://packagist.org/downloads/",
  12093. "license": [
  12094. "MIT"
  12095. ],
  12096. "authors": [
  12097. {
  12098. "name": "Fabien Potencier",
  12099. "email": "fabien@symfony.com"
  12100. },
  12101. {
  12102. "name": "Symfony Community",
  12103. "homepage": "https://symfony.com/contributors"
  12104. }
  12105. ],
  12106. "description": "A library to manipulate MIME messages",
  12107. "homepage": "https://symfony.com",
  12108. "keywords": [
  12109. "mime",
  12110. "mime-type"
  12111. ],
  12112. "support": {
  12113. "source": "https://github.com/symfony/mime/tree/v5.1.8"
  12114. },
  12115. "funding": [
  12116. {
  12117. "url": "https://symfony.com/sponsor",
  12118. "type": "custom"
  12119. },
  12120. {
  12121. "url": "https://github.com/fabpot",
  12122. "type": "github"
  12123. },
  12124. {
  12125. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12126. "type": "tidelift"
  12127. }
  12128. ],
  12129. "time": "2020-10-24T12:01:57+00:00"
  12130. },
  12131. {
  12132. "name": "symfony/polyfill-ctype",
  12133. "version": "v1.20.0",
  12134. "source": {
  12135. "type": "git",
  12136. "url": "https://github.com/symfony/polyfill-ctype.git",
  12137. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  12138. },
  12139. "dist": {
  12140. "type": "zip",
  12141. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  12142. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  12143. "shasum": ""
  12144. },
  12145. "require": {
  12146. "php": ">=7.1"
  12147. },
  12148. "suggest": {
  12149. "ext-ctype": "For best performance"
  12150. },
  12151. "type": "library",
  12152. "extra": {
  12153. "branch-alias": {
  12154. "dev-main": "1.20-dev"
  12155. },
  12156. "thanks": {
  12157. "name": "symfony/polyfill",
  12158. "url": "https://github.com/symfony/polyfill"
  12159. }
  12160. },
  12161. "autoload": {
  12162. "psr-4": {
  12163. "Symfony\\Polyfill\\Ctype\\": ""
  12164. },
  12165. "files": [
  12166. "bootstrap.php"
  12167. ]
  12168. },
  12169. "notification-url": "https://packagist.org/downloads/",
  12170. "license": [
  12171. "MIT"
  12172. ],
  12173. "authors": [
  12174. {
  12175. "name": "Gert de Pagter",
  12176. "email": "BackEndTea@gmail.com"
  12177. },
  12178. {
  12179. "name": "Symfony Community",
  12180. "homepage": "https://symfony.com/contributors"
  12181. }
  12182. ],
  12183. "description": "Symfony polyfill for ctype functions",
  12184. "homepage": "https://symfony.com",
  12185. "keywords": [
  12186. "compatibility",
  12187. "ctype",
  12188. "polyfill",
  12189. "portable"
  12190. ],
  12191. "support": {
  12192. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  12193. },
  12194. "funding": [
  12195. {
  12196. "url": "https://symfony.com/sponsor",
  12197. "type": "custom"
  12198. },
  12199. {
  12200. "url": "https://github.com/fabpot",
  12201. "type": "github"
  12202. },
  12203. {
  12204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12205. "type": "tidelift"
  12206. }
  12207. ],
  12208. "time": "2020-10-23T14:02:19+00:00"
  12209. },
  12210. {
  12211. "name": "symfony/polyfill-iconv",
  12212. "version": "v1.20.0",
  12213. "source": {
  12214. "type": "git",
  12215. "url": "https://github.com/symfony/polyfill-iconv.git",
  12216. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  12217. },
  12218. "dist": {
  12219. "type": "zip",
  12220. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  12221. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  12222. "shasum": ""
  12223. },
  12224. "require": {
  12225. "php": ">=7.1"
  12226. },
  12227. "suggest": {
  12228. "ext-iconv": "For best performance"
  12229. },
  12230. "type": "library",
  12231. "extra": {
  12232. "branch-alias": {
  12233. "dev-main": "1.20-dev"
  12234. },
  12235. "thanks": {
  12236. "name": "symfony/polyfill",
  12237. "url": "https://github.com/symfony/polyfill"
  12238. }
  12239. },
  12240. "autoload": {
  12241. "psr-4": {
  12242. "Symfony\\Polyfill\\Iconv\\": ""
  12243. },
  12244. "files": [
  12245. "bootstrap.php"
  12246. ]
  12247. },
  12248. "notification-url": "https://packagist.org/downloads/",
  12249. "license": [
  12250. "MIT"
  12251. ],
  12252. "authors": [
  12253. {
  12254. "name": "Nicolas Grekas",
  12255. "email": "p@tchwork.com"
  12256. },
  12257. {
  12258. "name": "Symfony Community",
  12259. "homepage": "https://symfony.com/contributors"
  12260. }
  12261. ],
  12262. "description": "Symfony polyfill for the Iconv extension",
  12263. "homepage": "https://symfony.com",
  12264. "keywords": [
  12265. "compatibility",
  12266. "iconv",
  12267. "polyfill",
  12268. "portable",
  12269. "shim"
  12270. ],
  12271. "support": {
  12272. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  12273. },
  12274. "funding": [
  12275. {
  12276. "url": "https://symfony.com/sponsor",
  12277. "type": "custom"
  12278. },
  12279. {
  12280. "url": "https://github.com/fabpot",
  12281. "type": "github"
  12282. },
  12283. {
  12284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12285. "type": "tidelift"
  12286. }
  12287. ],
  12288. "time": "2020-10-23T14:02:19+00:00"
  12289. },
  12290. {
  12291. "name": "symfony/polyfill-intl-idn",
  12292. "version": "v1.20.0",
  12293. "source": {
  12294. "type": "git",
  12295. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12296. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  12297. },
  12298. "dist": {
  12299. "type": "zip",
  12300. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  12301. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  12302. "shasum": ""
  12303. },
  12304. "require": {
  12305. "php": ">=7.1",
  12306. "symfony/polyfill-intl-normalizer": "^1.10",
  12307. "symfony/polyfill-php72": "^1.10"
  12308. },
  12309. "suggest": {
  12310. "ext-intl": "For best performance"
  12311. },
  12312. "type": "library",
  12313. "extra": {
  12314. "branch-alias": {
  12315. "dev-main": "1.20-dev"
  12316. },
  12317. "thanks": {
  12318. "name": "symfony/polyfill",
  12319. "url": "https://github.com/symfony/polyfill"
  12320. }
  12321. },
  12322. "autoload": {
  12323. "psr-4": {
  12324. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12325. },
  12326. "files": [
  12327. "bootstrap.php"
  12328. ]
  12329. },
  12330. "notification-url": "https://packagist.org/downloads/",
  12331. "license": [
  12332. "MIT"
  12333. ],
  12334. "authors": [
  12335. {
  12336. "name": "Laurent Bassin",
  12337. "email": "laurent@bassin.info"
  12338. },
  12339. {
  12340. "name": "Trevor Rowbotham",
  12341. "email": "trevor.rowbotham@pm.me"
  12342. },
  12343. {
  12344. "name": "Symfony Community",
  12345. "homepage": "https://symfony.com/contributors"
  12346. }
  12347. ],
  12348. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12349. "homepage": "https://symfony.com",
  12350. "keywords": [
  12351. "compatibility",
  12352. "idn",
  12353. "intl",
  12354. "polyfill",
  12355. "portable",
  12356. "shim"
  12357. ],
  12358. "support": {
  12359. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  12360. },
  12361. "funding": [
  12362. {
  12363. "url": "https://symfony.com/sponsor",
  12364. "type": "custom"
  12365. },
  12366. {
  12367. "url": "https://github.com/fabpot",
  12368. "type": "github"
  12369. },
  12370. {
  12371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12372. "type": "tidelift"
  12373. }
  12374. ],
  12375. "time": "2020-10-23T14:02:19+00:00"
  12376. },
  12377. {
  12378. "name": "symfony/polyfill-intl-normalizer",
  12379. "version": "v1.20.0",
  12380. "source": {
  12381. "type": "git",
  12382. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12383. "reference": "727d1096295d807c309fb01a851577302394c897"
  12384. },
  12385. "dist": {
  12386. "type": "zip",
  12387. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  12388. "reference": "727d1096295d807c309fb01a851577302394c897",
  12389. "shasum": ""
  12390. },
  12391. "require": {
  12392. "php": ">=7.1"
  12393. },
  12394. "suggest": {
  12395. "ext-intl": "For best performance"
  12396. },
  12397. "type": "library",
  12398. "extra": {
  12399. "branch-alias": {
  12400. "dev-main": "1.20-dev"
  12401. },
  12402. "thanks": {
  12403. "name": "symfony/polyfill",
  12404. "url": "https://github.com/symfony/polyfill"
  12405. }
  12406. },
  12407. "autoload": {
  12408. "psr-4": {
  12409. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12410. },
  12411. "files": [
  12412. "bootstrap.php"
  12413. ],
  12414. "classmap": [
  12415. "Resources/stubs"
  12416. ]
  12417. },
  12418. "notification-url": "https://packagist.org/downloads/",
  12419. "license": [
  12420. "MIT"
  12421. ],
  12422. "authors": [
  12423. {
  12424. "name": "Nicolas Grekas",
  12425. "email": "p@tchwork.com"
  12426. },
  12427. {
  12428. "name": "Symfony Community",
  12429. "homepage": "https://symfony.com/contributors"
  12430. }
  12431. ],
  12432. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12433. "homepage": "https://symfony.com",
  12434. "keywords": [
  12435. "compatibility",
  12436. "intl",
  12437. "normalizer",
  12438. "polyfill",
  12439. "portable",
  12440. "shim"
  12441. ],
  12442. "support": {
  12443. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  12444. },
  12445. "funding": [
  12446. {
  12447. "url": "https://symfony.com/sponsor",
  12448. "type": "custom"
  12449. },
  12450. {
  12451. "url": "https://github.com/fabpot",
  12452. "type": "github"
  12453. },
  12454. {
  12455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12456. "type": "tidelift"
  12457. }
  12458. ],
  12459. "time": "2020-10-23T14:02:19+00:00"
  12460. },
  12461. {
  12462. "name": "symfony/polyfill-mbstring",
  12463. "version": "v1.20.0",
  12464. "source": {
  12465. "type": "git",
  12466. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12467. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  12468. },
  12469. "dist": {
  12470. "type": "zip",
  12471. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  12472. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  12473. "shasum": ""
  12474. },
  12475. "require": {
  12476. "php": ">=7.1"
  12477. },
  12478. "suggest": {
  12479. "ext-mbstring": "For best performance"
  12480. },
  12481. "type": "library",
  12482. "extra": {
  12483. "branch-alias": {
  12484. "dev-main": "1.20-dev"
  12485. },
  12486. "thanks": {
  12487. "name": "symfony/polyfill",
  12488. "url": "https://github.com/symfony/polyfill"
  12489. }
  12490. },
  12491. "autoload": {
  12492. "psr-4": {
  12493. "Symfony\\Polyfill\\Mbstring\\": ""
  12494. },
  12495. "files": [
  12496. "bootstrap.php"
  12497. ]
  12498. },
  12499. "notification-url": "https://packagist.org/downloads/",
  12500. "license": [
  12501. "MIT"
  12502. ],
  12503. "authors": [
  12504. {
  12505. "name": "Nicolas Grekas",
  12506. "email": "p@tchwork.com"
  12507. },
  12508. {
  12509. "name": "Symfony Community",
  12510. "homepage": "https://symfony.com/contributors"
  12511. }
  12512. ],
  12513. "description": "Symfony polyfill for the Mbstring extension",
  12514. "homepage": "https://symfony.com",
  12515. "keywords": [
  12516. "compatibility",
  12517. "mbstring",
  12518. "polyfill",
  12519. "portable",
  12520. "shim"
  12521. ],
  12522. "support": {
  12523. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  12524. },
  12525. "funding": [
  12526. {
  12527. "url": "https://symfony.com/sponsor",
  12528. "type": "custom"
  12529. },
  12530. {
  12531. "url": "https://github.com/fabpot",
  12532. "type": "github"
  12533. },
  12534. {
  12535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12536. "type": "tidelift"
  12537. }
  12538. ],
  12539. "time": "2020-10-23T14:02:19+00:00"
  12540. },
  12541. {
  12542. "name": "symfony/polyfill-php72",
  12543. "version": "v1.22.1",
  12544. "source": {
  12545. "type": "git",
  12546. "url": "https://github.com/symfony/polyfill-php72.git",
  12547. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  12548. },
  12549. "dist": {
  12550. "type": "zip",
  12551. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  12552. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  12553. "shasum": ""
  12554. },
  12555. "require": {
  12556. "php": ">=7.1"
  12557. },
  12558. "type": "library",
  12559. "extra": {
  12560. "branch-alias": {
  12561. "dev-main": "1.22-dev"
  12562. },
  12563. "thanks": {
  12564. "name": "symfony/polyfill",
  12565. "url": "https://github.com/symfony/polyfill"
  12566. }
  12567. },
  12568. "autoload": {
  12569. "psr-4": {
  12570. "Symfony\\Polyfill\\Php72\\": ""
  12571. },
  12572. "files": [
  12573. "bootstrap.php"
  12574. ]
  12575. },
  12576. "notification-url": "https://packagist.org/downloads/",
  12577. "license": [
  12578. "MIT"
  12579. ],
  12580. "authors": [
  12581. {
  12582. "name": "Nicolas Grekas",
  12583. "email": "p@tchwork.com"
  12584. },
  12585. {
  12586. "name": "Symfony Community",
  12587. "homepage": "https://symfony.com/contributors"
  12588. }
  12589. ],
  12590. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  12591. "homepage": "https://symfony.com",
  12592. "keywords": [
  12593. "compatibility",
  12594. "polyfill",
  12595. "portable",
  12596. "shim"
  12597. ],
  12598. "support": {
  12599. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  12600. },
  12601. "funding": [
  12602. {
  12603. "url": "https://symfony.com/sponsor",
  12604. "type": "custom"
  12605. },
  12606. {
  12607. "url": "https://github.com/fabpot",
  12608. "type": "github"
  12609. },
  12610. {
  12611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12612. "type": "tidelift"
  12613. }
  12614. ],
  12615. "time": "2021-01-07T16:49:33+00:00"
  12616. },
  12617. {
  12618. "name": "symfony/polyfill-php73",
  12619. "version": "v1.22.1",
  12620. "source": {
  12621. "type": "git",
  12622. "url": "https://github.com/symfony/polyfill-php73.git",
  12623. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  12624. },
  12625. "dist": {
  12626. "type": "zip",
  12627. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  12628. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  12629. "shasum": ""
  12630. },
  12631. "require": {
  12632. "php": ">=7.1"
  12633. },
  12634. "type": "library",
  12635. "extra": {
  12636. "branch-alias": {
  12637. "dev-main": "1.22-dev"
  12638. },
  12639. "thanks": {
  12640. "name": "symfony/polyfill",
  12641. "url": "https://github.com/symfony/polyfill"
  12642. }
  12643. },
  12644. "autoload": {
  12645. "psr-4": {
  12646. "Symfony\\Polyfill\\Php73\\": ""
  12647. },
  12648. "files": [
  12649. "bootstrap.php"
  12650. ],
  12651. "classmap": [
  12652. "Resources/stubs"
  12653. ]
  12654. },
  12655. "notification-url": "https://packagist.org/downloads/",
  12656. "license": [
  12657. "MIT"
  12658. ],
  12659. "authors": [
  12660. {
  12661. "name": "Nicolas Grekas",
  12662. "email": "p@tchwork.com"
  12663. },
  12664. {
  12665. "name": "Symfony Community",
  12666. "homepage": "https://symfony.com/contributors"
  12667. }
  12668. ],
  12669. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  12670. "homepage": "https://symfony.com",
  12671. "keywords": [
  12672. "compatibility",
  12673. "polyfill",
  12674. "portable",
  12675. "shim"
  12676. ],
  12677. "support": {
  12678. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  12679. },
  12680. "funding": [
  12681. {
  12682. "url": "https://symfony.com/sponsor",
  12683. "type": "custom"
  12684. },
  12685. {
  12686. "url": "https://github.com/fabpot",
  12687. "type": "github"
  12688. },
  12689. {
  12690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12691. "type": "tidelift"
  12692. }
  12693. ],
  12694. "time": "2021-01-07T16:49:33+00:00"
  12695. },
  12696. {
  12697. "name": "symfony/polyfill-php80",
  12698. "version": "v1.20.0",
  12699. "source": {
  12700. "type": "git",
  12701. "url": "https://github.com/symfony/polyfill-php80.git",
  12702. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  12703. },
  12704. "dist": {
  12705. "type": "zip",
  12706. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  12707. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  12708. "shasum": ""
  12709. },
  12710. "require": {
  12711. "php": ">=7.1"
  12712. },
  12713. "type": "library",
  12714. "extra": {
  12715. "branch-alias": {
  12716. "dev-main": "1.20-dev"
  12717. },
  12718. "thanks": {
  12719. "name": "symfony/polyfill",
  12720. "url": "https://github.com/symfony/polyfill"
  12721. }
  12722. },
  12723. "autoload": {
  12724. "psr-4": {
  12725. "Symfony\\Polyfill\\Php80\\": ""
  12726. },
  12727. "files": [
  12728. "bootstrap.php"
  12729. ],
  12730. "classmap": [
  12731. "Resources/stubs"
  12732. ]
  12733. },
  12734. "notification-url": "https://packagist.org/downloads/",
  12735. "license": [
  12736. "MIT"
  12737. ],
  12738. "authors": [
  12739. {
  12740. "name": "Ion Bazan",
  12741. "email": "ion.bazan@gmail.com"
  12742. },
  12743. {
  12744. "name": "Nicolas Grekas",
  12745. "email": "p@tchwork.com"
  12746. },
  12747. {
  12748. "name": "Symfony Community",
  12749. "homepage": "https://symfony.com/contributors"
  12750. }
  12751. ],
  12752. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  12753. "homepage": "https://symfony.com",
  12754. "keywords": [
  12755. "compatibility",
  12756. "polyfill",
  12757. "portable",
  12758. "shim"
  12759. ],
  12760. "support": {
  12761. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  12762. },
  12763. "funding": [
  12764. {
  12765. "url": "https://symfony.com/sponsor",
  12766. "type": "custom"
  12767. },
  12768. {
  12769. "url": "https://github.com/fabpot",
  12770. "type": "github"
  12771. },
  12772. {
  12773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12774. "type": "tidelift"
  12775. }
  12776. ],
  12777. "time": "2020-10-23T14:02:19+00:00"
  12778. },
  12779. {
  12780. "name": "symfony/process",
  12781. "version": "v4.4.16",
  12782. "source": {
  12783. "type": "git",
  12784. "url": "https://github.com/symfony/process.git",
  12785. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  12786. },
  12787. "dist": {
  12788. "type": "zip",
  12789. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  12790. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  12791. "shasum": ""
  12792. },
  12793. "require": {
  12794. "php": ">=7.1.3"
  12795. },
  12796. "type": "library",
  12797. "autoload": {
  12798. "psr-4": {
  12799. "Symfony\\Component\\Process\\": ""
  12800. },
  12801. "exclude-from-classmap": [
  12802. "/Tests/"
  12803. ]
  12804. },
  12805. "notification-url": "https://packagist.org/downloads/",
  12806. "license": [
  12807. "MIT"
  12808. ],
  12809. "authors": [
  12810. {
  12811. "name": "Fabien Potencier",
  12812. "email": "fabien@symfony.com"
  12813. },
  12814. {
  12815. "name": "Symfony Community",
  12816. "homepage": "https://symfony.com/contributors"
  12817. }
  12818. ],
  12819. "description": "Symfony Process Component",
  12820. "homepage": "https://symfony.com",
  12821. "support": {
  12822. "source": "https://github.com/symfony/process/tree/v4.4.16"
  12823. },
  12824. "funding": [
  12825. {
  12826. "url": "https://symfony.com/sponsor",
  12827. "type": "custom"
  12828. },
  12829. {
  12830. "url": "https://github.com/fabpot",
  12831. "type": "github"
  12832. },
  12833. {
  12834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12835. "type": "tidelift"
  12836. }
  12837. ],
  12838. "time": "2020-10-24T11:50:19+00:00"
  12839. },
  12840. {
  12841. "name": "symfony/psr-http-message-bridge",
  12842. "version": "v2.0.2",
  12843. "source": {
  12844. "type": "git",
  12845. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12846. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  12847. },
  12848. "dist": {
  12849. "type": "zip",
  12850. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  12851. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  12852. "shasum": ""
  12853. },
  12854. "require": {
  12855. "php": ">=7.1",
  12856. "psr/http-message": "^1.0",
  12857. "symfony/http-foundation": "^4.4 || ^5.0"
  12858. },
  12859. "require-dev": {
  12860. "nyholm/psr7": "^1.1",
  12861. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  12862. },
  12863. "suggest": {
  12864. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  12865. },
  12866. "type": "symfony-bridge",
  12867. "extra": {
  12868. "branch-alias": {
  12869. "dev-master": "2.0-dev"
  12870. }
  12871. },
  12872. "autoload": {
  12873. "psr-4": {
  12874. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12875. },
  12876. "exclude-from-classmap": [
  12877. "/Tests/"
  12878. ]
  12879. },
  12880. "notification-url": "https://packagist.org/downloads/",
  12881. "license": [
  12882. "MIT"
  12883. ],
  12884. "authors": [
  12885. {
  12886. "name": "Fabien Potencier",
  12887. "email": "fabien@symfony.com"
  12888. },
  12889. {
  12890. "name": "Symfony Community",
  12891. "homepage": "http://symfony.com/contributors"
  12892. }
  12893. ],
  12894. "description": "PSR HTTP message bridge",
  12895. "homepage": "http://symfony.com",
  12896. "keywords": [
  12897. "http",
  12898. "http-message",
  12899. "psr-17",
  12900. "psr-7"
  12901. ],
  12902. "support": {
  12903. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  12904. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.0.2"
  12905. },
  12906. "funding": [
  12907. {
  12908. "url": "https://symfony.com/sponsor",
  12909. "type": "custom"
  12910. },
  12911. {
  12912. "url": "https://github.com/fabpot",
  12913. "type": "github"
  12914. },
  12915. {
  12916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12917. "type": "tidelift"
  12918. }
  12919. ],
  12920. "time": "2020-09-29T08:17:46+00:00"
  12921. },
  12922. {
  12923. "name": "symfony/routing",
  12924. "version": "v4.4.16",
  12925. "source": {
  12926. "type": "git",
  12927. "url": "https://github.com/symfony/routing.git",
  12928. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  12929. },
  12930. "dist": {
  12931. "type": "zip",
  12932. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  12933. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  12934. "shasum": ""
  12935. },
  12936. "require": {
  12937. "php": ">=7.1.3"
  12938. },
  12939. "conflict": {
  12940. "symfony/config": "<4.2",
  12941. "symfony/dependency-injection": "<3.4",
  12942. "symfony/yaml": "<3.4"
  12943. },
  12944. "require-dev": {
  12945. "doctrine/annotations": "~1.2",
  12946. "psr/log": "~1.0",
  12947. "symfony/config": "^4.2|^5.0",
  12948. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12949. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12950. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12951. "symfony/yaml": "^3.4|^4.0|^5.0"
  12952. },
  12953. "suggest": {
  12954. "doctrine/annotations": "For using the annotation loader",
  12955. "symfony/config": "For using the all-in-one router or any loader",
  12956. "symfony/expression-language": "For using expression matching",
  12957. "symfony/http-foundation": "For using a Symfony Request object",
  12958. "symfony/yaml": "For using the YAML loader"
  12959. },
  12960. "type": "library",
  12961. "autoload": {
  12962. "psr-4": {
  12963. "Symfony\\Component\\Routing\\": ""
  12964. },
  12965. "exclude-from-classmap": [
  12966. "/Tests/"
  12967. ]
  12968. },
  12969. "notification-url": "https://packagist.org/downloads/",
  12970. "license": [
  12971. "MIT"
  12972. ],
  12973. "authors": [
  12974. {
  12975. "name": "Fabien Potencier",
  12976. "email": "fabien@symfony.com"
  12977. },
  12978. {
  12979. "name": "Symfony Community",
  12980. "homepage": "https://symfony.com/contributors"
  12981. }
  12982. ],
  12983. "description": "Symfony Routing Component",
  12984. "homepage": "https://symfony.com",
  12985. "keywords": [
  12986. "router",
  12987. "routing",
  12988. "uri",
  12989. "url"
  12990. ],
  12991. "support": {
  12992. "source": "https://github.com/symfony/routing/tree/v4.4.16"
  12993. },
  12994. "funding": [
  12995. {
  12996. "url": "https://symfony.com/sponsor",
  12997. "type": "custom"
  12998. },
  12999. {
  13000. "url": "https://github.com/fabpot",
  13001. "type": "github"
  13002. },
  13003. {
  13004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13005. "type": "tidelift"
  13006. }
  13007. ],
  13008. "time": "2020-10-24T11:50:19+00:00"
  13009. },
  13010. {
  13011. "name": "symfony/serializer",
  13012. "version": "v4.4.16",
  13013. "source": {
  13014. "type": "git",
  13015. "url": "https://github.com/symfony/serializer.git",
  13016. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  13017. },
  13018. "dist": {
  13019. "type": "zip",
  13020. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  13021. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  13022. "shasum": ""
  13023. },
  13024. "require": {
  13025. "php": ">=7.1.3",
  13026. "symfony/polyfill-ctype": "~1.8"
  13027. },
  13028. "conflict": {
  13029. "phpdocumentor/type-resolver": "<0.2.1",
  13030. "symfony/dependency-injection": "<3.4",
  13031. "symfony/property-access": "<3.4",
  13032. "symfony/property-info": "<3.4",
  13033. "symfony/yaml": "<3.4"
  13034. },
  13035. "require-dev": {
  13036. "doctrine/annotations": "~1.0",
  13037. "doctrine/cache": "~1.0",
  13038. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  13039. "symfony/cache": "^3.4|^4.0|^5.0",
  13040. "symfony/config": "^3.4|^4.0|^5.0",
  13041. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13042. "symfony/error-handler": "^4.4|^5.0",
  13043. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  13044. "symfony/mime": "^4.4|^5.0",
  13045. "symfony/property-access": "^3.4|^4.0|^5.0",
  13046. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  13047. "symfony/validator": "^3.4|^4.0|^5.0",
  13048. "symfony/yaml": "^3.4|^4.0|^5.0"
  13049. },
  13050. "suggest": {
  13051. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  13052. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  13053. "psr/cache-implementation": "For using the metadata cache.",
  13054. "symfony/config": "For using the XML mapping loader.",
  13055. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  13056. "symfony/property-access": "For using the ObjectNormalizer.",
  13057. "symfony/property-info": "To deserialize relations.",
  13058. "symfony/yaml": "For using the default YAML mapping loader."
  13059. },
  13060. "type": "library",
  13061. "autoload": {
  13062. "psr-4": {
  13063. "Symfony\\Component\\Serializer\\": ""
  13064. },
  13065. "exclude-from-classmap": [
  13066. "/Tests/"
  13067. ]
  13068. },
  13069. "notification-url": "https://packagist.org/downloads/",
  13070. "license": [
  13071. "MIT"
  13072. ],
  13073. "authors": [
  13074. {
  13075. "name": "Fabien Potencier",
  13076. "email": "fabien@symfony.com"
  13077. },
  13078. {
  13079. "name": "Symfony Community",
  13080. "homepage": "https://symfony.com/contributors"
  13081. }
  13082. ],
  13083. "description": "Symfony Serializer Component",
  13084. "homepage": "https://symfony.com",
  13085. "support": {
  13086. "source": "https://github.com/symfony/serializer/tree/v4.4.16"
  13087. },
  13088. "funding": [
  13089. {
  13090. "url": "https://symfony.com/sponsor",
  13091. "type": "custom"
  13092. },
  13093. {
  13094. "url": "https://github.com/fabpot",
  13095. "type": "github"
  13096. },
  13097. {
  13098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13099. "type": "tidelift"
  13100. }
  13101. ],
  13102. "time": "2020-10-24T11:50:19+00:00"
  13103. },
  13104. {
  13105. "name": "symfony/service-contracts",
  13106. "version": "v2.2.0",
  13107. "source": {
  13108. "type": "git",
  13109. "url": "https://github.com/symfony/service-contracts.git",
  13110. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  13111. },
  13112. "dist": {
  13113. "type": "zip",
  13114. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  13115. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  13116. "shasum": ""
  13117. },
  13118. "require": {
  13119. "php": ">=7.2.5",
  13120. "psr/container": "^1.0"
  13121. },
  13122. "suggest": {
  13123. "symfony/service-implementation": ""
  13124. },
  13125. "type": "library",
  13126. "extra": {
  13127. "branch-alias": {
  13128. "dev-master": "2.2-dev"
  13129. },
  13130. "thanks": {
  13131. "name": "symfony/contracts",
  13132. "url": "https://github.com/symfony/contracts"
  13133. }
  13134. },
  13135. "autoload": {
  13136. "psr-4": {
  13137. "Symfony\\Contracts\\Service\\": ""
  13138. }
  13139. },
  13140. "notification-url": "https://packagist.org/downloads/",
  13141. "license": [
  13142. "MIT"
  13143. ],
  13144. "authors": [
  13145. {
  13146. "name": "Nicolas Grekas",
  13147. "email": "p@tchwork.com"
  13148. },
  13149. {
  13150. "name": "Symfony Community",
  13151. "homepage": "https://symfony.com/contributors"
  13152. }
  13153. ],
  13154. "description": "Generic abstractions related to writing services",
  13155. "homepage": "https://symfony.com",
  13156. "keywords": [
  13157. "abstractions",
  13158. "contracts",
  13159. "decoupling",
  13160. "interfaces",
  13161. "interoperability",
  13162. "standards"
  13163. ],
  13164. "support": {
  13165. "source": "https://github.com/symfony/service-contracts/tree/master"
  13166. },
  13167. "funding": [
  13168. {
  13169. "url": "https://symfony.com/sponsor",
  13170. "type": "custom"
  13171. },
  13172. {
  13173. "url": "https://github.com/fabpot",
  13174. "type": "github"
  13175. },
  13176. {
  13177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13178. "type": "tidelift"
  13179. }
  13180. ],
  13181. "time": "2020-09-07T11:33:47+00:00"
  13182. },
  13183. {
  13184. "name": "symfony/translation",
  13185. "version": "v4.4.16",
  13186. "source": {
  13187. "type": "git",
  13188. "url": "https://github.com/symfony/translation.git",
  13189. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  13190. },
  13191. "dist": {
  13192. "type": "zip",
  13193. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  13194. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  13195. "shasum": ""
  13196. },
  13197. "require": {
  13198. "php": ">=7.1.3",
  13199. "symfony/polyfill-mbstring": "~1.0",
  13200. "symfony/translation-contracts": "^1.1.6|^2"
  13201. },
  13202. "conflict": {
  13203. "symfony/config": "<3.4",
  13204. "symfony/dependency-injection": "<3.4",
  13205. "symfony/http-kernel": "<4.4",
  13206. "symfony/yaml": "<3.4"
  13207. },
  13208. "provide": {
  13209. "symfony/translation-implementation": "1.0"
  13210. },
  13211. "require-dev": {
  13212. "psr/log": "~1.0",
  13213. "symfony/config": "^3.4|^4.0|^5.0",
  13214. "symfony/console": "^3.4|^4.0|^5.0",
  13215. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13216. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  13217. "symfony/http-kernel": "^4.4",
  13218. "symfony/intl": "^3.4|^4.0|^5.0",
  13219. "symfony/service-contracts": "^1.1.2|^2",
  13220. "symfony/yaml": "^3.4|^4.0|^5.0"
  13221. },
  13222. "suggest": {
  13223. "psr/log-implementation": "To use logging capability in translator",
  13224. "symfony/config": "",
  13225. "symfony/yaml": ""
  13226. },
  13227. "type": "library",
  13228. "autoload": {
  13229. "psr-4": {
  13230. "Symfony\\Component\\Translation\\": ""
  13231. },
  13232. "exclude-from-classmap": [
  13233. "/Tests/"
  13234. ]
  13235. },
  13236. "notification-url": "https://packagist.org/downloads/",
  13237. "license": [
  13238. "MIT"
  13239. ],
  13240. "authors": [
  13241. {
  13242. "name": "Fabien Potencier",
  13243. "email": "fabien@symfony.com"
  13244. },
  13245. {
  13246. "name": "Symfony Community",
  13247. "homepage": "https://symfony.com/contributors"
  13248. }
  13249. ],
  13250. "description": "Symfony Translation Component",
  13251. "homepage": "https://symfony.com",
  13252. "support": {
  13253. "source": "https://github.com/symfony/translation/tree/v4.4.16"
  13254. },
  13255. "funding": [
  13256. {
  13257. "url": "https://symfony.com/sponsor",
  13258. "type": "custom"
  13259. },
  13260. {
  13261. "url": "https://github.com/fabpot",
  13262. "type": "github"
  13263. },
  13264. {
  13265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13266. "type": "tidelift"
  13267. }
  13268. ],
  13269. "time": "2020-10-24T11:50:19+00:00"
  13270. },
  13271. {
  13272. "name": "symfony/translation-contracts",
  13273. "version": "v2.3.0",
  13274. "source": {
  13275. "type": "git",
  13276. "url": "https://github.com/symfony/translation-contracts.git",
  13277. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  13278. },
  13279. "dist": {
  13280. "type": "zip",
  13281. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  13282. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  13283. "shasum": ""
  13284. },
  13285. "require": {
  13286. "php": ">=7.2.5"
  13287. },
  13288. "suggest": {
  13289. "symfony/translation-implementation": ""
  13290. },
  13291. "type": "library",
  13292. "extra": {
  13293. "branch-alias": {
  13294. "dev-master": "2.3-dev"
  13295. },
  13296. "thanks": {
  13297. "name": "symfony/contracts",
  13298. "url": "https://github.com/symfony/contracts"
  13299. }
  13300. },
  13301. "autoload": {
  13302. "psr-4": {
  13303. "Symfony\\Contracts\\Translation\\": ""
  13304. }
  13305. },
  13306. "notification-url": "https://packagist.org/downloads/",
  13307. "license": [
  13308. "MIT"
  13309. ],
  13310. "authors": [
  13311. {
  13312. "name": "Nicolas Grekas",
  13313. "email": "p@tchwork.com"
  13314. },
  13315. {
  13316. "name": "Symfony Community",
  13317. "homepage": "https://symfony.com/contributors"
  13318. }
  13319. ],
  13320. "description": "Generic abstractions related to translation",
  13321. "homepage": "https://symfony.com",
  13322. "keywords": [
  13323. "abstractions",
  13324. "contracts",
  13325. "decoupling",
  13326. "interfaces",
  13327. "interoperability",
  13328. "standards"
  13329. ],
  13330. "support": {
  13331. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  13332. },
  13333. "funding": [
  13334. {
  13335. "url": "https://symfony.com/sponsor",
  13336. "type": "custom"
  13337. },
  13338. {
  13339. "url": "https://github.com/fabpot",
  13340. "type": "github"
  13341. },
  13342. {
  13343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13344. "type": "tidelift"
  13345. }
  13346. ],
  13347. "time": "2020-09-28T13:05:58+00:00"
  13348. },
  13349. {
  13350. "name": "symfony/validator",
  13351. "version": "v4.4.16",
  13352. "source": {
  13353. "type": "git",
  13354. "url": "https://github.com/symfony/validator.git",
  13355. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  13356. },
  13357. "dist": {
  13358. "type": "zip",
  13359. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  13360. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  13361. "shasum": ""
  13362. },
  13363. "require": {
  13364. "php": ">=7.1.3",
  13365. "symfony/polyfill-ctype": "~1.8",
  13366. "symfony/polyfill-mbstring": "~1.0",
  13367. "symfony/translation-contracts": "^1.1|^2"
  13368. },
  13369. "conflict": {
  13370. "doctrine/lexer": "<1.0.2",
  13371. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  13372. "symfony/dependency-injection": "<3.4",
  13373. "symfony/http-kernel": "<4.4",
  13374. "symfony/intl": "<4.3",
  13375. "symfony/translation": ">=5.0",
  13376. "symfony/yaml": "<3.4"
  13377. },
  13378. "require-dev": {
  13379. "doctrine/annotations": "~1.7",
  13380. "doctrine/cache": "~1.0",
  13381. "egulias/email-validator": "^2.1.10",
  13382. "symfony/cache": "^3.4|^4.0|^5.0",
  13383. "symfony/config": "^3.4|^4.0|^5.0",
  13384. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13385. "symfony/expression-language": "^3.4|^4.0|^5.0",
  13386. "symfony/http-client": "^4.3|^5.0",
  13387. "symfony/http-foundation": "^4.1|^5.0",
  13388. "symfony/http-kernel": "^4.4",
  13389. "symfony/intl": "^4.3|^5.0",
  13390. "symfony/mime": "^4.4|^5.0",
  13391. "symfony/property-access": "^3.4|^4.0|^5.0",
  13392. "symfony/property-info": "^3.4|^4.0|^5.0",
  13393. "symfony/translation": "^4.2",
  13394. "symfony/yaml": "^3.4|^4.0|^5.0"
  13395. },
  13396. "suggest": {
  13397. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  13398. "doctrine/cache": "For using the default cached annotation reader.",
  13399. "egulias/email-validator": "Strict (RFC compliant) email validation",
  13400. "psr/cache-implementation": "For using the mapping cache.",
  13401. "symfony/config": "",
  13402. "symfony/expression-language": "For using the Expression validator",
  13403. "symfony/http-foundation": "",
  13404. "symfony/intl": "",
  13405. "symfony/property-access": "For accessing properties within comparison constraints",
  13406. "symfony/property-info": "To automatically add NotNull and Type constraints",
  13407. "symfony/translation": "For translating validation errors.",
  13408. "symfony/yaml": ""
  13409. },
  13410. "type": "library",
  13411. "autoload": {
  13412. "psr-4": {
  13413. "Symfony\\Component\\Validator\\": ""
  13414. },
  13415. "exclude-from-classmap": [
  13416. "/Tests/"
  13417. ]
  13418. },
  13419. "notification-url": "https://packagist.org/downloads/",
  13420. "license": [
  13421. "MIT"
  13422. ],
  13423. "authors": [
  13424. {
  13425. "name": "Fabien Potencier",
  13426. "email": "fabien@symfony.com"
  13427. },
  13428. {
  13429. "name": "Symfony Community",
  13430. "homepage": "https://symfony.com/contributors"
  13431. }
  13432. ],
  13433. "description": "Symfony Validator Component",
  13434. "homepage": "https://symfony.com",
  13435. "support": {
  13436. "source": "https://github.com/symfony/validator/tree/v4.4.16"
  13437. },
  13438. "funding": [
  13439. {
  13440. "url": "https://symfony.com/sponsor",
  13441. "type": "custom"
  13442. },
  13443. {
  13444. "url": "https://github.com/fabpot",
  13445. "type": "github"
  13446. },
  13447. {
  13448. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13449. "type": "tidelift"
  13450. }
  13451. ],
  13452. "time": "2020-10-28T05:25:24+00:00"
  13453. },
  13454. {
  13455. "name": "symfony/var-dumper",
  13456. "version": "v5.1.8",
  13457. "source": {
  13458. "type": "git",
  13459. "url": "https://github.com/symfony/var-dumper.git",
  13460. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  13461. },
  13462. "dist": {
  13463. "type": "zip",
  13464. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  13465. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  13466. "shasum": ""
  13467. },
  13468. "require": {
  13469. "php": ">=7.2.5",
  13470. "symfony/polyfill-mbstring": "~1.0",
  13471. "symfony/polyfill-php80": "^1.15"
  13472. },
  13473. "conflict": {
  13474. "phpunit/phpunit": "<5.4.3",
  13475. "symfony/console": "<4.4"
  13476. },
  13477. "require-dev": {
  13478. "ext-iconv": "*",
  13479. "symfony/console": "^4.4|^5.0",
  13480. "symfony/process": "^4.4|^5.0",
  13481. "twig/twig": "^2.4|^3.0"
  13482. },
  13483. "suggest": {
  13484. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  13485. "ext-intl": "To show region name in time zone dump",
  13486. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  13487. },
  13488. "bin": [
  13489. "Resources/bin/var-dump-server"
  13490. ],
  13491. "type": "library",
  13492. "autoload": {
  13493. "files": [
  13494. "Resources/functions/dump.php"
  13495. ],
  13496. "psr-4": {
  13497. "Symfony\\Component\\VarDumper\\": ""
  13498. },
  13499. "exclude-from-classmap": [
  13500. "/Tests/"
  13501. ]
  13502. },
  13503. "notification-url": "https://packagist.org/downloads/",
  13504. "license": [
  13505. "MIT"
  13506. ],
  13507. "authors": [
  13508. {
  13509. "name": "Nicolas Grekas",
  13510. "email": "p@tchwork.com"
  13511. },
  13512. {
  13513. "name": "Symfony Community",
  13514. "homepage": "https://symfony.com/contributors"
  13515. }
  13516. ],
  13517. "description": "Symfony mechanism for exploring and dumping PHP variables",
  13518. "homepage": "https://symfony.com",
  13519. "keywords": [
  13520. "debug",
  13521. "dump"
  13522. ],
  13523. "support": {
  13524. "source": "https://github.com/symfony/var-dumper/tree/v5.1.8"
  13525. },
  13526. "funding": [
  13527. {
  13528. "url": "https://symfony.com/sponsor",
  13529. "type": "custom"
  13530. },
  13531. {
  13532. "url": "https://github.com/fabpot",
  13533. "type": "github"
  13534. },
  13535. {
  13536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13537. "type": "tidelift"
  13538. }
  13539. ],
  13540. "time": "2020-10-27T10:11:13+00:00"
  13541. },
  13542. {
  13543. "name": "symfony/yaml",
  13544. "version": "v4.4.16",
  13545. "source": {
  13546. "type": "git",
  13547. "url": "https://github.com/symfony/yaml.git",
  13548. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  13549. },
  13550. "dist": {
  13551. "type": "zip",
  13552. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  13553. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  13554. "shasum": ""
  13555. },
  13556. "require": {
  13557. "php": ">=7.1.3",
  13558. "symfony/polyfill-ctype": "~1.8"
  13559. },
  13560. "conflict": {
  13561. "symfony/console": "<3.4"
  13562. },
  13563. "require-dev": {
  13564. "symfony/console": "^3.4|^4.0|^5.0"
  13565. },
  13566. "suggest": {
  13567. "symfony/console": "For validating YAML files using the lint command"
  13568. },
  13569. "type": "library",
  13570. "autoload": {
  13571. "psr-4": {
  13572. "Symfony\\Component\\Yaml\\": ""
  13573. },
  13574. "exclude-from-classmap": [
  13575. "/Tests/"
  13576. ]
  13577. },
  13578. "notification-url": "https://packagist.org/downloads/",
  13579. "license": [
  13580. "MIT"
  13581. ],
  13582. "authors": [
  13583. {
  13584. "name": "Fabien Potencier",
  13585. "email": "fabien@symfony.com"
  13586. },
  13587. {
  13588. "name": "Symfony Community",
  13589. "homepage": "https://symfony.com/contributors"
  13590. }
  13591. ],
  13592. "description": "Symfony Yaml Component",
  13593. "homepage": "https://symfony.com",
  13594. "support": {
  13595. "source": "https://github.com/symfony/yaml/tree/v4.4.16"
  13596. },
  13597. "funding": [
  13598. {
  13599. "url": "https://symfony.com/sponsor",
  13600. "type": "custom"
  13601. },
  13602. {
  13603. "url": "https://github.com/fabpot",
  13604. "type": "github"
  13605. },
  13606. {
  13607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13608. "type": "tidelift"
  13609. }
  13610. ],
  13611. "time": "2020-10-24T11:50:19+00:00"
  13612. },
  13613. {
  13614. "name": "twig/twig",
  13615. "version": "v2.14.1",
  13616. "source": {
  13617. "type": "git",
  13618. "url": "https://github.com/twigphp/Twig.git",
  13619. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  13620. },
  13621. "dist": {
  13622. "type": "zip",
  13623. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  13624. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  13625. "shasum": ""
  13626. },
  13627. "require": {
  13628. "php": ">=7.2.5",
  13629. "symfony/polyfill-ctype": "^1.8",
  13630. "symfony/polyfill-mbstring": "^1.3"
  13631. },
  13632. "require-dev": {
  13633. "psr/container": "^1.0",
  13634. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  13635. },
  13636. "type": "library",
  13637. "extra": {
  13638. "branch-alias": {
  13639. "dev-master": "2.14-dev"
  13640. }
  13641. },
  13642. "autoload": {
  13643. "psr-0": {
  13644. "Twig_": "lib/"
  13645. },
  13646. "psr-4": {
  13647. "Twig\\": "src/"
  13648. }
  13649. },
  13650. "notification-url": "https://packagist.org/downloads/",
  13651. "license": [
  13652. "BSD-3-Clause"
  13653. ],
  13654. "authors": [
  13655. {
  13656. "name": "Fabien Potencier",
  13657. "email": "fabien@symfony.com",
  13658. "homepage": "http://fabien.potencier.org",
  13659. "role": "Lead Developer"
  13660. },
  13661. {
  13662. "name": "Twig Team",
  13663. "role": "Contributors"
  13664. },
  13665. {
  13666. "name": "Armin Ronacher",
  13667. "email": "armin.ronacher@active-4.com",
  13668. "role": "Project Founder"
  13669. }
  13670. ],
  13671. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13672. "homepage": "https://twig.symfony.com",
  13673. "keywords": [
  13674. "templating"
  13675. ],
  13676. "support": {
  13677. "issues": "https://github.com/twigphp/Twig/issues",
  13678. "source": "https://github.com/twigphp/Twig/tree/v2.14.1"
  13679. },
  13680. "funding": [
  13681. {
  13682. "url": "https://github.com/fabpot",
  13683. "type": "github"
  13684. },
  13685. {
  13686. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13687. "type": "tidelift"
  13688. }
  13689. ],
  13690. "time": "2020-10-27T19:25:29+00:00"
  13691. },
  13692. {
  13693. "name": "typo3/phar-stream-wrapper",
  13694. "version": "v3.1.6",
  13695. "source": {
  13696. "type": "git",
  13697. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  13698. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  13699. },
  13700. "dist": {
  13701. "type": "zip",
  13702. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13703. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13704. "shasum": ""
  13705. },
  13706. "require": {
  13707. "ext-json": "*",
  13708. "php": "^7.0 || ^8.0"
  13709. },
  13710. "require-dev": {
  13711. "ext-xdebug": "*",
  13712. "phpspec/prophecy": "^1.10",
  13713. "symfony/phpunit-bridge": "^5.1"
  13714. },
  13715. "suggest": {
  13716. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  13717. },
  13718. "type": "library",
  13719. "extra": {
  13720. "branch-alias": {
  13721. "dev-master": "v3.x-dev"
  13722. }
  13723. },
  13724. "autoload": {
  13725. "psr-4": {
  13726. "TYPO3\\PharStreamWrapper\\": "src/"
  13727. }
  13728. },
  13729. "notification-url": "https://packagist.org/downloads/",
  13730. "license": [
  13731. "MIT"
  13732. ],
  13733. "description": "Interceptors for PHP's native phar:// stream handling",
  13734. "homepage": "https://typo3.org/",
  13735. "keywords": [
  13736. "phar",
  13737. "php",
  13738. "security",
  13739. "stream-wrapper"
  13740. ],
  13741. "support": {
  13742. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  13743. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.6"
  13744. },
  13745. "time": "2020-11-07T09:06:16+00:00"
  13746. },
  13747. {
  13748. "name": "webflo/drupal-finder",
  13749. "version": "1.2.2",
  13750. "source": {
  13751. "type": "git",
  13752. "url": "https://github.com/webflo/drupal-finder.git",
  13753. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  13754. },
  13755. "dist": {
  13756. "type": "zip",
  13757. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13758. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13759. "shasum": ""
  13760. },
  13761. "require": {
  13762. "ext-json": "*"
  13763. },
  13764. "require-dev": {
  13765. "mikey179/vfsstream": "^1.6",
  13766. "phpunit/phpunit": "^4.8"
  13767. },
  13768. "type": "library",
  13769. "autoload": {
  13770. "classmap": [
  13771. "src/DrupalFinder.php"
  13772. ]
  13773. },
  13774. "notification-url": "https://packagist.org/downloads/",
  13775. "license": [
  13776. "GPL-2.0-or-later"
  13777. ],
  13778. "authors": [
  13779. {
  13780. "name": "Florian Weber",
  13781. "email": "florian@webflo.org"
  13782. }
  13783. ],
  13784. "description": "Helper class to locate a Drupal installation from a given path.",
  13785. "support": {
  13786. "issues": "https://github.com/webflo/drupal-finder/issues",
  13787. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  13788. },
  13789. "time": "2020-10-27T09:42:17+00:00"
  13790. },
  13791. {
  13792. "name": "webmozart/assert",
  13793. "version": "1.10.0",
  13794. "source": {
  13795. "type": "git",
  13796. "url": "https://github.com/webmozarts/assert.git",
  13797. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  13798. },
  13799. "dist": {
  13800. "type": "zip",
  13801. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  13802. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  13803. "shasum": ""
  13804. },
  13805. "require": {
  13806. "php": "^7.2 || ^8.0",
  13807. "symfony/polyfill-ctype": "^1.8"
  13808. },
  13809. "conflict": {
  13810. "phpstan/phpstan": "<0.12.20",
  13811. "vimeo/psalm": "<4.6.1 || 4.6.2"
  13812. },
  13813. "require-dev": {
  13814. "phpunit/phpunit": "^8.5.13"
  13815. },
  13816. "type": "library",
  13817. "extra": {
  13818. "branch-alias": {
  13819. "dev-master": "1.10-dev"
  13820. }
  13821. },
  13822. "autoload": {
  13823. "psr-4": {
  13824. "Webmozart\\Assert\\": "src/"
  13825. }
  13826. },
  13827. "notification-url": "https://packagist.org/downloads/",
  13828. "license": [
  13829. "MIT"
  13830. ],
  13831. "authors": [
  13832. {
  13833. "name": "Bernhard Schussek",
  13834. "email": "bschussek@gmail.com"
  13835. }
  13836. ],
  13837. "description": "Assertions to validate method input/output with nice error messages.",
  13838. "keywords": [
  13839. "assert",
  13840. "check",
  13841. "validate"
  13842. ],
  13843. "support": {
  13844. "issues": "https://github.com/webmozarts/assert/issues",
  13845. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  13846. },
  13847. "time": "2021-03-09T10:59:23+00:00"
  13848. },
  13849. {
  13850. "name": "webmozart/path-util",
  13851. "version": "2.3.0",
  13852. "source": {
  13853. "type": "git",
  13854. "url": "https://github.com/webmozart/path-util.git",
  13855. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  13856. },
  13857. "dist": {
  13858. "type": "zip",
  13859. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13860. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13861. "shasum": ""
  13862. },
  13863. "require": {
  13864. "php": ">=5.3.3",
  13865. "webmozart/assert": "~1.0"
  13866. },
  13867. "require-dev": {
  13868. "phpunit/phpunit": "^4.6",
  13869. "sebastian/version": "^1.0.1"
  13870. },
  13871. "type": "library",
  13872. "extra": {
  13873. "branch-alias": {
  13874. "dev-master": "2.3-dev"
  13875. }
  13876. },
  13877. "autoload": {
  13878. "psr-4": {
  13879. "Webmozart\\PathUtil\\": "src/"
  13880. }
  13881. },
  13882. "notification-url": "https://packagist.org/downloads/",
  13883. "license": [
  13884. "MIT"
  13885. ],
  13886. "authors": [
  13887. {
  13888. "name": "Bernhard Schussek",
  13889. "email": "bschussek@gmail.com"
  13890. }
  13891. ],
  13892. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  13893. "support": {
  13894. "issues": "https://github.com/webmozart/path-util/issues",
  13895. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  13896. },
  13897. "time": "2015-12-17T08:42:14+00:00"
  13898. },
  13899. {
  13900. "name": "wikimedia/composer-merge-plugin",
  13901. "version": "v2.0.1",
  13902. "source": {
  13903. "type": "git",
  13904. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13905. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  13906. },
  13907. "dist": {
  13908. "type": "zip",
  13909. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13910. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13911. "shasum": ""
  13912. },
  13913. "require": {
  13914. "composer-plugin-api": "^1.1||^2.0",
  13915. "php": ">=7.2.0"
  13916. },
  13917. "require-dev": {
  13918. "composer/composer": "^1.1||^2.0",
  13919. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  13920. "phpunit/phpunit": "^8.5||^9.0",
  13921. "squizlabs/php_codesniffer": "~3.5.4"
  13922. },
  13923. "type": "composer-plugin",
  13924. "extra": {
  13925. "branch-alias": {
  13926. "dev-master": "2.x-dev"
  13927. },
  13928. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13929. },
  13930. "autoload": {
  13931. "psr-4": {
  13932. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13933. }
  13934. },
  13935. "notification-url": "https://packagist.org/downloads/",
  13936. "license": [
  13937. "MIT"
  13938. ],
  13939. "authors": [
  13940. {
  13941. "name": "Bryan Davis",
  13942. "email": "bd808@wikimedia.org"
  13943. }
  13944. ],
  13945. "description": "Composer plugin to merge multiple composer.json files",
  13946. "support": {
  13947. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13948. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1"
  13949. },
  13950. "time": "2021-02-24T05:28:06+00:00"
  13951. }
  13952. ],
  13953. "packages-dev": [],
  13954. "aliases": [],
  13955. "minimum-stability": "stable",
  13956. "stability-flags": {
  13957. "drupal/administerusersbyrole": 20,
  13958. "drupal/migrate_devel": 20,
  13959. "drupal/migrate_tools": 20,
  13960. "drupal/page_manager": 20,
  13961. "drupal/paragraphs": 20,
  13962. "drupal/autocomplete_deluxe": 5,
  13963. "drupal/better_exposed_filters": 10,
  13964. "drupal/bulkdelete": 20,
  13965. "drupal/cshs": 20,
  13966. "drupal/config_ignore": 5,
  13967. "drupal/config_devel": 20,
  13968. "drupal/context": 10,
  13969. "drupal/date_range_formatter": 20,
  13970. "drupal/domain": 20,
  13971. "drupal/domain_alias": 20,
  13972. "drupal/domain_config": 20,
  13973. "drupal/domain_site_settings": 20,
  13974. "drupal/email_registration": 5,
  13975. "drupal/entity_browser_enhanced": 5,
  13976. "drupal/entity_clone": 15,
  13977. "drupal/filefield_sources": 20,
  13978. "drupal/filter_perms": 20,
  13979. "drupal/inline_entity_form": 5,
  13980. "drupal/linkit": 10,
  13981. "drupal/login_destination": 20,
  13982. "drupal/maillog": 20,
  13983. "drupal/maxlength": 10,
  13984. "drupal/menu_block": 20,
  13985. "drupal/menu_position": 20,
  13986. "drupal/path_alias_xt": 20,
  13987. "drupal/pathologic": 15,
  13988. "drupal/profile": 5,
  13989. "drupal/smtp": 10,
  13990. "drupal/synonyms": 20,
  13991. "drupal/translation_views": 15,
  13992. "drupal/ultimate_cron": 15
  13993. },
  13994. "prefer-stable": true,
  13995. "prefer-lowest": false,
  13996. "platform": [],
  13997. "platform-dev": [],
  13998. "plugin-api-version": "2.0.0"
  13999. }