composer.lock 512 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927
  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": "8da11cb17c76f007a4b59bc7b1621d49",
  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.2",
  188. "source": {
  189. "type": "git",
  190. "url": "https://github.com/commerceguys/addressing.git",
  191. "reference": "fb98dfc72f8a3d12fac55f69ab2477a0fbfa9860"
  192. },
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/fb98dfc72f8a3d12fac55f69ab2477a0fbfa9860",
  196. "reference": "fb98dfc72f8a3d12fac55f69ab2477a0fbfa9860",
  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.2"
  245. },
  246. "time": "2021-10-30T12:33:41+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.12.0",
  260. "source": {
  261. "type": "git",
  262. "url": "https://github.com/composer/installers.git",
  263. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  264. },
  265. "dist": {
  266. "type": "zip",
  267. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  268. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  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. "miaoxing",
  363. "modulework",
  364. "modx",
  365. "moodle",
  366. "osclass",
  367. "pantheon",
  368. "phpbb",
  369. "piwik",
  370. "ppi",
  371. "processwire",
  372. "puppet",
  373. "pxcms",
  374. "reindex",
  375. "roundcube",
  376. "shopware",
  377. "silverstripe",
  378. "sydes",
  379. "sylius",
  380. "symfony",
  381. "tastyigniter",
  382. "typo3",
  383. "wordpress",
  384. "yawik",
  385. "zend",
  386. "zikula"
  387. ],
  388. "support": {
  389. "issues": "https://github.com/composer/installers/issues",
  390. "source": "https://github.com/composer/installers/tree/v1.12.0"
  391. },
  392. "funding": [
  393. {
  394. "url": "https://packagist.com",
  395. "type": "custom"
  396. },
  397. {
  398. "url": "https://github.com/composer",
  399. "type": "github"
  400. },
  401. {
  402. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  403. "type": "tidelift"
  404. }
  405. ],
  406. "time": "2021-09-13T08:19:44+00:00"
  407. },
  408. {
  409. "name": "composer/semver",
  410. "version": "3.2.5",
  411. "source": {
  412. "type": "git",
  413. "url": "https://github.com/composer/semver.git",
  414. "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9"
  415. },
  416. "dist": {
  417. "type": "zip",
  418. "url": "https://api.github.com/repos/composer/semver/zipball/31f3ea725711245195f62e54ffa402d8ef2fdba9",
  419. "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9",
  420. "shasum": ""
  421. },
  422. "require": {
  423. "php": "^5.3.2 || ^7.0 || ^8.0"
  424. },
  425. "require-dev": {
  426. "phpstan/phpstan": "^0.12.54",
  427. "symfony/phpunit-bridge": "^4.2 || ^5"
  428. },
  429. "type": "library",
  430. "extra": {
  431. "branch-alias": {
  432. "dev-main": "3.x-dev"
  433. }
  434. },
  435. "autoload": {
  436. "psr-4": {
  437. "Composer\\Semver\\": "src"
  438. }
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "MIT"
  443. ],
  444. "authors": [
  445. {
  446. "name": "Nils Adermann",
  447. "email": "naderman@naderman.de",
  448. "homepage": "http://www.naderman.de"
  449. },
  450. {
  451. "name": "Jordi Boggiano",
  452. "email": "j.boggiano@seld.be",
  453. "homepage": "http://seld.be"
  454. },
  455. {
  456. "name": "Rob Bast",
  457. "email": "rob.bast@gmail.com",
  458. "homepage": "http://robbast.nl"
  459. }
  460. ],
  461. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  462. "keywords": [
  463. "semantic",
  464. "semver",
  465. "validation",
  466. "versioning"
  467. ],
  468. "support": {
  469. "irc": "irc://irc.freenode.org/composer",
  470. "issues": "https://github.com/composer/semver/issues",
  471. "source": "https://github.com/composer/semver/tree/3.2.5"
  472. },
  473. "funding": [
  474. {
  475. "url": "https://packagist.com",
  476. "type": "custom"
  477. },
  478. {
  479. "url": "https://github.com/composer",
  480. "type": "github"
  481. },
  482. {
  483. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  484. "type": "tidelift"
  485. }
  486. ],
  487. "time": "2021-05-24T12:41:47+00:00"
  488. },
  489. {
  490. "name": "consolidation/annotated-command",
  491. "version": "4.4.0",
  492. "source": {
  493. "type": "git",
  494. "url": "https://github.com/consolidation/annotated-command.git",
  495. "reference": "308f6ac178566a1ce9aa90ed908dac90a2c1e707"
  496. },
  497. "dist": {
  498. "type": "zip",
  499. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/308f6ac178566a1ce9aa90ed908dac90a2c1e707",
  500. "reference": "308f6ac178566a1ce9aa90ed908dac90a2c1e707",
  501. "shasum": ""
  502. },
  503. "require": {
  504. "consolidation/output-formatters": "^4.1.1",
  505. "php": ">=7.1.3",
  506. "psr/log": "^1|^2",
  507. "symfony/console": "^4.4.8|~5.1.0",
  508. "symfony/event-dispatcher": "^4.4.8|^5",
  509. "symfony/finder": "^4.4.8|^5"
  510. },
  511. "require-dev": {
  512. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  513. "squizlabs/php_codesniffer": "^3",
  514. "yoast/phpunit-polyfills": "^0.2.0"
  515. },
  516. "type": "library",
  517. "extra": {
  518. "branch-alias": {
  519. "dev-main": "4.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Consolidation\\AnnotatedCommand\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Greg Anderson",
  534. "email": "greg.1.anderson@greenknowe.org"
  535. }
  536. ],
  537. "description": "Initialize Symfony Console commands from annotated command class methods.",
  538. "support": {
  539. "issues": "https://github.com/consolidation/annotated-command/issues",
  540. "source": "https://github.com/consolidation/annotated-command/tree/4.4.0"
  541. },
  542. "time": "2021-09-30T01:08:15+00:00"
  543. },
  544. {
  545. "name": "consolidation/config",
  546. "version": "1.2.1",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/consolidation/config.git",
  550. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  555. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "dflydev/dot-access-data": "^1.1.0",
  560. "grasmash/expander": "^1",
  561. "php": ">=5.4.0"
  562. },
  563. "require-dev": {
  564. "g1a/composer-test-scenarios": "^3",
  565. "php-coveralls/php-coveralls": "^1",
  566. "phpunit/phpunit": "^5",
  567. "squizlabs/php_codesniffer": "2.*",
  568. "symfony/console": "^2.5|^3|^4",
  569. "symfony/yaml": "^2.8.11|^3|^4"
  570. },
  571. "suggest": {
  572. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  573. },
  574. "type": "library",
  575. "extra": {
  576. "scenarios": {
  577. "symfony4": {
  578. "require-dev": {
  579. "symfony/console": "^4.0"
  580. },
  581. "config": {
  582. "platform": {
  583. "php": "7.1.3"
  584. }
  585. }
  586. },
  587. "symfony2": {
  588. "require-dev": {
  589. "symfony/console": "^2.8",
  590. "symfony/event-dispatcher": "^2.8",
  591. "phpunit/phpunit": "^4.8.36"
  592. },
  593. "remove": [
  594. "php-coveralls/php-coveralls"
  595. ],
  596. "config": {
  597. "platform": {
  598. "php": "5.4.8"
  599. }
  600. }
  601. }
  602. },
  603. "branch-alias": {
  604. "dev-master": "1.x-dev"
  605. }
  606. },
  607. "autoload": {
  608. "psr-4": {
  609. "Consolidation\\Config\\": "src"
  610. }
  611. },
  612. "notification-url": "https://packagist.org/downloads/",
  613. "license": [
  614. "MIT"
  615. ],
  616. "authors": [
  617. {
  618. "name": "Greg Anderson",
  619. "email": "greg.1.anderson@greenknowe.org"
  620. }
  621. ],
  622. "description": "Provide configuration services for a commandline tool.",
  623. "support": {
  624. "issues": "https://github.com/consolidation/config/issues",
  625. "source": "https://github.com/consolidation/config/tree/master"
  626. },
  627. "time": "2019-03-03T19:37:04+00:00"
  628. },
  629. {
  630. "name": "consolidation/filter-via-dot-access-data",
  631. "version": "1.0.0",
  632. "source": {
  633. "type": "git",
  634. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  635. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  636. },
  637. "dist": {
  638. "type": "zip",
  639. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  640. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  641. "shasum": ""
  642. },
  643. "require": {
  644. "dflydev/dot-access-data": "^1.1.0",
  645. "php": ">=5.5.0"
  646. },
  647. "require-dev": {
  648. "consolidation/robo": "^1.2.3",
  649. "g1a/composer-test-scenarios": "^3",
  650. "knplabs/github-api": "^2.7",
  651. "php-coveralls/php-coveralls": "^1",
  652. "php-http/guzzle6-adapter": "^1.1",
  653. "phpunit/phpunit": "^5",
  654. "squizlabs/php_codesniffer": "^2.8",
  655. "symfony/console": "^2.8|^3|^4"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "scenarios": {
  660. "phpunit5": {
  661. "require-dev": {
  662. "phpunit/phpunit": "^5.7.27"
  663. },
  664. "remove": [
  665. "php-coveralls/php-coveralls"
  666. ],
  667. "config": {
  668. "platform": {
  669. "php": "5.6.33"
  670. }
  671. }
  672. }
  673. },
  674. "branch-alias": {
  675. "dev-master": "1.x-dev"
  676. }
  677. },
  678. "autoload": {
  679. "psr-4": {
  680. "Consolidation\\Filter\\": "src"
  681. }
  682. },
  683. "notification-url": "https://packagist.org/downloads/",
  684. "license": [
  685. "MIT"
  686. ],
  687. "authors": [
  688. {
  689. "name": "Greg Anderson",
  690. "email": "greg.1.anderson@greenknowe.org"
  691. }
  692. ],
  693. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  694. "support": {
  695. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  696. },
  697. "time": "2019-01-18T06:05:07+00:00"
  698. },
  699. {
  700. "name": "consolidation/log",
  701. "version": "2.0.2",
  702. "source": {
  703. "type": "git",
  704. "url": "https://github.com/consolidation/log.git",
  705. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  706. },
  707. "dist": {
  708. "type": "zip",
  709. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  710. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  711. "shasum": ""
  712. },
  713. "require": {
  714. "php": ">=7.1.3",
  715. "psr/log": "^1.0",
  716. "symfony/console": "^4|^5"
  717. },
  718. "require-dev": {
  719. "phpunit/phpunit": ">=7.5.20",
  720. "squizlabs/php_codesniffer": "^3",
  721. "yoast/phpunit-polyfills": "^0.2.0"
  722. },
  723. "type": "library",
  724. "extra": {
  725. "branch-alias": {
  726. "dev-main": "2.x-dev"
  727. }
  728. },
  729. "autoload": {
  730. "psr-4": {
  731. "Consolidation\\Log\\": "src"
  732. }
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "MIT"
  737. ],
  738. "authors": [
  739. {
  740. "name": "Greg Anderson",
  741. "email": "greg.1.anderson@greenknowe.org"
  742. }
  743. ],
  744. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  745. "support": {
  746. "issues": "https://github.com/consolidation/log/issues",
  747. "source": "https://github.com/consolidation/log/tree/2.0.2"
  748. },
  749. "time": "2020-12-10T16:26:23+00:00"
  750. },
  751. {
  752. "name": "consolidation/output-formatters",
  753. "version": "4.1.2",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/consolidation/output-formatters.git",
  757. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  762. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "dflydev/dot-access-data": "^1.1.0",
  767. "php": ">=7.1.3",
  768. "symfony/console": "^4|^5",
  769. "symfony/finder": "^4|^5"
  770. },
  771. "require-dev": {
  772. "php-coveralls/php-coveralls": "^2.4.2",
  773. "phpunit/phpunit": ">=7",
  774. "squizlabs/php_codesniffer": "^3",
  775. "symfony/var-dumper": "^4",
  776. "symfony/yaml": "^4",
  777. "yoast/phpunit-polyfills": "^0.2.0"
  778. },
  779. "suggest": {
  780. "symfony/var-dumper": "For using the var_dump formatter"
  781. },
  782. "type": "library",
  783. "extra": {
  784. "branch-alias": {
  785. "dev-main": "4.x-dev"
  786. }
  787. },
  788. "autoload": {
  789. "psr-4": {
  790. "Consolidation\\OutputFormatters\\": "src"
  791. }
  792. },
  793. "notification-url": "https://packagist.org/downloads/",
  794. "license": [
  795. "MIT"
  796. ],
  797. "authors": [
  798. {
  799. "name": "Greg Anderson",
  800. "email": "greg.1.anderson@greenknowe.org"
  801. }
  802. ],
  803. "description": "Format text by applying transformations provided by plug-in formatters.",
  804. "support": {
  805. "issues": "https://github.com/consolidation/output-formatters/issues",
  806. "source": "https://github.com/consolidation/output-formatters/tree/4.1.2"
  807. },
  808. "time": "2020-12-12T19:04:59+00:00"
  809. },
  810. {
  811. "name": "consolidation/robo",
  812. "version": "3.0.6",
  813. "source": {
  814. "type": "git",
  815. "url": "https://github.com/consolidation/Robo.git",
  816. "reference": "36dce2965a67abe5cf91f2bc36d2582a64a11258"
  817. },
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://api.github.com/repos/consolidation/Robo/zipball/36dce2965a67abe5cf91f2bc36d2582a64a11258",
  821. "reference": "36dce2965a67abe5cf91f2bc36d2582a64a11258",
  822. "shasum": ""
  823. },
  824. "require": {
  825. "consolidation/annotated-command": "^4.3",
  826. "consolidation/config": "^1.2.1|^2.0.1",
  827. "consolidation/log": "^1.1.1|^2.0.2",
  828. "consolidation/output-formatters": "^4.1.2",
  829. "consolidation/self-update": "^2.0",
  830. "league/container": "^3.3.1",
  831. "php": ">=7.1.3",
  832. "symfony/console": "^4.4.19 || ^5",
  833. "symfony/event-dispatcher": "^4.4.19 || ^5",
  834. "symfony/filesystem": "^4.4.9 || ^5",
  835. "symfony/finder": "^4.4.9 || ^5",
  836. "symfony/process": "^4.4.9 || ^5",
  837. "symfony/yaml": "^4.4 || ^5"
  838. },
  839. "conflict": {
  840. "codegyre/robo": "*"
  841. },
  842. "require-dev": {
  843. "natxet/cssmin": "3.0.4",
  844. "patchwork/jsqueeze": "^2",
  845. "pear/archive_tar": "^1.4.4",
  846. "phpunit/phpunit": "^7.5.20 | ^8",
  847. "squizlabs/php_codesniffer": "^3.6",
  848. "yoast/phpunit-polyfills": "^0.2.0"
  849. },
  850. "suggest": {
  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. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  855. },
  856. "bin": [
  857. "robo"
  858. ],
  859. "type": "library",
  860. "extra": {
  861. "scenarios": {
  862. "symfony4": {
  863. "require": {
  864. "symfony/console": "^4.4.11",
  865. "symfony/event-dispatcher": "^4.4.11",
  866. "symfony/filesystem": "^4.4.11",
  867. "symfony/finder": "^4.4.11",
  868. "symfony/process": "^4.4.11",
  869. "phpunit/phpunit": "^6",
  870. "nikic/php-parser": "^2"
  871. },
  872. "remove": [
  873. "codeception/phpunit-wrapper"
  874. ],
  875. "config": {
  876. "platform": {
  877. "php": "7.1.3"
  878. }
  879. }
  880. }
  881. },
  882. "branch-alias": {
  883. "dev-master": "2.x-dev",
  884. "dev-main": "2.x-dev"
  885. }
  886. },
  887. "autoload": {
  888. "psr-4": {
  889. "Robo\\": "src"
  890. }
  891. },
  892. "notification-url": "https://packagist.org/downloads/",
  893. "license": [
  894. "MIT"
  895. ],
  896. "authors": [
  897. {
  898. "name": "Davert",
  899. "email": "davert.php@resend.cc"
  900. }
  901. ],
  902. "description": "Modern task runner",
  903. "support": {
  904. "issues": "https://github.com/consolidation/Robo/issues",
  905. "source": "https://github.com/consolidation/Robo/tree/3.0.6"
  906. },
  907. "time": "2021-10-05T23:56:45+00:00"
  908. },
  909. {
  910. "name": "consolidation/self-update",
  911. "version": "2.0.0",
  912. "source": {
  913. "type": "git",
  914. "url": "https://github.com/consolidation/self-update.git",
  915. "reference": "7d6877f8006c51069e1469a9c57b1435640f74b7"
  916. },
  917. "dist": {
  918. "type": "zip",
  919. "url": "https://api.github.com/repos/consolidation/self-update/zipball/7d6877f8006c51069e1469a9c57b1435640f74b7",
  920. "reference": "7d6877f8006c51069e1469a9c57b1435640f74b7",
  921. "shasum": ""
  922. },
  923. "require": {
  924. "composer/semver": "^3.2",
  925. "php": ">=5.5.0",
  926. "symfony/console": "^2.8|^3|^4|^5",
  927. "symfony/filesystem": "^2.5|^3|^4|^5"
  928. },
  929. "bin": [
  930. "scripts/release"
  931. ],
  932. "type": "library",
  933. "extra": {
  934. "branch-alias": {
  935. "dev-main": "2.x-dev"
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "SelfUpdate\\": "src"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Alexander Menk",
  950. "email": "menk@mestrona.net"
  951. },
  952. {
  953. "name": "Greg Anderson",
  954. "email": "greg.1.anderson@greenknowe.org"
  955. }
  956. ],
  957. "description": "Provides a self:update command for Symfony Console applications.",
  958. "support": {
  959. "issues": "https://github.com/consolidation/self-update/issues",
  960. "source": "https://github.com/consolidation/self-update/tree/2.0.0"
  961. },
  962. "time": "2021-10-05T23:29:47+00:00"
  963. },
  964. {
  965. "name": "consolidation/site-alias",
  966. "version": "3.1.1",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/consolidation/site-alias.git",
  970. "reference": "e824b57253d9174f4a500f87e6d0e1e497c2a50a"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/e824b57253d9174f4a500f87e6d0e1e497c2a50a",
  975. "reference": "e824b57253d9174f4a500f87e6d0e1e497c2a50a",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "consolidation/config": "^1.2.1|^2",
  980. "php": ">=5.5.0",
  981. "symfony/finder": "~2.3|^3|^4.4|^5"
  982. },
  983. "require-dev": {
  984. "php-coveralls/php-coveralls": "^2.4.2",
  985. "phpunit/phpunit": ">=7",
  986. "squizlabs/php_codesniffer": "^3",
  987. "symfony/var-dumper": "^4",
  988. "yoast/phpunit-polyfills": "^0.2.0"
  989. },
  990. "type": "library",
  991. "extra": {
  992. "branch-alias": {
  993. "dev-main": "3.x-dev"
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Consolidation\\SiteAlias\\": "src"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Greg Anderson",
  1008. "email": "greg.1.anderson@greenknowe.org"
  1009. },
  1010. {
  1011. "name": "Moshe Weitzman",
  1012. "email": "weitzman@tejasa.com"
  1013. }
  1014. ],
  1015. "description": "Manage alias records for local and remote sites.",
  1016. "support": {
  1017. "issues": "https://github.com/consolidation/site-alias/issues",
  1018. "source": "https://github.com/consolidation/site-alias/tree/3.1.1"
  1019. },
  1020. "time": "2021-09-21T00:30:48+00:00"
  1021. },
  1022. {
  1023. "name": "consolidation/site-process",
  1024. "version": "4.1.0",
  1025. "source": {
  1026. "type": "git",
  1027. "url": "https://github.com/consolidation/site-process.git",
  1028. "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c"
  1029. },
  1030. "dist": {
  1031. "type": "zip",
  1032. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ef57711d7049f7606ce936ded16ad93f1ad7f02c",
  1033. "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c",
  1034. "shasum": ""
  1035. },
  1036. "require": {
  1037. "consolidation/config": "^1.2.1|^2",
  1038. "consolidation/site-alias": "^3",
  1039. "php": ">=7.1.3",
  1040. "symfony/console": "^2.8.52|^3|^4.4|^5",
  1041. "symfony/process": "^4.3.4"
  1042. },
  1043. "require-dev": {
  1044. "phpunit/phpunit": "^7.5.20|^8.5.14",
  1045. "squizlabs/php_codesniffer": "^3",
  1046. "yoast/phpunit-polyfills": "^0.2.0"
  1047. },
  1048. "type": "library",
  1049. "extra": {
  1050. "branch-alias": {
  1051. "dev-main": "4.x-dev"
  1052. }
  1053. },
  1054. "autoload": {
  1055. "psr-4": {
  1056. "Consolidation\\SiteProcess\\": "src"
  1057. }
  1058. },
  1059. "notification-url": "https://packagist.org/downloads/",
  1060. "license": [
  1061. "MIT"
  1062. ],
  1063. "authors": [
  1064. {
  1065. "name": "Greg Anderson",
  1066. "email": "greg.1.anderson@greenknowe.org"
  1067. },
  1068. {
  1069. "name": "Moshe Weitzman",
  1070. "email": "weitzman@tejasa.com"
  1071. }
  1072. ],
  1073. "description": "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.",
  1074. "support": {
  1075. "issues": "https://github.com/consolidation/site-process/issues",
  1076. "source": "https://github.com/consolidation/site-process/tree/4.1.0"
  1077. },
  1078. "time": "2021-02-21T02:53:33+00:00"
  1079. },
  1080. {
  1081. "name": "cweagans/composer-patches",
  1082. "version": "1.7.1",
  1083. "source": {
  1084. "type": "git",
  1085. "url": "https://github.com/cweagans/composer-patches.git",
  1086. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1087. },
  1088. "dist": {
  1089. "type": "zip",
  1090. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1091. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1092. "shasum": ""
  1093. },
  1094. "require": {
  1095. "composer-plugin-api": "^1.0 || ^2.0",
  1096. "php": ">=5.3.0"
  1097. },
  1098. "require-dev": {
  1099. "composer/composer": "~1.0 || ~2.0",
  1100. "phpunit/phpunit": "~4.6"
  1101. },
  1102. "type": "composer-plugin",
  1103. "extra": {
  1104. "class": "cweagans\\Composer\\Patches"
  1105. },
  1106. "autoload": {
  1107. "psr-4": {
  1108. "cweagans\\Composer\\": "src"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "BSD-3-Clause"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Cameron Eagans",
  1118. "email": "me@cweagans.net"
  1119. }
  1120. ],
  1121. "description": "Provides a way to patch Composer packages.",
  1122. "support": {
  1123. "issues": "https://github.com/cweagans/composer-patches/issues",
  1124. "source": "https://github.com/cweagans/composer-patches/tree/1.7.1"
  1125. },
  1126. "time": "2021-06-08T15:12:46+00:00"
  1127. },
  1128. {
  1129. "name": "d3/d3",
  1130. "version": "v3.5.17",
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1134. },
  1135. "type": "drupal-library"
  1136. },
  1137. {
  1138. "name": "dflydev/dot-access-configuration",
  1139. "version": "v1.0.3",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1143. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1148. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1149. "shasum": ""
  1150. },
  1151. "require": {
  1152. "dflydev/dot-access-data": "1.*",
  1153. "dflydev/placeholder-resolver": "1.*",
  1154. "php": ">=5.3.2"
  1155. },
  1156. "require-dev": {
  1157. "symfony/yaml": "~2.1"
  1158. },
  1159. "suggest": {
  1160. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1161. },
  1162. "type": "library",
  1163. "extra": {
  1164. "branch-alias": {
  1165. "dev-master": "1.0-dev"
  1166. }
  1167. },
  1168. "autoload": {
  1169. "psr-0": {
  1170. "Dflydev\\DotAccessConfiguration": "src"
  1171. }
  1172. },
  1173. "notification-url": "https://packagist.org/downloads/",
  1174. "license": [
  1175. "MIT"
  1176. ],
  1177. "authors": [
  1178. {
  1179. "name": "Dragonfly Development Inc.",
  1180. "email": "info@dflydev.com",
  1181. "homepage": "http://dflydev.com"
  1182. },
  1183. {
  1184. "name": "Beau Simensen",
  1185. "email": "beau@dflydev.com",
  1186. "homepage": "http://beausimensen.com"
  1187. }
  1188. ],
  1189. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1190. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1191. "keywords": [
  1192. "config",
  1193. "configuration"
  1194. ],
  1195. "support": {
  1196. "issues": "https://github.com/dflydev/dflydev-dot-access-configuration/issues",
  1197. "source": "https://github.com/dflydev/dflydev-dot-access-configuration/tree/master"
  1198. },
  1199. "time": "2018-09-08T23:00:17+00:00"
  1200. },
  1201. {
  1202. "name": "dflydev/dot-access-data",
  1203. "version": "v1.1.0",
  1204. "source": {
  1205. "type": "git",
  1206. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1207. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1208. },
  1209. "dist": {
  1210. "type": "zip",
  1211. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1212. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1213. "shasum": ""
  1214. },
  1215. "require": {
  1216. "php": ">=5.3.2"
  1217. },
  1218. "type": "library",
  1219. "extra": {
  1220. "branch-alias": {
  1221. "dev-master": "1.0-dev"
  1222. }
  1223. },
  1224. "autoload": {
  1225. "psr-0": {
  1226. "Dflydev\\DotAccessData": "src"
  1227. }
  1228. },
  1229. "notification-url": "https://packagist.org/downloads/",
  1230. "license": [
  1231. "MIT"
  1232. ],
  1233. "authors": [
  1234. {
  1235. "name": "Dragonfly Development Inc.",
  1236. "email": "info@dflydev.com",
  1237. "homepage": "http://dflydev.com"
  1238. },
  1239. {
  1240. "name": "Beau Simensen",
  1241. "email": "beau@dflydev.com",
  1242. "homepage": "http://beausimensen.com"
  1243. },
  1244. {
  1245. "name": "Carlos Frutos",
  1246. "email": "carlos@kiwing.it",
  1247. "homepage": "https://github.com/cfrutos"
  1248. }
  1249. ],
  1250. "description": "Given a deep data structure, access data by dot notation.",
  1251. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1252. "keywords": [
  1253. "access",
  1254. "data",
  1255. "dot",
  1256. "notation"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1260. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1261. },
  1262. "time": "2017-01-20T21:14:22+00:00"
  1263. },
  1264. {
  1265. "name": "dflydev/placeholder-resolver",
  1266. "version": "v1.0.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1270. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1275. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": ">=5.3.2"
  1280. },
  1281. "type": "library",
  1282. "extra": {
  1283. "branch-alias": {
  1284. "dev-master": "1.0-dev"
  1285. }
  1286. },
  1287. "autoload": {
  1288. "psr-0": {
  1289. "Dflydev\\PlaceholderResolver": "src"
  1290. }
  1291. },
  1292. "notification-url": "https://packagist.org/downloads/",
  1293. "license": [
  1294. "MIT"
  1295. ],
  1296. "authors": [
  1297. {
  1298. "name": "Dragonfly Development Inc.",
  1299. "email": "info@dflydev.com",
  1300. "homepage": "http://dflydev.com"
  1301. },
  1302. {
  1303. "name": "Beau Simensen",
  1304. "email": "beau@dflydev.com",
  1305. "homepage": "http://beausimensen.com"
  1306. }
  1307. ],
  1308. "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.",
  1309. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1310. "keywords": [
  1311. "placeholder",
  1312. "resolver"
  1313. ],
  1314. "support": {
  1315. "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues",
  1316. "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.2"
  1317. },
  1318. "time": "2012-10-28T21:08:28+00:00"
  1319. },
  1320. {
  1321. "name": "doctrine/annotations",
  1322. "version": "1.13.1",
  1323. "source": {
  1324. "type": "git",
  1325. "url": "https://github.com/doctrine/annotations.git",
  1326. "reference": "e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f"
  1327. },
  1328. "dist": {
  1329. "type": "zip",
  1330. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f",
  1331. "reference": "e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f",
  1332. "shasum": ""
  1333. },
  1334. "require": {
  1335. "doctrine/lexer": "1.*",
  1336. "ext-tokenizer": "*",
  1337. "php": "^7.1 || ^8.0",
  1338. "psr/cache": "^1 || ^2 || ^3"
  1339. },
  1340. "require-dev": {
  1341. "doctrine/cache": "^1.11 || ^2.0",
  1342. "doctrine/coding-standard": "^6.0 || ^8.1",
  1343. "phpstan/phpstan": "^0.12.20",
  1344. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1345. "symfony/cache": "^4.4 || ^5.2"
  1346. },
  1347. "type": "library",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Guilherme Blanco",
  1360. "email": "guilhermeblanco@gmail.com"
  1361. },
  1362. {
  1363. "name": "Roman Borschel",
  1364. "email": "roman@code-factory.org"
  1365. },
  1366. {
  1367. "name": "Benjamin Eberlei",
  1368. "email": "kontakt@beberlei.de"
  1369. },
  1370. {
  1371. "name": "Jonathan Wage",
  1372. "email": "jonwage@gmail.com"
  1373. },
  1374. {
  1375. "name": "Johannes Schmitt",
  1376. "email": "schmittjoh@gmail.com"
  1377. }
  1378. ],
  1379. "description": "Docblock Annotations Parser",
  1380. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1381. "keywords": [
  1382. "annotations",
  1383. "docblock",
  1384. "parser"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/doctrine/annotations/issues",
  1388. "source": "https://github.com/doctrine/annotations/tree/1.13.1"
  1389. },
  1390. "time": "2021-05-16T18:07:53+00:00"
  1391. },
  1392. {
  1393. "name": "doctrine/cache",
  1394. "version": "1.12.1",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/doctrine/cache.git",
  1398. "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/doctrine/cache/zipball/4cf401d14df219fa6f38b671f5493449151c9ad8",
  1403. "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "php": "~7.1 || ^8.0"
  1408. },
  1409. "conflict": {
  1410. "doctrine/common": ">2.2,<2.4"
  1411. },
  1412. "require-dev": {
  1413. "alcaeus/mongo-php-adapter": "^1.1",
  1414. "cache/integration-tests": "dev-master",
  1415. "doctrine/coding-standard": "^8.0",
  1416. "mongodb/mongodb": "^1.1",
  1417. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1418. "predis/predis": "~1.0",
  1419. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1420. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  1421. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  1422. },
  1423. "suggest": {
  1424. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1425. },
  1426. "type": "library",
  1427. "autoload": {
  1428. "psr-4": {
  1429. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "authors": [
  1437. {
  1438. "name": "Guilherme Blanco",
  1439. "email": "guilhermeblanco@gmail.com"
  1440. },
  1441. {
  1442. "name": "Roman Borschel",
  1443. "email": "roman@code-factory.org"
  1444. },
  1445. {
  1446. "name": "Benjamin Eberlei",
  1447. "email": "kontakt@beberlei.de"
  1448. },
  1449. {
  1450. "name": "Jonathan Wage",
  1451. "email": "jonwage@gmail.com"
  1452. },
  1453. {
  1454. "name": "Johannes Schmitt",
  1455. "email": "schmittjoh@gmail.com"
  1456. }
  1457. ],
  1458. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1459. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1460. "keywords": [
  1461. "abstraction",
  1462. "apcu",
  1463. "cache",
  1464. "caching",
  1465. "couchdb",
  1466. "memcached",
  1467. "php",
  1468. "redis",
  1469. "xcache"
  1470. ],
  1471. "support": {
  1472. "issues": "https://github.com/doctrine/cache/issues",
  1473. "source": "https://github.com/doctrine/cache/tree/1.12.1"
  1474. },
  1475. "funding": [
  1476. {
  1477. "url": "https://www.doctrine-project.org/sponsorship.html",
  1478. "type": "custom"
  1479. },
  1480. {
  1481. "url": "https://www.patreon.com/phpdoctrine",
  1482. "type": "patreon"
  1483. },
  1484. {
  1485. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1486. "type": "tidelift"
  1487. }
  1488. ],
  1489. "time": "2021-07-17T14:39:21+00:00"
  1490. },
  1491. {
  1492. "name": "doctrine/collections",
  1493. "version": "1.6.8",
  1494. "source": {
  1495. "type": "git",
  1496. "url": "https://github.com/doctrine/collections.git",
  1497. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
  1498. },
  1499. "dist": {
  1500. "type": "zip",
  1501. "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
  1502. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
  1503. "shasum": ""
  1504. },
  1505. "require": {
  1506. "php": "^7.1.3 || ^8.0"
  1507. },
  1508. "require-dev": {
  1509. "doctrine/coding-standard": "^9.0",
  1510. "phpstan/phpstan": "^0.12",
  1511. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  1512. "vimeo/psalm": "^4.2.1"
  1513. },
  1514. "type": "library",
  1515. "autoload": {
  1516. "psr-4": {
  1517. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1518. }
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "authors": [
  1525. {
  1526. "name": "Guilherme Blanco",
  1527. "email": "guilhermeblanco@gmail.com"
  1528. },
  1529. {
  1530. "name": "Roman Borschel",
  1531. "email": "roman@code-factory.org"
  1532. },
  1533. {
  1534. "name": "Benjamin Eberlei",
  1535. "email": "kontakt@beberlei.de"
  1536. },
  1537. {
  1538. "name": "Jonathan Wage",
  1539. "email": "jonwage@gmail.com"
  1540. },
  1541. {
  1542. "name": "Johannes Schmitt",
  1543. "email": "schmittjoh@gmail.com"
  1544. }
  1545. ],
  1546. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1547. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1548. "keywords": [
  1549. "array",
  1550. "collections",
  1551. "iterators",
  1552. "php"
  1553. ],
  1554. "support": {
  1555. "issues": "https://github.com/doctrine/collections/issues",
  1556. "source": "https://github.com/doctrine/collections/tree/1.6.8"
  1557. },
  1558. "time": "2021-08-10T18:51:53+00:00"
  1559. },
  1560. {
  1561. "name": "doctrine/common",
  1562. "version": "2.13.3",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/doctrine/common.git",
  1566. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1571. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "doctrine/annotations": "^1.0",
  1576. "doctrine/cache": "^1.0",
  1577. "doctrine/collections": "^1.0",
  1578. "doctrine/event-manager": "^1.0",
  1579. "doctrine/inflector": "^1.0",
  1580. "doctrine/lexer": "^1.0",
  1581. "doctrine/persistence": "^1.3.3",
  1582. "doctrine/reflection": "^1.0",
  1583. "php": "^7.1 || ^8.0"
  1584. },
  1585. "require-dev": {
  1586. "doctrine/coding-standard": "^1.0",
  1587. "phpstan/phpstan": "^0.11",
  1588. "phpstan/phpstan-phpunit": "^0.11",
  1589. "phpunit/phpunit": "^7.0",
  1590. "squizlabs/php_codesniffer": "^3.0",
  1591. "symfony/phpunit-bridge": "^4.0.5"
  1592. },
  1593. "type": "library",
  1594. "extra": {
  1595. "branch-alias": {
  1596. "dev-master": "2.11.x-dev"
  1597. }
  1598. },
  1599. "autoload": {
  1600. "psr-4": {
  1601. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1602. }
  1603. },
  1604. "notification-url": "https://packagist.org/downloads/",
  1605. "license": [
  1606. "MIT"
  1607. ],
  1608. "authors": [
  1609. {
  1610. "name": "Guilherme Blanco",
  1611. "email": "guilhermeblanco@gmail.com"
  1612. },
  1613. {
  1614. "name": "Roman Borschel",
  1615. "email": "roman@code-factory.org"
  1616. },
  1617. {
  1618. "name": "Benjamin Eberlei",
  1619. "email": "kontakt@beberlei.de"
  1620. },
  1621. {
  1622. "name": "Jonathan Wage",
  1623. "email": "jonwage@gmail.com"
  1624. },
  1625. {
  1626. "name": "Johannes Schmitt",
  1627. "email": "schmittjoh@gmail.com"
  1628. },
  1629. {
  1630. "name": "Marco Pivetta",
  1631. "email": "ocramius@gmail.com"
  1632. }
  1633. ],
  1634. "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.",
  1635. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1636. "keywords": [
  1637. "common",
  1638. "doctrine",
  1639. "php"
  1640. ],
  1641. "support": {
  1642. "issues": "https://github.com/doctrine/common/issues",
  1643. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1644. },
  1645. "funding": [
  1646. {
  1647. "url": "https://www.doctrine-project.org/sponsorship.html",
  1648. "type": "custom"
  1649. },
  1650. {
  1651. "url": "https://www.patreon.com/phpdoctrine",
  1652. "type": "patreon"
  1653. },
  1654. {
  1655. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1656. "type": "tidelift"
  1657. }
  1658. ],
  1659. "time": "2020-06-05T16:46:05+00:00"
  1660. },
  1661. {
  1662. "name": "doctrine/event-manager",
  1663. "version": "1.1.1",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/doctrine/event-manager.git",
  1667. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1672. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1673. "shasum": ""
  1674. },
  1675. "require": {
  1676. "php": "^7.1 || ^8.0"
  1677. },
  1678. "conflict": {
  1679. "doctrine/common": "<2.9@dev"
  1680. },
  1681. "require-dev": {
  1682. "doctrine/coding-standard": "^6.0",
  1683. "phpunit/phpunit": "^7.0"
  1684. },
  1685. "type": "library",
  1686. "extra": {
  1687. "branch-alias": {
  1688. "dev-master": "1.0.x-dev"
  1689. }
  1690. },
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Guilherme Blanco",
  1703. "email": "guilhermeblanco@gmail.com"
  1704. },
  1705. {
  1706. "name": "Roman Borschel",
  1707. "email": "roman@code-factory.org"
  1708. },
  1709. {
  1710. "name": "Benjamin Eberlei",
  1711. "email": "kontakt@beberlei.de"
  1712. },
  1713. {
  1714. "name": "Jonathan Wage",
  1715. "email": "jonwage@gmail.com"
  1716. },
  1717. {
  1718. "name": "Johannes Schmitt",
  1719. "email": "schmittjoh@gmail.com"
  1720. },
  1721. {
  1722. "name": "Marco Pivetta",
  1723. "email": "ocramius@gmail.com"
  1724. }
  1725. ],
  1726. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1727. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1728. "keywords": [
  1729. "event",
  1730. "event dispatcher",
  1731. "event manager",
  1732. "event system",
  1733. "events"
  1734. ],
  1735. "support": {
  1736. "issues": "https://github.com/doctrine/event-manager/issues",
  1737. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1738. },
  1739. "funding": [
  1740. {
  1741. "url": "https://www.doctrine-project.org/sponsorship.html",
  1742. "type": "custom"
  1743. },
  1744. {
  1745. "url": "https://www.patreon.com/phpdoctrine",
  1746. "type": "patreon"
  1747. },
  1748. {
  1749. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1750. "type": "tidelift"
  1751. }
  1752. ],
  1753. "time": "2020-05-29T18:28:51+00:00"
  1754. },
  1755. {
  1756. "name": "doctrine/inflector",
  1757. "version": "1.4.4",
  1758. "source": {
  1759. "type": "git",
  1760. "url": "https://github.com/doctrine/inflector.git",
  1761. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  1762. },
  1763. "dist": {
  1764. "type": "zip",
  1765. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1766. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1767. "shasum": ""
  1768. },
  1769. "require": {
  1770. "php": "^7.1 || ^8.0"
  1771. },
  1772. "require-dev": {
  1773. "doctrine/coding-standard": "^8.0",
  1774. "phpstan/phpstan": "^0.12",
  1775. "phpstan/phpstan-phpunit": "^0.12",
  1776. "phpstan/phpstan-strict-rules": "^0.12",
  1777. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1778. },
  1779. "type": "library",
  1780. "extra": {
  1781. "branch-alias": {
  1782. "dev-master": "2.0.x-dev"
  1783. }
  1784. },
  1785. "autoload": {
  1786. "psr-4": {
  1787. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1788. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1789. }
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "MIT"
  1794. ],
  1795. "authors": [
  1796. {
  1797. "name": "Guilherme Blanco",
  1798. "email": "guilhermeblanco@gmail.com"
  1799. },
  1800. {
  1801. "name": "Roman Borschel",
  1802. "email": "roman@code-factory.org"
  1803. },
  1804. {
  1805. "name": "Benjamin Eberlei",
  1806. "email": "kontakt@beberlei.de"
  1807. },
  1808. {
  1809. "name": "Jonathan Wage",
  1810. "email": "jonwage@gmail.com"
  1811. },
  1812. {
  1813. "name": "Johannes Schmitt",
  1814. "email": "schmittjoh@gmail.com"
  1815. }
  1816. ],
  1817. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1818. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1819. "keywords": [
  1820. "inflection",
  1821. "inflector",
  1822. "lowercase",
  1823. "manipulation",
  1824. "php",
  1825. "plural",
  1826. "singular",
  1827. "strings",
  1828. "uppercase",
  1829. "words"
  1830. ],
  1831. "support": {
  1832. "issues": "https://github.com/doctrine/inflector/issues",
  1833. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  1834. },
  1835. "funding": [
  1836. {
  1837. "url": "https://www.doctrine-project.org/sponsorship.html",
  1838. "type": "custom"
  1839. },
  1840. {
  1841. "url": "https://www.patreon.com/phpdoctrine",
  1842. "type": "patreon"
  1843. },
  1844. {
  1845. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1846. "type": "tidelift"
  1847. }
  1848. ],
  1849. "time": "2021-04-16T17:34:40+00:00"
  1850. },
  1851. {
  1852. "name": "doctrine/lexer",
  1853. "version": "1.2.1",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/doctrine/lexer.git",
  1857. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1862. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1863. "shasum": ""
  1864. },
  1865. "require": {
  1866. "php": "^7.2 || ^8.0"
  1867. },
  1868. "require-dev": {
  1869. "doctrine/coding-standard": "^6.0",
  1870. "phpstan/phpstan": "^0.11.8",
  1871. "phpunit/phpunit": "^8.2"
  1872. },
  1873. "type": "library",
  1874. "extra": {
  1875. "branch-alias": {
  1876. "dev-master": "1.2.x-dev"
  1877. }
  1878. },
  1879. "autoload": {
  1880. "psr-4": {
  1881. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1882. }
  1883. },
  1884. "notification-url": "https://packagist.org/downloads/",
  1885. "license": [
  1886. "MIT"
  1887. ],
  1888. "authors": [
  1889. {
  1890. "name": "Guilherme Blanco",
  1891. "email": "guilhermeblanco@gmail.com"
  1892. },
  1893. {
  1894. "name": "Roman Borschel",
  1895. "email": "roman@code-factory.org"
  1896. },
  1897. {
  1898. "name": "Johannes Schmitt",
  1899. "email": "schmittjoh@gmail.com"
  1900. }
  1901. ],
  1902. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1903. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1904. "keywords": [
  1905. "annotations",
  1906. "docblock",
  1907. "lexer",
  1908. "parser",
  1909. "php"
  1910. ],
  1911. "support": {
  1912. "issues": "https://github.com/doctrine/lexer/issues",
  1913. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1914. },
  1915. "funding": [
  1916. {
  1917. "url": "https://www.doctrine-project.org/sponsorship.html",
  1918. "type": "custom"
  1919. },
  1920. {
  1921. "url": "https://www.patreon.com/phpdoctrine",
  1922. "type": "patreon"
  1923. },
  1924. {
  1925. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1926. "type": "tidelift"
  1927. }
  1928. ],
  1929. "time": "2020-05-25T17:44:05+00:00"
  1930. },
  1931. {
  1932. "name": "doctrine/persistence",
  1933. "version": "1.3.8",
  1934. "source": {
  1935. "type": "git",
  1936. "url": "https://github.com/doctrine/persistence.git",
  1937. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1938. },
  1939. "dist": {
  1940. "type": "zip",
  1941. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1942. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1943. "shasum": ""
  1944. },
  1945. "require": {
  1946. "doctrine/annotations": "^1.0",
  1947. "doctrine/cache": "^1.0",
  1948. "doctrine/collections": "^1.0",
  1949. "doctrine/event-manager": "^1.0",
  1950. "doctrine/reflection": "^1.2",
  1951. "php": "^7.1 || ^8.0"
  1952. },
  1953. "conflict": {
  1954. "doctrine/common": "<2.10@dev"
  1955. },
  1956. "require-dev": {
  1957. "doctrine/coding-standard": "^6.0",
  1958. "phpstan/phpstan": "^0.11",
  1959. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1960. "vimeo/psalm": "^3.11"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-master": "1.3.x-dev"
  1966. }
  1967. },
  1968. "autoload": {
  1969. "psr-4": {
  1970. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1971. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1972. }
  1973. },
  1974. "notification-url": "https://packagist.org/downloads/",
  1975. "license": [
  1976. "MIT"
  1977. ],
  1978. "authors": [
  1979. {
  1980. "name": "Guilherme Blanco",
  1981. "email": "guilhermeblanco@gmail.com"
  1982. },
  1983. {
  1984. "name": "Roman Borschel",
  1985. "email": "roman@code-factory.org"
  1986. },
  1987. {
  1988. "name": "Benjamin Eberlei",
  1989. "email": "kontakt@beberlei.de"
  1990. },
  1991. {
  1992. "name": "Jonathan Wage",
  1993. "email": "jonwage@gmail.com"
  1994. },
  1995. {
  1996. "name": "Johannes Schmitt",
  1997. "email": "schmittjoh@gmail.com"
  1998. },
  1999. {
  2000. "name": "Marco Pivetta",
  2001. "email": "ocramius@gmail.com"
  2002. }
  2003. ],
  2004. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  2005. "homepage": "https://doctrine-project.org/projects/persistence.html",
  2006. "keywords": [
  2007. "mapper",
  2008. "object",
  2009. "odm",
  2010. "orm",
  2011. "persistence"
  2012. ],
  2013. "support": {
  2014. "issues": "https://github.com/doctrine/persistence/issues",
  2015. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  2016. },
  2017. "funding": [
  2018. {
  2019. "url": "https://www.doctrine-project.org/sponsorship.html",
  2020. "type": "custom"
  2021. },
  2022. {
  2023. "url": "https://www.patreon.com/phpdoctrine",
  2024. "type": "patreon"
  2025. },
  2026. {
  2027. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2028. "type": "tidelift"
  2029. }
  2030. ],
  2031. "time": "2020-06-20T12:56:16+00:00"
  2032. },
  2033. {
  2034. "name": "doctrine/reflection",
  2035. "version": "1.2.2",
  2036. "source": {
  2037. "type": "git",
  2038. "url": "https://github.com/doctrine/reflection.git",
  2039. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2040. },
  2041. "dist": {
  2042. "type": "zip",
  2043. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2044. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2045. "shasum": ""
  2046. },
  2047. "require": {
  2048. "doctrine/annotations": "^1.0",
  2049. "ext-tokenizer": "*",
  2050. "php": "^7.1 || ^8.0"
  2051. },
  2052. "conflict": {
  2053. "doctrine/common": "<2.9"
  2054. },
  2055. "require-dev": {
  2056. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2057. "doctrine/common": "^2.10",
  2058. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2059. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2060. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2061. },
  2062. "type": "library",
  2063. "extra": {
  2064. "branch-alias": {
  2065. "dev-master": "1.2.x-dev"
  2066. }
  2067. },
  2068. "autoload": {
  2069. "psr-4": {
  2070. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2071. }
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Guilherme Blanco",
  2080. "email": "guilhermeblanco@gmail.com"
  2081. },
  2082. {
  2083. "name": "Roman Borschel",
  2084. "email": "roman@code-factory.org"
  2085. },
  2086. {
  2087. "name": "Benjamin Eberlei",
  2088. "email": "kontakt@beberlei.de"
  2089. },
  2090. {
  2091. "name": "Jonathan Wage",
  2092. "email": "jonwage@gmail.com"
  2093. },
  2094. {
  2095. "name": "Johannes Schmitt",
  2096. "email": "schmittjoh@gmail.com"
  2097. },
  2098. {
  2099. "name": "Marco Pivetta",
  2100. "email": "ocramius@gmail.com"
  2101. }
  2102. ],
  2103. "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.",
  2104. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2105. "keywords": [
  2106. "reflection",
  2107. "static"
  2108. ],
  2109. "support": {
  2110. "issues": "https://github.com/doctrine/reflection/issues",
  2111. "source": "https://github.com/doctrine/reflection/tree/1.2.2"
  2112. },
  2113. "abandoned": "roave/better-reflection",
  2114. "time": "2020-10-27T21:46:55+00:00"
  2115. },
  2116. {
  2117. "name": "drupal/address",
  2118. "version": "1.9.0",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://git.drupalcode.org/project/address.git",
  2122. "reference": "8.x-1.9"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2127. "reference": "8.x-1.9",
  2128. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2129. },
  2130. "require": {
  2131. "commerceguys/addressing": "^1.0.7",
  2132. "drupal/core": "^8.8 || ^9"
  2133. },
  2134. "require-dev": {
  2135. "drupal/token": "^1.0"
  2136. },
  2137. "type": "drupal-module",
  2138. "extra": {
  2139. "drupal": {
  2140. "version": "8.x-1.9",
  2141. "datestamp": "1604422821",
  2142. "security-coverage": {
  2143. "status": "covered",
  2144. "message": "Covered by Drupal's security advisory policy"
  2145. }
  2146. }
  2147. },
  2148. "notification-url": "https://packages.drupal.org/8/downloads",
  2149. "license": [
  2150. "GPL-2.0-or-later"
  2151. ],
  2152. "authors": [
  2153. {
  2154. "name": "bojanz",
  2155. "homepage": "https://www.drupal.org/user/86106"
  2156. },
  2157. {
  2158. "name": "dww",
  2159. "homepage": "https://www.drupal.org/user/46549"
  2160. },
  2161. {
  2162. "name": "googletorp",
  2163. "homepage": "https://www.drupal.org/user/386230"
  2164. },
  2165. {
  2166. "name": "jsacksick",
  2167. "homepage": "https://www.drupal.org/user/972218"
  2168. },
  2169. {
  2170. "name": "mglaman",
  2171. "homepage": "https://www.drupal.org/user/2416470"
  2172. },
  2173. {
  2174. "name": "rszrama",
  2175. "homepage": "https://www.drupal.org/user/49344"
  2176. }
  2177. ],
  2178. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2179. "homepage": "http://drupal.org/project/address",
  2180. "support": {
  2181. "source": "https://git.drupalcode.org/project/address"
  2182. }
  2183. },
  2184. {
  2185. "name": "drupal/admin_toolbar",
  2186. "version": "3.0.3",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2190. "reference": "3.0.3"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.0.3.zip",
  2195. "reference": "3.0.3",
  2196. "shasum": "ce735c931c0bd6da79bd8e45ca459d61015bbe44"
  2197. },
  2198. "require": {
  2199. "drupal/core": "^8.8.0 || ^9.0"
  2200. },
  2201. "require-dev": {
  2202. "drupal/admin_toolbar_tools": "*"
  2203. },
  2204. "type": "drupal-module",
  2205. "extra": {
  2206. "drupal": {
  2207. "version": "3.0.3",
  2208. "datestamp": "1632322497",
  2209. "security-coverage": {
  2210. "status": "covered",
  2211. "message": "Covered by Drupal's security advisory policy"
  2212. }
  2213. }
  2214. },
  2215. "notification-url": "https://packages.drupal.org/8/downloads",
  2216. "license": [
  2217. "GPL-2.0-or-later"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "Wilfrid Roze (eme)",
  2222. "homepage": "https://www.drupal.org/u/eme",
  2223. "role": "Maintainer"
  2224. },
  2225. {
  2226. "name": "Romain Jarraud (romainj)",
  2227. "homepage": "https://www.drupal.org/u/romainj",
  2228. "role": "Maintainer"
  2229. },
  2230. {
  2231. "name": "Adrian Cid Almaguer (adriancid)",
  2232. "homepage": "https://www.drupal.org/u/adriancid",
  2233. "email": "adriancid@gmail.com",
  2234. "role": "Maintainer"
  2235. },
  2236. {
  2237. "name": "Mohamed Anis Taktak (matio89)",
  2238. "homepage": "https://www.drupal.org/u/matio89",
  2239. "role": "Maintainer"
  2240. },
  2241. {
  2242. "name": "fethi.krout",
  2243. "homepage": "https://www.drupal.org/user/3206765"
  2244. },
  2245. {
  2246. "name": "matio89",
  2247. "homepage": "https://www.drupal.org/user/2320090"
  2248. },
  2249. {
  2250. "name": "romainj",
  2251. "homepage": "https://www.drupal.org/user/370706"
  2252. }
  2253. ],
  2254. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2255. "homepage": "http://drupal.org/project/admin_toolbar",
  2256. "keywords": [
  2257. "Drupal",
  2258. "Toolbar"
  2259. ],
  2260. "support": {
  2261. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2262. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2263. }
  2264. },
  2265. {
  2266. "name": "drupal/adminimal_theme",
  2267. "version": "1.6.0",
  2268. "source": {
  2269. "type": "git",
  2270. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2271. "reference": "8.x-1.6"
  2272. },
  2273. "dist": {
  2274. "type": "zip",
  2275. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2276. "reference": "8.x-1.6",
  2277. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2278. },
  2279. "require": {
  2280. "drupal/core": "^8.8 || ^9"
  2281. },
  2282. "type": "drupal-theme",
  2283. "extra": {
  2284. "drupal": {
  2285. "version": "8.x-1.6",
  2286. "datestamp": "1602006937",
  2287. "security-coverage": {
  2288. "status": "covered",
  2289. "message": "Covered by Drupal's security advisory policy"
  2290. }
  2291. }
  2292. },
  2293. "notification-url": "https://packages.drupal.org/8/downloads",
  2294. "license": [
  2295. "GPL-2.0+"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "ANDiTKO",
  2300. "homepage": "https://www.drupal.org/user/1428124"
  2301. },
  2302. {
  2303. "name": "andrey.troeglazov",
  2304. "homepage": "https://www.drupal.org/user/3145389"
  2305. },
  2306. {
  2307. "name": "realityloop",
  2308. "homepage": "https://www.drupal.org/user/139189"
  2309. }
  2310. ],
  2311. "description": "Drupal administration theme with modern minimalist design.",
  2312. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2313. "support": {
  2314. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2315. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2316. }
  2317. },
  2318. {
  2319. "name": "drupal/administerusersbyrole",
  2320. "version": "3.0.0",
  2321. "source": {
  2322. "type": "git",
  2323. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  2324. "reference": "8.x-3.0"
  2325. },
  2326. "dist": {
  2327. "type": "zip",
  2328. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.0.zip",
  2329. "reference": "8.x-3.0",
  2330. "shasum": "decf16981abe616f675812c040db2b52332f0a66"
  2331. },
  2332. "require": {
  2333. "drupal/core": "^8 || ^9"
  2334. },
  2335. "type": "drupal-module",
  2336. "extra": {
  2337. "drupal": {
  2338. "version": "8.x-3.0",
  2339. "datestamp": "1586962918",
  2340. "security-coverage": {
  2341. "status": "covered",
  2342. "message": "Covered by Drupal's security advisory policy"
  2343. }
  2344. }
  2345. },
  2346. "notification-url": "https://packages.drupal.org/8/downloads",
  2347. "license": [
  2348. "GPL-2.0-or-later"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "AdamPS",
  2353. "homepage": "https://www.drupal.org/user/2650563"
  2354. },
  2355. {
  2356. "name": "mrfelton",
  2357. "homepage": "https://www.drupal.org/user/305669"
  2358. },
  2359. {
  2360. "name": "smokris",
  2361. "homepage": "https://www.drupal.org/user/161913"
  2362. }
  2363. ],
  2364. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  2365. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  2366. "support": {
  2367. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  2368. }
  2369. },
  2370. {
  2371. "name": "drupal/advanced_text_formatter",
  2372. "version": "2.1.1",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2376. "reference": "2.1.1"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.1.1.zip",
  2381. "reference": "2.1.1",
  2382. "shasum": "c656349ce20bf6ca1f561b18bd223a993700bc6f"
  2383. },
  2384. "require": {
  2385. "drupal/core": "^8 || ^9"
  2386. },
  2387. "type": "drupal-module",
  2388. "extra": {
  2389. "drupal": {
  2390. "version": "2.1.1",
  2391. "datestamp": "1631794804",
  2392. "security-coverage": {
  2393. "status": "covered",
  2394. "message": "Covered by Drupal's security advisory policy"
  2395. }
  2396. }
  2397. },
  2398. "notification-url": "https://packages.drupal.org/8/downloads",
  2399. "license": [
  2400. "GPL-2.0-or-later"
  2401. ],
  2402. "authors": [
  2403. {
  2404. "name": "azovsky",
  2405. "homepage": "https://www.drupal.org/user/330533"
  2406. },
  2407. {
  2408. "name": "thmnhat",
  2409. "homepage": "https://www.drupal.org/user/998946"
  2410. }
  2411. ],
  2412. "description": "Provides an additional formatter for text field, text area and text format.",
  2413. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2414. "support": {
  2415. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2416. }
  2417. },
  2418. {
  2419. "name": "drupal/audiofield",
  2420. "version": "1.11.0",
  2421. "source": {
  2422. "type": "git",
  2423. "url": "https://git.drupalcode.org/project/audiofield.git",
  2424. "reference": "8.x-1.11"
  2425. },
  2426. "dist": {
  2427. "type": "zip",
  2428. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.11.zip",
  2429. "reference": "8.x-1.11",
  2430. "shasum": "b677d0b178f16baffec8b52bb0c05a06384daf67"
  2431. },
  2432. "require": {
  2433. "drupal/core": "^8 || ^9"
  2434. },
  2435. "type": "drupal-module",
  2436. "extra": {
  2437. "drupal": {
  2438. "version": "8.x-1.11",
  2439. "datestamp": "1630089337",
  2440. "security-coverage": {
  2441. "status": "covered",
  2442. "message": "Covered by Drupal's security advisory policy"
  2443. }
  2444. },
  2445. "drush": {
  2446. "services": {
  2447. "drush.services.yml": "^9"
  2448. }
  2449. }
  2450. },
  2451. "notification-url": "https://packages.drupal.org/8/downloads",
  2452. "license": [
  2453. "GPL-2.0-or-later"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Daniel Moberly",
  2458. "homepage": "https://www.drupal.org/u/danielmoberly",
  2459. "role": "Maintainer"
  2460. },
  2461. {
  2462. "name": "josipsaric",
  2463. "homepage": "https://www.drupal.org/user/3063287"
  2464. },
  2465. {
  2466. "name": "tamerzg",
  2467. "homepage": "https://www.drupal.org/user/464564"
  2468. }
  2469. ],
  2470. "description": "AudioField Module",
  2471. "homepage": "https://www.drupal.org/project/audiofield",
  2472. "support": {
  2473. "source": "https://git.drupalcode.org/project/audiofield",
  2474. "issues": "https://www.drupal.org/project/issues/audiofield"
  2475. }
  2476. },
  2477. {
  2478. "name": "drupal/autocomplete_deluxe",
  2479. "version": "2.0.1",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2483. "reference": "2.0.1"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.1.zip",
  2488. "reference": "2.0.1",
  2489. "shasum": "244d3a1992da6ec126220bab22a933f9f6780d78"
  2490. },
  2491. "require": {
  2492. "drupal/core": "^8 || ^9"
  2493. },
  2494. "type": "drupal-module",
  2495. "extra": {
  2496. "drupal": {
  2497. "version": "2.0.1",
  2498. "datestamp": "1630177423",
  2499. "security-coverage": {
  2500. "status": "covered",
  2501. "message": "Covered by Drupal's security advisory policy"
  2502. }
  2503. }
  2504. },
  2505. "notification-url": "https://packages.drupal.org/8/downloads",
  2506. "license": [
  2507. "GPL-2.0-or-later"
  2508. ],
  2509. "authors": [
  2510. {
  2511. "name": "Vardot",
  2512. "homepage": "https://www.drupal.org/vardot",
  2513. "role": "Maintenance for D8 and D9 versions"
  2514. },
  2515. {
  2516. "name": "Mediacurrent",
  2517. "homepage": "https://www.drupal.org/mediacurrent",
  2518. "role": "Supporting organization"
  2519. },
  2520. {
  2521. "name": "edwardchiapet",
  2522. "homepage": "https://www.drupal.org/user/2354784"
  2523. },
  2524. {
  2525. "name": "mpriscella",
  2526. "homepage": "https://www.drupal.org/user/2354820"
  2527. },
  2528. {
  2529. "name": "sepgil",
  2530. "homepage": "https://www.drupal.org/user/512828"
  2531. }
  2532. ],
  2533. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2534. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2535. "support": {
  2536. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2537. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2538. }
  2539. },
  2540. {
  2541. "name": "drupal/autologout",
  2542. "version": "1.3.0",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://git.drupalcode.org/project/autologout.git",
  2546. "reference": "8.x-1.3"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2551. "reference": "8.x-1.3",
  2552. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2553. },
  2554. "require": {
  2555. "drupal/core": "^8 || ^9"
  2556. },
  2557. "type": "drupal-module",
  2558. "extra": {
  2559. "drupal": {
  2560. "version": "8.x-1.3",
  2561. "datestamp": "1587193798",
  2562. "security-coverage": {
  2563. "status": "covered",
  2564. "message": "Covered by Drupal's security advisory policy"
  2565. }
  2566. }
  2567. },
  2568. "notification-url": "https://packages.drupal.org/8/downloads",
  2569. "license": [
  2570. "GPL-2.0+"
  2571. ],
  2572. "authors": [
  2573. {
  2574. "name": "AjK",
  2575. "homepage": "https://www.drupal.org/user/39030"
  2576. },
  2577. {
  2578. "name": "AjitS",
  2579. "homepage": "https://www.drupal.org/user/981944"
  2580. },
  2581. {
  2582. "name": "boshtian",
  2583. "homepage": "https://www.drupal.org/user/1773456"
  2584. },
  2585. {
  2586. "name": "dandrews",
  2587. "homepage": "https://www.drupal.org/user/2014490"
  2588. },
  2589. {
  2590. "name": "darksnow",
  2591. "homepage": "https://www.drupal.org/user/391915"
  2592. },
  2593. {
  2594. "name": "johnennew",
  2595. "homepage": "https://www.drupal.org/user/1150042"
  2596. },
  2597. {
  2598. "name": "jrglasgow",
  2599. "homepage": "https://www.drupal.org/user/36590"
  2600. },
  2601. {
  2602. "name": "kmasood",
  2603. "homepage": "https://www.drupal.org/user/1262860"
  2604. },
  2605. {
  2606. "name": "levelos",
  2607. "homepage": "https://www.drupal.org/user/54135"
  2608. },
  2609. {
  2610. "name": "prabeen.giri",
  2611. "homepage": "https://www.drupal.org/user/913078"
  2612. },
  2613. {
  2614. "name": "str8",
  2615. "homepage": "https://www.drupal.org/user/2865063"
  2616. }
  2617. ],
  2618. "description": "Adds automated timed logout.",
  2619. "homepage": "http://drupal.org/project/autologout",
  2620. "support": {
  2621. "source": "https://git.drupalcode.org/project/autologout"
  2622. }
  2623. },
  2624. {
  2625. "name": "drupal/better_exposed_filters",
  2626. "version": "5.0.0",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2630. "reference": "8.x-5.0"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0.zip",
  2635. "reference": "8.x-5.0",
  2636. "shasum": "ef575591af202b5c6867841ce58e1f447455e502"
  2637. },
  2638. "require": {
  2639. "drupal/core": "^8.8 || ^9",
  2640. "drupal/jquery_ui": "^1.4",
  2641. "drupal/jquery_ui_datepicker": "^1.0",
  2642. "drupal/jquery_ui_slider": "^1.1",
  2643. "drupal/jquery_ui_touch_punch": "^1.0"
  2644. },
  2645. "type": "drupal-module",
  2646. "extra": {
  2647. "drupal": {
  2648. "version": "8.x-5.0",
  2649. "datestamp": "1634748760",
  2650. "security-coverage": {
  2651. "status": "covered",
  2652. "message": "Covered by Drupal's security advisory policy"
  2653. }
  2654. }
  2655. },
  2656. "notification-url": "https://packages.drupal.org/8/downloads",
  2657. "license": [
  2658. "GPL-2.0-or-later"
  2659. ],
  2660. "authors": [
  2661. {
  2662. "name": "Mike Keran",
  2663. "homepage": "https://www.drupal.org/u/mikeker"
  2664. },
  2665. {
  2666. "name": "Martin Keereman",
  2667. "homepage": "https://www.drupal.org/u/etroid"
  2668. },
  2669. {
  2670. "name": "Neslee Canil Pinto",
  2671. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2672. },
  2673. {
  2674. "name": "jkopel",
  2675. "homepage": "https://www.drupal.org/user/66207"
  2676. },
  2677. {
  2678. "name": "mikeker",
  2679. "homepage": "https://www.drupal.org/user/192273"
  2680. },
  2681. {
  2682. "name": "rlhawk",
  2683. "homepage": "https://www.drupal.org/user/352283"
  2684. }
  2685. ],
  2686. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2687. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2688. "support": {
  2689. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2690. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2691. }
  2692. },
  2693. {
  2694. "name": "drupal/betterlogin",
  2695. "version": "1.6.0",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2699. "reference": "8.x-1.6"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.6.zip",
  2704. "reference": "8.x-1.6",
  2705. "shasum": "999e31056c47523c3491dc9c35e04088fc94fc50"
  2706. },
  2707. "require": {
  2708. "drupal/core": "^8 || ^9"
  2709. },
  2710. "type": "drupal-module",
  2711. "extra": {
  2712. "drupal": {
  2713. "version": "8.x-1.6",
  2714. "datestamp": "1631893210",
  2715. "security-coverage": {
  2716. "status": "covered",
  2717. "message": "Covered by Drupal's security advisory policy"
  2718. }
  2719. }
  2720. },
  2721. "notification-url": "https://packages.drupal.org/8/downloads",
  2722. "license": [
  2723. "GPL-2.0-or-later"
  2724. ],
  2725. "authors": [
  2726. {
  2727. "name": "theamoeba",
  2728. "homepage": "https://www.drupal.org/user/251700"
  2729. },
  2730. {
  2731. "name": "yogeshmpawar",
  2732. "homepage": "https://www.drupal.org/user/2922907"
  2733. }
  2734. ],
  2735. "description": "Make the login screens better :)",
  2736. "homepage": "https://www.drupal.org/project/betterlogin",
  2737. "support": {
  2738. "source": "https://git.drupalcode.org/project/betterlogin"
  2739. }
  2740. },
  2741. {
  2742. "name": "drupal/block_class",
  2743. "version": "1.3.0",
  2744. "source": {
  2745. "type": "git",
  2746. "url": "https://git.drupalcode.org/project/block_class.git",
  2747. "reference": "8.x-1.3"
  2748. },
  2749. "dist": {
  2750. "type": "zip",
  2751. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2752. "reference": "8.x-1.3",
  2753. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2754. },
  2755. "require": {
  2756. "drupal/core": "^8 || ^9"
  2757. },
  2758. "type": "drupal-module",
  2759. "extra": {
  2760. "drupal": {
  2761. "version": "8.x-1.3",
  2762. "datestamp": "1615217722",
  2763. "security-coverage": {
  2764. "status": "covered",
  2765. "message": "Covered by Drupal's security advisory policy"
  2766. }
  2767. }
  2768. },
  2769. "notification-url": "https://packages.drupal.org/8/downloads",
  2770. "license": [
  2771. "GPL-2.0-or-later"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Todd Nienkerk",
  2776. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2777. "role": "Maintainer"
  2778. },
  2779. {
  2780. "name": "Renato Gonçalves (RenatoG)",
  2781. "homepage": "https://www.drupal.org/u/RenatoG",
  2782. "email": "renatog@ciandt.com",
  2783. "role": "Maintainer"
  2784. },
  2785. {
  2786. "name": "Neslee Canil Pinto",
  2787. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2788. "role": "Maintainer"
  2789. },
  2790. {
  2791. "name": "Aaron Stanush",
  2792. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2793. "role": "Maintainer"
  2794. },
  2795. {
  2796. "name": "David Suissa (DYdave)",
  2797. "homepage": "https://www.drupal.org/u/DYdave",
  2798. "role": "Maintainer"
  2799. },
  2800. {
  2801. "name": "Four Kitchens",
  2802. "homepage": "https://www.drupal.org/user/358502",
  2803. "role": "Maintainer"
  2804. },
  2805. {
  2806. "name": "berenddeboer",
  2807. "homepage": "https://www.drupal.org/u/berenddeboer",
  2808. "role": "Maintainer"
  2809. },
  2810. {
  2811. "name": "elliotttf",
  2812. "homepage": "https://www.drupal.org/u/elliotttf",
  2813. "role": "Maintainer"
  2814. },
  2815. {
  2816. "name": "Michal Minecki (mirzu)",
  2817. "homepage": "https://www.drupal.org/u/mirzu",
  2818. "role": "Maintainer"
  2819. },
  2820. {
  2821. "name": "Patrick Coffey (pcoffey)",
  2822. "homepage": "https://www.drupal.org/u/pcoffey",
  2823. "role": "Maintainer"
  2824. },
  2825. {
  2826. "name": "Taylor Smith (tsmith512)",
  2827. "homepage": "https://www.drupal.org/u/tsmith512",
  2828. "role": "Maintainer"
  2829. }
  2830. ],
  2831. "description": "Allows assigning classes to Blocks.",
  2832. "homepage": "https://www.drupal.org/project/block_class",
  2833. "keywords": [
  2834. "Drupal"
  2835. ],
  2836. "support": {
  2837. "source": "https://git.drupalcode.org/project/block_class",
  2838. "issues": "https://www.drupal.org/project/issues/block_class",
  2839. "irc": "irc://irc.freenode.org/drupal-contribute"
  2840. }
  2841. },
  2842. {
  2843. "name": "drupal/bulkdelete",
  2844. "version": "dev-1.x",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2848. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2849. },
  2850. "require": {
  2851. "drupal/core": "^8.7.7 || ^9"
  2852. },
  2853. "type": "drupal-module",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-1.x": "1.x-dev"
  2857. },
  2858. "drupal": {
  2859. "version": "8.x-1.x-dev",
  2860. "datestamp": "1590300128",
  2861. "security-coverage": {
  2862. "status": "not-covered",
  2863. "message": "Dev releases are not covered by Drupal security advisories."
  2864. }
  2865. }
  2866. },
  2867. "notification-url": "https://packages.drupal.org/8/downloads",
  2868. "license": [
  2869. "GPL-2.0-or-later"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "Kars-T",
  2874. "homepage": "https://www.drupal.org/user/224499"
  2875. },
  2876. {
  2877. "name": "Rahul Seth",
  2878. "homepage": "https://www.drupal.org/user/2694359"
  2879. },
  2880. {
  2881. "name": "adriancid",
  2882. "homepage": "https://www.drupal.org/user/1962106"
  2883. },
  2884. {
  2885. "name": "robertDouglass",
  2886. "homepage": "https://www.drupal.org/user/5449"
  2887. }
  2888. ],
  2889. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2890. "homepage": "https://www.drupal.org/project/bulkdelete",
  2891. "support": {
  2892. "source": "https://git.drupalcode.org/project/bulkdelete"
  2893. }
  2894. },
  2895. {
  2896. "name": "drupal/config_devel",
  2897. "version": "dev-1.x",
  2898. "source": {
  2899. "type": "git",
  2900. "url": "https://git.drupalcode.org/project/config_devel.git",
  2901. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  2902. },
  2903. "require": {
  2904. "drupal/core": "^8 || ^9"
  2905. },
  2906. "type": "drupal-module",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-1.x": "1.x-dev"
  2910. },
  2911. "drupal": {
  2912. "version": "8.x-1.7+4-dev",
  2913. "datestamp": "1607768995",
  2914. "security-coverage": {
  2915. "status": "not-covered",
  2916. "message": "Dev releases are not covered by Drupal security advisories."
  2917. }
  2918. }
  2919. },
  2920. "notification-url": "https://packages.drupal.org/8/downloads",
  2921. "license": [
  2922. "GPL-2.0+"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "alexpott",
  2927. "homepage": "https://www.drupal.org/user/157725"
  2928. },
  2929. {
  2930. "name": "benjy",
  2931. "homepage": "https://www.drupal.org/user/1852732"
  2932. },
  2933. {
  2934. "name": "chx",
  2935. "homepage": "https://www.drupal.org/user/9446"
  2936. },
  2937. {
  2938. "name": "joachim",
  2939. "homepage": "https://www.drupal.org/user/107701"
  2940. },
  2941. {
  2942. "name": "nedjo",
  2943. "homepage": "https://www.drupal.org/user/4481"
  2944. },
  2945. {
  2946. "name": "tim.plunkett",
  2947. "homepage": "https://www.drupal.org/user/241634"
  2948. },
  2949. {
  2950. "name": "vijaycs85",
  2951. "homepage": "https://www.drupal.org/user/93488"
  2952. }
  2953. ],
  2954. "description": "Helps developers work with configuration.",
  2955. "homepage": "https://www.drupal.org/project/config_devel",
  2956. "support": {
  2957. "source": "https://git.drupalcode.org/project/config_devel"
  2958. }
  2959. },
  2960. {
  2961. "name": "drupal/config_filter",
  2962. "version": "1.8.0",
  2963. "source": {
  2964. "type": "git",
  2965. "url": "https://git.drupalcode.org/project/config_filter.git",
  2966. "reference": "8.x-1.8"
  2967. },
  2968. "dist": {
  2969. "type": "zip",
  2970. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  2971. "reference": "8.x-1.8",
  2972. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  2973. },
  2974. "require": {
  2975. "drupal/core": "^8 || ^9"
  2976. },
  2977. "suggest": {
  2978. "drupal/config_split": "Split site configuration for different environments."
  2979. },
  2980. "type": "drupal-module",
  2981. "extra": {
  2982. "drupal": {
  2983. "version": "8.x-1.8",
  2984. "datestamp": "1603870062",
  2985. "security-coverage": {
  2986. "status": "covered",
  2987. "message": "Covered by Drupal's security advisory policy"
  2988. }
  2989. }
  2990. },
  2991. "notification-url": "https://packages.drupal.org/8/downloads",
  2992. "license": [
  2993. "GPL-2.0-or-later"
  2994. ],
  2995. "authors": [
  2996. {
  2997. "name": "Fabian Bircher",
  2998. "homepage": "https://www.drupal.org/u/bircher",
  2999. "email": "opensource@fabianbircher.com",
  3000. "role": "Maintainer"
  3001. },
  3002. {
  3003. "name": "Nuvole Web",
  3004. "homepage": "http://nuvole.org",
  3005. "email": "info@nuvole.org",
  3006. "role": "Maintainer"
  3007. },
  3008. {
  3009. "name": "pescetti",
  3010. "homepage": "https://www.drupal.org/user/436244"
  3011. }
  3012. ],
  3013. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3014. "homepage": "https://www.drupal.org/project/config_filter",
  3015. "keywords": [
  3016. "Drupal",
  3017. "configuration",
  3018. "configuration management"
  3019. ],
  3020. "support": {
  3021. "source": "https://git.drupalcode.org/project/config_filter",
  3022. "issues": "https://www.drupal.org/project/issues/config_filter",
  3023. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3024. }
  3025. },
  3026. {
  3027. "name": "drupal/config_ignore",
  3028. "version": "2.3.0",
  3029. "source": {
  3030. "type": "git",
  3031. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3032. "reference": "8.x-2.3"
  3033. },
  3034. "dist": {
  3035. "type": "zip",
  3036. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  3037. "reference": "8.x-2.3",
  3038. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  3039. },
  3040. "require": {
  3041. "drupal/config_filter": "^1 || ^2",
  3042. "drupal/core": "^8 || ^9"
  3043. },
  3044. "type": "drupal-module",
  3045. "extra": {
  3046. "drupal": {
  3047. "version": "8.x-2.3",
  3048. "datestamp": "1608306489",
  3049. "security-coverage": {
  3050. "status": "covered",
  3051. "message": "Covered by Drupal's security advisory policy"
  3052. }
  3053. }
  3054. },
  3055. "notification-url": "https://packages.drupal.org/8/downloads",
  3056. "license": [
  3057. "GPL-2.0-or-later"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "Tommy Lynge Jørgensen",
  3062. "homepage": "https://www.drupal.org/u/tlyngej",
  3063. "email": "tlyngej@gmail.com",
  3064. "role": "Maintainer"
  3065. },
  3066. {
  3067. "name": "Fabian Bircher",
  3068. "homepage": "https://www.drupal.org/u/bircher",
  3069. "role": "Maintainer"
  3070. },
  3071. {
  3072. "name": "tlyngej",
  3073. "homepage": "https://www.drupal.org/user/413139"
  3074. }
  3075. ],
  3076. "description": "Ignore certain configuration during import.",
  3077. "homepage": "http://drupal.org/project/config_ignore",
  3078. "support": {
  3079. "source": "https://git.drupalcode.org/project/config_ignore",
  3080. "issues": "http://drupal.org/project/config_ignore",
  3081. "irc": "irc://irc.freenode.org/drupal-contribute"
  3082. }
  3083. },
  3084. {
  3085. "name": "drupal/config_pages",
  3086. "version": "dev-2.x",
  3087. "source": {
  3088. "type": "git",
  3089. "url": "https://git.drupalcode.org/project/config_pages.git",
  3090. "reference": "ba53fd5b7536040f92d0958b7ce643e6cca67d45"
  3091. },
  3092. "require": {
  3093. "drupal/core": "^8.5 | ^9"
  3094. },
  3095. "type": "drupal-module",
  3096. "extra": {
  3097. "branch-alias": {
  3098. "dev-2.x": "2.x-dev"
  3099. },
  3100. "drupal": {
  3101. "version": "8.x-2.9+11-dev",
  3102. "datestamp": "1634847768",
  3103. "security-coverage": {
  3104. "status": "not-covered",
  3105. "message": "Dev releases are not covered by Drupal security advisories."
  3106. }
  3107. },
  3108. "drush": {
  3109. "services": {
  3110. "drush.services.yml": "^9"
  3111. }
  3112. }
  3113. },
  3114. "notification-url": "https://packages.drupal.org/8/downloads",
  3115. "license": [
  3116. "GPL-2.0-or-later"
  3117. ],
  3118. "authors": [
  3119. {
  3120. "name": "Qwaygon",
  3121. "homepage": "https://www.drupal.org/user/636624"
  3122. },
  3123. {
  3124. "name": "claymor",
  3125. "homepage": "https://www.drupal.org/user/3193903"
  3126. },
  3127. {
  3128. "name": "shumer",
  3129. "homepage": "https://www.drupal.org/user/2297432"
  3130. }
  3131. ],
  3132. "description": "ConfigPages module",
  3133. "homepage": "http://drupal.org/project/config_pages",
  3134. "keywords": [
  3135. "Drupal"
  3136. ],
  3137. "support": {
  3138. "source": "http://cgit.drupalcode.org/config_pages",
  3139. "issues": "http://drupal.org/project/issues/config_pages"
  3140. }
  3141. },
  3142. {
  3143. "name": "drupal/config_update",
  3144. "version": "1.7.0",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://git.drupalcode.org/project/config_update.git",
  3148. "reference": "8.x-1.7"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3153. "reference": "8.x-1.7",
  3154. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3155. },
  3156. "require": {
  3157. "drupal/core": "^8 || ^9"
  3158. },
  3159. "type": "drupal-module",
  3160. "extra": {
  3161. "drupal": {
  3162. "version": "8.x-1.7",
  3163. "datestamp": "1586355587",
  3164. "security-coverage": {
  3165. "status": "covered",
  3166. "message": "Covered by Drupal's security advisory policy"
  3167. }
  3168. }
  3169. },
  3170. "notification-url": "https://packages.drupal.org/8/downloads",
  3171. "license": [
  3172. "GPL-2.0-or-later"
  3173. ],
  3174. "authors": [
  3175. {
  3176. "name": "jhodgdon",
  3177. "homepage": "https://www.drupal.org/user/155601"
  3178. },
  3179. {
  3180. "name": "nedjo",
  3181. "homepage": "https://www.drupal.org/user/4481"
  3182. }
  3183. ],
  3184. "description": "Provides basic revert and update functionality for other modules",
  3185. "homepage": "https://www.drupal.org/project/config_update",
  3186. "support": {
  3187. "source": "https://git.drupalcode.org/project/config_update"
  3188. }
  3189. },
  3190. {
  3191. "name": "drupal/console",
  3192. "version": "1.9.7",
  3193. "source": {
  3194. "type": "git",
  3195. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3196. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3197. },
  3198. "dist": {
  3199. "type": "zip",
  3200. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3201. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3202. "shasum": ""
  3203. },
  3204. "require": {
  3205. "alchemy/zippy": "~0.4",
  3206. "composer/installers": "~1.0",
  3207. "doctrine/annotations": "^1.2",
  3208. "doctrine/collections": "^1.3",
  3209. "drupal/console-core": "1.9.7",
  3210. "drupal/console-extend-plugin": "~0.9.5",
  3211. "php": ">=7.0.8",
  3212. "psy/psysh": "0.6.* || ~0.8",
  3213. "symfony/css-selector": "~3.0|~4.0",
  3214. "symfony/dom-crawler": "~3.0|~4.0",
  3215. "symfony/http-foundation": "~3.0|~4.0"
  3216. },
  3217. "suggest": {
  3218. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3219. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3220. },
  3221. "bin": [
  3222. "bin/drupal"
  3223. ],
  3224. "type": "library",
  3225. "autoload": {
  3226. "psr-4": {
  3227. "Drupal\\Console\\": "src"
  3228. }
  3229. },
  3230. "notification-url": "https://packagist.org/downloads/",
  3231. "license": [
  3232. "GPL-2.0-or-later"
  3233. ],
  3234. "authors": [
  3235. {
  3236. "name": "David Flores",
  3237. "email": "dmousex@gmail.com",
  3238. "homepage": "http://dmouse.net"
  3239. },
  3240. {
  3241. "name": "Jesus Manuel Olivas",
  3242. "email": "jesus.olivas@gmail.com",
  3243. "homepage": "http://jmolivas.com"
  3244. },
  3245. {
  3246. "name": "Eduardo Garcia",
  3247. "email": "enzo@enzolutions.com",
  3248. "homepage": "http://enzolutions.com/"
  3249. },
  3250. {
  3251. "name": "Omar Aguirre",
  3252. "email": "omersguchigu@gmail.com"
  3253. },
  3254. {
  3255. "name": "Drupal Console Contributors",
  3256. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3257. }
  3258. ],
  3259. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3260. "homepage": "http://drupalconsole.com/",
  3261. "keywords": [
  3262. "console",
  3263. "development",
  3264. "drupal",
  3265. "symfony"
  3266. ],
  3267. "support": {
  3268. "docs": "https://docs.drupalconsole.com/",
  3269. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3270. "issues": "https://github.com/hechoendrupal/drupal-console/issues",
  3271. "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.7"
  3272. },
  3273. "funding": [
  3274. {
  3275. "url": "https://opencollective.com/drupalconsole",
  3276. "type": "open_collective"
  3277. }
  3278. ],
  3279. "time": "2020-11-30T02:09:53+00:00"
  3280. },
  3281. {
  3282. "name": "drupal/console-core",
  3283. "version": "1.9.7",
  3284. "source": {
  3285. "type": "git",
  3286. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3287. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3288. },
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3292. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "dflydev/dot-access-configuration": "^1.0",
  3297. "drupal/console-en": "1.9.7",
  3298. "guzzlehttp/guzzle": "~6.1",
  3299. "php": ">=7.0.8",
  3300. "stecman/symfony-console-completion": "~0.7",
  3301. "symfony/config": "~3.0|^4.4",
  3302. "symfony/console": "~3.0|^4.4",
  3303. "symfony/debug": "~3.0|^4.4",
  3304. "symfony/dependency-injection": "~3.0|^4.4",
  3305. "symfony/event-dispatcher": "~3.0|^4.4",
  3306. "symfony/filesystem": "~3.0|^4.4",
  3307. "symfony/finder": "~3.0|^4.4",
  3308. "symfony/process": "~3.0|^4.4",
  3309. "symfony/translation": "~3.0|^4.4",
  3310. "symfony/yaml": "~3.0|^4.4",
  3311. "twig/twig": "^1.38.2|^2.12.0",
  3312. "webflo/drupal-finder": "^1.0",
  3313. "webmozart/path-util": "^2.3"
  3314. },
  3315. "type": "library",
  3316. "autoload": {
  3317. "files": [
  3318. "src/functions.php"
  3319. ],
  3320. "psr-4": {
  3321. "Drupal\\Console\\Core\\": "src"
  3322. }
  3323. },
  3324. "notification-url": "https://packagist.org/downloads/",
  3325. "license": [
  3326. "GPL-2.0-or-later"
  3327. ],
  3328. "authors": [
  3329. {
  3330. "name": "David Flores",
  3331. "email": "dmousex@gmail.com",
  3332. "homepage": "http://dmouse.net"
  3333. },
  3334. {
  3335. "name": "Jesus Manuel Olivas",
  3336. "email": "jesus.olivas@gmail.com",
  3337. "homepage": "http://jmolivas.com"
  3338. },
  3339. {
  3340. "name": "Eduardo Garcia",
  3341. "email": "enzo@enzolutions.com",
  3342. "homepage": "http://enzolutions.com/"
  3343. },
  3344. {
  3345. "name": "Omar Aguirre",
  3346. "email": "omersguchigu@gmail.com"
  3347. },
  3348. {
  3349. "name": "Drupal Console Contributors",
  3350. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3351. }
  3352. ],
  3353. "description": "Drupal Console Core",
  3354. "homepage": "http://drupalconsole.com/",
  3355. "keywords": [
  3356. "console",
  3357. "development",
  3358. "drupal",
  3359. "symfony"
  3360. ],
  3361. "support": {
  3362. "docs": "http://docs.drupalconsole.com/",
  3363. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3364. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3365. "source": "https://github.com/hechoendrupal/drupal-console-core/tree/1.9.7"
  3366. },
  3367. "time": "2020-11-30T01:45:57+00:00"
  3368. },
  3369. {
  3370. "name": "drupal/console-en",
  3371. "version": "v1.9.7",
  3372. "source": {
  3373. "type": "git",
  3374. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3375. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3376. },
  3377. "dist": {
  3378. "type": "zip",
  3379. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3380. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3381. "shasum": ""
  3382. },
  3383. "type": "library",
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "GPL-2.0-or-later"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "David Flores",
  3391. "email": "dmousex@gmail.com",
  3392. "homepage": "http://dmouse.net"
  3393. },
  3394. {
  3395. "name": "Jesus Manuel Olivas",
  3396. "email": "jesus.olivas@gmail.com",
  3397. "homepage": "http://jmolivas.com"
  3398. },
  3399. {
  3400. "name": "Eduardo Garcia",
  3401. "email": "enzo@enzolutions.com",
  3402. "homepage": "http://enzolutions.com/"
  3403. },
  3404. {
  3405. "name": "Omar Aguirre",
  3406. "email": "omersguchigu@gmail.com"
  3407. },
  3408. {
  3409. "name": "Drupal Console Contributors",
  3410. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3411. }
  3412. ],
  3413. "description": "Drupal Console English Language",
  3414. "homepage": "http://drupalconsole.com/",
  3415. "keywords": [
  3416. "console",
  3417. "development",
  3418. "drupal",
  3419. "symfony"
  3420. ],
  3421. "support": {
  3422. "docs": "https://docs.drupalconsole.com",
  3423. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3424. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3425. "source": "https://github.com/hechoendrupal/drupal-console-en/tree/master"
  3426. },
  3427. "time": "2020-08-15T03:34:54+00:00"
  3428. },
  3429. {
  3430. "name": "drupal/console-extend-plugin",
  3431. "version": "0.9.5",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3435. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3440. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "composer-plugin-api": "^1.0 || ^2.0",
  3445. "composer/installers": "^1.2",
  3446. "symfony/finder": "~3.0|^4.4",
  3447. "symfony/yaml": "~3.0|^4.4"
  3448. },
  3449. "type": "composer-plugin",
  3450. "extra": {
  3451. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3452. },
  3453. "autoload": {
  3454. "psr-4": {
  3455. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3456. }
  3457. },
  3458. "notification-url": "https://packagist.org/downloads/",
  3459. "license": [
  3460. "GPL-2.0+"
  3461. ],
  3462. "authors": [
  3463. {
  3464. "name": "Jesus Manuel Olivas",
  3465. "email": "jesus.olivas@gmail.com"
  3466. }
  3467. ],
  3468. "description": "Drupal Console Extend Plugin",
  3469. "support": {
  3470. "issues": "https://github.com/hechoendrupal/drupal-console-extend-plugin/issues",
  3471. "source": "https://github.com/hechoendrupal/drupal-console-extend-plugin/tree/0.9.5"
  3472. },
  3473. "time": "2020-11-18T00:15:28+00:00"
  3474. },
  3475. {
  3476. "name": "drupal/content_lock",
  3477. "version": "2.2.0",
  3478. "source": {
  3479. "type": "git",
  3480. "url": "https://git.drupalcode.org/project/content_lock.git",
  3481. "reference": "8.x-2.2"
  3482. },
  3483. "dist": {
  3484. "type": "zip",
  3485. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3486. "reference": "8.x-2.2",
  3487. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3488. },
  3489. "require": {
  3490. "drupal/core": "^8.8|^9.0"
  3491. },
  3492. "require-dev": {
  3493. "drupal/conflict": "^2.0@ALPHA",
  3494. "drupal/prefetch_cache": "dev-1.x"
  3495. },
  3496. "type": "drupal-module",
  3497. "extra": {
  3498. "drupal": {
  3499. "version": "8.x-2.2",
  3500. "datestamp": "1607936866",
  3501. "security-coverage": {
  3502. "status": "covered",
  3503. "message": "Covered by Drupal's security advisory policy"
  3504. }
  3505. }
  3506. },
  3507. "notification-url": "https://packages.drupal.org/8/downloads",
  3508. "license": [
  3509. "GPL-2.0-or-later"
  3510. ],
  3511. "authors": [
  3512. {
  3513. "name": "chr.fritsch",
  3514. "homepage": "https://www.drupal.org/user/2103716"
  3515. },
  3516. {
  3517. "name": "ergonlogic",
  3518. "homepage": "https://www.drupal.org/user/368613"
  3519. },
  3520. {
  3521. "name": "mfb",
  3522. "homepage": "https://www.drupal.org/user/12302"
  3523. },
  3524. {
  3525. "name": "pandaski",
  3526. "homepage": "https://www.drupal.org/user/1987218"
  3527. }
  3528. ],
  3529. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3530. "homepage": "https://www.drupal.org/project/content_lock",
  3531. "support": {
  3532. "source": "https://git.drupalcode.org/project/content_lock"
  3533. }
  3534. },
  3535. {
  3536. "name": "drupal/context",
  3537. "version": "4.1.0",
  3538. "source": {
  3539. "type": "git",
  3540. "url": "https://git.drupalcode.org/project/context.git",
  3541. "reference": "8.x-4.1"
  3542. },
  3543. "dist": {
  3544. "type": "zip",
  3545. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  3546. "reference": "8.x-4.1",
  3547. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  3548. },
  3549. "require": {
  3550. "drupal/core": "^8.8 || ^9"
  3551. },
  3552. "type": "drupal-module",
  3553. "extra": {
  3554. "drupal": {
  3555. "version": "8.x-4.1",
  3556. "datestamp": "1628187190",
  3557. "security-coverage": {
  3558. "status": "covered",
  3559. "message": "Covered by Drupal's security advisory policy"
  3560. }
  3561. }
  3562. },
  3563. "notification-url": "https://packages.drupal.org/8/downloads",
  3564. "license": [
  3565. "MIT"
  3566. ],
  3567. "authors": [
  3568. {
  3569. "name": "Christoffer Palm",
  3570. "homepage": "http://www.oddhill.se/",
  3571. "email": "christoffer.palm@oddhill.se",
  3572. "role": "Developer"
  3573. },
  3574. {
  3575. "name": "Steven Jones",
  3576. "homepage": "https://www.drupal.org/user/99644"
  3577. },
  3578. {
  3579. "name": "alex_b",
  3580. "homepage": "https://www.drupal.org/user/53995"
  3581. },
  3582. {
  3583. "name": "boshtian",
  3584. "homepage": "https://www.drupal.org/user/1773456"
  3585. },
  3586. {
  3587. "name": "colan",
  3588. "homepage": "https://www.drupal.org/user/58704"
  3589. },
  3590. {
  3591. "name": "emanaton",
  3592. "homepage": "https://www.drupal.org/user/120853"
  3593. },
  3594. {
  3595. "name": "febbraro",
  3596. "homepage": "https://www.drupal.org/user/43670"
  3597. },
  3598. {
  3599. "name": "fizk",
  3600. "homepage": "https://www.drupal.org/user/473174"
  3601. },
  3602. {
  3603. "name": "hass",
  3604. "homepage": "https://www.drupal.org/user/85918"
  3605. },
  3606. {
  3607. "name": "hefox",
  3608. "homepage": "https://www.drupal.org/user/426416"
  3609. },
  3610. {
  3611. "name": "jmiccolis",
  3612. "homepage": "https://www.drupal.org/user/31731"
  3613. },
  3614. {
  3615. "name": "nedjo",
  3616. "homepage": "https://www.drupal.org/user/4481"
  3617. },
  3618. {
  3619. "name": "patricksettle",
  3620. "homepage": "https://www.drupal.org/user/26618"
  3621. },
  3622. {
  3623. "name": "paulocs",
  3624. "homepage": "https://www.drupal.org/user/3640109"
  3625. },
  3626. {
  3627. "name": "tekante",
  3628. "homepage": "https://www.drupal.org/user/640024"
  3629. },
  3630. {
  3631. "name": "yhahn",
  3632. "homepage": "https://www.drupal.org/user/264833"
  3633. }
  3634. ],
  3635. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3636. "homepage": "https://github.com/oddhill/context",
  3637. "keywords": [
  3638. "Drupal",
  3639. "block",
  3640. "conditions",
  3641. "context",
  3642. "visibility"
  3643. ],
  3644. "support": {
  3645. "source": "https://github.com/oddhill/context",
  3646. "issues": "https://github.com/oddhill/context/issues",
  3647. "docs": "https://github.com/oddhill/context"
  3648. }
  3649. },
  3650. {
  3651. "name": "drupal/core",
  3652. "version": "9.2.8",
  3653. "source": {
  3654. "type": "git",
  3655. "url": "https://github.com/drupal/core.git",
  3656. "reference": "b40ae04a0a8a8a0952e77da7545de5ee8fa40757"
  3657. },
  3658. "dist": {
  3659. "type": "zip",
  3660. "url": "https://api.github.com/repos/drupal/core/zipball/b40ae04a0a8a8a0952e77da7545de5ee8fa40757",
  3661. "reference": "b40ae04a0a8a8a0952e77da7545de5ee8fa40757",
  3662. "shasum": ""
  3663. },
  3664. "require": {
  3665. "asm89/stack-cors": "^1.1",
  3666. "composer/semver": "^3.0",
  3667. "doctrine/annotations": "^1.12",
  3668. "doctrine/reflection": "^1.1",
  3669. "egulias/email-validator": "^2.0",
  3670. "ext-date": "*",
  3671. "ext-dom": "*",
  3672. "ext-filter": "*",
  3673. "ext-gd": "*",
  3674. "ext-hash": "*",
  3675. "ext-json": "*",
  3676. "ext-pcre": "*",
  3677. "ext-pdo": "*",
  3678. "ext-session": "*",
  3679. "ext-simplexml": "*",
  3680. "ext-spl": "*",
  3681. "ext-tokenizer": "*",
  3682. "ext-xml": "*",
  3683. "guzzlehttp/guzzle": "^6.5.2",
  3684. "laminas/laminas-diactoros": "^2.1",
  3685. "laminas/laminas-feed": "^2.12",
  3686. "masterminds/html5": "^2.1",
  3687. "pear/archive_tar": "^1.4.14",
  3688. "php": ">=7.3.0",
  3689. "psr/log": "^1.0",
  3690. "stack/builder": "^1.0",
  3691. "symfony-cmf/routing": "^2.1",
  3692. "symfony/console": "^4.4",
  3693. "symfony/dependency-injection": "^4.4",
  3694. "symfony/event-dispatcher": "^4.4",
  3695. "symfony/http-foundation": "^4.4.7",
  3696. "symfony/http-kernel": "^4.4",
  3697. "symfony/mime": "^5.3.0",
  3698. "symfony/polyfill-iconv": "^1.0",
  3699. "symfony/process": "^4.4",
  3700. "symfony/psr-http-message-bridge": "^2.0",
  3701. "symfony/routing": "^4.4",
  3702. "symfony/serializer": "^4.4",
  3703. "symfony/translation": "^4.4",
  3704. "symfony/validator": "^4.4",
  3705. "symfony/yaml": "^4.4.19",
  3706. "twig/twig": "^2.12.0",
  3707. "typo3/phar-stream-wrapper": "^3.1.3"
  3708. },
  3709. "conflict": {
  3710. "drush/drush": "<8.1.10"
  3711. },
  3712. "replace": {
  3713. "drupal/action": "self.version",
  3714. "drupal/aggregator": "self.version",
  3715. "drupal/automated_cron": "self.version",
  3716. "drupal/ban": "self.version",
  3717. "drupal/bartik": "self.version",
  3718. "drupal/basic_auth": "self.version",
  3719. "drupal/big_pipe": "self.version",
  3720. "drupal/block": "self.version",
  3721. "drupal/block_content": "self.version",
  3722. "drupal/book": "self.version",
  3723. "drupal/breakpoint": "self.version",
  3724. "drupal/ckeditor": "self.version",
  3725. "drupal/claro": "self.version",
  3726. "drupal/classy": "self.version",
  3727. "drupal/color": "self.version",
  3728. "drupal/comment": "self.version",
  3729. "drupal/config": "self.version",
  3730. "drupal/config_translation": "self.version",
  3731. "drupal/contact": "self.version",
  3732. "drupal/content_moderation": "self.version",
  3733. "drupal/content_translation": "self.version",
  3734. "drupal/contextual": "self.version",
  3735. "drupal/core-annotation": "self.version",
  3736. "drupal/core-assertion": "self.version",
  3737. "drupal/core-bridge": "self.version",
  3738. "drupal/core-class-finder": "self.version",
  3739. "drupal/core-datetime": "self.version",
  3740. "drupal/core-dependency-injection": "self.version",
  3741. "drupal/core-diff": "self.version",
  3742. "drupal/core-discovery": "self.version",
  3743. "drupal/core-event-dispatcher": "self.version",
  3744. "drupal/core-file-cache": "self.version",
  3745. "drupal/core-file-security": "self.version",
  3746. "drupal/core-filesystem": "self.version",
  3747. "drupal/core-front-matter": "self.version",
  3748. "drupal/core-gettext": "self.version",
  3749. "drupal/core-graph": "self.version",
  3750. "drupal/core-http-foundation": "self.version",
  3751. "drupal/core-php-storage": "self.version",
  3752. "drupal/core-plugin": "self.version",
  3753. "drupal/core-proxy-builder": "self.version",
  3754. "drupal/core-render": "self.version",
  3755. "drupal/core-serialization": "self.version",
  3756. "drupal/core-transliteration": "self.version",
  3757. "drupal/core-utility": "self.version",
  3758. "drupal/core-uuid": "self.version",
  3759. "drupal/core-version": "self.version",
  3760. "drupal/datetime": "self.version",
  3761. "drupal/datetime_range": "self.version",
  3762. "drupal/dblog": "self.version",
  3763. "drupal/dynamic_page_cache": "self.version",
  3764. "drupal/editor": "self.version",
  3765. "drupal/entity_reference": "self.version",
  3766. "drupal/field": "self.version",
  3767. "drupal/field_layout": "self.version",
  3768. "drupal/field_ui": "self.version",
  3769. "drupal/file": "self.version",
  3770. "drupal/filter": "self.version",
  3771. "drupal/forum": "self.version",
  3772. "drupal/hal": "self.version",
  3773. "drupal/help": "self.version",
  3774. "drupal/help_topics": "self.version",
  3775. "drupal/history": "self.version",
  3776. "drupal/image": "self.version",
  3777. "drupal/inline_form_errors": "self.version",
  3778. "drupal/jsonapi": "self.version",
  3779. "drupal/language": "self.version",
  3780. "drupal/layout_builder": "self.version",
  3781. "drupal/layout_discovery": "self.version",
  3782. "drupal/link": "self.version",
  3783. "drupal/locale": "self.version",
  3784. "drupal/media": "self.version",
  3785. "drupal/media_library": "self.version",
  3786. "drupal/menu_link_content": "self.version",
  3787. "drupal/menu_ui": "self.version",
  3788. "drupal/migrate": "self.version",
  3789. "drupal/migrate_drupal": "self.version",
  3790. "drupal/migrate_drupal_multilingual": "self.version",
  3791. "drupal/migrate_drupal_ui": "self.version",
  3792. "drupal/minimal": "self.version",
  3793. "drupal/node": "self.version",
  3794. "drupal/olivero": "self.version",
  3795. "drupal/options": "self.version",
  3796. "drupal/page_cache": "self.version",
  3797. "drupal/path": "self.version",
  3798. "drupal/path_alias": "self.version",
  3799. "drupal/quickedit": "self.version",
  3800. "drupal/rdf": "self.version",
  3801. "drupal/responsive_image": "self.version",
  3802. "drupal/rest": "self.version",
  3803. "drupal/search": "self.version",
  3804. "drupal/serialization": "self.version",
  3805. "drupal/settings_tray": "self.version",
  3806. "drupal/seven": "self.version",
  3807. "drupal/shortcut": "self.version",
  3808. "drupal/standard": "self.version",
  3809. "drupal/stark": "self.version",
  3810. "drupal/statistics": "self.version",
  3811. "drupal/syslog": "self.version",
  3812. "drupal/system": "self.version",
  3813. "drupal/taxonomy": "self.version",
  3814. "drupal/telephone": "self.version",
  3815. "drupal/text": "self.version",
  3816. "drupal/toolbar": "self.version",
  3817. "drupal/tour": "self.version",
  3818. "drupal/tracker": "self.version",
  3819. "drupal/update": "self.version",
  3820. "drupal/user": "self.version",
  3821. "drupal/views": "self.version",
  3822. "drupal/views_ui": "self.version",
  3823. "drupal/workflows": "self.version",
  3824. "drupal/workspaces": "self.version"
  3825. },
  3826. "type": "drupal-core",
  3827. "extra": {
  3828. "drupal-scaffold": {
  3829. "file-mapping": {
  3830. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3831. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3832. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3833. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3834. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3835. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3836. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3837. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3838. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3839. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3840. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3841. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3842. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3843. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3844. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3845. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3846. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3847. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3848. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3849. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3850. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3851. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3852. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3853. }
  3854. }
  3855. },
  3856. "autoload": {
  3857. "psr-4": {
  3858. "Drupal\\Core\\": "lib/Drupal/Core",
  3859. "Drupal\\Component\\": "lib/Drupal/Component",
  3860. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3861. },
  3862. "classmap": [
  3863. "lib/Drupal.php",
  3864. "lib/Drupal/Component/DependencyInjection/Container.php",
  3865. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3866. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3867. "lib/Drupal/Component/Utility/Timer.php",
  3868. "lib/Drupal/Component/Utility/Unicode.php",
  3869. "lib/Drupal/Core/Cache/Cache.php",
  3870. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3871. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3872. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3873. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3874. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3875. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3876. "lib/Drupal/Core/Database/Connection.php",
  3877. "lib/Drupal/Core/Database/Database.php",
  3878. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3879. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3880. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3881. "lib/Drupal/Core/Database/Statement.php",
  3882. "lib/Drupal/Core/Database/StatementInterface.php",
  3883. "lib/Drupal/Core/DependencyInjection/Container.php",
  3884. "lib/Drupal/Core/DrupalKernel.php",
  3885. "lib/Drupal/Core/DrupalKernelInterface.php",
  3886. "lib/Drupal/Core/Http/InputBag.php",
  3887. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3888. "lib/Drupal/Core/Site/Settings.php"
  3889. ],
  3890. "files": [
  3891. "includes/bootstrap.inc"
  3892. ]
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "GPL-2.0-or-later"
  3897. ],
  3898. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3899. "support": {
  3900. "source": "https://github.com/drupal/core/tree/9.2.8"
  3901. },
  3902. "time": "2021-11-03T17:25:16+00:00"
  3903. },
  3904. {
  3905. "name": "drupal/core-composer-scaffold",
  3906. "version": "9.2.8",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3910. "reference": "3c9efe8e154acc2cadb86b51733be55556677b0b"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/3c9efe8e154acc2cadb86b51733be55556677b0b",
  3915. "reference": "3c9efe8e154acc2cadb86b51733be55556677b0b",
  3916. "shasum": ""
  3917. },
  3918. "require": {
  3919. "composer-plugin-api": "^1 || ^2",
  3920. "php": ">=7.3.0"
  3921. },
  3922. "conflict": {
  3923. "drupal-composer/drupal-scaffold": "*"
  3924. },
  3925. "require-dev": {
  3926. "composer/composer": "^1.8@stable"
  3927. },
  3928. "type": "composer-plugin",
  3929. "extra": {
  3930. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3931. "branch-alias": {
  3932. "dev-master": "1.0.x-dev"
  3933. }
  3934. },
  3935. "autoload": {
  3936. "psr-4": {
  3937. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3938. }
  3939. },
  3940. "notification-url": "https://packagist.org/downloads/",
  3941. "license": [
  3942. "GPL-2.0-or-later"
  3943. ],
  3944. "description": "A flexible Composer project scaffold builder.",
  3945. "homepage": "https://www.drupal.org/project/drupal",
  3946. "keywords": [
  3947. "drupal"
  3948. ],
  3949. "support": {
  3950. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.2.8"
  3951. },
  3952. "time": "2021-08-24T12:04:07+00:00"
  3953. },
  3954. {
  3955. "name": "drupal/core-project-message",
  3956. "version": "9.2.8",
  3957. "source": {
  3958. "type": "git",
  3959. "url": "https://github.com/drupal/core-project-message.git",
  3960. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3961. },
  3962. "dist": {
  3963. "type": "zip",
  3964. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3965. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3966. "shasum": ""
  3967. },
  3968. "require": {
  3969. "composer-plugin-api": "^1.1 || ^2",
  3970. "php": ">=7.3.0"
  3971. },
  3972. "type": "composer-plugin",
  3973. "extra": {
  3974. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3975. },
  3976. "autoload": {
  3977. "psr-4": {
  3978. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3979. }
  3980. },
  3981. "notification-url": "https://packagist.org/downloads/",
  3982. "license": [
  3983. "GPL-2.0-or-later"
  3984. ],
  3985. "description": "Adds a message after Composer installation.",
  3986. "homepage": "https://www.drupal.org/project/drupal",
  3987. "keywords": [
  3988. "drupal"
  3989. ],
  3990. "support": {
  3991. "source": "https://github.com/drupal/core-project-message/tree/9.3.0-alpha1"
  3992. },
  3993. "time": "2020-09-14T13:40:36+00:00"
  3994. },
  3995. {
  3996. "name": "drupal/core-recommended",
  3997. "version": "9.2.8",
  3998. "source": {
  3999. "type": "git",
  4000. "url": "https://github.com/drupal/core-recommended.git",
  4001. "reference": "c77ac58a8ef159065a7d28853e41f758a9cb057d"
  4002. },
  4003. "dist": {
  4004. "type": "zip",
  4005. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/c77ac58a8ef159065a7d28853e41f758a9cb057d",
  4006. "reference": "c77ac58a8ef159065a7d28853e41f758a9cb057d",
  4007. "shasum": ""
  4008. },
  4009. "require": {
  4010. "asm89/stack-cors": "1.3.0",
  4011. "composer/semver": "3.2.5",
  4012. "doctrine/annotations": "1.13.1",
  4013. "doctrine/lexer": "1.2.1",
  4014. "doctrine/reflection": "1.2.2",
  4015. "drupal/core": "9.2.8",
  4016. "egulias/email-validator": "2.1.25",
  4017. "guzzlehttp/guzzle": "6.5.5",
  4018. "guzzlehttp/promises": "1.4.1",
  4019. "guzzlehttp/psr7": "1.8.2",
  4020. "laminas/laminas-diactoros": "2.6.0",
  4021. "laminas/laminas-escaper": "2.7.0",
  4022. "laminas/laminas-feed": "2.14.1",
  4023. "laminas/laminas-stdlib": "3.3.1",
  4024. "laminas/laminas-zendframework-bridge": "1.2.0",
  4025. "masterminds/html5": "2.7.4",
  4026. "pear/archive_tar": "1.4.14",
  4027. "pear/console_getopt": "v1.4.3",
  4028. "pear/pear-core-minimal": "v1.10.10",
  4029. "pear/pear_exception": "v1.0.2",
  4030. "psr/cache": "1.0.1",
  4031. "psr/container": "1.1.1",
  4032. "psr/http-factory": "1.0.1",
  4033. "psr/http-message": "1.0.1",
  4034. "psr/log": "1.1.4",
  4035. "ralouphie/getallheaders": "3.0.3",
  4036. "stack/builder": "v1.0.6",
  4037. "symfony-cmf/routing": "2.3.3",
  4038. "symfony/console": "v4.4.25",
  4039. "symfony/debug": "v4.4.25",
  4040. "symfony/dependency-injection": "v4.4.25",
  4041. "symfony/deprecation-contracts": "v2.4.0",
  4042. "symfony/error-handler": "v4.4.25",
  4043. "symfony/event-dispatcher": "v4.4.25",
  4044. "symfony/event-dispatcher-contracts": "v1.1.9",
  4045. "symfony/http-client-contracts": "v2.4.0",
  4046. "symfony/http-foundation": "v4.4.25",
  4047. "symfony/http-kernel": "v4.4.25",
  4048. "symfony/mime": "v5.3.0",
  4049. "symfony/polyfill-ctype": "v1.23.0",
  4050. "symfony/polyfill-iconv": "v1.23.0",
  4051. "symfony/polyfill-intl-idn": "v1.23.0",
  4052. "symfony/polyfill-intl-normalizer": "v1.23.0",
  4053. "symfony/polyfill-mbstring": "v1.23.0",
  4054. "symfony/polyfill-php80": "v1.23.0",
  4055. "symfony/process": "v4.4.25",
  4056. "symfony/psr-http-message-bridge": "v2.1.0",
  4057. "symfony/routing": "v4.4.25",
  4058. "symfony/serializer": "v4.4.25",
  4059. "symfony/service-contracts": "v2.4.0",
  4060. "symfony/translation": "v4.4.25",
  4061. "symfony/translation-contracts": "v2.4.0",
  4062. "symfony/validator": "v4.4.25",
  4063. "symfony/var-dumper": "v5.3.0",
  4064. "symfony/yaml": "v4.4.25",
  4065. "twig/twig": "v2.14.6",
  4066. "typo3/phar-stream-wrapper": "v3.1.6"
  4067. },
  4068. "conflict": {
  4069. "webflo/drupal-core-strict": "*"
  4070. },
  4071. "type": "metapackage",
  4072. "notification-url": "https://packagist.org/downloads/",
  4073. "license": [
  4074. "GPL-2.0-or-later"
  4075. ],
  4076. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  4077. "support": {
  4078. "source": "https://github.com/drupal/core-recommended/tree/9.2.8"
  4079. },
  4080. "time": "2021-11-03T17:25:16+00:00"
  4081. },
  4082. {
  4083. "name": "drupal/cshs",
  4084. "version": "dev-1.x",
  4085. "source": {
  4086. "type": "git",
  4087. "url": "https://git.drupalcode.org/project/cshs.git",
  4088. "reference": "fb5b1b8eff6391819b28bf9bf1cce5d1c5b7423f"
  4089. },
  4090. "require": {
  4091. "drupal/core": "^8 || ^9",
  4092. "php": ">=7.1.0"
  4093. },
  4094. "type": "drupal-module",
  4095. "extra": {
  4096. "branch-alias": {
  4097. "dev-1.x": "1.x-dev"
  4098. },
  4099. "drupal": {
  4100. "version": "8.x-1.7+0-dev",
  4101. "datestamp": "1612535860",
  4102. "security-coverage": {
  4103. "status": "not-covered",
  4104. "message": "Dev releases are not covered by Drupal security advisories."
  4105. }
  4106. }
  4107. },
  4108. "notification-url": "https://packages.drupal.org/8/downloads",
  4109. "license": [
  4110. "GPL-2.0-or-later"
  4111. ],
  4112. "authors": [
  4113. {
  4114. "name": "Walter Jenner",
  4115. "homepage": "https://drupal.org/u/valderama"
  4116. },
  4117. {
  4118. "name": "Sergii Bondarenko",
  4119. "homepage": "https://drupal.org/u/BR0kEN",
  4120. "email": "sb@firstvector.org"
  4121. },
  4122. {
  4123. "name": "Daneel Cruz",
  4124. "homepage": "https://drupal.org/u/daneelcm"
  4125. },
  4126. {
  4127. "name": "Purushotam Rai",
  4128. "homepage": "https://drupal.org/u/purushotam.rai"
  4129. }
  4130. ],
  4131. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4132. "homepage": "https://www.drupal.org/project/cshs",
  4133. "keywords": [
  4134. "client-side-select",
  4135. "hierarchical-select",
  4136. "module",
  4137. "select",
  4138. "taxonomy"
  4139. ],
  4140. "support": {
  4141. "source": "https://git.drupalcode.org/project/cshs",
  4142. "issues": "https://www.drupal.org/project/issues/cshs"
  4143. }
  4144. },
  4145. {
  4146. "name": "drupal/ctools",
  4147. "version": "3.7.0",
  4148. "source": {
  4149. "type": "git",
  4150. "url": "https://git.drupalcode.org/project/ctools.git",
  4151. "reference": "8.x-3.7"
  4152. },
  4153. "dist": {
  4154. "type": "zip",
  4155. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.7.zip",
  4156. "reference": "8.x-3.7",
  4157. "shasum": "b11c0981a1d2ab3cc9e8e614a337d8e2a2a70c0e"
  4158. },
  4159. "require": {
  4160. "drupal/core": "^8.8 || ^9"
  4161. },
  4162. "type": "drupal-module",
  4163. "extra": {
  4164. "drupal": {
  4165. "version": "8.x-3.7",
  4166. "datestamp": "1623860918",
  4167. "security-coverage": {
  4168. "status": "covered",
  4169. "message": "Covered by Drupal's security advisory policy"
  4170. }
  4171. },
  4172. "branch-alias": {
  4173. "dev-8.x-3.x": "3.x-dev"
  4174. }
  4175. },
  4176. "notification-url": "https://packages.drupal.org/8/downloads",
  4177. "license": [
  4178. "GPL-2.0-or-later"
  4179. ],
  4180. "authors": [
  4181. {
  4182. "name": "Kris Vanderwater (EclipseGc)",
  4183. "homepage": "https://www.drupal.org/u/eclipsegc",
  4184. "role": "Maintainer"
  4185. },
  4186. {
  4187. "name": "Jakob Perry (japerry)",
  4188. "homepage": "https://www.drupal.org/u/japerry",
  4189. "role": "Maintainer"
  4190. },
  4191. {
  4192. "name": "Tim Plunkett (tim.plunkett)",
  4193. "homepage": "https://www.drupal.org/u/timplunkett",
  4194. "role": "Maintainer"
  4195. },
  4196. {
  4197. "name": "James Gilliland (neclimdul)",
  4198. "homepage": "https://www.drupal.org/u/neclimdul",
  4199. "role": "Maintainer"
  4200. },
  4201. {
  4202. "name": "Daniel Wehner (dawehner)",
  4203. "homepage": "https://www.drupal.org/u/dawehner",
  4204. "role": "Maintainer"
  4205. },
  4206. {
  4207. "name": "joelpittet",
  4208. "homepage": "https://www.drupal.org/user/160302"
  4209. },
  4210. {
  4211. "name": "merlinofchaos",
  4212. "homepage": "https://www.drupal.org/user/26979"
  4213. },
  4214. {
  4215. "name": "neclimdul",
  4216. "homepage": "https://www.drupal.org/user/48673"
  4217. },
  4218. {
  4219. "name": "sdboyer",
  4220. "homepage": "https://www.drupal.org/user/146719"
  4221. },
  4222. {
  4223. "name": "sun",
  4224. "homepage": "https://www.drupal.org/user/54136"
  4225. },
  4226. {
  4227. "name": "tim.plunkett",
  4228. "homepage": "https://www.drupal.org/user/241634"
  4229. }
  4230. ],
  4231. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4232. "homepage": "https://www.drupal.org/project/ctools",
  4233. "support": {
  4234. "source": "https://git.drupalcode.org/project/ctools",
  4235. "issues": "https://www.drupal.org/project/issues/ctools"
  4236. }
  4237. },
  4238. {
  4239. "name": "drupal/date_range_formatter",
  4240. "version": "dev-9.0.x",
  4241. "source": {
  4242. "type": "git",
  4243. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4244. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4245. },
  4246. "require": {
  4247. "drupal/core": "^8 || ^9"
  4248. },
  4249. "type": "drupal-module",
  4250. "extra": {
  4251. "branch-alias": {
  4252. "dev-9.0.x": "9.0.x-dev"
  4253. },
  4254. "drupal": {
  4255. "version": "9.0.x-dev",
  4256. "datestamp": "1589956448",
  4257. "security-coverage": {
  4258. "status": "not-covered",
  4259. "message": "Dev releases are not covered by Drupal security advisories."
  4260. }
  4261. }
  4262. },
  4263. "notification-url": "https://packages.drupal.org/8/downloads",
  4264. "license": [
  4265. "GPL-2.0-or-later"
  4266. ],
  4267. "authors": [
  4268. {
  4269. "name": "maximpodorov",
  4270. "homepage": "https://www.drupal.org/user/515310"
  4271. },
  4272. {
  4273. "name": "sudishth",
  4274. "homepage": "https://www.drupal.org/user/1440562"
  4275. }
  4276. ],
  4277. "description": "Formats date ranges.",
  4278. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4279. "support": {
  4280. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4281. }
  4282. },
  4283. {
  4284. "name": "drupal/devel",
  4285. "version": "4.1.1",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://git.drupalcode.org/project/devel.git",
  4289. "reference": "4.1.1"
  4290. },
  4291. "dist": {
  4292. "type": "zip",
  4293. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4294. "reference": "4.1.1",
  4295. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4296. },
  4297. "require": {
  4298. "doctrine/common": "^2.7",
  4299. "drupal/core": "^8.8 || ^9",
  4300. "symfony/var-dumper": "^4 || ^5"
  4301. },
  4302. "conflict": {
  4303. "kint-php/kint": "<3"
  4304. },
  4305. "require-dev": {
  4306. "drush/drush": "^10"
  4307. },
  4308. "suggest": {
  4309. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4310. },
  4311. "type": "drupal-module",
  4312. "extra": {
  4313. "drupal": {
  4314. "version": "4.1.1",
  4315. "datestamp": "1631968537",
  4316. "security-coverage": {
  4317. "status": "covered",
  4318. "message": "Covered by Drupal's security advisory policy"
  4319. }
  4320. },
  4321. "drush": {
  4322. "services": {
  4323. "drush.services.yml": "^9 || ^10"
  4324. }
  4325. }
  4326. },
  4327. "notification-url": "https://packages.drupal.org/8/downloads",
  4328. "license": [
  4329. "GPL-2.0-or-later"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "drupalspoons",
  4334. "homepage": "https://www.drupal.org/user/3647684"
  4335. },
  4336. {
  4337. "name": "moshe weitzman",
  4338. "homepage": "https://www.drupal.org/user/23"
  4339. }
  4340. ],
  4341. "description": "Various blocks, pages, and functions for developers.",
  4342. "homepage": "https://www.drupal.org/project/devel",
  4343. "support": {
  4344. "source": "https://gitlab.com/drupalspoons/devel",
  4345. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4346. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4347. }
  4348. },
  4349. {
  4350. "name": "drupal/devel_kint_extras",
  4351. "version": "1.0.0",
  4352. "source": {
  4353. "type": "git",
  4354. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  4355. "reference": "1.0.0"
  4356. },
  4357. "dist": {
  4358. "type": "zip",
  4359. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.0.0.zip",
  4360. "reference": "1.0.0",
  4361. "shasum": "286b5183552cc673fb96de7e3d943a3cfd82ec00"
  4362. },
  4363. "require": {
  4364. "drupal/core": "^8 || ^9",
  4365. "drupal/devel": "^4.0",
  4366. "kint-php/kint": "^3.3"
  4367. },
  4368. "type": "drupal-module",
  4369. "extra": {
  4370. "drupal": {
  4371. "version": "1.0.0",
  4372. "datestamp": "1597133801",
  4373. "security-coverage": {
  4374. "status": "not-covered",
  4375. "message": "Project has not opted into security advisory coverage!"
  4376. }
  4377. }
  4378. },
  4379. "notification-url": "https://packages.drupal.org/8/downloads",
  4380. "license": [
  4381. "GPL-2.0-or-later"
  4382. ],
  4383. "authors": [
  4384. {
  4385. "name": "Jan Chojnacki",
  4386. "homepage": "https://www.drupal.org/u/janchojnacki"
  4387. },
  4388. {
  4389. "name": "Other contributors",
  4390. "homepage": "https://www.drupal.org/node/3164492/committers"
  4391. }
  4392. ],
  4393. "description": "Shows methods and statics available for an object when using Kint with Devel",
  4394. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  4395. "support": {
  4396. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  4397. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  4398. "chat": "irc://irc.freenode.org/drupal-contribute"
  4399. }
  4400. },
  4401. {
  4402. "name": "drupal/domain",
  4403. "version": "dev-1.x",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://git.drupalcode.org/project/domain.git",
  4407. "reference": "818fd0f29657f4fb955afcac636cd58219ce4857"
  4408. },
  4409. "require": {
  4410. "drupal/core": "^8 || ^9"
  4411. },
  4412. "require-dev": {
  4413. "drupal/domain_access": "*",
  4414. "drupal/domain_config": "*"
  4415. },
  4416. "type": "drupal-module",
  4417. "extra": {
  4418. "branch-alias": {
  4419. "dev-1.x": "1.x-dev"
  4420. },
  4421. "drupal": {
  4422. "version": "8.x-1.x-dev",
  4423. "datestamp": "1624549976",
  4424. "security-coverage": {
  4425. "status": "not-covered",
  4426. "message": "Dev releases are not covered by Drupal security advisories."
  4427. }
  4428. }
  4429. },
  4430. "notification-url": "https://packages.drupal.org/8/downloads",
  4431. "license": [
  4432. "GPL-2.0-or-later"
  4433. ],
  4434. "authors": [
  4435. {
  4436. "name": "agentrickard",
  4437. "homepage": "https://www.drupal.org/user/20975"
  4438. },
  4439. {
  4440. "name": "nonsie",
  4441. "homepage": "https://www.drupal.org/user/29899"
  4442. }
  4443. ],
  4444. "description": "Creates domain records within a Drupal installation.",
  4445. "homepage": "https://www.drupal.org/project/domain",
  4446. "support": {
  4447. "source": "https://git.drupalcode.org/project/domain"
  4448. }
  4449. },
  4450. {
  4451. "name": "drupal/domain_alias",
  4452. "version": "dev-1.x",
  4453. "require": {
  4454. "drupal/core": "^8 || ^9",
  4455. "drupal/domain": "*"
  4456. },
  4457. "type": "metapackage",
  4458. "extra": {
  4459. "branch-alias": {
  4460. "dev-1.x": "1.x-dev"
  4461. },
  4462. "drupal": {
  4463. "version": "8.x-1.x-dev",
  4464. "datestamp": "1624549976",
  4465. "security-coverage": {
  4466. "status": "not-covered",
  4467. "message": "Dev releases are not covered by Drupal security advisories."
  4468. }
  4469. }
  4470. },
  4471. "notification-url": "https://packages.drupal.org/8/downloads",
  4472. "license": [
  4473. "GPL-2.0-or-later"
  4474. ],
  4475. "authors": [
  4476. {
  4477. "name": "agentrickard",
  4478. "homepage": "https://www.drupal.org/user/20975"
  4479. },
  4480. {
  4481. "name": "nonsie",
  4482. "homepage": "https://www.drupal.org/user/29899"
  4483. }
  4484. ],
  4485. "description": "Maps multiple host requests to a single domain record.",
  4486. "homepage": "https://www.drupal.org/project/domain",
  4487. "support": {
  4488. "source": "https://git.drupalcode.org/project/domain"
  4489. }
  4490. },
  4491. {
  4492. "name": "drupal/domain_config",
  4493. "version": "dev-1.x",
  4494. "require": {
  4495. "drupal/core": "^8 || ^9",
  4496. "drupal/domain": "*"
  4497. },
  4498. "type": "metapackage",
  4499. "extra": {
  4500. "branch-alias": {
  4501. "dev-1.x": "1.x-dev"
  4502. },
  4503. "drupal": {
  4504. "version": "8.x-1.x-dev",
  4505. "datestamp": "1624549976",
  4506. "security-coverage": {
  4507. "status": "not-covered",
  4508. "message": "Dev releases are not covered by Drupal security advisories."
  4509. }
  4510. }
  4511. },
  4512. "notification-url": "https://packages.drupal.org/8/downloads",
  4513. "license": [
  4514. "GPL-2.0-or-later"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "agentrickard",
  4519. "homepage": "https://www.drupal.org/user/20975"
  4520. },
  4521. {
  4522. "name": "nonsie",
  4523. "homepage": "https://www.drupal.org/user/29899"
  4524. }
  4525. ],
  4526. "description": "Allows domain specific configuration.",
  4527. "homepage": "https://www.drupal.org/project/domain",
  4528. "support": {
  4529. "source": "https://git.drupalcode.org/project/domain"
  4530. }
  4531. },
  4532. {
  4533. "name": "drupal/domain_site_settings",
  4534. "version": "dev-1.x",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4538. "reference": "a66721e8620d27430fd6123a4353545c4a9f36b4"
  4539. },
  4540. "require": {
  4541. "drupal/core": "^8.8 || ^9",
  4542. "drupal/domain": "^1.0",
  4543. "drupal/domain_config": "*"
  4544. },
  4545. "type": "drupal-module",
  4546. "extra": {
  4547. "branch-alias": {
  4548. "dev-1.x": "1.x-dev"
  4549. },
  4550. "drupal": {
  4551. "version": "8.x-1.3+14-dev",
  4552. "datestamp": "1626772445",
  4553. "security-coverage": {
  4554. "status": "not-covered",
  4555. "message": "Dev releases are not covered by Drupal security advisories."
  4556. }
  4557. }
  4558. },
  4559. "notification-url": "https://packages.drupal.org/8/downloads",
  4560. "license": [
  4561. "GPL-2.0+"
  4562. ],
  4563. "authors": [
  4564. {
  4565. "name": "JeroenT",
  4566. "homepage": "https://www.drupal.org/user/2228934"
  4567. },
  4568. {
  4569. "name": "aloknarwaria",
  4570. "homepage": "https://www.drupal.org/user/906640"
  4571. },
  4572. {
  4573. "name": "malaynayak",
  4574. "homepage": "https://www.drupal.org/user/3529755"
  4575. }
  4576. ],
  4577. "description": "Basic Site Setting for Domains.",
  4578. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4579. "keywords": [
  4580. "Drupal"
  4581. ],
  4582. "support": {
  4583. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4584. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4585. }
  4586. },
  4587. {
  4588. "name": "drupal/email_registration",
  4589. "version": "1.1.0",
  4590. "source": {
  4591. "type": "git",
  4592. "url": "https://git.drupalcode.org/project/email_registration.git",
  4593. "reference": "8.x-1.1"
  4594. },
  4595. "dist": {
  4596. "type": "zip",
  4597. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4598. "reference": "8.x-1.1",
  4599. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4600. },
  4601. "require": {
  4602. "drupal/core": "^8.7.7 || ^9"
  4603. },
  4604. "conflict": {
  4605. "drupal/commerce": "<2.12"
  4606. },
  4607. "require-dev": {
  4608. "drupal/commerce": "^2.0"
  4609. },
  4610. "type": "drupal-module",
  4611. "extra": {
  4612. "drupal": {
  4613. "version": "8.x-1.1",
  4614. "datestamp": "1592317072",
  4615. "security-coverage": {
  4616. "status": "covered",
  4617. "message": "Covered by Drupal's security advisory policy"
  4618. }
  4619. }
  4620. },
  4621. "notification-url": "https://packages.drupal.org/8/downloads",
  4622. "license": [
  4623. "GPL-2.0-or-later"
  4624. ],
  4625. "authors": [
  4626. {
  4627. "name": "Greg Knaddison (greggles)",
  4628. "homepage": "https://www.drupal.org/u/greggles",
  4629. "role": "Maintainer"
  4630. },
  4631. {
  4632. "name": "Andrey Postnikov (andypost)",
  4633. "homepage": "https://www.drupal.org/u/andypost",
  4634. "role": "Maintainer"
  4635. },
  4636. {
  4637. "name": "Chris Herberte",
  4638. "homepage": "https://www.drupal.org/u/chris-herberte",
  4639. "role": "Maintainer"
  4640. },
  4641. {
  4642. "name": "Moshe Weitzman (moshe weitzman)",
  4643. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4644. "role": "Maintainer"
  4645. }
  4646. ],
  4647. "description": "Allows users to register with an email address as their username.",
  4648. "homepage": "https://www.drupal.org/project/email_registration",
  4649. "support": {
  4650. "source": "https://git.drupalcode.org/project/email_registration",
  4651. "issues": "http://drupal.org/project/issues/email_registration"
  4652. }
  4653. },
  4654. {
  4655. "name": "drupal/embed",
  4656. "version": "1.4.0",
  4657. "source": {
  4658. "type": "git",
  4659. "url": "https://git.drupalcode.org/project/embed.git",
  4660. "reference": "8.x-1.4"
  4661. },
  4662. "dist": {
  4663. "type": "zip",
  4664. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4665. "reference": "8.x-1.4",
  4666. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4667. },
  4668. "require": {
  4669. "drupal/core": "^8.7.7 || ^9"
  4670. },
  4671. "type": "drupal-module",
  4672. "extra": {
  4673. "drupal": {
  4674. "version": "8.x-1.4",
  4675. "datestamp": "1590176831",
  4676. "security-coverage": {
  4677. "status": "covered",
  4678. "message": "Covered by Drupal's security advisory policy"
  4679. }
  4680. }
  4681. },
  4682. "notification-url": "https://packages.drupal.org/8/downloads",
  4683. "license": [
  4684. "GPL-2.0-or-later"
  4685. ],
  4686. "authors": [
  4687. {
  4688. "name": "Dave Reid",
  4689. "homepage": "https://www.drupal.org/user/53892"
  4690. },
  4691. {
  4692. "name": "Devin Carlson",
  4693. "homepage": "https://www.drupal.org/user/290182"
  4694. },
  4695. {
  4696. "name": "Drupal Media Team",
  4697. "homepage": "https://www.drupal.org/user/3260690"
  4698. },
  4699. {
  4700. "name": "cs_shadow",
  4701. "homepage": "https://www.drupal.org/user/2828287"
  4702. },
  4703. {
  4704. "name": "phenaproxima",
  4705. "homepage": "https://www.drupal.org/user/205645"
  4706. },
  4707. {
  4708. "name": "slashrsm",
  4709. "homepage": "https://www.drupal.org/user/744628"
  4710. }
  4711. ],
  4712. "description": "Provides a framework for different types of embeds in text editors.",
  4713. "homepage": "https://www.drupal.org/project/embed",
  4714. "support": {
  4715. "source": "https://git.drupalcode.org/project/embed"
  4716. }
  4717. },
  4718. {
  4719. "name": "drupal/entity",
  4720. "version": "1.2.0",
  4721. "source": {
  4722. "type": "git",
  4723. "url": "https://git.drupalcode.org/project/entity.git",
  4724. "reference": "8.x-1.2"
  4725. },
  4726. "dist": {
  4727. "type": "zip",
  4728. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4729. "reference": "8.x-1.2",
  4730. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4731. },
  4732. "require": {
  4733. "drupal/core": "^8.8 || ^9"
  4734. },
  4735. "type": "drupal-module",
  4736. "extra": {
  4737. "drupal": {
  4738. "version": "8.x-1.2",
  4739. "datestamp": "1606399149",
  4740. "security-coverage": {
  4741. "status": "covered",
  4742. "message": "Covered by Drupal's security advisory policy"
  4743. }
  4744. }
  4745. },
  4746. "notification-url": "https://packages.drupal.org/8/downloads",
  4747. "license": [
  4748. "GPL-2.0-or-later"
  4749. ],
  4750. "authors": [
  4751. {
  4752. "name": "Berdir",
  4753. "homepage": "https://www.drupal.org/user/214652"
  4754. },
  4755. {
  4756. "name": "TR",
  4757. "homepage": "https://www.drupal.org/user/202830"
  4758. },
  4759. {
  4760. "name": "bojanz",
  4761. "homepage": "https://www.drupal.org/user/86106"
  4762. },
  4763. {
  4764. "name": "dawehner",
  4765. "homepage": "https://www.drupal.org/user/99340"
  4766. },
  4767. {
  4768. "name": "dixon_",
  4769. "homepage": "https://www.drupal.org/user/239911"
  4770. },
  4771. {
  4772. "name": "fago",
  4773. "homepage": "https://www.drupal.org/user/16747"
  4774. },
  4775. {
  4776. "name": "mglaman",
  4777. "homepage": "https://www.drupal.org/user/2416470"
  4778. }
  4779. ],
  4780. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4781. "homepage": "http://drupal.org/project/entity",
  4782. "support": {
  4783. "source": "https://git.drupalcode.org/project/entity"
  4784. }
  4785. },
  4786. {
  4787. "name": "drupal/entity_browser",
  4788. "version": "2.6.0",
  4789. "source": {
  4790. "type": "git",
  4791. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4792. "reference": "8.x-2.6"
  4793. },
  4794. "dist": {
  4795. "type": "zip",
  4796. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.6.zip",
  4797. "reference": "8.x-2.6",
  4798. "shasum": "95cad4ce9620ccb4f02afa0e8b8bbf7c73fc5aac"
  4799. },
  4800. "require": {
  4801. "drupal/core": "^8.8 || ^9"
  4802. },
  4803. "require-dev": {
  4804. "drupal/embed": "~1.0",
  4805. "drupal/entity_embed": "1.x-dev",
  4806. "drupal/entity_reference_revisions": "1.x-dev",
  4807. "drupal/entityqueue": "1.x-dev",
  4808. "drupal/inline_entity_form": "1.x-dev",
  4809. "drupal/paragraphs": "1.x-dev",
  4810. "drupal/token": "~1.0"
  4811. },
  4812. "type": "drupal-module",
  4813. "extra": {
  4814. "drupal": {
  4815. "version": "8.x-2.6",
  4816. "datestamp": "1624401306",
  4817. "security-coverage": {
  4818. "status": "covered",
  4819. "message": "Covered by Drupal's security advisory policy"
  4820. }
  4821. }
  4822. },
  4823. "notification-url": "https://packages.drupal.org/8/downloads",
  4824. "license": [
  4825. "GPL-2.0+"
  4826. ],
  4827. "authors": [
  4828. {
  4829. "name": "Janez Urevc",
  4830. "homepage": "https://github.com/slashrsm",
  4831. "role": "Maintainer"
  4832. },
  4833. {
  4834. "name": "Primoz Hmeljak",
  4835. "homepage": "https://github.com/primsi",
  4836. "role": "Maintainer"
  4837. },
  4838. {
  4839. "name": "See other contributors",
  4840. "homepage": "https://www.drupal.org/node/1943336/committers",
  4841. "role": "contributor"
  4842. },
  4843. {
  4844. "name": "Drupal Media Team",
  4845. "homepage": "https://www.drupal.org/user/3260690"
  4846. },
  4847. {
  4848. "name": "Primsi",
  4849. "homepage": "https://www.drupal.org/user/282629"
  4850. },
  4851. {
  4852. "name": "marcingy",
  4853. "homepage": "https://www.drupal.org/user/77320"
  4854. },
  4855. {
  4856. "name": "oknate",
  4857. "homepage": "https://www.drupal.org/user/471638"
  4858. },
  4859. {
  4860. "name": "samuel.mortenson",
  4861. "homepage": "https://www.drupal.org/user/2582268"
  4862. },
  4863. {
  4864. "name": "slashrsm",
  4865. "homepage": "https://www.drupal.org/user/744628"
  4866. }
  4867. ],
  4868. "description": "Entity browsing and selecting component.",
  4869. "homepage": "http://drupal.org/project/entity_browser",
  4870. "support": {
  4871. "source": "https://git.drupalcode.org/project/entity_browser",
  4872. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4873. "irc": "irc://irc.freenode.org/drupal-contribute"
  4874. }
  4875. },
  4876. {
  4877. "name": "drupal/entity_browser_enhanced",
  4878. "version": "1.0.0",
  4879. "source": {
  4880. "type": "git",
  4881. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4882. "reference": "8.x-1.0"
  4883. },
  4884. "dist": {
  4885. "type": "zip",
  4886. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4887. "reference": "8.x-1.0",
  4888. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4889. },
  4890. "require": {
  4891. "drupal/core": "^8 || ^9",
  4892. "drupal/entity_browser": "~2.0"
  4893. },
  4894. "type": "drupal-module",
  4895. "extra": {
  4896. "drupal": {
  4897. "version": "8.x-1.0",
  4898. "datestamp": "1581940931",
  4899. "security-coverage": {
  4900. "status": "covered",
  4901. "message": "Covered by Drupal's security advisory policy"
  4902. }
  4903. },
  4904. "branch-alias": {
  4905. "dev-8.x-1.x": "8.1.x-dev"
  4906. }
  4907. },
  4908. "notification-url": "https://packages.drupal.org/8/downloads",
  4909. "license": [
  4910. "GPL-2.0-or-later"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Vardot",
  4915. "homepage": "https://www.drupal.org/vardot",
  4916. "role": "Maintainer"
  4917. },
  4918. {
  4919. "name": "RajabNatshah",
  4920. "homepage": "https://www.drupal.org/user/1414312"
  4921. }
  4922. ],
  4923. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4924. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4925. "support": {
  4926. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4927. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4928. }
  4929. },
  4930. {
  4931. "name": "drupal/entity_clone",
  4932. "version": "1.0.0-beta6",
  4933. "source": {
  4934. "type": "git",
  4935. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4936. "reference": "8.x-1.0-beta6"
  4937. },
  4938. "dist": {
  4939. "type": "zip",
  4940. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta6.zip",
  4941. "reference": "8.x-1.0-beta6",
  4942. "shasum": "35d04649b6fb349df761abab37506a94f172981f"
  4943. },
  4944. "require": {
  4945. "drupal/core": "^8 || ^9"
  4946. },
  4947. "type": "drupal-module",
  4948. "extra": {
  4949. "drupal": {
  4950. "version": "8.x-1.0-beta6",
  4951. "datestamp": "1617209997",
  4952. "security-coverage": {
  4953. "status": "not-covered",
  4954. "message": "Beta releases are not covered by Drupal security advisories."
  4955. }
  4956. }
  4957. },
  4958. "notification-url": "https://packages.drupal.org/8/downloads",
  4959. "license": [
  4960. "GPL-2.0-or-later"
  4961. ],
  4962. "authors": [
  4963. {
  4964. "name": "NickDickinsonWilde",
  4965. "homepage": "https://www.drupal.org/user/3094661"
  4966. },
  4967. {
  4968. "name": "colan",
  4969. "homepage": "https://www.drupal.org/user/58704"
  4970. },
  4971. {
  4972. "name": "vpeltot",
  4973. "homepage": "https://www.drupal.org/user/1361586"
  4974. }
  4975. ],
  4976. "description": "Add a clone action for all entities",
  4977. "homepage": "https://www.drupal.org/project/entity_clone",
  4978. "support": {
  4979. "source": "https://git.drupalcode.org/project/entity_clone"
  4980. }
  4981. },
  4982. {
  4983. "name": "drupal/entity_reference_revisions",
  4984. "version": "1.9.0",
  4985. "source": {
  4986. "type": "git",
  4987. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4988. "reference": "8.x-1.9"
  4989. },
  4990. "dist": {
  4991. "type": "zip",
  4992. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip",
  4993. "reference": "8.x-1.9",
  4994. "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df"
  4995. },
  4996. "require": {
  4997. "drupal/core": "^8.7.7 || ^9"
  4998. },
  4999. "require-dev": {
  5000. "drupal/diff": "1.x-dev"
  5001. },
  5002. "type": "drupal-module",
  5003. "extra": {
  5004. "drupal": {
  5005. "version": "8.x-1.9",
  5006. "datestamp": "1614805871",
  5007. "security-coverage": {
  5008. "status": "covered",
  5009. "message": "Covered by Drupal's security advisory policy"
  5010. }
  5011. }
  5012. },
  5013. "notification-url": "https://packages.drupal.org/8/downloads",
  5014. "license": [
  5015. "GPL-2.0-or-later"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "Berdir",
  5020. "homepage": "https://www.drupal.org/user/214652"
  5021. },
  5022. {
  5023. "name": "Frans",
  5024. "homepage": "https://www.drupal.org/user/514222"
  5025. },
  5026. {
  5027. "name": "jeroen.b",
  5028. "homepage": "https://www.drupal.org/user/1853532"
  5029. },
  5030. {
  5031. "name": "miro_dietiker",
  5032. "homepage": "https://www.drupal.org/user/227761"
  5033. }
  5034. ],
  5035. "description": "Entity Reference Revisions",
  5036. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  5037. "support": {
  5038. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  5039. }
  5040. },
  5041. {
  5042. "name": "drupal/entity_type_clone",
  5043. "version": "1.7.0",
  5044. "source": {
  5045. "type": "git",
  5046. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  5047. "reference": "8.x-1.7"
  5048. },
  5049. "dist": {
  5050. "type": "zip",
  5051. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-8.x-1.7.zip",
  5052. "reference": "8.x-1.7",
  5053. "shasum": "cad1536cbae4dd069bc78230fcd418ea07a6513c"
  5054. },
  5055. "require": {
  5056. "drupal/core": "^8 || ^9"
  5057. },
  5058. "type": "drupal-module",
  5059. "extra": {
  5060. "drupal": {
  5061. "version": "8.x-1.7",
  5062. "datestamp": "1621579347",
  5063. "security-coverage": {
  5064. "status": "covered",
  5065. "message": "Covered by Drupal's security advisory policy"
  5066. }
  5067. }
  5068. },
  5069. "notification-url": "https://packages.drupal.org/8/downloads",
  5070. "license": [
  5071. "GPL-2.0-or-later"
  5072. ],
  5073. "authors": [
  5074. {
  5075. "name": "ajay_reddy",
  5076. "homepage": "https://www.drupal.org/user/3261994"
  5077. },
  5078. {
  5079. "name": "vuil",
  5080. "homepage": "https://www.drupal.org/user/3568458"
  5081. }
  5082. ],
  5083. "description": "This module provide option to clone entity types.",
  5084. "homepage": "https://www.drupal.org/project/entity_type_clone",
  5085. "support": {
  5086. "source": "https://git.drupalcode.org/project/entity_type_clone"
  5087. }
  5088. },
  5089. {
  5090. "name": "drupal/extlink",
  5091. "version": "1.6.0",
  5092. "source": {
  5093. "type": "git",
  5094. "url": "https://git.drupalcode.org/project/extlink.git",
  5095. "reference": "8.x-1.6"
  5096. },
  5097. "dist": {
  5098. "type": "zip",
  5099. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.6.zip",
  5100. "reference": "8.x-1.6",
  5101. "shasum": "92c2794b1d5ece7978f5f6fa37f719c0b37d470e"
  5102. },
  5103. "require": {
  5104. "drupal/core": "^8 || ^9"
  5105. },
  5106. "type": "drupal-module",
  5107. "extra": {
  5108. "drupal": {
  5109. "version": "8.x-1.6",
  5110. "datestamp": "1615218226",
  5111. "security-coverage": {
  5112. "status": "covered",
  5113. "message": "Covered by Drupal's security advisory policy"
  5114. }
  5115. }
  5116. },
  5117. "notification-url": "https://packages.drupal.org/8/downloads",
  5118. "license": [
  5119. "GPL-2.0-or-later"
  5120. ],
  5121. "authors": [
  5122. {
  5123. "name": "Nate Lampton",
  5124. "homepage": "https://www.drupal.org/u/quicksketch",
  5125. "role": "Maintainer"
  5126. },
  5127. {
  5128. "name": "Lachlan Ennis",
  5129. "homepage": "https://www.drupal.org/u/elachlan",
  5130. "role": "Maintainer"
  5131. },
  5132. {
  5133. "name": "Neslee Canil Pinto",
  5134. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  5135. "role": "Maintainer"
  5136. }
  5137. ],
  5138. "description": "Modify behavior and appearance of external links.",
  5139. "homepage": "https://www.drupal.org/project/extlink",
  5140. "keywords": [
  5141. "Drupal",
  5142. "External Links"
  5143. ],
  5144. "support": {
  5145. "source": "https://git.drupalcode.org/project/extlink",
  5146. "issues": "https://www.drupal.org/project/issues/extlink"
  5147. }
  5148. },
  5149. {
  5150. "name": "drupal/field_group",
  5151. "version": "dev-3.x",
  5152. "source": {
  5153. "type": "git",
  5154. "url": "https://git.drupalcode.org/project/field_group.git",
  5155. "reference": "f9a93f0d06b4fb354015e2b380492a5ddedd009e"
  5156. },
  5157. "require": {
  5158. "drupal/core": "^8.8 || ^9"
  5159. },
  5160. "require-dev": {
  5161. "drupal/jquery_ui_accordion": "^1.0"
  5162. },
  5163. "type": "drupal-module",
  5164. "extra": {
  5165. "branch-alias": {
  5166. "dev-3.x": "3.x-dev"
  5167. },
  5168. "drupal": {
  5169. "version": "8.x-3.2+6-dev",
  5170. "datestamp": "1634760756",
  5171. "security-coverage": {
  5172. "status": "not-covered",
  5173. "message": "Dev releases are not covered by Drupal security advisories."
  5174. }
  5175. }
  5176. },
  5177. "notification-url": "https://packages.drupal.org/8/downloads",
  5178. "license": [
  5179. "GPL-2.0-or-later"
  5180. ],
  5181. "authors": [
  5182. {
  5183. "name": "Hydra",
  5184. "homepage": "https://www.drupal.org/user/647364"
  5185. },
  5186. {
  5187. "name": "Stalski",
  5188. "homepage": "https://www.drupal.org/user/322618"
  5189. },
  5190. {
  5191. "name": "jyve",
  5192. "homepage": "https://www.drupal.org/user/591438"
  5193. },
  5194. {
  5195. "name": "nils.destoop",
  5196. "homepage": "https://www.drupal.org/user/361625"
  5197. },
  5198. {
  5199. "name": "swentel",
  5200. "homepage": "https://www.drupal.org/user/107403"
  5201. }
  5202. ],
  5203. "description": "Provides the field_group module.",
  5204. "homepage": "https://www.drupal.org/project/field_group",
  5205. "support": {
  5206. "source": "https://git.drupalcode.org/project/field_group",
  5207. "issues": "https://www.drupal.org/project/issues/field_group"
  5208. }
  5209. },
  5210. {
  5211. "name": "drupal/file_mdm",
  5212. "version": "2.1.0",
  5213. "source": {
  5214. "type": "git",
  5215. "url": "https://git.drupalcode.org/project/file_mdm.git",
  5216. "reference": "8.x-2.1"
  5217. },
  5218. "dist": {
  5219. "type": "zip",
  5220. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  5221. "reference": "8.x-2.1",
  5222. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  5223. },
  5224. "require": {
  5225. "drupal/core": "^8.8 || ^9",
  5226. "lsolesen/pel": "^0.9.8",
  5227. "phenx/php-font-lib": "^0.5.2",
  5228. "php": ">=7"
  5229. },
  5230. "require-dev": {
  5231. "drupal/image_effects": "*"
  5232. },
  5233. "type": "drupal-module",
  5234. "extra": {
  5235. "drupal": {
  5236. "version": "8.x-2.1",
  5237. "datestamp": "1586801064",
  5238. "security-coverage": {
  5239. "status": "covered",
  5240. "message": "Covered by Drupal's security advisory policy"
  5241. }
  5242. }
  5243. },
  5244. "notification-url": "https://packages.drupal.org/8/downloads",
  5245. "license": [
  5246. "GPL-2.0-or-later"
  5247. ],
  5248. "authors": [
  5249. {
  5250. "name": "mondrake",
  5251. "homepage": "https://www.drupal.org/user/1307444"
  5252. }
  5253. ],
  5254. "description": "Provides a service to manage file metadata.",
  5255. "homepage": "https://www.drupal.org/project/file_mdm",
  5256. "support": {
  5257. "source": "https://git.drupalcode.org/project/file_mdm"
  5258. }
  5259. },
  5260. {
  5261. "name": "drupal/filefield_sources",
  5262. "version": "dev-1.x",
  5263. "source": {
  5264. "type": "git",
  5265. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5266. "reference": "12a9918a4e2e31ff10c127766610bfbac13d6487"
  5267. },
  5268. "require": {
  5269. "drupal/core": "^8 || ^9"
  5270. },
  5271. "require-dev": {
  5272. "drupal/imce": "^2.3"
  5273. },
  5274. "type": "drupal-module",
  5275. "extra": {
  5276. "branch-alias": {
  5277. "dev-1.x": "1.x-dev"
  5278. },
  5279. "drupal": {
  5280. "version": "8.x-1.0-alpha4+4-dev",
  5281. "datestamp": "1620787542",
  5282. "security-coverage": {
  5283. "status": "not-covered",
  5284. "message": "Dev releases are not covered by Drupal security advisories."
  5285. }
  5286. }
  5287. },
  5288. "notification-url": "https://packages.drupal.org/8/downloads",
  5289. "license": [
  5290. "GPL-2.0-or-later"
  5291. ],
  5292. "authors": [
  5293. {
  5294. "name": "Nate Lampton (quicksketch)",
  5295. "homepage": "https://www.drupal.org/u/quicksketch",
  5296. "role": "Maintainer"
  5297. },
  5298. {
  5299. "name": "Andrey Khromyshev (profak)",
  5300. "homepage": "https://www.drupal.org/u/profak",
  5301. "role": "Maintainer"
  5302. },
  5303. {
  5304. "name": "David Valdez (gnuget)",
  5305. "homepage": "https://www.drupal.org/u/gnuget",
  5306. "role": "Maintainer"
  5307. }
  5308. ],
  5309. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5310. "homepage": "https://www.drupal.org/project/filefield_sources",
  5311. "support": {
  5312. "source": "https://git.drupalcode.org/project/filefield_sources",
  5313. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5314. "irc": "irc://irc.freenode.org/drupal-contribute"
  5315. }
  5316. },
  5317. {
  5318. "name": "drupal/filter_perms",
  5319. "version": "dev-1.x",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5323. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5324. },
  5325. "require": {
  5326. "drupal/core": "^8 || ^9"
  5327. },
  5328. "type": "drupal-module",
  5329. "extra": {
  5330. "branch-alias": {
  5331. "dev-1.x": "1.x-dev"
  5332. },
  5333. "drupal": {
  5334. "version": "8.x-1.0-alpha1+2-dev",
  5335. "datestamp": "1599239698",
  5336. "security-coverage": {
  5337. "status": "not-covered",
  5338. "message": "Dev releases are not covered by Drupal security advisories."
  5339. }
  5340. }
  5341. },
  5342. "notification-url": "https://packages.drupal.org/8/downloads",
  5343. "license": [
  5344. "GPL-2.0-or-later"
  5345. ],
  5346. "authors": [
  5347. {
  5348. "name": "cYu",
  5349. "homepage": "https://www.drupal.org/user/202205"
  5350. },
  5351. {
  5352. "name": "deekayen",
  5353. "homepage": "https://www.drupal.org/user/972"
  5354. },
  5355. {
  5356. "name": "ivagold",
  5357. "homepage": "https://www.drupal.org/user/3061533"
  5358. },
  5359. {
  5360. "name": "mgbellaire",
  5361. "homepage": "https://www.drupal.org/user/1831932"
  5362. },
  5363. {
  5364. "name": "willzyx",
  5365. "homepage": "https://www.drupal.org/user/1043862"
  5366. }
  5367. ],
  5368. "description": "Provides role and module filters to simplify the user permissions page.",
  5369. "homepage": "https://www.drupal.org/project/filter_perms",
  5370. "support": {
  5371. "source": "https://git.drupalcode.org/project/filter_perms"
  5372. }
  5373. },
  5374. {
  5375. "name": "drupal/honeypot",
  5376. "version": "2.0.1",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://git.drupalcode.org/project/honeypot.git",
  5380. "reference": "2.0.1"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5385. "reference": "2.0.1",
  5386. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5387. },
  5388. "require": {
  5389. "drupal/core": "^8.0 || ^9.0"
  5390. },
  5391. "type": "drupal-module",
  5392. "extra": {
  5393. "drupal": {
  5394. "version": "2.0.1",
  5395. "datestamp": "1597855128",
  5396. "security-coverage": {
  5397. "status": "covered",
  5398. "message": "Covered by Drupal's security advisory policy"
  5399. }
  5400. }
  5401. },
  5402. "notification-url": "https://packages.drupal.org/8/downloads",
  5403. "license": [
  5404. "GPL-2.0-or-later"
  5405. ],
  5406. "authors": [
  5407. {
  5408. "name": "Jeff Geerling",
  5409. "homepage": "https://www.drupal.org/user/213194",
  5410. "email": "geerlingguy@mac.com"
  5411. },
  5412. {
  5413. "name": "TR",
  5414. "homepage": "https://www.drupal.org/user/202830"
  5415. },
  5416. {
  5417. "name": "geerlingguy",
  5418. "homepage": "https://www.drupal.org/user/389011"
  5419. },
  5420. {
  5421. "name": "vijaycs85",
  5422. "homepage": "https://www.drupal.org/user/93488"
  5423. }
  5424. ],
  5425. "description": "Mitigates spam form submissions using the honeypot method.",
  5426. "homepage": "https://www.drupal.org/project/honeypot",
  5427. "keywords": [
  5428. "deterrent",
  5429. "form",
  5430. "honeypot",
  5431. "honeytrap",
  5432. "php",
  5433. "spam"
  5434. ],
  5435. "support": {
  5436. "source": "https://git.drupalcode.org/project/honeypot",
  5437. "issues": "https://www.drupal.org/project/issues/honeypot"
  5438. }
  5439. },
  5440. {
  5441. "name": "drupal/image_delta_formatter",
  5442. "version": "1.1.0",
  5443. "source": {
  5444. "type": "git",
  5445. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  5446. "reference": "8.x-1.1"
  5447. },
  5448. "dist": {
  5449. "type": "zip",
  5450. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.1.zip",
  5451. "reference": "8.x-1.1",
  5452. "shasum": "abe73ff63f3fb553e1aa0da721bfb72248f8da7f"
  5453. },
  5454. "require": {
  5455. "drupal/core": "^8 || ^9"
  5456. },
  5457. "type": "drupal-module",
  5458. "extra": {
  5459. "drupal": {
  5460. "version": "8.x-1.1",
  5461. "datestamp": "1595075220",
  5462. "security-coverage": {
  5463. "status": "covered",
  5464. "message": "Covered by Drupal's security advisory policy"
  5465. }
  5466. }
  5467. },
  5468. "notification-url": "https://packages.drupal.org/8/downloads",
  5469. "license": [
  5470. "GPL-2.0-or-later"
  5471. ],
  5472. "authors": [
  5473. {
  5474. "name": "bojanz",
  5475. "homepage": "https://www.drupal.org/user/86106"
  5476. },
  5477. {
  5478. "name": "fgm",
  5479. "homepage": "https://www.drupal.org/user/27985"
  5480. },
  5481. {
  5482. "name": "jsacksick",
  5483. "homepage": "https://www.drupal.org/user/972218"
  5484. },
  5485. {
  5486. "name": "mglaman",
  5487. "homepage": "https://www.drupal.org/user/2416470"
  5488. }
  5489. ],
  5490. "description": "Provides a formatter that displays a specific delta of a multivalue imagefield.",
  5491. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  5492. "support": {
  5493. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  5494. }
  5495. },
  5496. {
  5497. "name": "drupal/imagemagick",
  5498. "version": "3.2.0",
  5499. "source": {
  5500. "type": "git",
  5501. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5502. "reference": "8.x-3.2"
  5503. },
  5504. "dist": {
  5505. "type": "zip",
  5506. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.2.zip",
  5507. "reference": "8.x-3.2",
  5508. "shasum": "35346cda3bb9c989387a282dd7f7bb4da4f70fce"
  5509. },
  5510. "require": {
  5511. "drupal/core": "^8.9 || ^9.1",
  5512. "drupal/file_mdm": "^2",
  5513. "drupal/sophron": "^1",
  5514. "php": ">=7.1"
  5515. },
  5516. "type": "drupal-module",
  5517. "extra": {
  5518. "drupal": {
  5519. "version": "8.x-3.2",
  5520. "datestamp": "1622711751",
  5521. "security-coverage": {
  5522. "status": "covered",
  5523. "message": "Covered by Drupal's security advisory policy"
  5524. }
  5525. }
  5526. },
  5527. "notification-url": "https://packages.drupal.org/8/downloads",
  5528. "license": [
  5529. "GPL-2.0-or-later"
  5530. ],
  5531. "authors": [
  5532. {
  5533. "name": "Chris Charlton",
  5534. "homepage": "https://www.drupal.org/user/17089"
  5535. },
  5536. {
  5537. "name": "chx",
  5538. "homepage": "https://www.drupal.org/user/9446"
  5539. },
  5540. {
  5541. "name": "claudiu.cristea",
  5542. "homepage": "https://www.drupal.org/user/56348"
  5543. },
  5544. {
  5545. "name": "dman",
  5546. "homepage": "https://www.drupal.org/user/33240"
  5547. },
  5548. {
  5549. "name": "dopry",
  5550. "homepage": "https://www.drupal.org/user/22202"
  5551. },
  5552. {
  5553. "name": "drewish",
  5554. "homepage": "https://www.drupal.org/user/34869"
  5555. },
  5556. {
  5557. "name": "gdl",
  5558. "homepage": "https://www.drupal.org/user/507326"
  5559. },
  5560. {
  5561. "name": "mondrake",
  5562. "homepage": "https://www.drupal.org/user/1307444"
  5563. },
  5564. {
  5565. "name": "quicksketch",
  5566. "homepage": "https://www.drupal.org/user/35821"
  5567. },
  5568. {
  5569. "name": "sun",
  5570. "homepage": "https://www.drupal.org/user/54136"
  5571. },
  5572. {
  5573. "name": "walkah",
  5574. "homepage": "https://www.drupal.org/user/1531"
  5575. }
  5576. ],
  5577. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5578. "homepage": "https://www.drupal.org/project/imagemagick",
  5579. "support": {
  5580. "source": "https://git.drupalcode.org/project/imagemagick"
  5581. }
  5582. },
  5583. {
  5584. "name": "drupal/inline_entity_form",
  5585. "version": "1.0.0-rc9",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5589. "reference": "8.x-1.0-rc9"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc9.zip",
  5594. "reference": "8.x-1.0-rc9",
  5595. "shasum": "78953103a9c6e4e44bc877820a35f39913ea4559"
  5596. },
  5597. "require": {
  5598. "drupal/core": "^8.8 || ^9",
  5599. "php": ">=7.1"
  5600. },
  5601. "require-dev": {
  5602. "drupal/entity_reference_revisions": "^1.0"
  5603. },
  5604. "type": "drupal-module",
  5605. "extra": {
  5606. "drupal": {
  5607. "version": "8.x-1.0-rc9",
  5608. "datestamp": "1618174486",
  5609. "security-coverage": {
  5610. "status": "not-covered",
  5611. "message": "RC releases are not covered by Drupal security advisories."
  5612. }
  5613. }
  5614. },
  5615. "notification-url": "https://packages.drupal.org/8/downloads",
  5616. "license": [
  5617. "GPL-2.0-or-later"
  5618. ],
  5619. "authors": [
  5620. {
  5621. "name": "bojanz",
  5622. "homepage": "https://www.drupal.org/user/86106"
  5623. },
  5624. {
  5625. "name": "dawehner",
  5626. "homepage": "https://www.drupal.org/user/99340"
  5627. },
  5628. {
  5629. "name": "geek-merlin",
  5630. "homepage": "https://www.drupal.org/user/229048"
  5631. },
  5632. {
  5633. "name": "joachim",
  5634. "homepage": "https://www.drupal.org/user/107701"
  5635. },
  5636. {
  5637. "name": "jsacksick",
  5638. "homepage": "https://www.drupal.org/user/972218"
  5639. },
  5640. {
  5641. "name": "kaythay",
  5642. "homepage": "https://www.drupal.org/user/2182186"
  5643. },
  5644. {
  5645. "name": "oknate",
  5646. "homepage": "https://www.drupal.org/user/471638"
  5647. },
  5648. {
  5649. "name": "rszrama",
  5650. "homepage": "https://www.drupal.org/user/49344"
  5651. },
  5652. {
  5653. "name": "slashrsm",
  5654. "homepage": "https://www.drupal.org/user/744628"
  5655. },
  5656. {
  5657. "name": "webflo",
  5658. "homepage": "https://www.drupal.org/user/254778"
  5659. }
  5660. ],
  5661. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5662. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5663. "support": {
  5664. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5665. }
  5666. },
  5667. {
  5668. "name": "drupal/jquery_ui",
  5669. "version": "1.4.0",
  5670. "source": {
  5671. "type": "git",
  5672. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5673. "reference": "8.x-1.4"
  5674. },
  5675. "dist": {
  5676. "type": "zip",
  5677. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5678. "reference": "8.x-1.4",
  5679. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5680. },
  5681. "require": {
  5682. "drupal/core": "^8 || ^9"
  5683. },
  5684. "type": "drupal-module",
  5685. "extra": {
  5686. "drupal": {
  5687. "version": "8.x-1.4",
  5688. "datestamp": "1582149957",
  5689. "security-coverage": {
  5690. "status": "covered",
  5691. "message": "Covered by Drupal's security advisory policy"
  5692. }
  5693. }
  5694. },
  5695. "notification-url": "https://packages.drupal.org/8/downloads",
  5696. "license": [
  5697. "GPL-2.0-or-later"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "RobLoach",
  5702. "homepage": "https://www.drupal.org/user/61114"
  5703. },
  5704. {
  5705. "name": "jjeff",
  5706. "homepage": "https://www.drupal.org/user/17190"
  5707. },
  5708. {
  5709. "name": "lauriii",
  5710. "homepage": "https://www.drupal.org/user/1078742"
  5711. },
  5712. {
  5713. "name": "litwol",
  5714. "homepage": "https://www.drupal.org/user/78134"
  5715. },
  5716. {
  5717. "name": "mfb",
  5718. "homepage": "https://www.drupal.org/user/12302"
  5719. },
  5720. {
  5721. "name": "mfer",
  5722. "homepage": "https://www.drupal.org/user/25701"
  5723. },
  5724. {
  5725. "name": "mikelutz",
  5726. "homepage": "https://www.drupal.org/user/2972409"
  5727. },
  5728. {
  5729. "name": "sun",
  5730. "homepage": "https://www.drupal.org/user/54136"
  5731. },
  5732. {
  5733. "name": "webchick",
  5734. "homepage": "https://www.drupal.org/user/24967"
  5735. },
  5736. {
  5737. "name": "zrpnr",
  5738. "homepage": "https://www.drupal.org/user/1448368"
  5739. }
  5740. ],
  5741. "description": "Provides jQuery UI library.",
  5742. "homepage": "https://www.drupal.org/project/jquery_ui",
  5743. "support": {
  5744. "source": "https://git.drupalcode.org/project/jquery_ui"
  5745. }
  5746. },
  5747. {
  5748. "name": "drupal/jquery_ui_button",
  5749. "version": "1.1.0",
  5750. "source": {
  5751. "type": "git",
  5752. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5753. "reference": "8.x-1.1"
  5754. },
  5755. "dist": {
  5756. "type": "zip",
  5757. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5758. "reference": "8.x-1.1",
  5759. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5760. },
  5761. "require": {
  5762. "drupal/core": "^8 || ^9",
  5763. "drupal/jquery_ui": "*",
  5764. "drupal/jquery_ui_checkboxradio": "*",
  5765. "drupal/jquery_ui_controlgroup": "*"
  5766. },
  5767. "type": "drupal-module",
  5768. "extra": {
  5769. "drupal": {
  5770. "version": "8.x-1.1",
  5771. "datestamp": "1584106807",
  5772. "security-coverage": {
  5773. "status": "covered",
  5774. "message": "Covered by Drupal's security advisory policy"
  5775. }
  5776. }
  5777. },
  5778. "notification-url": "https://packages.drupal.org/8/downloads",
  5779. "license": [
  5780. "GPL-2.0-or-later"
  5781. ],
  5782. "authors": [
  5783. {
  5784. "name": "bnjmnm",
  5785. "homepage": "https://www.drupal.org/user/2369194"
  5786. },
  5787. {
  5788. "name": "lauriii",
  5789. "homepage": "https://www.drupal.org/user/1078742"
  5790. },
  5791. {
  5792. "name": "zrpnr",
  5793. "homepage": "https://www.drupal.org/user/1448368"
  5794. }
  5795. ],
  5796. "description": "Provides jQuery UI Button library.",
  5797. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5798. "support": {
  5799. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5800. }
  5801. },
  5802. {
  5803. "name": "drupal/jquery_ui_checkboxradio",
  5804. "version": "1.2.0",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5808. "reference": "8.x-1.2"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5813. "reference": "8.x-1.2",
  5814. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5815. },
  5816. "require": {
  5817. "drupal/core": "^8 || ^9",
  5818. "drupal/jquery_ui": "*"
  5819. },
  5820. "type": "drupal-module",
  5821. "extra": {
  5822. "drupal": {
  5823. "version": "8.x-1.2",
  5824. "datestamp": "1584106406",
  5825. "security-coverage": {
  5826. "status": "covered",
  5827. "message": "Covered by Drupal's security advisory policy"
  5828. }
  5829. }
  5830. },
  5831. "notification-url": "https://packages.drupal.org/8/downloads",
  5832. "license": [
  5833. "GPL-2.0-or-later"
  5834. ],
  5835. "authors": [
  5836. {
  5837. "name": "bnjmnm",
  5838. "homepage": "https://www.drupal.org/user/2369194"
  5839. },
  5840. {
  5841. "name": "lauriii",
  5842. "homepage": "https://www.drupal.org/user/1078742"
  5843. },
  5844. {
  5845. "name": "zrpnr",
  5846. "homepage": "https://www.drupal.org/user/1448368"
  5847. }
  5848. ],
  5849. "description": "Provides jQuery UI Checkboxradio library.",
  5850. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5851. "support": {
  5852. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5853. }
  5854. },
  5855. {
  5856. "name": "drupal/jquery_ui_controlgroup",
  5857. "version": "1.1.0",
  5858. "source": {
  5859. "type": "git",
  5860. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5861. "reference": "8.x-1.1"
  5862. },
  5863. "dist": {
  5864. "type": "zip",
  5865. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5866. "reference": "8.x-1.1",
  5867. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5868. },
  5869. "require": {
  5870. "drupal/core": "^8 || ^9",
  5871. "drupal/jquery_ui": "*"
  5872. },
  5873. "type": "drupal-module",
  5874. "extra": {
  5875. "drupal": {
  5876. "version": "8.x-1.1",
  5877. "datestamp": "1584106616",
  5878. "security-coverage": {
  5879. "status": "covered",
  5880. "message": "Covered by Drupal's security advisory policy"
  5881. }
  5882. }
  5883. },
  5884. "notification-url": "https://packages.drupal.org/8/downloads",
  5885. "license": [
  5886. "GPL-2.0-or-later"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "bnjmnm",
  5891. "homepage": "https://www.drupal.org/user/2369194"
  5892. },
  5893. {
  5894. "name": "lauriii",
  5895. "homepage": "https://www.drupal.org/user/1078742"
  5896. },
  5897. {
  5898. "name": "zrpnr",
  5899. "homepage": "https://www.drupal.org/user/1448368"
  5900. }
  5901. ],
  5902. "description": "Provides jQuery UI Controlgroup library.",
  5903. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5904. "support": {
  5905. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5906. }
  5907. },
  5908. {
  5909. "name": "drupal/jquery_ui_datepicker",
  5910. "version": "1.1.0",
  5911. "source": {
  5912. "type": "git",
  5913. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5914. "reference": "8.x-1.1"
  5915. },
  5916. "dist": {
  5917. "type": "zip",
  5918. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.1.zip",
  5919. "reference": "8.x-1.1",
  5920. "shasum": "69f62467f846bb514a10fa93f4c3b34c6275353f"
  5921. },
  5922. "require": {
  5923. "drupal/core": "^8 || ^9",
  5924. "drupal/jquery_ui": "*"
  5925. },
  5926. "type": "drupal-module",
  5927. "extra": {
  5928. "drupal": {
  5929. "version": "8.x-1.1",
  5930. "datestamp": "1615962535",
  5931. "security-coverage": {
  5932. "status": "covered",
  5933. "message": "Covered by Drupal's security advisory policy"
  5934. }
  5935. }
  5936. },
  5937. "notification-url": "https://packages.drupal.org/8/downloads",
  5938. "license": [
  5939. "GPL-2.0-or-later"
  5940. ],
  5941. "authors": [
  5942. {
  5943. "name": "bnjmnm",
  5944. "homepage": "https://www.drupal.org/user/2369194"
  5945. },
  5946. {
  5947. "name": "ivnish",
  5948. "homepage": "https://www.drupal.org/user/3547706"
  5949. },
  5950. {
  5951. "name": "jrockowitz",
  5952. "homepage": "https://www.drupal.org/user/371407"
  5953. },
  5954. {
  5955. "name": "lauriii",
  5956. "homepage": "https://www.drupal.org/user/1078742"
  5957. },
  5958. {
  5959. "name": "zrpnr",
  5960. "homepage": "https://www.drupal.org/user/1448368"
  5961. }
  5962. ],
  5963. "description": "Provides jQuery UI Datepicker library.",
  5964. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5965. "support": {
  5966. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5967. }
  5968. },
  5969. {
  5970. "name": "drupal/jquery_ui_draggable",
  5971. "version": "1.2.0",
  5972. "source": {
  5973. "type": "git",
  5974. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5975. "reference": "8.x-1.2"
  5976. },
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  5980. "reference": "8.x-1.2",
  5981. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  5982. },
  5983. "require": {
  5984. "drupal/core": "^8 || ^9",
  5985. "drupal/jquery_ui": "*"
  5986. },
  5987. "type": "drupal-module",
  5988. "extra": {
  5989. "drupal": {
  5990. "version": "8.x-1.2",
  5991. "datestamp": "1582150027",
  5992. "security-coverage": {
  5993. "status": "covered",
  5994. "message": "Covered by Drupal's security advisory policy"
  5995. }
  5996. }
  5997. },
  5998. "notification-url": "https://packages.drupal.org/8/downloads",
  5999. "license": [
  6000. "GPL-2.0-or-later"
  6001. ],
  6002. "authors": [
  6003. {
  6004. "name": "bnjmnm",
  6005. "homepage": "https://www.drupal.org/user/2369194"
  6006. },
  6007. {
  6008. "name": "lauriii",
  6009. "homepage": "https://www.drupal.org/user/1078742"
  6010. },
  6011. {
  6012. "name": "zrpnr",
  6013. "homepage": "https://www.drupal.org/user/1448368"
  6014. }
  6015. ],
  6016. "description": "Provides jQuery UI Draggable library.",
  6017. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  6018. "support": {
  6019. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  6020. }
  6021. },
  6022. {
  6023. "name": "drupal/jquery_ui_droppable",
  6024. "version": "1.2.0",
  6025. "source": {
  6026. "type": "git",
  6027. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  6028. "reference": "8.x-1.2"
  6029. },
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  6033. "reference": "8.x-1.2",
  6034. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  6035. },
  6036. "require": {
  6037. "drupal/core": "^8 || ^9",
  6038. "drupal/jquery_ui": "*",
  6039. "drupal/jquery_ui_draggable": "*"
  6040. },
  6041. "type": "drupal-module",
  6042. "extra": {
  6043. "drupal": {
  6044. "version": "8.x-1.2",
  6045. "datestamp": "1582150071",
  6046. "security-coverage": {
  6047. "status": "covered",
  6048. "message": "Covered by Drupal's security advisory policy"
  6049. }
  6050. }
  6051. },
  6052. "notification-url": "https://packages.drupal.org/8/downloads",
  6053. "license": [
  6054. "GPL-2.0-or-later"
  6055. ],
  6056. "authors": [
  6057. {
  6058. "name": "bnjmnm",
  6059. "homepage": "https://www.drupal.org/user/2369194"
  6060. },
  6061. {
  6062. "name": "lauriii",
  6063. "homepage": "https://www.drupal.org/user/1078742"
  6064. },
  6065. {
  6066. "name": "zrpnr",
  6067. "homepage": "https://www.drupal.org/user/1448368"
  6068. }
  6069. ],
  6070. "description": "Provides jQuery UI Droppable library.",
  6071. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  6072. "support": {
  6073. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  6074. }
  6075. },
  6076. {
  6077. "name": "drupal/jquery_ui_slider",
  6078. "version": "1.1.0",
  6079. "source": {
  6080. "type": "git",
  6081. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  6082. "reference": "8.x-1.1"
  6083. },
  6084. "dist": {
  6085. "type": "zip",
  6086. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  6087. "reference": "8.x-1.1",
  6088. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  6089. },
  6090. "require": {
  6091. "drupal/core": "^8 || ^9",
  6092. "drupal/jquery_ui": "*"
  6093. },
  6094. "type": "drupal-module",
  6095. "extra": {
  6096. "drupal": {
  6097. "version": "8.x-1.1",
  6098. "datestamp": "1584107817",
  6099. "security-coverage": {
  6100. "status": "covered",
  6101. "message": "Covered by Drupal's security advisory policy"
  6102. }
  6103. }
  6104. },
  6105. "notification-url": "https://packages.drupal.org/8/downloads",
  6106. "license": [
  6107. "GPL-2.0-or-later"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "bnjmnm",
  6112. "homepage": "https://www.drupal.org/user/2369194"
  6113. },
  6114. {
  6115. "name": "lauriii",
  6116. "homepage": "https://www.drupal.org/user/1078742"
  6117. },
  6118. {
  6119. "name": "zrpnr",
  6120. "homepage": "https://www.drupal.org/user/1448368"
  6121. }
  6122. ],
  6123. "description": "Provides jQuery UI Slider library.",
  6124. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  6125. "support": {
  6126. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  6127. }
  6128. },
  6129. {
  6130. "name": "drupal/jquery_ui_touch_punch",
  6131. "version": "1.0.0",
  6132. "source": {
  6133. "type": "git",
  6134. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  6135. "reference": "1.0.0"
  6136. },
  6137. "dist": {
  6138. "type": "zip",
  6139. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  6140. "reference": "1.0.0",
  6141. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  6142. },
  6143. "require": {
  6144. "drupal/core": "^8 || ^9",
  6145. "drupal/jquery_ui": "^1.0"
  6146. },
  6147. "suggest": {
  6148. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  6149. },
  6150. "type": "drupal-module",
  6151. "extra": {
  6152. "drupal": {
  6153. "version": "1.0.0",
  6154. "datestamp": "1591893292",
  6155. "security-coverage": {
  6156. "status": "not-covered",
  6157. "message": "Project has not opted into security advisory coverage!"
  6158. }
  6159. }
  6160. },
  6161. "notification-url": "https://packages.drupal.org/8/downloads",
  6162. "license": [
  6163. "GPL-2.0+"
  6164. ],
  6165. "authors": [
  6166. {
  6167. "name": "Naveen Valecha",
  6168. "homepage": "https://drupal.org/u/naveenvalecha",
  6169. "role": "Maintainer"
  6170. }
  6171. ],
  6172. "description": "Provides jQuery UI Touch Punch library.",
  6173. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6174. "keywords": [
  6175. "Drupal",
  6176. "jquery_ui_touch_punch"
  6177. ],
  6178. "support": {
  6179. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6180. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  6181. "irc": "irc://irc.freenode.org/drupal-contribute"
  6182. }
  6183. },
  6184. {
  6185. "name": "drupal/link_attributes",
  6186. "version": "1.11.0",
  6187. "source": {
  6188. "type": "git",
  6189. "url": "https://git.drupalcode.org/project/link_attributes.git",
  6190. "reference": "8.x-1.11"
  6191. },
  6192. "dist": {
  6193. "type": "zip",
  6194. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  6195. "reference": "8.x-1.11",
  6196. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  6197. },
  6198. "require": {
  6199. "drupal/core": "^8 || ^9"
  6200. },
  6201. "type": "drupal-module",
  6202. "extra": {
  6203. "drupal": {
  6204. "version": "8.x-1.11",
  6205. "datestamp": "1598323550",
  6206. "security-coverage": {
  6207. "status": "covered",
  6208. "message": "Covered by Drupal's security advisory policy"
  6209. }
  6210. }
  6211. },
  6212. "notification-url": "https://packages.drupal.org/8/downloads",
  6213. "license": [
  6214. "GPL-2.0-or-later"
  6215. ],
  6216. "authors": [
  6217. {
  6218. "name": "larowlan",
  6219. "homepage": "https://www.drupal.org/user/395439"
  6220. }
  6221. ],
  6222. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6223. "homepage": "https://www.drupal.org/project/link_attributes",
  6224. "support": {
  6225. "source": "https://git.drupalcode.org/project/link_attributes"
  6226. }
  6227. },
  6228. {
  6229. "name": "drupal/linked_field",
  6230. "version": "1.3.0",
  6231. "source": {
  6232. "type": "git",
  6233. "url": "https://git.drupalcode.org/project/linked_field.git",
  6234. "reference": "8.x-1.3"
  6235. },
  6236. "dist": {
  6237. "type": "zip",
  6238. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.3.zip",
  6239. "reference": "8.x-1.3",
  6240. "shasum": "0350c415eba6ff63d9fc8f3a162564dd4c2142e2"
  6241. },
  6242. "require": {
  6243. "drupal/core": "^8 || ^9"
  6244. },
  6245. "type": "drupal-module",
  6246. "extra": {
  6247. "drupal": {
  6248. "version": "8.x-1.3",
  6249. "datestamp": "1583855735",
  6250. "security-coverage": {
  6251. "status": "covered",
  6252. "message": "Covered by Drupal's security advisory policy"
  6253. }
  6254. }
  6255. },
  6256. "notification-url": "https://packages.drupal.org/8/downloads",
  6257. "license": [
  6258. "GPL-2.0-or-later"
  6259. ],
  6260. "authors": [
  6261. {
  6262. "name": "hubdrop",
  6263. "homepage": "https://www.drupal.org/user/2750597"
  6264. },
  6265. {
  6266. "name": "yannickoo",
  6267. "homepage": "https://www.drupal.org/user/531118"
  6268. }
  6269. ],
  6270. "description": "Adds the functionality to link fields to a specific destination.",
  6271. "homepage": "https://www.drupal.org/project/linked_field",
  6272. "support": {
  6273. "source": "https://git.drupalcode.org/project/linked_field"
  6274. }
  6275. },
  6276. {
  6277. "name": "drupal/linkit",
  6278. "version": "5.0.0-beta13",
  6279. "source": {
  6280. "type": "git",
  6281. "url": "https://git.drupalcode.org/project/linkit.git",
  6282. "reference": "8.x-5.0-beta13"
  6283. },
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta13.zip",
  6287. "reference": "8.x-5.0-beta13",
  6288. "shasum": "9215fbea84166cabc9b7a2d9a04dedaffb9fc1ed"
  6289. },
  6290. "require": {
  6291. "drupal/core": "^8.7.7 || ^9"
  6292. },
  6293. "require-dev": {
  6294. "drupal/imce": "*"
  6295. },
  6296. "type": "drupal-module",
  6297. "extra": {
  6298. "drupal": {
  6299. "version": "8.x-5.0-beta13",
  6300. "datestamp": "1632933670",
  6301. "security-coverage": {
  6302. "status": "not-covered",
  6303. "message": "Beta releases are not covered by Drupal security advisories."
  6304. }
  6305. }
  6306. },
  6307. "notification-url": "https://packages.drupal.org/8/downloads",
  6308. "license": [
  6309. "GPL-2.0-or-later"
  6310. ],
  6311. "authors": [
  6312. {
  6313. "name": "Emil Stjerneman",
  6314. "homepage": "https://stjerneman.com",
  6315. "email": "emil@stjerneman.com",
  6316. "role": "Maintainer"
  6317. },
  6318. {
  6319. "name": "johnwebdev",
  6320. "homepage": "https://www.drupal.org/user/3331569"
  6321. }
  6322. ],
  6323. "description": "Linkit - Enriched linking experience",
  6324. "homepage": "http://drupal.org/project/linkit",
  6325. "support": {
  6326. "source": "http://cgit.drupalcode.org/linkit",
  6327. "issues": "http://drupal.org/project/linkit"
  6328. }
  6329. },
  6330. {
  6331. "name": "drupal/login_destination",
  6332. "version": "dev-2.x",
  6333. "source": {
  6334. "type": "git",
  6335. "url": "https://git.drupalcode.org/project/login_destination.git",
  6336. "reference": "bb4d8e7b31589d53fb0e6aeaa86dd35870479c63"
  6337. },
  6338. "require": {
  6339. "drupal/core": "^8.7.10 || ^9"
  6340. },
  6341. "require-dev": {
  6342. "drupal/admin_toolbar": "^1.23",
  6343. "drupal/admin_toolbar_tools": "*"
  6344. },
  6345. "type": "drupal-module",
  6346. "extra": {
  6347. "branch-alias": {
  6348. "dev-2.x": "2.x-dev"
  6349. },
  6350. "drupal": {
  6351. "version": "8.x-2.0-alpha3+8-dev",
  6352. "datestamp": "1603450565",
  6353. "security-coverage": {
  6354. "status": "not-covered",
  6355. "message": "Dev releases are not covered by Drupal security advisories."
  6356. }
  6357. }
  6358. },
  6359. "notification-url": "https://packages.drupal.org/8/downloads",
  6360. "license": [
  6361. "GPL-2.0-or-later"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "rsvelko",
  6366. "homepage": "https://www.drupal.org/u/rsvelko",
  6367. "role": "Creator, Maintainer"
  6368. },
  6369. {
  6370. "name": "Other Contributors",
  6371. "homepage": "https://www.drupal.org/node/69051/committers",
  6372. "role": "Contributors"
  6373. },
  6374. {
  6375. "name": "beautifulmind",
  6376. "homepage": "https://www.drupal.org/user/219482"
  6377. },
  6378. {
  6379. "name": "ddrozdik",
  6380. "homepage": "https://www.drupal.org/user/574124"
  6381. },
  6382. {
  6383. "name": "jng12",
  6384. "homepage": "https://www.drupal.org/user/204316"
  6385. },
  6386. {
  6387. "name": "marcp",
  6388. "homepage": "https://www.drupal.org/user/20885"
  6389. },
  6390. {
  6391. "name": "mithy",
  6392. "homepage": "https://www.drupal.org/user/258911"
  6393. },
  6394. {
  6395. "name": "moshe weitzman",
  6396. "homepage": "https://www.drupal.org/user/23"
  6397. },
  6398. {
  6399. "name": "perennial.sky",
  6400. "homepage": "https://www.drupal.org/user/2622667"
  6401. },
  6402. {
  6403. "name": "rsvelko",
  6404. "homepage": "https://www.drupal.org/user/337401"
  6405. }
  6406. ],
  6407. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  6408. "homepage": "https://drupal.org/project/login_destination",
  6409. "support": {
  6410. "source": "https://git.drupalcode.org/project/login_destination",
  6411. "issues": "https://drupal.org/project/issues/login_destination"
  6412. }
  6413. },
  6414. {
  6415. "name": "drupal/maillog",
  6416. "version": "dev-1.x",
  6417. "source": {
  6418. "type": "git",
  6419. "url": "https://git.drupalcode.org/project/maillog.git",
  6420. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6421. },
  6422. "require": {
  6423. "drupal/core": "^8 || ^9"
  6424. },
  6425. "type": "drupal-module",
  6426. "extra": {
  6427. "branch-alias": {
  6428. "dev-1.x": "1.x-dev"
  6429. },
  6430. "drupal": {
  6431. "version": "8.x-1.0-beta1+0-dev",
  6432. "datestamp": "1600799873",
  6433. "security-coverage": {
  6434. "status": "not-covered",
  6435. "message": "Dev releases are not covered by Drupal security advisories."
  6436. }
  6437. }
  6438. },
  6439. "notification-url": "https://packages.drupal.org/8/downloads",
  6440. "license": [
  6441. "GPL-2.0-or-later"
  6442. ],
  6443. "authors": [
  6444. {
  6445. "name": "Berdir",
  6446. "homepage": "https://www.drupal.org/user/214652"
  6447. },
  6448. {
  6449. "name": "DamienMcKenna",
  6450. "homepage": "https://www.drupal.org/user/108450"
  6451. },
  6452. {
  6453. "name": "miro_dietiker",
  6454. "homepage": "https://www.drupal.org/user/227761"
  6455. },
  6456. {
  6457. "name": "pluess",
  6458. "homepage": "https://www.drupal.org/user/84659"
  6459. }
  6460. ],
  6461. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6462. "homepage": "https://www.drupal.org/project/maillog",
  6463. "support": {
  6464. "source": "https://git.drupalcode.org/project/maillog"
  6465. }
  6466. },
  6467. {
  6468. "name": "drupal/mailsystem",
  6469. "version": "4.3.0",
  6470. "source": {
  6471. "type": "git",
  6472. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6473. "reference": "8.x-4.3"
  6474. },
  6475. "dist": {
  6476. "type": "zip",
  6477. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6478. "reference": "8.x-4.3",
  6479. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6480. },
  6481. "require": {
  6482. "drupal/core": "^8.7.7 || ^9"
  6483. },
  6484. "type": "drupal-module",
  6485. "extra": {
  6486. "drupal": {
  6487. "version": "8.x-4.3",
  6488. "datestamp": "1586203024",
  6489. "security-coverage": {
  6490. "status": "covered",
  6491. "message": "Covered by Drupal's security advisory policy"
  6492. }
  6493. }
  6494. },
  6495. "notification-url": "https://packages.drupal.org/8/downloads",
  6496. "license": [
  6497. "GPL-2.0+"
  6498. ],
  6499. "authors": [
  6500. {
  6501. "name": "Berdir",
  6502. "homepage": "https://www.drupal.org/user/214652"
  6503. },
  6504. {
  6505. "name": "Les Lim",
  6506. "homepage": "https://www.drupal.org/user/84263"
  6507. },
  6508. {
  6509. "name": "Manuel Garcia",
  6510. "homepage": "https://www.drupal.org/user/213194"
  6511. },
  6512. {
  6513. "name": "Nafes",
  6514. "homepage": "https://www.drupal.org/user/2489926"
  6515. },
  6516. {
  6517. "name": "miro_dietiker",
  6518. "homepage": "https://www.drupal.org/user/227761"
  6519. },
  6520. {
  6521. "name": "pillarsdotnet",
  6522. "homepage": "https://www.drupal.org/user/36148"
  6523. }
  6524. ],
  6525. "description": "Mail System",
  6526. "homepage": "https://www.drupal.org/project/mailsystem",
  6527. "support": {
  6528. "source": "https://git.drupalcode.org/project/mailsystem"
  6529. }
  6530. },
  6531. {
  6532. "name": "drupal/manage_display",
  6533. "version": "dev-1.x",
  6534. "source": {
  6535. "type": "git",
  6536. "url": "https://git.drupalcode.org/project/manage_display.git",
  6537. "reference": "af9400e489138db5fc528178b0eace829285dee5"
  6538. },
  6539. "require": {
  6540. "drupal/core": "^8.8 || ^9"
  6541. },
  6542. "type": "drupal-module",
  6543. "extra": {
  6544. "branch-alias": {
  6545. "dev-1.x": "1.x-dev"
  6546. },
  6547. "drupal": {
  6548. "version": "8.x-1.0-beta2+2-dev",
  6549. "datestamp": "1630511503",
  6550. "security-coverage": {
  6551. "status": "not-covered",
  6552. "message": "Project has not opted into security advisory coverage!"
  6553. }
  6554. }
  6555. },
  6556. "notification-url": "https://packages.drupal.org/8/downloads",
  6557. "license": [
  6558. "GPL-2.0-or-later"
  6559. ],
  6560. "authors": [
  6561. {
  6562. "name": "AdamPS",
  6563. "homepage": "https://www.drupal.org/user/2650563"
  6564. }
  6565. ],
  6566. "description": "Make base fields such as 'title' available in \"Manage Display\"",
  6567. "homepage": "https://www.drupal.org/project/manage_display",
  6568. "support": {
  6569. "source": "https://git.drupalcode.org/project/manage_display"
  6570. }
  6571. },
  6572. {
  6573. "name": "drupal/matomo",
  6574. "version": "1.13.0",
  6575. "source": {
  6576. "type": "git",
  6577. "url": "https://git.drupalcode.org/project/matomo.git",
  6578. "reference": "8.x-1.13"
  6579. },
  6580. "dist": {
  6581. "type": "zip",
  6582. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.13.zip",
  6583. "reference": "8.x-1.13",
  6584. "shasum": "a3abacb383a349aeb9bfa271dd9294182ef16036"
  6585. },
  6586. "require": {
  6587. "drupal/core": "^8.8.0 || ^9.0.0"
  6588. },
  6589. "conflict": {
  6590. "drupal/csp": "<1.12"
  6591. },
  6592. "require-dev": {
  6593. "drupal/csp": "~1.12",
  6594. "drupal/php": "~1.1",
  6595. "drupal/token": "~1.9"
  6596. },
  6597. "type": "drupal-module",
  6598. "extra": {
  6599. "drupal": {
  6600. "version": "8.x-1.13",
  6601. "datestamp": "1635192471",
  6602. "security-coverage": {
  6603. "status": "covered",
  6604. "message": "Covered by Drupal's security advisory policy"
  6605. }
  6606. }
  6607. },
  6608. "notification-url": "https://packages.drupal.org/8/downloads",
  6609. "license": [
  6610. "GPL-2.0-or-later"
  6611. ],
  6612. "authors": [
  6613. {
  6614. "name": "C-Logemann",
  6615. "homepage": "https://www.drupal.org/user/218368"
  6616. },
  6617. {
  6618. "name": "Grimreaper",
  6619. "homepage": "https://www.drupal.org/user/2388214"
  6620. },
  6621. {
  6622. "name": "hass",
  6623. "homepage": "https://www.drupal.org/user/85918"
  6624. },
  6625. {
  6626. "name": "shelane",
  6627. "homepage": "https://www.drupal.org/user/2674989"
  6628. }
  6629. ],
  6630. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  6631. "homepage": "https://www.drupal.org/project/matomo",
  6632. "support": {
  6633. "source": "https://git.drupalcode.org/project/matomo"
  6634. }
  6635. },
  6636. {
  6637. "name": "drupal/maxlength",
  6638. "version": "1.0.0-rc1",
  6639. "source": {
  6640. "type": "git",
  6641. "url": "https://git.drupalcode.org/project/maxlength.git",
  6642. "reference": "8.x-1.0-rc1"
  6643. },
  6644. "dist": {
  6645. "type": "zip",
  6646. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6647. "reference": "8.x-1.0-rc1",
  6648. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6649. },
  6650. "require": {
  6651. "drupal/core": "^8.8 || ^9"
  6652. },
  6653. "type": "drupal-module",
  6654. "extra": {
  6655. "drupal": {
  6656. "version": "8.x-1.0-rc1",
  6657. "datestamp": "1593198218",
  6658. "security-coverage": {
  6659. "status": "not-covered",
  6660. "message": "RC releases are not covered by Drupal security advisories."
  6661. }
  6662. }
  6663. },
  6664. "notification-url": "https://packages.drupal.org/8/downloads",
  6665. "license": [
  6666. "GPL-2.0-or-later"
  6667. ],
  6668. "authors": [
  6669. {
  6670. "name": "cedewey",
  6671. "homepage": "https://www.drupal.org/user/38694"
  6672. },
  6673. {
  6674. "name": "dawehner",
  6675. "homepage": "https://www.drupal.org/user/99340"
  6676. },
  6677. {
  6678. "name": "hipp2bsquare",
  6679. "homepage": "https://www.drupal.org/user/2473076"
  6680. },
  6681. {
  6682. "name": "mariuss",
  6683. "homepage": "https://www.drupal.org/user/28539"
  6684. },
  6685. {
  6686. "name": "pmichelazzo",
  6687. "homepage": "https://www.drupal.org/user/182237"
  6688. },
  6689. {
  6690. "name": "srdtwc",
  6691. "homepage": "https://www.drupal.org/user/3422763"
  6692. }
  6693. ],
  6694. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6695. "homepage": "https://www.drupal.org/project/maxlength",
  6696. "support": {
  6697. "source": "https://git.drupalcode.org/project/maxlength"
  6698. }
  6699. },
  6700. {
  6701. "name": "drupal/menu_admin_per_menu",
  6702. "version": "1.3.0",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6706. "reference": "8.x-1.3"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6711. "reference": "8.x-1.3",
  6712. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6713. },
  6714. "require": {
  6715. "drupal/core": "^8 || ^9"
  6716. },
  6717. "type": "drupal-module",
  6718. "extra": {
  6719. "drupal": {
  6720. "version": "8.x-1.3",
  6721. "datestamp": "1593436060",
  6722. "security-coverage": {
  6723. "status": "covered",
  6724. "message": "Covered by Drupal's security advisory policy"
  6725. }
  6726. }
  6727. },
  6728. "notification-url": "https://packages.drupal.org/8/downloads",
  6729. "license": [
  6730. "GPL-2.0-or-later"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "JeroenT",
  6735. "homepage": "https://www.drupal.org/user/2228934"
  6736. },
  6737. {
  6738. "name": "anrikun",
  6739. "homepage": "https://www.drupal.org/user/410199"
  6740. },
  6741. {
  6742. "name": "jonas139",
  6743. "homepage": "https://www.drupal.org/user/2873401"
  6744. },
  6745. {
  6746. "name": "mkdok",
  6747. "homepage": "https://www.drupal.org/user/3308753"
  6748. }
  6749. ],
  6750. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6751. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6752. "support": {
  6753. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6754. }
  6755. },
  6756. {
  6757. "name": "drupal/menu_block",
  6758. "version": "dev-1.x",
  6759. "source": {
  6760. "type": "git",
  6761. "url": "https://git.drupalcode.org/project/menu_block.git",
  6762. "reference": "17bc5a2094dec85a921fdac6aff0030bfe004744"
  6763. },
  6764. "require": {
  6765. "drupal/core": "^8 || ^9"
  6766. },
  6767. "type": "drupal-module",
  6768. "extra": {
  6769. "branch-alias": {
  6770. "dev-1.x": "1.x-dev"
  6771. },
  6772. "drupal": {
  6773. "version": "8.x-1.6+9-dev",
  6774. "datestamp": "1612055345",
  6775. "security-coverage": {
  6776. "status": "not-covered",
  6777. "message": "Dev releases are not covered by Drupal security advisories."
  6778. }
  6779. }
  6780. },
  6781. "notification-url": "https://packages.drupal.org/8/downloads",
  6782. "license": [
  6783. "GPL-2.0-or-later"
  6784. ],
  6785. "authors": [
  6786. {
  6787. "name": "Dave Reid",
  6788. "homepage": "https://www.drupal.org/user/53892"
  6789. },
  6790. {
  6791. "name": "JohnAlbin",
  6792. "homepage": "https://www.drupal.org/user/32095"
  6793. },
  6794. {
  6795. "name": "RenatoG",
  6796. "homepage": "https://www.drupal.org/user/3326031"
  6797. },
  6798. {
  6799. "name": "joelpittet",
  6800. "homepage": "https://www.drupal.org/user/160302"
  6801. },
  6802. {
  6803. "name": "kim.pepper",
  6804. "homepage": "https://www.drupal.org/user/370574"
  6805. },
  6806. {
  6807. "name": "rrrob",
  6808. "homepage": "https://www.drupal.org/user/273533"
  6809. }
  6810. ],
  6811. "description": "Provides configurable blocks of menu links.",
  6812. "homepage": "https://www.drupal.org/project/menu_block",
  6813. "support": {
  6814. "source": "https://git.drupalcode.org/project/menu_block"
  6815. }
  6816. },
  6817. {
  6818. "name": "drupal/menu_position",
  6819. "version": "dev-1.x",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://git.drupalcode.org/project/menu_position.git",
  6823. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6824. },
  6825. "require": {
  6826. "drupal/core": "^8 || ^9"
  6827. },
  6828. "type": "drupal-module",
  6829. "extra": {
  6830. "branch-alias": {
  6831. "dev-1.x": "1.x-dev"
  6832. },
  6833. "drupal": {
  6834. "version": "8.x-1.0-alpha4+4-dev",
  6835. "datestamp": "1587797468",
  6836. "security-coverage": {
  6837. "status": "not-covered",
  6838. "message": "Dev releases are not covered by Drupal security advisories."
  6839. }
  6840. }
  6841. },
  6842. "notification-url": "https://packages.drupal.org/8/downloads",
  6843. "license": [
  6844. "GPL-2.0+"
  6845. ],
  6846. "authors": [
  6847. {
  6848. "name": "BarisW",
  6849. "homepage": "https://www.drupal.org/user/107229"
  6850. },
  6851. {
  6852. "name": "JohnAlbin",
  6853. "homepage": "https://www.drupal.org/user/32095"
  6854. },
  6855. {
  6856. "name": "Sutharsan",
  6857. "homepage": "https://www.drupal.org/user/73854"
  6858. },
  6859. {
  6860. "name": "joelpittet",
  6861. "homepage": "https://www.drupal.org/user/160302"
  6862. },
  6863. {
  6864. "name": "lbainbridge",
  6865. "homepage": "https://www.drupal.org/user/2406996"
  6866. }
  6867. ],
  6868. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6869. "homepage": "https://www.drupal.org/project/menu_position",
  6870. "support": {
  6871. "source": "https://git.drupalcode.org/project/menu_position",
  6872. "issues": "https://www.drupal.org/project/issues/menu_position"
  6873. }
  6874. },
  6875. {
  6876. "name": "drupal/page_manager",
  6877. "version": "dev-4.x",
  6878. "source": {
  6879. "type": "git",
  6880. "url": "https://git.drupalcode.org/project/page_manager.git",
  6881. "reference": "82d8a6d3492860b37e2d9bca9238603e4c9b549f"
  6882. },
  6883. "require": {
  6884. "drupal/core": "^8.8 || ^9",
  6885. "drupal/ctools": "^3.1"
  6886. },
  6887. "type": "drupal-module",
  6888. "extra": {
  6889. "branch-alias": {
  6890. "dev-4.x": "4.x-dev",
  6891. "dev-8.x-4.x": "4.x-dev"
  6892. },
  6893. "drupal": {
  6894. "version": "8.x-4.0-beta6+1-dev",
  6895. "datestamp": "1613459893",
  6896. "security-coverage": {
  6897. "status": "not-covered",
  6898. "message": "Project has not opted into security advisory coverage!"
  6899. }
  6900. }
  6901. },
  6902. "notification-url": "https://packages.drupal.org/8/downloads",
  6903. "license": [
  6904. "GPL-2.0-or-later"
  6905. ],
  6906. "authors": [
  6907. {
  6908. "name": "Tim Plunkett",
  6909. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6910. "role": "Maintainer"
  6911. },
  6912. {
  6913. "name": "dsnopek",
  6914. "homepage": "https://www.drupal.org/user/266527"
  6915. },
  6916. {
  6917. "name": "japerry",
  6918. "homepage": "https://www.drupal.org/user/45640"
  6919. },
  6920. {
  6921. "name": "manuel.adan",
  6922. "homepage": "https://www.drupal.org/user/516420"
  6923. },
  6924. {
  6925. "name": "phenaproxima",
  6926. "homepage": "https://www.drupal.org/user/205645"
  6927. },
  6928. {
  6929. "name": "tim.plunkett",
  6930. "homepage": "https://www.drupal.org/user/241634"
  6931. }
  6932. ],
  6933. "description": "Provides a way to place blocks on a custom page.",
  6934. "homepage": "https://www.drupal.org/project/page_manager",
  6935. "support": {
  6936. "source": "https://git.drupal.org/project/page_manager.git",
  6937. "issues": "https://www.drupal.org/project/issues/page_manager",
  6938. "irc": "irc://irc.freenode.org/drupal-contribute"
  6939. }
  6940. },
  6941. {
  6942. "name": "drupal/pagerer",
  6943. "version": "2.1.0",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://git.drupalcode.org/project/pagerer.git",
  6947. "reference": "8.x-2.1"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.1.zip",
  6952. "reference": "8.x-2.1",
  6953. "shasum": "a08539fde32372b66771afbaeba4105de19ddb14"
  6954. },
  6955. "require": {
  6956. "drupal/core": "^8.9 || ^9.1",
  6957. "drupal/jquery_ui_button": "*",
  6958. "drupal/jquery_ui_slider": "*",
  6959. "php": ">=7.1"
  6960. },
  6961. "type": "drupal-module",
  6962. "extra": {
  6963. "drupal": {
  6964. "version": "8.x-2.1",
  6965. "datestamp": "1621878520",
  6966. "security-coverage": {
  6967. "status": "covered",
  6968. "message": "Covered by Drupal's security advisory policy"
  6969. }
  6970. }
  6971. },
  6972. "notification-url": "https://packages.drupal.org/8/downloads",
  6973. "license": [
  6974. "GPL-2.0-or-later"
  6975. ],
  6976. "authors": [
  6977. {
  6978. "name": "mondrake",
  6979. "homepage": "https://www.drupal.org/user/1307444"
  6980. }
  6981. ],
  6982. "description": "Configurable pager styles.",
  6983. "homepage": "https://www.drupal.org/project/pagerer",
  6984. "support": {
  6985. "source": "https://git.drupalcode.org/project/pagerer"
  6986. }
  6987. },
  6988. {
  6989. "name": "drupal/panels",
  6990. "version": "4.6.0",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://git.drupalcode.org/project/panels.git",
  6994. "reference": "8.x-4.6"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.6.zip",
  6999. "reference": "8.x-4.6",
  7000. "shasum": "6430436a4d8fb64f8c113729dd92505a1e46b794"
  7001. },
  7002. "require": {
  7003. "drupal/core": "^8.8 || ^9",
  7004. "drupal/ctools": ">=3.0.0",
  7005. "drupal/jquery_ui_droppable": "^1.2"
  7006. },
  7007. "require-dev": {
  7008. "drupal/jquery_ui_droppable": "*",
  7009. "drupal/page_manager": "^4"
  7010. },
  7011. "type": "drupal-module",
  7012. "extra": {
  7013. "drupal": {
  7014. "version": "8.x-4.6",
  7015. "datestamp": "1585870866",
  7016. "security-coverage": {
  7017. "status": "covered",
  7018. "message": "Covered by Drupal's security advisory policy"
  7019. }
  7020. },
  7021. "branch-alias": {
  7022. "dev-8.x-4.x": "4.x-dev"
  7023. }
  7024. },
  7025. "notification-url": "https://packages.drupal.org/8/downloads",
  7026. "license": [
  7027. "GPL-2.0+"
  7028. ],
  7029. "authors": [
  7030. {
  7031. "name": "Jakob Perry",
  7032. "homepage": "https://www.drupal.org/u/japerry"
  7033. },
  7034. {
  7035. "name": "Samuel Mortenson",
  7036. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  7037. },
  7038. {
  7039. "name": "See other contributors",
  7040. "homepage": "https://www.drupal.org/node/74958/committers"
  7041. },
  7042. {
  7043. "name": "japerry",
  7044. "homepage": "https://www.drupal.org/user/45640"
  7045. },
  7046. {
  7047. "name": "joelpittet",
  7048. "homepage": "https://www.drupal.org/user/160302"
  7049. },
  7050. {
  7051. "name": "merlinofchaos",
  7052. "homepage": "https://www.drupal.org/user/26979"
  7053. },
  7054. {
  7055. "name": "neclimdul",
  7056. "homepage": "https://www.drupal.org/user/48673"
  7057. },
  7058. {
  7059. "name": "phenaproxima",
  7060. "homepage": "https://www.drupal.org/user/205645"
  7061. },
  7062. {
  7063. "name": "samuel.mortenson",
  7064. "homepage": "https://www.drupal.org/user/2582268"
  7065. },
  7066. {
  7067. "name": "tim.plunkett",
  7068. "homepage": "https://www.drupal.org/user/241634"
  7069. }
  7070. ],
  7071. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  7072. "homepage": "https://www.drupal.org/project/panels",
  7073. "support": {
  7074. "source": "http://git.drupal.org/project/panels.git",
  7075. "issues": "https://www.drupal.org/project/issues/panels",
  7076. "irc": "irc://irc.freenode.org/drupal-scotch"
  7077. }
  7078. },
  7079. {
  7080. "name": "drupal/paragraphs",
  7081. "version": "dev-1.x",
  7082. "source": {
  7083. "type": "git",
  7084. "url": "https://git.drupalcode.org/project/paragraphs.git",
  7085. "reference": "203ecf83fa85e1ca957db1e2da7d0b8498b764e7"
  7086. },
  7087. "require": {
  7088. "drupal/core": "^8.8 || ^9",
  7089. "drupal/entity_reference_revisions": "~1.3"
  7090. },
  7091. "require-dev": {
  7092. "drupal/block_field": "~1.0",
  7093. "drupal/ctools": "3.x-dev",
  7094. "drupal/diff": "~1.0",
  7095. "drupal/entity_browser": "2.x-dev",
  7096. "drupal/entity_usage": "2.x-dev",
  7097. "drupal/field_group": "3.x-dev",
  7098. "drupal/inline_entity_form": "~1.0",
  7099. "drupal/paragraphs-paragraphs_library": "*",
  7100. "drupal/replicate": "~1.0",
  7101. "drupal/search_api": "~1.0",
  7102. "drupal/search_api_db": "*"
  7103. },
  7104. "suggest": {
  7105. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  7106. },
  7107. "type": "drupal-module",
  7108. "extra": {
  7109. "branch-alias": {
  7110. "dev-1.x": "1.x-dev"
  7111. },
  7112. "drupal": {
  7113. "version": "8.x-1.12+20-dev",
  7114. "datestamp": "1630064939",
  7115. "security-coverage": {
  7116. "status": "not-covered",
  7117. "message": "Dev releases are not covered by Drupal security advisories."
  7118. }
  7119. }
  7120. },
  7121. "notification-url": "https://packages.drupal.org/8/downloads",
  7122. "license": [
  7123. "GPL-2.0-or-later"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "Berdir",
  7128. "homepage": "https://www.drupal.org/user/214652"
  7129. },
  7130. {
  7131. "name": "Frans",
  7132. "homepage": "https://www.drupal.org/user/514222"
  7133. },
  7134. {
  7135. "name": "Primsi",
  7136. "homepage": "https://www.drupal.org/user/282629"
  7137. },
  7138. {
  7139. "name": "jeroen.b",
  7140. "homepage": "https://www.drupal.org/user/1853532"
  7141. },
  7142. {
  7143. "name": "jstoller",
  7144. "homepage": "https://www.drupal.org/user/99012"
  7145. },
  7146. {
  7147. "name": "miro_dietiker",
  7148. "homepage": "https://www.drupal.org/user/227761"
  7149. }
  7150. ],
  7151. "description": "Enables the creation of Paragraphs entities.",
  7152. "homepage": "https://www.drupal.org/project/paragraphs",
  7153. "support": {
  7154. "source": "https://git.drupalcode.org/project/paragraphs"
  7155. }
  7156. },
  7157. {
  7158. "name": "drupal/path_alias_xt",
  7159. "version": "dev-1.x",
  7160. "source": {
  7161. "type": "git",
  7162. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  7163. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  7164. },
  7165. "require": {
  7166. "drupal/core": "^8.7.7 || ^9"
  7167. },
  7168. "type": "drupal-module",
  7169. "extra": {
  7170. "branch-alias": {
  7171. "dev-1.x": "1.x-dev"
  7172. },
  7173. "drupal": {
  7174. "version": "8.x-1.x-dev",
  7175. "datestamp": "1590299862",
  7176. "security-coverage": {
  7177. "status": "not-covered",
  7178. "message": "Dev releases are not covered by Drupal security advisories."
  7179. }
  7180. }
  7181. },
  7182. "notification-url": "https://packages.drupal.org/8/downloads",
  7183. "license": [
  7184. "GPL-2.0-or-later"
  7185. ],
  7186. "authors": [
  7187. {
  7188. "name": "RdeBoer",
  7189. "homepage": "https://www.drupal.org/user/404007"
  7190. },
  7191. {
  7192. "name": "adriancid",
  7193. "homepage": "https://www.drupal.org/user/1962106"
  7194. },
  7195. {
  7196. "name": "sdstyles",
  7197. "homepage": "https://www.drupal.org/user/1420228"
  7198. }
  7199. ],
  7200. "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.",
  7201. "homepage": "https://www.drupal.org/project/path_alias_xt",
  7202. "support": {
  7203. "source": "https://git.drupalcode.org/project/path_alias_xt"
  7204. }
  7205. },
  7206. {
  7207. "name": "drupal/pathauto",
  7208. "version": "1.8.0",
  7209. "source": {
  7210. "type": "git",
  7211. "url": "https://git.drupalcode.org/project/pathauto.git",
  7212. "reference": "8.x-1.8"
  7213. },
  7214. "dist": {
  7215. "type": "zip",
  7216. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  7217. "reference": "8.x-1.8",
  7218. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  7219. },
  7220. "require": {
  7221. "drupal/core": "^8.8 || ^9",
  7222. "drupal/ctools": "*",
  7223. "drupal/token": "*"
  7224. },
  7225. "suggest": {
  7226. "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."
  7227. },
  7228. "type": "drupal-module",
  7229. "extra": {
  7230. "drupal": {
  7231. "version": "8.x-1.8",
  7232. "datestamp": "1588103046",
  7233. "security-coverage": {
  7234. "status": "covered",
  7235. "message": "Covered by Drupal's security advisory policy"
  7236. }
  7237. },
  7238. "drush": {
  7239. "services": {
  7240. "drush.services.yml": "^9 || ^10"
  7241. }
  7242. }
  7243. },
  7244. "notification-url": "https://packages.drupal.org/8/downloads",
  7245. "license": [
  7246. "GPL-2.0-or-later"
  7247. ],
  7248. "authors": [
  7249. {
  7250. "name": "Berdir",
  7251. "homepage": "https://www.drupal.org/user/214652"
  7252. },
  7253. {
  7254. "name": "Dave Reid",
  7255. "homepage": "https://www.drupal.org/user/53892"
  7256. },
  7257. {
  7258. "name": "Freso",
  7259. "homepage": "https://www.drupal.org/user/27504"
  7260. },
  7261. {
  7262. "name": "greggles",
  7263. "homepage": "https://www.drupal.org/user/36762"
  7264. }
  7265. ],
  7266. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  7267. "homepage": "https://www.drupal.org/project/pathauto",
  7268. "support": {
  7269. "source": "https://cgit.drupalcode.org/pathauto",
  7270. "issues": "https://www.drupal.org/project/issues/pathauto",
  7271. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  7272. }
  7273. },
  7274. {
  7275. "name": "drupal/pathologic",
  7276. "version": "1.0.0-alpha2",
  7277. "source": {
  7278. "type": "git",
  7279. "url": "https://git.drupalcode.org/project/pathologic.git",
  7280. "reference": "8.x-1.0-alpha2"
  7281. },
  7282. "dist": {
  7283. "type": "zip",
  7284. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  7285. "reference": "8.x-1.0-alpha2",
  7286. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  7287. },
  7288. "require": {
  7289. "drupal/core": "^8 || ^9"
  7290. },
  7291. "type": "drupal-module",
  7292. "extra": {
  7293. "drupal": {
  7294. "version": "8.x-1.0-alpha2",
  7295. "datestamp": "1593911470",
  7296. "security-coverage": {
  7297. "status": "not-covered",
  7298. "message": "Alpha releases are not covered by Drupal security advisories."
  7299. }
  7300. }
  7301. },
  7302. "notification-url": "https://packages.drupal.org/8/downloads",
  7303. "license": [
  7304. "GPL-2.0-or-later"
  7305. ],
  7306. "authors": [
  7307. {
  7308. "name": "Berdir",
  7309. "homepage": "https://www.drupal.org/user/214652"
  7310. },
  7311. {
  7312. "name": "Garrett Albright",
  7313. "homepage": "https://www.drupal.org/user/191212"
  7314. },
  7315. {
  7316. "name": "dww",
  7317. "homepage": "https://www.drupal.org/user/46549"
  7318. }
  7319. ],
  7320. "description": "Helps avoid broken links and incorrect paths in content.",
  7321. "homepage": "https://www.drupal.org/project/pathologic",
  7322. "support": {
  7323. "source": "https://git.drupalcode.org/project/pathologic"
  7324. }
  7325. },
  7326. {
  7327. "name": "drupal/persistent_login",
  7328. "version": "1.3.0",
  7329. "source": {
  7330. "type": "git",
  7331. "url": "https://git.drupalcode.org/project/persistent_login.git",
  7332. "reference": "8.x-1.3"
  7333. },
  7334. "dist": {
  7335. "type": "zip",
  7336. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  7337. "reference": "8.x-1.3",
  7338. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  7339. },
  7340. "require": {
  7341. "drupal/core": "^8.3 || ^9.0"
  7342. },
  7343. "type": "drupal-module",
  7344. "extra": {
  7345. "drupal": {
  7346. "version": "8.x-1.3",
  7347. "datestamp": "1591597823",
  7348. "security-coverage": {
  7349. "status": "covered",
  7350. "message": "Covered by Drupal's security advisory policy"
  7351. }
  7352. }
  7353. },
  7354. "notification-url": "https://packages.drupal.org/8/downloads",
  7355. "license": [
  7356. "GPL-2.0-or-later"
  7357. ],
  7358. "authors": [
  7359. {
  7360. "name": "gapple",
  7361. "homepage": "https://www.drupal.org/user/490940"
  7362. }
  7363. ],
  7364. "description": "Provides a \"Remember Me\" feature on the login form.",
  7365. "homepage": "https://www.drupal.org/project/persistent_login",
  7366. "keywords": [
  7367. "Drupal"
  7368. ],
  7369. "support": {
  7370. "source": "https://git.drupalcode.org/project/persistent_login",
  7371. "issues": "https://www.drupal.org/project/issues/persistent_login"
  7372. }
  7373. },
  7374. {
  7375. "name": "drupal/profile",
  7376. "version": "1.3.0",
  7377. "source": {
  7378. "type": "git",
  7379. "url": "https://git.drupalcode.org/project/profile.git",
  7380. "reference": "8.x-1.3"
  7381. },
  7382. "dist": {
  7383. "type": "zip",
  7384. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.3.zip",
  7385. "reference": "8.x-1.3",
  7386. "shasum": "e2f0b76ae0cfb312259a956f7140cec261e543b1"
  7387. },
  7388. "require": {
  7389. "drupal/core": "^8.8 || ^9",
  7390. "drupal/entity": "^1.0-rc2"
  7391. },
  7392. "require-dev": {
  7393. "drupal/token": "^1.7"
  7394. },
  7395. "type": "drupal-module",
  7396. "extra": {
  7397. "drupal": {
  7398. "version": "8.x-1.3",
  7399. "datestamp": "1628099894",
  7400. "security-coverage": {
  7401. "status": "covered",
  7402. "message": "Covered by Drupal's security advisory policy"
  7403. }
  7404. }
  7405. },
  7406. "notification-url": "https://packages.drupal.org/8/downloads",
  7407. "license": [
  7408. "GPL-2.0-or-later"
  7409. ],
  7410. "authors": [
  7411. {
  7412. "name": "bojanz",
  7413. "homepage": "https://www.drupal.org/user/86106"
  7414. },
  7415. {
  7416. "name": "daggerhart",
  7417. "homepage": "https://www.drupal.org/user/167806"
  7418. },
  7419. {
  7420. "name": "fago",
  7421. "homepage": "https://www.drupal.org/user/16747"
  7422. },
  7423. {
  7424. "name": "jsacksick",
  7425. "homepage": "https://www.drupal.org/user/972218"
  7426. },
  7427. {
  7428. "name": "mglaman",
  7429. "homepage": "https://www.drupal.org/user/2416470"
  7430. },
  7431. {
  7432. "name": "pcambra",
  7433. "homepage": "https://www.drupal.org/user/122101"
  7434. }
  7435. ],
  7436. "description": "Provides configurable user profiles.",
  7437. "homepage": "http://drupal.org/project/profile",
  7438. "support": {
  7439. "source": "https://git.drupalcode.org/project/profile"
  7440. }
  7441. },
  7442. {
  7443. "name": "drupal/redirect",
  7444. "version": "1.6.0",
  7445. "source": {
  7446. "type": "git",
  7447. "url": "https://git.drupalcode.org/project/redirect.git",
  7448. "reference": "8.x-1.6"
  7449. },
  7450. "dist": {
  7451. "type": "zip",
  7452. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  7453. "reference": "8.x-1.6",
  7454. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  7455. },
  7456. "require": {
  7457. "drupal/core": "^8.8 || ^9"
  7458. },
  7459. "type": "drupal-module",
  7460. "extra": {
  7461. "drupal": {
  7462. "version": "8.x-1.6",
  7463. "datestamp": "1589312204",
  7464. "security-coverage": {
  7465. "status": "covered",
  7466. "message": "Covered by Drupal's security advisory policy"
  7467. }
  7468. }
  7469. },
  7470. "notification-url": "https://packages.drupal.org/8/downloads",
  7471. "license": [
  7472. "GPL-2.0-or-later"
  7473. ],
  7474. "authors": [
  7475. {
  7476. "name": "Berdir",
  7477. "homepage": "https://www.drupal.org/user/214652"
  7478. },
  7479. {
  7480. "name": "Dave Reid",
  7481. "homepage": "https://www.drupal.org/user/53892"
  7482. },
  7483. {
  7484. "name": "pifagor",
  7485. "homepage": "https://www.drupal.org/user/2375692"
  7486. }
  7487. ],
  7488. "description": "Allows users to redirect from old URLs to new URLs.",
  7489. "homepage": "https://www.drupal.org/project/redirect",
  7490. "support": {
  7491. "source": "https://git.drupalcode.org/project/redirect"
  7492. }
  7493. },
  7494. {
  7495. "name": "drupal/redis",
  7496. "version": "1.5.0",
  7497. "source": {
  7498. "type": "git",
  7499. "url": "https://git.drupalcode.org/project/redis.git",
  7500. "reference": "8.x-1.5"
  7501. },
  7502. "dist": {
  7503. "type": "zip",
  7504. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7505. "reference": "8.x-1.5",
  7506. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7507. },
  7508. "require": {
  7509. "drupal/core": "^8.8 || ^9"
  7510. },
  7511. "suggest": {
  7512. "predis/predis": "^1.1.1"
  7513. },
  7514. "type": "drupal-module",
  7515. "extra": {
  7516. "drupal": {
  7517. "version": "8.x-1.5",
  7518. "datestamp": "1609972488",
  7519. "security-coverage": {
  7520. "status": "covered",
  7521. "message": "Covered by Drupal's security advisory policy"
  7522. }
  7523. }
  7524. },
  7525. "autoload": {
  7526. "psr-4": {
  7527. "Drupal\\redis\\": "src"
  7528. }
  7529. },
  7530. "notification-url": "https://packages.drupal.org/8/downloads",
  7531. "license": [
  7532. "GPL-2.0-or-later"
  7533. ],
  7534. "authors": [
  7535. {
  7536. "name": "Berdir",
  7537. "homepage": "https://www.drupal.org/user/214652"
  7538. },
  7539. {
  7540. "name": "pounard",
  7541. "homepage": "https://www.drupal.org/user/240164"
  7542. }
  7543. ],
  7544. "description": "Integration of Drupal with the Redis key-value store.",
  7545. "homepage": "https://www.drupal.org/project/redis",
  7546. "support": {
  7547. "source": "https://git.drupalcode.org/project/redis"
  7548. }
  7549. },
  7550. {
  7551. "name": "drupal/role_delegation",
  7552. "version": "1.1.0",
  7553. "source": {
  7554. "type": "git",
  7555. "url": "https://git.drupalcode.org/project/role_delegation.git",
  7556. "reference": "8.x-1.1"
  7557. },
  7558. "dist": {
  7559. "type": "zip",
  7560. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.1.zip",
  7561. "reference": "8.x-1.1",
  7562. "shasum": "a63b548056cc729beacfd385625fafb983e0f73e"
  7563. },
  7564. "require": {
  7565. "drupal/core": "^8 || ^9"
  7566. },
  7567. "type": "drupal-module",
  7568. "extra": {
  7569. "drupal": {
  7570. "version": "8.x-1.1",
  7571. "datestamp": "1580498751",
  7572. "security-coverage": {
  7573. "status": "covered",
  7574. "message": "Covered by Drupal's security advisory policy"
  7575. }
  7576. }
  7577. },
  7578. "notification-url": "https://packages.drupal.org/8/downloads",
  7579. "license": [
  7580. "GPL-2.0-or-later"
  7581. ],
  7582. "authors": [
  7583. {
  7584. "name": "Jeroen Tubex",
  7585. "homepage": "https://www.drupal.org/u/jeroent",
  7586. "role": "Maintainer"
  7587. },
  7588. {
  7589. "name": "benjy",
  7590. "homepage": "https://www.drupal.org/user/1852732"
  7591. }
  7592. ],
  7593. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  7594. "homepage": "http://drupal.org/project/role_delegation",
  7595. "support": {
  7596. "source": "https://git.drupalcode.org/project/role_delegation",
  7597. "issues": "http://drupal.org/project/role_delegation"
  7598. }
  7599. },
  7600. {
  7601. "name": "drupal/search_api",
  7602. "version": "1.21.0",
  7603. "source": {
  7604. "type": "git",
  7605. "url": "https://git.drupalcode.org/project/search_api.git",
  7606. "reference": "8.x-1.21"
  7607. },
  7608. "dist": {
  7609. "type": "zip",
  7610. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.21.zip",
  7611. "reference": "8.x-1.21",
  7612. "shasum": "0f3b7187f4a04b98bacd046697699cd1e863188e"
  7613. },
  7614. "require": {
  7615. "drupal/core": "^8.8 || ^9"
  7616. },
  7617. "conflict": {
  7618. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7619. },
  7620. "require-dev": {
  7621. "drupal/language_fallback_fix": "@dev",
  7622. "drupal/search_api_autocomplete": "@dev",
  7623. "drupal/search_api_db": "*"
  7624. },
  7625. "suggest": {
  7626. "drupal/facets": "Adds the ability to create faceted searches.",
  7627. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7628. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7629. },
  7630. "type": "drupal-module",
  7631. "extra": {
  7632. "drupal": {
  7633. "version": "8.x-1.21",
  7634. "datestamp": "1636024667",
  7635. "security-coverage": {
  7636. "status": "covered",
  7637. "message": "Covered by Drupal's security advisory policy"
  7638. }
  7639. },
  7640. "drush": {
  7641. "services": {
  7642. "drush.services.yml": "^9 || ^10"
  7643. }
  7644. }
  7645. },
  7646. "notification-url": "https://packages.drupal.org/8/downloads",
  7647. "license": [
  7648. "GPL-2.0-or-later"
  7649. ],
  7650. "authors": [
  7651. {
  7652. "name": "Thomas Seidl",
  7653. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7654. },
  7655. {
  7656. "name": "Nick Veenhof",
  7657. "homepage": "https://www.drupal.org/u/nick_vh"
  7658. },
  7659. {
  7660. "name": "See other contributors",
  7661. "homepage": "https://www.drupal.org/node/790418/committers"
  7662. }
  7663. ],
  7664. "description": "Provides a generic framework for modules offering search capabilities.",
  7665. "homepage": "https://www.drupal.org/project/search_api",
  7666. "support": {
  7667. "source": "https://git.drupalcode.org/project/search_api",
  7668. "issues": "https://www.drupal.org/project/issues/search_api",
  7669. "irc": "irc://irc.freenode.org/drupal-search-api"
  7670. }
  7671. },
  7672. {
  7673. "name": "drupal/search_api_db",
  7674. "version": "1.21.0",
  7675. "require": {
  7676. "drupal/core": "^8.8 || ^9",
  7677. "drupal/search_api": "*"
  7678. },
  7679. "type": "metapackage",
  7680. "extra": {
  7681. "drupal": {
  7682. "version": "8.x-1.21",
  7683. "datestamp": "1636024667",
  7684. "security-coverage": {
  7685. "status": "covered",
  7686. "message": "Covered by Drupal's security advisory policy"
  7687. }
  7688. }
  7689. },
  7690. "notification-url": "https://packages.drupal.org/8/downloads",
  7691. "license": [
  7692. "GPL-2.0-or-later"
  7693. ],
  7694. "authors": [
  7695. {
  7696. "name": "Nick_vh",
  7697. "homepage": "https://www.drupal.org/user/122682"
  7698. },
  7699. {
  7700. "name": "borisson_",
  7701. "homepage": "https://www.drupal.org/user/2393360"
  7702. },
  7703. {
  7704. "name": "drunken monkey",
  7705. "homepage": "https://www.drupal.org/user/205582"
  7706. }
  7707. ],
  7708. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7709. "homepage": "https://www.drupal.org/project/search_api",
  7710. "support": {
  7711. "source": "https://git.drupalcode.org/project/search_api"
  7712. }
  7713. },
  7714. {
  7715. "name": "drupal/smart_trim",
  7716. "version": "1.3.0",
  7717. "source": {
  7718. "type": "git",
  7719. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7720. "reference": "8.x-1.3"
  7721. },
  7722. "dist": {
  7723. "type": "zip",
  7724. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7725. "reference": "8.x-1.3",
  7726. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7727. },
  7728. "require": {
  7729. "drupal/core": "^8 || ^9"
  7730. },
  7731. "type": "drupal-module",
  7732. "extra": {
  7733. "drupal": {
  7734. "version": "8.x-1.3",
  7735. "datestamp": "1589766531",
  7736. "security-coverage": {
  7737. "status": "covered",
  7738. "message": "Covered by Drupal's security advisory policy"
  7739. }
  7740. }
  7741. },
  7742. "notification-url": "https://packages.drupal.org/8/downloads",
  7743. "license": [
  7744. "GPL-2.0-or-later"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "Mark Casias (markie)",
  7749. "homepage": "https://www.drupal.org/u/markie",
  7750. "role": "Maintainer"
  7751. },
  7752. {
  7753. "name": "newsignature",
  7754. "homepage": "https://www.drupal.org/user/765518"
  7755. },
  7756. {
  7757. "name": "ultimike",
  7758. "homepage": "https://www.drupal.org/user/51132"
  7759. },
  7760. {
  7761. "name": "volkswagenchick",
  7762. "homepage": "https://www.drupal.org/user/3332522"
  7763. }
  7764. ],
  7765. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7766. "homepage": "https://drupal.org/project/smart_trim",
  7767. "support": {
  7768. "source": "https://cgit.drupalcode.org/smart_trim",
  7769. "issues": "https://drupal.org/project/issues/smart_trim"
  7770. }
  7771. },
  7772. {
  7773. "name": "drupal/smtp",
  7774. "version": "1.0.0",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://git.drupalcode.org/project/smtp.git",
  7778. "reference": "8.x-1.0"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7783. "reference": "8.x-1.0",
  7784. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7785. },
  7786. "require": {
  7787. "drupal/core": "^8.8 || ^9",
  7788. "phpmailer/phpmailer": "^6.1.7"
  7789. },
  7790. "suggest": {
  7791. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7792. },
  7793. "type": "drupal-module",
  7794. "extra": {
  7795. "drupal": {
  7796. "version": "8.x-1.0",
  7797. "datestamp": "1601070985",
  7798. "security-coverage": {
  7799. "status": "covered",
  7800. "message": "Covered by Drupal's security advisory policy"
  7801. }
  7802. },
  7803. "branch-alias": {
  7804. "dev-8.x-1.x": "1.x-dev"
  7805. }
  7806. },
  7807. "notification-url": "https://packages.drupal.org/8/downloads",
  7808. "license": [
  7809. "GPL-2.0-or-later"
  7810. ],
  7811. "authors": [
  7812. {
  7813. "name": "LukeLast",
  7814. "homepage": "https://www.drupal.org/user/30151"
  7815. },
  7816. {
  7817. "name": "japerry",
  7818. "homepage": "https://www.drupal.org/user/45640"
  7819. },
  7820. {
  7821. "name": "josesanmartin",
  7822. "homepage": "https://www.drupal.org/user/72012"
  7823. },
  7824. {
  7825. "name": "oadaeh",
  7826. "homepage": "https://www.drupal.org/user/4649"
  7827. },
  7828. {
  7829. "name": "sadashiv",
  7830. "homepage": "https://www.drupal.org/user/1773304"
  7831. },
  7832. {
  7833. "name": "wundo",
  7834. "homepage": "https://www.drupal.org/user/25523"
  7835. },
  7836. {
  7837. "name": "yettyn",
  7838. "homepage": "https://www.drupal.org/user/93281"
  7839. }
  7840. ],
  7841. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7842. "homepage": "https://www.drupal.org/project/smtp",
  7843. "support": {
  7844. "source": "https://git.drupalcode.org/project/smtp",
  7845. "issues": "https://www.drupal.org/project/issues/smtp"
  7846. }
  7847. },
  7848. {
  7849. "name": "drupal/sophron",
  7850. "version": "1.1.0",
  7851. "source": {
  7852. "type": "git",
  7853. "url": "https://git.drupalcode.org/project/sophron.git",
  7854. "reference": "8.x-1.1"
  7855. },
  7856. "dist": {
  7857. "type": "zip",
  7858. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7859. "reference": "8.x-1.1",
  7860. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7861. },
  7862. "require": {
  7863. "drupal/core": "^8.9 || ^9",
  7864. "fileeye/mimemap": "^1.1.4",
  7865. "php": ">=7.1"
  7866. },
  7867. "type": "drupal-module",
  7868. "extra": {
  7869. "drupal": {
  7870. "version": "8.x-1.1",
  7871. "datestamp": "1606047077",
  7872. "security-coverage": {
  7873. "status": "covered",
  7874. "message": "Covered by Drupal's security advisory policy"
  7875. }
  7876. }
  7877. },
  7878. "autoload": {
  7879. "psr-4": {
  7880. "Drupal\\sophron\\": "src/"
  7881. }
  7882. },
  7883. "notification-url": "https://packages.drupal.org/8/downloads",
  7884. "license": [
  7885. "GPL-2.0-or-later"
  7886. ],
  7887. "authors": [
  7888. {
  7889. "name": "mondrake",
  7890. "homepage": "https://www.drupal.org/user/1307444"
  7891. }
  7892. ],
  7893. "description": "Provides an extensive MIME types management API",
  7894. "homepage": "https://www.drupal.org/project/sophron",
  7895. "support": {
  7896. "source": "https://git.drupalcode.org/project/sophron"
  7897. }
  7898. },
  7899. {
  7900. "name": "drupal/structure_sync",
  7901. "version": "2.0.2",
  7902. "source": {
  7903. "type": "git",
  7904. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7905. "reference": "2.0.2"
  7906. },
  7907. "dist": {
  7908. "type": "zip",
  7909. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.2.zip",
  7910. "reference": "2.0.2",
  7911. "shasum": "7c1cda02629cdd90113b95de2d353e8d5a7aa90e"
  7912. },
  7913. "require": {
  7914. "drupal/core": "^8 || ^9"
  7915. },
  7916. "type": "drupal-module",
  7917. "extra": {
  7918. "drupal": {
  7919. "version": "2.0.2",
  7920. "datestamp": "1614096703",
  7921. "security-coverage": {
  7922. "status": "covered",
  7923. "message": "Covered by Drupal's security advisory policy"
  7924. }
  7925. }
  7926. },
  7927. "notification-url": "https://packages.drupal.org/8/downloads",
  7928. "license": [
  7929. "GPL-2.0-or-later"
  7930. ],
  7931. "authors": [
  7932. {
  7933. "name": "colan",
  7934. "homepage": "https://www.drupal.org/user/58704"
  7935. },
  7936. {
  7937. "name": "fidovdbos",
  7938. "homepage": "https://www.drupal.org/user/1494332"
  7939. },
  7940. {
  7941. "name": "joachim",
  7942. "homepage": "https://www.drupal.org/user/107701"
  7943. },
  7944. {
  7945. "name": "legolasbo",
  7946. "homepage": "https://www.drupal.org/user/2480548"
  7947. },
  7948. {
  7949. "name": "mparker17",
  7950. "homepage": "https://www.drupal.org/user/536298"
  7951. },
  7952. {
  7953. "name": "spiderman",
  7954. "homepage": "https://www.drupal.org/user/1631"
  7955. },
  7956. {
  7957. "name": "timKruijsen",
  7958. "homepage": "https://www.drupal.org/user/3513437"
  7959. },
  7960. {
  7961. "name": "vinlaurens",
  7962. "homepage": "https://www.drupal.org/user/2945689"
  7963. }
  7964. ],
  7965. "description": "Tool for syncing structural data that is stored as content.",
  7966. "homepage": "https://www.drupal.org/project/structure_sync",
  7967. "support": {
  7968. "source": "https://git.drupalcode.org/project/structure_sync"
  7969. }
  7970. },
  7971. {
  7972. "name": "drupal/synonyms",
  7973. "version": "2.0.0-beta2",
  7974. "source": {
  7975. "type": "git",
  7976. "url": "https://git.drupalcode.org/project/synonyms.git",
  7977. "reference": "2.0.0-beta2"
  7978. },
  7979. "dist": {
  7980. "type": "zip",
  7981. "url": "https://ftp.drupal.org/files/projects/synonyms-2.0.0-beta2.zip",
  7982. "reference": "2.0.0-beta2",
  7983. "shasum": "0d3b80f95c4da1c726f0fd73cbaf33f6fb93b0a1"
  7984. },
  7985. "require": {
  7986. "drupal/core": "^8.8 || ^9"
  7987. },
  7988. "require-dev": {
  7989. "drupal/synonyms_list_field": "*"
  7990. },
  7991. "type": "drupal-module",
  7992. "extra": {
  7993. "drupal": {
  7994. "version": "2.0.0-beta2",
  7995. "datestamp": "1622577998",
  7996. "security-coverage": {
  7997. "status": "not-covered",
  7998. "message": "Beta releases are not covered by Drupal security advisories."
  7999. }
  8000. }
  8001. },
  8002. "notification-url": "https://packages.drupal.org/8/downloads",
  8003. "license": [
  8004. "GPL-2.0-or-later"
  8005. ],
  8006. "authors": [
  8007. {
  8008. "name": "Zen",
  8009. "homepage": "https://www.drupal.org/user/21209"
  8010. },
  8011. {
  8012. "name": "bojanz",
  8013. "homepage": "https://www.drupal.org/user/86106"
  8014. },
  8015. {
  8016. "name": "bucefal91",
  8017. "homepage": "https://www.drupal.org/user/504128"
  8018. },
  8019. {
  8020. "name": "devad",
  8021. "homepage": "https://www.drupal.org/user/2268520"
  8022. }
  8023. ],
  8024. "description": "Provides synonyms feature for all entities.",
  8025. "homepage": "https://www.drupal.org/project/synonyms",
  8026. "support": {
  8027. "source": "https://git.drupalcode.org/project/synonyms"
  8028. }
  8029. },
  8030. {
  8031. "name": "drupal/token",
  8032. "version": "1.9.0",
  8033. "source": {
  8034. "type": "git",
  8035. "url": "https://git.drupalcode.org/project/token.git",
  8036. "reference": "8.x-1.9"
  8037. },
  8038. "dist": {
  8039. "type": "zip",
  8040. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  8041. "reference": "8.x-1.9",
  8042. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  8043. },
  8044. "require": {
  8045. "drupal/core": "^8.8 || ^9"
  8046. },
  8047. "type": "drupal-module",
  8048. "extra": {
  8049. "drupal": {
  8050. "version": "8.x-1.9",
  8051. "datestamp": "1608284866",
  8052. "security-coverage": {
  8053. "status": "covered",
  8054. "message": "Covered by Drupal's security advisory policy"
  8055. }
  8056. },
  8057. "drush": {
  8058. "services": {
  8059. "drush.services.yml": "^9 || ^10"
  8060. }
  8061. }
  8062. },
  8063. "notification-url": "https://packages.drupal.org/8/downloads",
  8064. "license": [
  8065. "GPL-2.0-or-later"
  8066. ],
  8067. "authors": [
  8068. {
  8069. "name": "Berdir",
  8070. "homepage": "https://www.drupal.org/user/214652"
  8071. },
  8072. {
  8073. "name": "Dave Reid",
  8074. "homepage": "https://www.drupal.org/user/53892"
  8075. },
  8076. {
  8077. "name": "eaton",
  8078. "homepage": "https://www.drupal.org/user/16496"
  8079. },
  8080. {
  8081. "name": "fago",
  8082. "homepage": "https://www.drupal.org/user/16747"
  8083. },
  8084. {
  8085. "name": "greggles",
  8086. "homepage": "https://www.drupal.org/user/36762"
  8087. },
  8088. {
  8089. "name": "mikeryan",
  8090. "homepage": "https://www.drupal.org/user/4420"
  8091. }
  8092. ],
  8093. "description": "Provides a user interface for the Token API, some missing core tokens.",
  8094. "homepage": "https://www.drupal.org/project/token",
  8095. "support": {
  8096. "source": "https://git.drupalcode.org/project/token"
  8097. }
  8098. },
  8099. {
  8100. "name": "drupal/translation_views",
  8101. "version": "1.0.0-alpha10",
  8102. "source": {
  8103. "type": "git",
  8104. "url": "https://git.drupalcode.org/project/translation_views.git",
  8105. "reference": "8.x-1.0-alpha10"
  8106. },
  8107. "dist": {
  8108. "type": "zip",
  8109. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  8110. "reference": "8.x-1.0-alpha10",
  8111. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  8112. },
  8113. "require": {
  8114. "drupal/core": "^8.8 || ^9"
  8115. },
  8116. "require-dev": {
  8117. "drupal/translators": "*",
  8118. "drupal/translators_content": "*"
  8119. },
  8120. "type": "drupal-module",
  8121. "extra": {
  8122. "drupal": {
  8123. "version": "8.x-1.0-alpha10",
  8124. "datestamp": "1584303687",
  8125. "security-coverage": {
  8126. "status": "not-covered",
  8127. "message": "Project has not opted into security advisory coverage!"
  8128. }
  8129. }
  8130. },
  8131. "notification-url": "https://packages.drupal.org/8/downloads",
  8132. "license": [
  8133. "GPL-2.0-or-later"
  8134. ],
  8135. "authors": [
  8136. {
  8137. "name": "matsbla",
  8138. "homepage": "https://www.drupal.org/user/2325394"
  8139. },
  8140. {
  8141. "name": "vlad.dancer",
  8142. "homepage": "https://www.drupal.org/user/903844"
  8143. }
  8144. ],
  8145. "description": "Create customized lists and queries of translations from your database.",
  8146. "homepage": "https://www.drupal.org/project/translation_views",
  8147. "support": {
  8148. "source": "https://git.drupalcode.org/project/translation_views"
  8149. }
  8150. },
  8151. {
  8152. "name": "drupal/ultimate_cron",
  8153. "version": "2.0.0-alpha5",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  8157. "reference": "8.x-2.0-alpha5"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  8162. "reference": "8.x-2.0-alpha5",
  8163. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  8164. },
  8165. "require": {
  8166. "drupal/core": "^8.7.7 || ^9"
  8167. },
  8168. "type": "drupal-module",
  8169. "extra": {
  8170. "drupal": {
  8171. "version": "8.x-2.0-alpha5",
  8172. "datestamp": "1600928948",
  8173. "security-coverage": {
  8174. "status": "not-covered",
  8175. "message": "Alpha releases are not covered by Drupal security advisories."
  8176. }
  8177. },
  8178. "drush": {
  8179. "services": {
  8180. "drush.services.yml": "^9 || ^10"
  8181. }
  8182. }
  8183. },
  8184. "notification-url": "https://packages.drupal.org/8/downloads",
  8185. "license": [
  8186. "GPL-2.0+"
  8187. ],
  8188. "authors": [
  8189. {
  8190. "name": "Berdir",
  8191. "homepage": "https://www.drupal.org/user/214652"
  8192. },
  8193. {
  8194. "name": "Dane Powell",
  8195. "homepage": "https://www.drupal.org/user/339326"
  8196. },
  8197. {
  8198. "name": "Primsi",
  8199. "homepage": "https://www.drupal.org/user/282629"
  8200. },
  8201. {
  8202. "name": "arnested",
  8203. "homepage": "https://www.drupal.org/user/245635"
  8204. },
  8205. {
  8206. "name": "gielfeldt",
  8207. "homepage": "https://www.drupal.org/user/366993"
  8208. },
  8209. {
  8210. "name": "miro_dietiker",
  8211. "homepage": "https://www.drupal.org/user/227761"
  8212. }
  8213. ],
  8214. "description": "Ultimate cron",
  8215. "homepage": "https://www.drupal.org/project/ultimate_cron",
  8216. "support": {
  8217. "source": "https://git.drupalcode.org/project/ultimate_cron"
  8218. }
  8219. },
  8220. {
  8221. "name": "drupal/url_to_video_filter",
  8222. "version": "2.0.0",
  8223. "source": {
  8224. "type": "git",
  8225. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  8226. "reference": "2.0.0"
  8227. },
  8228. "dist": {
  8229. "type": "zip",
  8230. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  8231. "reference": "2.0.0",
  8232. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  8233. },
  8234. "require": {
  8235. "drupal/core": "^8 || ^9"
  8236. },
  8237. "type": "drupal-module",
  8238. "extra": {
  8239. "drupal": {
  8240. "version": "2.0.0",
  8241. "datestamp": "1607298389",
  8242. "security-coverage": {
  8243. "status": "covered",
  8244. "message": "Covered by Drupal's security advisory policy"
  8245. }
  8246. }
  8247. },
  8248. "notification-url": "https://packages.drupal.org/8/downloads",
  8249. "license": [
  8250. "GPL-2.0-or-later"
  8251. ],
  8252. "authors": [
  8253. {
  8254. "name": "Jaypan",
  8255. "homepage": "https://www.drupal.org/user/324696"
  8256. }
  8257. ],
  8258. "description": "Text filter to convert URLs to embedded videos",
  8259. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  8260. "support": {
  8261. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  8262. }
  8263. },
  8264. {
  8265. "name": "drupal/video_embed_field",
  8266. "version": "2.4.0",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  8270. "reference": "8.x-2.4"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  8275. "reference": "8.x-2.4",
  8276. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  8277. },
  8278. "require": {
  8279. "drupal/core": "^8.8 || ^9"
  8280. },
  8281. "require-dev": {
  8282. "drupal/colorbox": "^1.0",
  8283. "drupal/video_embed_media": "*"
  8284. },
  8285. "type": "drupal-module",
  8286. "extra": {
  8287. "drupal": {
  8288. "version": "8.x-2.4",
  8289. "datestamp": "1587686337",
  8290. "security-coverage": {
  8291. "status": "covered",
  8292. "message": "Covered by Drupal's security advisory policy"
  8293. }
  8294. }
  8295. },
  8296. "notification-url": "https://packages.drupal.org/8/downloads",
  8297. "license": [
  8298. "GPL-2.0+"
  8299. ],
  8300. "authors": [
  8301. {
  8302. "name": "Sam152",
  8303. "homepage": "https://www.drupal.org/user/1485048"
  8304. },
  8305. {
  8306. "name": "jec006",
  8307. "homepage": "https://www.drupal.org/user/855980"
  8308. },
  8309. {
  8310. "name": "plopesc",
  8311. "homepage": "https://www.drupal.org/user/282415"
  8312. }
  8313. ],
  8314. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8315. "homepage": "https://www.drupal.org/project/video_embed_field",
  8316. "support": {
  8317. "source": "https://git.drupalcode.org/project/video_embed_field"
  8318. }
  8319. },
  8320. {
  8321. "name": "drupal/views_bulk_edit",
  8322. "version": "2.6.0",
  8323. "source": {
  8324. "type": "git",
  8325. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8326. "reference": "8.x-2.6"
  8327. },
  8328. "dist": {
  8329. "type": "zip",
  8330. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.6.zip",
  8331. "reference": "8.x-2.6",
  8332. "shasum": "0e0f1dab2fa0903cbe2656e754b0d9ed3a935fbb"
  8333. },
  8334. "require": {
  8335. "drupal/core": "^8 || ^9"
  8336. },
  8337. "require-dev": {
  8338. "drupal/views_bulk_operations": "~3.0"
  8339. },
  8340. "suggest": {
  8341. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8342. },
  8343. "type": "drupal-module",
  8344. "extra": {
  8345. "drupal": {
  8346. "version": "8.x-2.6",
  8347. "datestamp": "1623748025",
  8348. "security-coverage": {
  8349. "status": "covered",
  8350. "message": "Covered by Drupal's security advisory policy"
  8351. }
  8352. }
  8353. },
  8354. "notification-url": "https://packages.drupal.org/8/downloads",
  8355. "license": [
  8356. "GPL-2.0+"
  8357. ],
  8358. "authors": [
  8359. {
  8360. "name": "Marcin Grabias",
  8361. "homepage": "https://www.drupal.org/u/graber"
  8362. },
  8363. {
  8364. "name": "benjy",
  8365. "homepage": "https://www.drupal.org/user/1852732"
  8366. }
  8367. ],
  8368. "description": "Allows bulk edition of entity field values.",
  8369. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8370. "support": {
  8371. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8372. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8373. }
  8374. },
  8375. {
  8376. "name": "drupal/views_bulk_operations",
  8377. "version": "4.0.0",
  8378. "source": {
  8379. "type": "git",
  8380. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8381. "reference": "4.0.0"
  8382. },
  8383. "dist": {
  8384. "type": "zip",
  8385. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.0.0.zip",
  8386. "reference": "4.0.0",
  8387. "shasum": "d5bb4afeaaead0b8ebc7dd9e1fc6aac464aff4b1"
  8388. },
  8389. "require": {
  8390. "drupal/core": "^8.8 || ^9"
  8391. },
  8392. "require-dev": {
  8393. "drush/drush": "^10"
  8394. },
  8395. "suggest": {
  8396. "drush/drush": "^9 || ^10"
  8397. },
  8398. "type": "drupal-module",
  8399. "extra": {
  8400. "drupal": {
  8401. "version": "4.0.0",
  8402. "datestamp": "1625650987",
  8403. "security-coverage": {
  8404. "status": "covered",
  8405. "message": "Covered by Drupal's security advisory policy"
  8406. }
  8407. },
  8408. "drush": {
  8409. "services": {
  8410. "drush.services.yml": "^9 || ^10"
  8411. }
  8412. }
  8413. },
  8414. "notification-url": "https://packages.drupal.org/8/downloads",
  8415. "license": [
  8416. "GPL-2.0-or-later"
  8417. ],
  8418. "authors": [
  8419. {
  8420. "name": "Marcin Grabias",
  8421. "homepage": "https://www.drupal.org/u/graber"
  8422. },
  8423. {
  8424. "name": "Jon Pugh",
  8425. "homepage": "https://www.drupal.org/user/17028"
  8426. },
  8427. {
  8428. "name": "bojanz",
  8429. "homepage": "https://www.drupal.org/user/86106"
  8430. },
  8431. {
  8432. "name": "infojunkie",
  8433. "homepage": "https://www.drupal.org/user/48424"
  8434. },
  8435. {
  8436. "name": "joelpittet",
  8437. "homepage": "https://www.drupal.org/user/160302"
  8438. }
  8439. ],
  8440. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8441. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8442. "support": {
  8443. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8444. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8445. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8446. }
  8447. },
  8448. {
  8449. "name": "drupal/views_ef_fieldset",
  8450. "version": "1.5.0",
  8451. "source": {
  8452. "type": "git",
  8453. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8454. "reference": "8.x-1.5"
  8455. },
  8456. "dist": {
  8457. "type": "zip",
  8458. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8459. "reference": "8.x-1.5",
  8460. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8461. },
  8462. "require": {
  8463. "drupal/core": "^8 || ^9",
  8464. "php": ">=7"
  8465. },
  8466. "type": "drupal-module",
  8467. "extra": {
  8468. "drupal": {
  8469. "version": "8.x-1.5",
  8470. "datestamp": "1604567512",
  8471. "security-coverage": {
  8472. "status": "covered",
  8473. "message": "Covered by Drupal's security advisory policy"
  8474. }
  8475. },
  8476. "composer-exit-on-patch-failure": true,
  8477. "enable-patching": true,
  8478. "patches": {
  8479. "drupal/core": {
  8480. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8481. }
  8482. }
  8483. },
  8484. "autoload-dev": {
  8485. "psr-4": {
  8486. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8487. }
  8488. },
  8489. "notification-url": "https://packages.drupal.org/8/downloads",
  8490. "scripts": {
  8491. "grumphp": [
  8492. "./vendor/bin/grumphp run"
  8493. ]
  8494. },
  8495. "license": [
  8496. "GPL-2.0+"
  8497. ],
  8498. "authors": [
  8499. {
  8500. "name": "Pol Dellaiera",
  8501. "homepage": "https://www.drupal.org/user/47194",
  8502. "email": "pol.dellaiera@protonmail.com"
  8503. },
  8504. {
  8505. "name": "ciss",
  8506. "homepage": "https://www.drupal.org/user/1632364"
  8507. }
  8508. ],
  8509. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8510. "homepage": "https://drupal.org/project/views_field_formatter",
  8511. "support": {
  8512. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8513. }
  8514. },
  8515. {
  8516. "name": "drush/drush",
  8517. "version": "10.6.1",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/drush-ops/drush.git",
  8521. "reference": "d36bca3322555a6f94edc94439873afcde2bbe90"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/drush-ops/drush/zipball/d36bca3322555a6f94edc94439873afcde2bbe90",
  8526. "reference": "d36bca3322555a6f94edc94439873afcde2bbe90",
  8527. "shasum": ""
  8528. },
  8529. "require": {
  8530. "chi-teck/drupal-code-generator": "^1.32.1",
  8531. "composer/semver": "^1.4 || ^3",
  8532. "consolidation/config": "^1.2",
  8533. "consolidation/filter-via-dot-access-data": "^1",
  8534. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  8535. "consolidation/site-alias": "^3.0.0@stable",
  8536. "consolidation/site-process": "^2.1 || ^4",
  8537. "enlightn/security-checker": "^1",
  8538. "ext-dom": "*",
  8539. "grasmash/yaml-expander": "^1.1.1",
  8540. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8541. "league/container": "^2.5 || ^3.4",
  8542. "php": ">=7.1.3",
  8543. "psr/log": "~1.0",
  8544. "psy/psysh": "~0.6",
  8545. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8546. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8547. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8548. "symfony/yaml": "^3.4 || ^4.0",
  8549. "webflo/drupal-finder": "^1.2",
  8550. "webmozart/path-util": "^2.1.0"
  8551. },
  8552. "conflict": {
  8553. "drupal/migrate_run": "*",
  8554. "drupal/migrate_tools": "<= 5"
  8555. },
  8556. "require-dev": {
  8557. "composer/installers": "^1.7",
  8558. "cweagans/composer-patches": "~1.0",
  8559. "david-garcia/phpwhois": "4.3.0",
  8560. "drupal/alinks": "1.0.0",
  8561. "drupal/core-recommended": "^8.8",
  8562. "phpunit/phpunit": ">=7.5.20",
  8563. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8564. "vlucas/phpdotenv": "^2.4",
  8565. "yoast/phpunit-polyfills": "^0.2.0"
  8566. },
  8567. "bin": [
  8568. "drush"
  8569. ],
  8570. "type": "library",
  8571. "extra": {
  8572. "installer-paths": {
  8573. "sut/core": [
  8574. "type:drupal-core"
  8575. ],
  8576. "sut/libraries/{$name}": [
  8577. "type:drupal-library"
  8578. ],
  8579. "sut/modules/unish/{$name}": [
  8580. "drupal/devel"
  8581. ],
  8582. "sut/themes/unish/{$name}": [
  8583. "drupal/empty_theme"
  8584. ],
  8585. "sut/modules/contrib/{$name}": [
  8586. "type:drupal-module"
  8587. ],
  8588. "sut/profiles/contrib/{$name}": [
  8589. "type:drupal-profile"
  8590. ],
  8591. "sut/themes/contrib/{$name}": [
  8592. "type:drupal-theme"
  8593. ],
  8594. "sut/drush/contrib/{$name}": [
  8595. "type:drupal-drush"
  8596. ]
  8597. }
  8598. },
  8599. "autoload": {
  8600. "psr-4": {
  8601. "Drush\\": "src/",
  8602. "Drush\\Internal\\": "src/internal-forks"
  8603. }
  8604. },
  8605. "notification-url": "https://packagist.org/downloads/",
  8606. "license": [
  8607. "GPL-2.0-or-later"
  8608. ],
  8609. "authors": [
  8610. {
  8611. "name": "Moshe Weitzman",
  8612. "email": "weitzman@tejasa.com"
  8613. },
  8614. {
  8615. "name": "Owen Barton",
  8616. "email": "drupal@owenbarton.com"
  8617. },
  8618. {
  8619. "name": "Greg Anderson",
  8620. "email": "greg.1.anderson@greenknowe.org"
  8621. },
  8622. {
  8623. "name": "Jonathan Araña Cruz",
  8624. "email": "jonhattan@faita.net"
  8625. },
  8626. {
  8627. "name": "Jonathan Hedstrom",
  8628. "email": "jhedstrom@gmail.com"
  8629. },
  8630. {
  8631. "name": "Christopher Gervais",
  8632. "email": "chris@ergonlogic.com"
  8633. },
  8634. {
  8635. "name": "Dave Reid",
  8636. "email": "dave@davereid.net"
  8637. },
  8638. {
  8639. "name": "Damian Lee",
  8640. "email": "damiankloip@googlemail.com"
  8641. }
  8642. ],
  8643. "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.",
  8644. "homepage": "http://www.drush.org",
  8645. "support": {
  8646. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8647. "irc": "irc://irc.freenode.org/drush",
  8648. "issues": "https://github.com/drush-ops/drush/issues",
  8649. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8650. "source": "https://github.com/drush-ops/drush/tree/10.6.1"
  8651. },
  8652. "funding": [
  8653. {
  8654. "url": "https://github.com/weitzman",
  8655. "type": "github"
  8656. }
  8657. ],
  8658. "time": "2021-10-05T11:14:14+00:00"
  8659. },
  8660. {
  8661. "name": "egulias/email-validator",
  8662. "version": "2.1.25",
  8663. "source": {
  8664. "type": "git",
  8665. "url": "https://github.com/egulias/EmailValidator.git",
  8666. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  8667. },
  8668. "dist": {
  8669. "type": "zip",
  8670. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  8671. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  8672. "shasum": ""
  8673. },
  8674. "require": {
  8675. "doctrine/lexer": "^1.0.1",
  8676. "php": ">=5.5",
  8677. "symfony/polyfill-intl-idn": "^1.10"
  8678. },
  8679. "require-dev": {
  8680. "dominicsayers/isemail": "^3.0.7",
  8681. "phpunit/phpunit": "^4.8.36|^7.5.15",
  8682. "satooshi/php-coveralls": "^1.0.1"
  8683. },
  8684. "suggest": {
  8685. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8686. },
  8687. "type": "library",
  8688. "extra": {
  8689. "branch-alias": {
  8690. "dev-master": "2.1.x-dev"
  8691. }
  8692. },
  8693. "autoload": {
  8694. "psr-4": {
  8695. "Egulias\\EmailValidator\\": "src"
  8696. }
  8697. },
  8698. "notification-url": "https://packagist.org/downloads/",
  8699. "license": [
  8700. "MIT"
  8701. ],
  8702. "authors": [
  8703. {
  8704. "name": "Eduardo Gulias Davis"
  8705. }
  8706. ],
  8707. "description": "A library for validating emails against several RFCs",
  8708. "homepage": "https://github.com/egulias/EmailValidator",
  8709. "keywords": [
  8710. "email",
  8711. "emailvalidation",
  8712. "emailvalidator",
  8713. "validation",
  8714. "validator"
  8715. ],
  8716. "support": {
  8717. "issues": "https://github.com/egulias/EmailValidator/issues",
  8718. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  8719. },
  8720. "funding": [
  8721. {
  8722. "url": "https://github.com/egulias",
  8723. "type": "github"
  8724. }
  8725. ],
  8726. "time": "2020-12-29T14:50:06+00:00"
  8727. },
  8728. {
  8729. "name": "enlightn/security-checker",
  8730. "version": "v1.9.0",
  8731. "source": {
  8732. "type": "git",
  8733. "url": "https://github.com/enlightn/security-checker.git",
  8734. "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1"
  8735. },
  8736. "dist": {
  8737. "type": "zip",
  8738. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/dc5bce653fa4d9c792e9dcffa728c0642847c1e1",
  8739. "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1",
  8740. "shasum": ""
  8741. },
  8742. "require": {
  8743. "ext-json": "*",
  8744. "guzzlehttp/guzzle": "^6.3|^7.0",
  8745. "php": ">=5.6",
  8746. "symfony/console": "^3.4|^4|^5",
  8747. "symfony/finder": "^3|^4|^5",
  8748. "symfony/process": "^3.4|^4|^5",
  8749. "symfony/yaml": "^3.4|^4|^5"
  8750. },
  8751. "require-dev": {
  8752. "ext-zip": "*",
  8753. "friendsofphp/php-cs-fixer": "^2.18",
  8754. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  8755. },
  8756. "bin": [
  8757. "security-checker"
  8758. ],
  8759. "type": "library",
  8760. "autoload": {
  8761. "psr-4": {
  8762. "Enlightn\\SecurityChecker\\": "src"
  8763. }
  8764. },
  8765. "notification-url": "https://packagist.org/downloads/",
  8766. "license": [
  8767. "MIT"
  8768. ],
  8769. "authors": [
  8770. {
  8771. "name": "Paras Malhotra",
  8772. "email": "paras@laravel-enlightn.com"
  8773. },
  8774. {
  8775. "name": "Miguel Piedrafita",
  8776. "email": "soy@miguelpiedrafita.com"
  8777. }
  8778. ],
  8779. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  8780. "keywords": [
  8781. "package",
  8782. "php",
  8783. "scanner",
  8784. "security",
  8785. "security advisories",
  8786. "vulnerability scanner"
  8787. ],
  8788. "support": {
  8789. "issues": "https://github.com/enlightn/security-checker/issues",
  8790. "source": "https://github.com/enlightn/security-checker/tree/v1.9.0"
  8791. },
  8792. "time": "2021-05-06T09:03:35+00:00"
  8793. },
  8794. {
  8795. "name": "fileeye/mimemap",
  8796. "version": "1.2.0",
  8797. "source": {
  8798. "type": "git",
  8799. "url": "https://github.com/FileEye/MimeMap.git",
  8800. "reference": "b5383beaa03eb613dfb922c9d935c3b94945397a"
  8801. },
  8802. "dist": {
  8803. "type": "zip",
  8804. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/b5383beaa03eb613dfb922c9d935c3b94945397a",
  8805. "reference": "b5383beaa03eb613dfb922c9d935c3b94945397a",
  8806. "shasum": ""
  8807. },
  8808. "require": {
  8809. "composer-runtime-api": "^2.0.0",
  8810. "php": ">=5.6"
  8811. },
  8812. "require-dev": {
  8813. "phpunit/phpunit": "^5 | ^6 | ^7 | ^8 | ^9",
  8814. "sebastian/comparator": "*",
  8815. "sebastian/diff": "*",
  8816. "squizlabs/php_codesniffer": "*",
  8817. "symfony/console": "*",
  8818. "symfony/filesystem": "*",
  8819. "symfony/var-dumper": "*",
  8820. "symfony/yaml": "*"
  8821. },
  8822. "bin": [
  8823. "bin/fileeye-mimemap"
  8824. ],
  8825. "type": "library",
  8826. "extra": {
  8827. "branch-alias": {
  8828. "dev-master": "1.x-dev"
  8829. }
  8830. },
  8831. "autoload": {
  8832. "psr-4": {
  8833. "FileEye\\MimeMap\\": "src/"
  8834. }
  8835. },
  8836. "notification-url": "https://packagist.org/downloads/",
  8837. "license": [
  8838. "LGPL-3.0-or-later"
  8839. ],
  8840. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8841. "homepage": "https://github.com/FileEye/MimeMap",
  8842. "keywords": [
  8843. "mime",
  8844. "mime-database",
  8845. "mime-parser",
  8846. "mime-type"
  8847. ],
  8848. "support": {
  8849. "issues": "https://github.com/FileEye/MimeMap/issues",
  8850. "source": "https://github.com/FileEye/MimeMap/tree/1.2.0"
  8851. },
  8852. "time": "2021-09-21T16:22:01+00:00"
  8853. },
  8854. {
  8855. "name": "grasmash/expander",
  8856. "version": "1.0.0",
  8857. "source": {
  8858. "type": "git",
  8859. "url": "https://github.com/grasmash/expander.git",
  8860. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  8861. },
  8862. "dist": {
  8863. "type": "zip",
  8864. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8865. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8866. "shasum": ""
  8867. },
  8868. "require": {
  8869. "dflydev/dot-access-data": "^1.1.0",
  8870. "php": ">=5.4"
  8871. },
  8872. "require-dev": {
  8873. "greg-1-anderson/composer-test-scenarios": "^1",
  8874. "phpunit/phpunit": "^4|^5.5.4",
  8875. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8876. "squizlabs/php_codesniffer": "^2.7"
  8877. },
  8878. "type": "library",
  8879. "extra": {
  8880. "branch-alias": {
  8881. "dev-master": "1.x-dev"
  8882. }
  8883. },
  8884. "autoload": {
  8885. "psr-4": {
  8886. "Grasmash\\Expander\\": "src/"
  8887. }
  8888. },
  8889. "notification-url": "https://packagist.org/downloads/",
  8890. "license": [
  8891. "MIT"
  8892. ],
  8893. "authors": [
  8894. {
  8895. "name": "Matthew Grasmick"
  8896. }
  8897. ],
  8898. "description": "Expands internal property references in PHP arrays file.",
  8899. "support": {
  8900. "issues": "https://github.com/grasmash/expander/issues",
  8901. "source": "https://github.com/grasmash/expander/tree/master"
  8902. },
  8903. "time": "2017-12-21T22:14:55+00:00"
  8904. },
  8905. {
  8906. "name": "grasmash/yaml-expander",
  8907. "version": "1.4.0",
  8908. "source": {
  8909. "type": "git",
  8910. "url": "https://github.com/grasmash/yaml-expander.git",
  8911. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8912. },
  8913. "dist": {
  8914. "type": "zip",
  8915. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8916. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8917. "shasum": ""
  8918. },
  8919. "require": {
  8920. "dflydev/dot-access-data": "^1.1.0",
  8921. "php": ">=5.4",
  8922. "symfony/yaml": "^2.8.11|^3|^4"
  8923. },
  8924. "require-dev": {
  8925. "greg-1-anderson/composer-test-scenarios": "^1",
  8926. "phpunit/phpunit": "^4.8|^5.5.4",
  8927. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8928. "squizlabs/php_codesniffer": "^2.7"
  8929. },
  8930. "type": "library",
  8931. "extra": {
  8932. "branch-alias": {
  8933. "dev-master": "1.x-dev"
  8934. }
  8935. },
  8936. "autoload": {
  8937. "psr-4": {
  8938. "Grasmash\\YamlExpander\\": "src/"
  8939. }
  8940. },
  8941. "notification-url": "https://packagist.org/downloads/",
  8942. "license": [
  8943. "MIT"
  8944. ],
  8945. "authors": [
  8946. {
  8947. "name": "Matthew Grasmick"
  8948. }
  8949. ],
  8950. "description": "Expands internal property references in a yaml file.",
  8951. "support": {
  8952. "issues": "https://github.com/grasmash/yaml-expander/issues",
  8953. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  8954. },
  8955. "time": "2017-12-16T16:06:03+00:00"
  8956. },
  8957. {
  8958. "name": "guzzlehttp/guzzle",
  8959. "version": "6.5.5",
  8960. "source": {
  8961. "type": "git",
  8962. "url": "https://github.com/guzzle/guzzle.git",
  8963. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8964. },
  8965. "dist": {
  8966. "type": "zip",
  8967. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8968. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8969. "shasum": ""
  8970. },
  8971. "require": {
  8972. "ext-json": "*",
  8973. "guzzlehttp/promises": "^1.0",
  8974. "guzzlehttp/psr7": "^1.6.1",
  8975. "php": ">=5.5",
  8976. "symfony/polyfill-intl-idn": "^1.17.0"
  8977. },
  8978. "require-dev": {
  8979. "ext-curl": "*",
  8980. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8981. "psr/log": "^1.1"
  8982. },
  8983. "suggest": {
  8984. "psr/log": "Required for using the Log middleware"
  8985. },
  8986. "type": "library",
  8987. "extra": {
  8988. "branch-alias": {
  8989. "dev-master": "6.5-dev"
  8990. }
  8991. },
  8992. "autoload": {
  8993. "psr-4": {
  8994. "GuzzleHttp\\": "src/"
  8995. },
  8996. "files": [
  8997. "src/functions_include.php"
  8998. ]
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "MIT"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Michael Dowling",
  9007. "email": "mtdowling@gmail.com",
  9008. "homepage": "https://github.com/mtdowling"
  9009. }
  9010. ],
  9011. "description": "Guzzle is a PHP HTTP client library",
  9012. "homepage": "http://guzzlephp.org/",
  9013. "keywords": [
  9014. "client",
  9015. "curl",
  9016. "framework",
  9017. "http",
  9018. "http client",
  9019. "rest",
  9020. "web service"
  9021. ],
  9022. "support": {
  9023. "issues": "https://github.com/guzzle/guzzle/issues",
  9024. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  9025. },
  9026. "time": "2020-06-16T21:01:06+00:00"
  9027. },
  9028. {
  9029. "name": "guzzlehttp/promises",
  9030. "version": "1.4.1",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/guzzle/promises.git",
  9034. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  9039. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  9040. "shasum": ""
  9041. },
  9042. "require": {
  9043. "php": ">=5.5"
  9044. },
  9045. "require-dev": {
  9046. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  9047. },
  9048. "type": "library",
  9049. "extra": {
  9050. "branch-alias": {
  9051. "dev-master": "1.4-dev"
  9052. }
  9053. },
  9054. "autoload": {
  9055. "psr-4": {
  9056. "GuzzleHttp\\Promise\\": "src/"
  9057. },
  9058. "files": [
  9059. "src/functions_include.php"
  9060. ]
  9061. },
  9062. "notification-url": "https://packagist.org/downloads/",
  9063. "license": [
  9064. "MIT"
  9065. ],
  9066. "authors": [
  9067. {
  9068. "name": "Michael Dowling",
  9069. "email": "mtdowling@gmail.com",
  9070. "homepage": "https://github.com/mtdowling"
  9071. }
  9072. ],
  9073. "description": "Guzzle promises library",
  9074. "keywords": [
  9075. "promise"
  9076. ],
  9077. "support": {
  9078. "issues": "https://github.com/guzzle/promises/issues",
  9079. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  9080. },
  9081. "time": "2021-03-07T09:25:29+00:00"
  9082. },
  9083. {
  9084. "name": "guzzlehttp/psr7",
  9085. "version": "1.8.2",
  9086. "source": {
  9087. "type": "git",
  9088. "url": "https://github.com/guzzle/psr7.git",
  9089. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  9090. },
  9091. "dist": {
  9092. "type": "zip",
  9093. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  9094. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  9095. "shasum": ""
  9096. },
  9097. "require": {
  9098. "php": ">=5.4.0",
  9099. "psr/http-message": "~1.0",
  9100. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  9101. },
  9102. "provide": {
  9103. "psr/http-message-implementation": "1.0"
  9104. },
  9105. "require-dev": {
  9106. "ext-zlib": "*",
  9107. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  9108. },
  9109. "suggest": {
  9110. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  9111. },
  9112. "type": "library",
  9113. "extra": {
  9114. "branch-alias": {
  9115. "dev-master": "1.7-dev"
  9116. }
  9117. },
  9118. "autoload": {
  9119. "psr-4": {
  9120. "GuzzleHttp\\Psr7\\": "src/"
  9121. },
  9122. "files": [
  9123. "src/functions_include.php"
  9124. ]
  9125. },
  9126. "notification-url": "https://packagist.org/downloads/",
  9127. "license": [
  9128. "MIT"
  9129. ],
  9130. "authors": [
  9131. {
  9132. "name": "Michael Dowling",
  9133. "email": "mtdowling@gmail.com",
  9134. "homepage": "https://github.com/mtdowling"
  9135. },
  9136. {
  9137. "name": "Tobias Schultze",
  9138. "homepage": "https://github.com/Tobion"
  9139. }
  9140. ],
  9141. "description": "PSR-7 message implementation that also provides common utility methods",
  9142. "keywords": [
  9143. "http",
  9144. "message",
  9145. "psr-7",
  9146. "request",
  9147. "response",
  9148. "stream",
  9149. "uri",
  9150. "url"
  9151. ],
  9152. "support": {
  9153. "issues": "https://github.com/guzzle/psr7/issues",
  9154. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  9155. },
  9156. "time": "2021-04-26T09:17:50+00:00"
  9157. },
  9158. {
  9159. "name": "kint-php/kint",
  9160. "version": "3.3",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/kint-php/kint.git",
  9164. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9169. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "php": ">=5.3.6"
  9174. },
  9175. "require-dev": {
  9176. "friendsofphp/php-cs-fixer": "^2.0",
  9177. "phpunit/phpunit": "^4.0",
  9178. "seld/phar-utils": "^1.0",
  9179. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  9180. "vimeo/psalm": "^3.0"
  9181. },
  9182. "suggest": {
  9183. "ext-ctype": "Simple data type tests",
  9184. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  9185. "ext-mbstring": "Provides string encoding detection",
  9186. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  9187. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  9188. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  9189. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  9190. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  9191. },
  9192. "type": "library",
  9193. "autoload": {
  9194. "files": [
  9195. "init.php"
  9196. ],
  9197. "psr-4": {
  9198. "Kint\\": "src/"
  9199. }
  9200. },
  9201. "notification-url": "https://packagist.org/downloads/",
  9202. "license": [
  9203. "MIT"
  9204. ],
  9205. "authors": [
  9206. {
  9207. "name": "Jonathan Vollebregt",
  9208. "homepage": "https://github.com/jnvsor"
  9209. },
  9210. {
  9211. "name": "Rokas Šleinius",
  9212. "homepage": "https://github.com/raveren"
  9213. },
  9214. {
  9215. "name": "Contributors",
  9216. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  9217. }
  9218. ],
  9219. "description": "Kint - debugging tool for PHP developers",
  9220. "homepage": "https://kint-php.github.io/kint/",
  9221. "keywords": [
  9222. "debug",
  9223. "kint",
  9224. "php"
  9225. ],
  9226. "support": {
  9227. "issues": "https://github.com/kint-php/kint/issues",
  9228. "source": "https://github.com/kint-php/kint/tree/master"
  9229. },
  9230. "time": "2019-10-17T18:05:24+00:00"
  9231. },
  9232. {
  9233. "name": "laminas/laminas-diactoros",
  9234. "version": "2.6.0",
  9235. "source": {
  9236. "type": "git",
  9237. "url": "https://github.com/laminas/laminas-diactoros.git",
  9238. "reference": "7d2034110ae18afe05050b796a3ee4b3fe177876"
  9239. },
  9240. "dist": {
  9241. "type": "zip",
  9242. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/7d2034110ae18afe05050b796a3ee4b3fe177876",
  9243. "reference": "7d2034110ae18afe05050b796a3ee4b3fe177876",
  9244. "shasum": ""
  9245. },
  9246. "require": {
  9247. "laminas/laminas-zendframework-bridge": "^1.0",
  9248. "php": "^7.3 || ~8.0.0",
  9249. "psr/http-factory": "^1.0",
  9250. "psr/http-message": "^1.0"
  9251. },
  9252. "conflict": {
  9253. "phpspec/prophecy": "<1.9.0"
  9254. },
  9255. "provide": {
  9256. "psr/http-factory-implementation": "1.0",
  9257. "psr/http-message-implementation": "1.0"
  9258. },
  9259. "replace": {
  9260. "zendframework/zend-diactoros": "^2.2.1"
  9261. },
  9262. "require-dev": {
  9263. "ext-curl": "*",
  9264. "ext-dom": "*",
  9265. "ext-gd": "*",
  9266. "ext-libxml": "*",
  9267. "http-interop/http-factory-tests": "^0.8.0",
  9268. "laminas/laminas-coding-standard": "~1.0.0",
  9269. "php-http/psr7-integration-tests": "^1.1",
  9270. "phpspec/prophecy-phpunit": "^2.0",
  9271. "phpunit/phpunit": "^9.1",
  9272. "psalm/plugin-phpunit": "^0.14.0",
  9273. "vimeo/psalm": "^4.3"
  9274. },
  9275. "type": "library",
  9276. "extra": {
  9277. "laminas": {
  9278. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  9279. "module": "Laminas\\Diactoros"
  9280. }
  9281. },
  9282. "autoload": {
  9283. "files": [
  9284. "src/functions/create_uploaded_file.php",
  9285. "src/functions/marshal_headers_from_sapi.php",
  9286. "src/functions/marshal_method_from_sapi.php",
  9287. "src/functions/marshal_protocol_version_from_sapi.php",
  9288. "src/functions/marshal_uri_from_sapi.php",
  9289. "src/functions/normalize_server.php",
  9290. "src/functions/normalize_uploaded_files.php",
  9291. "src/functions/parse_cookie_header.php",
  9292. "src/functions/create_uploaded_file.legacy.php",
  9293. "src/functions/marshal_headers_from_sapi.legacy.php",
  9294. "src/functions/marshal_method_from_sapi.legacy.php",
  9295. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  9296. "src/functions/marshal_uri_from_sapi.legacy.php",
  9297. "src/functions/normalize_server.legacy.php",
  9298. "src/functions/normalize_uploaded_files.legacy.php",
  9299. "src/functions/parse_cookie_header.legacy.php"
  9300. ],
  9301. "psr-4": {
  9302. "Laminas\\Diactoros\\": "src/"
  9303. }
  9304. },
  9305. "notification-url": "https://packagist.org/downloads/",
  9306. "license": [
  9307. "BSD-3-Clause"
  9308. ],
  9309. "description": "PSR HTTP Message implementations",
  9310. "homepage": "https://laminas.dev",
  9311. "keywords": [
  9312. "http",
  9313. "laminas",
  9314. "psr",
  9315. "psr-17",
  9316. "psr-7"
  9317. ],
  9318. "support": {
  9319. "chat": "https://laminas.dev/chat",
  9320. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  9321. "forum": "https://discourse.laminas.dev",
  9322. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  9323. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  9324. "source": "https://github.com/laminas/laminas-diactoros"
  9325. },
  9326. "funding": [
  9327. {
  9328. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9329. "type": "community_bridge"
  9330. }
  9331. ],
  9332. "time": "2021-05-18T14:41:54+00:00"
  9333. },
  9334. {
  9335. "name": "laminas/laminas-escaper",
  9336. "version": "2.7.0",
  9337. "source": {
  9338. "type": "git",
  9339. "url": "https://github.com/laminas/laminas-escaper.git",
  9340. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  9341. },
  9342. "dist": {
  9343. "type": "zip",
  9344. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  9345. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  9346. "shasum": ""
  9347. },
  9348. "require": {
  9349. "laminas/laminas-zendframework-bridge": "^1.0",
  9350. "php": "^7.3 || ~8.0.0"
  9351. },
  9352. "replace": {
  9353. "zendframework/zend-escaper": "^2.6.1"
  9354. },
  9355. "require-dev": {
  9356. "laminas/laminas-coding-standard": "~1.0.0",
  9357. "phpunit/phpunit": "^9.3",
  9358. "psalm/plugin-phpunit": "^0.12.2",
  9359. "vimeo/psalm": "^3.16"
  9360. },
  9361. "suggest": {
  9362. "ext-iconv": "*",
  9363. "ext-mbstring": "*"
  9364. },
  9365. "type": "library",
  9366. "autoload": {
  9367. "psr-4": {
  9368. "Laminas\\Escaper\\": "src/"
  9369. }
  9370. },
  9371. "notification-url": "https://packagist.org/downloads/",
  9372. "license": [
  9373. "BSD-3-Clause"
  9374. ],
  9375. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9376. "homepage": "https://laminas.dev",
  9377. "keywords": [
  9378. "escaper",
  9379. "laminas"
  9380. ],
  9381. "support": {
  9382. "chat": "https://laminas.dev/chat",
  9383. "docs": "https://docs.laminas.dev/laminas-escaper/",
  9384. "forum": "https://discourse.laminas.dev",
  9385. "issues": "https://github.com/laminas/laminas-escaper/issues",
  9386. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  9387. "source": "https://github.com/laminas/laminas-escaper"
  9388. },
  9389. "funding": [
  9390. {
  9391. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9392. "type": "community_bridge"
  9393. }
  9394. ],
  9395. "time": "2020-11-17T21:26:43+00:00"
  9396. },
  9397. {
  9398. "name": "laminas/laminas-feed",
  9399. "version": "2.14.1",
  9400. "source": {
  9401. "type": "git",
  9402. "url": "https://github.com/laminas/laminas-feed.git",
  9403. "reference": "463fdae515fba30633906098c258d3b2c733c15c"
  9404. },
  9405. "dist": {
  9406. "type": "zip",
  9407. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/463fdae515fba30633906098c258d3b2c733c15c",
  9408. "reference": "463fdae515fba30633906098c258d3b2c733c15c",
  9409. "shasum": ""
  9410. },
  9411. "require": {
  9412. "ext-dom": "*",
  9413. "ext-libxml": "*",
  9414. "laminas/laminas-escaper": "^2.5.2",
  9415. "laminas/laminas-stdlib": "^3.2.1",
  9416. "laminas/laminas-zendframework-bridge": "^1.0",
  9417. "php": "^7.3 || ~8.0.0"
  9418. },
  9419. "conflict": {
  9420. "laminas/laminas-servicemanager": "<3.3"
  9421. },
  9422. "replace": {
  9423. "zendframework/zend-feed": "^2.12.0"
  9424. },
  9425. "require-dev": {
  9426. "laminas/laminas-cache": "^2.7.2",
  9427. "laminas/laminas-coding-standard": "~1.0.0",
  9428. "laminas/laminas-db": "^2.8.2",
  9429. "laminas/laminas-http": "^2.7",
  9430. "laminas/laminas-servicemanager": "^3.3",
  9431. "laminas/laminas-validator": "^2.10.1",
  9432. "phpunit/phpunit": "^9.3",
  9433. "psalm/plugin-phpunit": "^0.13.0",
  9434. "psr/http-message": "^1.0.1",
  9435. "vimeo/psalm": "^4.1"
  9436. },
  9437. "suggest": {
  9438. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  9439. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  9440. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  9441. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  9442. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  9443. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  9444. },
  9445. "type": "library",
  9446. "autoload": {
  9447. "psr-4": {
  9448. "Laminas\\Feed\\": "src/"
  9449. }
  9450. },
  9451. "notification-url": "https://packagist.org/downloads/",
  9452. "license": [
  9453. "BSD-3-Clause"
  9454. ],
  9455. "description": "provides functionality for consuming RSS and Atom feeds",
  9456. "homepage": "https://laminas.dev",
  9457. "keywords": [
  9458. "feed",
  9459. "laminas"
  9460. ],
  9461. "support": {
  9462. "chat": "https://laminas.dev/chat",
  9463. "docs": "https://docs.laminas.dev/laminas-feed/",
  9464. "forum": "https://discourse.laminas.dev",
  9465. "issues": "https://github.com/laminas/laminas-feed/issues",
  9466. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  9467. "source": "https://github.com/laminas/laminas-feed"
  9468. },
  9469. "funding": [
  9470. {
  9471. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9472. "type": "community_bridge"
  9473. }
  9474. ],
  9475. "time": "2021-04-01T19:26:09+00:00"
  9476. },
  9477. {
  9478. "name": "laminas/laminas-stdlib",
  9479. "version": "3.3.1",
  9480. "source": {
  9481. "type": "git",
  9482. "url": "https://github.com/laminas/laminas-stdlib.git",
  9483. "reference": "d81c7ffe602ed0e6ecb18691019111c0f4bf1efe"
  9484. },
  9485. "dist": {
  9486. "type": "zip",
  9487. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/d81c7ffe602ed0e6ecb18691019111c0f4bf1efe",
  9488. "reference": "d81c7ffe602ed0e6ecb18691019111c0f4bf1efe",
  9489. "shasum": ""
  9490. },
  9491. "require": {
  9492. "laminas/laminas-zendframework-bridge": "^1.0",
  9493. "php": "^7.3 || ^8.0"
  9494. },
  9495. "replace": {
  9496. "zendframework/zend-stdlib": "^3.2.1"
  9497. },
  9498. "require-dev": {
  9499. "laminas/laminas-coding-standard": "~1.0.0",
  9500. "phpbench/phpbench": "^0.17.1",
  9501. "phpunit/phpunit": "~9.3.7"
  9502. },
  9503. "type": "library",
  9504. "autoload": {
  9505. "psr-4": {
  9506. "Laminas\\Stdlib\\": "src/"
  9507. }
  9508. },
  9509. "notification-url": "https://packagist.org/downloads/",
  9510. "license": [
  9511. "BSD-3-Clause"
  9512. ],
  9513. "description": "SPL extensions, array utilities, error handlers, and more",
  9514. "homepage": "https://laminas.dev",
  9515. "keywords": [
  9516. "laminas",
  9517. "stdlib"
  9518. ],
  9519. "support": {
  9520. "chat": "https://laminas.dev/chat",
  9521. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  9522. "forum": "https://discourse.laminas.dev",
  9523. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  9524. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  9525. "source": "https://github.com/laminas/laminas-stdlib"
  9526. },
  9527. "funding": [
  9528. {
  9529. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9530. "type": "community_bridge"
  9531. }
  9532. ],
  9533. "time": "2020-11-19T20:18:59+00:00"
  9534. },
  9535. {
  9536. "name": "laminas/laminas-zendframework-bridge",
  9537. "version": "1.2.0",
  9538. "source": {
  9539. "type": "git",
  9540. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  9541. "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32"
  9542. },
  9543. "dist": {
  9544. "type": "zip",
  9545. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6cccbddfcfc742eb02158d6137ca5687d92cee32",
  9546. "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32",
  9547. "shasum": ""
  9548. },
  9549. "require": {
  9550. "php": "^7.3 || ^8.0"
  9551. },
  9552. "require-dev": {
  9553. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  9554. "psalm/plugin-phpunit": "^0.15.1",
  9555. "squizlabs/php_codesniffer": "^3.5",
  9556. "vimeo/psalm": "^4.6"
  9557. },
  9558. "type": "library",
  9559. "extra": {
  9560. "laminas": {
  9561. "module": "Laminas\\ZendFrameworkBridge"
  9562. }
  9563. },
  9564. "autoload": {
  9565. "files": [
  9566. "src/autoload.php"
  9567. ],
  9568. "psr-4": {
  9569. "Laminas\\ZendFrameworkBridge\\": "src//"
  9570. }
  9571. },
  9572. "notification-url": "https://packagist.org/downloads/",
  9573. "license": [
  9574. "BSD-3-Clause"
  9575. ],
  9576. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  9577. "keywords": [
  9578. "ZendFramework",
  9579. "autoloading",
  9580. "laminas",
  9581. "zf"
  9582. ],
  9583. "support": {
  9584. "forum": "https://discourse.laminas.dev/",
  9585. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  9586. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  9587. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  9588. },
  9589. "funding": [
  9590. {
  9591. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9592. "type": "community_bridge"
  9593. }
  9594. ],
  9595. "time": "2021-02-25T21:54:58+00:00"
  9596. },
  9597. {
  9598. "name": "league/container",
  9599. "version": "3.4.1",
  9600. "source": {
  9601. "type": "git",
  9602. "url": "https://github.com/thephpleague/container.git",
  9603. "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd"
  9604. },
  9605. "dist": {
  9606. "type": "zip",
  9607. "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
  9608. "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
  9609. "shasum": ""
  9610. },
  9611. "require": {
  9612. "php": "^7.0 || ^8.0",
  9613. "psr/container": "^1.0.0"
  9614. },
  9615. "provide": {
  9616. "psr/container-implementation": "^1.0"
  9617. },
  9618. "replace": {
  9619. "orno/di": "~2.0"
  9620. },
  9621. "require-dev": {
  9622. "phpunit/phpunit": "^6.0 || ^7.0",
  9623. "roave/security-advisories": "dev-latest",
  9624. "scrutinizer/ocular": "^1.8",
  9625. "squizlabs/php_codesniffer": "^3.5"
  9626. },
  9627. "type": "library",
  9628. "extra": {
  9629. "branch-alias": {
  9630. "dev-master": "3.x-dev",
  9631. "dev-3.x": "3.x-dev",
  9632. "dev-2.x": "2.x-dev",
  9633. "dev-1.x": "1.x-dev"
  9634. }
  9635. },
  9636. "autoload": {
  9637. "psr-4": {
  9638. "League\\Container\\": "src"
  9639. }
  9640. },
  9641. "notification-url": "https://packagist.org/downloads/",
  9642. "license": [
  9643. "MIT"
  9644. ],
  9645. "authors": [
  9646. {
  9647. "name": "Phil Bennett",
  9648. "email": "philipobenito@gmail.com",
  9649. "homepage": "http://www.philipobenito.com",
  9650. "role": "Developer"
  9651. }
  9652. ],
  9653. "description": "A fast and intuitive dependency injection container.",
  9654. "homepage": "https://github.com/thephpleague/container",
  9655. "keywords": [
  9656. "container",
  9657. "dependency",
  9658. "di",
  9659. "injection",
  9660. "league",
  9661. "provider",
  9662. "service"
  9663. ],
  9664. "support": {
  9665. "issues": "https://github.com/thephpleague/container/issues",
  9666. "source": "https://github.com/thephpleague/container/tree/3.4.1"
  9667. },
  9668. "funding": [
  9669. {
  9670. "url": "https://github.com/philipobenito",
  9671. "type": "github"
  9672. }
  9673. ],
  9674. "time": "2021-07-09T08:23:52+00:00"
  9675. },
  9676. {
  9677. "name": "lsolesen/pel",
  9678. "version": "0.9.10",
  9679. "source": {
  9680. "type": "git",
  9681. "url": "https://github.com/pel/pel.git",
  9682. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9"
  9683. },
  9684. "dist": {
  9685. "type": "zip",
  9686. "url": "https://api.github.com/repos/pel/pel/zipball/04ecb8a29e4b1628414193b0df9294232a44f8a9",
  9687. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9",
  9688. "shasum": ""
  9689. },
  9690. "require": {
  9691. "php": ">=7.1.0"
  9692. },
  9693. "require-dev": {
  9694. "ext-exif": "*",
  9695. "ext-gd": "*",
  9696. "php-coveralls/php-coveralls": ">2.4",
  9697. "squizlabs/php_codesniffer": ">3.5",
  9698. "symfony/phpunit-bridge": "^4 || ^5"
  9699. },
  9700. "type": "library",
  9701. "autoload": {
  9702. "psr-4": {
  9703. "lsolesen\\pel\\": "src/"
  9704. }
  9705. },
  9706. "notification-url": "https://packagist.org/downloads/",
  9707. "license": [
  9708. "GPL-2.0"
  9709. ],
  9710. "authors": [
  9711. {
  9712. "name": "Lars Olesen",
  9713. "email": "lars@intraface.dk",
  9714. "homepage": "http://intraface.dk",
  9715. "role": "Developer"
  9716. },
  9717. {
  9718. "name": "Martin Geisler",
  9719. "email": "martin@geisler.net",
  9720. "homepage": "http://geisler.net",
  9721. "role": "Developer"
  9722. }
  9723. ],
  9724. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9725. "homepage": "http://pel.github.com/pel/",
  9726. "keywords": [
  9727. "exif",
  9728. "image"
  9729. ],
  9730. "support": {
  9731. "issues": "https://github.com/pel/pel/issues",
  9732. "source": "https://github.com/pel/pel/tree/0.9.10"
  9733. },
  9734. "time": "2021-01-01T22:15:50+00:00"
  9735. },
  9736. {
  9737. "name": "masterminds/html5",
  9738. "version": "2.7.4",
  9739. "source": {
  9740. "type": "git",
  9741. "url": "https://github.com/Masterminds/html5-php.git",
  9742. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  9743. },
  9744. "dist": {
  9745. "type": "zip",
  9746. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  9747. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  9748. "shasum": ""
  9749. },
  9750. "require": {
  9751. "ext-ctype": "*",
  9752. "ext-dom": "*",
  9753. "ext-libxml": "*",
  9754. "php": ">=5.3.0"
  9755. },
  9756. "require-dev": {
  9757. "phpunit/phpunit": "^4.8.35"
  9758. },
  9759. "type": "library",
  9760. "extra": {
  9761. "branch-alias": {
  9762. "dev-master": "2.7-dev"
  9763. }
  9764. },
  9765. "autoload": {
  9766. "psr-4": {
  9767. "Masterminds\\": "src"
  9768. }
  9769. },
  9770. "notification-url": "https://packagist.org/downloads/",
  9771. "license": [
  9772. "MIT"
  9773. ],
  9774. "authors": [
  9775. {
  9776. "name": "Matt Butcher",
  9777. "email": "technosophos@gmail.com"
  9778. },
  9779. {
  9780. "name": "Matt Farina",
  9781. "email": "matt@mattfarina.com"
  9782. },
  9783. {
  9784. "name": "Asmir Mustafic",
  9785. "email": "goetas@gmail.com"
  9786. }
  9787. ],
  9788. "description": "An HTML5 parser and serializer.",
  9789. "homepage": "http://masterminds.github.io/html5-php",
  9790. "keywords": [
  9791. "HTML5",
  9792. "dom",
  9793. "html",
  9794. "parser",
  9795. "querypath",
  9796. "serializer",
  9797. "xml"
  9798. ],
  9799. "support": {
  9800. "issues": "https://github.com/Masterminds/html5-php/issues",
  9801. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  9802. },
  9803. "time": "2020-10-01T13:52:52+00:00"
  9804. },
  9805. {
  9806. "name": "nikic/php-parser",
  9807. "version": "v4.13.1",
  9808. "source": {
  9809. "type": "git",
  9810. "url": "https://github.com/nikic/PHP-Parser.git",
  9811. "reference": "63a79e8daa781cac14e5195e63ed8ae231dd10fd"
  9812. },
  9813. "dist": {
  9814. "type": "zip",
  9815. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/63a79e8daa781cac14e5195e63ed8ae231dd10fd",
  9816. "reference": "63a79e8daa781cac14e5195e63ed8ae231dd10fd",
  9817. "shasum": ""
  9818. },
  9819. "require": {
  9820. "ext-tokenizer": "*",
  9821. "php": ">=7.0"
  9822. },
  9823. "require-dev": {
  9824. "ircmaxell/php-yacc": "^0.0.7",
  9825. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9826. },
  9827. "bin": [
  9828. "bin/php-parse"
  9829. ],
  9830. "type": "library",
  9831. "extra": {
  9832. "branch-alias": {
  9833. "dev-master": "4.9-dev"
  9834. }
  9835. },
  9836. "autoload": {
  9837. "psr-4": {
  9838. "PhpParser\\": "lib/PhpParser"
  9839. }
  9840. },
  9841. "notification-url": "https://packagist.org/downloads/",
  9842. "license": [
  9843. "BSD-3-Clause"
  9844. ],
  9845. "authors": [
  9846. {
  9847. "name": "Nikita Popov"
  9848. }
  9849. ],
  9850. "description": "A PHP parser written in PHP",
  9851. "keywords": [
  9852. "parser",
  9853. "php"
  9854. ],
  9855. "support": {
  9856. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9857. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.1"
  9858. },
  9859. "time": "2021-11-03T20:52:16+00:00"
  9860. },
  9861. {
  9862. "name": "pear/archive_tar",
  9863. "version": "1.4.14",
  9864. "source": {
  9865. "type": "git",
  9866. "url": "https://github.com/pear/Archive_Tar.git",
  9867. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  9868. },
  9869. "dist": {
  9870. "type": "zip",
  9871. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  9872. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  9873. "shasum": ""
  9874. },
  9875. "require": {
  9876. "pear/pear-core-minimal": "^1.10.0alpha2",
  9877. "php": ">=5.2.0"
  9878. },
  9879. "require-dev": {
  9880. "phpunit/phpunit": "*"
  9881. },
  9882. "suggest": {
  9883. "ext-bz2": "Bz2 compression support.",
  9884. "ext-xz": "Lzma2 compression support.",
  9885. "ext-zlib": "Gzip compression support."
  9886. },
  9887. "type": "library",
  9888. "extra": {
  9889. "branch-alias": {
  9890. "dev-master": "1.4.x-dev"
  9891. }
  9892. },
  9893. "autoload": {
  9894. "psr-0": {
  9895. "Archive_Tar": ""
  9896. }
  9897. },
  9898. "notification-url": "https://packagist.org/downloads/",
  9899. "include-path": [
  9900. "./"
  9901. ],
  9902. "license": [
  9903. "BSD-3-Clause"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Vincent Blavet",
  9908. "email": "vincent@phpconcept.net"
  9909. },
  9910. {
  9911. "name": "Greg Beaver",
  9912. "email": "greg@chiaraquartet.net"
  9913. },
  9914. {
  9915. "name": "Michiel Rook",
  9916. "email": "mrook@php.net"
  9917. }
  9918. ],
  9919. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9920. "homepage": "https://github.com/pear/Archive_Tar",
  9921. "keywords": [
  9922. "archive",
  9923. "tar"
  9924. ],
  9925. "support": {
  9926. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9927. "source": "https://github.com/pear/Archive_Tar"
  9928. },
  9929. "funding": [
  9930. {
  9931. "url": "https://github.com/mrook",
  9932. "type": "github"
  9933. },
  9934. {
  9935. "url": "https://www.patreon.com/michielrook",
  9936. "type": "patreon"
  9937. }
  9938. ],
  9939. "time": "2021-07-20T13:53:39+00:00"
  9940. },
  9941. {
  9942. "name": "pear/console_getopt",
  9943. "version": "v1.4.3",
  9944. "source": {
  9945. "type": "git",
  9946. "url": "https://github.com/pear/Console_Getopt.git",
  9947. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9948. },
  9949. "dist": {
  9950. "type": "zip",
  9951. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9952. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9953. "shasum": ""
  9954. },
  9955. "type": "library",
  9956. "autoload": {
  9957. "psr-0": {
  9958. "Console": "./"
  9959. }
  9960. },
  9961. "notification-url": "https://packagist.org/downloads/",
  9962. "include-path": [
  9963. "./"
  9964. ],
  9965. "license": [
  9966. "BSD-2-Clause"
  9967. ],
  9968. "authors": [
  9969. {
  9970. "name": "Andrei Zmievski",
  9971. "email": "andrei@php.net",
  9972. "role": "Lead"
  9973. },
  9974. {
  9975. "name": "Stig Bakken",
  9976. "email": "stig@php.net",
  9977. "role": "Developer"
  9978. },
  9979. {
  9980. "name": "Greg Beaver",
  9981. "email": "cellog@php.net",
  9982. "role": "Helper"
  9983. }
  9984. ],
  9985. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9986. "support": {
  9987. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9988. "source": "https://github.com/pear/Console_Getopt"
  9989. },
  9990. "time": "2019-11-20T18:27:48+00:00"
  9991. },
  9992. {
  9993. "name": "pear/pear-core-minimal",
  9994. "version": "v1.10.10",
  9995. "source": {
  9996. "type": "git",
  9997. "url": "https://github.com/pear/pear-core-minimal.git",
  9998. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  9999. },
  10000. "dist": {
  10001. "type": "zip",
  10002. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  10003. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  10004. "shasum": ""
  10005. },
  10006. "require": {
  10007. "pear/console_getopt": "~1.4",
  10008. "pear/pear_exception": "~1.0"
  10009. },
  10010. "replace": {
  10011. "rsky/pear-core-min": "self.version"
  10012. },
  10013. "type": "library",
  10014. "autoload": {
  10015. "psr-0": {
  10016. "": "src/"
  10017. }
  10018. },
  10019. "notification-url": "https://packagist.org/downloads/",
  10020. "include-path": [
  10021. "src/"
  10022. ],
  10023. "license": [
  10024. "BSD-3-Clause"
  10025. ],
  10026. "authors": [
  10027. {
  10028. "name": "Christian Weiske",
  10029. "email": "cweiske@php.net",
  10030. "role": "Lead"
  10031. }
  10032. ],
  10033. "description": "Minimal set of PEAR core files to be used as composer dependency",
  10034. "support": {
  10035. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  10036. "source": "https://github.com/pear/pear-core-minimal"
  10037. },
  10038. "time": "2019-11-19T19:00:24+00:00"
  10039. },
  10040. {
  10041. "name": "pear/pear_exception",
  10042. "version": "v1.0.2",
  10043. "source": {
  10044. "type": "git",
  10045. "url": "https://github.com/pear/PEAR_Exception.git",
  10046. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  10047. },
  10048. "dist": {
  10049. "type": "zip",
  10050. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  10051. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  10052. "shasum": ""
  10053. },
  10054. "require": {
  10055. "php": ">=5.2.0"
  10056. },
  10057. "require-dev": {
  10058. "phpunit/phpunit": "<9"
  10059. },
  10060. "type": "class",
  10061. "extra": {
  10062. "branch-alias": {
  10063. "dev-master": "1.0.x-dev"
  10064. }
  10065. },
  10066. "autoload": {
  10067. "classmap": [
  10068. "PEAR/"
  10069. ]
  10070. },
  10071. "notification-url": "https://packagist.org/downloads/",
  10072. "include-path": [
  10073. "."
  10074. ],
  10075. "license": [
  10076. "BSD-2-Clause"
  10077. ],
  10078. "authors": [
  10079. {
  10080. "name": "Helgi Thormar",
  10081. "email": "dufuz@php.net"
  10082. },
  10083. {
  10084. "name": "Greg Beaver",
  10085. "email": "cellog@php.net"
  10086. }
  10087. ],
  10088. "description": "The PEAR Exception base class.",
  10089. "homepage": "https://github.com/pear/PEAR_Exception",
  10090. "keywords": [
  10091. "exception"
  10092. ],
  10093. "support": {
  10094. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  10095. "source": "https://github.com/pear/PEAR_Exception"
  10096. },
  10097. "time": "2021-03-21T15:43:46+00:00"
  10098. },
  10099. {
  10100. "name": "phenx/php-font-lib",
  10101. "version": "0.5.2",
  10102. "source": {
  10103. "type": "git",
  10104. "url": "https://github.com/PhenX/php-font-lib.git",
  10105. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  10106. },
  10107. "dist": {
  10108. "type": "zip",
  10109. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  10110. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  10111. "shasum": ""
  10112. },
  10113. "require-dev": {
  10114. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  10115. },
  10116. "type": "library",
  10117. "autoload": {
  10118. "psr-4": {
  10119. "FontLib\\": "src/FontLib"
  10120. }
  10121. },
  10122. "notification-url": "https://packagist.org/downloads/",
  10123. "license": [
  10124. "LGPL-3.0"
  10125. ],
  10126. "authors": [
  10127. {
  10128. "name": "Fabien Ménager",
  10129. "email": "fabien.menager@gmail.com"
  10130. }
  10131. ],
  10132. "description": "A library to read, parse, export and make subsets of different types of font files.",
  10133. "homepage": "https://github.com/PhenX/php-font-lib",
  10134. "support": {
  10135. "issues": "https://github.com/PhenX/php-font-lib/issues",
  10136. "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2"
  10137. },
  10138. "time": "2020-03-08T15:31:32+00:00"
  10139. },
  10140. {
  10141. "name": "phpmailer/phpmailer",
  10142. "version": "v6.5.1",
  10143. "source": {
  10144. "type": "git",
  10145. "url": "https://github.com/PHPMailer/PHPMailer.git",
  10146. "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355"
  10147. },
  10148. "dist": {
  10149. "type": "zip",
  10150. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/dd803df5ad7492e1b40637f7ebd258fee5ca7355",
  10151. "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355",
  10152. "shasum": ""
  10153. },
  10154. "require": {
  10155. "ext-ctype": "*",
  10156. "ext-filter": "*",
  10157. "ext-hash": "*",
  10158. "php": ">=5.5.0"
  10159. },
  10160. "require-dev": {
  10161. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  10162. "doctrine/annotations": "^1.2",
  10163. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  10164. "php-parallel-lint/php-parallel-lint": "^1.3",
  10165. "phpcompatibility/php-compatibility": "^9.3.5",
  10166. "roave/security-advisories": "dev-latest",
  10167. "squizlabs/php_codesniffer": "^3.6.0",
  10168. "yoast/phpunit-polyfills": "^1.0.0"
  10169. },
  10170. "suggest": {
  10171. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  10172. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  10173. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  10174. "psr/log": "For optional PSR-3 debug logging",
  10175. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  10176. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  10177. },
  10178. "type": "library",
  10179. "autoload": {
  10180. "psr-4": {
  10181. "PHPMailer\\PHPMailer\\": "src/"
  10182. }
  10183. },
  10184. "notification-url": "https://packagist.org/downloads/",
  10185. "license": [
  10186. "LGPL-2.1-only"
  10187. ],
  10188. "authors": [
  10189. {
  10190. "name": "Marcus Bointon",
  10191. "email": "phpmailer@synchromedia.co.uk"
  10192. },
  10193. {
  10194. "name": "Jim Jagielski",
  10195. "email": "jimjag@gmail.com"
  10196. },
  10197. {
  10198. "name": "Andy Prevost",
  10199. "email": "codeworxtech@users.sourceforge.net"
  10200. },
  10201. {
  10202. "name": "Brent R. Matzelle"
  10203. }
  10204. ],
  10205. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10206. "support": {
  10207. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10208. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.1"
  10209. },
  10210. "funding": [
  10211. {
  10212. "url": "https://github.com/Synchro",
  10213. "type": "github"
  10214. }
  10215. ],
  10216. "time": "2021-08-18T09:14:16+00:00"
  10217. },
  10218. {
  10219. "name": "psr/cache",
  10220. "version": "1.0.1",
  10221. "source": {
  10222. "type": "git",
  10223. "url": "https://github.com/php-fig/cache.git",
  10224. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  10225. },
  10226. "dist": {
  10227. "type": "zip",
  10228. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  10229. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  10230. "shasum": ""
  10231. },
  10232. "require": {
  10233. "php": ">=5.3.0"
  10234. },
  10235. "type": "library",
  10236. "extra": {
  10237. "branch-alias": {
  10238. "dev-master": "1.0.x-dev"
  10239. }
  10240. },
  10241. "autoload": {
  10242. "psr-4": {
  10243. "Psr\\Cache\\": "src/"
  10244. }
  10245. },
  10246. "notification-url": "https://packagist.org/downloads/",
  10247. "license": [
  10248. "MIT"
  10249. ],
  10250. "authors": [
  10251. {
  10252. "name": "PHP-FIG",
  10253. "homepage": "http://www.php-fig.org/"
  10254. }
  10255. ],
  10256. "description": "Common interface for caching libraries",
  10257. "keywords": [
  10258. "cache",
  10259. "psr",
  10260. "psr-6"
  10261. ],
  10262. "support": {
  10263. "source": "https://github.com/php-fig/cache/tree/master"
  10264. },
  10265. "time": "2016-08-06T20:24:11+00:00"
  10266. },
  10267. {
  10268. "name": "psr/container",
  10269. "version": "1.1.1",
  10270. "source": {
  10271. "type": "git",
  10272. "url": "https://github.com/php-fig/container.git",
  10273. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  10274. },
  10275. "dist": {
  10276. "type": "zip",
  10277. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  10278. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  10279. "shasum": ""
  10280. },
  10281. "require": {
  10282. "php": ">=7.2.0"
  10283. },
  10284. "type": "library",
  10285. "autoload": {
  10286. "psr-4": {
  10287. "Psr\\Container\\": "src/"
  10288. }
  10289. },
  10290. "notification-url": "https://packagist.org/downloads/",
  10291. "license": [
  10292. "MIT"
  10293. ],
  10294. "authors": [
  10295. {
  10296. "name": "PHP-FIG",
  10297. "homepage": "https://www.php-fig.org/"
  10298. }
  10299. ],
  10300. "description": "Common Container Interface (PHP FIG PSR-11)",
  10301. "homepage": "https://github.com/php-fig/container",
  10302. "keywords": [
  10303. "PSR-11",
  10304. "container",
  10305. "container-interface",
  10306. "container-interop",
  10307. "psr"
  10308. ],
  10309. "support": {
  10310. "issues": "https://github.com/php-fig/container/issues",
  10311. "source": "https://github.com/php-fig/container/tree/1.1.1"
  10312. },
  10313. "time": "2021-03-05T17:36:06+00:00"
  10314. },
  10315. {
  10316. "name": "psr/http-factory",
  10317. "version": "1.0.1",
  10318. "source": {
  10319. "type": "git",
  10320. "url": "https://github.com/php-fig/http-factory.git",
  10321. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  10322. },
  10323. "dist": {
  10324. "type": "zip",
  10325. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  10326. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  10327. "shasum": ""
  10328. },
  10329. "require": {
  10330. "php": ">=7.0.0",
  10331. "psr/http-message": "^1.0"
  10332. },
  10333. "type": "library",
  10334. "extra": {
  10335. "branch-alias": {
  10336. "dev-master": "1.0.x-dev"
  10337. }
  10338. },
  10339. "autoload": {
  10340. "psr-4": {
  10341. "Psr\\Http\\Message\\": "src/"
  10342. }
  10343. },
  10344. "notification-url": "https://packagist.org/downloads/",
  10345. "license": [
  10346. "MIT"
  10347. ],
  10348. "authors": [
  10349. {
  10350. "name": "PHP-FIG",
  10351. "homepage": "http://www.php-fig.org/"
  10352. }
  10353. ],
  10354. "description": "Common interfaces for PSR-7 HTTP message factories",
  10355. "keywords": [
  10356. "factory",
  10357. "http",
  10358. "message",
  10359. "psr",
  10360. "psr-17",
  10361. "psr-7",
  10362. "request",
  10363. "response"
  10364. ],
  10365. "support": {
  10366. "source": "https://github.com/php-fig/http-factory/tree/master"
  10367. },
  10368. "time": "2019-04-30T12:38:16+00:00"
  10369. },
  10370. {
  10371. "name": "psr/http-message",
  10372. "version": "1.0.1",
  10373. "source": {
  10374. "type": "git",
  10375. "url": "https://github.com/php-fig/http-message.git",
  10376. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  10377. },
  10378. "dist": {
  10379. "type": "zip",
  10380. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  10381. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  10382. "shasum": ""
  10383. },
  10384. "require": {
  10385. "php": ">=5.3.0"
  10386. },
  10387. "type": "library",
  10388. "extra": {
  10389. "branch-alias": {
  10390. "dev-master": "1.0.x-dev"
  10391. }
  10392. },
  10393. "autoload": {
  10394. "psr-4": {
  10395. "Psr\\Http\\Message\\": "src/"
  10396. }
  10397. },
  10398. "notification-url": "https://packagist.org/downloads/",
  10399. "license": [
  10400. "MIT"
  10401. ],
  10402. "authors": [
  10403. {
  10404. "name": "PHP-FIG",
  10405. "homepage": "http://www.php-fig.org/"
  10406. }
  10407. ],
  10408. "description": "Common interface for HTTP messages",
  10409. "homepage": "https://github.com/php-fig/http-message",
  10410. "keywords": [
  10411. "http",
  10412. "http-message",
  10413. "psr",
  10414. "psr-7",
  10415. "request",
  10416. "response"
  10417. ],
  10418. "support": {
  10419. "source": "https://github.com/php-fig/http-message/tree/master"
  10420. },
  10421. "time": "2016-08-06T14:39:51+00:00"
  10422. },
  10423. {
  10424. "name": "psr/log",
  10425. "version": "1.1.4",
  10426. "source": {
  10427. "type": "git",
  10428. "url": "https://github.com/php-fig/log.git",
  10429. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  10430. },
  10431. "dist": {
  10432. "type": "zip",
  10433. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  10434. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  10435. "shasum": ""
  10436. },
  10437. "require": {
  10438. "php": ">=5.3.0"
  10439. },
  10440. "type": "library",
  10441. "extra": {
  10442. "branch-alias": {
  10443. "dev-master": "1.1.x-dev"
  10444. }
  10445. },
  10446. "autoload": {
  10447. "psr-4": {
  10448. "Psr\\Log\\": "Psr/Log/"
  10449. }
  10450. },
  10451. "notification-url": "https://packagist.org/downloads/",
  10452. "license": [
  10453. "MIT"
  10454. ],
  10455. "authors": [
  10456. {
  10457. "name": "PHP-FIG",
  10458. "homepage": "https://www.php-fig.org/"
  10459. }
  10460. ],
  10461. "description": "Common interface for logging libraries",
  10462. "homepage": "https://github.com/php-fig/log",
  10463. "keywords": [
  10464. "log",
  10465. "psr",
  10466. "psr-3"
  10467. ],
  10468. "support": {
  10469. "source": "https://github.com/php-fig/log/tree/1.1.4"
  10470. },
  10471. "time": "2021-05-03T11:20:27+00:00"
  10472. },
  10473. {
  10474. "name": "psy/psysh",
  10475. "version": "v0.10.9",
  10476. "source": {
  10477. "type": "git",
  10478. "url": "https://github.com/bobthecow/psysh.git",
  10479. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375"
  10480. },
  10481. "dist": {
  10482. "type": "zip",
  10483. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/01281336c4ae557fe4a994544f30d3a1bc204375",
  10484. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375",
  10485. "shasum": ""
  10486. },
  10487. "require": {
  10488. "ext-json": "*",
  10489. "ext-tokenizer": "*",
  10490. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  10491. "php": "^8.0 || ^7.0 || ^5.5.9",
  10492. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  10493. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  10494. },
  10495. "require-dev": {
  10496. "bamarni/composer-bin-plugin": "^1.2",
  10497. "hoa/console": "3.17.*"
  10498. },
  10499. "suggest": {
  10500. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10501. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10502. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  10503. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  10504. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  10505. },
  10506. "bin": [
  10507. "bin/psysh"
  10508. ],
  10509. "type": "library",
  10510. "extra": {
  10511. "branch-alias": {
  10512. "dev-main": "0.10.x-dev"
  10513. }
  10514. },
  10515. "autoload": {
  10516. "files": [
  10517. "src/functions.php"
  10518. ],
  10519. "psr-4": {
  10520. "Psy\\": "src/"
  10521. }
  10522. },
  10523. "notification-url": "https://packagist.org/downloads/",
  10524. "license": [
  10525. "MIT"
  10526. ],
  10527. "authors": [
  10528. {
  10529. "name": "Justin Hileman",
  10530. "email": "justin@justinhileman.info",
  10531. "homepage": "http://justinhileman.com"
  10532. }
  10533. ],
  10534. "description": "An interactive shell for modern PHP.",
  10535. "homepage": "http://psysh.org",
  10536. "keywords": [
  10537. "REPL",
  10538. "console",
  10539. "interactive",
  10540. "shell"
  10541. ],
  10542. "support": {
  10543. "issues": "https://github.com/bobthecow/psysh/issues",
  10544. "source": "https://github.com/bobthecow/psysh/tree/v0.10.9"
  10545. },
  10546. "time": "2021-10-10T13:37:39+00:00"
  10547. },
  10548. {
  10549. "name": "ralouphie/getallheaders",
  10550. "version": "3.0.3",
  10551. "source": {
  10552. "type": "git",
  10553. "url": "https://github.com/ralouphie/getallheaders.git",
  10554. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10555. },
  10556. "dist": {
  10557. "type": "zip",
  10558. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10559. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10560. "shasum": ""
  10561. },
  10562. "require": {
  10563. "php": ">=5.6"
  10564. },
  10565. "require-dev": {
  10566. "php-coveralls/php-coveralls": "^2.1",
  10567. "phpunit/phpunit": "^5 || ^6.5"
  10568. },
  10569. "type": "library",
  10570. "autoload": {
  10571. "files": [
  10572. "src/getallheaders.php"
  10573. ]
  10574. },
  10575. "notification-url": "https://packagist.org/downloads/",
  10576. "license": [
  10577. "MIT"
  10578. ],
  10579. "authors": [
  10580. {
  10581. "name": "Ralph Khattar",
  10582. "email": "ralph.khattar@gmail.com"
  10583. }
  10584. ],
  10585. "description": "A polyfill for getallheaders.",
  10586. "support": {
  10587. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10588. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10589. },
  10590. "time": "2019-03-08T08:55:37+00:00"
  10591. },
  10592. {
  10593. "name": "stack/builder",
  10594. "version": "v1.0.6",
  10595. "source": {
  10596. "type": "git",
  10597. "url": "https://github.com/stackphp/builder.git",
  10598. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  10599. },
  10600. "dist": {
  10601. "type": "zip",
  10602. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10603. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10604. "shasum": ""
  10605. },
  10606. "require": {
  10607. "php": ">=7.2.0",
  10608. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  10609. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  10610. },
  10611. "require-dev": {
  10612. "phpunit/phpunit": "~8.0",
  10613. "symfony/routing": "^5.0"
  10614. },
  10615. "type": "library",
  10616. "extra": {
  10617. "branch-alias": {
  10618. "dev-master": "1.0-dev"
  10619. }
  10620. },
  10621. "autoload": {
  10622. "psr-0": {
  10623. "Stack": "src"
  10624. }
  10625. },
  10626. "notification-url": "https://packagist.org/downloads/",
  10627. "license": [
  10628. "MIT"
  10629. ],
  10630. "authors": [
  10631. {
  10632. "name": "Igor Wiedler",
  10633. "email": "igor@wiedler.ch"
  10634. }
  10635. ],
  10636. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10637. "keywords": [
  10638. "stack"
  10639. ],
  10640. "support": {
  10641. "issues": "https://github.com/stackphp/builder/issues",
  10642. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  10643. },
  10644. "time": "2020-01-30T12:17:27+00:00"
  10645. },
  10646. {
  10647. "name": "stecman/symfony-console-completion",
  10648. "version": "0.11.0",
  10649. "source": {
  10650. "type": "git",
  10651. "url": "https://github.com/stecman/symfony-console-completion.git",
  10652. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10653. },
  10654. "dist": {
  10655. "type": "zip",
  10656. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10657. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10658. "shasum": ""
  10659. },
  10660. "require": {
  10661. "php": ">=5.3.2",
  10662. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10663. },
  10664. "require-dev": {
  10665. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10666. },
  10667. "type": "library",
  10668. "extra": {
  10669. "branch-alias": {
  10670. "dev-master": "0.10.x-dev"
  10671. }
  10672. },
  10673. "autoload": {
  10674. "psr-4": {
  10675. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10676. }
  10677. },
  10678. "notification-url": "https://packagist.org/downloads/",
  10679. "license": [
  10680. "MIT"
  10681. ],
  10682. "authors": [
  10683. {
  10684. "name": "Stephen Holdaway",
  10685. "email": "stephen@stecman.co.nz"
  10686. }
  10687. ],
  10688. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10689. "support": {
  10690. "issues": "https://github.com/stecman/symfony-console-completion/issues",
  10691. "source": "https://github.com/stecman/symfony-console-completion/tree/0.11.0"
  10692. },
  10693. "time": "2019-11-24T17:03:06+00:00"
  10694. },
  10695. {
  10696. "name": "symfony-cmf/routing",
  10697. "version": "2.3.3",
  10698. "source": {
  10699. "type": "git",
  10700. "url": "https://github.com/symfony-cmf/Routing.git",
  10701. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  10702. },
  10703. "dist": {
  10704. "type": "zip",
  10705. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10706. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10707. "shasum": ""
  10708. },
  10709. "require": {
  10710. "php": "^7.2 || ^8.0",
  10711. "psr/log": "^1.0",
  10712. "symfony/http-kernel": "^4.4 || ^5.0",
  10713. "symfony/routing": "^4.4 || ^5.0"
  10714. },
  10715. "require-dev": {
  10716. "symfony-cmf/testing": "^3@dev",
  10717. "symfony/config": "^4.4 || ^5.0",
  10718. "symfony/dependency-injection": "^4.4 || ^5.0",
  10719. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10720. "symfony/phpunit-bridge": "^5.0"
  10721. },
  10722. "suggest": {
  10723. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10724. },
  10725. "type": "library",
  10726. "extra": {
  10727. "branch-alias": {
  10728. "dev-master": "2.x-dev"
  10729. }
  10730. },
  10731. "autoload": {
  10732. "psr-4": {
  10733. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10734. }
  10735. },
  10736. "notification-url": "https://packagist.org/downloads/",
  10737. "license": [
  10738. "MIT"
  10739. ],
  10740. "authors": [
  10741. {
  10742. "name": "Symfony CMF Community",
  10743. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10744. }
  10745. ],
  10746. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10747. "homepage": "http://cmf.symfony.com",
  10748. "keywords": [
  10749. "database",
  10750. "routing"
  10751. ],
  10752. "support": {
  10753. "issues": "https://github.com/symfony-cmf/Routing/issues",
  10754. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.3"
  10755. },
  10756. "time": "2020-10-06T10:15:37+00:00"
  10757. },
  10758. {
  10759. "name": "symfony/config",
  10760. "version": "v4.4.33",
  10761. "source": {
  10762. "type": "git",
  10763. "url": "https://github.com/symfony/config.git",
  10764. "reference": "25c11934bf20c1633f3f125fed0bd7e29f5d8f24"
  10765. },
  10766. "dist": {
  10767. "type": "zip",
  10768. "url": "https://api.github.com/repos/symfony/config/zipball/25c11934bf20c1633f3f125fed0bd7e29f5d8f24",
  10769. "reference": "25c11934bf20c1633f3f125fed0bd7e29f5d8f24",
  10770. "shasum": ""
  10771. },
  10772. "require": {
  10773. "php": ">=7.1.3",
  10774. "symfony/filesystem": "^3.4|^4.0|^5.0",
  10775. "symfony/polyfill-ctype": "~1.8",
  10776. "symfony/polyfill-php80": "^1.16",
  10777. "symfony/polyfill-php81": "^1.22"
  10778. },
  10779. "conflict": {
  10780. "symfony/finder": "<3.4"
  10781. },
  10782. "require-dev": {
  10783. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  10784. "symfony/finder": "^3.4|^4.0|^5.0",
  10785. "symfony/messenger": "^4.1|^5.0",
  10786. "symfony/service-contracts": "^1.1|^2",
  10787. "symfony/yaml": "^3.4|^4.0|^5.0"
  10788. },
  10789. "suggest": {
  10790. "symfony/yaml": "To use the yaml reference dumper"
  10791. },
  10792. "type": "library",
  10793. "autoload": {
  10794. "psr-4": {
  10795. "Symfony\\Component\\Config\\": ""
  10796. },
  10797. "exclude-from-classmap": [
  10798. "/Tests/"
  10799. ]
  10800. },
  10801. "notification-url": "https://packagist.org/downloads/",
  10802. "license": [
  10803. "MIT"
  10804. ],
  10805. "authors": [
  10806. {
  10807. "name": "Fabien Potencier",
  10808. "email": "fabien@symfony.com"
  10809. },
  10810. {
  10811. "name": "Symfony Community",
  10812. "homepage": "https://symfony.com/contributors"
  10813. }
  10814. ],
  10815. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  10816. "homepage": "https://symfony.com",
  10817. "support": {
  10818. "source": "https://github.com/symfony/config/tree/v4.4.33"
  10819. },
  10820. "funding": [
  10821. {
  10822. "url": "https://symfony.com/sponsor",
  10823. "type": "custom"
  10824. },
  10825. {
  10826. "url": "https://github.com/fabpot",
  10827. "type": "github"
  10828. },
  10829. {
  10830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10831. "type": "tidelift"
  10832. }
  10833. ],
  10834. "time": "2021-10-19T15:09:42+00:00"
  10835. },
  10836. {
  10837. "name": "symfony/console",
  10838. "version": "v4.4.25",
  10839. "source": {
  10840. "type": "git",
  10841. "url": "https://github.com/symfony/console.git",
  10842. "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095"
  10843. },
  10844. "dist": {
  10845. "type": "zip",
  10846. "url": "https://api.github.com/repos/symfony/console/zipball/a62acecdf5b50e314a4f305cd01b5282126f3095",
  10847. "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095",
  10848. "shasum": ""
  10849. },
  10850. "require": {
  10851. "php": ">=7.1.3",
  10852. "symfony/polyfill-mbstring": "~1.0",
  10853. "symfony/polyfill-php73": "^1.8",
  10854. "symfony/polyfill-php80": "^1.15",
  10855. "symfony/service-contracts": "^1.1|^2"
  10856. },
  10857. "conflict": {
  10858. "symfony/dependency-injection": "<3.4",
  10859. "symfony/event-dispatcher": "<4.3|>=5",
  10860. "symfony/lock": "<4.4",
  10861. "symfony/process": "<3.3"
  10862. },
  10863. "provide": {
  10864. "psr/log-implementation": "1.0"
  10865. },
  10866. "require-dev": {
  10867. "psr/log": "~1.0",
  10868. "symfony/config": "^3.4|^4.0|^5.0",
  10869. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10870. "symfony/event-dispatcher": "^4.3",
  10871. "symfony/lock": "^4.4|^5.0",
  10872. "symfony/process": "^3.4|^4.0|^5.0",
  10873. "symfony/var-dumper": "^4.3|^5.0"
  10874. },
  10875. "suggest": {
  10876. "psr/log": "For using the console logger",
  10877. "symfony/event-dispatcher": "",
  10878. "symfony/lock": "",
  10879. "symfony/process": ""
  10880. },
  10881. "type": "library",
  10882. "autoload": {
  10883. "psr-4": {
  10884. "Symfony\\Component\\Console\\": ""
  10885. },
  10886. "exclude-from-classmap": [
  10887. "/Tests/"
  10888. ]
  10889. },
  10890. "notification-url": "https://packagist.org/downloads/",
  10891. "license": [
  10892. "MIT"
  10893. ],
  10894. "authors": [
  10895. {
  10896. "name": "Fabien Potencier",
  10897. "email": "fabien@symfony.com"
  10898. },
  10899. {
  10900. "name": "Symfony Community",
  10901. "homepage": "https://symfony.com/contributors"
  10902. }
  10903. ],
  10904. "description": "Eases the creation of beautiful and testable command line interfaces",
  10905. "homepage": "https://symfony.com",
  10906. "support": {
  10907. "source": "https://github.com/symfony/console/tree/v4.4.25"
  10908. },
  10909. "funding": [
  10910. {
  10911. "url": "https://symfony.com/sponsor",
  10912. "type": "custom"
  10913. },
  10914. {
  10915. "url": "https://github.com/fabpot",
  10916. "type": "github"
  10917. },
  10918. {
  10919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10920. "type": "tidelift"
  10921. }
  10922. ],
  10923. "time": "2021-05-26T11:20:16+00:00"
  10924. },
  10925. {
  10926. "name": "symfony/css-selector",
  10927. "version": "v4.4.27",
  10928. "source": {
  10929. "type": "git",
  10930. "url": "https://github.com/symfony/css-selector.git",
  10931. "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6"
  10932. },
  10933. "dist": {
  10934. "type": "zip",
  10935. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6",
  10936. "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6",
  10937. "shasum": ""
  10938. },
  10939. "require": {
  10940. "php": ">=7.1.3",
  10941. "symfony/polyfill-php80": "^1.16"
  10942. },
  10943. "type": "library",
  10944. "autoload": {
  10945. "psr-4": {
  10946. "Symfony\\Component\\CssSelector\\": ""
  10947. },
  10948. "exclude-from-classmap": [
  10949. "/Tests/"
  10950. ]
  10951. },
  10952. "notification-url": "https://packagist.org/downloads/",
  10953. "license": [
  10954. "MIT"
  10955. ],
  10956. "authors": [
  10957. {
  10958. "name": "Fabien Potencier",
  10959. "email": "fabien@symfony.com"
  10960. },
  10961. {
  10962. "name": "Jean-François Simon",
  10963. "email": "jeanfrancois.simon@sensiolabs.com"
  10964. },
  10965. {
  10966. "name": "Symfony Community",
  10967. "homepage": "https://symfony.com/contributors"
  10968. }
  10969. ],
  10970. "description": "Converts CSS selectors to XPath expressions",
  10971. "homepage": "https://symfony.com",
  10972. "support": {
  10973. "source": "https://github.com/symfony/css-selector/tree/v4.4.27"
  10974. },
  10975. "funding": [
  10976. {
  10977. "url": "https://symfony.com/sponsor",
  10978. "type": "custom"
  10979. },
  10980. {
  10981. "url": "https://github.com/fabpot",
  10982. "type": "github"
  10983. },
  10984. {
  10985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10986. "type": "tidelift"
  10987. }
  10988. ],
  10989. "time": "2021-07-21T12:19:41+00:00"
  10990. },
  10991. {
  10992. "name": "symfony/debug",
  10993. "version": "v4.4.25",
  10994. "source": {
  10995. "type": "git",
  10996. "url": "https://github.com/symfony/debug.git",
  10997. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f"
  10998. },
  10999. "dist": {
  11000. "type": "zip",
  11001. "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f",
  11002. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f",
  11003. "shasum": ""
  11004. },
  11005. "require": {
  11006. "php": ">=7.1.3",
  11007. "psr/log": "~1.0",
  11008. "symfony/polyfill-php80": "^1.15"
  11009. },
  11010. "conflict": {
  11011. "symfony/http-kernel": "<3.4"
  11012. },
  11013. "require-dev": {
  11014. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11015. },
  11016. "type": "library",
  11017. "autoload": {
  11018. "psr-4": {
  11019. "Symfony\\Component\\Debug\\": ""
  11020. },
  11021. "exclude-from-classmap": [
  11022. "/Tests/"
  11023. ]
  11024. },
  11025. "notification-url": "https://packagist.org/downloads/",
  11026. "license": [
  11027. "MIT"
  11028. ],
  11029. "authors": [
  11030. {
  11031. "name": "Fabien Potencier",
  11032. "email": "fabien@symfony.com"
  11033. },
  11034. {
  11035. "name": "Symfony Community",
  11036. "homepage": "https://symfony.com/contributors"
  11037. }
  11038. ],
  11039. "description": "Provides tools to ease debugging PHP code",
  11040. "homepage": "https://symfony.com",
  11041. "support": {
  11042. "source": "https://github.com/symfony/debug/tree/v4.4.25"
  11043. },
  11044. "funding": [
  11045. {
  11046. "url": "https://symfony.com/sponsor",
  11047. "type": "custom"
  11048. },
  11049. {
  11050. "url": "https://github.com/fabpot",
  11051. "type": "github"
  11052. },
  11053. {
  11054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11055. "type": "tidelift"
  11056. }
  11057. ],
  11058. "time": "2021-05-26T17:39:37+00:00"
  11059. },
  11060. {
  11061. "name": "symfony/dependency-injection",
  11062. "version": "v4.4.25",
  11063. "source": {
  11064. "type": "git",
  11065. "url": "https://github.com/symfony/dependency-injection.git",
  11066. "reference": "2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d"
  11067. },
  11068. "dist": {
  11069. "type": "zip",
  11070. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d",
  11071. "reference": "2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d",
  11072. "shasum": ""
  11073. },
  11074. "require": {
  11075. "php": ">=7.1.3",
  11076. "psr/container": "^1.0",
  11077. "symfony/service-contracts": "^1.1.6|^2"
  11078. },
  11079. "conflict": {
  11080. "symfony/config": "<4.3|>=5.0",
  11081. "symfony/finder": "<3.4",
  11082. "symfony/proxy-manager-bridge": "<3.4",
  11083. "symfony/yaml": "<3.4"
  11084. },
  11085. "provide": {
  11086. "psr/container-implementation": "1.0",
  11087. "symfony/service-implementation": "1.0|2.0"
  11088. },
  11089. "require-dev": {
  11090. "symfony/config": "^4.3",
  11091. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11092. "symfony/yaml": "^4.4|^5.0"
  11093. },
  11094. "suggest": {
  11095. "symfony/config": "",
  11096. "symfony/expression-language": "For using expressions in service container configuration",
  11097. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  11098. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  11099. "symfony/yaml": ""
  11100. },
  11101. "type": "library",
  11102. "autoload": {
  11103. "psr-4": {
  11104. "Symfony\\Component\\DependencyInjection\\": ""
  11105. },
  11106. "exclude-from-classmap": [
  11107. "/Tests/"
  11108. ]
  11109. },
  11110. "notification-url": "https://packagist.org/downloads/",
  11111. "license": [
  11112. "MIT"
  11113. ],
  11114. "authors": [
  11115. {
  11116. "name": "Fabien Potencier",
  11117. "email": "fabien@symfony.com"
  11118. },
  11119. {
  11120. "name": "Symfony Community",
  11121. "homepage": "https://symfony.com/contributors"
  11122. }
  11123. ],
  11124. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  11125. "homepage": "https://symfony.com",
  11126. "support": {
  11127. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.25"
  11128. },
  11129. "funding": [
  11130. {
  11131. "url": "https://symfony.com/sponsor",
  11132. "type": "custom"
  11133. },
  11134. {
  11135. "url": "https://github.com/fabpot",
  11136. "type": "github"
  11137. },
  11138. {
  11139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11140. "type": "tidelift"
  11141. }
  11142. ],
  11143. "time": "2021-05-26T17:54:16+00:00"
  11144. },
  11145. {
  11146. "name": "symfony/deprecation-contracts",
  11147. "version": "v2.4.0",
  11148. "source": {
  11149. "type": "git",
  11150. "url": "https://github.com/symfony/deprecation-contracts.git",
  11151. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  11152. },
  11153. "dist": {
  11154. "type": "zip",
  11155. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  11156. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  11157. "shasum": ""
  11158. },
  11159. "require": {
  11160. "php": ">=7.1"
  11161. },
  11162. "type": "library",
  11163. "extra": {
  11164. "branch-alias": {
  11165. "dev-main": "2.4-dev"
  11166. },
  11167. "thanks": {
  11168. "name": "symfony/contracts",
  11169. "url": "https://github.com/symfony/contracts"
  11170. }
  11171. },
  11172. "autoload": {
  11173. "files": [
  11174. "function.php"
  11175. ]
  11176. },
  11177. "notification-url": "https://packagist.org/downloads/",
  11178. "license": [
  11179. "MIT"
  11180. ],
  11181. "authors": [
  11182. {
  11183. "name": "Nicolas Grekas",
  11184. "email": "p@tchwork.com"
  11185. },
  11186. {
  11187. "name": "Symfony Community",
  11188. "homepage": "https://symfony.com/contributors"
  11189. }
  11190. ],
  11191. "description": "A generic function and convention to trigger deprecation notices",
  11192. "homepage": "https://symfony.com",
  11193. "support": {
  11194. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  11195. },
  11196. "funding": [
  11197. {
  11198. "url": "https://symfony.com/sponsor",
  11199. "type": "custom"
  11200. },
  11201. {
  11202. "url": "https://github.com/fabpot",
  11203. "type": "github"
  11204. },
  11205. {
  11206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11207. "type": "tidelift"
  11208. }
  11209. ],
  11210. "time": "2021-03-23T23:28:01+00:00"
  11211. },
  11212. {
  11213. "name": "symfony/dom-crawler",
  11214. "version": "v4.4.30",
  11215. "source": {
  11216. "type": "git",
  11217. "url": "https://github.com/symfony/dom-crawler.git",
  11218. "reference": "4632ae3567746c7e915c33c67a2fb6ab746090c4"
  11219. },
  11220. "dist": {
  11221. "type": "zip",
  11222. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4632ae3567746c7e915c33c67a2fb6ab746090c4",
  11223. "reference": "4632ae3567746c7e915c33c67a2fb6ab746090c4",
  11224. "shasum": ""
  11225. },
  11226. "require": {
  11227. "php": ">=7.1.3",
  11228. "symfony/polyfill-ctype": "~1.8",
  11229. "symfony/polyfill-mbstring": "~1.0",
  11230. "symfony/polyfill-php80": "^1.16"
  11231. },
  11232. "conflict": {
  11233. "masterminds/html5": "<2.6"
  11234. },
  11235. "require-dev": {
  11236. "masterminds/html5": "^2.6",
  11237. "symfony/css-selector": "^3.4|^4.0|^5.0"
  11238. },
  11239. "suggest": {
  11240. "symfony/css-selector": ""
  11241. },
  11242. "type": "library",
  11243. "autoload": {
  11244. "psr-4": {
  11245. "Symfony\\Component\\DomCrawler\\": ""
  11246. },
  11247. "exclude-from-classmap": [
  11248. "/Tests/"
  11249. ]
  11250. },
  11251. "notification-url": "https://packagist.org/downloads/",
  11252. "license": [
  11253. "MIT"
  11254. ],
  11255. "authors": [
  11256. {
  11257. "name": "Fabien Potencier",
  11258. "email": "fabien@symfony.com"
  11259. },
  11260. {
  11261. "name": "Symfony Community",
  11262. "homepage": "https://symfony.com/contributors"
  11263. }
  11264. ],
  11265. "description": "Eases DOM navigation for HTML and XML documents",
  11266. "homepage": "https://symfony.com",
  11267. "support": {
  11268. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.30"
  11269. },
  11270. "funding": [
  11271. {
  11272. "url": "https://symfony.com/sponsor",
  11273. "type": "custom"
  11274. },
  11275. {
  11276. "url": "https://github.com/fabpot",
  11277. "type": "github"
  11278. },
  11279. {
  11280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11281. "type": "tidelift"
  11282. }
  11283. ],
  11284. "time": "2021-08-28T15:40:01+00:00"
  11285. },
  11286. {
  11287. "name": "symfony/error-handler",
  11288. "version": "v4.4.25",
  11289. "source": {
  11290. "type": "git",
  11291. "url": "https://github.com/symfony/error-handler.git",
  11292. "reference": "310a756cec00d29d89a08518405aded046a54a8b"
  11293. },
  11294. "dist": {
  11295. "type": "zip",
  11296. "url": "https://api.github.com/repos/symfony/error-handler/zipball/310a756cec00d29d89a08518405aded046a54a8b",
  11297. "reference": "310a756cec00d29d89a08518405aded046a54a8b",
  11298. "shasum": ""
  11299. },
  11300. "require": {
  11301. "php": ">=7.1.3",
  11302. "psr/log": "~1.0",
  11303. "symfony/debug": "^4.4.5",
  11304. "symfony/polyfill-php80": "^1.15",
  11305. "symfony/var-dumper": "^4.4|^5.0"
  11306. },
  11307. "require-dev": {
  11308. "symfony/http-kernel": "^4.4|^5.0",
  11309. "symfony/serializer": "^4.4|^5.0"
  11310. },
  11311. "type": "library",
  11312. "autoload": {
  11313. "psr-4": {
  11314. "Symfony\\Component\\ErrorHandler\\": ""
  11315. },
  11316. "exclude-from-classmap": [
  11317. "/Tests/"
  11318. ]
  11319. },
  11320. "notification-url": "https://packagist.org/downloads/",
  11321. "license": [
  11322. "MIT"
  11323. ],
  11324. "authors": [
  11325. {
  11326. "name": "Fabien Potencier",
  11327. "email": "fabien@symfony.com"
  11328. },
  11329. {
  11330. "name": "Symfony Community",
  11331. "homepage": "https://symfony.com/contributors"
  11332. }
  11333. ],
  11334. "description": "Provides tools to manage errors and ease debugging PHP code",
  11335. "homepage": "https://symfony.com",
  11336. "support": {
  11337. "source": "https://github.com/symfony/error-handler/tree/v4.4.25"
  11338. },
  11339. "funding": [
  11340. {
  11341. "url": "https://symfony.com/sponsor",
  11342. "type": "custom"
  11343. },
  11344. {
  11345. "url": "https://github.com/fabpot",
  11346. "type": "github"
  11347. },
  11348. {
  11349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11350. "type": "tidelift"
  11351. }
  11352. ],
  11353. "time": "2021-05-26T17:39:37+00:00"
  11354. },
  11355. {
  11356. "name": "symfony/event-dispatcher",
  11357. "version": "v4.4.25",
  11358. "source": {
  11359. "type": "git",
  11360. "url": "https://github.com/symfony/event-dispatcher.git",
  11361. "reference": "047773e7016e4fd45102cedf4bd2558ae0d0c32f"
  11362. },
  11363. "dist": {
  11364. "type": "zip",
  11365. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/047773e7016e4fd45102cedf4bd2558ae0d0c32f",
  11366. "reference": "047773e7016e4fd45102cedf4bd2558ae0d0c32f",
  11367. "shasum": ""
  11368. },
  11369. "require": {
  11370. "php": ">=7.1.3",
  11371. "symfony/event-dispatcher-contracts": "^1.1"
  11372. },
  11373. "conflict": {
  11374. "symfony/dependency-injection": "<3.4"
  11375. },
  11376. "provide": {
  11377. "psr/event-dispatcher-implementation": "1.0",
  11378. "symfony/event-dispatcher-implementation": "1.1"
  11379. },
  11380. "require-dev": {
  11381. "psr/log": "~1.0",
  11382. "symfony/config": "^3.4|^4.0|^5.0",
  11383. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11384. "symfony/error-handler": "~3.4|~4.4",
  11385. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11386. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11387. "symfony/service-contracts": "^1.1|^2",
  11388. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  11389. },
  11390. "suggest": {
  11391. "symfony/dependency-injection": "",
  11392. "symfony/http-kernel": ""
  11393. },
  11394. "type": "library",
  11395. "autoload": {
  11396. "psr-4": {
  11397. "Symfony\\Component\\EventDispatcher\\": ""
  11398. },
  11399. "exclude-from-classmap": [
  11400. "/Tests/"
  11401. ]
  11402. },
  11403. "notification-url": "https://packagist.org/downloads/",
  11404. "license": [
  11405. "MIT"
  11406. ],
  11407. "authors": [
  11408. {
  11409. "name": "Fabien Potencier",
  11410. "email": "fabien@symfony.com"
  11411. },
  11412. {
  11413. "name": "Symfony Community",
  11414. "homepage": "https://symfony.com/contributors"
  11415. }
  11416. ],
  11417. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11418. "homepage": "https://symfony.com",
  11419. "support": {
  11420. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.25"
  11421. },
  11422. "funding": [
  11423. {
  11424. "url": "https://symfony.com/sponsor",
  11425. "type": "custom"
  11426. },
  11427. {
  11428. "url": "https://github.com/fabpot",
  11429. "type": "github"
  11430. },
  11431. {
  11432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11433. "type": "tidelift"
  11434. }
  11435. ],
  11436. "time": "2021-05-26T17:39:37+00:00"
  11437. },
  11438. {
  11439. "name": "symfony/event-dispatcher-contracts",
  11440. "version": "v1.1.9",
  11441. "source": {
  11442. "type": "git",
  11443. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11444. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  11445. },
  11446. "dist": {
  11447. "type": "zip",
  11448. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  11449. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  11450. "shasum": ""
  11451. },
  11452. "require": {
  11453. "php": ">=7.1.3"
  11454. },
  11455. "suggest": {
  11456. "psr/event-dispatcher": "",
  11457. "symfony/event-dispatcher-implementation": ""
  11458. },
  11459. "type": "library",
  11460. "extra": {
  11461. "branch-alias": {
  11462. "dev-master": "1.1-dev"
  11463. },
  11464. "thanks": {
  11465. "name": "symfony/contracts",
  11466. "url": "https://github.com/symfony/contracts"
  11467. }
  11468. },
  11469. "autoload": {
  11470. "psr-4": {
  11471. "Symfony\\Contracts\\EventDispatcher\\": ""
  11472. }
  11473. },
  11474. "notification-url": "https://packagist.org/downloads/",
  11475. "license": [
  11476. "MIT"
  11477. ],
  11478. "authors": [
  11479. {
  11480. "name": "Nicolas Grekas",
  11481. "email": "p@tchwork.com"
  11482. },
  11483. {
  11484. "name": "Symfony Community",
  11485. "homepage": "https://symfony.com/contributors"
  11486. }
  11487. ],
  11488. "description": "Generic abstractions related to dispatching event",
  11489. "homepage": "https://symfony.com",
  11490. "keywords": [
  11491. "abstractions",
  11492. "contracts",
  11493. "decoupling",
  11494. "interfaces",
  11495. "interoperability",
  11496. "standards"
  11497. ],
  11498. "support": {
  11499. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  11500. },
  11501. "funding": [
  11502. {
  11503. "url": "https://symfony.com/sponsor",
  11504. "type": "custom"
  11505. },
  11506. {
  11507. "url": "https://github.com/fabpot",
  11508. "type": "github"
  11509. },
  11510. {
  11511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11512. "type": "tidelift"
  11513. }
  11514. ],
  11515. "time": "2020-07-06T13:19:58+00:00"
  11516. },
  11517. {
  11518. "name": "symfony/filesystem",
  11519. "version": "v4.4.27",
  11520. "source": {
  11521. "type": "git",
  11522. "url": "https://github.com/symfony/filesystem.git",
  11523. "reference": "517fb795794faf29086a77d99eb8f35e457837a7"
  11524. },
  11525. "dist": {
  11526. "type": "zip",
  11527. "url": "https://api.github.com/repos/symfony/filesystem/zipball/517fb795794faf29086a77d99eb8f35e457837a7",
  11528. "reference": "517fb795794faf29086a77d99eb8f35e457837a7",
  11529. "shasum": ""
  11530. },
  11531. "require": {
  11532. "php": ">=7.1.3",
  11533. "symfony/polyfill-ctype": "~1.8",
  11534. "symfony/polyfill-php80": "^1.16"
  11535. },
  11536. "type": "library",
  11537. "autoload": {
  11538. "psr-4": {
  11539. "Symfony\\Component\\Filesystem\\": ""
  11540. },
  11541. "exclude-from-classmap": [
  11542. "/Tests/"
  11543. ]
  11544. },
  11545. "notification-url": "https://packagist.org/downloads/",
  11546. "license": [
  11547. "MIT"
  11548. ],
  11549. "authors": [
  11550. {
  11551. "name": "Fabien Potencier",
  11552. "email": "fabien@symfony.com"
  11553. },
  11554. {
  11555. "name": "Symfony Community",
  11556. "homepage": "https://symfony.com/contributors"
  11557. }
  11558. ],
  11559. "description": "Provides basic utilities for the filesystem",
  11560. "homepage": "https://symfony.com",
  11561. "support": {
  11562. "source": "https://github.com/symfony/filesystem/tree/v4.4.27"
  11563. },
  11564. "funding": [
  11565. {
  11566. "url": "https://symfony.com/sponsor",
  11567. "type": "custom"
  11568. },
  11569. {
  11570. "url": "https://github.com/fabpot",
  11571. "type": "github"
  11572. },
  11573. {
  11574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11575. "type": "tidelift"
  11576. }
  11577. ],
  11578. "time": "2021-07-21T12:19:41+00:00"
  11579. },
  11580. {
  11581. "name": "symfony/finder",
  11582. "version": "v4.4.30",
  11583. "source": {
  11584. "type": "git",
  11585. "url": "https://github.com/symfony/finder.git",
  11586. "reference": "70362f1e112280d75b30087c7598b837c1b468b6"
  11587. },
  11588. "dist": {
  11589. "type": "zip",
  11590. "url": "https://api.github.com/repos/symfony/finder/zipball/70362f1e112280d75b30087c7598b837c1b468b6",
  11591. "reference": "70362f1e112280d75b30087c7598b837c1b468b6",
  11592. "shasum": ""
  11593. },
  11594. "require": {
  11595. "php": ">=7.1.3",
  11596. "symfony/polyfill-php80": "^1.16"
  11597. },
  11598. "type": "library",
  11599. "autoload": {
  11600. "psr-4": {
  11601. "Symfony\\Component\\Finder\\": ""
  11602. },
  11603. "exclude-from-classmap": [
  11604. "/Tests/"
  11605. ]
  11606. },
  11607. "notification-url": "https://packagist.org/downloads/",
  11608. "license": [
  11609. "MIT"
  11610. ],
  11611. "authors": [
  11612. {
  11613. "name": "Fabien Potencier",
  11614. "email": "fabien@symfony.com"
  11615. },
  11616. {
  11617. "name": "Symfony Community",
  11618. "homepage": "https://symfony.com/contributors"
  11619. }
  11620. ],
  11621. "description": "Finds files and directories via an intuitive fluent interface",
  11622. "homepage": "https://symfony.com",
  11623. "support": {
  11624. "source": "https://github.com/symfony/finder/tree/v4.4.30"
  11625. },
  11626. "funding": [
  11627. {
  11628. "url": "https://symfony.com/sponsor",
  11629. "type": "custom"
  11630. },
  11631. {
  11632. "url": "https://github.com/fabpot",
  11633. "type": "github"
  11634. },
  11635. {
  11636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11637. "type": "tidelift"
  11638. }
  11639. ],
  11640. "time": "2021-08-04T20:31:23+00:00"
  11641. },
  11642. {
  11643. "name": "symfony/http-client-contracts",
  11644. "version": "v2.4.0",
  11645. "source": {
  11646. "type": "git",
  11647. "url": "https://github.com/symfony/http-client-contracts.git",
  11648. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  11649. },
  11650. "dist": {
  11651. "type": "zip",
  11652. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  11653. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  11654. "shasum": ""
  11655. },
  11656. "require": {
  11657. "php": ">=7.2.5"
  11658. },
  11659. "suggest": {
  11660. "symfony/http-client-implementation": ""
  11661. },
  11662. "type": "library",
  11663. "extra": {
  11664. "branch-alias": {
  11665. "dev-main": "2.4-dev"
  11666. },
  11667. "thanks": {
  11668. "name": "symfony/contracts",
  11669. "url": "https://github.com/symfony/contracts"
  11670. }
  11671. },
  11672. "autoload": {
  11673. "psr-4": {
  11674. "Symfony\\Contracts\\HttpClient\\": ""
  11675. }
  11676. },
  11677. "notification-url": "https://packagist.org/downloads/",
  11678. "license": [
  11679. "MIT"
  11680. ],
  11681. "authors": [
  11682. {
  11683. "name": "Nicolas Grekas",
  11684. "email": "p@tchwork.com"
  11685. },
  11686. {
  11687. "name": "Symfony Community",
  11688. "homepage": "https://symfony.com/contributors"
  11689. }
  11690. ],
  11691. "description": "Generic abstractions related to HTTP clients",
  11692. "homepage": "https://symfony.com",
  11693. "keywords": [
  11694. "abstractions",
  11695. "contracts",
  11696. "decoupling",
  11697. "interfaces",
  11698. "interoperability",
  11699. "standards"
  11700. ],
  11701. "support": {
  11702. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  11703. },
  11704. "funding": [
  11705. {
  11706. "url": "https://symfony.com/sponsor",
  11707. "type": "custom"
  11708. },
  11709. {
  11710. "url": "https://github.com/fabpot",
  11711. "type": "github"
  11712. },
  11713. {
  11714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11715. "type": "tidelift"
  11716. }
  11717. ],
  11718. "time": "2021-04-11T23:07:08+00:00"
  11719. },
  11720. {
  11721. "name": "symfony/http-foundation",
  11722. "version": "v4.4.25",
  11723. "source": {
  11724. "type": "git",
  11725. "url": "https://github.com/symfony/http-foundation.git",
  11726. "reference": "0c79d5a65ace4fe66e49702658c024a419d2438b"
  11727. },
  11728. "dist": {
  11729. "type": "zip",
  11730. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0c79d5a65ace4fe66e49702658c024a419d2438b",
  11731. "reference": "0c79d5a65ace4fe66e49702658c024a419d2438b",
  11732. "shasum": ""
  11733. },
  11734. "require": {
  11735. "php": ">=7.1.3",
  11736. "symfony/mime": "^4.3|^5.0",
  11737. "symfony/polyfill-mbstring": "~1.1",
  11738. "symfony/polyfill-php80": "^1.15"
  11739. },
  11740. "require-dev": {
  11741. "predis/predis": "~1.0",
  11742. "symfony/expression-language": "^3.4|^4.0|^5.0"
  11743. },
  11744. "type": "library",
  11745. "autoload": {
  11746. "psr-4": {
  11747. "Symfony\\Component\\HttpFoundation\\": ""
  11748. },
  11749. "exclude-from-classmap": [
  11750. "/Tests/"
  11751. ]
  11752. },
  11753. "notification-url": "https://packagist.org/downloads/",
  11754. "license": [
  11755. "MIT"
  11756. ],
  11757. "authors": [
  11758. {
  11759. "name": "Fabien Potencier",
  11760. "email": "fabien@symfony.com"
  11761. },
  11762. {
  11763. "name": "Symfony Community",
  11764. "homepage": "https://symfony.com/contributors"
  11765. }
  11766. ],
  11767. "description": "Defines an object-oriented layer for the HTTP specification",
  11768. "homepage": "https://symfony.com",
  11769. "support": {
  11770. "source": "https://github.com/symfony/http-foundation/tree/v4.4.25"
  11771. },
  11772. "funding": [
  11773. {
  11774. "url": "https://symfony.com/sponsor",
  11775. "type": "custom"
  11776. },
  11777. {
  11778. "url": "https://github.com/fabpot",
  11779. "type": "github"
  11780. },
  11781. {
  11782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11783. "type": "tidelift"
  11784. }
  11785. ],
  11786. "time": "2021-05-26T11:20:16+00:00"
  11787. },
  11788. {
  11789. "name": "symfony/http-kernel",
  11790. "version": "v4.4.25",
  11791. "source": {
  11792. "type": "git",
  11793. "url": "https://github.com/symfony/http-kernel.git",
  11794. "reference": "3795165596fe81a52296b78c9aae938d434069cc"
  11795. },
  11796. "dist": {
  11797. "type": "zip",
  11798. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3795165596fe81a52296b78c9aae938d434069cc",
  11799. "reference": "3795165596fe81a52296b78c9aae938d434069cc",
  11800. "shasum": ""
  11801. },
  11802. "require": {
  11803. "php": ">=7.1.3",
  11804. "psr/log": "~1.0",
  11805. "symfony/error-handler": "^4.4",
  11806. "symfony/event-dispatcher": "^4.4",
  11807. "symfony/http-client-contracts": "^1.1|^2",
  11808. "symfony/http-foundation": "^4.4|^5.0",
  11809. "symfony/polyfill-ctype": "^1.8",
  11810. "symfony/polyfill-php73": "^1.9",
  11811. "symfony/polyfill-php80": "^1.15"
  11812. },
  11813. "conflict": {
  11814. "symfony/browser-kit": "<4.3",
  11815. "symfony/config": "<3.4",
  11816. "symfony/console": ">=5",
  11817. "symfony/dependency-injection": "<4.3",
  11818. "symfony/translation": "<4.2",
  11819. "twig/twig": "<1.43|<2.13,>=2"
  11820. },
  11821. "provide": {
  11822. "psr/log-implementation": "1.0"
  11823. },
  11824. "require-dev": {
  11825. "psr/cache": "^1.0|^2.0|^3.0",
  11826. "symfony/browser-kit": "^4.3|^5.0",
  11827. "symfony/config": "^3.4|^4.0|^5.0",
  11828. "symfony/console": "^3.4|^4.0",
  11829. "symfony/css-selector": "^3.4|^4.0|^5.0",
  11830. "symfony/dependency-injection": "^4.3|^5.0",
  11831. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  11832. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11833. "symfony/finder": "^3.4|^4.0|^5.0",
  11834. "symfony/process": "^3.4|^4.0|^5.0",
  11835. "symfony/routing": "^3.4|^4.0|^5.0",
  11836. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  11837. "symfony/templating": "^3.4|^4.0|^5.0",
  11838. "symfony/translation": "^4.2|^5.0",
  11839. "symfony/translation-contracts": "^1.1|^2",
  11840. "twig/twig": "^1.43|^2.13|^3.0.4"
  11841. },
  11842. "suggest": {
  11843. "symfony/browser-kit": "",
  11844. "symfony/config": "",
  11845. "symfony/console": "",
  11846. "symfony/dependency-injection": ""
  11847. },
  11848. "type": "library",
  11849. "autoload": {
  11850. "psr-4": {
  11851. "Symfony\\Component\\HttpKernel\\": ""
  11852. },
  11853. "exclude-from-classmap": [
  11854. "/Tests/"
  11855. ]
  11856. },
  11857. "notification-url": "https://packagist.org/downloads/",
  11858. "license": [
  11859. "MIT"
  11860. ],
  11861. "authors": [
  11862. {
  11863. "name": "Fabien Potencier",
  11864. "email": "fabien@symfony.com"
  11865. },
  11866. {
  11867. "name": "Symfony Community",
  11868. "homepage": "https://symfony.com/contributors"
  11869. }
  11870. ],
  11871. "description": "Provides a structured process for converting a Request into a Response",
  11872. "homepage": "https://symfony.com",
  11873. "support": {
  11874. "source": "https://github.com/symfony/http-kernel/tree/v4.4.25"
  11875. },
  11876. "funding": [
  11877. {
  11878. "url": "https://symfony.com/sponsor",
  11879. "type": "custom"
  11880. },
  11881. {
  11882. "url": "https://github.com/fabpot",
  11883. "type": "github"
  11884. },
  11885. {
  11886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11887. "type": "tidelift"
  11888. }
  11889. ],
  11890. "time": "2021-06-01T07:12:08+00:00"
  11891. },
  11892. {
  11893. "name": "symfony/mime",
  11894. "version": "v5.3.0",
  11895. "source": {
  11896. "type": "git",
  11897. "url": "https://github.com/symfony/mime.git",
  11898. "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852"
  11899. },
  11900. "dist": {
  11901. "type": "zip",
  11902. "url": "https://api.github.com/repos/symfony/mime/zipball/ed710d297b181f6a7194d8172c9c2423d58e4852",
  11903. "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852",
  11904. "shasum": ""
  11905. },
  11906. "require": {
  11907. "php": ">=7.2.5",
  11908. "symfony/deprecation-contracts": "^2.1",
  11909. "symfony/polyfill-intl-idn": "^1.10",
  11910. "symfony/polyfill-mbstring": "^1.0",
  11911. "symfony/polyfill-php80": "^1.15"
  11912. },
  11913. "conflict": {
  11914. "egulias/email-validator": "~3.0.0",
  11915. "phpdocumentor/reflection-docblock": "<3.2.2",
  11916. "phpdocumentor/type-resolver": "<1.4.0",
  11917. "symfony/mailer": "<4.4"
  11918. },
  11919. "require-dev": {
  11920. "egulias/email-validator": "^2.1.10|^3.1",
  11921. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11922. "symfony/dependency-injection": "^4.4|^5.0",
  11923. "symfony/property-access": "^4.4|^5.1",
  11924. "symfony/property-info": "^4.4|^5.1",
  11925. "symfony/serializer": "^5.2"
  11926. },
  11927. "type": "library",
  11928. "autoload": {
  11929. "psr-4": {
  11930. "Symfony\\Component\\Mime\\": ""
  11931. },
  11932. "exclude-from-classmap": [
  11933. "/Tests/"
  11934. ]
  11935. },
  11936. "notification-url": "https://packagist.org/downloads/",
  11937. "license": [
  11938. "MIT"
  11939. ],
  11940. "authors": [
  11941. {
  11942. "name": "Fabien Potencier",
  11943. "email": "fabien@symfony.com"
  11944. },
  11945. {
  11946. "name": "Symfony Community",
  11947. "homepage": "https://symfony.com/contributors"
  11948. }
  11949. ],
  11950. "description": "Allows manipulating MIME messages",
  11951. "homepage": "https://symfony.com",
  11952. "keywords": [
  11953. "mime",
  11954. "mime-type"
  11955. ],
  11956. "support": {
  11957. "source": "https://github.com/symfony/mime/tree/v5.3.0"
  11958. },
  11959. "funding": [
  11960. {
  11961. "url": "https://symfony.com/sponsor",
  11962. "type": "custom"
  11963. },
  11964. {
  11965. "url": "https://github.com/fabpot",
  11966. "type": "github"
  11967. },
  11968. {
  11969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11970. "type": "tidelift"
  11971. }
  11972. ],
  11973. "time": "2021-05-26T17:43:10+00:00"
  11974. },
  11975. {
  11976. "name": "symfony/polyfill-ctype",
  11977. "version": "v1.23.0",
  11978. "source": {
  11979. "type": "git",
  11980. "url": "https://github.com/symfony/polyfill-ctype.git",
  11981. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  11982. },
  11983. "dist": {
  11984. "type": "zip",
  11985. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  11986. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  11987. "shasum": ""
  11988. },
  11989. "require": {
  11990. "php": ">=7.1"
  11991. },
  11992. "suggest": {
  11993. "ext-ctype": "For best performance"
  11994. },
  11995. "type": "library",
  11996. "extra": {
  11997. "branch-alias": {
  11998. "dev-main": "1.23-dev"
  11999. },
  12000. "thanks": {
  12001. "name": "symfony/polyfill",
  12002. "url": "https://github.com/symfony/polyfill"
  12003. }
  12004. },
  12005. "autoload": {
  12006. "psr-4": {
  12007. "Symfony\\Polyfill\\Ctype\\": ""
  12008. },
  12009. "files": [
  12010. "bootstrap.php"
  12011. ]
  12012. },
  12013. "notification-url": "https://packagist.org/downloads/",
  12014. "license": [
  12015. "MIT"
  12016. ],
  12017. "authors": [
  12018. {
  12019. "name": "Gert de Pagter",
  12020. "email": "BackEndTea@gmail.com"
  12021. },
  12022. {
  12023. "name": "Symfony Community",
  12024. "homepage": "https://symfony.com/contributors"
  12025. }
  12026. ],
  12027. "description": "Symfony polyfill for ctype functions",
  12028. "homepage": "https://symfony.com",
  12029. "keywords": [
  12030. "compatibility",
  12031. "ctype",
  12032. "polyfill",
  12033. "portable"
  12034. ],
  12035. "support": {
  12036. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  12037. },
  12038. "funding": [
  12039. {
  12040. "url": "https://symfony.com/sponsor",
  12041. "type": "custom"
  12042. },
  12043. {
  12044. "url": "https://github.com/fabpot",
  12045. "type": "github"
  12046. },
  12047. {
  12048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12049. "type": "tidelift"
  12050. }
  12051. ],
  12052. "time": "2021-02-19T12:13:01+00:00"
  12053. },
  12054. {
  12055. "name": "symfony/polyfill-iconv",
  12056. "version": "v1.23.0",
  12057. "source": {
  12058. "type": "git",
  12059. "url": "https://github.com/symfony/polyfill-iconv.git",
  12060. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  12061. },
  12062. "dist": {
  12063. "type": "zip",
  12064. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  12065. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  12066. "shasum": ""
  12067. },
  12068. "require": {
  12069. "php": ">=7.1"
  12070. },
  12071. "suggest": {
  12072. "ext-iconv": "For best performance"
  12073. },
  12074. "type": "library",
  12075. "extra": {
  12076. "branch-alias": {
  12077. "dev-main": "1.23-dev"
  12078. },
  12079. "thanks": {
  12080. "name": "symfony/polyfill",
  12081. "url": "https://github.com/symfony/polyfill"
  12082. }
  12083. },
  12084. "autoload": {
  12085. "psr-4": {
  12086. "Symfony\\Polyfill\\Iconv\\": ""
  12087. },
  12088. "files": [
  12089. "bootstrap.php"
  12090. ]
  12091. },
  12092. "notification-url": "https://packagist.org/downloads/",
  12093. "license": [
  12094. "MIT"
  12095. ],
  12096. "authors": [
  12097. {
  12098. "name": "Nicolas Grekas",
  12099. "email": "p@tchwork.com"
  12100. },
  12101. {
  12102. "name": "Symfony Community",
  12103. "homepage": "https://symfony.com/contributors"
  12104. }
  12105. ],
  12106. "description": "Symfony polyfill for the Iconv extension",
  12107. "homepage": "https://symfony.com",
  12108. "keywords": [
  12109. "compatibility",
  12110. "iconv",
  12111. "polyfill",
  12112. "portable",
  12113. "shim"
  12114. ],
  12115. "support": {
  12116. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  12117. },
  12118. "funding": [
  12119. {
  12120. "url": "https://symfony.com/sponsor",
  12121. "type": "custom"
  12122. },
  12123. {
  12124. "url": "https://github.com/fabpot",
  12125. "type": "github"
  12126. },
  12127. {
  12128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12129. "type": "tidelift"
  12130. }
  12131. ],
  12132. "time": "2021-05-27T09:27:20+00:00"
  12133. },
  12134. {
  12135. "name": "symfony/polyfill-intl-idn",
  12136. "version": "v1.23.0",
  12137. "source": {
  12138. "type": "git",
  12139. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12140. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  12141. },
  12142. "dist": {
  12143. "type": "zip",
  12144. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  12145. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  12146. "shasum": ""
  12147. },
  12148. "require": {
  12149. "php": ">=7.1",
  12150. "symfony/polyfill-intl-normalizer": "^1.10",
  12151. "symfony/polyfill-php72": "^1.10"
  12152. },
  12153. "suggest": {
  12154. "ext-intl": "For best performance"
  12155. },
  12156. "type": "library",
  12157. "extra": {
  12158. "branch-alias": {
  12159. "dev-main": "1.23-dev"
  12160. },
  12161. "thanks": {
  12162. "name": "symfony/polyfill",
  12163. "url": "https://github.com/symfony/polyfill"
  12164. }
  12165. },
  12166. "autoload": {
  12167. "psr-4": {
  12168. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12169. },
  12170. "files": [
  12171. "bootstrap.php"
  12172. ]
  12173. },
  12174. "notification-url": "https://packagist.org/downloads/",
  12175. "license": [
  12176. "MIT"
  12177. ],
  12178. "authors": [
  12179. {
  12180. "name": "Laurent Bassin",
  12181. "email": "laurent@bassin.info"
  12182. },
  12183. {
  12184. "name": "Trevor Rowbotham",
  12185. "email": "trevor.rowbotham@pm.me"
  12186. },
  12187. {
  12188. "name": "Symfony Community",
  12189. "homepage": "https://symfony.com/contributors"
  12190. }
  12191. ],
  12192. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12193. "homepage": "https://symfony.com",
  12194. "keywords": [
  12195. "compatibility",
  12196. "idn",
  12197. "intl",
  12198. "polyfill",
  12199. "portable",
  12200. "shim"
  12201. ],
  12202. "support": {
  12203. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  12204. },
  12205. "funding": [
  12206. {
  12207. "url": "https://symfony.com/sponsor",
  12208. "type": "custom"
  12209. },
  12210. {
  12211. "url": "https://github.com/fabpot",
  12212. "type": "github"
  12213. },
  12214. {
  12215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12216. "type": "tidelift"
  12217. }
  12218. ],
  12219. "time": "2021-05-27T09:27:20+00:00"
  12220. },
  12221. {
  12222. "name": "symfony/polyfill-intl-normalizer",
  12223. "version": "v1.23.0",
  12224. "source": {
  12225. "type": "git",
  12226. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12227. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  12228. },
  12229. "dist": {
  12230. "type": "zip",
  12231. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  12232. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  12233. "shasum": ""
  12234. },
  12235. "require": {
  12236. "php": ">=7.1"
  12237. },
  12238. "suggest": {
  12239. "ext-intl": "For best performance"
  12240. },
  12241. "type": "library",
  12242. "extra": {
  12243. "branch-alias": {
  12244. "dev-main": "1.23-dev"
  12245. },
  12246. "thanks": {
  12247. "name": "symfony/polyfill",
  12248. "url": "https://github.com/symfony/polyfill"
  12249. }
  12250. },
  12251. "autoload": {
  12252. "psr-4": {
  12253. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12254. },
  12255. "files": [
  12256. "bootstrap.php"
  12257. ],
  12258. "classmap": [
  12259. "Resources/stubs"
  12260. ]
  12261. },
  12262. "notification-url": "https://packagist.org/downloads/",
  12263. "license": [
  12264. "MIT"
  12265. ],
  12266. "authors": [
  12267. {
  12268. "name": "Nicolas Grekas",
  12269. "email": "p@tchwork.com"
  12270. },
  12271. {
  12272. "name": "Symfony Community",
  12273. "homepage": "https://symfony.com/contributors"
  12274. }
  12275. ],
  12276. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12277. "homepage": "https://symfony.com",
  12278. "keywords": [
  12279. "compatibility",
  12280. "intl",
  12281. "normalizer",
  12282. "polyfill",
  12283. "portable",
  12284. "shim"
  12285. ],
  12286. "support": {
  12287. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  12288. },
  12289. "funding": [
  12290. {
  12291. "url": "https://symfony.com/sponsor",
  12292. "type": "custom"
  12293. },
  12294. {
  12295. "url": "https://github.com/fabpot",
  12296. "type": "github"
  12297. },
  12298. {
  12299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12300. "type": "tidelift"
  12301. }
  12302. ],
  12303. "time": "2021-02-19T12:13:01+00:00"
  12304. },
  12305. {
  12306. "name": "symfony/polyfill-mbstring",
  12307. "version": "v1.23.0",
  12308. "source": {
  12309. "type": "git",
  12310. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12311. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  12312. },
  12313. "dist": {
  12314. "type": "zip",
  12315. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  12316. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  12317. "shasum": ""
  12318. },
  12319. "require": {
  12320. "php": ">=7.1"
  12321. },
  12322. "suggest": {
  12323. "ext-mbstring": "For best performance"
  12324. },
  12325. "type": "library",
  12326. "extra": {
  12327. "branch-alias": {
  12328. "dev-main": "1.23-dev"
  12329. },
  12330. "thanks": {
  12331. "name": "symfony/polyfill",
  12332. "url": "https://github.com/symfony/polyfill"
  12333. }
  12334. },
  12335. "autoload": {
  12336. "psr-4": {
  12337. "Symfony\\Polyfill\\Mbstring\\": ""
  12338. },
  12339. "files": [
  12340. "bootstrap.php"
  12341. ]
  12342. },
  12343. "notification-url": "https://packagist.org/downloads/",
  12344. "license": [
  12345. "MIT"
  12346. ],
  12347. "authors": [
  12348. {
  12349. "name": "Nicolas Grekas",
  12350. "email": "p@tchwork.com"
  12351. },
  12352. {
  12353. "name": "Symfony Community",
  12354. "homepage": "https://symfony.com/contributors"
  12355. }
  12356. ],
  12357. "description": "Symfony polyfill for the Mbstring extension",
  12358. "homepage": "https://symfony.com",
  12359. "keywords": [
  12360. "compatibility",
  12361. "mbstring",
  12362. "polyfill",
  12363. "portable",
  12364. "shim"
  12365. ],
  12366. "support": {
  12367. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  12368. },
  12369. "funding": [
  12370. {
  12371. "url": "https://symfony.com/sponsor",
  12372. "type": "custom"
  12373. },
  12374. {
  12375. "url": "https://github.com/fabpot",
  12376. "type": "github"
  12377. },
  12378. {
  12379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12380. "type": "tidelift"
  12381. }
  12382. ],
  12383. "time": "2021-05-27T09:27:20+00:00"
  12384. },
  12385. {
  12386. "name": "symfony/polyfill-php72",
  12387. "version": "v1.23.0",
  12388. "source": {
  12389. "type": "git",
  12390. "url": "https://github.com/symfony/polyfill-php72.git",
  12391. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  12392. },
  12393. "dist": {
  12394. "type": "zip",
  12395. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  12396. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  12397. "shasum": ""
  12398. },
  12399. "require": {
  12400. "php": ">=7.1"
  12401. },
  12402. "type": "library",
  12403. "extra": {
  12404. "branch-alias": {
  12405. "dev-main": "1.23-dev"
  12406. },
  12407. "thanks": {
  12408. "name": "symfony/polyfill",
  12409. "url": "https://github.com/symfony/polyfill"
  12410. }
  12411. },
  12412. "autoload": {
  12413. "psr-4": {
  12414. "Symfony\\Polyfill\\Php72\\": ""
  12415. },
  12416. "files": [
  12417. "bootstrap.php"
  12418. ]
  12419. },
  12420. "notification-url": "https://packagist.org/downloads/",
  12421. "license": [
  12422. "MIT"
  12423. ],
  12424. "authors": [
  12425. {
  12426. "name": "Nicolas Grekas",
  12427. "email": "p@tchwork.com"
  12428. },
  12429. {
  12430. "name": "Symfony Community",
  12431. "homepage": "https://symfony.com/contributors"
  12432. }
  12433. ],
  12434. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  12435. "homepage": "https://symfony.com",
  12436. "keywords": [
  12437. "compatibility",
  12438. "polyfill",
  12439. "portable",
  12440. "shim"
  12441. ],
  12442. "support": {
  12443. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.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": "2021-05-27T09:17:38+00:00"
  12460. },
  12461. {
  12462. "name": "symfony/polyfill-php73",
  12463. "version": "v1.23.0",
  12464. "source": {
  12465. "type": "git",
  12466. "url": "https://github.com/symfony/polyfill-php73.git",
  12467. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  12468. },
  12469. "dist": {
  12470. "type": "zip",
  12471. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  12472. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  12473. "shasum": ""
  12474. },
  12475. "require": {
  12476. "php": ">=7.1"
  12477. },
  12478. "type": "library",
  12479. "extra": {
  12480. "branch-alias": {
  12481. "dev-main": "1.23-dev"
  12482. },
  12483. "thanks": {
  12484. "name": "symfony/polyfill",
  12485. "url": "https://github.com/symfony/polyfill"
  12486. }
  12487. },
  12488. "autoload": {
  12489. "psr-4": {
  12490. "Symfony\\Polyfill\\Php73\\": ""
  12491. },
  12492. "files": [
  12493. "bootstrap.php"
  12494. ],
  12495. "classmap": [
  12496. "Resources/stubs"
  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 backporting some PHP 7.3+ features to lower PHP versions",
  12514. "homepage": "https://symfony.com",
  12515. "keywords": [
  12516. "compatibility",
  12517. "polyfill",
  12518. "portable",
  12519. "shim"
  12520. ],
  12521. "support": {
  12522. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  12523. },
  12524. "funding": [
  12525. {
  12526. "url": "https://symfony.com/sponsor",
  12527. "type": "custom"
  12528. },
  12529. {
  12530. "url": "https://github.com/fabpot",
  12531. "type": "github"
  12532. },
  12533. {
  12534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12535. "type": "tidelift"
  12536. }
  12537. ],
  12538. "time": "2021-02-19T12:13:01+00:00"
  12539. },
  12540. {
  12541. "name": "symfony/polyfill-php80",
  12542. "version": "v1.23.0",
  12543. "source": {
  12544. "type": "git",
  12545. "url": "https://github.com/symfony/polyfill-php80.git",
  12546. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  12547. },
  12548. "dist": {
  12549. "type": "zip",
  12550. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  12551. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  12552. "shasum": ""
  12553. },
  12554. "require": {
  12555. "php": ">=7.1"
  12556. },
  12557. "type": "library",
  12558. "extra": {
  12559. "branch-alias": {
  12560. "dev-main": "1.23-dev"
  12561. },
  12562. "thanks": {
  12563. "name": "symfony/polyfill",
  12564. "url": "https://github.com/symfony/polyfill"
  12565. }
  12566. },
  12567. "autoload": {
  12568. "psr-4": {
  12569. "Symfony\\Polyfill\\Php80\\": ""
  12570. },
  12571. "files": [
  12572. "bootstrap.php"
  12573. ],
  12574. "classmap": [
  12575. "Resources/stubs"
  12576. ]
  12577. },
  12578. "notification-url": "https://packagist.org/downloads/",
  12579. "license": [
  12580. "MIT"
  12581. ],
  12582. "authors": [
  12583. {
  12584. "name": "Ion Bazan",
  12585. "email": "ion.bazan@gmail.com"
  12586. },
  12587. {
  12588. "name": "Nicolas Grekas",
  12589. "email": "p@tchwork.com"
  12590. },
  12591. {
  12592. "name": "Symfony Community",
  12593. "homepage": "https://symfony.com/contributors"
  12594. }
  12595. ],
  12596. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  12597. "homepage": "https://symfony.com",
  12598. "keywords": [
  12599. "compatibility",
  12600. "polyfill",
  12601. "portable",
  12602. "shim"
  12603. ],
  12604. "support": {
  12605. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  12606. },
  12607. "funding": [
  12608. {
  12609. "url": "https://symfony.com/sponsor",
  12610. "type": "custom"
  12611. },
  12612. {
  12613. "url": "https://github.com/fabpot",
  12614. "type": "github"
  12615. },
  12616. {
  12617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12618. "type": "tidelift"
  12619. }
  12620. ],
  12621. "time": "2021-02-19T12:13:01+00:00"
  12622. },
  12623. {
  12624. "name": "symfony/polyfill-php81",
  12625. "version": "v1.23.0",
  12626. "source": {
  12627. "type": "git",
  12628. "url": "https://github.com/symfony/polyfill-php81.git",
  12629. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  12630. },
  12631. "dist": {
  12632. "type": "zip",
  12633. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  12634. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  12635. "shasum": ""
  12636. },
  12637. "require": {
  12638. "php": ">=7.1"
  12639. },
  12640. "type": "library",
  12641. "extra": {
  12642. "branch-alias": {
  12643. "dev-main": "1.23-dev"
  12644. },
  12645. "thanks": {
  12646. "name": "symfony/polyfill",
  12647. "url": "https://github.com/symfony/polyfill"
  12648. }
  12649. },
  12650. "autoload": {
  12651. "psr-4": {
  12652. "Symfony\\Polyfill\\Php81\\": ""
  12653. },
  12654. "files": [
  12655. "bootstrap.php"
  12656. ],
  12657. "classmap": [
  12658. "Resources/stubs"
  12659. ]
  12660. },
  12661. "notification-url": "https://packagist.org/downloads/",
  12662. "license": [
  12663. "MIT"
  12664. ],
  12665. "authors": [
  12666. {
  12667. "name": "Nicolas Grekas",
  12668. "email": "p@tchwork.com"
  12669. },
  12670. {
  12671. "name": "Symfony Community",
  12672. "homepage": "https://symfony.com/contributors"
  12673. }
  12674. ],
  12675. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12676. "homepage": "https://symfony.com",
  12677. "keywords": [
  12678. "compatibility",
  12679. "polyfill",
  12680. "portable",
  12681. "shim"
  12682. ],
  12683. "support": {
  12684. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  12685. },
  12686. "funding": [
  12687. {
  12688. "url": "https://symfony.com/sponsor",
  12689. "type": "custom"
  12690. },
  12691. {
  12692. "url": "https://github.com/fabpot",
  12693. "type": "github"
  12694. },
  12695. {
  12696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12697. "type": "tidelift"
  12698. }
  12699. ],
  12700. "time": "2021-05-21T13:25:03+00:00"
  12701. },
  12702. {
  12703. "name": "symfony/process",
  12704. "version": "v4.4.25",
  12705. "source": {
  12706. "type": "git",
  12707. "url": "https://github.com/symfony/process.git",
  12708. "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9"
  12709. },
  12710. "dist": {
  12711. "type": "zip",
  12712. "url": "https://api.github.com/repos/symfony/process/zipball/cd61e6dd273975c6625316de9d141ebd197f93c9",
  12713. "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9",
  12714. "shasum": ""
  12715. },
  12716. "require": {
  12717. "php": ">=7.1.3"
  12718. },
  12719. "type": "library",
  12720. "autoload": {
  12721. "psr-4": {
  12722. "Symfony\\Component\\Process\\": ""
  12723. },
  12724. "exclude-from-classmap": [
  12725. "/Tests/"
  12726. ]
  12727. },
  12728. "notification-url": "https://packagist.org/downloads/",
  12729. "license": [
  12730. "MIT"
  12731. ],
  12732. "authors": [
  12733. {
  12734. "name": "Fabien Potencier",
  12735. "email": "fabien@symfony.com"
  12736. },
  12737. {
  12738. "name": "Symfony Community",
  12739. "homepage": "https://symfony.com/contributors"
  12740. }
  12741. ],
  12742. "description": "Executes commands in sub-processes",
  12743. "homepage": "https://symfony.com",
  12744. "support": {
  12745. "source": "https://github.com/symfony/process/tree/v4.4.25"
  12746. },
  12747. "funding": [
  12748. {
  12749. "url": "https://symfony.com/sponsor",
  12750. "type": "custom"
  12751. },
  12752. {
  12753. "url": "https://github.com/fabpot",
  12754. "type": "github"
  12755. },
  12756. {
  12757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12758. "type": "tidelift"
  12759. }
  12760. ],
  12761. "time": "2021-05-26T11:20:16+00:00"
  12762. },
  12763. {
  12764. "name": "symfony/psr-http-message-bridge",
  12765. "version": "v2.1.0",
  12766. "source": {
  12767. "type": "git",
  12768. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12769. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d"
  12770. },
  12771. "dist": {
  12772. "type": "zip",
  12773. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d",
  12774. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d",
  12775. "shasum": ""
  12776. },
  12777. "require": {
  12778. "php": ">=7.1",
  12779. "psr/http-message": "^1.0",
  12780. "symfony/http-foundation": "^4.4 || ^5.0"
  12781. },
  12782. "require-dev": {
  12783. "nyholm/psr7": "^1.1",
  12784. "psr/log": "^1.1",
  12785. "symfony/browser-kit": "^4.4 || ^5.0",
  12786. "symfony/config": "^4.4 || ^5.0",
  12787. "symfony/event-dispatcher": "^4.4 || ^5.0",
  12788. "symfony/framework-bundle": "^4.4 || ^5.0",
  12789. "symfony/http-kernel": "^4.4 || ^5.0",
  12790. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  12791. },
  12792. "suggest": {
  12793. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  12794. },
  12795. "type": "symfony-bridge",
  12796. "extra": {
  12797. "branch-alias": {
  12798. "dev-main": "2.1-dev"
  12799. }
  12800. },
  12801. "autoload": {
  12802. "psr-4": {
  12803. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12804. },
  12805. "exclude-from-classmap": [
  12806. "/Tests/"
  12807. ]
  12808. },
  12809. "notification-url": "https://packagist.org/downloads/",
  12810. "license": [
  12811. "MIT"
  12812. ],
  12813. "authors": [
  12814. {
  12815. "name": "Fabien Potencier",
  12816. "email": "fabien@symfony.com"
  12817. },
  12818. {
  12819. "name": "Symfony Community",
  12820. "homepage": "http://symfony.com/contributors"
  12821. }
  12822. ],
  12823. "description": "PSR HTTP message bridge",
  12824. "homepage": "http://symfony.com",
  12825. "keywords": [
  12826. "http",
  12827. "http-message",
  12828. "psr-17",
  12829. "psr-7"
  12830. ],
  12831. "support": {
  12832. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  12833. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.0"
  12834. },
  12835. "funding": [
  12836. {
  12837. "url": "https://symfony.com/sponsor",
  12838. "type": "custom"
  12839. },
  12840. {
  12841. "url": "https://github.com/fabpot",
  12842. "type": "github"
  12843. },
  12844. {
  12845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12846. "type": "tidelift"
  12847. }
  12848. ],
  12849. "time": "2021-02-17T10:35:25+00:00"
  12850. },
  12851. {
  12852. "name": "symfony/routing",
  12853. "version": "v4.4.25",
  12854. "source": {
  12855. "type": "git",
  12856. "url": "https://github.com/symfony/routing.git",
  12857. "reference": "3a3c2f197ad0846ac6413225fc78868ba1c61434"
  12858. },
  12859. "dist": {
  12860. "type": "zip",
  12861. "url": "https://api.github.com/repos/symfony/routing/zipball/3a3c2f197ad0846ac6413225fc78868ba1c61434",
  12862. "reference": "3a3c2f197ad0846ac6413225fc78868ba1c61434",
  12863. "shasum": ""
  12864. },
  12865. "require": {
  12866. "php": ">=7.1.3"
  12867. },
  12868. "conflict": {
  12869. "symfony/config": "<4.2",
  12870. "symfony/dependency-injection": "<3.4",
  12871. "symfony/yaml": "<3.4"
  12872. },
  12873. "require-dev": {
  12874. "doctrine/annotations": "^1.10.4",
  12875. "psr/log": "~1.0",
  12876. "symfony/config": "^4.2|^5.0",
  12877. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12878. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12879. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12880. "symfony/yaml": "^3.4|^4.0|^5.0"
  12881. },
  12882. "suggest": {
  12883. "doctrine/annotations": "For using the annotation loader",
  12884. "symfony/config": "For using the all-in-one router or any loader",
  12885. "symfony/expression-language": "For using expression matching",
  12886. "symfony/http-foundation": "For using a Symfony Request object",
  12887. "symfony/yaml": "For using the YAML loader"
  12888. },
  12889. "type": "library",
  12890. "autoload": {
  12891. "psr-4": {
  12892. "Symfony\\Component\\Routing\\": ""
  12893. },
  12894. "exclude-from-classmap": [
  12895. "/Tests/"
  12896. ]
  12897. },
  12898. "notification-url": "https://packagist.org/downloads/",
  12899. "license": [
  12900. "MIT"
  12901. ],
  12902. "authors": [
  12903. {
  12904. "name": "Fabien Potencier",
  12905. "email": "fabien@symfony.com"
  12906. },
  12907. {
  12908. "name": "Symfony Community",
  12909. "homepage": "https://symfony.com/contributors"
  12910. }
  12911. ],
  12912. "description": "Maps an HTTP request to a set of configuration variables",
  12913. "homepage": "https://symfony.com",
  12914. "keywords": [
  12915. "router",
  12916. "routing",
  12917. "uri",
  12918. "url"
  12919. ],
  12920. "support": {
  12921. "source": "https://github.com/symfony/routing/tree/v4.4.25"
  12922. },
  12923. "funding": [
  12924. {
  12925. "url": "https://symfony.com/sponsor",
  12926. "type": "custom"
  12927. },
  12928. {
  12929. "url": "https://github.com/fabpot",
  12930. "type": "github"
  12931. },
  12932. {
  12933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12934. "type": "tidelift"
  12935. }
  12936. ],
  12937. "time": "2021-05-26T17:39:37+00:00"
  12938. },
  12939. {
  12940. "name": "symfony/serializer",
  12941. "version": "v4.4.25",
  12942. "source": {
  12943. "type": "git",
  12944. "url": "https://github.com/symfony/serializer.git",
  12945. "reference": "6db3eb4f1bb437cd3730f52353ba4b568acaddf5"
  12946. },
  12947. "dist": {
  12948. "type": "zip",
  12949. "url": "https://api.github.com/repos/symfony/serializer/zipball/6db3eb4f1bb437cd3730f52353ba4b568acaddf5",
  12950. "reference": "6db3eb4f1bb437cd3730f52353ba4b568acaddf5",
  12951. "shasum": ""
  12952. },
  12953. "require": {
  12954. "php": ">=7.1.3",
  12955. "symfony/polyfill-ctype": "~1.8"
  12956. },
  12957. "conflict": {
  12958. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  12959. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  12960. "symfony/dependency-injection": "<3.4",
  12961. "symfony/property-access": "<3.4",
  12962. "symfony/property-info": "<3.4",
  12963. "symfony/yaml": "<3.4"
  12964. },
  12965. "require-dev": {
  12966. "doctrine/annotations": "^1.10.4",
  12967. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12968. "symfony/cache": "^3.4|^4.0|^5.0",
  12969. "symfony/config": "^3.4|^4.0|^5.0",
  12970. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12971. "symfony/error-handler": "^4.4|^5.0",
  12972. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12973. "symfony/mime": "^4.4|^5.0",
  12974. "symfony/property-access": "^3.4.41|^4.4.9|^5.0.9",
  12975. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  12976. "symfony/validator": "^3.4|^4.0|^5.0",
  12977. "symfony/yaml": "^3.4|^4.0|^5.0"
  12978. },
  12979. "suggest": {
  12980. "doctrine/annotations": "For using the annotation mapping.",
  12981. "psr/cache-implementation": "For using the metadata cache.",
  12982. "symfony/config": "For using the XML mapping loader.",
  12983. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  12984. "symfony/property-access": "For using the ObjectNormalizer.",
  12985. "symfony/property-info": "To deserialize relations.",
  12986. "symfony/yaml": "For using the default YAML mapping loader."
  12987. },
  12988. "type": "library",
  12989. "autoload": {
  12990. "psr-4": {
  12991. "Symfony\\Component\\Serializer\\": ""
  12992. },
  12993. "exclude-from-classmap": [
  12994. "/Tests/"
  12995. ]
  12996. },
  12997. "notification-url": "https://packagist.org/downloads/",
  12998. "license": [
  12999. "MIT"
  13000. ],
  13001. "authors": [
  13002. {
  13003. "name": "Fabien Potencier",
  13004. "email": "fabien@symfony.com"
  13005. },
  13006. {
  13007. "name": "Symfony Community",
  13008. "homepage": "https://symfony.com/contributors"
  13009. }
  13010. ],
  13011. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  13012. "homepage": "https://symfony.com",
  13013. "support": {
  13014. "source": "https://github.com/symfony/serializer/tree/v4.4.25"
  13015. },
  13016. "funding": [
  13017. {
  13018. "url": "https://symfony.com/sponsor",
  13019. "type": "custom"
  13020. },
  13021. {
  13022. "url": "https://github.com/fabpot",
  13023. "type": "github"
  13024. },
  13025. {
  13026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13027. "type": "tidelift"
  13028. }
  13029. ],
  13030. "time": "2021-05-26T11:20:16+00:00"
  13031. },
  13032. {
  13033. "name": "symfony/service-contracts",
  13034. "version": "v2.4.0",
  13035. "source": {
  13036. "type": "git",
  13037. "url": "https://github.com/symfony/service-contracts.git",
  13038. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  13039. },
  13040. "dist": {
  13041. "type": "zip",
  13042. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  13043. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  13044. "shasum": ""
  13045. },
  13046. "require": {
  13047. "php": ">=7.2.5",
  13048. "psr/container": "^1.1"
  13049. },
  13050. "suggest": {
  13051. "symfony/service-implementation": ""
  13052. },
  13053. "type": "library",
  13054. "extra": {
  13055. "branch-alias": {
  13056. "dev-main": "2.4-dev"
  13057. },
  13058. "thanks": {
  13059. "name": "symfony/contracts",
  13060. "url": "https://github.com/symfony/contracts"
  13061. }
  13062. },
  13063. "autoload": {
  13064. "psr-4": {
  13065. "Symfony\\Contracts\\Service\\": ""
  13066. }
  13067. },
  13068. "notification-url": "https://packagist.org/downloads/",
  13069. "license": [
  13070. "MIT"
  13071. ],
  13072. "authors": [
  13073. {
  13074. "name": "Nicolas Grekas",
  13075. "email": "p@tchwork.com"
  13076. },
  13077. {
  13078. "name": "Symfony Community",
  13079. "homepage": "https://symfony.com/contributors"
  13080. }
  13081. ],
  13082. "description": "Generic abstractions related to writing services",
  13083. "homepage": "https://symfony.com",
  13084. "keywords": [
  13085. "abstractions",
  13086. "contracts",
  13087. "decoupling",
  13088. "interfaces",
  13089. "interoperability",
  13090. "standards"
  13091. ],
  13092. "support": {
  13093. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  13094. },
  13095. "funding": [
  13096. {
  13097. "url": "https://symfony.com/sponsor",
  13098. "type": "custom"
  13099. },
  13100. {
  13101. "url": "https://github.com/fabpot",
  13102. "type": "github"
  13103. },
  13104. {
  13105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13106. "type": "tidelift"
  13107. }
  13108. ],
  13109. "time": "2021-04-01T10:43:52+00:00"
  13110. },
  13111. {
  13112. "name": "symfony/translation",
  13113. "version": "v4.4.25",
  13114. "source": {
  13115. "type": "git",
  13116. "url": "https://github.com/symfony/translation.git",
  13117. "reference": "dfe132c5c6d89f90ce7f961742cc532e9ca16dd4"
  13118. },
  13119. "dist": {
  13120. "type": "zip",
  13121. "url": "https://api.github.com/repos/symfony/translation/zipball/dfe132c5c6d89f90ce7f961742cc532e9ca16dd4",
  13122. "reference": "dfe132c5c6d89f90ce7f961742cc532e9ca16dd4",
  13123. "shasum": ""
  13124. },
  13125. "require": {
  13126. "php": ">=7.1.3",
  13127. "symfony/polyfill-mbstring": "~1.0",
  13128. "symfony/translation-contracts": "^1.1.6|^2"
  13129. },
  13130. "conflict": {
  13131. "symfony/config": "<3.4",
  13132. "symfony/dependency-injection": "<3.4",
  13133. "symfony/http-kernel": "<4.4",
  13134. "symfony/yaml": "<3.4"
  13135. },
  13136. "provide": {
  13137. "symfony/translation-implementation": "1.0|2.0"
  13138. },
  13139. "require-dev": {
  13140. "psr/log": "~1.0",
  13141. "symfony/config": "^3.4|^4.0|^5.0",
  13142. "symfony/console": "^3.4|^4.0|^5.0",
  13143. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13144. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  13145. "symfony/http-kernel": "^4.4",
  13146. "symfony/intl": "^3.4|^4.0|^5.0",
  13147. "symfony/service-contracts": "^1.1.2|^2",
  13148. "symfony/yaml": "^3.4|^4.0|^5.0"
  13149. },
  13150. "suggest": {
  13151. "psr/log-implementation": "To use logging capability in translator",
  13152. "symfony/config": "",
  13153. "symfony/yaml": ""
  13154. },
  13155. "type": "library",
  13156. "autoload": {
  13157. "psr-4": {
  13158. "Symfony\\Component\\Translation\\": ""
  13159. },
  13160. "exclude-from-classmap": [
  13161. "/Tests/"
  13162. ]
  13163. },
  13164. "notification-url": "https://packagist.org/downloads/",
  13165. "license": [
  13166. "MIT"
  13167. ],
  13168. "authors": [
  13169. {
  13170. "name": "Fabien Potencier",
  13171. "email": "fabien@symfony.com"
  13172. },
  13173. {
  13174. "name": "Symfony Community",
  13175. "homepage": "https://symfony.com/contributors"
  13176. }
  13177. ],
  13178. "description": "Provides tools to internationalize your application",
  13179. "homepage": "https://symfony.com",
  13180. "support": {
  13181. "source": "https://github.com/symfony/translation/tree/v4.4.25"
  13182. },
  13183. "funding": [
  13184. {
  13185. "url": "https://symfony.com/sponsor",
  13186. "type": "custom"
  13187. },
  13188. {
  13189. "url": "https://github.com/fabpot",
  13190. "type": "github"
  13191. },
  13192. {
  13193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13194. "type": "tidelift"
  13195. }
  13196. ],
  13197. "time": "2021-05-26T17:39:37+00:00"
  13198. },
  13199. {
  13200. "name": "symfony/translation-contracts",
  13201. "version": "v2.4.0",
  13202. "source": {
  13203. "type": "git",
  13204. "url": "https://github.com/symfony/translation-contracts.git",
  13205. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  13206. },
  13207. "dist": {
  13208. "type": "zip",
  13209. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  13210. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  13211. "shasum": ""
  13212. },
  13213. "require": {
  13214. "php": ">=7.2.5"
  13215. },
  13216. "suggest": {
  13217. "symfony/translation-implementation": ""
  13218. },
  13219. "type": "library",
  13220. "extra": {
  13221. "branch-alias": {
  13222. "dev-main": "2.4-dev"
  13223. },
  13224. "thanks": {
  13225. "name": "symfony/contracts",
  13226. "url": "https://github.com/symfony/contracts"
  13227. }
  13228. },
  13229. "autoload": {
  13230. "psr-4": {
  13231. "Symfony\\Contracts\\Translation\\": ""
  13232. }
  13233. },
  13234. "notification-url": "https://packagist.org/downloads/",
  13235. "license": [
  13236. "MIT"
  13237. ],
  13238. "authors": [
  13239. {
  13240. "name": "Nicolas Grekas",
  13241. "email": "p@tchwork.com"
  13242. },
  13243. {
  13244. "name": "Symfony Community",
  13245. "homepage": "https://symfony.com/contributors"
  13246. }
  13247. ],
  13248. "description": "Generic abstractions related to translation",
  13249. "homepage": "https://symfony.com",
  13250. "keywords": [
  13251. "abstractions",
  13252. "contracts",
  13253. "decoupling",
  13254. "interfaces",
  13255. "interoperability",
  13256. "standards"
  13257. ],
  13258. "support": {
  13259. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  13260. },
  13261. "funding": [
  13262. {
  13263. "url": "https://symfony.com/sponsor",
  13264. "type": "custom"
  13265. },
  13266. {
  13267. "url": "https://github.com/fabpot",
  13268. "type": "github"
  13269. },
  13270. {
  13271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13272. "type": "tidelift"
  13273. }
  13274. ],
  13275. "time": "2021-03-23T23:28:01+00:00"
  13276. },
  13277. {
  13278. "name": "symfony/validator",
  13279. "version": "v4.4.25",
  13280. "source": {
  13281. "type": "git",
  13282. "url": "https://github.com/symfony/validator.git",
  13283. "reference": "29c14955e8b2e7351aaa11553cb36d4a689b7b11"
  13284. },
  13285. "dist": {
  13286. "type": "zip",
  13287. "url": "https://api.github.com/repos/symfony/validator/zipball/29c14955e8b2e7351aaa11553cb36d4a689b7b11",
  13288. "reference": "29c14955e8b2e7351aaa11553cb36d4a689b7b11",
  13289. "shasum": ""
  13290. },
  13291. "require": {
  13292. "php": ">=7.1.3",
  13293. "symfony/polyfill-ctype": "~1.8",
  13294. "symfony/polyfill-mbstring": "~1.0",
  13295. "symfony/translation-contracts": "^1.1|^2"
  13296. },
  13297. "conflict": {
  13298. "doctrine/lexer": "<1.0.2",
  13299. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  13300. "symfony/dependency-injection": "<3.4",
  13301. "symfony/http-kernel": "<4.4",
  13302. "symfony/intl": "<4.3",
  13303. "symfony/translation": ">=5.0",
  13304. "symfony/yaml": "<3.4"
  13305. },
  13306. "require-dev": {
  13307. "doctrine/annotations": "^1.10.4",
  13308. "doctrine/cache": "^1.0|^2.0",
  13309. "egulias/email-validator": "^2.1.10|^3",
  13310. "symfony/cache": "^3.4|^4.0|^5.0",
  13311. "symfony/config": "^3.4|^4.0|^5.0",
  13312. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13313. "symfony/expression-language": "^3.4|^4.0|^5.0",
  13314. "symfony/http-client": "^4.3|^5.0",
  13315. "symfony/http-foundation": "^4.1|^5.0",
  13316. "symfony/http-kernel": "^4.4",
  13317. "symfony/intl": "^4.3|^5.0",
  13318. "symfony/mime": "^4.4|^5.0",
  13319. "symfony/property-access": "^3.4|^4.0|^5.0",
  13320. "symfony/property-info": "^3.4|^4.0|^5.0",
  13321. "symfony/translation": "^4.2",
  13322. "symfony/yaml": "^3.4|^4.0|^5.0"
  13323. },
  13324. "suggest": {
  13325. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  13326. "doctrine/cache": "For using the default cached annotation reader.",
  13327. "egulias/email-validator": "Strict (RFC compliant) email validation",
  13328. "psr/cache-implementation": "For using the mapping cache.",
  13329. "symfony/config": "",
  13330. "symfony/expression-language": "For using the Expression validator",
  13331. "symfony/http-foundation": "",
  13332. "symfony/intl": "",
  13333. "symfony/property-access": "For accessing properties within comparison constraints",
  13334. "symfony/property-info": "To automatically add NotNull and Type constraints",
  13335. "symfony/translation": "For translating validation errors.",
  13336. "symfony/yaml": ""
  13337. },
  13338. "type": "library",
  13339. "autoload": {
  13340. "psr-4": {
  13341. "Symfony\\Component\\Validator\\": ""
  13342. },
  13343. "exclude-from-classmap": [
  13344. "/Tests/"
  13345. ]
  13346. },
  13347. "notification-url": "https://packagist.org/downloads/",
  13348. "license": [
  13349. "MIT"
  13350. ],
  13351. "authors": [
  13352. {
  13353. "name": "Fabien Potencier",
  13354. "email": "fabien@symfony.com"
  13355. },
  13356. {
  13357. "name": "Symfony Community",
  13358. "homepage": "https://symfony.com/contributors"
  13359. }
  13360. ],
  13361. "description": "Provides tools to validate values",
  13362. "homepage": "https://symfony.com",
  13363. "support": {
  13364. "source": "https://github.com/symfony/validator/tree/v4.4.25"
  13365. },
  13366. "funding": [
  13367. {
  13368. "url": "https://symfony.com/sponsor",
  13369. "type": "custom"
  13370. },
  13371. {
  13372. "url": "https://github.com/fabpot",
  13373. "type": "github"
  13374. },
  13375. {
  13376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13377. "type": "tidelift"
  13378. }
  13379. ],
  13380. "time": "2021-05-26T17:39:37+00:00"
  13381. },
  13382. {
  13383. "name": "symfony/var-dumper",
  13384. "version": "v5.3.0",
  13385. "source": {
  13386. "type": "git",
  13387. "url": "https://github.com/symfony/var-dumper.git",
  13388. "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3"
  13389. },
  13390. "dist": {
  13391. "type": "zip",
  13392. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1d3953e627fe4b5f6df503f356b6545ada6351f3",
  13393. "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3",
  13394. "shasum": ""
  13395. },
  13396. "require": {
  13397. "php": ">=7.2.5",
  13398. "symfony/polyfill-mbstring": "~1.0",
  13399. "symfony/polyfill-php80": "^1.15"
  13400. },
  13401. "conflict": {
  13402. "phpunit/phpunit": "<5.4.3",
  13403. "symfony/console": "<4.4"
  13404. },
  13405. "require-dev": {
  13406. "ext-iconv": "*",
  13407. "symfony/console": "^4.4|^5.0",
  13408. "symfony/process": "^4.4|^5.0",
  13409. "twig/twig": "^2.13|^3.0.4"
  13410. },
  13411. "suggest": {
  13412. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  13413. "ext-intl": "To show region name in time zone dump",
  13414. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  13415. },
  13416. "bin": [
  13417. "Resources/bin/var-dump-server"
  13418. ],
  13419. "type": "library",
  13420. "autoload": {
  13421. "files": [
  13422. "Resources/functions/dump.php"
  13423. ],
  13424. "psr-4": {
  13425. "Symfony\\Component\\VarDumper\\": ""
  13426. },
  13427. "exclude-from-classmap": [
  13428. "/Tests/"
  13429. ]
  13430. },
  13431. "notification-url": "https://packagist.org/downloads/",
  13432. "license": [
  13433. "MIT"
  13434. ],
  13435. "authors": [
  13436. {
  13437. "name": "Nicolas Grekas",
  13438. "email": "p@tchwork.com"
  13439. },
  13440. {
  13441. "name": "Symfony Community",
  13442. "homepage": "https://symfony.com/contributors"
  13443. }
  13444. ],
  13445. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13446. "homepage": "https://symfony.com",
  13447. "keywords": [
  13448. "debug",
  13449. "dump"
  13450. ],
  13451. "support": {
  13452. "source": "https://github.com/symfony/var-dumper/tree/v5.3.0"
  13453. },
  13454. "funding": [
  13455. {
  13456. "url": "https://symfony.com/sponsor",
  13457. "type": "custom"
  13458. },
  13459. {
  13460. "url": "https://github.com/fabpot",
  13461. "type": "github"
  13462. },
  13463. {
  13464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13465. "type": "tidelift"
  13466. }
  13467. ],
  13468. "time": "2021-05-27T12:28:50+00:00"
  13469. },
  13470. {
  13471. "name": "symfony/yaml",
  13472. "version": "v4.4.25",
  13473. "source": {
  13474. "type": "git",
  13475. "url": "https://github.com/symfony/yaml.git",
  13476. "reference": "81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc"
  13477. },
  13478. "dist": {
  13479. "type": "zip",
  13480. "url": "https://api.github.com/repos/symfony/yaml/zipball/81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc",
  13481. "reference": "81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc",
  13482. "shasum": ""
  13483. },
  13484. "require": {
  13485. "php": ">=7.1.3",
  13486. "symfony/polyfill-ctype": "~1.8"
  13487. },
  13488. "conflict": {
  13489. "symfony/console": "<3.4"
  13490. },
  13491. "require-dev": {
  13492. "symfony/console": "^3.4|^4.0|^5.0"
  13493. },
  13494. "suggest": {
  13495. "symfony/console": "For validating YAML files using the lint command"
  13496. },
  13497. "type": "library",
  13498. "autoload": {
  13499. "psr-4": {
  13500. "Symfony\\Component\\Yaml\\": ""
  13501. },
  13502. "exclude-from-classmap": [
  13503. "/Tests/"
  13504. ]
  13505. },
  13506. "notification-url": "https://packagist.org/downloads/",
  13507. "license": [
  13508. "MIT"
  13509. ],
  13510. "authors": [
  13511. {
  13512. "name": "Fabien Potencier",
  13513. "email": "fabien@symfony.com"
  13514. },
  13515. {
  13516. "name": "Symfony Community",
  13517. "homepage": "https://symfony.com/contributors"
  13518. }
  13519. ],
  13520. "description": "Loads and dumps YAML files",
  13521. "homepage": "https://symfony.com",
  13522. "support": {
  13523. "source": "https://github.com/symfony/yaml/tree/v4.4.25"
  13524. },
  13525. "funding": [
  13526. {
  13527. "url": "https://symfony.com/sponsor",
  13528. "type": "custom"
  13529. },
  13530. {
  13531. "url": "https://github.com/fabpot",
  13532. "type": "github"
  13533. },
  13534. {
  13535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13536. "type": "tidelift"
  13537. }
  13538. ],
  13539. "time": "2021-05-26T17:39:37+00:00"
  13540. },
  13541. {
  13542. "name": "twig/twig",
  13543. "version": "v2.14.6",
  13544. "source": {
  13545. "type": "git",
  13546. "url": "https://github.com/twigphp/Twig.git",
  13547. "reference": "27e5cf2b05e3744accf39d4c68a3235d9966d260"
  13548. },
  13549. "dist": {
  13550. "type": "zip",
  13551. "url": "https://api.github.com/repos/twigphp/Twig/zipball/27e5cf2b05e3744accf39d4c68a3235d9966d260",
  13552. "reference": "27e5cf2b05e3744accf39d4c68a3235d9966d260",
  13553. "shasum": ""
  13554. },
  13555. "require": {
  13556. "php": ">=7.2.5",
  13557. "symfony/polyfill-ctype": "^1.8",
  13558. "symfony/polyfill-mbstring": "^1.3"
  13559. },
  13560. "require-dev": {
  13561. "psr/container": "^1.0",
  13562. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  13563. },
  13564. "type": "library",
  13565. "extra": {
  13566. "branch-alias": {
  13567. "dev-master": "2.14-dev"
  13568. }
  13569. },
  13570. "autoload": {
  13571. "psr-0": {
  13572. "Twig_": "lib/"
  13573. },
  13574. "psr-4": {
  13575. "Twig\\": "src/"
  13576. }
  13577. },
  13578. "notification-url": "https://packagist.org/downloads/",
  13579. "license": [
  13580. "BSD-3-Clause"
  13581. ],
  13582. "authors": [
  13583. {
  13584. "name": "Fabien Potencier",
  13585. "email": "fabien@symfony.com",
  13586. "homepage": "http://fabien.potencier.org",
  13587. "role": "Lead Developer"
  13588. },
  13589. {
  13590. "name": "Twig Team",
  13591. "role": "Contributors"
  13592. },
  13593. {
  13594. "name": "Armin Ronacher",
  13595. "email": "armin.ronacher@active-4.com",
  13596. "role": "Project Founder"
  13597. }
  13598. ],
  13599. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13600. "homepage": "https://twig.symfony.com",
  13601. "keywords": [
  13602. "templating"
  13603. ],
  13604. "support": {
  13605. "issues": "https://github.com/twigphp/Twig/issues",
  13606. "source": "https://github.com/twigphp/Twig/tree/v2.14.6"
  13607. },
  13608. "funding": [
  13609. {
  13610. "url": "https://github.com/fabpot",
  13611. "type": "github"
  13612. },
  13613. {
  13614. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13615. "type": "tidelift"
  13616. }
  13617. ],
  13618. "time": "2021-05-16T12:12:47+00:00"
  13619. },
  13620. {
  13621. "name": "typo3/phar-stream-wrapper",
  13622. "version": "v3.1.6",
  13623. "source": {
  13624. "type": "git",
  13625. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  13626. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  13627. },
  13628. "dist": {
  13629. "type": "zip",
  13630. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13631. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13632. "shasum": ""
  13633. },
  13634. "require": {
  13635. "ext-json": "*",
  13636. "php": "^7.0 || ^8.0"
  13637. },
  13638. "require-dev": {
  13639. "ext-xdebug": "*",
  13640. "phpspec/prophecy": "^1.10",
  13641. "symfony/phpunit-bridge": "^5.1"
  13642. },
  13643. "suggest": {
  13644. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  13645. },
  13646. "type": "library",
  13647. "extra": {
  13648. "branch-alias": {
  13649. "dev-master": "v3.x-dev"
  13650. }
  13651. },
  13652. "autoload": {
  13653. "psr-4": {
  13654. "TYPO3\\PharStreamWrapper\\": "src/"
  13655. }
  13656. },
  13657. "notification-url": "https://packagist.org/downloads/",
  13658. "license": [
  13659. "MIT"
  13660. ],
  13661. "description": "Interceptors for PHP's native phar:// stream handling",
  13662. "homepage": "https://typo3.org/",
  13663. "keywords": [
  13664. "phar",
  13665. "php",
  13666. "security",
  13667. "stream-wrapper"
  13668. ],
  13669. "support": {
  13670. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  13671. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.6"
  13672. },
  13673. "time": "2020-11-07T09:06:16+00:00"
  13674. },
  13675. {
  13676. "name": "webflo/drupal-finder",
  13677. "version": "1.2.2",
  13678. "source": {
  13679. "type": "git",
  13680. "url": "https://github.com/webflo/drupal-finder.git",
  13681. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  13682. },
  13683. "dist": {
  13684. "type": "zip",
  13685. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13686. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13687. "shasum": ""
  13688. },
  13689. "require": {
  13690. "ext-json": "*"
  13691. },
  13692. "require-dev": {
  13693. "mikey179/vfsstream": "^1.6",
  13694. "phpunit/phpunit": "^4.8"
  13695. },
  13696. "type": "library",
  13697. "autoload": {
  13698. "classmap": [
  13699. "src/DrupalFinder.php"
  13700. ]
  13701. },
  13702. "notification-url": "https://packagist.org/downloads/",
  13703. "license": [
  13704. "GPL-2.0-or-later"
  13705. ],
  13706. "authors": [
  13707. {
  13708. "name": "Florian Weber",
  13709. "email": "florian@webflo.org"
  13710. }
  13711. ],
  13712. "description": "Helper class to locate a Drupal installation from a given path.",
  13713. "support": {
  13714. "issues": "https://github.com/webflo/drupal-finder/issues",
  13715. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  13716. },
  13717. "time": "2020-10-27T09:42:17+00:00"
  13718. },
  13719. {
  13720. "name": "webmozart/assert",
  13721. "version": "1.10.0",
  13722. "source": {
  13723. "type": "git",
  13724. "url": "https://github.com/webmozarts/assert.git",
  13725. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  13726. },
  13727. "dist": {
  13728. "type": "zip",
  13729. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  13730. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  13731. "shasum": ""
  13732. },
  13733. "require": {
  13734. "php": "^7.2 || ^8.0",
  13735. "symfony/polyfill-ctype": "^1.8"
  13736. },
  13737. "conflict": {
  13738. "phpstan/phpstan": "<0.12.20",
  13739. "vimeo/psalm": "<4.6.1 || 4.6.2"
  13740. },
  13741. "require-dev": {
  13742. "phpunit/phpunit": "^8.5.13"
  13743. },
  13744. "type": "library",
  13745. "extra": {
  13746. "branch-alias": {
  13747. "dev-master": "1.10-dev"
  13748. }
  13749. },
  13750. "autoload": {
  13751. "psr-4": {
  13752. "Webmozart\\Assert\\": "src/"
  13753. }
  13754. },
  13755. "notification-url": "https://packagist.org/downloads/",
  13756. "license": [
  13757. "MIT"
  13758. ],
  13759. "authors": [
  13760. {
  13761. "name": "Bernhard Schussek",
  13762. "email": "bschussek@gmail.com"
  13763. }
  13764. ],
  13765. "description": "Assertions to validate method input/output with nice error messages.",
  13766. "keywords": [
  13767. "assert",
  13768. "check",
  13769. "validate"
  13770. ],
  13771. "support": {
  13772. "issues": "https://github.com/webmozarts/assert/issues",
  13773. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  13774. },
  13775. "time": "2021-03-09T10:59:23+00:00"
  13776. },
  13777. {
  13778. "name": "webmozart/path-util",
  13779. "version": "2.3.0",
  13780. "source": {
  13781. "type": "git",
  13782. "url": "https://github.com/webmozart/path-util.git",
  13783. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  13784. },
  13785. "dist": {
  13786. "type": "zip",
  13787. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13788. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13789. "shasum": ""
  13790. },
  13791. "require": {
  13792. "php": ">=5.3.3",
  13793. "webmozart/assert": "~1.0"
  13794. },
  13795. "require-dev": {
  13796. "phpunit/phpunit": "^4.6",
  13797. "sebastian/version": "^1.0.1"
  13798. },
  13799. "type": "library",
  13800. "extra": {
  13801. "branch-alias": {
  13802. "dev-master": "2.3-dev"
  13803. }
  13804. },
  13805. "autoload": {
  13806. "psr-4": {
  13807. "Webmozart\\PathUtil\\": "src/"
  13808. }
  13809. },
  13810. "notification-url": "https://packagist.org/downloads/",
  13811. "license": [
  13812. "MIT"
  13813. ],
  13814. "authors": [
  13815. {
  13816. "name": "Bernhard Schussek",
  13817. "email": "bschussek@gmail.com"
  13818. }
  13819. ],
  13820. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  13821. "support": {
  13822. "issues": "https://github.com/webmozart/path-util/issues",
  13823. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  13824. },
  13825. "time": "2015-12-17T08:42:14+00:00"
  13826. },
  13827. {
  13828. "name": "wikimedia/composer-merge-plugin",
  13829. "version": "v2.0.1",
  13830. "source": {
  13831. "type": "git",
  13832. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13833. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  13834. },
  13835. "dist": {
  13836. "type": "zip",
  13837. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13838. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13839. "shasum": ""
  13840. },
  13841. "require": {
  13842. "composer-plugin-api": "^1.1||^2.0",
  13843. "php": ">=7.2.0"
  13844. },
  13845. "require-dev": {
  13846. "composer/composer": "^1.1||^2.0",
  13847. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  13848. "phpunit/phpunit": "^8.5||^9.0",
  13849. "squizlabs/php_codesniffer": "~3.5.4"
  13850. },
  13851. "type": "composer-plugin",
  13852. "extra": {
  13853. "branch-alias": {
  13854. "dev-master": "2.x-dev"
  13855. },
  13856. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13857. },
  13858. "autoload": {
  13859. "psr-4": {
  13860. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13861. }
  13862. },
  13863. "notification-url": "https://packagist.org/downloads/",
  13864. "license": [
  13865. "MIT"
  13866. ],
  13867. "authors": [
  13868. {
  13869. "name": "Bryan Davis",
  13870. "email": "bd808@wikimedia.org"
  13871. }
  13872. ],
  13873. "description": "Composer plugin to merge multiple composer.json files",
  13874. "support": {
  13875. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13876. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1"
  13877. },
  13878. "time": "2021-02-24T05:28:06+00:00"
  13879. }
  13880. ],
  13881. "packages-dev": [],
  13882. "aliases": [],
  13883. "minimum-stability": "stable",
  13884. "stability-flags": {
  13885. "drupal/config_pages": 20,
  13886. "drupal/manage_display": 20,
  13887. "drupal/page_manager": 20,
  13888. "drupal/paragraphs": 20,
  13889. "drupal/autocomplete_deluxe": 5,
  13890. "drupal/better_exposed_filters": 10,
  13891. "drupal/bulkdelete": 20,
  13892. "drupal/cshs": 20,
  13893. "drupal/config_ignore": 5,
  13894. "drupal/config_devel": 20,
  13895. "drupal/context": 10,
  13896. "drupal/date_range_formatter": 20,
  13897. "drupal/domain": 20,
  13898. "drupal/domain_alias": 20,
  13899. "drupal/domain_config": 20,
  13900. "drupal/domain_site_settings": 20,
  13901. "drupal/email_registration": 5,
  13902. "drupal/entity_browser_enhanced": 5,
  13903. "drupal/entity_clone": 15,
  13904. "drupal/field_group": 20,
  13905. "drupal/filefield_sources": 20,
  13906. "drupal/filter_perms": 20,
  13907. "drupal/inline_entity_form": 5,
  13908. "drupal/linkit": 10,
  13909. "drupal/login_destination": 20,
  13910. "drupal/maillog": 20,
  13911. "drupal/maxlength": 10,
  13912. "drupal/menu_block": 20,
  13913. "drupal/menu_position": 20,
  13914. "drupal/path_alias_xt": 20,
  13915. "drupal/pathologic": 15,
  13916. "drupal/profile": 5,
  13917. "drupal/smtp": 10,
  13918. "drupal/synonyms": 10,
  13919. "drupal/translation_views": 15,
  13920. "drupal/ultimate_cron": 15
  13921. },
  13922. "prefer-stable": true,
  13923. "prefer-lowest": false,
  13924. "platform": [],
  13925. "platform-dev": [],
  13926. "plugin-api-version": "2.1.0"
  13927. }