composer.lock 521 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152
  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": "e8f2cca0910fab607b4b5e7940909798",
  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/formatter_suite",
  5376. "version": "1.3.0",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  5380. "reference": "8.x-1.3"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://ftp.drupal.org/files/projects/formatter_suite-8.x-1.3.zip",
  5385. "reference": "8.x-1.3",
  5386. "shasum": "ac7bd151141e4b362d02744e8ea125d7e6919af2"
  5387. },
  5388. "require": {
  5389. "drupal/core": "^8.8 || ^9"
  5390. },
  5391. "type": "drupal-module",
  5392. "extra": {
  5393. "drupal": {
  5394. "version": "8.x-1.3",
  5395. "datestamp": "1595830765",
  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": "nadeau",
  5409. "homepage": "https://www.drupal.org/user/103422"
  5410. },
  5411. {
  5412. "name": "toamit",
  5413. "homepage": "https://www.drupal.org/user/2820523"
  5414. }
  5415. ],
  5416. "description": "Field formaters to present numbers, text, links, etc.",
  5417. "homepage": "https://www.drupal.org/project/formatter_suite",
  5418. "keywords": [
  5419. "Drupal",
  5420. "Format"
  5421. ],
  5422. "support": {
  5423. "source": "http://cgit.drupalcode.org/formatter_suite",
  5424. "issues": "http://drupal.org/project/issues/formatter_suite"
  5425. }
  5426. },
  5427. {
  5428. "name": "drupal/honeypot",
  5429. "version": "2.0.1",
  5430. "source": {
  5431. "type": "git",
  5432. "url": "https://git.drupalcode.org/project/honeypot.git",
  5433. "reference": "2.0.1"
  5434. },
  5435. "dist": {
  5436. "type": "zip",
  5437. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5438. "reference": "2.0.1",
  5439. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5440. },
  5441. "require": {
  5442. "drupal/core": "^8.0 || ^9.0"
  5443. },
  5444. "type": "drupal-module",
  5445. "extra": {
  5446. "drupal": {
  5447. "version": "2.0.1",
  5448. "datestamp": "1597855128",
  5449. "security-coverage": {
  5450. "status": "covered",
  5451. "message": "Covered by Drupal's security advisory policy"
  5452. }
  5453. }
  5454. },
  5455. "notification-url": "https://packages.drupal.org/8/downloads",
  5456. "license": [
  5457. "GPL-2.0-or-later"
  5458. ],
  5459. "authors": [
  5460. {
  5461. "name": "Jeff Geerling",
  5462. "homepage": "https://www.drupal.org/user/213194",
  5463. "email": "geerlingguy@mac.com"
  5464. },
  5465. {
  5466. "name": "TR",
  5467. "homepage": "https://www.drupal.org/user/202830"
  5468. },
  5469. {
  5470. "name": "geerlingguy",
  5471. "homepage": "https://www.drupal.org/user/389011"
  5472. },
  5473. {
  5474. "name": "vijaycs85",
  5475. "homepage": "https://www.drupal.org/user/93488"
  5476. }
  5477. ],
  5478. "description": "Mitigates spam form submissions using the honeypot method.",
  5479. "homepage": "https://www.drupal.org/project/honeypot",
  5480. "keywords": [
  5481. "deterrent",
  5482. "form",
  5483. "honeypot",
  5484. "honeytrap",
  5485. "php",
  5486. "spam"
  5487. ],
  5488. "support": {
  5489. "source": "https://git.drupalcode.org/project/honeypot",
  5490. "issues": "https://www.drupal.org/project/issues/honeypot"
  5491. }
  5492. },
  5493. {
  5494. "name": "drupal/image_delta_formatter",
  5495. "version": "1.1.0",
  5496. "source": {
  5497. "type": "git",
  5498. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  5499. "reference": "8.x-1.1"
  5500. },
  5501. "dist": {
  5502. "type": "zip",
  5503. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.1.zip",
  5504. "reference": "8.x-1.1",
  5505. "shasum": "abe73ff63f3fb553e1aa0da721bfb72248f8da7f"
  5506. },
  5507. "require": {
  5508. "drupal/core": "^8 || ^9"
  5509. },
  5510. "type": "drupal-module",
  5511. "extra": {
  5512. "drupal": {
  5513. "version": "8.x-1.1",
  5514. "datestamp": "1595075220",
  5515. "security-coverage": {
  5516. "status": "covered",
  5517. "message": "Covered by Drupal's security advisory policy"
  5518. }
  5519. }
  5520. },
  5521. "notification-url": "https://packages.drupal.org/8/downloads",
  5522. "license": [
  5523. "GPL-2.0-or-later"
  5524. ],
  5525. "authors": [
  5526. {
  5527. "name": "bojanz",
  5528. "homepage": "https://www.drupal.org/user/86106"
  5529. },
  5530. {
  5531. "name": "fgm",
  5532. "homepage": "https://www.drupal.org/user/27985"
  5533. },
  5534. {
  5535. "name": "jsacksick",
  5536. "homepage": "https://www.drupal.org/user/972218"
  5537. },
  5538. {
  5539. "name": "mglaman",
  5540. "homepage": "https://www.drupal.org/user/2416470"
  5541. }
  5542. ],
  5543. "description": "Provides a formatter that displays a specific delta of a multivalue imagefield.",
  5544. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  5545. "support": {
  5546. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  5547. }
  5548. },
  5549. {
  5550. "name": "drupal/image_field_caption",
  5551. "version": "1.1.0",
  5552. "source": {
  5553. "type": "git",
  5554. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  5555. "reference": "8.x-1.1"
  5556. },
  5557. "dist": {
  5558. "type": "zip",
  5559. "url": "https://ftp.drupal.org/files/projects/image_field_caption-8.x-1.1.zip",
  5560. "reference": "8.x-1.1",
  5561. "shasum": "d4a67a81d4cd4d4fde6f342325c79862a4305a0b"
  5562. },
  5563. "require": {
  5564. "drupal/core": "^8 || ^9"
  5565. },
  5566. "type": "drupal-module",
  5567. "extra": {
  5568. "drupal": {
  5569. "version": "8.x-1.1",
  5570. "datestamp": "1602264818",
  5571. "security-coverage": {
  5572. "status": "covered",
  5573. "message": "Covered by Drupal's security advisory policy"
  5574. }
  5575. }
  5576. },
  5577. "notification-url": "https://packages.drupal.org/8/downloads",
  5578. "license": [
  5579. "GPL-2.0+"
  5580. ],
  5581. "authors": [
  5582. {
  5583. "name": "awm",
  5584. "homepage": "https://www.drupal.org/user/1059398"
  5585. },
  5586. {
  5587. "name": "hanoii",
  5588. "homepage": "https://www.drupal.org/user/23157"
  5589. },
  5590. {
  5591. "name": "iStryker",
  5592. "homepage": "https://www.drupal.org/user/303676"
  5593. },
  5594. {
  5595. "name": "ironsizide",
  5596. "homepage": "https://www.drupal.org/user/787980"
  5597. },
  5598. {
  5599. "name": "tyler.frankenstein",
  5600. "homepage": "https://www.drupal.org/user/150680"
  5601. }
  5602. ],
  5603. "description": "Add caption to image field.",
  5604. "homepage": "https://www.drupal.org/project/image_field_caption",
  5605. "support": {
  5606. "source": "https://git.drupalcode.org/project/image_field_caption",
  5607. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  5608. }
  5609. },
  5610. {
  5611. "name": "drupal/imagemagick",
  5612. "version": "3.2.0",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5616. "reference": "8.x-3.2"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.2.zip",
  5621. "reference": "8.x-3.2",
  5622. "shasum": "35346cda3bb9c989387a282dd7f7bb4da4f70fce"
  5623. },
  5624. "require": {
  5625. "drupal/core": "^8.9 || ^9.1",
  5626. "drupal/file_mdm": "^2",
  5627. "drupal/sophron": "^1",
  5628. "php": ">=7.1"
  5629. },
  5630. "type": "drupal-module",
  5631. "extra": {
  5632. "drupal": {
  5633. "version": "8.x-3.2",
  5634. "datestamp": "1622711751",
  5635. "security-coverage": {
  5636. "status": "covered",
  5637. "message": "Covered by Drupal's security advisory policy"
  5638. }
  5639. }
  5640. },
  5641. "notification-url": "https://packages.drupal.org/8/downloads",
  5642. "license": [
  5643. "GPL-2.0-or-later"
  5644. ],
  5645. "authors": [
  5646. {
  5647. "name": "Chris Charlton",
  5648. "homepage": "https://www.drupal.org/user/17089"
  5649. },
  5650. {
  5651. "name": "chx",
  5652. "homepage": "https://www.drupal.org/user/9446"
  5653. },
  5654. {
  5655. "name": "claudiu.cristea",
  5656. "homepage": "https://www.drupal.org/user/56348"
  5657. },
  5658. {
  5659. "name": "dman",
  5660. "homepage": "https://www.drupal.org/user/33240"
  5661. },
  5662. {
  5663. "name": "dopry",
  5664. "homepage": "https://www.drupal.org/user/22202"
  5665. },
  5666. {
  5667. "name": "drewish",
  5668. "homepage": "https://www.drupal.org/user/34869"
  5669. },
  5670. {
  5671. "name": "gdl",
  5672. "homepage": "https://www.drupal.org/user/507326"
  5673. },
  5674. {
  5675. "name": "mondrake",
  5676. "homepage": "https://www.drupal.org/user/1307444"
  5677. },
  5678. {
  5679. "name": "quicksketch",
  5680. "homepage": "https://www.drupal.org/user/35821"
  5681. },
  5682. {
  5683. "name": "sun",
  5684. "homepage": "https://www.drupal.org/user/54136"
  5685. },
  5686. {
  5687. "name": "walkah",
  5688. "homepage": "https://www.drupal.org/user/1531"
  5689. }
  5690. ],
  5691. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5692. "homepage": "https://www.drupal.org/project/imagemagick",
  5693. "support": {
  5694. "source": "https://git.drupalcode.org/project/imagemagick"
  5695. }
  5696. },
  5697. {
  5698. "name": "drupal/inline_entity_form",
  5699. "version": "1.0.0-rc9",
  5700. "source": {
  5701. "type": "git",
  5702. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5703. "reference": "8.x-1.0-rc9"
  5704. },
  5705. "dist": {
  5706. "type": "zip",
  5707. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc9.zip",
  5708. "reference": "8.x-1.0-rc9",
  5709. "shasum": "78953103a9c6e4e44bc877820a35f39913ea4559"
  5710. },
  5711. "require": {
  5712. "drupal/core": "^8.8 || ^9",
  5713. "php": ">=7.1"
  5714. },
  5715. "require-dev": {
  5716. "drupal/entity_reference_revisions": "^1.0"
  5717. },
  5718. "type": "drupal-module",
  5719. "extra": {
  5720. "drupal": {
  5721. "version": "8.x-1.0-rc9",
  5722. "datestamp": "1618174486",
  5723. "security-coverage": {
  5724. "status": "not-covered",
  5725. "message": "RC releases are not covered by Drupal security advisories."
  5726. }
  5727. }
  5728. },
  5729. "notification-url": "https://packages.drupal.org/8/downloads",
  5730. "license": [
  5731. "GPL-2.0-or-later"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "bojanz",
  5736. "homepage": "https://www.drupal.org/user/86106"
  5737. },
  5738. {
  5739. "name": "dawehner",
  5740. "homepage": "https://www.drupal.org/user/99340"
  5741. },
  5742. {
  5743. "name": "geek-merlin",
  5744. "homepage": "https://www.drupal.org/user/229048"
  5745. },
  5746. {
  5747. "name": "joachim",
  5748. "homepage": "https://www.drupal.org/user/107701"
  5749. },
  5750. {
  5751. "name": "jsacksick",
  5752. "homepage": "https://www.drupal.org/user/972218"
  5753. },
  5754. {
  5755. "name": "kaythay",
  5756. "homepage": "https://www.drupal.org/user/2182186"
  5757. },
  5758. {
  5759. "name": "oknate",
  5760. "homepage": "https://www.drupal.org/user/471638"
  5761. },
  5762. {
  5763. "name": "rszrama",
  5764. "homepage": "https://www.drupal.org/user/49344"
  5765. },
  5766. {
  5767. "name": "slashrsm",
  5768. "homepage": "https://www.drupal.org/user/744628"
  5769. },
  5770. {
  5771. "name": "webflo",
  5772. "homepage": "https://www.drupal.org/user/254778"
  5773. }
  5774. ],
  5775. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5776. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5777. "support": {
  5778. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5779. }
  5780. },
  5781. {
  5782. "name": "drupal/jquery_ui",
  5783. "version": "1.4.0",
  5784. "source": {
  5785. "type": "git",
  5786. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5787. "reference": "8.x-1.4"
  5788. },
  5789. "dist": {
  5790. "type": "zip",
  5791. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5792. "reference": "8.x-1.4",
  5793. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5794. },
  5795. "require": {
  5796. "drupal/core": "^8 || ^9"
  5797. },
  5798. "type": "drupal-module",
  5799. "extra": {
  5800. "drupal": {
  5801. "version": "8.x-1.4",
  5802. "datestamp": "1582149957",
  5803. "security-coverage": {
  5804. "status": "covered",
  5805. "message": "Covered by Drupal's security advisory policy"
  5806. }
  5807. }
  5808. },
  5809. "notification-url": "https://packages.drupal.org/8/downloads",
  5810. "license": [
  5811. "GPL-2.0-or-later"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "RobLoach",
  5816. "homepage": "https://www.drupal.org/user/61114"
  5817. },
  5818. {
  5819. "name": "jjeff",
  5820. "homepage": "https://www.drupal.org/user/17190"
  5821. },
  5822. {
  5823. "name": "lauriii",
  5824. "homepage": "https://www.drupal.org/user/1078742"
  5825. },
  5826. {
  5827. "name": "litwol",
  5828. "homepage": "https://www.drupal.org/user/78134"
  5829. },
  5830. {
  5831. "name": "mfb",
  5832. "homepage": "https://www.drupal.org/user/12302"
  5833. },
  5834. {
  5835. "name": "mfer",
  5836. "homepage": "https://www.drupal.org/user/25701"
  5837. },
  5838. {
  5839. "name": "mikelutz",
  5840. "homepage": "https://www.drupal.org/user/2972409"
  5841. },
  5842. {
  5843. "name": "sun",
  5844. "homepage": "https://www.drupal.org/user/54136"
  5845. },
  5846. {
  5847. "name": "webchick",
  5848. "homepage": "https://www.drupal.org/user/24967"
  5849. },
  5850. {
  5851. "name": "zrpnr",
  5852. "homepage": "https://www.drupal.org/user/1448368"
  5853. }
  5854. ],
  5855. "description": "Provides jQuery UI library.",
  5856. "homepage": "https://www.drupal.org/project/jquery_ui",
  5857. "support": {
  5858. "source": "https://git.drupalcode.org/project/jquery_ui"
  5859. }
  5860. },
  5861. {
  5862. "name": "drupal/jquery_ui_button",
  5863. "version": "1.1.0",
  5864. "source": {
  5865. "type": "git",
  5866. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5867. "reference": "8.x-1.1"
  5868. },
  5869. "dist": {
  5870. "type": "zip",
  5871. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5872. "reference": "8.x-1.1",
  5873. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5874. },
  5875. "require": {
  5876. "drupal/core": "^8 || ^9",
  5877. "drupal/jquery_ui": "*",
  5878. "drupal/jquery_ui_checkboxradio": "*",
  5879. "drupal/jquery_ui_controlgroup": "*"
  5880. },
  5881. "type": "drupal-module",
  5882. "extra": {
  5883. "drupal": {
  5884. "version": "8.x-1.1",
  5885. "datestamp": "1584106807",
  5886. "security-coverage": {
  5887. "status": "covered",
  5888. "message": "Covered by Drupal's security advisory policy"
  5889. }
  5890. }
  5891. },
  5892. "notification-url": "https://packages.drupal.org/8/downloads",
  5893. "license": [
  5894. "GPL-2.0-or-later"
  5895. ],
  5896. "authors": [
  5897. {
  5898. "name": "bnjmnm",
  5899. "homepage": "https://www.drupal.org/user/2369194"
  5900. },
  5901. {
  5902. "name": "lauriii",
  5903. "homepage": "https://www.drupal.org/user/1078742"
  5904. },
  5905. {
  5906. "name": "zrpnr",
  5907. "homepage": "https://www.drupal.org/user/1448368"
  5908. }
  5909. ],
  5910. "description": "Provides jQuery UI Button library.",
  5911. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5912. "support": {
  5913. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5914. }
  5915. },
  5916. {
  5917. "name": "drupal/jquery_ui_checkboxradio",
  5918. "version": "1.2.0",
  5919. "source": {
  5920. "type": "git",
  5921. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5922. "reference": "8.x-1.2"
  5923. },
  5924. "dist": {
  5925. "type": "zip",
  5926. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5927. "reference": "8.x-1.2",
  5928. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5929. },
  5930. "require": {
  5931. "drupal/core": "^8 || ^9",
  5932. "drupal/jquery_ui": "*"
  5933. },
  5934. "type": "drupal-module",
  5935. "extra": {
  5936. "drupal": {
  5937. "version": "8.x-1.2",
  5938. "datestamp": "1584106406",
  5939. "security-coverage": {
  5940. "status": "covered",
  5941. "message": "Covered by Drupal's security advisory policy"
  5942. }
  5943. }
  5944. },
  5945. "notification-url": "https://packages.drupal.org/8/downloads",
  5946. "license": [
  5947. "GPL-2.0-or-later"
  5948. ],
  5949. "authors": [
  5950. {
  5951. "name": "bnjmnm",
  5952. "homepage": "https://www.drupal.org/user/2369194"
  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 Checkboxradio library.",
  5964. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5965. "support": {
  5966. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5967. }
  5968. },
  5969. {
  5970. "name": "drupal/jquery_ui_controlgroup",
  5971. "version": "1.1.0",
  5972. "source": {
  5973. "type": "git",
  5974. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5975. "reference": "8.x-1.1"
  5976. },
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5980. "reference": "8.x-1.1",
  5981. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  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.1",
  5991. "datestamp": "1584106616",
  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 Controlgroup library.",
  6017. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  6018. "support": {
  6019. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  6020. }
  6021. },
  6022. {
  6023. "name": "drupal/jquery_ui_datepicker",
  6024. "version": "1.1.0",
  6025. "source": {
  6026. "type": "git",
  6027. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  6028. "reference": "8.x-1.1"
  6029. },
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.1.zip",
  6033. "reference": "8.x-1.1",
  6034. "shasum": "69f62467f846bb514a10fa93f4c3b34c6275353f"
  6035. },
  6036. "require": {
  6037. "drupal/core": "^8 || ^9",
  6038. "drupal/jquery_ui": "*"
  6039. },
  6040. "type": "drupal-module",
  6041. "extra": {
  6042. "drupal": {
  6043. "version": "8.x-1.1",
  6044. "datestamp": "1615962535",
  6045. "security-coverage": {
  6046. "status": "covered",
  6047. "message": "Covered by Drupal's security advisory policy"
  6048. }
  6049. }
  6050. },
  6051. "notification-url": "https://packages.drupal.org/8/downloads",
  6052. "license": [
  6053. "GPL-2.0-or-later"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "bnjmnm",
  6058. "homepage": "https://www.drupal.org/user/2369194"
  6059. },
  6060. {
  6061. "name": "ivnish",
  6062. "homepage": "https://www.drupal.org/user/3547706"
  6063. },
  6064. {
  6065. "name": "jrockowitz",
  6066. "homepage": "https://www.drupal.org/user/371407"
  6067. },
  6068. {
  6069. "name": "lauriii",
  6070. "homepage": "https://www.drupal.org/user/1078742"
  6071. },
  6072. {
  6073. "name": "zrpnr",
  6074. "homepage": "https://www.drupal.org/user/1448368"
  6075. }
  6076. ],
  6077. "description": "Provides jQuery UI Datepicker library.",
  6078. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  6079. "support": {
  6080. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  6081. }
  6082. },
  6083. {
  6084. "name": "drupal/jquery_ui_draggable",
  6085. "version": "1.2.0",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  6089. "reference": "8.x-1.2"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  6094. "reference": "8.x-1.2",
  6095. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  6096. },
  6097. "require": {
  6098. "drupal/core": "^8 || ^9",
  6099. "drupal/jquery_ui": "*"
  6100. },
  6101. "type": "drupal-module",
  6102. "extra": {
  6103. "drupal": {
  6104. "version": "8.x-1.2",
  6105. "datestamp": "1582150027",
  6106. "security-coverage": {
  6107. "status": "covered",
  6108. "message": "Covered by Drupal's security advisory policy"
  6109. }
  6110. }
  6111. },
  6112. "notification-url": "https://packages.drupal.org/8/downloads",
  6113. "license": [
  6114. "GPL-2.0-or-later"
  6115. ],
  6116. "authors": [
  6117. {
  6118. "name": "bnjmnm",
  6119. "homepage": "https://www.drupal.org/user/2369194"
  6120. },
  6121. {
  6122. "name": "lauriii",
  6123. "homepage": "https://www.drupal.org/user/1078742"
  6124. },
  6125. {
  6126. "name": "zrpnr",
  6127. "homepage": "https://www.drupal.org/user/1448368"
  6128. }
  6129. ],
  6130. "description": "Provides jQuery UI Draggable library.",
  6131. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  6132. "support": {
  6133. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  6134. }
  6135. },
  6136. {
  6137. "name": "drupal/jquery_ui_droppable",
  6138. "version": "1.2.0",
  6139. "source": {
  6140. "type": "git",
  6141. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  6142. "reference": "8.x-1.2"
  6143. },
  6144. "dist": {
  6145. "type": "zip",
  6146. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  6147. "reference": "8.x-1.2",
  6148. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  6149. },
  6150. "require": {
  6151. "drupal/core": "^8 || ^9",
  6152. "drupal/jquery_ui": "*",
  6153. "drupal/jquery_ui_draggable": "*"
  6154. },
  6155. "type": "drupal-module",
  6156. "extra": {
  6157. "drupal": {
  6158. "version": "8.x-1.2",
  6159. "datestamp": "1582150071",
  6160. "security-coverage": {
  6161. "status": "covered",
  6162. "message": "Covered by Drupal's security advisory policy"
  6163. }
  6164. }
  6165. },
  6166. "notification-url": "https://packages.drupal.org/8/downloads",
  6167. "license": [
  6168. "GPL-2.0-or-later"
  6169. ],
  6170. "authors": [
  6171. {
  6172. "name": "bnjmnm",
  6173. "homepage": "https://www.drupal.org/user/2369194"
  6174. },
  6175. {
  6176. "name": "lauriii",
  6177. "homepage": "https://www.drupal.org/user/1078742"
  6178. },
  6179. {
  6180. "name": "zrpnr",
  6181. "homepage": "https://www.drupal.org/user/1448368"
  6182. }
  6183. ],
  6184. "description": "Provides jQuery UI Droppable library.",
  6185. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  6186. "support": {
  6187. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  6188. }
  6189. },
  6190. {
  6191. "name": "drupal/jquery_ui_slider",
  6192. "version": "1.1.0",
  6193. "source": {
  6194. "type": "git",
  6195. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  6196. "reference": "8.x-1.1"
  6197. },
  6198. "dist": {
  6199. "type": "zip",
  6200. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  6201. "reference": "8.x-1.1",
  6202. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  6203. },
  6204. "require": {
  6205. "drupal/core": "^8 || ^9",
  6206. "drupal/jquery_ui": "*"
  6207. },
  6208. "type": "drupal-module",
  6209. "extra": {
  6210. "drupal": {
  6211. "version": "8.x-1.1",
  6212. "datestamp": "1584107817",
  6213. "security-coverage": {
  6214. "status": "covered",
  6215. "message": "Covered by Drupal's security advisory policy"
  6216. }
  6217. }
  6218. },
  6219. "notification-url": "https://packages.drupal.org/8/downloads",
  6220. "license": [
  6221. "GPL-2.0-or-later"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "bnjmnm",
  6226. "homepage": "https://www.drupal.org/user/2369194"
  6227. },
  6228. {
  6229. "name": "lauriii",
  6230. "homepage": "https://www.drupal.org/user/1078742"
  6231. },
  6232. {
  6233. "name": "zrpnr",
  6234. "homepage": "https://www.drupal.org/user/1448368"
  6235. }
  6236. ],
  6237. "description": "Provides jQuery UI Slider library.",
  6238. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  6239. "support": {
  6240. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  6241. }
  6242. },
  6243. {
  6244. "name": "drupal/jquery_ui_touch_punch",
  6245. "version": "1.0.0",
  6246. "source": {
  6247. "type": "git",
  6248. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  6249. "reference": "1.0.0"
  6250. },
  6251. "dist": {
  6252. "type": "zip",
  6253. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  6254. "reference": "1.0.0",
  6255. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  6256. },
  6257. "require": {
  6258. "drupal/core": "^8 || ^9",
  6259. "drupal/jquery_ui": "^1.0"
  6260. },
  6261. "suggest": {
  6262. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  6263. },
  6264. "type": "drupal-module",
  6265. "extra": {
  6266. "drupal": {
  6267. "version": "1.0.0",
  6268. "datestamp": "1591893292",
  6269. "security-coverage": {
  6270. "status": "not-covered",
  6271. "message": "Project has not opted into security advisory coverage!"
  6272. }
  6273. }
  6274. },
  6275. "notification-url": "https://packages.drupal.org/8/downloads",
  6276. "license": [
  6277. "GPL-2.0+"
  6278. ],
  6279. "authors": [
  6280. {
  6281. "name": "Naveen Valecha",
  6282. "homepage": "https://drupal.org/u/naveenvalecha",
  6283. "role": "Maintainer"
  6284. }
  6285. ],
  6286. "description": "Provides jQuery UI Touch Punch library.",
  6287. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6288. "keywords": [
  6289. "Drupal",
  6290. "jquery_ui_touch_punch"
  6291. ],
  6292. "support": {
  6293. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6294. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  6295. "irc": "irc://irc.freenode.org/drupal-contribute"
  6296. }
  6297. },
  6298. {
  6299. "name": "drupal/link_attributes",
  6300. "version": "1.11.0",
  6301. "source": {
  6302. "type": "git",
  6303. "url": "https://git.drupalcode.org/project/link_attributes.git",
  6304. "reference": "8.x-1.11"
  6305. },
  6306. "dist": {
  6307. "type": "zip",
  6308. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  6309. "reference": "8.x-1.11",
  6310. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  6311. },
  6312. "require": {
  6313. "drupal/core": "^8 || ^9"
  6314. },
  6315. "type": "drupal-module",
  6316. "extra": {
  6317. "drupal": {
  6318. "version": "8.x-1.11",
  6319. "datestamp": "1598323550",
  6320. "security-coverage": {
  6321. "status": "covered",
  6322. "message": "Covered by Drupal's security advisory policy"
  6323. }
  6324. }
  6325. },
  6326. "notification-url": "https://packages.drupal.org/8/downloads",
  6327. "license": [
  6328. "GPL-2.0-or-later"
  6329. ],
  6330. "authors": [
  6331. {
  6332. "name": "larowlan",
  6333. "homepage": "https://www.drupal.org/user/395439"
  6334. }
  6335. ],
  6336. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6337. "homepage": "https://www.drupal.org/project/link_attributes",
  6338. "support": {
  6339. "source": "https://git.drupalcode.org/project/link_attributes"
  6340. }
  6341. },
  6342. {
  6343. "name": "drupal/linked_field",
  6344. "version": "1.3.0",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://git.drupalcode.org/project/linked_field.git",
  6348. "reference": "8.x-1.3"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.3.zip",
  6353. "reference": "8.x-1.3",
  6354. "shasum": "0350c415eba6ff63d9fc8f3a162564dd4c2142e2"
  6355. },
  6356. "require": {
  6357. "drupal/core": "^8 || ^9"
  6358. },
  6359. "type": "drupal-module",
  6360. "extra": {
  6361. "drupal": {
  6362. "version": "8.x-1.3",
  6363. "datestamp": "1583855735",
  6364. "security-coverage": {
  6365. "status": "covered",
  6366. "message": "Covered by Drupal's security advisory policy"
  6367. }
  6368. }
  6369. },
  6370. "notification-url": "https://packages.drupal.org/8/downloads",
  6371. "license": [
  6372. "GPL-2.0-or-later"
  6373. ],
  6374. "authors": [
  6375. {
  6376. "name": "hubdrop",
  6377. "homepage": "https://www.drupal.org/user/2750597"
  6378. },
  6379. {
  6380. "name": "yannickoo",
  6381. "homepage": "https://www.drupal.org/user/531118"
  6382. }
  6383. ],
  6384. "description": "Adds the functionality to link fields to a specific destination.",
  6385. "homepage": "https://www.drupal.org/project/linked_field",
  6386. "support": {
  6387. "source": "https://git.drupalcode.org/project/linked_field"
  6388. }
  6389. },
  6390. {
  6391. "name": "drupal/linkit",
  6392. "version": "5.0.0-beta13",
  6393. "source": {
  6394. "type": "git",
  6395. "url": "https://git.drupalcode.org/project/linkit.git",
  6396. "reference": "8.x-5.0-beta13"
  6397. },
  6398. "dist": {
  6399. "type": "zip",
  6400. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta13.zip",
  6401. "reference": "8.x-5.0-beta13",
  6402. "shasum": "9215fbea84166cabc9b7a2d9a04dedaffb9fc1ed"
  6403. },
  6404. "require": {
  6405. "drupal/core": "^8.7.7 || ^9"
  6406. },
  6407. "require-dev": {
  6408. "drupal/imce": "*"
  6409. },
  6410. "type": "drupal-module",
  6411. "extra": {
  6412. "drupal": {
  6413. "version": "8.x-5.0-beta13",
  6414. "datestamp": "1632933670",
  6415. "security-coverage": {
  6416. "status": "not-covered",
  6417. "message": "Beta releases are not covered by Drupal security advisories."
  6418. }
  6419. }
  6420. },
  6421. "notification-url": "https://packages.drupal.org/8/downloads",
  6422. "license": [
  6423. "GPL-2.0-or-later"
  6424. ],
  6425. "authors": [
  6426. {
  6427. "name": "Emil Stjerneman",
  6428. "homepage": "https://stjerneman.com",
  6429. "email": "emil@stjerneman.com",
  6430. "role": "Maintainer"
  6431. },
  6432. {
  6433. "name": "johnwebdev",
  6434. "homepage": "https://www.drupal.org/user/3331569"
  6435. }
  6436. ],
  6437. "description": "Linkit - Enriched linking experience",
  6438. "homepage": "http://drupal.org/project/linkit",
  6439. "support": {
  6440. "source": "http://cgit.drupalcode.org/linkit",
  6441. "issues": "http://drupal.org/project/linkit"
  6442. }
  6443. },
  6444. {
  6445. "name": "drupal/login_destination",
  6446. "version": "dev-2.x",
  6447. "source": {
  6448. "type": "git",
  6449. "url": "https://git.drupalcode.org/project/login_destination.git",
  6450. "reference": "bb4d8e7b31589d53fb0e6aeaa86dd35870479c63"
  6451. },
  6452. "require": {
  6453. "drupal/core": "^8.7.10 || ^9"
  6454. },
  6455. "require-dev": {
  6456. "drupal/admin_toolbar": "^1.23",
  6457. "drupal/admin_toolbar_tools": "*"
  6458. },
  6459. "type": "drupal-module",
  6460. "extra": {
  6461. "branch-alias": {
  6462. "dev-2.x": "2.x-dev"
  6463. },
  6464. "drupal": {
  6465. "version": "8.x-2.0-alpha3+8-dev",
  6466. "datestamp": "1603450565",
  6467. "security-coverage": {
  6468. "status": "not-covered",
  6469. "message": "Dev releases are not covered by Drupal security advisories."
  6470. }
  6471. }
  6472. },
  6473. "notification-url": "https://packages.drupal.org/8/downloads",
  6474. "license": [
  6475. "GPL-2.0-or-later"
  6476. ],
  6477. "authors": [
  6478. {
  6479. "name": "rsvelko",
  6480. "homepage": "https://www.drupal.org/u/rsvelko",
  6481. "role": "Creator, Maintainer"
  6482. },
  6483. {
  6484. "name": "Other Contributors",
  6485. "homepage": "https://www.drupal.org/node/69051/committers",
  6486. "role": "Contributors"
  6487. },
  6488. {
  6489. "name": "beautifulmind",
  6490. "homepage": "https://www.drupal.org/user/219482"
  6491. },
  6492. {
  6493. "name": "ddrozdik",
  6494. "homepage": "https://www.drupal.org/user/574124"
  6495. },
  6496. {
  6497. "name": "jng12",
  6498. "homepage": "https://www.drupal.org/user/204316"
  6499. },
  6500. {
  6501. "name": "marcp",
  6502. "homepage": "https://www.drupal.org/user/20885"
  6503. },
  6504. {
  6505. "name": "mithy",
  6506. "homepage": "https://www.drupal.org/user/258911"
  6507. },
  6508. {
  6509. "name": "moshe weitzman",
  6510. "homepage": "https://www.drupal.org/user/23"
  6511. },
  6512. {
  6513. "name": "perennial.sky",
  6514. "homepage": "https://www.drupal.org/user/2622667"
  6515. },
  6516. {
  6517. "name": "rsvelko",
  6518. "homepage": "https://www.drupal.org/user/337401"
  6519. }
  6520. ],
  6521. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  6522. "homepage": "https://drupal.org/project/login_destination",
  6523. "support": {
  6524. "source": "https://git.drupalcode.org/project/login_destination",
  6525. "issues": "https://drupal.org/project/issues/login_destination"
  6526. }
  6527. },
  6528. {
  6529. "name": "drupal/maillog",
  6530. "version": "dev-1.x",
  6531. "source": {
  6532. "type": "git",
  6533. "url": "https://git.drupalcode.org/project/maillog.git",
  6534. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6535. },
  6536. "require": {
  6537. "drupal/core": "^8 || ^9"
  6538. },
  6539. "type": "drupal-module",
  6540. "extra": {
  6541. "branch-alias": {
  6542. "dev-1.x": "1.x-dev"
  6543. },
  6544. "drupal": {
  6545. "version": "8.x-1.0-beta1+0-dev",
  6546. "datestamp": "1600799873",
  6547. "security-coverage": {
  6548. "status": "not-covered",
  6549. "message": "Dev releases are not covered by Drupal security advisories."
  6550. }
  6551. }
  6552. },
  6553. "notification-url": "https://packages.drupal.org/8/downloads",
  6554. "license": [
  6555. "GPL-2.0-or-later"
  6556. ],
  6557. "authors": [
  6558. {
  6559. "name": "Berdir",
  6560. "homepage": "https://www.drupal.org/user/214652"
  6561. },
  6562. {
  6563. "name": "DamienMcKenna",
  6564. "homepage": "https://www.drupal.org/user/108450"
  6565. },
  6566. {
  6567. "name": "miro_dietiker",
  6568. "homepage": "https://www.drupal.org/user/227761"
  6569. },
  6570. {
  6571. "name": "pluess",
  6572. "homepage": "https://www.drupal.org/user/84659"
  6573. }
  6574. ],
  6575. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6576. "homepage": "https://www.drupal.org/project/maillog",
  6577. "support": {
  6578. "source": "https://git.drupalcode.org/project/maillog"
  6579. }
  6580. },
  6581. {
  6582. "name": "drupal/mailsystem",
  6583. "version": "4.3.0",
  6584. "source": {
  6585. "type": "git",
  6586. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6587. "reference": "8.x-4.3"
  6588. },
  6589. "dist": {
  6590. "type": "zip",
  6591. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6592. "reference": "8.x-4.3",
  6593. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6594. },
  6595. "require": {
  6596. "drupal/core": "^8.7.7 || ^9"
  6597. },
  6598. "type": "drupal-module",
  6599. "extra": {
  6600. "drupal": {
  6601. "version": "8.x-4.3",
  6602. "datestamp": "1586203024",
  6603. "security-coverage": {
  6604. "status": "covered",
  6605. "message": "Covered by Drupal's security advisory policy"
  6606. }
  6607. }
  6608. },
  6609. "notification-url": "https://packages.drupal.org/8/downloads",
  6610. "license": [
  6611. "GPL-2.0+"
  6612. ],
  6613. "authors": [
  6614. {
  6615. "name": "Berdir",
  6616. "homepage": "https://www.drupal.org/user/214652"
  6617. },
  6618. {
  6619. "name": "Les Lim",
  6620. "homepage": "https://www.drupal.org/user/84263"
  6621. },
  6622. {
  6623. "name": "Manuel Garcia",
  6624. "homepage": "https://www.drupal.org/user/213194"
  6625. },
  6626. {
  6627. "name": "Nafes",
  6628. "homepage": "https://www.drupal.org/user/2489926"
  6629. },
  6630. {
  6631. "name": "miro_dietiker",
  6632. "homepage": "https://www.drupal.org/user/227761"
  6633. },
  6634. {
  6635. "name": "pillarsdotnet",
  6636. "homepage": "https://www.drupal.org/user/36148"
  6637. }
  6638. ],
  6639. "description": "Mail System",
  6640. "homepage": "https://www.drupal.org/project/mailsystem",
  6641. "support": {
  6642. "source": "https://git.drupalcode.org/project/mailsystem"
  6643. }
  6644. },
  6645. {
  6646. "name": "drupal/manage_display",
  6647. "version": "dev-1.x",
  6648. "source": {
  6649. "type": "git",
  6650. "url": "https://git.drupalcode.org/project/manage_display.git",
  6651. "reference": "af9400e489138db5fc528178b0eace829285dee5"
  6652. },
  6653. "require": {
  6654. "drupal/core": "^8.8 || ^9"
  6655. },
  6656. "type": "drupal-module",
  6657. "extra": {
  6658. "branch-alias": {
  6659. "dev-1.x": "1.x-dev"
  6660. },
  6661. "drupal": {
  6662. "version": "8.x-1.0-beta2+2-dev",
  6663. "datestamp": "1630511503",
  6664. "security-coverage": {
  6665. "status": "not-covered",
  6666. "message": "Project has not opted into security advisory coverage!"
  6667. }
  6668. }
  6669. },
  6670. "notification-url": "https://packages.drupal.org/8/downloads",
  6671. "license": [
  6672. "GPL-2.0-or-later"
  6673. ],
  6674. "authors": [
  6675. {
  6676. "name": "AdamPS",
  6677. "homepage": "https://www.drupal.org/user/2650563"
  6678. }
  6679. ],
  6680. "description": "Make base fields such as 'title' available in \"Manage Display\"",
  6681. "homepage": "https://www.drupal.org/project/manage_display",
  6682. "support": {
  6683. "source": "https://git.drupalcode.org/project/manage_display"
  6684. }
  6685. },
  6686. {
  6687. "name": "drupal/matomo",
  6688. "version": "1.13.0",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://git.drupalcode.org/project/matomo.git",
  6692. "reference": "8.x-1.13"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.13.zip",
  6697. "reference": "8.x-1.13",
  6698. "shasum": "a3abacb383a349aeb9bfa271dd9294182ef16036"
  6699. },
  6700. "require": {
  6701. "drupal/core": "^8.8.0 || ^9.0.0"
  6702. },
  6703. "conflict": {
  6704. "drupal/csp": "<1.12"
  6705. },
  6706. "require-dev": {
  6707. "drupal/csp": "~1.12",
  6708. "drupal/php": "~1.1",
  6709. "drupal/token": "~1.9"
  6710. },
  6711. "type": "drupal-module",
  6712. "extra": {
  6713. "drupal": {
  6714. "version": "8.x-1.13",
  6715. "datestamp": "1635192471",
  6716. "security-coverage": {
  6717. "status": "covered",
  6718. "message": "Covered by Drupal's security advisory policy"
  6719. }
  6720. }
  6721. },
  6722. "notification-url": "https://packages.drupal.org/8/downloads",
  6723. "license": [
  6724. "GPL-2.0-or-later"
  6725. ],
  6726. "authors": [
  6727. {
  6728. "name": "C-Logemann",
  6729. "homepage": "https://www.drupal.org/user/218368"
  6730. },
  6731. {
  6732. "name": "Grimreaper",
  6733. "homepage": "https://www.drupal.org/user/2388214"
  6734. },
  6735. {
  6736. "name": "hass",
  6737. "homepage": "https://www.drupal.org/user/85918"
  6738. },
  6739. {
  6740. "name": "shelane",
  6741. "homepage": "https://www.drupal.org/user/2674989"
  6742. }
  6743. ],
  6744. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  6745. "homepage": "https://www.drupal.org/project/matomo",
  6746. "support": {
  6747. "source": "https://git.drupalcode.org/project/matomo"
  6748. }
  6749. },
  6750. {
  6751. "name": "drupal/maxlength",
  6752. "version": "1.0.0-rc1",
  6753. "source": {
  6754. "type": "git",
  6755. "url": "https://git.drupalcode.org/project/maxlength.git",
  6756. "reference": "8.x-1.0-rc1"
  6757. },
  6758. "dist": {
  6759. "type": "zip",
  6760. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6761. "reference": "8.x-1.0-rc1",
  6762. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6763. },
  6764. "require": {
  6765. "drupal/core": "^8.8 || ^9"
  6766. },
  6767. "type": "drupal-module",
  6768. "extra": {
  6769. "drupal": {
  6770. "version": "8.x-1.0-rc1",
  6771. "datestamp": "1593198218",
  6772. "security-coverage": {
  6773. "status": "not-covered",
  6774. "message": "RC releases are not covered by Drupal security advisories."
  6775. }
  6776. }
  6777. },
  6778. "notification-url": "https://packages.drupal.org/8/downloads",
  6779. "license": [
  6780. "GPL-2.0-or-later"
  6781. ],
  6782. "authors": [
  6783. {
  6784. "name": "cedewey",
  6785. "homepage": "https://www.drupal.org/user/38694"
  6786. },
  6787. {
  6788. "name": "dawehner",
  6789. "homepage": "https://www.drupal.org/user/99340"
  6790. },
  6791. {
  6792. "name": "hipp2bsquare",
  6793. "homepage": "https://www.drupal.org/user/2473076"
  6794. },
  6795. {
  6796. "name": "mariuss",
  6797. "homepage": "https://www.drupal.org/user/28539"
  6798. },
  6799. {
  6800. "name": "pmichelazzo",
  6801. "homepage": "https://www.drupal.org/user/182237"
  6802. },
  6803. {
  6804. "name": "srdtwc",
  6805. "homepage": "https://www.drupal.org/user/3422763"
  6806. }
  6807. ],
  6808. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6809. "homepage": "https://www.drupal.org/project/maxlength",
  6810. "support": {
  6811. "source": "https://git.drupalcode.org/project/maxlength"
  6812. }
  6813. },
  6814. {
  6815. "name": "drupal/menu_admin_per_menu",
  6816. "version": "1.3.0",
  6817. "source": {
  6818. "type": "git",
  6819. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6820. "reference": "8.x-1.3"
  6821. },
  6822. "dist": {
  6823. "type": "zip",
  6824. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6825. "reference": "8.x-1.3",
  6826. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6827. },
  6828. "require": {
  6829. "drupal/core": "^8 || ^9"
  6830. },
  6831. "type": "drupal-module",
  6832. "extra": {
  6833. "drupal": {
  6834. "version": "8.x-1.3",
  6835. "datestamp": "1593436060",
  6836. "security-coverage": {
  6837. "status": "covered",
  6838. "message": "Covered by Drupal's security advisory policy"
  6839. }
  6840. }
  6841. },
  6842. "notification-url": "https://packages.drupal.org/8/downloads",
  6843. "license": [
  6844. "GPL-2.0-or-later"
  6845. ],
  6846. "authors": [
  6847. {
  6848. "name": "JeroenT",
  6849. "homepage": "https://www.drupal.org/user/2228934"
  6850. },
  6851. {
  6852. "name": "anrikun",
  6853. "homepage": "https://www.drupal.org/user/410199"
  6854. },
  6855. {
  6856. "name": "jonas139",
  6857. "homepage": "https://www.drupal.org/user/2873401"
  6858. },
  6859. {
  6860. "name": "mkdok",
  6861. "homepage": "https://www.drupal.org/user/3308753"
  6862. }
  6863. ],
  6864. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6865. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6866. "support": {
  6867. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6868. }
  6869. },
  6870. {
  6871. "name": "drupal/menu_block",
  6872. "version": "dev-1.x",
  6873. "source": {
  6874. "type": "git",
  6875. "url": "https://git.drupalcode.org/project/menu_block.git",
  6876. "reference": "17bc5a2094dec85a921fdac6aff0030bfe004744"
  6877. },
  6878. "require": {
  6879. "drupal/core": "^8 || ^9"
  6880. },
  6881. "type": "drupal-module",
  6882. "extra": {
  6883. "branch-alias": {
  6884. "dev-1.x": "1.x-dev"
  6885. },
  6886. "drupal": {
  6887. "version": "8.x-1.6+9-dev",
  6888. "datestamp": "1612055345",
  6889. "security-coverage": {
  6890. "status": "not-covered",
  6891. "message": "Dev releases are not covered by Drupal security advisories."
  6892. }
  6893. }
  6894. },
  6895. "notification-url": "https://packages.drupal.org/8/downloads",
  6896. "license": [
  6897. "GPL-2.0-or-later"
  6898. ],
  6899. "authors": [
  6900. {
  6901. "name": "Dave Reid",
  6902. "homepage": "https://www.drupal.org/user/53892"
  6903. },
  6904. {
  6905. "name": "JohnAlbin",
  6906. "homepage": "https://www.drupal.org/user/32095"
  6907. },
  6908. {
  6909. "name": "RenatoG",
  6910. "homepage": "https://www.drupal.org/user/3326031"
  6911. },
  6912. {
  6913. "name": "joelpittet",
  6914. "homepage": "https://www.drupal.org/user/160302"
  6915. },
  6916. {
  6917. "name": "kim.pepper",
  6918. "homepage": "https://www.drupal.org/user/370574"
  6919. },
  6920. {
  6921. "name": "rrrob",
  6922. "homepage": "https://www.drupal.org/user/273533"
  6923. }
  6924. ],
  6925. "description": "Provides configurable blocks of menu links.",
  6926. "homepage": "https://www.drupal.org/project/menu_block",
  6927. "support": {
  6928. "source": "https://git.drupalcode.org/project/menu_block"
  6929. }
  6930. },
  6931. {
  6932. "name": "drupal/menu_position",
  6933. "version": "dev-1.x",
  6934. "source": {
  6935. "type": "git",
  6936. "url": "https://git.drupalcode.org/project/menu_position.git",
  6937. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6938. },
  6939. "require": {
  6940. "drupal/core": "^8 || ^9"
  6941. },
  6942. "type": "drupal-module",
  6943. "extra": {
  6944. "branch-alias": {
  6945. "dev-1.x": "1.x-dev"
  6946. },
  6947. "drupal": {
  6948. "version": "8.x-1.0-alpha4+4-dev",
  6949. "datestamp": "1587797468",
  6950. "security-coverage": {
  6951. "status": "not-covered",
  6952. "message": "Dev releases are not covered by Drupal security advisories."
  6953. }
  6954. }
  6955. },
  6956. "notification-url": "https://packages.drupal.org/8/downloads",
  6957. "license": [
  6958. "GPL-2.0+"
  6959. ],
  6960. "authors": [
  6961. {
  6962. "name": "BarisW",
  6963. "homepage": "https://www.drupal.org/user/107229"
  6964. },
  6965. {
  6966. "name": "JohnAlbin",
  6967. "homepage": "https://www.drupal.org/user/32095"
  6968. },
  6969. {
  6970. "name": "Sutharsan",
  6971. "homepage": "https://www.drupal.org/user/73854"
  6972. },
  6973. {
  6974. "name": "joelpittet",
  6975. "homepage": "https://www.drupal.org/user/160302"
  6976. },
  6977. {
  6978. "name": "lbainbridge",
  6979. "homepage": "https://www.drupal.org/user/2406996"
  6980. }
  6981. ],
  6982. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6983. "homepage": "https://www.drupal.org/project/menu_position",
  6984. "support": {
  6985. "source": "https://git.drupalcode.org/project/menu_position",
  6986. "issues": "https://www.drupal.org/project/issues/menu_position"
  6987. }
  6988. },
  6989. {
  6990. "name": "drupal/page_manager",
  6991. "version": "dev-4.x",
  6992. "source": {
  6993. "type": "git",
  6994. "url": "https://git.drupalcode.org/project/page_manager.git",
  6995. "reference": "82d8a6d3492860b37e2d9bca9238603e4c9b549f"
  6996. },
  6997. "require": {
  6998. "drupal/core": "^8.8 || ^9",
  6999. "drupal/ctools": "^3.1"
  7000. },
  7001. "type": "drupal-module",
  7002. "extra": {
  7003. "branch-alias": {
  7004. "dev-4.x": "4.x-dev",
  7005. "dev-8.x-4.x": "4.x-dev"
  7006. },
  7007. "drupal": {
  7008. "version": "8.x-4.0-beta6+1-dev",
  7009. "datestamp": "1613459893",
  7010. "security-coverage": {
  7011. "status": "not-covered",
  7012. "message": "Project has not opted into security advisory coverage!"
  7013. }
  7014. }
  7015. },
  7016. "notification-url": "https://packages.drupal.org/8/downloads",
  7017. "license": [
  7018. "GPL-2.0-or-later"
  7019. ],
  7020. "authors": [
  7021. {
  7022. "name": "Tim Plunkett",
  7023. "homepage": "https://www.drupal.org/u/tim.plunkett",
  7024. "role": "Maintainer"
  7025. },
  7026. {
  7027. "name": "dsnopek",
  7028. "homepage": "https://www.drupal.org/user/266527"
  7029. },
  7030. {
  7031. "name": "japerry",
  7032. "homepage": "https://www.drupal.org/user/45640"
  7033. },
  7034. {
  7035. "name": "manuel.adan",
  7036. "homepage": "https://www.drupal.org/user/516420"
  7037. },
  7038. {
  7039. "name": "phenaproxima",
  7040. "homepage": "https://www.drupal.org/user/205645"
  7041. },
  7042. {
  7043. "name": "tim.plunkett",
  7044. "homepage": "https://www.drupal.org/user/241634"
  7045. }
  7046. ],
  7047. "description": "Provides a way to place blocks on a custom page.",
  7048. "homepage": "https://www.drupal.org/project/page_manager",
  7049. "support": {
  7050. "source": "https://git.drupal.org/project/page_manager.git",
  7051. "issues": "https://www.drupal.org/project/issues/page_manager",
  7052. "irc": "irc://irc.freenode.org/drupal-contribute"
  7053. }
  7054. },
  7055. {
  7056. "name": "drupal/pagerer",
  7057. "version": "2.1.0",
  7058. "source": {
  7059. "type": "git",
  7060. "url": "https://git.drupalcode.org/project/pagerer.git",
  7061. "reference": "8.x-2.1"
  7062. },
  7063. "dist": {
  7064. "type": "zip",
  7065. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.1.zip",
  7066. "reference": "8.x-2.1",
  7067. "shasum": "a08539fde32372b66771afbaeba4105de19ddb14"
  7068. },
  7069. "require": {
  7070. "drupal/core": "^8.9 || ^9.1",
  7071. "drupal/jquery_ui_button": "*",
  7072. "drupal/jquery_ui_slider": "*",
  7073. "php": ">=7.1"
  7074. },
  7075. "type": "drupal-module",
  7076. "extra": {
  7077. "drupal": {
  7078. "version": "8.x-2.1",
  7079. "datestamp": "1621878520",
  7080. "security-coverage": {
  7081. "status": "covered",
  7082. "message": "Covered by Drupal's security advisory policy"
  7083. }
  7084. }
  7085. },
  7086. "notification-url": "https://packages.drupal.org/8/downloads",
  7087. "license": [
  7088. "GPL-2.0-or-later"
  7089. ],
  7090. "authors": [
  7091. {
  7092. "name": "mondrake",
  7093. "homepage": "https://www.drupal.org/user/1307444"
  7094. }
  7095. ],
  7096. "description": "Configurable pager styles.",
  7097. "homepage": "https://www.drupal.org/project/pagerer",
  7098. "support": {
  7099. "source": "https://git.drupalcode.org/project/pagerer"
  7100. }
  7101. },
  7102. {
  7103. "name": "drupal/panels",
  7104. "version": "4.6.0",
  7105. "source": {
  7106. "type": "git",
  7107. "url": "https://git.drupalcode.org/project/panels.git",
  7108. "reference": "8.x-4.6"
  7109. },
  7110. "dist": {
  7111. "type": "zip",
  7112. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.6.zip",
  7113. "reference": "8.x-4.6",
  7114. "shasum": "6430436a4d8fb64f8c113729dd92505a1e46b794"
  7115. },
  7116. "require": {
  7117. "drupal/core": "^8.8 || ^9",
  7118. "drupal/ctools": ">=3.0.0",
  7119. "drupal/jquery_ui_droppable": "^1.2"
  7120. },
  7121. "require-dev": {
  7122. "drupal/jquery_ui_droppable": "*",
  7123. "drupal/page_manager": "^4"
  7124. },
  7125. "type": "drupal-module",
  7126. "extra": {
  7127. "drupal": {
  7128. "version": "8.x-4.6",
  7129. "datestamp": "1585870866",
  7130. "security-coverage": {
  7131. "status": "covered",
  7132. "message": "Covered by Drupal's security advisory policy"
  7133. }
  7134. },
  7135. "branch-alias": {
  7136. "dev-8.x-4.x": "4.x-dev"
  7137. }
  7138. },
  7139. "notification-url": "https://packages.drupal.org/8/downloads",
  7140. "license": [
  7141. "GPL-2.0+"
  7142. ],
  7143. "authors": [
  7144. {
  7145. "name": "Jakob Perry",
  7146. "homepage": "https://www.drupal.org/u/japerry"
  7147. },
  7148. {
  7149. "name": "Samuel Mortenson",
  7150. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  7151. },
  7152. {
  7153. "name": "See other contributors",
  7154. "homepage": "https://www.drupal.org/node/74958/committers"
  7155. },
  7156. {
  7157. "name": "japerry",
  7158. "homepage": "https://www.drupal.org/user/45640"
  7159. },
  7160. {
  7161. "name": "joelpittet",
  7162. "homepage": "https://www.drupal.org/user/160302"
  7163. },
  7164. {
  7165. "name": "merlinofchaos",
  7166. "homepage": "https://www.drupal.org/user/26979"
  7167. },
  7168. {
  7169. "name": "neclimdul",
  7170. "homepage": "https://www.drupal.org/user/48673"
  7171. },
  7172. {
  7173. "name": "phenaproxima",
  7174. "homepage": "https://www.drupal.org/user/205645"
  7175. },
  7176. {
  7177. "name": "samuel.mortenson",
  7178. "homepage": "https://www.drupal.org/user/2582268"
  7179. },
  7180. {
  7181. "name": "tim.plunkett",
  7182. "homepage": "https://www.drupal.org/user/241634"
  7183. }
  7184. ],
  7185. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  7186. "homepage": "https://www.drupal.org/project/panels",
  7187. "support": {
  7188. "source": "http://git.drupal.org/project/panels.git",
  7189. "issues": "https://www.drupal.org/project/issues/panels",
  7190. "irc": "irc://irc.freenode.org/drupal-scotch"
  7191. }
  7192. },
  7193. {
  7194. "name": "drupal/paragraphs",
  7195. "version": "dev-1.x",
  7196. "source": {
  7197. "type": "git",
  7198. "url": "https://git.drupalcode.org/project/paragraphs.git",
  7199. "reference": "203ecf83fa85e1ca957db1e2da7d0b8498b764e7"
  7200. },
  7201. "require": {
  7202. "drupal/core": "^8.8 || ^9",
  7203. "drupal/entity_reference_revisions": "~1.3"
  7204. },
  7205. "require-dev": {
  7206. "drupal/block_field": "~1.0",
  7207. "drupal/ctools": "3.x-dev",
  7208. "drupal/diff": "~1.0",
  7209. "drupal/entity_browser": "2.x-dev",
  7210. "drupal/entity_usage": "2.x-dev",
  7211. "drupal/field_group": "3.x-dev",
  7212. "drupal/inline_entity_form": "~1.0",
  7213. "drupal/paragraphs-paragraphs_library": "*",
  7214. "drupal/replicate": "~1.0",
  7215. "drupal/search_api": "~1.0",
  7216. "drupal/search_api_db": "*"
  7217. },
  7218. "suggest": {
  7219. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  7220. },
  7221. "type": "drupal-module",
  7222. "extra": {
  7223. "branch-alias": {
  7224. "dev-1.x": "1.x-dev"
  7225. },
  7226. "drupal": {
  7227. "version": "8.x-1.12+20-dev",
  7228. "datestamp": "1630064939",
  7229. "security-coverage": {
  7230. "status": "not-covered",
  7231. "message": "Dev releases are not covered by Drupal security advisories."
  7232. }
  7233. }
  7234. },
  7235. "notification-url": "https://packages.drupal.org/8/downloads",
  7236. "license": [
  7237. "GPL-2.0-or-later"
  7238. ],
  7239. "authors": [
  7240. {
  7241. "name": "Berdir",
  7242. "homepage": "https://www.drupal.org/user/214652"
  7243. },
  7244. {
  7245. "name": "Frans",
  7246. "homepage": "https://www.drupal.org/user/514222"
  7247. },
  7248. {
  7249. "name": "Primsi",
  7250. "homepage": "https://www.drupal.org/user/282629"
  7251. },
  7252. {
  7253. "name": "jeroen.b",
  7254. "homepage": "https://www.drupal.org/user/1853532"
  7255. },
  7256. {
  7257. "name": "jstoller",
  7258. "homepage": "https://www.drupal.org/user/99012"
  7259. },
  7260. {
  7261. "name": "miro_dietiker",
  7262. "homepage": "https://www.drupal.org/user/227761"
  7263. }
  7264. ],
  7265. "description": "Enables the creation of Paragraphs entities.",
  7266. "homepage": "https://www.drupal.org/project/paragraphs",
  7267. "support": {
  7268. "source": "https://git.drupalcode.org/project/paragraphs"
  7269. }
  7270. },
  7271. {
  7272. "name": "drupal/path_alias_xt",
  7273. "version": "dev-1.x",
  7274. "source": {
  7275. "type": "git",
  7276. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  7277. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  7278. },
  7279. "require": {
  7280. "drupal/core": "^8.7.7 || ^9"
  7281. },
  7282. "type": "drupal-module",
  7283. "extra": {
  7284. "branch-alias": {
  7285. "dev-1.x": "1.x-dev"
  7286. },
  7287. "drupal": {
  7288. "version": "8.x-1.x-dev",
  7289. "datestamp": "1590299862",
  7290. "security-coverage": {
  7291. "status": "not-covered",
  7292. "message": "Dev releases are not covered by Drupal security advisories."
  7293. }
  7294. }
  7295. },
  7296. "notification-url": "https://packages.drupal.org/8/downloads",
  7297. "license": [
  7298. "GPL-2.0-or-later"
  7299. ],
  7300. "authors": [
  7301. {
  7302. "name": "RdeBoer",
  7303. "homepage": "https://www.drupal.org/user/404007"
  7304. },
  7305. {
  7306. "name": "adriancid",
  7307. "homepage": "https://www.drupal.org/user/1962106"
  7308. },
  7309. {
  7310. "name": "sdstyles",
  7311. "homepage": "https://www.drupal.org/user/1420228"
  7312. }
  7313. ],
  7314. "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.",
  7315. "homepage": "https://www.drupal.org/project/path_alias_xt",
  7316. "support": {
  7317. "source": "https://git.drupalcode.org/project/path_alias_xt"
  7318. }
  7319. },
  7320. {
  7321. "name": "drupal/pathauto",
  7322. "version": "1.8.0",
  7323. "source": {
  7324. "type": "git",
  7325. "url": "https://git.drupalcode.org/project/pathauto.git",
  7326. "reference": "8.x-1.8"
  7327. },
  7328. "dist": {
  7329. "type": "zip",
  7330. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  7331. "reference": "8.x-1.8",
  7332. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  7333. },
  7334. "require": {
  7335. "drupal/core": "^8.8 || ^9",
  7336. "drupal/ctools": "*",
  7337. "drupal/token": "*"
  7338. },
  7339. "suggest": {
  7340. "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."
  7341. },
  7342. "type": "drupal-module",
  7343. "extra": {
  7344. "drupal": {
  7345. "version": "8.x-1.8",
  7346. "datestamp": "1588103046",
  7347. "security-coverage": {
  7348. "status": "covered",
  7349. "message": "Covered by Drupal's security advisory policy"
  7350. }
  7351. },
  7352. "drush": {
  7353. "services": {
  7354. "drush.services.yml": "^9 || ^10"
  7355. }
  7356. }
  7357. },
  7358. "notification-url": "https://packages.drupal.org/8/downloads",
  7359. "license": [
  7360. "GPL-2.0-or-later"
  7361. ],
  7362. "authors": [
  7363. {
  7364. "name": "Berdir",
  7365. "homepage": "https://www.drupal.org/user/214652"
  7366. },
  7367. {
  7368. "name": "Dave Reid",
  7369. "homepage": "https://www.drupal.org/user/53892"
  7370. },
  7371. {
  7372. "name": "Freso",
  7373. "homepage": "https://www.drupal.org/user/27504"
  7374. },
  7375. {
  7376. "name": "greggles",
  7377. "homepage": "https://www.drupal.org/user/36762"
  7378. }
  7379. ],
  7380. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  7381. "homepage": "https://www.drupal.org/project/pathauto",
  7382. "support": {
  7383. "source": "https://cgit.drupalcode.org/pathauto",
  7384. "issues": "https://www.drupal.org/project/issues/pathauto",
  7385. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  7386. }
  7387. },
  7388. {
  7389. "name": "drupal/pathologic",
  7390. "version": "1.0.0-alpha2",
  7391. "source": {
  7392. "type": "git",
  7393. "url": "https://git.drupalcode.org/project/pathologic.git",
  7394. "reference": "8.x-1.0-alpha2"
  7395. },
  7396. "dist": {
  7397. "type": "zip",
  7398. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  7399. "reference": "8.x-1.0-alpha2",
  7400. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  7401. },
  7402. "require": {
  7403. "drupal/core": "^8 || ^9"
  7404. },
  7405. "type": "drupal-module",
  7406. "extra": {
  7407. "drupal": {
  7408. "version": "8.x-1.0-alpha2",
  7409. "datestamp": "1593911470",
  7410. "security-coverage": {
  7411. "status": "not-covered",
  7412. "message": "Alpha releases are not covered by Drupal security advisories."
  7413. }
  7414. }
  7415. },
  7416. "notification-url": "https://packages.drupal.org/8/downloads",
  7417. "license": [
  7418. "GPL-2.0-or-later"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Berdir",
  7423. "homepage": "https://www.drupal.org/user/214652"
  7424. },
  7425. {
  7426. "name": "Garrett Albright",
  7427. "homepage": "https://www.drupal.org/user/191212"
  7428. },
  7429. {
  7430. "name": "dww",
  7431. "homepage": "https://www.drupal.org/user/46549"
  7432. }
  7433. ],
  7434. "description": "Helps avoid broken links and incorrect paths in content.",
  7435. "homepage": "https://www.drupal.org/project/pathologic",
  7436. "support": {
  7437. "source": "https://git.drupalcode.org/project/pathologic"
  7438. }
  7439. },
  7440. {
  7441. "name": "drupal/persistent_login",
  7442. "version": "1.3.0",
  7443. "source": {
  7444. "type": "git",
  7445. "url": "https://git.drupalcode.org/project/persistent_login.git",
  7446. "reference": "8.x-1.3"
  7447. },
  7448. "dist": {
  7449. "type": "zip",
  7450. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  7451. "reference": "8.x-1.3",
  7452. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  7453. },
  7454. "require": {
  7455. "drupal/core": "^8.3 || ^9.0"
  7456. },
  7457. "type": "drupal-module",
  7458. "extra": {
  7459. "drupal": {
  7460. "version": "8.x-1.3",
  7461. "datestamp": "1591597823",
  7462. "security-coverage": {
  7463. "status": "covered",
  7464. "message": "Covered by Drupal's security advisory policy"
  7465. }
  7466. }
  7467. },
  7468. "notification-url": "https://packages.drupal.org/8/downloads",
  7469. "license": [
  7470. "GPL-2.0-or-later"
  7471. ],
  7472. "authors": [
  7473. {
  7474. "name": "gapple",
  7475. "homepage": "https://www.drupal.org/user/490940"
  7476. }
  7477. ],
  7478. "description": "Provides a \"Remember Me\" feature on the login form.",
  7479. "homepage": "https://www.drupal.org/project/persistent_login",
  7480. "keywords": [
  7481. "Drupal"
  7482. ],
  7483. "support": {
  7484. "source": "https://git.drupalcode.org/project/persistent_login",
  7485. "issues": "https://www.drupal.org/project/issues/persistent_login"
  7486. }
  7487. },
  7488. {
  7489. "name": "drupal/profile",
  7490. "version": "1.3.0",
  7491. "source": {
  7492. "type": "git",
  7493. "url": "https://git.drupalcode.org/project/profile.git",
  7494. "reference": "8.x-1.3"
  7495. },
  7496. "dist": {
  7497. "type": "zip",
  7498. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.3.zip",
  7499. "reference": "8.x-1.3",
  7500. "shasum": "e2f0b76ae0cfb312259a956f7140cec261e543b1"
  7501. },
  7502. "require": {
  7503. "drupal/core": "^8.8 || ^9",
  7504. "drupal/entity": "^1.0-rc2"
  7505. },
  7506. "require-dev": {
  7507. "drupal/token": "^1.7"
  7508. },
  7509. "type": "drupal-module",
  7510. "extra": {
  7511. "drupal": {
  7512. "version": "8.x-1.3",
  7513. "datestamp": "1628099894",
  7514. "security-coverage": {
  7515. "status": "covered",
  7516. "message": "Covered by Drupal's security advisory policy"
  7517. }
  7518. }
  7519. },
  7520. "notification-url": "https://packages.drupal.org/8/downloads",
  7521. "license": [
  7522. "GPL-2.0-or-later"
  7523. ],
  7524. "authors": [
  7525. {
  7526. "name": "bojanz",
  7527. "homepage": "https://www.drupal.org/user/86106"
  7528. },
  7529. {
  7530. "name": "daggerhart",
  7531. "homepage": "https://www.drupal.org/user/167806"
  7532. },
  7533. {
  7534. "name": "fago",
  7535. "homepage": "https://www.drupal.org/user/16747"
  7536. },
  7537. {
  7538. "name": "jsacksick",
  7539. "homepage": "https://www.drupal.org/user/972218"
  7540. },
  7541. {
  7542. "name": "mglaman",
  7543. "homepage": "https://www.drupal.org/user/2416470"
  7544. },
  7545. {
  7546. "name": "pcambra",
  7547. "homepage": "https://www.drupal.org/user/122101"
  7548. }
  7549. ],
  7550. "description": "Provides configurable user profiles.",
  7551. "homepage": "http://drupal.org/project/profile",
  7552. "support": {
  7553. "source": "https://git.drupalcode.org/project/profile"
  7554. }
  7555. },
  7556. {
  7557. "name": "drupal/redirect",
  7558. "version": "1.6.0",
  7559. "source": {
  7560. "type": "git",
  7561. "url": "https://git.drupalcode.org/project/redirect.git",
  7562. "reference": "8.x-1.6"
  7563. },
  7564. "dist": {
  7565. "type": "zip",
  7566. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  7567. "reference": "8.x-1.6",
  7568. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  7569. },
  7570. "require": {
  7571. "drupal/core": "^8.8 || ^9"
  7572. },
  7573. "type": "drupal-module",
  7574. "extra": {
  7575. "drupal": {
  7576. "version": "8.x-1.6",
  7577. "datestamp": "1589312204",
  7578. "security-coverage": {
  7579. "status": "covered",
  7580. "message": "Covered by Drupal's security advisory policy"
  7581. }
  7582. }
  7583. },
  7584. "notification-url": "https://packages.drupal.org/8/downloads",
  7585. "license": [
  7586. "GPL-2.0-or-later"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "Berdir",
  7591. "homepage": "https://www.drupal.org/user/214652"
  7592. },
  7593. {
  7594. "name": "Dave Reid",
  7595. "homepage": "https://www.drupal.org/user/53892"
  7596. },
  7597. {
  7598. "name": "pifagor",
  7599. "homepage": "https://www.drupal.org/user/2375692"
  7600. }
  7601. ],
  7602. "description": "Allows users to redirect from old URLs to new URLs.",
  7603. "homepage": "https://www.drupal.org/project/redirect",
  7604. "support": {
  7605. "source": "https://git.drupalcode.org/project/redirect"
  7606. }
  7607. },
  7608. {
  7609. "name": "drupal/redis",
  7610. "version": "1.5.0",
  7611. "source": {
  7612. "type": "git",
  7613. "url": "https://git.drupalcode.org/project/redis.git",
  7614. "reference": "8.x-1.5"
  7615. },
  7616. "dist": {
  7617. "type": "zip",
  7618. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7619. "reference": "8.x-1.5",
  7620. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7621. },
  7622. "require": {
  7623. "drupal/core": "^8.8 || ^9"
  7624. },
  7625. "suggest": {
  7626. "predis/predis": "^1.1.1"
  7627. },
  7628. "type": "drupal-module",
  7629. "extra": {
  7630. "drupal": {
  7631. "version": "8.x-1.5",
  7632. "datestamp": "1609972488",
  7633. "security-coverage": {
  7634. "status": "covered",
  7635. "message": "Covered by Drupal's security advisory policy"
  7636. }
  7637. }
  7638. },
  7639. "autoload": {
  7640. "psr-4": {
  7641. "Drupal\\redis\\": "src"
  7642. }
  7643. },
  7644. "notification-url": "https://packages.drupal.org/8/downloads",
  7645. "license": [
  7646. "GPL-2.0-or-later"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "Berdir",
  7651. "homepage": "https://www.drupal.org/user/214652"
  7652. },
  7653. {
  7654. "name": "pounard",
  7655. "homepage": "https://www.drupal.org/user/240164"
  7656. }
  7657. ],
  7658. "description": "Integration of Drupal with the Redis key-value store.",
  7659. "homepage": "https://www.drupal.org/project/redis",
  7660. "support": {
  7661. "source": "https://git.drupalcode.org/project/redis"
  7662. }
  7663. },
  7664. {
  7665. "name": "drupal/role_delegation",
  7666. "version": "1.1.0",
  7667. "source": {
  7668. "type": "git",
  7669. "url": "https://git.drupalcode.org/project/role_delegation.git",
  7670. "reference": "8.x-1.1"
  7671. },
  7672. "dist": {
  7673. "type": "zip",
  7674. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.1.zip",
  7675. "reference": "8.x-1.1",
  7676. "shasum": "a63b548056cc729beacfd385625fafb983e0f73e"
  7677. },
  7678. "require": {
  7679. "drupal/core": "^8 || ^9"
  7680. },
  7681. "type": "drupal-module",
  7682. "extra": {
  7683. "drupal": {
  7684. "version": "8.x-1.1",
  7685. "datestamp": "1580498751",
  7686. "security-coverage": {
  7687. "status": "covered",
  7688. "message": "Covered by Drupal's security advisory policy"
  7689. }
  7690. }
  7691. },
  7692. "notification-url": "https://packages.drupal.org/8/downloads",
  7693. "license": [
  7694. "GPL-2.0-or-later"
  7695. ],
  7696. "authors": [
  7697. {
  7698. "name": "Jeroen Tubex",
  7699. "homepage": "https://www.drupal.org/u/jeroent",
  7700. "role": "Maintainer"
  7701. },
  7702. {
  7703. "name": "benjy",
  7704. "homepage": "https://www.drupal.org/user/1852732"
  7705. }
  7706. ],
  7707. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  7708. "homepage": "http://drupal.org/project/role_delegation",
  7709. "support": {
  7710. "source": "https://git.drupalcode.org/project/role_delegation",
  7711. "issues": "http://drupal.org/project/role_delegation"
  7712. }
  7713. },
  7714. {
  7715. "name": "drupal/search_api",
  7716. "version": "1.21.0",
  7717. "source": {
  7718. "type": "git",
  7719. "url": "https://git.drupalcode.org/project/search_api.git",
  7720. "reference": "8.x-1.21"
  7721. },
  7722. "dist": {
  7723. "type": "zip",
  7724. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.21.zip",
  7725. "reference": "8.x-1.21",
  7726. "shasum": "0f3b7187f4a04b98bacd046697699cd1e863188e"
  7727. },
  7728. "require": {
  7729. "drupal/core": "^8.8 || ^9"
  7730. },
  7731. "conflict": {
  7732. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7733. },
  7734. "require-dev": {
  7735. "drupal/language_fallback_fix": "@dev",
  7736. "drupal/search_api_autocomplete": "@dev",
  7737. "drupal/search_api_db": "*"
  7738. },
  7739. "suggest": {
  7740. "drupal/facets": "Adds the ability to create faceted searches.",
  7741. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7742. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7743. },
  7744. "type": "drupal-module",
  7745. "extra": {
  7746. "drupal": {
  7747. "version": "8.x-1.21",
  7748. "datestamp": "1636024667",
  7749. "security-coverage": {
  7750. "status": "covered",
  7751. "message": "Covered by Drupal's security advisory policy"
  7752. }
  7753. },
  7754. "drush": {
  7755. "services": {
  7756. "drush.services.yml": "^9 || ^10"
  7757. }
  7758. }
  7759. },
  7760. "notification-url": "https://packages.drupal.org/8/downloads",
  7761. "license": [
  7762. "GPL-2.0-or-later"
  7763. ],
  7764. "authors": [
  7765. {
  7766. "name": "Thomas Seidl",
  7767. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7768. },
  7769. {
  7770. "name": "Nick Veenhof",
  7771. "homepage": "https://www.drupal.org/u/nick_vh"
  7772. },
  7773. {
  7774. "name": "See other contributors",
  7775. "homepage": "https://www.drupal.org/node/790418/committers"
  7776. }
  7777. ],
  7778. "description": "Provides a generic framework for modules offering search capabilities.",
  7779. "homepage": "https://www.drupal.org/project/search_api",
  7780. "support": {
  7781. "source": "https://git.drupalcode.org/project/search_api",
  7782. "issues": "https://www.drupal.org/project/issues/search_api",
  7783. "irc": "irc://irc.freenode.org/drupal-search-api"
  7784. }
  7785. },
  7786. {
  7787. "name": "drupal/search_api_db",
  7788. "version": "1.21.0",
  7789. "require": {
  7790. "drupal/core": "^8.8 || ^9",
  7791. "drupal/search_api": "*"
  7792. },
  7793. "type": "metapackage",
  7794. "extra": {
  7795. "drupal": {
  7796. "version": "8.x-1.21",
  7797. "datestamp": "1636024667",
  7798. "security-coverage": {
  7799. "status": "covered",
  7800. "message": "Covered by Drupal's security advisory policy"
  7801. }
  7802. }
  7803. },
  7804. "notification-url": "https://packages.drupal.org/8/downloads",
  7805. "license": [
  7806. "GPL-2.0-or-later"
  7807. ],
  7808. "authors": [
  7809. {
  7810. "name": "Nick_vh",
  7811. "homepage": "https://www.drupal.org/user/122682"
  7812. },
  7813. {
  7814. "name": "borisson_",
  7815. "homepage": "https://www.drupal.org/user/2393360"
  7816. },
  7817. {
  7818. "name": "drunken monkey",
  7819. "homepage": "https://www.drupal.org/user/205582"
  7820. }
  7821. ],
  7822. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7823. "homepage": "https://www.drupal.org/project/search_api",
  7824. "support": {
  7825. "source": "https://git.drupalcode.org/project/search_api"
  7826. }
  7827. },
  7828. {
  7829. "name": "drupal/smart_trim",
  7830. "version": "1.3.0",
  7831. "source": {
  7832. "type": "git",
  7833. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7834. "reference": "8.x-1.3"
  7835. },
  7836. "dist": {
  7837. "type": "zip",
  7838. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7839. "reference": "8.x-1.3",
  7840. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7841. },
  7842. "require": {
  7843. "drupal/core": "^8 || ^9"
  7844. },
  7845. "type": "drupal-module",
  7846. "extra": {
  7847. "drupal": {
  7848. "version": "8.x-1.3",
  7849. "datestamp": "1589766531",
  7850. "security-coverage": {
  7851. "status": "covered",
  7852. "message": "Covered by Drupal's security advisory policy"
  7853. }
  7854. }
  7855. },
  7856. "notification-url": "https://packages.drupal.org/8/downloads",
  7857. "license": [
  7858. "GPL-2.0-or-later"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Mark Casias (markie)",
  7863. "homepage": "https://www.drupal.org/u/markie",
  7864. "role": "Maintainer"
  7865. },
  7866. {
  7867. "name": "newsignature",
  7868. "homepage": "https://www.drupal.org/user/765518"
  7869. },
  7870. {
  7871. "name": "ultimike",
  7872. "homepage": "https://www.drupal.org/user/51132"
  7873. },
  7874. {
  7875. "name": "volkswagenchick",
  7876. "homepage": "https://www.drupal.org/user/3332522"
  7877. }
  7878. ],
  7879. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7880. "homepage": "https://drupal.org/project/smart_trim",
  7881. "support": {
  7882. "source": "https://cgit.drupalcode.org/smart_trim",
  7883. "issues": "https://drupal.org/project/issues/smart_trim"
  7884. }
  7885. },
  7886. {
  7887. "name": "drupal/smtp",
  7888. "version": "1.0.0",
  7889. "source": {
  7890. "type": "git",
  7891. "url": "https://git.drupalcode.org/project/smtp.git",
  7892. "reference": "8.x-1.0"
  7893. },
  7894. "dist": {
  7895. "type": "zip",
  7896. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7897. "reference": "8.x-1.0",
  7898. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7899. },
  7900. "require": {
  7901. "drupal/core": "^8.8 || ^9",
  7902. "phpmailer/phpmailer": "^6.1.7"
  7903. },
  7904. "suggest": {
  7905. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7906. },
  7907. "type": "drupal-module",
  7908. "extra": {
  7909. "drupal": {
  7910. "version": "8.x-1.0",
  7911. "datestamp": "1601070985",
  7912. "security-coverage": {
  7913. "status": "covered",
  7914. "message": "Covered by Drupal's security advisory policy"
  7915. }
  7916. },
  7917. "branch-alias": {
  7918. "dev-8.x-1.x": "1.x-dev"
  7919. }
  7920. },
  7921. "notification-url": "https://packages.drupal.org/8/downloads",
  7922. "license": [
  7923. "GPL-2.0-or-later"
  7924. ],
  7925. "authors": [
  7926. {
  7927. "name": "LukeLast",
  7928. "homepage": "https://www.drupal.org/user/30151"
  7929. },
  7930. {
  7931. "name": "japerry",
  7932. "homepage": "https://www.drupal.org/user/45640"
  7933. },
  7934. {
  7935. "name": "josesanmartin",
  7936. "homepage": "https://www.drupal.org/user/72012"
  7937. },
  7938. {
  7939. "name": "oadaeh",
  7940. "homepage": "https://www.drupal.org/user/4649"
  7941. },
  7942. {
  7943. "name": "sadashiv",
  7944. "homepage": "https://www.drupal.org/user/1773304"
  7945. },
  7946. {
  7947. "name": "wundo",
  7948. "homepage": "https://www.drupal.org/user/25523"
  7949. },
  7950. {
  7951. "name": "yettyn",
  7952. "homepage": "https://www.drupal.org/user/93281"
  7953. }
  7954. ],
  7955. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7956. "homepage": "https://www.drupal.org/project/smtp",
  7957. "support": {
  7958. "source": "https://git.drupalcode.org/project/smtp",
  7959. "issues": "https://www.drupal.org/project/issues/smtp"
  7960. }
  7961. },
  7962. {
  7963. "name": "drupal/sophron",
  7964. "version": "1.1.0",
  7965. "source": {
  7966. "type": "git",
  7967. "url": "https://git.drupalcode.org/project/sophron.git",
  7968. "reference": "8.x-1.1"
  7969. },
  7970. "dist": {
  7971. "type": "zip",
  7972. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7973. "reference": "8.x-1.1",
  7974. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7975. },
  7976. "require": {
  7977. "drupal/core": "^8.9 || ^9",
  7978. "fileeye/mimemap": "^1.1.4",
  7979. "php": ">=7.1"
  7980. },
  7981. "type": "drupal-module",
  7982. "extra": {
  7983. "drupal": {
  7984. "version": "8.x-1.1",
  7985. "datestamp": "1606047077",
  7986. "security-coverage": {
  7987. "status": "covered",
  7988. "message": "Covered by Drupal's security advisory policy"
  7989. }
  7990. }
  7991. },
  7992. "autoload": {
  7993. "psr-4": {
  7994. "Drupal\\sophron\\": "src/"
  7995. }
  7996. },
  7997. "notification-url": "https://packages.drupal.org/8/downloads",
  7998. "license": [
  7999. "GPL-2.0-or-later"
  8000. ],
  8001. "authors": [
  8002. {
  8003. "name": "mondrake",
  8004. "homepage": "https://www.drupal.org/user/1307444"
  8005. }
  8006. ],
  8007. "description": "Provides an extensive MIME types management API",
  8008. "homepage": "https://www.drupal.org/project/sophron",
  8009. "support": {
  8010. "source": "https://git.drupalcode.org/project/sophron"
  8011. }
  8012. },
  8013. {
  8014. "name": "drupal/structure_sync",
  8015. "version": "2.0.2",
  8016. "source": {
  8017. "type": "git",
  8018. "url": "https://git.drupalcode.org/project/structure_sync.git",
  8019. "reference": "2.0.2"
  8020. },
  8021. "dist": {
  8022. "type": "zip",
  8023. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.2.zip",
  8024. "reference": "2.0.2",
  8025. "shasum": "7c1cda02629cdd90113b95de2d353e8d5a7aa90e"
  8026. },
  8027. "require": {
  8028. "drupal/core": "^8 || ^9"
  8029. },
  8030. "type": "drupal-module",
  8031. "extra": {
  8032. "drupal": {
  8033. "version": "2.0.2",
  8034. "datestamp": "1614096703",
  8035. "security-coverage": {
  8036. "status": "covered",
  8037. "message": "Covered by Drupal's security advisory policy"
  8038. }
  8039. }
  8040. },
  8041. "notification-url": "https://packages.drupal.org/8/downloads",
  8042. "license": [
  8043. "GPL-2.0-or-later"
  8044. ],
  8045. "authors": [
  8046. {
  8047. "name": "colan",
  8048. "homepage": "https://www.drupal.org/user/58704"
  8049. },
  8050. {
  8051. "name": "fidovdbos",
  8052. "homepage": "https://www.drupal.org/user/1494332"
  8053. },
  8054. {
  8055. "name": "joachim",
  8056. "homepage": "https://www.drupal.org/user/107701"
  8057. },
  8058. {
  8059. "name": "legolasbo",
  8060. "homepage": "https://www.drupal.org/user/2480548"
  8061. },
  8062. {
  8063. "name": "mparker17",
  8064. "homepage": "https://www.drupal.org/user/536298"
  8065. },
  8066. {
  8067. "name": "spiderman",
  8068. "homepage": "https://www.drupal.org/user/1631"
  8069. },
  8070. {
  8071. "name": "timKruijsen",
  8072. "homepage": "https://www.drupal.org/user/3513437"
  8073. },
  8074. {
  8075. "name": "vinlaurens",
  8076. "homepage": "https://www.drupal.org/user/2945689"
  8077. }
  8078. ],
  8079. "description": "Tool for syncing structural data that is stored as content.",
  8080. "homepage": "https://www.drupal.org/project/structure_sync",
  8081. "support": {
  8082. "source": "https://git.drupalcode.org/project/structure_sync"
  8083. }
  8084. },
  8085. {
  8086. "name": "drupal/synonyms",
  8087. "version": "2.0.0-beta2",
  8088. "source": {
  8089. "type": "git",
  8090. "url": "https://git.drupalcode.org/project/synonyms.git",
  8091. "reference": "2.0.0-beta2"
  8092. },
  8093. "dist": {
  8094. "type": "zip",
  8095. "url": "https://ftp.drupal.org/files/projects/synonyms-2.0.0-beta2.zip",
  8096. "reference": "2.0.0-beta2",
  8097. "shasum": "0d3b80f95c4da1c726f0fd73cbaf33f6fb93b0a1"
  8098. },
  8099. "require": {
  8100. "drupal/core": "^8.8 || ^9"
  8101. },
  8102. "require-dev": {
  8103. "drupal/synonyms_list_field": "*"
  8104. },
  8105. "type": "drupal-module",
  8106. "extra": {
  8107. "drupal": {
  8108. "version": "2.0.0-beta2",
  8109. "datestamp": "1622577998",
  8110. "security-coverage": {
  8111. "status": "not-covered",
  8112. "message": "Beta releases are not covered by Drupal security advisories."
  8113. }
  8114. }
  8115. },
  8116. "notification-url": "https://packages.drupal.org/8/downloads",
  8117. "license": [
  8118. "GPL-2.0-or-later"
  8119. ],
  8120. "authors": [
  8121. {
  8122. "name": "Zen",
  8123. "homepage": "https://www.drupal.org/user/21209"
  8124. },
  8125. {
  8126. "name": "bojanz",
  8127. "homepage": "https://www.drupal.org/user/86106"
  8128. },
  8129. {
  8130. "name": "bucefal91",
  8131. "homepage": "https://www.drupal.org/user/504128"
  8132. },
  8133. {
  8134. "name": "devad",
  8135. "homepage": "https://www.drupal.org/user/2268520"
  8136. }
  8137. ],
  8138. "description": "Provides synonyms feature for all entities.",
  8139. "homepage": "https://www.drupal.org/project/synonyms",
  8140. "support": {
  8141. "source": "https://git.drupalcode.org/project/synonyms"
  8142. }
  8143. },
  8144. {
  8145. "name": "drupal/token",
  8146. "version": "1.9.0",
  8147. "source": {
  8148. "type": "git",
  8149. "url": "https://git.drupalcode.org/project/token.git",
  8150. "reference": "8.x-1.9"
  8151. },
  8152. "dist": {
  8153. "type": "zip",
  8154. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  8155. "reference": "8.x-1.9",
  8156. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  8157. },
  8158. "require": {
  8159. "drupal/core": "^8.8 || ^9"
  8160. },
  8161. "type": "drupal-module",
  8162. "extra": {
  8163. "drupal": {
  8164. "version": "8.x-1.9",
  8165. "datestamp": "1608284866",
  8166. "security-coverage": {
  8167. "status": "covered",
  8168. "message": "Covered by Drupal's security advisory policy"
  8169. }
  8170. },
  8171. "drush": {
  8172. "services": {
  8173. "drush.services.yml": "^9 || ^10"
  8174. }
  8175. }
  8176. },
  8177. "notification-url": "https://packages.drupal.org/8/downloads",
  8178. "license": [
  8179. "GPL-2.0-or-later"
  8180. ],
  8181. "authors": [
  8182. {
  8183. "name": "Berdir",
  8184. "homepage": "https://www.drupal.org/user/214652"
  8185. },
  8186. {
  8187. "name": "Dave Reid",
  8188. "homepage": "https://www.drupal.org/user/53892"
  8189. },
  8190. {
  8191. "name": "eaton",
  8192. "homepage": "https://www.drupal.org/user/16496"
  8193. },
  8194. {
  8195. "name": "fago",
  8196. "homepage": "https://www.drupal.org/user/16747"
  8197. },
  8198. {
  8199. "name": "greggles",
  8200. "homepage": "https://www.drupal.org/user/36762"
  8201. },
  8202. {
  8203. "name": "mikeryan",
  8204. "homepage": "https://www.drupal.org/user/4420"
  8205. }
  8206. ],
  8207. "description": "Provides a user interface for the Token API, some missing core tokens.",
  8208. "homepage": "https://www.drupal.org/project/token",
  8209. "support": {
  8210. "source": "https://git.drupalcode.org/project/token"
  8211. }
  8212. },
  8213. {
  8214. "name": "drupal/translation_views",
  8215. "version": "1.0.0-alpha10",
  8216. "source": {
  8217. "type": "git",
  8218. "url": "https://git.drupalcode.org/project/translation_views.git",
  8219. "reference": "8.x-1.0-alpha10"
  8220. },
  8221. "dist": {
  8222. "type": "zip",
  8223. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  8224. "reference": "8.x-1.0-alpha10",
  8225. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  8226. },
  8227. "require": {
  8228. "drupal/core": "^8.8 || ^9"
  8229. },
  8230. "require-dev": {
  8231. "drupal/translators": "*",
  8232. "drupal/translators_content": "*"
  8233. },
  8234. "type": "drupal-module",
  8235. "extra": {
  8236. "drupal": {
  8237. "version": "8.x-1.0-alpha10",
  8238. "datestamp": "1584303687",
  8239. "security-coverage": {
  8240. "status": "not-covered",
  8241. "message": "Project has not opted into security advisory coverage!"
  8242. }
  8243. }
  8244. },
  8245. "notification-url": "https://packages.drupal.org/8/downloads",
  8246. "license": [
  8247. "GPL-2.0-or-later"
  8248. ],
  8249. "authors": [
  8250. {
  8251. "name": "matsbla",
  8252. "homepage": "https://www.drupal.org/user/2325394"
  8253. },
  8254. {
  8255. "name": "vlad.dancer",
  8256. "homepage": "https://www.drupal.org/user/903844"
  8257. }
  8258. ],
  8259. "description": "Create customized lists and queries of translations from your database.",
  8260. "homepage": "https://www.drupal.org/project/translation_views",
  8261. "support": {
  8262. "source": "https://git.drupalcode.org/project/translation_views"
  8263. }
  8264. },
  8265. {
  8266. "name": "drupal/ultimate_cron",
  8267. "version": "2.0.0-alpha5",
  8268. "source": {
  8269. "type": "git",
  8270. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  8271. "reference": "8.x-2.0-alpha5"
  8272. },
  8273. "dist": {
  8274. "type": "zip",
  8275. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  8276. "reference": "8.x-2.0-alpha5",
  8277. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  8278. },
  8279. "require": {
  8280. "drupal/core": "^8.7.7 || ^9"
  8281. },
  8282. "type": "drupal-module",
  8283. "extra": {
  8284. "drupal": {
  8285. "version": "8.x-2.0-alpha5",
  8286. "datestamp": "1600928948",
  8287. "security-coverage": {
  8288. "status": "not-covered",
  8289. "message": "Alpha releases are not covered by Drupal security advisories."
  8290. }
  8291. },
  8292. "drush": {
  8293. "services": {
  8294. "drush.services.yml": "^9 || ^10"
  8295. }
  8296. }
  8297. },
  8298. "notification-url": "https://packages.drupal.org/8/downloads",
  8299. "license": [
  8300. "GPL-2.0+"
  8301. ],
  8302. "authors": [
  8303. {
  8304. "name": "Berdir",
  8305. "homepage": "https://www.drupal.org/user/214652"
  8306. },
  8307. {
  8308. "name": "Dane Powell",
  8309. "homepage": "https://www.drupal.org/user/339326"
  8310. },
  8311. {
  8312. "name": "Primsi",
  8313. "homepage": "https://www.drupal.org/user/282629"
  8314. },
  8315. {
  8316. "name": "arnested",
  8317. "homepage": "https://www.drupal.org/user/245635"
  8318. },
  8319. {
  8320. "name": "gielfeldt",
  8321. "homepage": "https://www.drupal.org/user/366993"
  8322. },
  8323. {
  8324. "name": "miro_dietiker",
  8325. "homepage": "https://www.drupal.org/user/227761"
  8326. }
  8327. ],
  8328. "description": "Ultimate cron",
  8329. "homepage": "https://www.drupal.org/project/ultimate_cron",
  8330. "support": {
  8331. "source": "https://git.drupalcode.org/project/ultimate_cron"
  8332. }
  8333. },
  8334. {
  8335. "name": "drupal/url_to_video_filter",
  8336. "version": "2.0.0",
  8337. "source": {
  8338. "type": "git",
  8339. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  8340. "reference": "2.0.0"
  8341. },
  8342. "dist": {
  8343. "type": "zip",
  8344. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  8345. "reference": "2.0.0",
  8346. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  8347. },
  8348. "require": {
  8349. "drupal/core": "^8 || ^9"
  8350. },
  8351. "type": "drupal-module",
  8352. "extra": {
  8353. "drupal": {
  8354. "version": "2.0.0",
  8355. "datestamp": "1607298389",
  8356. "security-coverage": {
  8357. "status": "covered",
  8358. "message": "Covered by Drupal's security advisory policy"
  8359. }
  8360. }
  8361. },
  8362. "notification-url": "https://packages.drupal.org/8/downloads",
  8363. "license": [
  8364. "GPL-2.0-or-later"
  8365. ],
  8366. "authors": [
  8367. {
  8368. "name": "Jaypan",
  8369. "homepage": "https://www.drupal.org/user/324696"
  8370. }
  8371. ],
  8372. "description": "Text filter to convert URLs to embedded videos",
  8373. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  8374. "support": {
  8375. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  8376. }
  8377. },
  8378. {
  8379. "name": "drupal/video_embed_field",
  8380. "version": "2.4.0",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  8384. "reference": "8.x-2.4"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  8389. "reference": "8.x-2.4",
  8390. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  8391. },
  8392. "require": {
  8393. "drupal/core": "^8.8 || ^9"
  8394. },
  8395. "require-dev": {
  8396. "drupal/colorbox": "^1.0",
  8397. "drupal/video_embed_media": "*"
  8398. },
  8399. "type": "drupal-module",
  8400. "extra": {
  8401. "drupal": {
  8402. "version": "8.x-2.4",
  8403. "datestamp": "1587686337",
  8404. "security-coverage": {
  8405. "status": "covered",
  8406. "message": "Covered by Drupal's security advisory policy"
  8407. }
  8408. }
  8409. },
  8410. "notification-url": "https://packages.drupal.org/8/downloads",
  8411. "license": [
  8412. "GPL-2.0+"
  8413. ],
  8414. "authors": [
  8415. {
  8416. "name": "Sam152",
  8417. "homepage": "https://www.drupal.org/user/1485048"
  8418. },
  8419. {
  8420. "name": "jec006",
  8421. "homepage": "https://www.drupal.org/user/855980"
  8422. },
  8423. {
  8424. "name": "plopesc",
  8425. "homepage": "https://www.drupal.org/user/282415"
  8426. }
  8427. ],
  8428. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8429. "homepage": "https://www.drupal.org/project/video_embed_field",
  8430. "support": {
  8431. "source": "https://git.drupalcode.org/project/video_embed_field"
  8432. }
  8433. },
  8434. {
  8435. "name": "drupal/views_bulk_edit",
  8436. "version": "2.6.0",
  8437. "source": {
  8438. "type": "git",
  8439. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8440. "reference": "8.x-2.6"
  8441. },
  8442. "dist": {
  8443. "type": "zip",
  8444. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.6.zip",
  8445. "reference": "8.x-2.6",
  8446. "shasum": "0e0f1dab2fa0903cbe2656e754b0d9ed3a935fbb"
  8447. },
  8448. "require": {
  8449. "drupal/core": "^8 || ^9"
  8450. },
  8451. "require-dev": {
  8452. "drupal/views_bulk_operations": "~3.0"
  8453. },
  8454. "suggest": {
  8455. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8456. },
  8457. "type": "drupal-module",
  8458. "extra": {
  8459. "drupal": {
  8460. "version": "8.x-2.6",
  8461. "datestamp": "1623748025",
  8462. "security-coverage": {
  8463. "status": "covered",
  8464. "message": "Covered by Drupal's security advisory policy"
  8465. }
  8466. }
  8467. },
  8468. "notification-url": "https://packages.drupal.org/8/downloads",
  8469. "license": [
  8470. "GPL-2.0+"
  8471. ],
  8472. "authors": [
  8473. {
  8474. "name": "Marcin Grabias",
  8475. "homepage": "https://www.drupal.org/u/graber"
  8476. },
  8477. {
  8478. "name": "benjy",
  8479. "homepage": "https://www.drupal.org/user/1852732"
  8480. }
  8481. ],
  8482. "description": "Allows bulk edition of entity field values.",
  8483. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8484. "support": {
  8485. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8486. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8487. }
  8488. },
  8489. {
  8490. "name": "drupal/views_bulk_operations",
  8491. "version": "4.0.0",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8495. "reference": "4.0.0"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.0.0.zip",
  8500. "reference": "4.0.0",
  8501. "shasum": "d5bb4afeaaead0b8ebc7dd9e1fc6aac464aff4b1"
  8502. },
  8503. "require": {
  8504. "drupal/core": "^8.8 || ^9"
  8505. },
  8506. "require-dev": {
  8507. "drush/drush": "^10"
  8508. },
  8509. "suggest": {
  8510. "drush/drush": "^9 || ^10"
  8511. },
  8512. "type": "drupal-module",
  8513. "extra": {
  8514. "drupal": {
  8515. "version": "4.0.0",
  8516. "datestamp": "1625650987",
  8517. "security-coverage": {
  8518. "status": "covered",
  8519. "message": "Covered by Drupal's security advisory policy"
  8520. }
  8521. },
  8522. "drush": {
  8523. "services": {
  8524. "drush.services.yml": "^9 || ^10"
  8525. }
  8526. }
  8527. },
  8528. "notification-url": "https://packages.drupal.org/8/downloads",
  8529. "license": [
  8530. "GPL-2.0-or-later"
  8531. ],
  8532. "authors": [
  8533. {
  8534. "name": "Marcin Grabias",
  8535. "homepage": "https://www.drupal.org/u/graber"
  8536. },
  8537. {
  8538. "name": "Jon Pugh",
  8539. "homepage": "https://www.drupal.org/user/17028"
  8540. },
  8541. {
  8542. "name": "bojanz",
  8543. "homepage": "https://www.drupal.org/user/86106"
  8544. },
  8545. {
  8546. "name": "infojunkie",
  8547. "homepage": "https://www.drupal.org/user/48424"
  8548. },
  8549. {
  8550. "name": "joelpittet",
  8551. "homepage": "https://www.drupal.org/user/160302"
  8552. }
  8553. ],
  8554. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8555. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8556. "support": {
  8557. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8558. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8559. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8560. }
  8561. },
  8562. {
  8563. "name": "drupal/views_ef_fieldset",
  8564. "version": "1.5.0",
  8565. "source": {
  8566. "type": "git",
  8567. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8568. "reference": "8.x-1.5"
  8569. },
  8570. "dist": {
  8571. "type": "zip",
  8572. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8573. "reference": "8.x-1.5",
  8574. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8575. },
  8576. "require": {
  8577. "drupal/core": "^8 || ^9",
  8578. "php": ">=7"
  8579. },
  8580. "type": "drupal-module",
  8581. "extra": {
  8582. "drupal": {
  8583. "version": "8.x-1.5",
  8584. "datestamp": "1604567512",
  8585. "security-coverage": {
  8586. "status": "covered",
  8587. "message": "Covered by Drupal's security advisory policy"
  8588. }
  8589. },
  8590. "composer-exit-on-patch-failure": true,
  8591. "enable-patching": true,
  8592. "patches": {
  8593. "drupal/core": {
  8594. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8595. }
  8596. }
  8597. },
  8598. "autoload-dev": {
  8599. "psr-4": {
  8600. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8601. }
  8602. },
  8603. "notification-url": "https://packages.drupal.org/8/downloads",
  8604. "scripts": {
  8605. "grumphp": [
  8606. "./vendor/bin/grumphp run"
  8607. ]
  8608. },
  8609. "license": [
  8610. "GPL-2.0+"
  8611. ],
  8612. "authors": [
  8613. {
  8614. "name": "Pol Dellaiera",
  8615. "homepage": "https://www.drupal.org/user/47194",
  8616. "email": "pol.dellaiera@protonmail.com"
  8617. },
  8618. {
  8619. "name": "ciss",
  8620. "homepage": "https://www.drupal.org/user/1632364"
  8621. }
  8622. ],
  8623. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8624. "homepage": "https://drupal.org/project/views_field_formatter",
  8625. "support": {
  8626. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8627. }
  8628. },
  8629. {
  8630. "name": "drupal/webform",
  8631. "version": "6.1.0",
  8632. "source": {
  8633. "type": "git",
  8634. "url": "https://git.drupalcode.org/project/webform.git",
  8635. "reference": "6.1.0"
  8636. },
  8637. "dist": {
  8638. "type": "zip",
  8639. "url": "https://ftp.drupal.org/files/projects/webform-6.1.0.zip",
  8640. "reference": "6.1.0",
  8641. "shasum": "0dae48cc100133a4144ca8219d5506b917888588"
  8642. },
  8643. "require": {
  8644. "drupal/core": "^8.8 || ^9"
  8645. },
  8646. "require-dev": {
  8647. "drupal/address": "~1.0",
  8648. "drupal/bootstrap": "~3.0",
  8649. "drupal/captcha": "~1.0",
  8650. "drupal/chosen": "~3.0",
  8651. "drupal/clientside_validation": "~3.0",
  8652. "drupal/clientside_validation_jquery": "*",
  8653. "drupal/devel": "~3.0",
  8654. "drupal/entity": "~1.0",
  8655. "drupal/entity_print": "~2.0",
  8656. "drupal/gnode": "*",
  8657. "drupal/group": "1.0",
  8658. "drupal/jquery_ui": "~1.0",
  8659. "drupal/jquery_ui_checkboxradio": "~1.0",
  8660. "drupal/jquery_ui_datepicker": "~1.0",
  8661. "drupal/lingotek": "~3.0",
  8662. "drupal/mailsystem": "~4.0",
  8663. "drupal/paragraphs": "~1.0",
  8664. "drupal/select2": "~1.0",
  8665. "drupal/smtp": "~1.0",
  8666. "drupal/styleguide": "~1.0",
  8667. "drupal/telephone_validation": "~2.0",
  8668. "drupal/token": "~1.0",
  8669. "drupal/variationcache": "~1.0",
  8670. "drupal/webform_access": "*",
  8671. "drupal/webform_attachment": "*",
  8672. "drupal/webform_clientside_validation": "*",
  8673. "drupal/webform_devel": "*",
  8674. "drupal/webform_entity_print": "*",
  8675. "drupal/webform_group": "*",
  8676. "drupal/webform_node": "*",
  8677. "drupal/webform_options_limit": "*",
  8678. "drupal/webform_scheduled_email": "*",
  8679. "drupal/webform_share": "*",
  8680. "drupal/webform_ui": "*"
  8681. },
  8682. "suggest": {
  8683. "drupal/jquery_ui_checkboxradio": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.",
  8684. "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained."
  8685. },
  8686. "type": "drupal-module",
  8687. "extra": {
  8688. "drupal": {
  8689. "version": "6.1.0",
  8690. "datestamp": "1635676666",
  8691. "security-coverage": {
  8692. "status": "covered",
  8693. "message": "Covered by Drupal's security advisory policy"
  8694. }
  8695. },
  8696. "drush": {
  8697. "services": {
  8698. "drush.services.yml": "^9 || ^10"
  8699. }
  8700. }
  8701. },
  8702. "notification-url": "https://packages.drupal.org/8/downloads",
  8703. "license": [
  8704. "GPL-2.0-or-later"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Jacob Rockowitz (jrockowitz)",
  8709. "homepage": "https://www.drupal.org/u/jrockowitz",
  8710. "role": "Maintainer"
  8711. },
  8712. {
  8713. "name": "Alexander Trotsenko (bucefal91)",
  8714. "homepage": "https://www.drupal.org/u/bucefal91",
  8715. "role": "Co-maintainer"
  8716. },
  8717. {
  8718. "name": "Contributors",
  8719. "homepage": "https://www.drupal.org/node/7404/committers",
  8720. "role": "Contributor"
  8721. },
  8722. {
  8723. "name": "quicksketch",
  8724. "homepage": "https://www.drupal.org/user/35821"
  8725. },
  8726. {
  8727. "name": "torotil",
  8728. "homepage": "https://www.drupal.org/user/865256"
  8729. }
  8730. ],
  8731. "description": "Enables the creation of webforms and questionnaires.",
  8732. "homepage": "https://drupal.org/project/webform",
  8733. "support": {
  8734. "source": "https://git.drupalcode.org/project/webform",
  8735. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8736. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8737. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8738. }
  8739. },
  8740. {
  8741. "name": "drush/drush",
  8742. "version": "10.6.1",
  8743. "source": {
  8744. "type": "git",
  8745. "url": "https://github.com/drush-ops/drush.git",
  8746. "reference": "d36bca3322555a6f94edc94439873afcde2bbe90"
  8747. },
  8748. "dist": {
  8749. "type": "zip",
  8750. "url": "https://api.github.com/repos/drush-ops/drush/zipball/d36bca3322555a6f94edc94439873afcde2bbe90",
  8751. "reference": "d36bca3322555a6f94edc94439873afcde2bbe90",
  8752. "shasum": ""
  8753. },
  8754. "require": {
  8755. "chi-teck/drupal-code-generator": "^1.32.1",
  8756. "composer/semver": "^1.4 || ^3",
  8757. "consolidation/config": "^1.2",
  8758. "consolidation/filter-via-dot-access-data": "^1",
  8759. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  8760. "consolidation/site-alias": "^3.0.0@stable",
  8761. "consolidation/site-process": "^2.1 || ^4",
  8762. "enlightn/security-checker": "^1",
  8763. "ext-dom": "*",
  8764. "grasmash/yaml-expander": "^1.1.1",
  8765. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8766. "league/container": "^2.5 || ^3.4",
  8767. "php": ">=7.1.3",
  8768. "psr/log": "~1.0",
  8769. "psy/psysh": "~0.6",
  8770. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8771. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8772. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8773. "symfony/yaml": "^3.4 || ^4.0",
  8774. "webflo/drupal-finder": "^1.2",
  8775. "webmozart/path-util": "^2.1.0"
  8776. },
  8777. "conflict": {
  8778. "drupal/migrate_run": "*",
  8779. "drupal/migrate_tools": "<= 5"
  8780. },
  8781. "require-dev": {
  8782. "composer/installers": "^1.7",
  8783. "cweagans/composer-patches": "~1.0",
  8784. "david-garcia/phpwhois": "4.3.0",
  8785. "drupal/alinks": "1.0.0",
  8786. "drupal/core-recommended": "^8.8",
  8787. "phpunit/phpunit": ">=7.5.20",
  8788. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8789. "vlucas/phpdotenv": "^2.4",
  8790. "yoast/phpunit-polyfills": "^0.2.0"
  8791. },
  8792. "bin": [
  8793. "drush"
  8794. ],
  8795. "type": "library",
  8796. "extra": {
  8797. "installer-paths": {
  8798. "sut/core": [
  8799. "type:drupal-core"
  8800. ],
  8801. "sut/libraries/{$name}": [
  8802. "type:drupal-library"
  8803. ],
  8804. "sut/modules/unish/{$name}": [
  8805. "drupal/devel"
  8806. ],
  8807. "sut/themes/unish/{$name}": [
  8808. "drupal/empty_theme"
  8809. ],
  8810. "sut/modules/contrib/{$name}": [
  8811. "type:drupal-module"
  8812. ],
  8813. "sut/profiles/contrib/{$name}": [
  8814. "type:drupal-profile"
  8815. ],
  8816. "sut/themes/contrib/{$name}": [
  8817. "type:drupal-theme"
  8818. ],
  8819. "sut/drush/contrib/{$name}": [
  8820. "type:drupal-drush"
  8821. ]
  8822. }
  8823. },
  8824. "autoload": {
  8825. "psr-4": {
  8826. "Drush\\": "src/",
  8827. "Drush\\Internal\\": "src/internal-forks"
  8828. }
  8829. },
  8830. "notification-url": "https://packagist.org/downloads/",
  8831. "license": [
  8832. "GPL-2.0-or-later"
  8833. ],
  8834. "authors": [
  8835. {
  8836. "name": "Moshe Weitzman",
  8837. "email": "weitzman@tejasa.com"
  8838. },
  8839. {
  8840. "name": "Owen Barton",
  8841. "email": "drupal@owenbarton.com"
  8842. },
  8843. {
  8844. "name": "Greg Anderson",
  8845. "email": "greg.1.anderson@greenknowe.org"
  8846. },
  8847. {
  8848. "name": "Jonathan Araña Cruz",
  8849. "email": "jonhattan@faita.net"
  8850. },
  8851. {
  8852. "name": "Jonathan Hedstrom",
  8853. "email": "jhedstrom@gmail.com"
  8854. },
  8855. {
  8856. "name": "Christopher Gervais",
  8857. "email": "chris@ergonlogic.com"
  8858. },
  8859. {
  8860. "name": "Dave Reid",
  8861. "email": "dave@davereid.net"
  8862. },
  8863. {
  8864. "name": "Damian Lee",
  8865. "email": "damiankloip@googlemail.com"
  8866. }
  8867. ],
  8868. "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.",
  8869. "homepage": "http://www.drush.org",
  8870. "support": {
  8871. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8872. "irc": "irc://irc.freenode.org/drush",
  8873. "issues": "https://github.com/drush-ops/drush/issues",
  8874. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8875. "source": "https://github.com/drush-ops/drush/tree/10.6.1"
  8876. },
  8877. "funding": [
  8878. {
  8879. "url": "https://github.com/weitzman",
  8880. "type": "github"
  8881. }
  8882. ],
  8883. "time": "2021-10-05T11:14:14+00:00"
  8884. },
  8885. {
  8886. "name": "egulias/email-validator",
  8887. "version": "2.1.25",
  8888. "source": {
  8889. "type": "git",
  8890. "url": "https://github.com/egulias/EmailValidator.git",
  8891. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  8892. },
  8893. "dist": {
  8894. "type": "zip",
  8895. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  8896. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  8897. "shasum": ""
  8898. },
  8899. "require": {
  8900. "doctrine/lexer": "^1.0.1",
  8901. "php": ">=5.5",
  8902. "symfony/polyfill-intl-idn": "^1.10"
  8903. },
  8904. "require-dev": {
  8905. "dominicsayers/isemail": "^3.0.7",
  8906. "phpunit/phpunit": "^4.8.36|^7.5.15",
  8907. "satooshi/php-coveralls": "^1.0.1"
  8908. },
  8909. "suggest": {
  8910. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8911. },
  8912. "type": "library",
  8913. "extra": {
  8914. "branch-alias": {
  8915. "dev-master": "2.1.x-dev"
  8916. }
  8917. },
  8918. "autoload": {
  8919. "psr-4": {
  8920. "Egulias\\EmailValidator\\": "src"
  8921. }
  8922. },
  8923. "notification-url": "https://packagist.org/downloads/",
  8924. "license": [
  8925. "MIT"
  8926. ],
  8927. "authors": [
  8928. {
  8929. "name": "Eduardo Gulias Davis"
  8930. }
  8931. ],
  8932. "description": "A library for validating emails against several RFCs",
  8933. "homepage": "https://github.com/egulias/EmailValidator",
  8934. "keywords": [
  8935. "email",
  8936. "emailvalidation",
  8937. "emailvalidator",
  8938. "validation",
  8939. "validator"
  8940. ],
  8941. "support": {
  8942. "issues": "https://github.com/egulias/EmailValidator/issues",
  8943. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  8944. },
  8945. "funding": [
  8946. {
  8947. "url": "https://github.com/egulias",
  8948. "type": "github"
  8949. }
  8950. ],
  8951. "time": "2020-12-29T14:50:06+00:00"
  8952. },
  8953. {
  8954. "name": "enlightn/security-checker",
  8955. "version": "v1.9.0",
  8956. "source": {
  8957. "type": "git",
  8958. "url": "https://github.com/enlightn/security-checker.git",
  8959. "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1"
  8960. },
  8961. "dist": {
  8962. "type": "zip",
  8963. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/dc5bce653fa4d9c792e9dcffa728c0642847c1e1",
  8964. "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1",
  8965. "shasum": ""
  8966. },
  8967. "require": {
  8968. "ext-json": "*",
  8969. "guzzlehttp/guzzle": "^6.3|^7.0",
  8970. "php": ">=5.6",
  8971. "symfony/console": "^3.4|^4|^5",
  8972. "symfony/finder": "^3|^4|^5",
  8973. "symfony/process": "^3.4|^4|^5",
  8974. "symfony/yaml": "^3.4|^4|^5"
  8975. },
  8976. "require-dev": {
  8977. "ext-zip": "*",
  8978. "friendsofphp/php-cs-fixer": "^2.18",
  8979. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  8980. },
  8981. "bin": [
  8982. "security-checker"
  8983. ],
  8984. "type": "library",
  8985. "autoload": {
  8986. "psr-4": {
  8987. "Enlightn\\SecurityChecker\\": "src"
  8988. }
  8989. },
  8990. "notification-url": "https://packagist.org/downloads/",
  8991. "license": [
  8992. "MIT"
  8993. ],
  8994. "authors": [
  8995. {
  8996. "name": "Paras Malhotra",
  8997. "email": "paras@laravel-enlightn.com"
  8998. },
  8999. {
  9000. "name": "Miguel Piedrafita",
  9001. "email": "soy@miguelpiedrafita.com"
  9002. }
  9003. ],
  9004. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  9005. "keywords": [
  9006. "package",
  9007. "php",
  9008. "scanner",
  9009. "security",
  9010. "security advisories",
  9011. "vulnerability scanner"
  9012. ],
  9013. "support": {
  9014. "issues": "https://github.com/enlightn/security-checker/issues",
  9015. "source": "https://github.com/enlightn/security-checker/tree/v1.9.0"
  9016. },
  9017. "time": "2021-05-06T09:03:35+00:00"
  9018. },
  9019. {
  9020. "name": "fileeye/mimemap",
  9021. "version": "1.2.0",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/FileEye/MimeMap.git",
  9025. "reference": "b5383beaa03eb613dfb922c9d935c3b94945397a"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/b5383beaa03eb613dfb922c9d935c3b94945397a",
  9030. "reference": "b5383beaa03eb613dfb922c9d935c3b94945397a",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "composer-runtime-api": "^2.0.0",
  9035. "php": ">=5.6"
  9036. },
  9037. "require-dev": {
  9038. "phpunit/phpunit": "^5 | ^6 | ^7 | ^8 | ^9",
  9039. "sebastian/comparator": "*",
  9040. "sebastian/diff": "*",
  9041. "squizlabs/php_codesniffer": "*",
  9042. "symfony/console": "*",
  9043. "symfony/filesystem": "*",
  9044. "symfony/var-dumper": "*",
  9045. "symfony/yaml": "*"
  9046. },
  9047. "bin": [
  9048. "bin/fileeye-mimemap"
  9049. ],
  9050. "type": "library",
  9051. "extra": {
  9052. "branch-alias": {
  9053. "dev-master": "1.x-dev"
  9054. }
  9055. },
  9056. "autoload": {
  9057. "psr-4": {
  9058. "FileEye\\MimeMap\\": "src/"
  9059. }
  9060. },
  9061. "notification-url": "https://packagist.org/downloads/",
  9062. "license": [
  9063. "LGPL-3.0-or-later"
  9064. ],
  9065. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  9066. "homepage": "https://github.com/FileEye/MimeMap",
  9067. "keywords": [
  9068. "mime",
  9069. "mime-database",
  9070. "mime-parser",
  9071. "mime-type"
  9072. ],
  9073. "support": {
  9074. "issues": "https://github.com/FileEye/MimeMap/issues",
  9075. "source": "https://github.com/FileEye/MimeMap/tree/1.2.0"
  9076. },
  9077. "time": "2021-09-21T16:22:01+00:00"
  9078. },
  9079. {
  9080. "name": "grasmash/expander",
  9081. "version": "1.0.0",
  9082. "source": {
  9083. "type": "git",
  9084. "url": "https://github.com/grasmash/expander.git",
  9085. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  9086. },
  9087. "dist": {
  9088. "type": "zip",
  9089. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  9090. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  9091. "shasum": ""
  9092. },
  9093. "require": {
  9094. "dflydev/dot-access-data": "^1.1.0",
  9095. "php": ">=5.4"
  9096. },
  9097. "require-dev": {
  9098. "greg-1-anderson/composer-test-scenarios": "^1",
  9099. "phpunit/phpunit": "^4|^5.5.4",
  9100. "satooshi/php-coveralls": "^1.0.2|dev-master",
  9101. "squizlabs/php_codesniffer": "^2.7"
  9102. },
  9103. "type": "library",
  9104. "extra": {
  9105. "branch-alias": {
  9106. "dev-master": "1.x-dev"
  9107. }
  9108. },
  9109. "autoload": {
  9110. "psr-4": {
  9111. "Grasmash\\Expander\\": "src/"
  9112. }
  9113. },
  9114. "notification-url": "https://packagist.org/downloads/",
  9115. "license": [
  9116. "MIT"
  9117. ],
  9118. "authors": [
  9119. {
  9120. "name": "Matthew Grasmick"
  9121. }
  9122. ],
  9123. "description": "Expands internal property references in PHP arrays file.",
  9124. "support": {
  9125. "issues": "https://github.com/grasmash/expander/issues",
  9126. "source": "https://github.com/grasmash/expander/tree/master"
  9127. },
  9128. "time": "2017-12-21T22:14:55+00:00"
  9129. },
  9130. {
  9131. "name": "grasmash/yaml-expander",
  9132. "version": "1.4.0",
  9133. "source": {
  9134. "type": "git",
  9135. "url": "https://github.com/grasmash/yaml-expander.git",
  9136. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  9137. },
  9138. "dist": {
  9139. "type": "zip",
  9140. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  9141. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  9142. "shasum": ""
  9143. },
  9144. "require": {
  9145. "dflydev/dot-access-data": "^1.1.0",
  9146. "php": ">=5.4",
  9147. "symfony/yaml": "^2.8.11|^3|^4"
  9148. },
  9149. "require-dev": {
  9150. "greg-1-anderson/composer-test-scenarios": "^1",
  9151. "phpunit/phpunit": "^4.8|^5.5.4",
  9152. "satooshi/php-coveralls": "^1.0.2|dev-master",
  9153. "squizlabs/php_codesniffer": "^2.7"
  9154. },
  9155. "type": "library",
  9156. "extra": {
  9157. "branch-alias": {
  9158. "dev-master": "1.x-dev"
  9159. }
  9160. },
  9161. "autoload": {
  9162. "psr-4": {
  9163. "Grasmash\\YamlExpander\\": "src/"
  9164. }
  9165. },
  9166. "notification-url": "https://packagist.org/downloads/",
  9167. "license": [
  9168. "MIT"
  9169. ],
  9170. "authors": [
  9171. {
  9172. "name": "Matthew Grasmick"
  9173. }
  9174. ],
  9175. "description": "Expands internal property references in a yaml file.",
  9176. "support": {
  9177. "issues": "https://github.com/grasmash/yaml-expander/issues",
  9178. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  9179. },
  9180. "time": "2017-12-16T16:06:03+00:00"
  9181. },
  9182. {
  9183. "name": "guzzlehttp/guzzle",
  9184. "version": "6.5.5",
  9185. "source": {
  9186. "type": "git",
  9187. "url": "https://github.com/guzzle/guzzle.git",
  9188. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  9189. },
  9190. "dist": {
  9191. "type": "zip",
  9192. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  9193. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  9194. "shasum": ""
  9195. },
  9196. "require": {
  9197. "ext-json": "*",
  9198. "guzzlehttp/promises": "^1.0",
  9199. "guzzlehttp/psr7": "^1.6.1",
  9200. "php": ">=5.5",
  9201. "symfony/polyfill-intl-idn": "^1.17.0"
  9202. },
  9203. "require-dev": {
  9204. "ext-curl": "*",
  9205. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  9206. "psr/log": "^1.1"
  9207. },
  9208. "suggest": {
  9209. "psr/log": "Required for using the Log middleware"
  9210. },
  9211. "type": "library",
  9212. "extra": {
  9213. "branch-alias": {
  9214. "dev-master": "6.5-dev"
  9215. }
  9216. },
  9217. "autoload": {
  9218. "psr-4": {
  9219. "GuzzleHttp\\": "src/"
  9220. },
  9221. "files": [
  9222. "src/functions_include.php"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "MIT"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Michael Dowling",
  9232. "email": "mtdowling@gmail.com",
  9233. "homepage": "https://github.com/mtdowling"
  9234. }
  9235. ],
  9236. "description": "Guzzle is a PHP HTTP client library",
  9237. "homepage": "http://guzzlephp.org/",
  9238. "keywords": [
  9239. "client",
  9240. "curl",
  9241. "framework",
  9242. "http",
  9243. "http client",
  9244. "rest",
  9245. "web service"
  9246. ],
  9247. "support": {
  9248. "issues": "https://github.com/guzzle/guzzle/issues",
  9249. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  9250. },
  9251. "time": "2020-06-16T21:01:06+00:00"
  9252. },
  9253. {
  9254. "name": "guzzlehttp/promises",
  9255. "version": "1.4.1",
  9256. "source": {
  9257. "type": "git",
  9258. "url": "https://github.com/guzzle/promises.git",
  9259. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  9260. },
  9261. "dist": {
  9262. "type": "zip",
  9263. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  9264. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  9265. "shasum": ""
  9266. },
  9267. "require": {
  9268. "php": ">=5.5"
  9269. },
  9270. "require-dev": {
  9271. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  9272. },
  9273. "type": "library",
  9274. "extra": {
  9275. "branch-alias": {
  9276. "dev-master": "1.4-dev"
  9277. }
  9278. },
  9279. "autoload": {
  9280. "psr-4": {
  9281. "GuzzleHttp\\Promise\\": "src/"
  9282. },
  9283. "files": [
  9284. "src/functions_include.php"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "MIT"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Michael Dowling",
  9294. "email": "mtdowling@gmail.com",
  9295. "homepage": "https://github.com/mtdowling"
  9296. }
  9297. ],
  9298. "description": "Guzzle promises library",
  9299. "keywords": [
  9300. "promise"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/guzzle/promises/issues",
  9304. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  9305. },
  9306. "time": "2021-03-07T09:25:29+00:00"
  9307. },
  9308. {
  9309. "name": "guzzlehttp/psr7",
  9310. "version": "1.8.2",
  9311. "source": {
  9312. "type": "git",
  9313. "url": "https://github.com/guzzle/psr7.git",
  9314. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  9315. },
  9316. "dist": {
  9317. "type": "zip",
  9318. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  9319. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  9320. "shasum": ""
  9321. },
  9322. "require": {
  9323. "php": ">=5.4.0",
  9324. "psr/http-message": "~1.0",
  9325. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  9326. },
  9327. "provide": {
  9328. "psr/http-message-implementation": "1.0"
  9329. },
  9330. "require-dev": {
  9331. "ext-zlib": "*",
  9332. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  9333. },
  9334. "suggest": {
  9335. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  9336. },
  9337. "type": "library",
  9338. "extra": {
  9339. "branch-alias": {
  9340. "dev-master": "1.7-dev"
  9341. }
  9342. },
  9343. "autoload": {
  9344. "psr-4": {
  9345. "GuzzleHttp\\Psr7\\": "src/"
  9346. },
  9347. "files": [
  9348. "src/functions_include.php"
  9349. ]
  9350. },
  9351. "notification-url": "https://packagist.org/downloads/",
  9352. "license": [
  9353. "MIT"
  9354. ],
  9355. "authors": [
  9356. {
  9357. "name": "Michael Dowling",
  9358. "email": "mtdowling@gmail.com",
  9359. "homepage": "https://github.com/mtdowling"
  9360. },
  9361. {
  9362. "name": "Tobias Schultze",
  9363. "homepage": "https://github.com/Tobion"
  9364. }
  9365. ],
  9366. "description": "PSR-7 message implementation that also provides common utility methods",
  9367. "keywords": [
  9368. "http",
  9369. "message",
  9370. "psr-7",
  9371. "request",
  9372. "response",
  9373. "stream",
  9374. "uri",
  9375. "url"
  9376. ],
  9377. "support": {
  9378. "issues": "https://github.com/guzzle/psr7/issues",
  9379. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  9380. },
  9381. "time": "2021-04-26T09:17:50+00:00"
  9382. },
  9383. {
  9384. "name": "kint-php/kint",
  9385. "version": "3.3",
  9386. "source": {
  9387. "type": "git",
  9388. "url": "https://github.com/kint-php/kint.git",
  9389. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  9390. },
  9391. "dist": {
  9392. "type": "zip",
  9393. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9394. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9395. "shasum": ""
  9396. },
  9397. "require": {
  9398. "php": ">=5.3.6"
  9399. },
  9400. "require-dev": {
  9401. "friendsofphp/php-cs-fixer": "^2.0",
  9402. "phpunit/phpunit": "^4.0",
  9403. "seld/phar-utils": "^1.0",
  9404. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  9405. "vimeo/psalm": "^3.0"
  9406. },
  9407. "suggest": {
  9408. "ext-ctype": "Simple data type tests",
  9409. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  9410. "ext-mbstring": "Provides string encoding detection",
  9411. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  9412. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  9413. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  9414. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  9415. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  9416. },
  9417. "type": "library",
  9418. "autoload": {
  9419. "files": [
  9420. "init.php"
  9421. ],
  9422. "psr-4": {
  9423. "Kint\\": "src/"
  9424. }
  9425. },
  9426. "notification-url": "https://packagist.org/downloads/",
  9427. "license": [
  9428. "MIT"
  9429. ],
  9430. "authors": [
  9431. {
  9432. "name": "Jonathan Vollebregt",
  9433. "homepage": "https://github.com/jnvsor"
  9434. },
  9435. {
  9436. "name": "Rokas Šleinius",
  9437. "homepage": "https://github.com/raveren"
  9438. },
  9439. {
  9440. "name": "Contributors",
  9441. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  9442. }
  9443. ],
  9444. "description": "Kint - debugging tool for PHP developers",
  9445. "homepage": "https://kint-php.github.io/kint/",
  9446. "keywords": [
  9447. "debug",
  9448. "kint",
  9449. "php"
  9450. ],
  9451. "support": {
  9452. "issues": "https://github.com/kint-php/kint/issues",
  9453. "source": "https://github.com/kint-php/kint/tree/master"
  9454. },
  9455. "time": "2019-10-17T18:05:24+00:00"
  9456. },
  9457. {
  9458. "name": "laminas/laminas-diactoros",
  9459. "version": "2.6.0",
  9460. "source": {
  9461. "type": "git",
  9462. "url": "https://github.com/laminas/laminas-diactoros.git",
  9463. "reference": "7d2034110ae18afe05050b796a3ee4b3fe177876"
  9464. },
  9465. "dist": {
  9466. "type": "zip",
  9467. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/7d2034110ae18afe05050b796a3ee4b3fe177876",
  9468. "reference": "7d2034110ae18afe05050b796a3ee4b3fe177876",
  9469. "shasum": ""
  9470. },
  9471. "require": {
  9472. "laminas/laminas-zendframework-bridge": "^1.0",
  9473. "php": "^7.3 || ~8.0.0",
  9474. "psr/http-factory": "^1.0",
  9475. "psr/http-message": "^1.0"
  9476. },
  9477. "conflict": {
  9478. "phpspec/prophecy": "<1.9.0"
  9479. },
  9480. "provide": {
  9481. "psr/http-factory-implementation": "1.0",
  9482. "psr/http-message-implementation": "1.0"
  9483. },
  9484. "replace": {
  9485. "zendframework/zend-diactoros": "^2.2.1"
  9486. },
  9487. "require-dev": {
  9488. "ext-curl": "*",
  9489. "ext-dom": "*",
  9490. "ext-gd": "*",
  9491. "ext-libxml": "*",
  9492. "http-interop/http-factory-tests": "^0.8.0",
  9493. "laminas/laminas-coding-standard": "~1.0.0",
  9494. "php-http/psr7-integration-tests": "^1.1",
  9495. "phpspec/prophecy-phpunit": "^2.0",
  9496. "phpunit/phpunit": "^9.1",
  9497. "psalm/plugin-phpunit": "^0.14.0",
  9498. "vimeo/psalm": "^4.3"
  9499. },
  9500. "type": "library",
  9501. "extra": {
  9502. "laminas": {
  9503. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  9504. "module": "Laminas\\Diactoros"
  9505. }
  9506. },
  9507. "autoload": {
  9508. "files": [
  9509. "src/functions/create_uploaded_file.php",
  9510. "src/functions/marshal_headers_from_sapi.php",
  9511. "src/functions/marshal_method_from_sapi.php",
  9512. "src/functions/marshal_protocol_version_from_sapi.php",
  9513. "src/functions/marshal_uri_from_sapi.php",
  9514. "src/functions/normalize_server.php",
  9515. "src/functions/normalize_uploaded_files.php",
  9516. "src/functions/parse_cookie_header.php",
  9517. "src/functions/create_uploaded_file.legacy.php",
  9518. "src/functions/marshal_headers_from_sapi.legacy.php",
  9519. "src/functions/marshal_method_from_sapi.legacy.php",
  9520. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  9521. "src/functions/marshal_uri_from_sapi.legacy.php",
  9522. "src/functions/normalize_server.legacy.php",
  9523. "src/functions/normalize_uploaded_files.legacy.php",
  9524. "src/functions/parse_cookie_header.legacy.php"
  9525. ],
  9526. "psr-4": {
  9527. "Laminas\\Diactoros\\": "src/"
  9528. }
  9529. },
  9530. "notification-url": "https://packagist.org/downloads/",
  9531. "license": [
  9532. "BSD-3-Clause"
  9533. ],
  9534. "description": "PSR HTTP Message implementations",
  9535. "homepage": "https://laminas.dev",
  9536. "keywords": [
  9537. "http",
  9538. "laminas",
  9539. "psr",
  9540. "psr-17",
  9541. "psr-7"
  9542. ],
  9543. "support": {
  9544. "chat": "https://laminas.dev/chat",
  9545. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  9546. "forum": "https://discourse.laminas.dev",
  9547. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  9548. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  9549. "source": "https://github.com/laminas/laminas-diactoros"
  9550. },
  9551. "funding": [
  9552. {
  9553. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9554. "type": "community_bridge"
  9555. }
  9556. ],
  9557. "time": "2021-05-18T14:41:54+00:00"
  9558. },
  9559. {
  9560. "name": "laminas/laminas-escaper",
  9561. "version": "2.7.0",
  9562. "source": {
  9563. "type": "git",
  9564. "url": "https://github.com/laminas/laminas-escaper.git",
  9565. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  9566. },
  9567. "dist": {
  9568. "type": "zip",
  9569. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  9570. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  9571. "shasum": ""
  9572. },
  9573. "require": {
  9574. "laminas/laminas-zendframework-bridge": "^1.0",
  9575. "php": "^7.3 || ~8.0.0"
  9576. },
  9577. "replace": {
  9578. "zendframework/zend-escaper": "^2.6.1"
  9579. },
  9580. "require-dev": {
  9581. "laminas/laminas-coding-standard": "~1.0.0",
  9582. "phpunit/phpunit": "^9.3",
  9583. "psalm/plugin-phpunit": "^0.12.2",
  9584. "vimeo/psalm": "^3.16"
  9585. },
  9586. "suggest": {
  9587. "ext-iconv": "*",
  9588. "ext-mbstring": "*"
  9589. },
  9590. "type": "library",
  9591. "autoload": {
  9592. "psr-4": {
  9593. "Laminas\\Escaper\\": "src/"
  9594. }
  9595. },
  9596. "notification-url": "https://packagist.org/downloads/",
  9597. "license": [
  9598. "BSD-3-Clause"
  9599. ],
  9600. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9601. "homepage": "https://laminas.dev",
  9602. "keywords": [
  9603. "escaper",
  9604. "laminas"
  9605. ],
  9606. "support": {
  9607. "chat": "https://laminas.dev/chat",
  9608. "docs": "https://docs.laminas.dev/laminas-escaper/",
  9609. "forum": "https://discourse.laminas.dev",
  9610. "issues": "https://github.com/laminas/laminas-escaper/issues",
  9611. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  9612. "source": "https://github.com/laminas/laminas-escaper"
  9613. },
  9614. "funding": [
  9615. {
  9616. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9617. "type": "community_bridge"
  9618. }
  9619. ],
  9620. "time": "2020-11-17T21:26:43+00:00"
  9621. },
  9622. {
  9623. "name": "laminas/laminas-feed",
  9624. "version": "2.14.1",
  9625. "source": {
  9626. "type": "git",
  9627. "url": "https://github.com/laminas/laminas-feed.git",
  9628. "reference": "463fdae515fba30633906098c258d3b2c733c15c"
  9629. },
  9630. "dist": {
  9631. "type": "zip",
  9632. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/463fdae515fba30633906098c258d3b2c733c15c",
  9633. "reference": "463fdae515fba30633906098c258d3b2c733c15c",
  9634. "shasum": ""
  9635. },
  9636. "require": {
  9637. "ext-dom": "*",
  9638. "ext-libxml": "*",
  9639. "laminas/laminas-escaper": "^2.5.2",
  9640. "laminas/laminas-stdlib": "^3.2.1",
  9641. "laminas/laminas-zendframework-bridge": "^1.0",
  9642. "php": "^7.3 || ~8.0.0"
  9643. },
  9644. "conflict": {
  9645. "laminas/laminas-servicemanager": "<3.3"
  9646. },
  9647. "replace": {
  9648. "zendframework/zend-feed": "^2.12.0"
  9649. },
  9650. "require-dev": {
  9651. "laminas/laminas-cache": "^2.7.2",
  9652. "laminas/laminas-coding-standard": "~1.0.0",
  9653. "laminas/laminas-db": "^2.8.2",
  9654. "laminas/laminas-http": "^2.7",
  9655. "laminas/laminas-servicemanager": "^3.3",
  9656. "laminas/laminas-validator": "^2.10.1",
  9657. "phpunit/phpunit": "^9.3",
  9658. "psalm/plugin-phpunit": "^0.13.0",
  9659. "psr/http-message": "^1.0.1",
  9660. "vimeo/psalm": "^4.1"
  9661. },
  9662. "suggest": {
  9663. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  9664. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  9665. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  9666. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  9667. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  9668. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  9669. },
  9670. "type": "library",
  9671. "autoload": {
  9672. "psr-4": {
  9673. "Laminas\\Feed\\": "src/"
  9674. }
  9675. },
  9676. "notification-url": "https://packagist.org/downloads/",
  9677. "license": [
  9678. "BSD-3-Clause"
  9679. ],
  9680. "description": "provides functionality for consuming RSS and Atom feeds",
  9681. "homepage": "https://laminas.dev",
  9682. "keywords": [
  9683. "feed",
  9684. "laminas"
  9685. ],
  9686. "support": {
  9687. "chat": "https://laminas.dev/chat",
  9688. "docs": "https://docs.laminas.dev/laminas-feed/",
  9689. "forum": "https://discourse.laminas.dev",
  9690. "issues": "https://github.com/laminas/laminas-feed/issues",
  9691. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  9692. "source": "https://github.com/laminas/laminas-feed"
  9693. },
  9694. "funding": [
  9695. {
  9696. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9697. "type": "community_bridge"
  9698. }
  9699. ],
  9700. "time": "2021-04-01T19:26:09+00:00"
  9701. },
  9702. {
  9703. "name": "laminas/laminas-stdlib",
  9704. "version": "3.3.1",
  9705. "source": {
  9706. "type": "git",
  9707. "url": "https://github.com/laminas/laminas-stdlib.git",
  9708. "reference": "d81c7ffe602ed0e6ecb18691019111c0f4bf1efe"
  9709. },
  9710. "dist": {
  9711. "type": "zip",
  9712. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/d81c7ffe602ed0e6ecb18691019111c0f4bf1efe",
  9713. "reference": "d81c7ffe602ed0e6ecb18691019111c0f4bf1efe",
  9714. "shasum": ""
  9715. },
  9716. "require": {
  9717. "laminas/laminas-zendframework-bridge": "^1.0",
  9718. "php": "^7.3 || ^8.0"
  9719. },
  9720. "replace": {
  9721. "zendframework/zend-stdlib": "^3.2.1"
  9722. },
  9723. "require-dev": {
  9724. "laminas/laminas-coding-standard": "~1.0.0",
  9725. "phpbench/phpbench": "^0.17.1",
  9726. "phpunit/phpunit": "~9.3.7"
  9727. },
  9728. "type": "library",
  9729. "autoload": {
  9730. "psr-4": {
  9731. "Laminas\\Stdlib\\": "src/"
  9732. }
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "BSD-3-Clause"
  9737. ],
  9738. "description": "SPL extensions, array utilities, error handlers, and more",
  9739. "homepage": "https://laminas.dev",
  9740. "keywords": [
  9741. "laminas",
  9742. "stdlib"
  9743. ],
  9744. "support": {
  9745. "chat": "https://laminas.dev/chat",
  9746. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  9747. "forum": "https://discourse.laminas.dev",
  9748. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  9749. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  9750. "source": "https://github.com/laminas/laminas-stdlib"
  9751. },
  9752. "funding": [
  9753. {
  9754. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9755. "type": "community_bridge"
  9756. }
  9757. ],
  9758. "time": "2020-11-19T20:18:59+00:00"
  9759. },
  9760. {
  9761. "name": "laminas/laminas-zendframework-bridge",
  9762. "version": "1.2.0",
  9763. "source": {
  9764. "type": "git",
  9765. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  9766. "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32"
  9767. },
  9768. "dist": {
  9769. "type": "zip",
  9770. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6cccbddfcfc742eb02158d6137ca5687d92cee32",
  9771. "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32",
  9772. "shasum": ""
  9773. },
  9774. "require": {
  9775. "php": "^7.3 || ^8.0"
  9776. },
  9777. "require-dev": {
  9778. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  9779. "psalm/plugin-phpunit": "^0.15.1",
  9780. "squizlabs/php_codesniffer": "^3.5",
  9781. "vimeo/psalm": "^4.6"
  9782. },
  9783. "type": "library",
  9784. "extra": {
  9785. "laminas": {
  9786. "module": "Laminas\\ZendFrameworkBridge"
  9787. }
  9788. },
  9789. "autoload": {
  9790. "files": [
  9791. "src/autoload.php"
  9792. ],
  9793. "psr-4": {
  9794. "Laminas\\ZendFrameworkBridge\\": "src//"
  9795. }
  9796. },
  9797. "notification-url": "https://packagist.org/downloads/",
  9798. "license": [
  9799. "BSD-3-Clause"
  9800. ],
  9801. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  9802. "keywords": [
  9803. "ZendFramework",
  9804. "autoloading",
  9805. "laminas",
  9806. "zf"
  9807. ],
  9808. "support": {
  9809. "forum": "https://discourse.laminas.dev/",
  9810. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  9811. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  9812. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  9813. },
  9814. "funding": [
  9815. {
  9816. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9817. "type": "community_bridge"
  9818. }
  9819. ],
  9820. "time": "2021-02-25T21:54:58+00:00"
  9821. },
  9822. {
  9823. "name": "league/container",
  9824. "version": "3.4.1",
  9825. "source": {
  9826. "type": "git",
  9827. "url": "https://github.com/thephpleague/container.git",
  9828. "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd"
  9829. },
  9830. "dist": {
  9831. "type": "zip",
  9832. "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
  9833. "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
  9834. "shasum": ""
  9835. },
  9836. "require": {
  9837. "php": "^7.0 || ^8.0",
  9838. "psr/container": "^1.0.0"
  9839. },
  9840. "provide": {
  9841. "psr/container-implementation": "^1.0"
  9842. },
  9843. "replace": {
  9844. "orno/di": "~2.0"
  9845. },
  9846. "require-dev": {
  9847. "phpunit/phpunit": "^6.0 || ^7.0",
  9848. "roave/security-advisories": "dev-latest",
  9849. "scrutinizer/ocular": "^1.8",
  9850. "squizlabs/php_codesniffer": "^3.5"
  9851. },
  9852. "type": "library",
  9853. "extra": {
  9854. "branch-alias": {
  9855. "dev-master": "3.x-dev",
  9856. "dev-3.x": "3.x-dev",
  9857. "dev-2.x": "2.x-dev",
  9858. "dev-1.x": "1.x-dev"
  9859. }
  9860. },
  9861. "autoload": {
  9862. "psr-4": {
  9863. "League\\Container\\": "src"
  9864. }
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "Phil Bennett",
  9873. "email": "philipobenito@gmail.com",
  9874. "homepage": "http://www.philipobenito.com",
  9875. "role": "Developer"
  9876. }
  9877. ],
  9878. "description": "A fast and intuitive dependency injection container.",
  9879. "homepage": "https://github.com/thephpleague/container",
  9880. "keywords": [
  9881. "container",
  9882. "dependency",
  9883. "di",
  9884. "injection",
  9885. "league",
  9886. "provider",
  9887. "service"
  9888. ],
  9889. "support": {
  9890. "issues": "https://github.com/thephpleague/container/issues",
  9891. "source": "https://github.com/thephpleague/container/tree/3.4.1"
  9892. },
  9893. "funding": [
  9894. {
  9895. "url": "https://github.com/philipobenito",
  9896. "type": "github"
  9897. }
  9898. ],
  9899. "time": "2021-07-09T08:23:52+00:00"
  9900. },
  9901. {
  9902. "name": "lsolesen/pel",
  9903. "version": "0.9.10",
  9904. "source": {
  9905. "type": "git",
  9906. "url": "https://github.com/pel/pel.git",
  9907. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9"
  9908. },
  9909. "dist": {
  9910. "type": "zip",
  9911. "url": "https://api.github.com/repos/pel/pel/zipball/04ecb8a29e4b1628414193b0df9294232a44f8a9",
  9912. "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9",
  9913. "shasum": ""
  9914. },
  9915. "require": {
  9916. "php": ">=7.1.0"
  9917. },
  9918. "require-dev": {
  9919. "ext-exif": "*",
  9920. "ext-gd": "*",
  9921. "php-coveralls/php-coveralls": ">2.4",
  9922. "squizlabs/php_codesniffer": ">3.5",
  9923. "symfony/phpunit-bridge": "^4 || ^5"
  9924. },
  9925. "type": "library",
  9926. "autoload": {
  9927. "psr-4": {
  9928. "lsolesen\\pel\\": "src/"
  9929. }
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "GPL-2.0"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Lars Olesen",
  9938. "email": "lars@intraface.dk",
  9939. "homepage": "http://intraface.dk",
  9940. "role": "Developer"
  9941. },
  9942. {
  9943. "name": "Martin Geisler",
  9944. "email": "martin@geisler.net",
  9945. "homepage": "http://geisler.net",
  9946. "role": "Developer"
  9947. }
  9948. ],
  9949. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9950. "homepage": "http://pel.github.com/pel/",
  9951. "keywords": [
  9952. "exif",
  9953. "image"
  9954. ],
  9955. "support": {
  9956. "issues": "https://github.com/pel/pel/issues",
  9957. "source": "https://github.com/pel/pel/tree/0.9.10"
  9958. },
  9959. "time": "2021-01-01T22:15:50+00:00"
  9960. },
  9961. {
  9962. "name": "masterminds/html5",
  9963. "version": "2.7.4",
  9964. "source": {
  9965. "type": "git",
  9966. "url": "https://github.com/Masterminds/html5-php.git",
  9967. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  9968. },
  9969. "dist": {
  9970. "type": "zip",
  9971. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  9972. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  9973. "shasum": ""
  9974. },
  9975. "require": {
  9976. "ext-ctype": "*",
  9977. "ext-dom": "*",
  9978. "ext-libxml": "*",
  9979. "php": ">=5.3.0"
  9980. },
  9981. "require-dev": {
  9982. "phpunit/phpunit": "^4.8.35"
  9983. },
  9984. "type": "library",
  9985. "extra": {
  9986. "branch-alias": {
  9987. "dev-master": "2.7-dev"
  9988. }
  9989. },
  9990. "autoload": {
  9991. "psr-4": {
  9992. "Masterminds\\": "src"
  9993. }
  9994. },
  9995. "notification-url": "https://packagist.org/downloads/",
  9996. "license": [
  9997. "MIT"
  9998. ],
  9999. "authors": [
  10000. {
  10001. "name": "Matt Butcher",
  10002. "email": "technosophos@gmail.com"
  10003. },
  10004. {
  10005. "name": "Matt Farina",
  10006. "email": "matt@mattfarina.com"
  10007. },
  10008. {
  10009. "name": "Asmir Mustafic",
  10010. "email": "goetas@gmail.com"
  10011. }
  10012. ],
  10013. "description": "An HTML5 parser and serializer.",
  10014. "homepage": "http://masterminds.github.io/html5-php",
  10015. "keywords": [
  10016. "HTML5",
  10017. "dom",
  10018. "html",
  10019. "parser",
  10020. "querypath",
  10021. "serializer",
  10022. "xml"
  10023. ],
  10024. "support": {
  10025. "issues": "https://github.com/Masterminds/html5-php/issues",
  10026. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  10027. },
  10028. "time": "2020-10-01T13:52:52+00:00"
  10029. },
  10030. {
  10031. "name": "nikic/php-parser",
  10032. "version": "v4.13.1",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/nikic/PHP-Parser.git",
  10036. "reference": "63a79e8daa781cac14e5195e63ed8ae231dd10fd"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/63a79e8daa781cac14e5195e63ed8ae231dd10fd",
  10041. "reference": "63a79e8daa781cac14e5195e63ed8ae231dd10fd",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "ext-tokenizer": "*",
  10046. "php": ">=7.0"
  10047. },
  10048. "require-dev": {
  10049. "ircmaxell/php-yacc": "^0.0.7",
  10050. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  10051. },
  10052. "bin": [
  10053. "bin/php-parse"
  10054. ],
  10055. "type": "library",
  10056. "extra": {
  10057. "branch-alias": {
  10058. "dev-master": "4.9-dev"
  10059. }
  10060. },
  10061. "autoload": {
  10062. "psr-4": {
  10063. "PhpParser\\": "lib/PhpParser"
  10064. }
  10065. },
  10066. "notification-url": "https://packagist.org/downloads/",
  10067. "license": [
  10068. "BSD-3-Clause"
  10069. ],
  10070. "authors": [
  10071. {
  10072. "name": "Nikita Popov"
  10073. }
  10074. ],
  10075. "description": "A PHP parser written in PHP",
  10076. "keywords": [
  10077. "parser",
  10078. "php"
  10079. ],
  10080. "support": {
  10081. "issues": "https://github.com/nikic/PHP-Parser/issues",
  10082. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.1"
  10083. },
  10084. "time": "2021-11-03T20:52:16+00:00"
  10085. },
  10086. {
  10087. "name": "pear/archive_tar",
  10088. "version": "1.4.14",
  10089. "source": {
  10090. "type": "git",
  10091. "url": "https://github.com/pear/Archive_Tar.git",
  10092. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  10093. },
  10094. "dist": {
  10095. "type": "zip",
  10096. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  10097. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  10098. "shasum": ""
  10099. },
  10100. "require": {
  10101. "pear/pear-core-minimal": "^1.10.0alpha2",
  10102. "php": ">=5.2.0"
  10103. },
  10104. "require-dev": {
  10105. "phpunit/phpunit": "*"
  10106. },
  10107. "suggest": {
  10108. "ext-bz2": "Bz2 compression support.",
  10109. "ext-xz": "Lzma2 compression support.",
  10110. "ext-zlib": "Gzip compression support."
  10111. },
  10112. "type": "library",
  10113. "extra": {
  10114. "branch-alias": {
  10115. "dev-master": "1.4.x-dev"
  10116. }
  10117. },
  10118. "autoload": {
  10119. "psr-0": {
  10120. "Archive_Tar": ""
  10121. }
  10122. },
  10123. "notification-url": "https://packagist.org/downloads/",
  10124. "include-path": [
  10125. "./"
  10126. ],
  10127. "license": [
  10128. "BSD-3-Clause"
  10129. ],
  10130. "authors": [
  10131. {
  10132. "name": "Vincent Blavet",
  10133. "email": "vincent@phpconcept.net"
  10134. },
  10135. {
  10136. "name": "Greg Beaver",
  10137. "email": "greg@chiaraquartet.net"
  10138. },
  10139. {
  10140. "name": "Michiel Rook",
  10141. "email": "mrook@php.net"
  10142. }
  10143. ],
  10144. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  10145. "homepage": "https://github.com/pear/Archive_Tar",
  10146. "keywords": [
  10147. "archive",
  10148. "tar"
  10149. ],
  10150. "support": {
  10151. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  10152. "source": "https://github.com/pear/Archive_Tar"
  10153. },
  10154. "funding": [
  10155. {
  10156. "url": "https://github.com/mrook",
  10157. "type": "github"
  10158. },
  10159. {
  10160. "url": "https://www.patreon.com/michielrook",
  10161. "type": "patreon"
  10162. }
  10163. ],
  10164. "time": "2021-07-20T13:53:39+00:00"
  10165. },
  10166. {
  10167. "name": "pear/console_getopt",
  10168. "version": "v1.4.3",
  10169. "source": {
  10170. "type": "git",
  10171. "url": "https://github.com/pear/Console_Getopt.git",
  10172. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  10173. },
  10174. "dist": {
  10175. "type": "zip",
  10176. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  10177. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  10178. "shasum": ""
  10179. },
  10180. "type": "library",
  10181. "autoload": {
  10182. "psr-0": {
  10183. "Console": "./"
  10184. }
  10185. },
  10186. "notification-url": "https://packagist.org/downloads/",
  10187. "include-path": [
  10188. "./"
  10189. ],
  10190. "license": [
  10191. "BSD-2-Clause"
  10192. ],
  10193. "authors": [
  10194. {
  10195. "name": "Andrei Zmievski",
  10196. "email": "andrei@php.net",
  10197. "role": "Lead"
  10198. },
  10199. {
  10200. "name": "Stig Bakken",
  10201. "email": "stig@php.net",
  10202. "role": "Developer"
  10203. },
  10204. {
  10205. "name": "Greg Beaver",
  10206. "email": "cellog@php.net",
  10207. "role": "Helper"
  10208. }
  10209. ],
  10210. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  10211. "support": {
  10212. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  10213. "source": "https://github.com/pear/Console_Getopt"
  10214. },
  10215. "time": "2019-11-20T18:27:48+00:00"
  10216. },
  10217. {
  10218. "name": "pear/pear-core-minimal",
  10219. "version": "v1.10.10",
  10220. "source": {
  10221. "type": "git",
  10222. "url": "https://github.com/pear/pear-core-minimal.git",
  10223. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  10224. },
  10225. "dist": {
  10226. "type": "zip",
  10227. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  10228. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  10229. "shasum": ""
  10230. },
  10231. "require": {
  10232. "pear/console_getopt": "~1.4",
  10233. "pear/pear_exception": "~1.0"
  10234. },
  10235. "replace": {
  10236. "rsky/pear-core-min": "self.version"
  10237. },
  10238. "type": "library",
  10239. "autoload": {
  10240. "psr-0": {
  10241. "": "src/"
  10242. }
  10243. },
  10244. "notification-url": "https://packagist.org/downloads/",
  10245. "include-path": [
  10246. "src/"
  10247. ],
  10248. "license": [
  10249. "BSD-3-Clause"
  10250. ],
  10251. "authors": [
  10252. {
  10253. "name": "Christian Weiske",
  10254. "email": "cweiske@php.net",
  10255. "role": "Lead"
  10256. }
  10257. ],
  10258. "description": "Minimal set of PEAR core files to be used as composer dependency",
  10259. "support": {
  10260. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  10261. "source": "https://github.com/pear/pear-core-minimal"
  10262. },
  10263. "time": "2019-11-19T19:00:24+00:00"
  10264. },
  10265. {
  10266. "name": "pear/pear_exception",
  10267. "version": "v1.0.2",
  10268. "source": {
  10269. "type": "git",
  10270. "url": "https://github.com/pear/PEAR_Exception.git",
  10271. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  10272. },
  10273. "dist": {
  10274. "type": "zip",
  10275. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  10276. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  10277. "shasum": ""
  10278. },
  10279. "require": {
  10280. "php": ">=5.2.0"
  10281. },
  10282. "require-dev": {
  10283. "phpunit/phpunit": "<9"
  10284. },
  10285. "type": "class",
  10286. "extra": {
  10287. "branch-alias": {
  10288. "dev-master": "1.0.x-dev"
  10289. }
  10290. },
  10291. "autoload": {
  10292. "classmap": [
  10293. "PEAR/"
  10294. ]
  10295. },
  10296. "notification-url": "https://packagist.org/downloads/",
  10297. "include-path": [
  10298. "."
  10299. ],
  10300. "license": [
  10301. "BSD-2-Clause"
  10302. ],
  10303. "authors": [
  10304. {
  10305. "name": "Helgi Thormar",
  10306. "email": "dufuz@php.net"
  10307. },
  10308. {
  10309. "name": "Greg Beaver",
  10310. "email": "cellog@php.net"
  10311. }
  10312. ],
  10313. "description": "The PEAR Exception base class.",
  10314. "homepage": "https://github.com/pear/PEAR_Exception",
  10315. "keywords": [
  10316. "exception"
  10317. ],
  10318. "support": {
  10319. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  10320. "source": "https://github.com/pear/PEAR_Exception"
  10321. },
  10322. "time": "2021-03-21T15:43:46+00:00"
  10323. },
  10324. {
  10325. "name": "phenx/php-font-lib",
  10326. "version": "0.5.2",
  10327. "source": {
  10328. "type": "git",
  10329. "url": "https://github.com/PhenX/php-font-lib.git",
  10330. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  10331. },
  10332. "dist": {
  10333. "type": "zip",
  10334. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  10335. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  10336. "shasum": ""
  10337. },
  10338. "require-dev": {
  10339. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  10340. },
  10341. "type": "library",
  10342. "autoload": {
  10343. "psr-4": {
  10344. "FontLib\\": "src/FontLib"
  10345. }
  10346. },
  10347. "notification-url": "https://packagist.org/downloads/",
  10348. "license": [
  10349. "LGPL-3.0"
  10350. ],
  10351. "authors": [
  10352. {
  10353. "name": "Fabien Ménager",
  10354. "email": "fabien.menager@gmail.com"
  10355. }
  10356. ],
  10357. "description": "A library to read, parse, export and make subsets of different types of font files.",
  10358. "homepage": "https://github.com/PhenX/php-font-lib",
  10359. "support": {
  10360. "issues": "https://github.com/PhenX/php-font-lib/issues",
  10361. "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2"
  10362. },
  10363. "time": "2020-03-08T15:31:32+00:00"
  10364. },
  10365. {
  10366. "name": "phpmailer/phpmailer",
  10367. "version": "v6.5.1",
  10368. "source": {
  10369. "type": "git",
  10370. "url": "https://github.com/PHPMailer/PHPMailer.git",
  10371. "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355"
  10372. },
  10373. "dist": {
  10374. "type": "zip",
  10375. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/dd803df5ad7492e1b40637f7ebd258fee5ca7355",
  10376. "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355",
  10377. "shasum": ""
  10378. },
  10379. "require": {
  10380. "ext-ctype": "*",
  10381. "ext-filter": "*",
  10382. "ext-hash": "*",
  10383. "php": ">=5.5.0"
  10384. },
  10385. "require-dev": {
  10386. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  10387. "doctrine/annotations": "^1.2",
  10388. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  10389. "php-parallel-lint/php-parallel-lint": "^1.3",
  10390. "phpcompatibility/php-compatibility": "^9.3.5",
  10391. "roave/security-advisories": "dev-latest",
  10392. "squizlabs/php_codesniffer": "^3.6.0",
  10393. "yoast/phpunit-polyfills": "^1.0.0"
  10394. },
  10395. "suggest": {
  10396. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  10397. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  10398. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  10399. "psr/log": "For optional PSR-3 debug logging",
  10400. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  10401. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  10402. },
  10403. "type": "library",
  10404. "autoload": {
  10405. "psr-4": {
  10406. "PHPMailer\\PHPMailer\\": "src/"
  10407. }
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "LGPL-2.1-only"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Marcus Bointon",
  10416. "email": "phpmailer@synchromedia.co.uk"
  10417. },
  10418. {
  10419. "name": "Jim Jagielski",
  10420. "email": "jimjag@gmail.com"
  10421. },
  10422. {
  10423. "name": "Andy Prevost",
  10424. "email": "codeworxtech@users.sourceforge.net"
  10425. },
  10426. {
  10427. "name": "Brent R. Matzelle"
  10428. }
  10429. ],
  10430. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10431. "support": {
  10432. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10433. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.1"
  10434. },
  10435. "funding": [
  10436. {
  10437. "url": "https://github.com/Synchro",
  10438. "type": "github"
  10439. }
  10440. ],
  10441. "time": "2021-08-18T09:14:16+00:00"
  10442. },
  10443. {
  10444. "name": "psr/cache",
  10445. "version": "1.0.1",
  10446. "source": {
  10447. "type": "git",
  10448. "url": "https://github.com/php-fig/cache.git",
  10449. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  10450. },
  10451. "dist": {
  10452. "type": "zip",
  10453. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  10454. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  10455. "shasum": ""
  10456. },
  10457. "require": {
  10458. "php": ">=5.3.0"
  10459. },
  10460. "type": "library",
  10461. "extra": {
  10462. "branch-alias": {
  10463. "dev-master": "1.0.x-dev"
  10464. }
  10465. },
  10466. "autoload": {
  10467. "psr-4": {
  10468. "Psr\\Cache\\": "src/"
  10469. }
  10470. },
  10471. "notification-url": "https://packagist.org/downloads/",
  10472. "license": [
  10473. "MIT"
  10474. ],
  10475. "authors": [
  10476. {
  10477. "name": "PHP-FIG",
  10478. "homepage": "http://www.php-fig.org/"
  10479. }
  10480. ],
  10481. "description": "Common interface for caching libraries",
  10482. "keywords": [
  10483. "cache",
  10484. "psr",
  10485. "psr-6"
  10486. ],
  10487. "support": {
  10488. "source": "https://github.com/php-fig/cache/tree/master"
  10489. },
  10490. "time": "2016-08-06T20:24:11+00:00"
  10491. },
  10492. {
  10493. "name": "psr/container",
  10494. "version": "1.1.1",
  10495. "source": {
  10496. "type": "git",
  10497. "url": "https://github.com/php-fig/container.git",
  10498. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  10499. },
  10500. "dist": {
  10501. "type": "zip",
  10502. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  10503. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  10504. "shasum": ""
  10505. },
  10506. "require": {
  10507. "php": ">=7.2.0"
  10508. },
  10509. "type": "library",
  10510. "autoload": {
  10511. "psr-4": {
  10512. "Psr\\Container\\": "src/"
  10513. }
  10514. },
  10515. "notification-url": "https://packagist.org/downloads/",
  10516. "license": [
  10517. "MIT"
  10518. ],
  10519. "authors": [
  10520. {
  10521. "name": "PHP-FIG",
  10522. "homepage": "https://www.php-fig.org/"
  10523. }
  10524. ],
  10525. "description": "Common Container Interface (PHP FIG PSR-11)",
  10526. "homepage": "https://github.com/php-fig/container",
  10527. "keywords": [
  10528. "PSR-11",
  10529. "container",
  10530. "container-interface",
  10531. "container-interop",
  10532. "psr"
  10533. ],
  10534. "support": {
  10535. "issues": "https://github.com/php-fig/container/issues",
  10536. "source": "https://github.com/php-fig/container/tree/1.1.1"
  10537. },
  10538. "time": "2021-03-05T17:36:06+00:00"
  10539. },
  10540. {
  10541. "name": "psr/http-factory",
  10542. "version": "1.0.1",
  10543. "source": {
  10544. "type": "git",
  10545. "url": "https://github.com/php-fig/http-factory.git",
  10546. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  10547. },
  10548. "dist": {
  10549. "type": "zip",
  10550. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  10551. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  10552. "shasum": ""
  10553. },
  10554. "require": {
  10555. "php": ">=7.0.0",
  10556. "psr/http-message": "^1.0"
  10557. },
  10558. "type": "library",
  10559. "extra": {
  10560. "branch-alias": {
  10561. "dev-master": "1.0.x-dev"
  10562. }
  10563. },
  10564. "autoload": {
  10565. "psr-4": {
  10566. "Psr\\Http\\Message\\": "src/"
  10567. }
  10568. },
  10569. "notification-url": "https://packagist.org/downloads/",
  10570. "license": [
  10571. "MIT"
  10572. ],
  10573. "authors": [
  10574. {
  10575. "name": "PHP-FIG",
  10576. "homepage": "http://www.php-fig.org/"
  10577. }
  10578. ],
  10579. "description": "Common interfaces for PSR-7 HTTP message factories",
  10580. "keywords": [
  10581. "factory",
  10582. "http",
  10583. "message",
  10584. "psr",
  10585. "psr-17",
  10586. "psr-7",
  10587. "request",
  10588. "response"
  10589. ],
  10590. "support": {
  10591. "source": "https://github.com/php-fig/http-factory/tree/master"
  10592. },
  10593. "time": "2019-04-30T12:38:16+00:00"
  10594. },
  10595. {
  10596. "name": "psr/http-message",
  10597. "version": "1.0.1",
  10598. "source": {
  10599. "type": "git",
  10600. "url": "https://github.com/php-fig/http-message.git",
  10601. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  10602. },
  10603. "dist": {
  10604. "type": "zip",
  10605. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  10606. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  10607. "shasum": ""
  10608. },
  10609. "require": {
  10610. "php": ">=5.3.0"
  10611. },
  10612. "type": "library",
  10613. "extra": {
  10614. "branch-alias": {
  10615. "dev-master": "1.0.x-dev"
  10616. }
  10617. },
  10618. "autoload": {
  10619. "psr-4": {
  10620. "Psr\\Http\\Message\\": "src/"
  10621. }
  10622. },
  10623. "notification-url": "https://packagist.org/downloads/",
  10624. "license": [
  10625. "MIT"
  10626. ],
  10627. "authors": [
  10628. {
  10629. "name": "PHP-FIG",
  10630. "homepage": "http://www.php-fig.org/"
  10631. }
  10632. ],
  10633. "description": "Common interface for HTTP messages",
  10634. "homepage": "https://github.com/php-fig/http-message",
  10635. "keywords": [
  10636. "http",
  10637. "http-message",
  10638. "psr",
  10639. "psr-7",
  10640. "request",
  10641. "response"
  10642. ],
  10643. "support": {
  10644. "source": "https://github.com/php-fig/http-message/tree/master"
  10645. },
  10646. "time": "2016-08-06T14:39:51+00:00"
  10647. },
  10648. {
  10649. "name": "psr/log",
  10650. "version": "1.1.4",
  10651. "source": {
  10652. "type": "git",
  10653. "url": "https://github.com/php-fig/log.git",
  10654. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  10655. },
  10656. "dist": {
  10657. "type": "zip",
  10658. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  10659. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  10660. "shasum": ""
  10661. },
  10662. "require": {
  10663. "php": ">=5.3.0"
  10664. },
  10665. "type": "library",
  10666. "extra": {
  10667. "branch-alias": {
  10668. "dev-master": "1.1.x-dev"
  10669. }
  10670. },
  10671. "autoload": {
  10672. "psr-4": {
  10673. "Psr\\Log\\": "Psr/Log/"
  10674. }
  10675. },
  10676. "notification-url": "https://packagist.org/downloads/",
  10677. "license": [
  10678. "MIT"
  10679. ],
  10680. "authors": [
  10681. {
  10682. "name": "PHP-FIG",
  10683. "homepage": "https://www.php-fig.org/"
  10684. }
  10685. ],
  10686. "description": "Common interface for logging libraries",
  10687. "homepage": "https://github.com/php-fig/log",
  10688. "keywords": [
  10689. "log",
  10690. "psr",
  10691. "psr-3"
  10692. ],
  10693. "support": {
  10694. "source": "https://github.com/php-fig/log/tree/1.1.4"
  10695. },
  10696. "time": "2021-05-03T11:20:27+00:00"
  10697. },
  10698. {
  10699. "name": "psy/psysh",
  10700. "version": "v0.10.9",
  10701. "source": {
  10702. "type": "git",
  10703. "url": "https://github.com/bobthecow/psysh.git",
  10704. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375"
  10705. },
  10706. "dist": {
  10707. "type": "zip",
  10708. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/01281336c4ae557fe4a994544f30d3a1bc204375",
  10709. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375",
  10710. "shasum": ""
  10711. },
  10712. "require": {
  10713. "ext-json": "*",
  10714. "ext-tokenizer": "*",
  10715. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  10716. "php": "^8.0 || ^7.0 || ^5.5.9",
  10717. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  10718. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  10719. },
  10720. "require-dev": {
  10721. "bamarni/composer-bin-plugin": "^1.2",
  10722. "hoa/console": "3.17.*"
  10723. },
  10724. "suggest": {
  10725. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10726. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10727. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  10728. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  10729. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  10730. },
  10731. "bin": [
  10732. "bin/psysh"
  10733. ],
  10734. "type": "library",
  10735. "extra": {
  10736. "branch-alias": {
  10737. "dev-main": "0.10.x-dev"
  10738. }
  10739. },
  10740. "autoload": {
  10741. "files": [
  10742. "src/functions.php"
  10743. ],
  10744. "psr-4": {
  10745. "Psy\\": "src/"
  10746. }
  10747. },
  10748. "notification-url": "https://packagist.org/downloads/",
  10749. "license": [
  10750. "MIT"
  10751. ],
  10752. "authors": [
  10753. {
  10754. "name": "Justin Hileman",
  10755. "email": "justin@justinhileman.info",
  10756. "homepage": "http://justinhileman.com"
  10757. }
  10758. ],
  10759. "description": "An interactive shell for modern PHP.",
  10760. "homepage": "http://psysh.org",
  10761. "keywords": [
  10762. "REPL",
  10763. "console",
  10764. "interactive",
  10765. "shell"
  10766. ],
  10767. "support": {
  10768. "issues": "https://github.com/bobthecow/psysh/issues",
  10769. "source": "https://github.com/bobthecow/psysh/tree/v0.10.9"
  10770. },
  10771. "time": "2021-10-10T13:37:39+00:00"
  10772. },
  10773. {
  10774. "name": "ralouphie/getallheaders",
  10775. "version": "3.0.3",
  10776. "source": {
  10777. "type": "git",
  10778. "url": "https://github.com/ralouphie/getallheaders.git",
  10779. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10780. },
  10781. "dist": {
  10782. "type": "zip",
  10783. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10784. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10785. "shasum": ""
  10786. },
  10787. "require": {
  10788. "php": ">=5.6"
  10789. },
  10790. "require-dev": {
  10791. "php-coveralls/php-coveralls": "^2.1",
  10792. "phpunit/phpunit": "^5 || ^6.5"
  10793. },
  10794. "type": "library",
  10795. "autoload": {
  10796. "files": [
  10797. "src/getallheaders.php"
  10798. ]
  10799. },
  10800. "notification-url": "https://packagist.org/downloads/",
  10801. "license": [
  10802. "MIT"
  10803. ],
  10804. "authors": [
  10805. {
  10806. "name": "Ralph Khattar",
  10807. "email": "ralph.khattar@gmail.com"
  10808. }
  10809. ],
  10810. "description": "A polyfill for getallheaders.",
  10811. "support": {
  10812. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10813. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10814. },
  10815. "time": "2019-03-08T08:55:37+00:00"
  10816. },
  10817. {
  10818. "name": "stack/builder",
  10819. "version": "v1.0.6",
  10820. "source": {
  10821. "type": "git",
  10822. "url": "https://github.com/stackphp/builder.git",
  10823. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  10824. },
  10825. "dist": {
  10826. "type": "zip",
  10827. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10828. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10829. "shasum": ""
  10830. },
  10831. "require": {
  10832. "php": ">=7.2.0",
  10833. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  10834. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  10835. },
  10836. "require-dev": {
  10837. "phpunit/phpunit": "~8.0",
  10838. "symfony/routing": "^5.0"
  10839. },
  10840. "type": "library",
  10841. "extra": {
  10842. "branch-alias": {
  10843. "dev-master": "1.0-dev"
  10844. }
  10845. },
  10846. "autoload": {
  10847. "psr-0": {
  10848. "Stack": "src"
  10849. }
  10850. },
  10851. "notification-url": "https://packagist.org/downloads/",
  10852. "license": [
  10853. "MIT"
  10854. ],
  10855. "authors": [
  10856. {
  10857. "name": "Igor Wiedler",
  10858. "email": "igor@wiedler.ch"
  10859. }
  10860. ],
  10861. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10862. "keywords": [
  10863. "stack"
  10864. ],
  10865. "support": {
  10866. "issues": "https://github.com/stackphp/builder/issues",
  10867. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  10868. },
  10869. "time": "2020-01-30T12:17:27+00:00"
  10870. },
  10871. {
  10872. "name": "stecman/symfony-console-completion",
  10873. "version": "0.11.0",
  10874. "source": {
  10875. "type": "git",
  10876. "url": "https://github.com/stecman/symfony-console-completion.git",
  10877. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10878. },
  10879. "dist": {
  10880. "type": "zip",
  10881. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10882. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10883. "shasum": ""
  10884. },
  10885. "require": {
  10886. "php": ">=5.3.2",
  10887. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10888. },
  10889. "require-dev": {
  10890. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10891. },
  10892. "type": "library",
  10893. "extra": {
  10894. "branch-alias": {
  10895. "dev-master": "0.10.x-dev"
  10896. }
  10897. },
  10898. "autoload": {
  10899. "psr-4": {
  10900. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10901. }
  10902. },
  10903. "notification-url": "https://packagist.org/downloads/",
  10904. "license": [
  10905. "MIT"
  10906. ],
  10907. "authors": [
  10908. {
  10909. "name": "Stephen Holdaway",
  10910. "email": "stephen@stecman.co.nz"
  10911. }
  10912. ],
  10913. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10914. "support": {
  10915. "issues": "https://github.com/stecman/symfony-console-completion/issues",
  10916. "source": "https://github.com/stecman/symfony-console-completion/tree/0.11.0"
  10917. },
  10918. "time": "2019-11-24T17:03:06+00:00"
  10919. },
  10920. {
  10921. "name": "symfony-cmf/routing",
  10922. "version": "2.3.3",
  10923. "source": {
  10924. "type": "git",
  10925. "url": "https://github.com/symfony-cmf/Routing.git",
  10926. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  10927. },
  10928. "dist": {
  10929. "type": "zip",
  10930. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10931. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10932. "shasum": ""
  10933. },
  10934. "require": {
  10935. "php": "^7.2 || ^8.0",
  10936. "psr/log": "^1.0",
  10937. "symfony/http-kernel": "^4.4 || ^5.0",
  10938. "symfony/routing": "^4.4 || ^5.0"
  10939. },
  10940. "require-dev": {
  10941. "symfony-cmf/testing": "^3@dev",
  10942. "symfony/config": "^4.4 || ^5.0",
  10943. "symfony/dependency-injection": "^4.4 || ^5.0",
  10944. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10945. "symfony/phpunit-bridge": "^5.0"
  10946. },
  10947. "suggest": {
  10948. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10949. },
  10950. "type": "library",
  10951. "extra": {
  10952. "branch-alias": {
  10953. "dev-master": "2.x-dev"
  10954. }
  10955. },
  10956. "autoload": {
  10957. "psr-4": {
  10958. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10959. }
  10960. },
  10961. "notification-url": "https://packagist.org/downloads/",
  10962. "license": [
  10963. "MIT"
  10964. ],
  10965. "authors": [
  10966. {
  10967. "name": "Symfony CMF Community",
  10968. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10969. }
  10970. ],
  10971. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10972. "homepage": "http://cmf.symfony.com",
  10973. "keywords": [
  10974. "database",
  10975. "routing"
  10976. ],
  10977. "support": {
  10978. "issues": "https://github.com/symfony-cmf/Routing/issues",
  10979. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.3"
  10980. },
  10981. "time": "2020-10-06T10:15:37+00:00"
  10982. },
  10983. {
  10984. "name": "symfony/config",
  10985. "version": "v4.4.33",
  10986. "source": {
  10987. "type": "git",
  10988. "url": "https://github.com/symfony/config.git",
  10989. "reference": "25c11934bf20c1633f3f125fed0bd7e29f5d8f24"
  10990. },
  10991. "dist": {
  10992. "type": "zip",
  10993. "url": "https://api.github.com/repos/symfony/config/zipball/25c11934bf20c1633f3f125fed0bd7e29f5d8f24",
  10994. "reference": "25c11934bf20c1633f3f125fed0bd7e29f5d8f24",
  10995. "shasum": ""
  10996. },
  10997. "require": {
  10998. "php": ">=7.1.3",
  10999. "symfony/filesystem": "^3.4|^4.0|^5.0",
  11000. "symfony/polyfill-ctype": "~1.8",
  11001. "symfony/polyfill-php80": "^1.16",
  11002. "symfony/polyfill-php81": "^1.22"
  11003. },
  11004. "conflict": {
  11005. "symfony/finder": "<3.4"
  11006. },
  11007. "require-dev": {
  11008. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  11009. "symfony/finder": "^3.4|^4.0|^5.0",
  11010. "symfony/messenger": "^4.1|^5.0",
  11011. "symfony/service-contracts": "^1.1|^2",
  11012. "symfony/yaml": "^3.4|^4.0|^5.0"
  11013. },
  11014. "suggest": {
  11015. "symfony/yaml": "To use the yaml reference dumper"
  11016. },
  11017. "type": "library",
  11018. "autoload": {
  11019. "psr-4": {
  11020. "Symfony\\Component\\Config\\": ""
  11021. },
  11022. "exclude-from-classmap": [
  11023. "/Tests/"
  11024. ]
  11025. },
  11026. "notification-url": "https://packagist.org/downloads/",
  11027. "license": [
  11028. "MIT"
  11029. ],
  11030. "authors": [
  11031. {
  11032. "name": "Fabien Potencier",
  11033. "email": "fabien@symfony.com"
  11034. },
  11035. {
  11036. "name": "Symfony Community",
  11037. "homepage": "https://symfony.com/contributors"
  11038. }
  11039. ],
  11040. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  11041. "homepage": "https://symfony.com",
  11042. "support": {
  11043. "source": "https://github.com/symfony/config/tree/v4.4.33"
  11044. },
  11045. "funding": [
  11046. {
  11047. "url": "https://symfony.com/sponsor",
  11048. "type": "custom"
  11049. },
  11050. {
  11051. "url": "https://github.com/fabpot",
  11052. "type": "github"
  11053. },
  11054. {
  11055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11056. "type": "tidelift"
  11057. }
  11058. ],
  11059. "time": "2021-10-19T15:09:42+00:00"
  11060. },
  11061. {
  11062. "name": "symfony/console",
  11063. "version": "v4.4.25",
  11064. "source": {
  11065. "type": "git",
  11066. "url": "https://github.com/symfony/console.git",
  11067. "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095"
  11068. },
  11069. "dist": {
  11070. "type": "zip",
  11071. "url": "https://api.github.com/repos/symfony/console/zipball/a62acecdf5b50e314a4f305cd01b5282126f3095",
  11072. "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095",
  11073. "shasum": ""
  11074. },
  11075. "require": {
  11076. "php": ">=7.1.3",
  11077. "symfony/polyfill-mbstring": "~1.0",
  11078. "symfony/polyfill-php73": "^1.8",
  11079. "symfony/polyfill-php80": "^1.15",
  11080. "symfony/service-contracts": "^1.1|^2"
  11081. },
  11082. "conflict": {
  11083. "symfony/dependency-injection": "<3.4",
  11084. "symfony/event-dispatcher": "<4.3|>=5",
  11085. "symfony/lock": "<4.4",
  11086. "symfony/process": "<3.3"
  11087. },
  11088. "provide": {
  11089. "psr/log-implementation": "1.0"
  11090. },
  11091. "require-dev": {
  11092. "psr/log": "~1.0",
  11093. "symfony/config": "^3.4|^4.0|^5.0",
  11094. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11095. "symfony/event-dispatcher": "^4.3",
  11096. "symfony/lock": "^4.4|^5.0",
  11097. "symfony/process": "^3.4|^4.0|^5.0",
  11098. "symfony/var-dumper": "^4.3|^5.0"
  11099. },
  11100. "suggest": {
  11101. "psr/log": "For using the console logger",
  11102. "symfony/event-dispatcher": "",
  11103. "symfony/lock": "",
  11104. "symfony/process": ""
  11105. },
  11106. "type": "library",
  11107. "autoload": {
  11108. "psr-4": {
  11109. "Symfony\\Component\\Console\\": ""
  11110. },
  11111. "exclude-from-classmap": [
  11112. "/Tests/"
  11113. ]
  11114. },
  11115. "notification-url": "https://packagist.org/downloads/",
  11116. "license": [
  11117. "MIT"
  11118. ],
  11119. "authors": [
  11120. {
  11121. "name": "Fabien Potencier",
  11122. "email": "fabien@symfony.com"
  11123. },
  11124. {
  11125. "name": "Symfony Community",
  11126. "homepage": "https://symfony.com/contributors"
  11127. }
  11128. ],
  11129. "description": "Eases the creation of beautiful and testable command line interfaces",
  11130. "homepage": "https://symfony.com",
  11131. "support": {
  11132. "source": "https://github.com/symfony/console/tree/v4.4.25"
  11133. },
  11134. "funding": [
  11135. {
  11136. "url": "https://symfony.com/sponsor",
  11137. "type": "custom"
  11138. },
  11139. {
  11140. "url": "https://github.com/fabpot",
  11141. "type": "github"
  11142. },
  11143. {
  11144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11145. "type": "tidelift"
  11146. }
  11147. ],
  11148. "time": "2021-05-26T11:20:16+00:00"
  11149. },
  11150. {
  11151. "name": "symfony/css-selector",
  11152. "version": "v4.4.27",
  11153. "source": {
  11154. "type": "git",
  11155. "url": "https://github.com/symfony/css-selector.git",
  11156. "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6"
  11157. },
  11158. "dist": {
  11159. "type": "zip",
  11160. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6",
  11161. "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6",
  11162. "shasum": ""
  11163. },
  11164. "require": {
  11165. "php": ">=7.1.3",
  11166. "symfony/polyfill-php80": "^1.16"
  11167. },
  11168. "type": "library",
  11169. "autoload": {
  11170. "psr-4": {
  11171. "Symfony\\Component\\CssSelector\\": ""
  11172. },
  11173. "exclude-from-classmap": [
  11174. "/Tests/"
  11175. ]
  11176. },
  11177. "notification-url": "https://packagist.org/downloads/",
  11178. "license": [
  11179. "MIT"
  11180. ],
  11181. "authors": [
  11182. {
  11183. "name": "Fabien Potencier",
  11184. "email": "fabien@symfony.com"
  11185. },
  11186. {
  11187. "name": "Jean-François Simon",
  11188. "email": "jeanfrancois.simon@sensiolabs.com"
  11189. },
  11190. {
  11191. "name": "Symfony Community",
  11192. "homepage": "https://symfony.com/contributors"
  11193. }
  11194. ],
  11195. "description": "Converts CSS selectors to XPath expressions",
  11196. "homepage": "https://symfony.com",
  11197. "support": {
  11198. "source": "https://github.com/symfony/css-selector/tree/v4.4.27"
  11199. },
  11200. "funding": [
  11201. {
  11202. "url": "https://symfony.com/sponsor",
  11203. "type": "custom"
  11204. },
  11205. {
  11206. "url": "https://github.com/fabpot",
  11207. "type": "github"
  11208. },
  11209. {
  11210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11211. "type": "tidelift"
  11212. }
  11213. ],
  11214. "time": "2021-07-21T12:19:41+00:00"
  11215. },
  11216. {
  11217. "name": "symfony/debug",
  11218. "version": "v4.4.25",
  11219. "source": {
  11220. "type": "git",
  11221. "url": "https://github.com/symfony/debug.git",
  11222. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f"
  11223. },
  11224. "dist": {
  11225. "type": "zip",
  11226. "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f",
  11227. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f",
  11228. "shasum": ""
  11229. },
  11230. "require": {
  11231. "php": ">=7.1.3",
  11232. "psr/log": "~1.0",
  11233. "symfony/polyfill-php80": "^1.15"
  11234. },
  11235. "conflict": {
  11236. "symfony/http-kernel": "<3.4"
  11237. },
  11238. "require-dev": {
  11239. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11240. },
  11241. "type": "library",
  11242. "autoload": {
  11243. "psr-4": {
  11244. "Symfony\\Component\\Debug\\": ""
  11245. },
  11246. "exclude-from-classmap": [
  11247. "/Tests/"
  11248. ]
  11249. },
  11250. "notification-url": "https://packagist.org/downloads/",
  11251. "license": [
  11252. "MIT"
  11253. ],
  11254. "authors": [
  11255. {
  11256. "name": "Fabien Potencier",
  11257. "email": "fabien@symfony.com"
  11258. },
  11259. {
  11260. "name": "Symfony Community",
  11261. "homepage": "https://symfony.com/contributors"
  11262. }
  11263. ],
  11264. "description": "Provides tools to ease debugging PHP code",
  11265. "homepage": "https://symfony.com",
  11266. "support": {
  11267. "source": "https://github.com/symfony/debug/tree/v4.4.25"
  11268. },
  11269. "funding": [
  11270. {
  11271. "url": "https://symfony.com/sponsor",
  11272. "type": "custom"
  11273. },
  11274. {
  11275. "url": "https://github.com/fabpot",
  11276. "type": "github"
  11277. },
  11278. {
  11279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11280. "type": "tidelift"
  11281. }
  11282. ],
  11283. "time": "2021-05-26T17:39:37+00:00"
  11284. },
  11285. {
  11286. "name": "symfony/dependency-injection",
  11287. "version": "v4.4.25",
  11288. "source": {
  11289. "type": "git",
  11290. "url": "https://github.com/symfony/dependency-injection.git",
  11291. "reference": "2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d"
  11292. },
  11293. "dist": {
  11294. "type": "zip",
  11295. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d",
  11296. "reference": "2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d",
  11297. "shasum": ""
  11298. },
  11299. "require": {
  11300. "php": ">=7.1.3",
  11301. "psr/container": "^1.0",
  11302. "symfony/service-contracts": "^1.1.6|^2"
  11303. },
  11304. "conflict": {
  11305. "symfony/config": "<4.3|>=5.0",
  11306. "symfony/finder": "<3.4",
  11307. "symfony/proxy-manager-bridge": "<3.4",
  11308. "symfony/yaml": "<3.4"
  11309. },
  11310. "provide": {
  11311. "psr/container-implementation": "1.0",
  11312. "symfony/service-implementation": "1.0|2.0"
  11313. },
  11314. "require-dev": {
  11315. "symfony/config": "^4.3",
  11316. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11317. "symfony/yaml": "^4.4|^5.0"
  11318. },
  11319. "suggest": {
  11320. "symfony/config": "",
  11321. "symfony/expression-language": "For using expressions in service container configuration",
  11322. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  11323. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  11324. "symfony/yaml": ""
  11325. },
  11326. "type": "library",
  11327. "autoload": {
  11328. "psr-4": {
  11329. "Symfony\\Component\\DependencyInjection\\": ""
  11330. },
  11331. "exclude-from-classmap": [
  11332. "/Tests/"
  11333. ]
  11334. },
  11335. "notification-url": "https://packagist.org/downloads/",
  11336. "license": [
  11337. "MIT"
  11338. ],
  11339. "authors": [
  11340. {
  11341. "name": "Fabien Potencier",
  11342. "email": "fabien@symfony.com"
  11343. },
  11344. {
  11345. "name": "Symfony Community",
  11346. "homepage": "https://symfony.com/contributors"
  11347. }
  11348. ],
  11349. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  11350. "homepage": "https://symfony.com",
  11351. "support": {
  11352. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.25"
  11353. },
  11354. "funding": [
  11355. {
  11356. "url": "https://symfony.com/sponsor",
  11357. "type": "custom"
  11358. },
  11359. {
  11360. "url": "https://github.com/fabpot",
  11361. "type": "github"
  11362. },
  11363. {
  11364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11365. "type": "tidelift"
  11366. }
  11367. ],
  11368. "time": "2021-05-26T17:54:16+00:00"
  11369. },
  11370. {
  11371. "name": "symfony/deprecation-contracts",
  11372. "version": "v2.4.0",
  11373. "source": {
  11374. "type": "git",
  11375. "url": "https://github.com/symfony/deprecation-contracts.git",
  11376. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  11377. },
  11378. "dist": {
  11379. "type": "zip",
  11380. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  11381. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  11382. "shasum": ""
  11383. },
  11384. "require": {
  11385. "php": ">=7.1"
  11386. },
  11387. "type": "library",
  11388. "extra": {
  11389. "branch-alias": {
  11390. "dev-main": "2.4-dev"
  11391. },
  11392. "thanks": {
  11393. "name": "symfony/contracts",
  11394. "url": "https://github.com/symfony/contracts"
  11395. }
  11396. },
  11397. "autoload": {
  11398. "files": [
  11399. "function.php"
  11400. ]
  11401. },
  11402. "notification-url": "https://packagist.org/downloads/",
  11403. "license": [
  11404. "MIT"
  11405. ],
  11406. "authors": [
  11407. {
  11408. "name": "Nicolas Grekas",
  11409. "email": "p@tchwork.com"
  11410. },
  11411. {
  11412. "name": "Symfony Community",
  11413. "homepage": "https://symfony.com/contributors"
  11414. }
  11415. ],
  11416. "description": "A generic function and convention to trigger deprecation notices",
  11417. "homepage": "https://symfony.com",
  11418. "support": {
  11419. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  11420. },
  11421. "funding": [
  11422. {
  11423. "url": "https://symfony.com/sponsor",
  11424. "type": "custom"
  11425. },
  11426. {
  11427. "url": "https://github.com/fabpot",
  11428. "type": "github"
  11429. },
  11430. {
  11431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11432. "type": "tidelift"
  11433. }
  11434. ],
  11435. "time": "2021-03-23T23:28:01+00:00"
  11436. },
  11437. {
  11438. "name": "symfony/dom-crawler",
  11439. "version": "v4.4.30",
  11440. "source": {
  11441. "type": "git",
  11442. "url": "https://github.com/symfony/dom-crawler.git",
  11443. "reference": "4632ae3567746c7e915c33c67a2fb6ab746090c4"
  11444. },
  11445. "dist": {
  11446. "type": "zip",
  11447. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4632ae3567746c7e915c33c67a2fb6ab746090c4",
  11448. "reference": "4632ae3567746c7e915c33c67a2fb6ab746090c4",
  11449. "shasum": ""
  11450. },
  11451. "require": {
  11452. "php": ">=7.1.3",
  11453. "symfony/polyfill-ctype": "~1.8",
  11454. "symfony/polyfill-mbstring": "~1.0",
  11455. "symfony/polyfill-php80": "^1.16"
  11456. },
  11457. "conflict": {
  11458. "masterminds/html5": "<2.6"
  11459. },
  11460. "require-dev": {
  11461. "masterminds/html5": "^2.6",
  11462. "symfony/css-selector": "^3.4|^4.0|^5.0"
  11463. },
  11464. "suggest": {
  11465. "symfony/css-selector": ""
  11466. },
  11467. "type": "library",
  11468. "autoload": {
  11469. "psr-4": {
  11470. "Symfony\\Component\\DomCrawler\\": ""
  11471. },
  11472. "exclude-from-classmap": [
  11473. "/Tests/"
  11474. ]
  11475. },
  11476. "notification-url": "https://packagist.org/downloads/",
  11477. "license": [
  11478. "MIT"
  11479. ],
  11480. "authors": [
  11481. {
  11482. "name": "Fabien Potencier",
  11483. "email": "fabien@symfony.com"
  11484. },
  11485. {
  11486. "name": "Symfony Community",
  11487. "homepage": "https://symfony.com/contributors"
  11488. }
  11489. ],
  11490. "description": "Eases DOM navigation for HTML and XML documents",
  11491. "homepage": "https://symfony.com",
  11492. "support": {
  11493. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.30"
  11494. },
  11495. "funding": [
  11496. {
  11497. "url": "https://symfony.com/sponsor",
  11498. "type": "custom"
  11499. },
  11500. {
  11501. "url": "https://github.com/fabpot",
  11502. "type": "github"
  11503. },
  11504. {
  11505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11506. "type": "tidelift"
  11507. }
  11508. ],
  11509. "time": "2021-08-28T15:40:01+00:00"
  11510. },
  11511. {
  11512. "name": "symfony/error-handler",
  11513. "version": "v4.4.25",
  11514. "source": {
  11515. "type": "git",
  11516. "url": "https://github.com/symfony/error-handler.git",
  11517. "reference": "310a756cec00d29d89a08518405aded046a54a8b"
  11518. },
  11519. "dist": {
  11520. "type": "zip",
  11521. "url": "https://api.github.com/repos/symfony/error-handler/zipball/310a756cec00d29d89a08518405aded046a54a8b",
  11522. "reference": "310a756cec00d29d89a08518405aded046a54a8b",
  11523. "shasum": ""
  11524. },
  11525. "require": {
  11526. "php": ">=7.1.3",
  11527. "psr/log": "~1.0",
  11528. "symfony/debug": "^4.4.5",
  11529. "symfony/polyfill-php80": "^1.15",
  11530. "symfony/var-dumper": "^4.4|^5.0"
  11531. },
  11532. "require-dev": {
  11533. "symfony/http-kernel": "^4.4|^5.0",
  11534. "symfony/serializer": "^4.4|^5.0"
  11535. },
  11536. "type": "library",
  11537. "autoload": {
  11538. "psr-4": {
  11539. "Symfony\\Component\\ErrorHandler\\": ""
  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 tools to manage errors and ease debugging PHP code",
  11560. "homepage": "https://symfony.com",
  11561. "support": {
  11562. "source": "https://github.com/symfony/error-handler/tree/v4.4.25"
  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-05-26T17:39:37+00:00"
  11579. },
  11580. {
  11581. "name": "symfony/event-dispatcher",
  11582. "version": "v4.4.25",
  11583. "source": {
  11584. "type": "git",
  11585. "url": "https://github.com/symfony/event-dispatcher.git",
  11586. "reference": "047773e7016e4fd45102cedf4bd2558ae0d0c32f"
  11587. },
  11588. "dist": {
  11589. "type": "zip",
  11590. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/047773e7016e4fd45102cedf4bd2558ae0d0c32f",
  11591. "reference": "047773e7016e4fd45102cedf4bd2558ae0d0c32f",
  11592. "shasum": ""
  11593. },
  11594. "require": {
  11595. "php": ">=7.1.3",
  11596. "symfony/event-dispatcher-contracts": "^1.1"
  11597. },
  11598. "conflict": {
  11599. "symfony/dependency-injection": "<3.4"
  11600. },
  11601. "provide": {
  11602. "psr/event-dispatcher-implementation": "1.0",
  11603. "symfony/event-dispatcher-implementation": "1.1"
  11604. },
  11605. "require-dev": {
  11606. "psr/log": "~1.0",
  11607. "symfony/config": "^3.4|^4.0|^5.0",
  11608. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11609. "symfony/error-handler": "~3.4|~4.4",
  11610. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11611. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11612. "symfony/service-contracts": "^1.1|^2",
  11613. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  11614. },
  11615. "suggest": {
  11616. "symfony/dependency-injection": "",
  11617. "symfony/http-kernel": ""
  11618. },
  11619. "type": "library",
  11620. "autoload": {
  11621. "psr-4": {
  11622. "Symfony\\Component\\EventDispatcher\\": ""
  11623. },
  11624. "exclude-from-classmap": [
  11625. "/Tests/"
  11626. ]
  11627. },
  11628. "notification-url": "https://packagist.org/downloads/",
  11629. "license": [
  11630. "MIT"
  11631. ],
  11632. "authors": [
  11633. {
  11634. "name": "Fabien Potencier",
  11635. "email": "fabien@symfony.com"
  11636. },
  11637. {
  11638. "name": "Symfony Community",
  11639. "homepage": "https://symfony.com/contributors"
  11640. }
  11641. ],
  11642. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11643. "homepage": "https://symfony.com",
  11644. "support": {
  11645. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.25"
  11646. },
  11647. "funding": [
  11648. {
  11649. "url": "https://symfony.com/sponsor",
  11650. "type": "custom"
  11651. },
  11652. {
  11653. "url": "https://github.com/fabpot",
  11654. "type": "github"
  11655. },
  11656. {
  11657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11658. "type": "tidelift"
  11659. }
  11660. ],
  11661. "time": "2021-05-26T17:39:37+00:00"
  11662. },
  11663. {
  11664. "name": "symfony/event-dispatcher-contracts",
  11665. "version": "v1.1.9",
  11666. "source": {
  11667. "type": "git",
  11668. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11669. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  11670. },
  11671. "dist": {
  11672. "type": "zip",
  11673. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  11674. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  11675. "shasum": ""
  11676. },
  11677. "require": {
  11678. "php": ">=7.1.3"
  11679. },
  11680. "suggest": {
  11681. "psr/event-dispatcher": "",
  11682. "symfony/event-dispatcher-implementation": ""
  11683. },
  11684. "type": "library",
  11685. "extra": {
  11686. "branch-alias": {
  11687. "dev-master": "1.1-dev"
  11688. },
  11689. "thanks": {
  11690. "name": "symfony/contracts",
  11691. "url": "https://github.com/symfony/contracts"
  11692. }
  11693. },
  11694. "autoload": {
  11695. "psr-4": {
  11696. "Symfony\\Contracts\\EventDispatcher\\": ""
  11697. }
  11698. },
  11699. "notification-url": "https://packagist.org/downloads/",
  11700. "license": [
  11701. "MIT"
  11702. ],
  11703. "authors": [
  11704. {
  11705. "name": "Nicolas Grekas",
  11706. "email": "p@tchwork.com"
  11707. },
  11708. {
  11709. "name": "Symfony Community",
  11710. "homepage": "https://symfony.com/contributors"
  11711. }
  11712. ],
  11713. "description": "Generic abstractions related to dispatching event",
  11714. "homepage": "https://symfony.com",
  11715. "keywords": [
  11716. "abstractions",
  11717. "contracts",
  11718. "decoupling",
  11719. "interfaces",
  11720. "interoperability",
  11721. "standards"
  11722. ],
  11723. "support": {
  11724. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  11725. },
  11726. "funding": [
  11727. {
  11728. "url": "https://symfony.com/sponsor",
  11729. "type": "custom"
  11730. },
  11731. {
  11732. "url": "https://github.com/fabpot",
  11733. "type": "github"
  11734. },
  11735. {
  11736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11737. "type": "tidelift"
  11738. }
  11739. ],
  11740. "time": "2020-07-06T13:19:58+00:00"
  11741. },
  11742. {
  11743. "name": "symfony/filesystem",
  11744. "version": "v4.4.27",
  11745. "source": {
  11746. "type": "git",
  11747. "url": "https://github.com/symfony/filesystem.git",
  11748. "reference": "517fb795794faf29086a77d99eb8f35e457837a7"
  11749. },
  11750. "dist": {
  11751. "type": "zip",
  11752. "url": "https://api.github.com/repos/symfony/filesystem/zipball/517fb795794faf29086a77d99eb8f35e457837a7",
  11753. "reference": "517fb795794faf29086a77d99eb8f35e457837a7",
  11754. "shasum": ""
  11755. },
  11756. "require": {
  11757. "php": ">=7.1.3",
  11758. "symfony/polyfill-ctype": "~1.8",
  11759. "symfony/polyfill-php80": "^1.16"
  11760. },
  11761. "type": "library",
  11762. "autoload": {
  11763. "psr-4": {
  11764. "Symfony\\Component\\Filesystem\\": ""
  11765. },
  11766. "exclude-from-classmap": [
  11767. "/Tests/"
  11768. ]
  11769. },
  11770. "notification-url": "https://packagist.org/downloads/",
  11771. "license": [
  11772. "MIT"
  11773. ],
  11774. "authors": [
  11775. {
  11776. "name": "Fabien Potencier",
  11777. "email": "fabien@symfony.com"
  11778. },
  11779. {
  11780. "name": "Symfony Community",
  11781. "homepage": "https://symfony.com/contributors"
  11782. }
  11783. ],
  11784. "description": "Provides basic utilities for the filesystem",
  11785. "homepage": "https://symfony.com",
  11786. "support": {
  11787. "source": "https://github.com/symfony/filesystem/tree/v4.4.27"
  11788. },
  11789. "funding": [
  11790. {
  11791. "url": "https://symfony.com/sponsor",
  11792. "type": "custom"
  11793. },
  11794. {
  11795. "url": "https://github.com/fabpot",
  11796. "type": "github"
  11797. },
  11798. {
  11799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11800. "type": "tidelift"
  11801. }
  11802. ],
  11803. "time": "2021-07-21T12:19:41+00:00"
  11804. },
  11805. {
  11806. "name": "symfony/finder",
  11807. "version": "v4.4.30",
  11808. "source": {
  11809. "type": "git",
  11810. "url": "https://github.com/symfony/finder.git",
  11811. "reference": "70362f1e112280d75b30087c7598b837c1b468b6"
  11812. },
  11813. "dist": {
  11814. "type": "zip",
  11815. "url": "https://api.github.com/repos/symfony/finder/zipball/70362f1e112280d75b30087c7598b837c1b468b6",
  11816. "reference": "70362f1e112280d75b30087c7598b837c1b468b6",
  11817. "shasum": ""
  11818. },
  11819. "require": {
  11820. "php": ">=7.1.3",
  11821. "symfony/polyfill-php80": "^1.16"
  11822. },
  11823. "type": "library",
  11824. "autoload": {
  11825. "psr-4": {
  11826. "Symfony\\Component\\Finder\\": ""
  11827. },
  11828. "exclude-from-classmap": [
  11829. "/Tests/"
  11830. ]
  11831. },
  11832. "notification-url": "https://packagist.org/downloads/",
  11833. "license": [
  11834. "MIT"
  11835. ],
  11836. "authors": [
  11837. {
  11838. "name": "Fabien Potencier",
  11839. "email": "fabien@symfony.com"
  11840. },
  11841. {
  11842. "name": "Symfony Community",
  11843. "homepage": "https://symfony.com/contributors"
  11844. }
  11845. ],
  11846. "description": "Finds files and directories via an intuitive fluent interface",
  11847. "homepage": "https://symfony.com",
  11848. "support": {
  11849. "source": "https://github.com/symfony/finder/tree/v4.4.30"
  11850. },
  11851. "funding": [
  11852. {
  11853. "url": "https://symfony.com/sponsor",
  11854. "type": "custom"
  11855. },
  11856. {
  11857. "url": "https://github.com/fabpot",
  11858. "type": "github"
  11859. },
  11860. {
  11861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11862. "type": "tidelift"
  11863. }
  11864. ],
  11865. "time": "2021-08-04T20:31:23+00:00"
  11866. },
  11867. {
  11868. "name": "symfony/http-client-contracts",
  11869. "version": "v2.4.0",
  11870. "source": {
  11871. "type": "git",
  11872. "url": "https://github.com/symfony/http-client-contracts.git",
  11873. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  11874. },
  11875. "dist": {
  11876. "type": "zip",
  11877. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  11878. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  11879. "shasum": ""
  11880. },
  11881. "require": {
  11882. "php": ">=7.2.5"
  11883. },
  11884. "suggest": {
  11885. "symfony/http-client-implementation": ""
  11886. },
  11887. "type": "library",
  11888. "extra": {
  11889. "branch-alias": {
  11890. "dev-main": "2.4-dev"
  11891. },
  11892. "thanks": {
  11893. "name": "symfony/contracts",
  11894. "url": "https://github.com/symfony/contracts"
  11895. }
  11896. },
  11897. "autoload": {
  11898. "psr-4": {
  11899. "Symfony\\Contracts\\HttpClient\\": ""
  11900. }
  11901. },
  11902. "notification-url": "https://packagist.org/downloads/",
  11903. "license": [
  11904. "MIT"
  11905. ],
  11906. "authors": [
  11907. {
  11908. "name": "Nicolas Grekas",
  11909. "email": "p@tchwork.com"
  11910. },
  11911. {
  11912. "name": "Symfony Community",
  11913. "homepage": "https://symfony.com/contributors"
  11914. }
  11915. ],
  11916. "description": "Generic abstractions related to HTTP clients",
  11917. "homepage": "https://symfony.com",
  11918. "keywords": [
  11919. "abstractions",
  11920. "contracts",
  11921. "decoupling",
  11922. "interfaces",
  11923. "interoperability",
  11924. "standards"
  11925. ],
  11926. "support": {
  11927. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  11928. },
  11929. "funding": [
  11930. {
  11931. "url": "https://symfony.com/sponsor",
  11932. "type": "custom"
  11933. },
  11934. {
  11935. "url": "https://github.com/fabpot",
  11936. "type": "github"
  11937. },
  11938. {
  11939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11940. "type": "tidelift"
  11941. }
  11942. ],
  11943. "time": "2021-04-11T23:07:08+00:00"
  11944. },
  11945. {
  11946. "name": "symfony/http-foundation",
  11947. "version": "v4.4.25",
  11948. "source": {
  11949. "type": "git",
  11950. "url": "https://github.com/symfony/http-foundation.git",
  11951. "reference": "0c79d5a65ace4fe66e49702658c024a419d2438b"
  11952. },
  11953. "dist": {
  11954. "type": "zip",
  11955. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0c79d5a65ace4fe66e49702658c024a419d2438b",
  11956. "reference": "0c79d5a65ace4fe66e49702658c024a419d2438b",
  11957. "shasum": ""
  11958. },
  11959. "require": {
  11960. "php": ">=7.1.3",
  11961. "symfony/mime": "^4.3|^5.0",
  11962. "symfony/polyfill-mbstring": "~1.1",
  11963. "symfony/polyfill-php80": "^1.15"
  11964. },
  11965. "require-dev": {
  11966. "predis/predis": "~1.0",
  11967. "symfony/expression-language": "^3.4|^4.0|^5.0"
  11968. },
  11969. "type": "library",
  11970. "autoload": {
  11971. "psr-4": {
  11972. "Symfony\\Component\\HttpFoundation\\": ""
  11973. },
  11974. "exclude-from-classmap": [
  11975. "/Tests/"
  11976. ]
  11977. },
  11978. "notification-url": "https://packagist.org/downloads/",
  11979. "license": [
  11980. "MIT"
  11981. ],
  11982. "authors": [
  11983. {
  11984. "name": "Fabien Potencier",
  11985. "email": "fabien@symfony.com"
  11986. },
  11987. {
  11988. "name": "Symfony Community",
  11989. "homepage": "https://symfony.com/contributors"
  11990. }
  11991. ],
  11992. "description": "Defines an object-oriented layer for the HTTP specification",
  11993. "homepage": "https://symfony.com",
  11994. "support": {
  11995. "source": "https://github.com/symfony/http-foundation/tree/v4.4.25"
  11996. },
  11997. "funding": [
  11998. {
  11999. "url": "https://symfony.com/sponsor",
  12000. "type": "custom"
  12001. },
  12002. {
  12003. "url": "https://github.com/fabpot",
  12004. "type": "github"
  12005. },
  12006. {
  12007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12008. "type": "tidelift"
  12009. }
  12010. ],
  12011. "time": "2021-05-26T11:20:16+00:00"
  12012. },
  12013. {
  12014. "name": "symfony/http-kernel",
  12015. "version": "v4.4.25",
  12016. "source": {
  12017. "type": "git",
  12018. "url": "https://github.com/symfony/http-kernel.git",
  12019. "reference": "3795165596fe81a52296b78c9aae938d434069cc"
  12020. },
  12021. "dist": {
  12022. "type": "zip",
  12023. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3795165596fe81a52296b78c9aae938d434069cc",
  12024. "reference": "3795165596fe81a52296b78c9aae938d434069cc",
  12025. "shasum": ""
  12026. },
  12027. "require": {
  12028. "php": ">=7.1.3",
  12029. "psr/log": "~1.0",
  12030. "symfony/error-handler": "^4.4",
  12031. "symfony/event-dispatcher": "^4.4",
  12032. "symfony/http-client-contracts": "^1.1|^2",
  12033. "symfony/http-foundation": "^4.4|^5.0",
  12034. "symfony/polyfill-ctype": "^1.8",
  12035. "symfony/polyfill-php73": "^1.9",
  12036. "symfony/polyfill-php80": "^1.15"
  12037. },
  12038. "conflict": {
  12039. "symfony/browser-kit": "<4.3",
  12040. "symfony/config": "<3.4",
  12041. "symfony/console": ">=5",
  12042. "symfony/dependency-injection": "<4.3",
  12043. "symfony/translation": "<4.2",
  12044. "twig/twig": "<1.43|<2.13,>=2"
  12045. },
  12046. "provide": {
  12047. "psr/log-implementation": "1.0"
  12048. },
  12049. "require-dev": {
  12050. "psr/cache": "^1.0|^2.0|^3.0",
  12051. "symfony/browser-kit": "^4.3|^5.0",
  12052. "symfony/config": "^3.4|^4.0|^5.0",
  12053. "symfony/console": "^3.4|^4.0",
  12054. "symfony/css-selector": "^3.4|^4.0|^5.0",
  12055. "symfony/dependency-injection": "^4.3|^5.0",
  12056. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  12057. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12058. "symfony/finder": "^3.4|^4.0|^5.0",
  12059. "symfony/process": "^3.4|^4.0|^5.0",
  12060. "symfony/routing": "^3.4|^4.0|^5.0",
  12061. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  12062. "symfony/templating": "^3.4|^4.0|^5.0",
  12063. "symfony/translation": "^4.2|^5.0",
  12064. "symfony/translation-contracts": "^1.1|^2",
  12065. "twig/twig": "^1.43|^2.13|^3.0.4"
  12066. },
  12067. "suggest": {
  12068. "symfony/browser-kit": "",
  12069. "symfony/config": "",
  12070. "symfony/console": "",
  12071. "symfony/dependency-injection": ""
  12072. },
  12073. "type": "library",
  12074. "autoload": {
  12075. "psr-4": {
  12076. "Symfony\\Component\\HttpKernel\\": ""
  12077. },
  12078. "exclude-from-classmap": [
  12079. "/Tests/"
  12080. ]
  12081. },
  12082. "notification-url": "https://packagist.org/downloads/",
  12083. "license": [
  12084. "MIT"
  12085. ],
  12086. "authors": [
  12087. {
  12088. "name": "Fabien Potencier",
  12089. "email": "fabien@symfony.com"
  12090. },
  12091. {
  12092. "name": "Symfony Community",
  12093. "homepage": "https://symfony.com/contributors"
  12094. }
  12095. ],
  12096. "description": "Provides a structured process for converting a Request into a Response",
  12097. "homepage": "https://symfony.com",
  12098. "support": {
  12099. "source": "https://github.com/symfony/http-kernel/tree/v4.4.25"
  12100. },
  12101. "funding": [
  12102. {
  12103. "url": "https://symfony.com/sponsor",
  12104. "type": "custom"
  12105. },
  12106. {
  12107. "url": "https://github.com/fabpot",
  12108. "type": "github"
  12109. },
  12110. {
  12111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12112. "type": "tidelift"
  12113. }
  12114. ],
  12115. "time": "2021-06-01T07:12:08+00:00"
  12116. },
  12117. {
  12118. "name": "symfony/mime",
  12119. "version": "v5.3.0",
  12120. "source": {
  12121. "type": "git",
  12122. "url": "https://github.com/symfony/mime.git",
  12123. "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852"
  12124. },
  12125. "dist": {
  12126. "type": "zip",
  12127. "url": "https://api.github.com/repos/symfony/mime/zipball/ed710d297b181f6a7194d8172c9c2423d58e4852",
  12128. "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852",
  12129. "shasum": ""
  12130. },
  12131. "require": {
  12132. "php": ">=7.2.5",
  12133. "symfony/deprecation-contracts": "^2.1",
  12134. "symfony/polyfill-intl-idn": "^1.10",
  12135. "symfony/polyfill-mbstring": "^1.0",
  12136. "symfony/polyfill-php80": "^1.15"
  12137. },
  12138. "conflict": {
  12139. "egulias/email-validator": "~3.0.0",
  12140. "phpdocumentor/reflection-docblock": "<3.2.2",
  12141. "phpdocumentor/type-resolver": "<1.4.0",
  12142. "symfony/mailer": "<4.4"
  12143. },
  12144. "require-dev": {
  12145. "egulias/email-validator": "^2.1.10|^3.1",
  12146. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  12147. "symfony/dependency-injection": "^4.4|^5.0",
  12148. "symfony/property-access": "^4.4|^5.1",
  12149. "symfony/property-info": "^4.4|^5.1",
  12150. "symfony/serializer": "^5.2"
  12151. },
  12152. "type": "library",
  12153. "autoload": {
  12154. "psr-4": {
  12155. "Symfony\\Component\\Mime\\": ""
  12156. },
  12157. "exclude-from-classmap": [
  12158. "/Tests/"
  12159. ]
  12160. },
  12161. "notification-url": "https://packagist.org/downloads/",
  12162. "license": [
  12163. "MIT"
  12164. ],
  12165. "authors": [
  12166. {
  12167. "name": "Fabien Potencier",
  12168. "email": "fabien@symfony.com"
  12169. },
  12170. {
  12171. "name": "Symfony Community",
  12172. "homepage": "https://symfony.com/contributors"
  12173. }
  12174. ],
  12175. "description": "Allows manipulating MIME messages",
  12176. "homepage": "https://symfony.com",
  12177. "keywords": [
  12178. "mime",
  12179. "mime-type"
  12180. ],
  12181. "support": {
  12182. "source": "https://github.com/symfony/mime/tree/v5.3.0"
  12183. },
  12184. "funding": [
  12185. {
  12186. "url": "https://symfony.com/sponsor",
  12187. "type": "custom"
  12188. },
  12189. {
  12190. "url": "https://github.com/fabpot",
  12191. "type": "github"
  12192. },
  12193. {
  12194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12195. "type": "tidelift"
  12196. }
  12197. ],
  12198. "time": "2021-05-26T17:43:10+00:00"
  12199. },
  12200. {
  12201. "name": "symfony/polyfill-ctype",
  12202. "version": "v1.23.0",
  12203. "source": {
  12204. "type": "git",
  12205. "url": "https://github.com/symfony/polyfill-ctype.git",
  12206. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  12207. },
  12208. "dist": {
  12209. "type": "zip",
  12210. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  12211. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  12212. "shasum": ""
  12213. },
  12214. "require": {
  12215. "php": ">=7.1"
  12216. },
  12217. "suggest": {
  12218. "ext-ctype": "For best performance"
  12219. },
  12220. "type": "library",
  12221. "extra": {
  12222. "branch-alias": {
  12223. "dev-main": "1.23-dev"
  12224. },
  12225. "thanks": {
  12226. "name": "symfony/polyfill",
  12227. "url": "https://github.com/symfony/polyfill"
  12228. }
  12229. },
  12230. "autoload": {
  12231. "psr-4": {
  12232. "Symfony\\Polyfill\\Ctype\\": ""
  12233. },
  12234. "files": [
  12235. "bootstrap.php"
  12236. ]
  12237. },
  12238. "notification-url": "https://packagist.org/downloads/",
  12239. "license": [
  12240. "MIT"
  12241. ],
  12242. "authors": [
  12243. {
  12244. "name": "Gert de Pagter",
  12245. "email": "BackEndTea@gmail.com"
  12246. },
  12247. {
  12248. "name": "Symfony Community",
  12249. "homepage": "https://symfony.com/contributors"
  12250. }
  12251. ],
  12252. "description": "Symfony polyfill for ctype functions",
  12253. "homepage": "https://symfony.com",
  12254. "keywords": [
  12255. "compatibility",
  12256. "ctype",
  12257. "polyfill",
  12258. "portable"
  12259. ],
  12260. "support": {
  12261. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  12262. },
  12263. "funding": [
  12264. {
  12265. "url": "https://symfony.com/sponsor",
  12266. "type": "custom"
  12267. },
  12268. {
  12269. "url": "https://github.com/fabpot",
  12270. "type": "github"
  12271. },
  12272. {
  12273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12274. "type": "tidelift"
  12275. }
  12276. ],
  12277. "time": "2021-02-19T12:13:01+00:00"
  12278. },
  12279. {
  12280. "name": "symfony/polyfill-iconv",
  12281. "version": "v1.23.0",
  12282. "source": {
  12283. "type": "git",
  12284. "url": "https://github.com/symfony/polyfill-iconv.git",
  12285. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  12286. },
  12287. "dist": {
  12288. "type": "zip",
  12289. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  12290. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  12291. "shasum": ""
  12292. },
  12293. "require": {
  12294. "php": ">=7.1"
  12295. },
  12296. "suggest": {
  12297. "ext-iconv": "For best performance"
  12298. },
  12299. "type": "library",
  12300. "extra": {
  12301. "branch-alias": {
  12302. "dev-main": "1.23-dev"
  12303. },
  12304. "thanks": {
  12305. "name": "symfony/polyfill",
  12306. "url": "https://github.com/symfony/polyfill"
  12307. }
  12308. },
  12309. "autoload": {
  12310. "psr-4": {
  12311. "Symfony\\Polyfill\\Iconv\\": ""
  12312. },
  12313. "files": [
  12314. "bootstrap.php"
  12315. ]
  12316. },
  12317. "notification-url": "https://packagist.org/downloads/",
  12318. "license": [
  12319. "MIT"
  12320. ],
  12321. "authors": [
  12322. {
  12323. "name": "Nicolas Grekas",
  12324. "email": "p@tchwork.com"
  12325. },
  12326. {
  12327. "name": "Symfony Community",
  12328. "homepage": "https://symfony.com/contributors"
  12329. }
  12330. ],
  12331. "description": "Symfony polyfill for the Iconv extension",
  12332. "homepage": "https://symfony.com",
  12333. "keywords": [
  12334. "compatibility",
  12335. "iconv",
  12336. "polyfill",
  12337. "portable",
  12338. "shim"
  12339. ],
  12340. "support": {
  12341. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  12342. },
  12343. "funding": [
  12344. {
  12345. "url": "https://symfony.com/sponsor",
  12346. "type": "custom"
  12347. },
  12348. {
  12349. "url": "https://github.com/fabpot",
  12350. "type": "github"
  12351. },
  12352. {
  12353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12354. "type": "tidelift"
  12355. }
  12356. ],
  12357. "time": "2021-05-27T09:27:20+00:00"
  12358. },
  12359. {
  12360. "name": "symfony/polyfill-intl-idn",
  12361. "version": "v1.23.0",
  12362. "source": {
  12363. "type": "git",
  12364. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12365. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  12366. },
  12367. "dist": {
  12368. "type": "zip",
  12369. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  12370. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  12371. "shasum": ""
  12372. },
  12373. "require": {
  12374. "php": ">=7.1",
  12375. "symfony/polyfill-intl-normalizer": "^1.10",
  12376. "symfony/polyfill-php72": "^1.10"
  12377. },
  12378. "suggest": {
  12379. "ext-intl": "For best performance"
  12380. },
  12381. "type": "library",
  12382. "extra": {
  12383. "branch-alias": {
  12384. "dev-main": "1.23-dev"
  12385. },
  12386. "thanks": {
  12387. "name": "symfony/polyfill",
  12388. "url": "https://github.com/symfony/polyfill"
  12389. }
  12390. },
  12391. "autoload": {
  12392. "psr-4": {
  12393. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12394. },
  12395. "files": [
  12396. "bootstrap.php"
  12397. ]
  12398. },
  12399. "notification-url": "https://packagist.org/downloads/",
  12400. "license": [
  12401. "MIT"
  12402. ],
  12403. "authors": [
  12404. {
  12405. "name": "Laurent Bassin",
  12406. "email": "laurent@bassin.info"
  12407. },
  12408. {
  12409. "name": "Trevor Rowbotham",
  12410. "email": "trevor.rowbotham@pm.me"
  12411. },
  12412. {
  12413. "name": "Symfony Community",
  12414. "homepage": "https://symfony.com/contributors"
  12415. }
  12416. ],
  12417. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12418. "homepage": "https://symfony.com",
  12419. "keywords": [
  12420. "compatibility",
  12421. "idn",
  12422. "intl",
  12423. "polyfill",
  12424. "portable",
  12425. "shim"
  12426. ],
  12427. "support": {
  12428. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  12429. },
  12430. "funding": [
  12431. {
  12432. "url": "https://symfony.com/sponsor",
  12433. "type": "custom"
  12434. },
  12435. {
  12436. "url": "https://github.com/fabpot",
  12437. "type": "github"
  12438. },
  12439. {
  12440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12441. "type": "tidelift"
  12442. }
  12443. ],
  12444. "time": "2021-05-27T09:27:20+00:00"
  12445. },
  12446. {
  12447. "name": "symfony/polyfill-intl-normalizer",
  12448. "version": "v1.23.0",
  12449. "source": {
  12450. "type": "git",
  12451. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12452. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  12453. },
  12454. "dist": {
  12455. "type": "zip",
  12456. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  12457. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  12458. "shasum": ""
  12459. },
  12460. "require": {
  12461. "php": ">=7.1"
  12462. },
  12463. "suggest": {
  12464. "ext-intl": "For best performance"
  12465. },
  12466. "type": "library",
  12467. "extra": {
  12468. "branch-alias": {
  12469. "dev-main": "1.23-dev"
  12470. },
  12471. "thanks": {
  12472. "name": "symfony/polyfill",
  12473. "url": "https://github.com/symfony/polyfill"
  12474. }
  12475. },
  12476. "autoload": {
  12477. "psr-4": {
  12478. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12479. },
  12480. "files": [
  12481. "bootstrap.php"
  12482. ],
  12483. "classmap": [
  12484. "Resources/stubs"
  12485. ]
  12486. },
  12487. "notification-url": "https://packagist.org/downloads/",
  12488. "license": [
  12489. "MIT"
  12490. ],
  12491. "authors": [
  12492. {
  12493. "name": "Nicolas Grekas",
  12494. "email": "p@tchwork.com"
  12495. },
  12496. {
  12497. "name": "Symfony Community",
  12498. "homepage": "https://symfony.com/contributors"
  12499. }
  12500. ],
  12501. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12502. "homepage": "https://symfony.com",
  12503. "keywords": [
  12504. "compatibility",
  12505. "intl",
  12506. "normalizer",
  12507. "polyfill",
  12508. "portable",
  12509. "shim"
  12510. ],
  12511. "support": {
  12512. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  12513. },
  12514. "funding": [
  12515. {
  12516. "url": "https://symfony.com/sponsor",
  12517. "type": "custom"
  12518. },
  12519. {
  12520. "url": "https://github.com/fabpot",
  12521. "type": "github"
  12522. },
  12523. {
  12524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12525. "type": "tidelift"
  12526. }
  12527. ],
  12528. "time": "2021-02-19T12:13:01+00:00"
  12529. },
  12530. {
  12531. "name": "symfony/polyfill-mbstring",
  12532. "version": "v1.23.0",
  12533. "source": {
  12534. "type": "git",
  12535. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12536. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  12537. },
  12538. "dist": {
  12539. "type": "zip",
  12540. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  12541. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  12542. "shasum": ""
  12543. },
  12544. "require": {
  12545. "php": ">=7.1"
  12546. },
  12547. "suggest": {
  12548. "ext-mbstring": "For best performance"
  12549. },
  12550. "type": "library",
  12551. "extra": {
  12552. "branch-alias": {
  12553. "dev-main": "1.23-dev"
  12554. },
  12555. "thanks": {
  12556. "name": "symfony/polyfill",
  12557. "url": "https://github.com/symfony/polyfill"
  12558. }
  12559. },
  12560. "autoload": {
  12561. "psr-4": {
  12562. "Symfony\\Polyfill\\Mbstring\\": ""
  12563. },
  12564. "files": [
  12565. "bootstrap.php"
  12566. ]
  12567. },
  12568. "notification-url": "https://packagist.org/downloads/",
  12569. "license": [
  12570. "MIT"
  12571. ],
  12572. "authors": [
  12573. {
  12574. "name": "Nicolas Grekas",
  12575. "email": "p@tchwork.com"
  12576. },
  12577. {
  12578. "name": "Symfony Community",
  12579. "homepage": "https://symfony.com/contributors"
  12580. }
  12581. ],
  12582. "description": "Symfony polyfill for the Mbstring extension",
  12583. "homepage": "https://symfony.com",
  12584. "keywords": [
  12585. "compatibility",
  12586. "mbstring",
  12587. "polyfill",
  12588. "portable",
  12589. "shim"
  12590. ],
  12591. "support": {
  12592. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  12593. },
  12594. "funding": [
  12595. {
  12596. "url": "https://symfony.com/sponsor",
  12597. "type": "custom"
  12598. },
  12599. {
  12600. "url": "https://github.com/fabpot",
  12601. "type": "github"
  12602. },
  12603. {
  12604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12605. "type": "tidelift"
  12606. }
  12607. ],
  12608. "time": "2021-05-27T09:27:20+00:00"
  12609. },
  12610. {
  12611. "name": "symfony/polyfill-php72",
  12612. "version": "v1.23.0",
  12613. "source": {
  12614. "type": "git",
  12615. "url": "https://github.com/symfony/polyfill-php72.git",
  12616. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  12617. },
  12618. "dist": {
  12619. "type": "zip",
  12620. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  12621. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  12622. "shasum": ""
  12623. },
  12624. "require": {
  12625. "php": ">=7.1"
  12626. },
  12627. "type": "library",
  12628. "extra": {
  12629. "branch-alias": {
  12630. "dev-main": "1.23-dev"
  12631. },
  12632. "thanks": {
  12633. "name": "symfony/polyfill",
  12634. "url": "https://github.com/symfony/polyfill"
  12635. }
  12636. },
  12637. "autoload": {
  12638. "psr-4": {
  12639. "Symfony\\Polyfill\\Php72\\": ""
  12640. },
  12641. "files": [
  12642. "bootstrap.php"
  12643. ]
  12644. },
  12645. "notification-url": "https://packagist.org/downloads/",
  12646. "license": [
  12647. "MIT"
  12648. ],
  12649. "authors": [
  12650. {
  12651. "name": "Nicolas Grekas",
  12652. "email": "p@tchwork.com"
  12653. },
  12654. {
  12655. "name": "Symfony Community",
  12656. "homepage": "https://symfony.com/contributors"
  12657. }
  12658. ],
  12659. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  12660. "homepage": "https://symfony.com",
  12661. "keywords": [
  12662. "compatibility",
  12663. "polyfill",
  12664. "portable",
  12665. "shim"
  12666. ],
  12667. "support": {
  12668. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  12669. },
  12670. "funding": [
  12671. {
  12672. "url": "https://symfony.com/sponsor",
  12673. "type": "custom"
  12674. },
  12675. {
  12676. "url": "https://github.com/fabpot",
  12677. "type": "github"
  12678. },
  12679. {
  12680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12681. "type": "tidelift"
  12682. }
  12683. ],
  12684. "time": "2021-05-27T09:17:38+00:00"
  12685. },
  12686. {
  12687. "name": "symfony/polyfill-php73",
  12688. "version": "v1.23.0",
  12689. "source": {
  12690. "type": "git",
  12691. "url": "https://github.com/symfony/polyfill-php73.git",
  12692. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  12693. },
  12694. "dist": {
  12695. "type": "zip",
  12696. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  12697. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  12698. "shasum": ""
  12699. },
  12700. "require": {
  12701. "php": ">=7.1"
  12702. },
  12703. "type": "library",
  12704. "extra": {
  12705. "branch-alias": {
  12706. "dev-main": "1.23-dev"
  12707. },
  12708. "thanks": {
  12709. "name": "symfony/polyfill",
  12710. "url": "https://github.com/symfony/polyfill"
  12711. }
  12712. },
  12713. "autoload": {
  12714. "psr-4": {
  12715. "Symfony\\Polyfill\\Php73\\": ""
  12716. },
  12717. "files": [
  12718. "bootstrap.php"
  12719. ],
  12720. "classmap": [
  12721. "Resources/stubs"
  12722. ]
  12723. },
  12724. "notification-url": "https://packagist.org/downloads/",
  12725. "license": [
  12726. "MIT"
  12727. ],
  12728. "authors": [
  12729. {
  12730. "name": "Nicolas Grekas",
  12731. "email": "p@tchwork.com"
  12732. },
  12733. {
  12734. "name": "Symfony Community",
  12735. "homepage": "https://symfony.com/contributors"
  12736. }
  12737. ],
  12738. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  12739. "homepage": "https://symfony.com",
  12740. "keywords": [
  12741. "compatibility",
  12742. "polyfill",
  12743. "portable",
  12744. "shim"
  12745. ],
  12746. "support": {
  12747. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  12748. },
  12749. "funding": [
  12750. {
  12751. "url": "https://symfony.com/sponsor",
  12752. "type": "custom"
  12753. },
  12754. {
  12755. "url": "https://github.com/fabpot",
  12756. "type": "github"
  12757. },
  12758. {
  12759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12760. "type": "tidelift"
  12761. }
  12762. ],
  12763. "time": "2021-02-19T12:13:01+00:00"
  12764. },
  12765. {
  12766. "name": "symfony/polyfill-php80",
  12767. "version": "v1.23.0",
  12768. "source": {
  12769. "type": "git",
  12770. "url": "https://github.com/symfony/polyfill-php80.git",
  12771. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  12772. },
  12773. "dist": {
  12774. "type": "zip",
  12775. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  12776. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  12777. "shasum": ""
  12778. },
  12779. "require": {
  12780. "php": ">=7.1"
  12781. },
  12782. "type": "library",
  12783. "extra": {
  12784. "branch-alias": {
  12785. "dev-main": "1.23-dev"
  12786. },
  12787. "thanks": {
  12788. "name": "symfony/polyfill",
  12789. "url": "https://github.com/symfony/polyfill"
  12790. }
  12791. },
  12792. "autoload": {
  12793. "psr-4": {
  12794. "Symfony\\Polyfill\\Php80\\": ""
  12795. },
  12796. "files": [
  12797. "bootstrap.php"
  12798. ],
  12799. "classmap": [
  12800. "Resources/stubs"
  12801. ]
  12802. },
  12803. "notification-url": "https://packagist.org/downloads/",
  12804. "license": [
  12805. "MIT"
  12806. ],
  12807. "authors": [
  12808. {
  12809. "name": "Ion Bazan",
  12810. "email": "ion.bazan@gmail.com"
  12811. },
  12812. {
  12813. "name": "Nicolas Grekas",
  12814. "email": "p@tchwork.com"
  12815. },
  12816. {
  12817. "name": "Symfony Community",
  12818. "homepage": "https://symfony.com/contributors"
  12819. }
  12820. ],
  12821. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  12822. "homepage": "https://symfony.com",
  12823. "keywords": [
  12824. "compatibility",
  12825. "polyfill",
  12826. "portable",
  12827. "shim"
  12828. ],
  12829. "support": {
  12830. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  12831. },
  12832. "funding": [
  12833. {
  12834. "url": "https://symfony.com/sponsor",
  12835. "type": "custom"
  12836. },
  12837. {
  12838. "url": "https://github.com/fabpot",
  12839. "type": "github"
  12840. },
  12841. {
  12842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12843. "type": "tidelift"
  12844. }
  12845. ],
  12846. "time": "2021-02-19T12:13:01+00:00"
  12847. },
  12848. {
  12849. "name": "symfony/polyfill-php81",
  12850. "version": "v1.23.0",
  12851. "source": {
  12852. "type": "git",
  12853. "url": "https://github.com/symfony/polyfill-php81.git",
  12854. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  12855. },
  12856. "dist": {
  12857. "type": "zip",
  12858. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  12859. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  12860. "shasum": ""
  12861. },
  12862. "require": {
  12863. "php": ">=7.1"
  12864. },
  12865. "type": "library",
  12866. "extra": {
  12867. "branch-alias": {
  12868. "dev-main": "1.23-dev"
  12869. },
  12870. "thanks": {
  12871. "name": "symfony/polyfill",
  12872. "url": "https://github.com/symfony/polyfill"
  12873. }
  12874. },
  12875. "autoload": {
  12876. "psr-4": {
  12877. "Symfony\\Polyfill\\Php81\\": ""
  12878. },
  12879. "files": [
  12880. "bootstrap.php"
  12881. ],
  12882. "classmap": [
  12883. "Resources/stubs"
  12884. ]
  12885. },
  12886. "notification-url": "https://packagist.org/downloads/",
  12887. "license": [
  12888. "MIT"
  12889. ],
  12890. "authors": [
  12891. {
  12892. "name": "Nicolas Grekas",
  12893. "email": "p@tchwork.com"
  12894. },
  12895. {
  12896. "name": "Symfony Community",
  12897. "homepage": "https://symfony.com/contributors"
  12898. }
  12899. ],
  12900. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12901. "homepage": "https://symfony.com",
  12902. "keywords": [
  12903. "compatibility",
  12904. "polyfill",
  12905. "portable",
  12906. "shim"
  12907. ],
  12908. "support": {
  12909. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  12910. },
  12911. "funding": [
  12912. {
  12913. "url": "https://symfony.com/sponsor",
  12914. "type": "custom"
  12915. },
  12916. {
  12917. "url": "https://github.com/fabpot",
  12918. "type": "github"
  12919. },
  12920. {
  12921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12922. "type": "tidelift"
  12923. }
  12924. ],
  12925. "time": "2021-05-21T13:25:03+00:00"
  12926. },
  12927. {
  12928. "name": "symfony/process",
  12929. "version": "v4.4.25",
  12930. "source": {
  12931. "type": "git",
  12932. "url": "https://github.com/symfony/process.git",
  12933. "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9"
  12934. },
  12935. "dist": {
  12936. "type": "zip",
  12937. "url": "https://api.github.com/repos/symfony/process/zipball/cd61e6dd273975c6625316de9d141ebd197f93c9",
  12938. "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9",
  12939. "shasum": ""
  12940. },
  12941. "require": {
  12942. "php": ">=7.1.3"
  12943. },
  12944. "type": "library",
  12945. "autoload": {
  12946. "psr-4": {
  12947. "Symfony\\Component\\Process\\": ""
  12948. },
  12949. "exclude-from-classmap": [
  12950. "/Tests/"
  12951. ]
  12952. },
  12953. "notification-url": "https://packagist.org/downloads/",
  12954. "license": [
  12955. "MIT"
  12956. ],
  12957. "authors": [
  12958. {
  12959. "name": "Fabien Potencier",
  12960. "email": "fabien@symfony.com"
  12961. },
  12962. {
  12963. "name": "Symfony Community",
  12964. "homepage": "https://symfony.com/contributors"
  12965. }
  12966. ],
  12967. "description": "Executes commands in sub-processes",
  12968. "homepage": "https://symfony.com",
  12969. "support": {
  12970. "source": "https://github.com/symfony/process/tree/v4.4.25"
  12971. },
  12972. "funding": [
  12973. {
  12974. "url": "https://symfony.com/sponsor",
  12975. "type": "custom"
  12976. },
  12977. {
  12978. "url": "https://github.com/fabpot",
  12979. "type": "github"
  12980. },
  12981. {
  12982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12983. "type": "tidelift"
  12984. }
  12985. ],
  12986. "time": "2021-05-26T11:20:16+00:00"
  12987. },
  12988. {
  12989. "name": "symfony/psr-http-message-bridge",
  12990. "version": "v2.1.0",
  12991. "source": {
  12992. "type": "git",
  12993. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12994. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d"
  12995. },
  12996. "dist": {
  12997. "type": "zip",
  12998. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d",
  12999. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d",
  13000. "shasum": ""
  13001. },
  13002. "require": {
  13003. "php": ">=7.1",
  13004. "psr/http-message": "^1.0",
  13005. "symfony/http-foundation": "^4.4 || ^5.0"
  13006. },
  13007. "require-dev": {
  13008. "nyholm/psr7": "^1.1",
  13009. "psr/log": "^1.1",
  13010. "symfony/browser-kit": "^4.4 || ^5.0",
  13011. "symfony/config": "^4.4 || ^5.0",
  13012. "symfony/event-dispatcher": "^4.4 || ^5.0",
  13013. "symfony/framework-bundle": "^4.4 || ^5.0",
  13014. "symfony/http-kernel": "^4.4 || ^5.0",
  13015. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  13016. },
  13017. "suggest": {
  13018. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  13019. },
  13020. "type": "symfony-bridge",
  13021. "extra": {
  13022. "branch-alias": {
  13023. "dev-main": "2.1-dev"
  13024. }
  13025. },
  13026. "autoload": {
  13027. "psr-4": {
  13028. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  13029. },
  13030. "exclude-from-classmap": [
  13031. "/Tests/"
  13032. ]
  13033. },
  13034. "notification-url": "https://packagist.org/downloads/",
  13035. "license": [
  13036. "MIT"
  13037. ],
  13038. "authors": [
  13039. {
  13040. "name": "Fabien Potencier",
  13041. "email": "fabien@symfony.com"
  13042. },
  13043. {
  13044. "name": "Symfony Community",
  13045. "homepage": "http://symfony.com/contributors"
  13046. }
  13047. ],
  13048. "description": "PSR HTTP message bridge",
  13049. "homepage": "http://symfony.com",
  13050. "keywords": [
  13051. "http",
  13052. "http-message",
  13053. "psr-17",
  13054. "psr-7"
  13055. ],
  13056. "support": {
  13057. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  13058. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.0"
  13059. },
  13060. "funding": [
  13061. {
  13062. "url": "https://symfony.com/sponsor",
  13063. "type": "custom"
  13064. },
  13065. {
  13066. "url": "https://github.com/fabpot",
  13067. "type": "github"
  13068. },
  13069. {
  13070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13071. "type": "tidelift"
  13072. }
  13073. ],
  13074. "time": "2021-02-17T10:35:25+00:00"
  13075. },
  13076. {
  13077. "name": "symfony/routing",
  13078. "version": "v4.4.25",
  13079. "source": {
  13080. "type": "git",
  13081. "url": "https://github.com/symfony/routing.git",
  13082. "reference": "3a3c2f197ad0846ac6413225fc78868ba1c61434"
  13083. },
  13084. "dist": {
  13085. "type": "zip",
  13086. "url": "https://api.github.com/repos/symfony/routing/zipball/3a3c2f197ad0846ac6413225fc78868ba1c61434",
  13087. "reference": "3a3c2f197ad0846ac6413225fc78868ba1c61434",
  13088. "shasum": ""
  13089. },
  13090. "require": {
  13091. "php": ">=7.1.3"
  13092. },
  13093. "conflict": {
  13094. "symfony/config": "<4.2",
  13095. "symfony/dependency-injection": "<3.4",
  13096. "symfony/yaml": "<3.4"
  13097. },
  13098. "require-dev": {
  13099. "doctrine/annotations": "^1.10.4",
  13100. "psr/log": "~1.0",
  13101. "symfony/config": "^4.2|^5.0",
  13102. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13103. "symfony/expression-language": "^3.4|^4.0|^5.0",
  13104. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  13105. "symfony/yaml": "^3.4|^4.0|^5.0"
  13106. },
  13107. "suggest": {
  13108. "doctrine/annotations": "For using the annotation loader",
  13109. "symfony/config": "For using the all-in-one router or any loader",
  13110. "symfony/expression-language": "For using expression matching",
  13111. "symfony/http-foundation": "For using a Symfony Request object",
  13112. "symfony/yaml": "For using the YAML loader"
  13113. },
  13114. "type": "library",
  13115. "autoload": {
  13116. "psr-4": {
  13117. "Symfony\\Component\\Routing\\": ""
  13118. },
  13119. "exclude-from-classmap": [
  13120. "/Tests/"
  13121. ]
  13122. },
  13123. "notification-url": "https://packagist.org/downloads/",
  13124. "license": [
  13125. "MIT"
  13126. ],
  13127. "authors": [
  13128. {
  13129. "name": "Fabien Potencier",
  13130. "email": "fabien@symfony.com"
  13131. },
  13132. {
  13133. "name": "Symfony Community",
  13134. "homepage": "https://symfony.com/contributors"
  13135. }
  13136. ],
  13137. "description": "Maps an HTTP request to a set of configuration variables",
  13138. "homepage": "https://symfony.com",
  13139. "keywords": [
  13140. "router",
  13141. "routing",
  13142. "uri",
  13143. "url"
  13144. ],
  13145. "support": {
  13146. "source": "https://github.com/symfony/routing/tree/v4.4.25"
  13147. },
  13148. "funding": [
  13149. {
  13150. "url": "https://symfony.com/sponsor",
  13151. "type": "custom"
  13152. },
  13153. {
  13154. "url": "https://github.com/fabpot",
  13155. "type": "github"
  13156. },
  13157. {
  13158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13159. "type": "tidelift"
  13160. }
  13161. ],
  13162. "time": "2021-05-26T17:39:37+00:00"
  13163. },
  13164. {
  13165. "name": "symfony/serializer",
  13166. "version": "v4.4.25",
  13167. "source": {
  13168. "type": "git",
  13169. "url": "https://github.com/symfony/serializer.git",
  13170. "reference": "6db3eb4f1bb437cd3730f52353ba4b568acaddf5"
  13171. },
  13172. "dist": {
  13173. "type": "zip",
  13174. "url": "https://api.github.com/repos/symfony/serializer/zipball/6db3eb4f1bb437cd3730f52353ba4b568acaddf5",
  13175. "reference": "6db3eb4f1bb437cd3730f52353ba4b568acaddf5",
  13176. "shasum": ""
  13177. },
  13178. "require": {
  13179. "php": ">=7.1.3",
  13180. "symfony/polyfill-ctype": "~1.8"
  13181. },
  13182. "conflict": {
  13183. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  13184. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  13185. "symfony/dependency-injection": "<3.4",
  13186. "symfony/property-access": "<3.4",
  13187. "symfony/property-info": "<3.4",
  13188. "symfony/yaml": "<3.4"
  13189. },
  13190. "require-dev": {
  13191. "doctrine/annotations": "^1.10.4",
  13192. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  13193. "symfony/cache": "^3.4|^4.0|^5.0",
  13194. "symfony/config": "^3.4|^4.0|^5.0",
  13195. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13196. "symfony/error-handler": "^4.4|^5.0",
  13197. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  13198. "symfony/mime": "^4.4|^5.0",
  13199. "symfony/property-access": "^3.4.41|^4.4.9|^5.0.9",
  13200. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  13201. "symfony/validator": "^3.4|^4.0|^5.0",
  13202. "symfony/yaml": "^3.4|^4.0|^5.0"
  13203. },
  13204. "suggest": {
  13205. "doctrine/annotations": "For using the annotation mapping.",
  13206. "psr/cache-implementation": "For using the metadata cache.",
  13207. "symfony/config": "For using the XML mapping loader.",
  13208. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  13209. "symfony/property-access": "For using the ObjectNormalizer.",
  13210. "symfony/property-info": "To deserialize relations.",
  13211. "symfony/yaml": "For using the default YAML mapping loader."
  13212. },
  13213. "type": "library",
  13214. "autoload": {
  13215. "psr-4": {
  13216. "Symfony\\Component\\Serializer\\": ""
  13217. },
  13218. "exclude-from-classmap": [
  13219. "/Tests/"
  13220. ]
  13221. },
  13222. "notification-url": "https://packagist.org/downloads/",
  13223. "license": [
  13224. "MIT"
  13225. ],
  13226. "authors": [
  13227. {
  13228. "name": "Fabien Potencier",
  13229. "email": "fabien@symfony.com"
  13230. },
  13231. {
  13232. "name": "Symfony Community",
  13233. "homepage": "https://symfony.com/contributors"
  13234. }
  13235. ],
  13236. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  13237. "homepage": "https://symfony.com",
  13238. "support": {
  13239. "source": "https://github.com/symfony/serializer/tree/v4.4.25"
  13240. },
  13241. "funding": [
  13242. {
  13243. "url": "https://symfony.com/sponsor",
  13244. "type": "custom"
  13245. },
  13246. {
  13247. "url": "https://github.com/fabpot",
  13248. "type": "github"
  13249. },
  13250. {
  13251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13252. "type": "tidelift"
  13253. }
  13254. ],
  13255. "time": "2021-05-26T11:20:16+00:00"
  13256. },
  13257. {
  13258. "name": "symfony/service-contracts",
  13259. "version": "v2.4.0",
  13260. "source": {
  13261. "type": "git",
  13262. "url": "https://github.com/symfony/service-contracts.git",
  13263. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  13264. },
  13265. "dist": {
  13266. "type": "zip",
  13267. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  13268. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  13269. "shasum": ""
  13270. },
  13271. "require": {
  13272. "php": ">=7.2.5",
  13273. "psr/container": "^1.1"
  13274. },
  13275. "suggest": {
  13276. "symfony/service-implementation": ""
  13277. },
  13278. "type": "library",
  13279. "extra": {
  13280. "branch-alias": {
  13281. "dev-main": "2.4-dev"
  13282. },
  13283. "thanks": {
  13284. "name": "symfony/contracts",
  13285. "url": "https://github.com/symfony/contracts"
  13286. }
  13287. },
  13288. "autoload": {
  13289. "psr-4": {
  13290. "Symfony\\Contracts\\Service\\": ""
  13291. }
  13292. },
  13293. "notification-url": "https://packagist.org/downloads/",
  13294. "license": [
  13295. "MIT"
  13296. ],
  13297. "authors": [
  13298. {
  13299. "name": "Nicolas Grekas",
  13300. "email": "p@tchwork.com"
  13301. },
  13302. {
  13303. "name": "Symfony Community",
  13304. "homepage": "https://symfony.com/contributors"
  13305. }
  13306. ],
  13307. "description": "Generic abstractions related to writing services",
  13308. "homepage": "https://symfony.com",
  13309. "keywords": [
  13310. "abstractions",
  13311. "contracts",
  13312. "decoupling",
  13313. "interfaces",
  13314. "interoperability",
  13315. "standards"
  13316. ],
  13317. "support": {
  13318. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  13319. },
  13320. "funding": [
  13321. {
  13322. "url": "https://symfony.com/sponsor",
  13323. "type": "custom"
  13324. },
  13325. {
  13326. "url": "https://github.com/fabpot",
  13327. "type": "github"
  13328. },
  13329. {
  13330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13331. "type": "tidelift"
  13332. }
  13333. ],
  13334. "time": "2021-04-01T10:43:52+00:00"
  13335. },
  13336. {
  13337. "name": "symfony/translation",
  13338. "version": "v4.4.25",
  13339. "source": {
  13340. "type": "git",
  13341. "url": "https://github.com/symfony/translation.git",
  13342. "reference": "dfe132c5c6d89f90ce7f961742cc532e9ca16dd4"
  13343. },
  13344. "dist": {
  13345. "type": "zip",
  13346. "url": "https://api.github.com/repos/symfony/translation/zipball/dfe132c5c6d89f90ce7f961742cc532e9ca16dd4",
  13347. "reference": "dfe132c5c6d89f90ce7f961742cc532e9ca16dd4",
  13348. "shasum": ""
  13349. },
  13350. "require": {
  13351. "php": ">=7.1.3",
  13352. "symfony/polyfill-mbstring": "~1.0",
  13353. "symfony/translation-contracts": "^1.1.6|^2"
  13354. },
  13355. "conflict": {
  13356. "symfony/config": "<3.4",
  13357. "symfony/dependency-injection": "<3.4",
  13358. "symfony/http-kernel": "<4.4",
  13359. "symfony/yaml": "<3.4"
  13360. },
  13361. "provide": {
  13362. "symfony/translation-implementation": "1.0|2.0"
  13363. },
  13364. "require-dev": {
  13365. "psr/log": "~1.0",
  13366. "symfony/config": "^3.4|^4.0|^5.0",
  13367. "symfony/console": "^3.4|^4.0|^5.0",
  13368. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13369. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  13370. "symfony/http-kernel": "^4.4",
  13371. "symfony/intl": "^3.4|^4.0|^5.0",
  13372. "symfony/service-contracts": "^1.1.2|^2",
  13373. "symfony/yaml": "^3.4|^4.0|^5.0"
  13374. },
  13375. "suggest": {
  13376. "psr/log-implementation": "To use logging capability in translator",
  13377. "symfony/config": "",
  13378. "symfony/yaml": ""
  13379. },
  13380. "type": "library",
  13381. "autoload": {
  13382. "psr-4": {
  13383. "Symfony\\Component\\Translation\\": ""
  13384. },
  13385. "exclude-from-classmap": [
  13386. "/Tests/"
  13387. ]
  13388. },
  13389. "notification-url": "https://packagist.org/downloads/",
  13390. "license": [
  13391. "MIT"
  13392. ],
  13393. "authors": [
  13394. {
  13395. "name": "Fabien Potencier",
  13396. "email": "fabien@symfony.com"
  13397. },
  13398. {
  13399. "name": "Symfony Community",
  13400. "homepage": "https://symfony.com/contributors"
  13401. }
  13402. ],
  13403. "description": "Provides tools to internationalize your application",
  13404. "homepage": "https://symfony.com",
  13405. "support": {
  13406. "source": "https://github.com/symfony/translation/tree/v4.4.25"
  13407. },
  13408. "funding": [
  13409. {
  13410. "url": "https://symfony.com/sponsor",
  13411. "type": "custom"
  13412. },
  13413. {
  13414. "url": "https://github.com/fabpot",
  13415. "type": "github"
  13416. },
  13417. {
  13418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13419. "type": "tidelift"
  13420. }
  13421. ],
  13422. "time": "2021-05-26T17:39:37+00:00"
  13423. },
  13424. {
  13425. "name": "symfony/translation-contracts",
  13426. "version": "v2.4.0",
  13427. "source": {
  13428. "type": "git",
  13429. "url": "https://github.com/symfony/translation-contracts.git",
  13430. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  13431. },
  13432. "dist": {
  13433. "type": "zip",
  13434. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  13435. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  13436. "shasum": ""
  13437. },
  13438. "require": {
  13439. "php": ">=7.2.5"
  13440. },
  13441. "suggest": {
  13442. "symfony/translation-implementation": ""
  13443. },
  13444. "type": "library",
  13445. "extra": {
  13446. "branch-alias": {
  13447. "dev-main": "2.4-dev"
  13448. },
  13449. "thanks": {
  13450. "name": "symfony/contracts",
  13451. "url": "https://github.com/symfony/contracts"
  13452. }
  13453. },
  13454. "autoload": {
  13455. "psr-4": {
  13456. "Symfony\\Contracts\\Translation\\": ""
  13457. }
  13458. },
  13459. "notification-url": "https://packagist.org/downloads/",
  13460. "license": [
  13461. "MIT"
  13462. ],
  13463. "authors": [
  13464. {
  13465. "name": "Nicolas Grekas",
  13466. "email": "p@tchwork.com"
  13467. },
  13468. {
  13469. "name": "Symfony Community",
  13470. "homepage": "https://symfony.com/contributors"
  13471. }
  13472. ],
  13473. "description": "Generic abstractions related to translation",
  13474. "homepage": "https://symfony.com",
  13475. "keywords": [
  13476. "abstractions",
  13477. "contracts",
  13478. "decoupling",
  13479. "interfaces",
  13480. "interoperability",
  13481. "standards"
  13482. ],
  13483. "support": {
  13484. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  13485. },
  13486. "funding": [
  13487. {
  13488. "url": "https://symfony.com/sponsor",
  13489. "type": "custom"
  13490. },
  13491. {
  13492. "url": "https://github.com/fabpot",
  13493. "type": "github"
  13494. },
  13495. {
  13496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13497. "type": "tidelift"
  13498. }
  13499. ],
  13500. "time": "2021-03-23T23:28:01+00:00"
  13501. },
  13502. {
  13503. "name": "symfony/validator",
  13504. "version": "v4.4.25",
  13505. "source": {
  13506. "type": "git",
  13507. "url": "https://github.com/symfony/validator.git",
  13508. "reference": "29c14955e8b2e7351aaa11553cb36d4a689b7b11"
  13509. },
  13510. "dist": {
  13511. "type": "zip",
  13512. "url": "https://api.github.com/repos/symfony/validator/zipball/29c14955e8b2e7351aaa11553cb36d4a689b7b11",
  13513. "reference": "29c14955e8b2e7351aaa11553cb36d4a689b7b11",
  13514. "shasum": ""
  13515. },
  13516. "require": {
  13517. "php": ">=7.1.3",
  13518. "symfony/polyfill-ctype": "~1.8",
  13519. "symfony/polyfill-mbstring": "~1.0",
  13520. "symfony/translation-contracts": "^1.1|^2"
  13521. },
  13522. "conflict": {
  13523. "doctrine/lexer": "<1.0.2",
  13524. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  13525. "symfony/dependency-injection": "<3.4",
  13526. "symfony/http-kernel": "<4.4",
  13527. "symfony/intl": "<4.3",
  13528. "symfony/translation": ">=5.0",
  13529. "symfony/yaml": "<3.4"
  13530. },
  13531. "require-dev": {
  13532. "doctrine/annotations": "^1.10.4",
  13533. "doctrine/cache": "^1.0|^2.0",
  13534. "egulias/email-validator": "^2.1.10|^3",
  13535. "symfony/cache": "^3.4|^4.0|^5.0",
  13536. "symfony/config": "^3.4|^4.0|^5.0",
  13537. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  13538. "symfony/expression-language": "^3.4|^4.0|^5.0",
  13539. "symfony/http-client": "^4.3|^5.0",
  13540. "symfony/http-foundation": "^4.1|^5.0",
  13541. "symfony/http-kernel": "^4.4",
  13542. "symfony/intl": "^4.3|^5.0",
  13543. "symfony/mime": "^4.4|^5.0",
  13544. "symfony/property-access": "^3.4|^4.0|^5.0",
  13545. "symfony/property-info": "^3.4|^4.0|^5.0",
  13546. "symfony/translation": "^4.2",
  13547. "symfony/yaml": "^3.4|^4.0|^5.0"
  13548. },
  13549. "suggest": {
  13550. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  13551. "doctrine/cache": "For using the default cached annotation reader.",
  13552. "egulias/email-validator": "Strict (RFC compliant) email validation",
  13553. "psr/cache-implementation": "For using the mapping cache.",
  13554. "symfony/config": "",
  13555. "symfony/expression-language": "For using the Expression validator",
  13556. "symfony/http-foundation": "",
  13557. "symfony/intl": "",
  13558. "symfony/property-access": "For accessing properties within comparison constraints",
  13559. "symfony/property-info": "To automatically add NotNull and Type constraints",
  13560. "symfony/translation": "For translating validation errors.",
  13561. "symfony/yaml": ""
  13562. },
  13563. "type": "library",
  13564. "autoload": {
  13565. "psr-4": {
  13566. "Symfony\\Component\\Validator\\": ""
  13567. },
  13568. "exclude-from-classmap": [
  13569. "/Tests/"
  13570. ]
  13571. },
  13572. "notification-url": "https://packagist.org/downloads/",
  13573. "license": [
  13574. "MIT"
  13575. ],
  13576. "authors": [
  13577. {
  13578. "name": "Fabien Potencier",
  13579. "email": "fabien@symfony.com"
  13580. },
  13581. {
  13582. "name": "Symfony Community",
  13583. "homepage": "https://symfony.com/contributors"
  13584. }
  13585. ],
  13586. "description": "Provides tools to validate values",
  13587. "homepage": "https://symfony.com",
  13588. "support": {
  13589. "source": "https://github.com/symfony/validator/tree/v4.4.25"
  13590. },
  13591. "funding": [
  13592. {
  13593. "url": "https://symfony.com/sponsor",
  13594. "type": "custom"
  13595. },
  13596. {
  13597. "url": "https://github.com/fabpot",
  13598. "type": "github"
  13599. },
  13600. {
  13601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13602. "type": "tidelift"
  13603. }
  13604. ],
  13605. "time": "2021-05-26T17:39:37+00:00"
  13606. },
  13607. {
  13608. "name": "symfony/var-dumper",
  13609. "version": "v5.3.0",
  13610. "source": {
  13611. "type": "git",
  13612. "url": "https://github.com/symfony/var-dumper.git",
  13613. "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3"
  13614. },
  13615. "dist": {
  13616. "type": "zip",
  13617. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1d3953e627fe4b5f6df503f356b6545ada6351f3",
  13618. "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3",
  13619. "shasum": ""
  13620. },
  13621. "require": {
  13622. "php": ">=7.2.5",
  13623. "symfony/polyfill-mbstring": "~1.0",
  13624. "symfony/polyfill-php80": "^1.15"
  13625. },
  13626. "conflict": {
  13627. "phpunit/phpunit": "<5.4.3",
  13628. "symfony/console": "<4.4"
  13629. },
  13630. "require-dev": {
  13631. "ext-iconv": "*",
  13632. "symfony/console": "^4.4|^5.0",
  13633. "symfony/process": "^4.4|^5.0",
  13634. "twig/twig": "^2.13|^3.0.4"
  13635. },
  13636. "suggest": {
  13637. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  13638. "ext-intl": "To show region name in time zone dump",
  13639. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  13640. },
  13641. "bin": [
  13642. "Resources/bin/var-dump-server"
  13643. ],
  13644. "type": "library",
  13645. "autoload": {
  13646. "files": [
  13647. "Resources/functions/dump.php"
  13648. ],
  13649. "psr-4": {
  13650. "Symfony\\Component\\VarDumper\\": ""
  13651. },
  13652. "exclude-from-classmap": [
  13653. "/Tests/"
  13654. ]
  13655. },
  13656. "notification-url": "https://packagist.org/downloads/",
  13657. "license": [
  13658. "MIT"
  13659. ],
  13660. "authors": [
  13661. {
  13662. "name": "Nicolas Grekas",
  13663. "email": "p@tchwork.com"
  13664. },
  13665. {
  13666. "name": "Symfony Community",
  13667. "homepage": "https://symfony.com/contributors"
  13668. }
  13669. ],
  13670. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13671. "homepage": "https://symfony.com",
  13672. "keywords": [
  13673. "debug",
  13674. "dump"
  13675. ],
  13676. "support": {
  13677. "source": "https://github.com/symfony/var-dumper/tree/v5.3.0"
  13678. },
  13679. "funding": [
  13680. {
  13681. "url": "https://symfony.com/sponsor",
  13682. "type": "custom"
  13683. },
  13684. {
  13685. "url": "https://github.com/fabpot",
  13686. "type": "github"
  13687. },
  13688. {
  13689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13690. "type": "tidelift"
  13691. }
  13692. ],
  13693. "time": "2021-05-27T12:28:50+00:00"
  13694. },
  13695. {
  13696. "name": "symfony/yaml",
  13697. "version": "v4.4.25",
  13698. "source": {
  13699. "type": "git",
  13700. "url": "https://github.com/symfony/yaml.git",
  13701. "reference": "81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc"
  13702. },
  13703. "dist": {
  13704. "type": "zip",
  13705. "url": "https://api.github.com/repos/symfony/yaml/zipball/81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc",
  13706. "reference": "81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc",
  13707. "shasum": ""
  13708. },
  13709. "require": {
  13710. "php": ">=7.1.3",
  13711. "symfony/polyfill-ctype": "~1.8"
  13712. },
  13713. "conflict": {
  13714. "symfony/console": "<3.4"
  13715. },
  13716. "require-dev": {
  13717. "symfony/console": "^3.4|^4.0|^5.0"
  13718. },
  13719. "suggest": {
  13720. "symfony/console": "For validating YAML files using the lint command"
  13721. },
  13722. "type": "library",
  13723. "autoload": {
  13724. "psr-4": {
  13725. "Symfony\\Component\\Yaml\\": ""
  13726. },
  13727. "exclude-from-classmap": [
  13728. "/Tests/"
  13729. ]
  13730. },
  13731. "notification-url": "https://packagist.org/downloads/",
  13732. "license": [
  13733. "MIT"
  13734. ],
  13735. "authors": [
  13736. {
  13737. "name": "Fabien Potencier",
  13738. "email": "fabien@symfony.com"
  13739. },
  13740. {
  13741. "name": "Symfony Community",
  13742. "homepage": "https://symfony.com/contributors"
  13743. }
  13744. ],
  13745. "description": "Loads and dumps YAML files",
  13746. "homepage": "https://symfony.com",
  13747. "support": {
  13748. "source": "https://github.com/symfony/yaml/tree/v4.4.25"
  13749. },
  13750. "funding": [
  13751. {
  13752. "url": "https://symfony.com/sponsor",
  13753. "type": "custom"
  13754. },
  13755. {
  13756. "url": "https://github.com/fabpot",
  13757. "type": "github"
  13758. },
  13759. {
  13760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13761. "type": "tidelift"
  13762. }
  13763. ],
  13764. "time": "2021-05-26T17:39:37+00:00"
  13765. },
  13766. {
  13767. "name": "twig/twig",
  13768. "version": "v2.14.6",
  13769. "source": {
  13770. "type": "git",
  13771. "url": "https://github.com/twigphp/Twig.git",
  13772. "reference": "27e5cf2b05e3744accf39d4c68a3235d9966d260"
  13773. },
  13774. "dist": {
  13775. "type": "zip",
  13776. "url": "https://api.github.com/repos/twigphp/Twig/zipball/27e5cf2b05e3744accf39d4c68a3235d9966d260",
  13777. "reference": "27e5cf2b05e3744accf39d4c68a3235d9966d260",
  13778. "shasum": ""
  13779. },
  13780. "require": {
  13781. "php": ">=7.2.5",
  13782. "symfony/polyfill-ctype": "^1.8",
  13783. "symfony/polyfill-mbstring": "^1.3"
  13784. },
  13785. "require-dev": {
  13786. "psr/container": "^1.0",
  13787. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  13788. },
  13789. "type": "library",
  13790. "extra": {
  13791. "branch-alias": {
  13792. "dev-master": "2.14-dev"
  13793. }
  13794. },
  13795. "autoload": {
  13796. "psr-0": {
  13797. "Twig_": "lib/"
  13798. },
  13799. "psr-4": {
  13800. "Twig\\": "src/"
  13801. }
  13802. },
  13803. "notification-url": "https://packagist.org/downloads/",
  13804. "license": [
  13805. "BSD-3-Clause"
  13806. ],
  13807. "authors": [
  13808. {
  13809. "name": "Fabien Potencier",
  13810. "email": "fabien@symfony.com",
  13811. "homepage": "http://fabien.potencier.org",
  13812. "role": "Lead Developer"
  13813. },
  13814. {
  13815. "name": "Twig Team",
  13816. "role": "Contributors"
  13817. },
  13818. {
  13819. "name": "Armin Ronacher",
  13820. "email": "armin.ronacher@active-4.com",
  13821. "role": "Project Founder"
  13822. }
  13823. ],
  13824. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13825. "homepage": "https://twig.symfony.com",
  13826. "keywords": [
  13827. "templating"
  13828. ],
  13829. "support": {
  13830. "issues": "https://github.com/twigphp/Twig/issues",
  13831. "source": "https://github.com/twigphp/Twig/tree/v2.14.6"
  13832. },
  13833. "funding": [
  13834. {
  13835. "url": "https://github.com/fabpot",
  13836. "type": "github"
  13837. },
  13838. {
  13839. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13840. "type": "tidelift"
  13841. }
  13842. ],
  13843. "time": "2021-05-16T12:12:47+00:00"
  13844. },
  13845. {
  13846. "name": "typo3/phar-stream-wrapper",
  13847. "version": "v3.1.6",
  13848. "source": {
  13849. "type": "git",
  13850. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  13851. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  13852. },
  13853. "dist": {
  13854. "type": "zip",
  13855. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13856. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  13857. "shasum": ""
  13858. },
  13859. "require": {
  13860. "ext-json": "*",
  13861. "php": "^7.0 || ^8.0"
  13862. },
  13863. "require-dev": {
  13864. "ext-xdebug": "*",
  13865. "phpspec/prophecy": "^1.10",
  13866. "symfony/phpunit-bridge": "^5.1"
  13867. },
  13868. "suggest": {
  13869. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  13870. },
  13871. "type": "library",
  13872. "extra": {
  13873. "branch-alias": {
  13874. "dev-master": "v3.x-dev"
  13875. }
  13876. },
  13877. "autoload": {
  13878. "psr-4": {
  13879. "TYPO3\\PharStreamWrapper\\": "src/"
  13880. }
  13881. },
  13882. "notification-url": "https://packagist.org/downloads/",
  13883. "license": [
  13884. "MIT"
  13885. ],
  13886. "description": "Interceptors for PHP's native phar:// stream handling",
  13887. "homepage": "https://typo3.org/",
  13888. "keywords": [
  13889. "phar",
  13890. "php",
  13891. "security",
  13892. "stream-wrapper"
  13893. ],
  13894. "support": {
  13895. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  13896. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.6"
  13897. },
  13898. "time": "2020-11-07T09:06:16+00:00"
  13899. },
  13900. {
  13901. "name": "webflo/drupal-finder",
  13902. "version": "1.2.2",
  13903. "source": {
  13904. "type": "git",
  13905. "url": "https://github.com/webflo/drupal-finder.git",
  13906. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  13907. },
  13908. "dist": {
  13909. "type": "zip",
  13910. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13911. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13912. "shasum": ""
  13913. },
  13914. "require": {
  13915. "ext-json": "*"
  13916. },
  13917. "require-dev": {
  13918. "mikey179/vfsstream": "^1.6",
  13919. "phpunit/phpunit": "^4.8"
  13920. },
  13921. "type": "library",
  13922. "autoload": {
  13923. "classmap": [
  13924. "src/DrupalFinder.php"
  13925. ]
  13926. },
  13927. "notification-url": "https://packagist.org/downloads/",
  13928. "license": [
  13929. "GPL-2.0-or-later"
  13930. ],
  13931. "authors": [
  13932. {
  13933. "name": "Florian Weber",
  13934. "email": "florian@webflo.org"
  13935. }
  13936. ],
  13937. "description": "Helper class to locate a Drupal installation from a given path.",
  13938. "support": {
  13939. "issues": "https://github.com/webflo/drupal-finder/issues",
  13940. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  13941. },
  13942. "time": "2020-10-27T09:42:17+00:00"
  13943. },
  13944. {
  13945. "name": "webmozart/assert",
  13946. "version": "1.10.0",
  13947. "source": {
  13948. "type": "git",
  13949. "url": "https://github.com/webmozarts/assert.git",
  13950. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  13951. },
  13952. "dist": {
  13953. "type": "zip",
  13954. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  13955. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  13956. "shasum": ""
  13957. },
  13958. "require": {
  13959. "php": "^7.2 || ^8.0",
  13960. "symfony/polyfill-ctype": "^1.8"
  13961. },
  13962. "conflict": {
  13963. "phpstan/phpstan": "<0.12.20",
  13964. "vimeo/psalm": "<4.6.1 || 4.6.2"
  13965. },
  13966. "require-dev": {
  13967. "phpunit/phpunit": "^8.5.13"
  13968. },
  13969. "type": "library",
  13970. "extra": {
  13971. "branch-alias": {
  13972. "dev-master": "1.10-dev"
  13973. }
  13974. },
  13975. "autoload": {
  13976. "psr-4": {
  13977. "Webmozart\\Assert\\": "src/"
  13978. }
  13979. },
  13980. "notification-url": "https://packagist.org/downloads/",
  13981. "license": [
  13982. "MIT"
  13983. ],
  13984. "authors": [
  13985. {
  13986. "name": "Bernhard Schussek",
  13987. "email": "bschussek@gmail.com"
  13988. }
  13989. ],
  13990. "description": "Assertions to validate method input/output with nice error messages.",
  13991. "keywords": [
  13992. "assert",
  13993. "check",
  13994. "validate"
  13995. ],
  13996. "support": {
  13997. "issues": "https://github.com/webmozarts/assert/issues",
  13998. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  13999. },
  14000. "time": "2021-03-09T10:59:23+00:00"
  14001. },
  14002. {
  14003. "name": "webmozart/path-util",
  14004. "version": "2.3.0",
  14005. "source": {
  14006. "type": "git",
  14007. "url": "https://github.com/webmozart/path-util.git",
  14008. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  14009. },
  14010. "dist": {
  14011. "type": "zip",
  14012. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  14013. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  14014. "shasum": ""
  14015. },
  14016. "require": {
  14017. "php": ">=5.3.3",
  14018. "webmozart/assert": "~1.0"
  14019. },
  14020. "require-dev": {
  14021. "phpunit/phpunit": "^4.6",
  14022. "sebastian/version": "^1.0.1"
  14023. },
  14024. "type": "library",
  14025. "extra": {
  14026. "branch-alias": {
  14027. "dev-master": "2.3-dev"
  14028. }
  14029. },
  14030. "autoload": {
  14031. "psr-4": {
  14032. "Webmozart\\PathUtil\\": "src/"
  14033. }
  14034. },
  14035. "notification-url": "https://packagist.org/downloads/",
  14036. "license": [
  14037. "MIT"
  14038. ],
  14039. "authors": [
  14040. {
  14041. "name": "Bernhard Schussek",
  14042. "email": "bschussek@gmail.com"
  14043. }
  14044. ],
  14045. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  14046. "support": {
  14047. "issues": "https://github.com/webmozart/path-util/issues",
  14048. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  14049. },
  14050. "time": "2015-12-17T08:42:14+00:00"
  14051. },
  14052. {
  14053. "name": "wikimedia/composer-merge-plugin",
  14054. "version": "v2.0.1",
  14055. "source": {
  14056. "type": "git",
  14057. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  14058. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  14059. },
  14060. "dist": {
  14061. "type": "zip",
  14062. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  14063. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  14064. "shasum": ""
  14065. },
  14066. "require": {
  14067. "composer-plugin-api": "^1.1||^2.0",
  14068. "php": ">=7.2.0"
  14069. },
  14070. "require-dev": {
  14071. "composer/composer": "^1.1||^2.0",
  14072. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  14073. "phpunit/phpunit": "^8.5||^9.0",
  14074. "squizlabs/php_codesniffer": "~3.5.4"
  14075. },
  14076. "type": "composer-plugin",
  14077. "extra": {
  14078. "branch-alias": {
  14079. "dev-master": "2.x-dev"
  14080. },
  14081. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  14082. },
  14083. "autoload": {
  14084. "psr-4": {
  14085. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  14086. }
  14087. },
  14088. "notification-url": "https://packagist.org/downloads/",
  14089. "license": [
  14090. "MIT"
  14091. ],
  14092. "authors": [
  14093. {
  14094. "name": "Bryan Davis",
  14095. "email": "bd808@wikimedia.org"
  14096. }
  14097. ],
  14098. "description": "Composer plugin to merge multiple composer.json files",
  14099. "support": {
  14100. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  14101. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1"
  14102. },
  14103. "time": "2021-02-24T05:28:06+00:00"
  14104. }
  14105. ],
  14106. "packages-dev": [],
  14107. "aliases": [],
  14108. "minimum-stability": "stable",
  14109. "stability-flags": {
  14110. "drupal/config_pages": 20,
  14111. "drupal/manage_display": 20,
  14112. "drupal/page_manager": 20,
  14113. "drupal/paragraphs": 20,
  14114. "drupal/autocomplete_deluxe": 5,
  14115. "drupal/better_exposed_filters": 10,
  14116. "drupal/bulkdelete": 20,
  14117. "drupal/cshs": 20,
  14118. "drupal/config_ignore": 5,
  14119. "drupal/config_devel": 20,
  14120. "drupal/context": 10,
  14121. "drupal/date_range_formatter": 20,
  14122. "drupal/domain": 20,
  14123. "drupal/domain_alias": 20,
  14124. "drupal/domain_config": 20,
  14125. "drupal/domain_site_settings": 20,
  14126. "drupal/email_registration": 5,
  14127. "drupal/entity_browser_enhanced": 5,
  14128. "drupal/entity_clone": 15,
  14129. "drupal/field_group": 20,
  14130. "drupal/filefield_sources": 20,
  14131. "drupal/filter_perms": 20,
  14132. "drupal/inline_entity_form": 5,
  14133. "drupal/linkit": 10,
  14134. "drupal/login_destination": 20,
  14135. "drupal/maillog": 20,
  14136. "drupal/maxlength": 10,
  14137. "drupal/menu_block": 20,
  14138. "drupal/menu_position": 20,
  14139. "drupal/path_alias_xt": 20,
  14140. "drupal/pathologic": 15,
  14141. "drupal/profile": 5,
  14142. "drupal/smtp": 10,
  14143. "drupal/synonyms": 10,
  14144. "drupal/translation_views": 15,
  14145. "drupal/ultimate_cron": 15
  14146. },
  14147. "prefer-stable": true,
  14148. "prefer-lowest": false,
  14149. "platform": [],
  14150. "platform-dev": [],
  14151. "plugin-api-version": "2.1.0"
  14152. }