composer.lock 502 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669
  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": "7aefbcf878970ac475392bb5d883cdaa",
  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. "time": "2020-12-05T05:59:11+00:00"
  180. },
  181. {
  182. "name": "commerceguys/addressing",
  183. "version": "v1.1.0",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/commerceguys/addressing.git",
  187. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2450ca97631042faf786855db206a2e48fb7dbb7",
  192. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7",
  193. "shasum": ""
  194. },
  195. "require": {
  196. "doctrine/collections": "~1.0",
  197. "php": ">=7.0.8"
  198. },
  199. "require-dev": {
  200. "mikey179/vfsstream": "1.*",
  201. "phpunit/phpunit": "^6.0",
  202. "squizlabs/php_codesniffer": "2.*",
  203. "symfony/validator": "^3.4"
  204. },
  205. "suggest": {
  206. "symfony/validator": "to validate addresses"
  207. },
  208. "type": "library",
  209. "extra": {
  210. "branch-alias": {
  211. "dev-master": "1.x-dev"
  212. }
  213. },
  214. "autoload": {
  215. "psr-4": {
  216. "CommerceGuys\\Addressing\\": "src"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "MIT"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Bojan Zivanovic"
  226. },
  227. {
  228. "name": "Damien Tournoud"
  229. }
  230. ],
  231. "description": "Addressing library powered by CLDR and Google's address data.",
  232. "keywords": [
  233. "address",
  234. "internationalization",
  235. "localization",
  236. "postal"
  237. ],
  238. "time": "2020-11-29T18:48:07+00:00"
  239. },
  240. {
  241. "name": "components/highlightjs",
  242. "version": "9.7.0",
  243. "dist": {
  244. "type": "zip",
  245. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  246. },
  247. "type": "drupal-library"
  248. },
  249. {
  250. "name": "composer/installers",
  251. "version": "v1.12.0",
  252. "source": {
  253. "type": "git",
  254. "url": "https://github.com/composer/installers.git",
  255. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  256. },
  257. "dist": {
  258. "type": "zip",
  259. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  260. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  261. "shasum": ""
  262. },
  263. "require": {
  264. "composer-plugin-api": "^1.0 || ^2.0"
  265. },
  266. "replace": {
  267. "roundcube/plugin-installer": "*",
  268. "shama/baton": "*"
  269. },
  270. "require-dev": {
  271. "composer/composer": "1.6.* || ^2.0",
  272. "composer/semver": "^1 || ^3",
  273. "phpstan/phpstan": "^0.12.55",
  274. "phpstan/phpstan-phpunit": "^0.12.16",
  275. "symfony/phpunit-bridge": "^4.2 || ^5",
  276. "symfony/process": "^2.3"
  277. },
  278. "type": "composer-plugin",
  279. "extra": {
  280. "class": "Composer\\Installers\\Plugin",
  281. "branch-alias": {
  282. "dev-main": "1.x-dev"
  283. }
  284. },
  285. "autoload": {
  286. "psr-4": {
  287. "Composer\\Installers\\": "src/Composer/Installers"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Kyle Robinson Young",
  297. "email": "kyle@dontkry.com",
  298. "homepage": "https://github.com/shama"
  299. }
  300. ],
  301. "description": "A multi-framework Composer library installer",
  302. "homepage": "https://composer.github.io/installers/",
  303. "keywords": [
  304. "Craft",
  305. "Dolibarr",
  306. "Eliasis",
  307. "Hurad",
  308. "ImageCMS",
  309. "Kanboard",
  310. "Lan Management System",
  311. "MODX Evo",
  312. "MantisBT",
  313. "Mautic",
  314. "Maya",
  315. "OXID",
  316. "Plentymarkets",
  317. "Porto",
  318. "RadPHP",
  319. "SMF",
  320. "Starbug",
  321. "Thelia",
  322. "Whmcs",
  323. "WolfCMS",
  324. "agl",
  325. "aimeos",
  326. "annotatecms",
  327. "attogram",
  328. "bitrix",
  329. "cakephp",
  330. "chef",
  331. "cockpit",
  332. "codeigniter",
  333. "concrete5",
  334. "croogo",
  335. "dokuwiki",
  336. "drupal",
  337. "eZ Platform",
  338. "elgg",
  339. "expressionengine",
  340. "fuelphp",
  341. "grav",
  342. "installer",
  343. "itop",
  344. "joomla",
  345. "known",
  346. "kohana",
  347. "laravel",
  348. "lavalite",
  349. "lithium",
  350. "magento",
  351. "majima",
  352. "mako",
  353. "mediawiki",
  354. "miaoxing",
  355. "modulework",
  356. "modx",
  357. "moodle",
  358. "osclass",
  359. "pantheon",
  360. "phpbb",
  361. "piwik",
  362. "ppi",
  363. "processwire",
  364. "puppet",
  365. "pxcms",
  366. "reindex",
  367. "roundcube",
  368. "shopware",
  369. "silverstripe",
  370. "sydes",
  371. "sylius",
  372. "symfony",
  373. "tastyigniter",
  374. "typo3",
  375. "wordpress",
  376. "yawik",
  377. "zend",
  378. "zikula"
  379. ],
  380. "support": {
  381. "issues": "https://github.com/composer/installers/issues",
  382. "source": "https://github.com/composer/installers/tree/v1.12.0"
  383. },
  384. "funding": [
  385. {
  386. "url": "https://packagist.com",
  387. "type": "custom"
  388. },
  389. {
  390. "url": "https://github.com/composer",
  391. "type": "github"
  392. },
  393. {
  394. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  395. "type": "tidelift"
  396. }
  397. ],
  398. "time": "2021-09-13T08:19:44+00:00"
  399. },
  400. {
  401. "name": "composer/semver",
  402. "version": "3.2.6",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/composer/semver.git",
  406. "reference": "83e511e247de329283478496f7a1e114c9517506"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/composer/semver/zipball/83e511e247de329283478496f7a1e114c9517506",
  411. "reference": "83e511e247de329283478496f7a1e114c9517506",
  412. "shasum": ""
  413. },
  414. "require": {
  415. "php": "^5.3.2 || ^7.0 || ^8.0"
  416. },
  417. "require-dev": {
  418. "phpstan/phpstan": "^0.12.54",
  419. "symfony/phpunit-bridge": "^4.2 || ^5"
  420. },
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-main": "3.x-dev"
  425. }
  426. },
  427. "autoload": {
  428. "psr-4": {
  429. "Composer\\Semver\\": "src"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Nils Adermann",
  439. "email": "naderman@naderman.de",
  440. "homepage": "http://www.naderman.de"
  441. },
  442. {
  443. "name": "Jordi Boggiano",
  444. "email": "j.boggiano@seld.be",
  445. "homepage": "http://seld.be"
  446. },
  447. {
  448. "name": "Rob Bast",
  449. "email": "rob.bast@gmail.com",
  450. "homepage": "http://robbast.nl"
  451. }
  452. ],
  453. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  454. "keywords": [
  455. "semantic",
  456. "semver",
  457. "validation",
  458. "versioning"
  459. ],
  460. "support": {
  461. "irc": "irc://irc.freenode.org/composer",
  462. "issues": "https://github.com/composer/semver/issues",
  463. "source": "https://github.com/composer/semver/tree/3.2.6"
  464. },
  465. "funding": [
  466. {
  467. "url": "https://packagist.com",
  468. "type": "custom"
  469. },
  470. {
  471. "url": "https://github.com/composer",
  472. "type": "github"
  473. },
  474. {
  475. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  476. "type": "tidelift"
  477. }
  478. ],
  479. "time": "2021-10-25T11:34:17+00:00"
  480. },
  481. {
  482. "name": "consolidation/annotated-command",
  483. "version": "4.2.4",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/consolidation/annotated-command.git",
  487. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  492. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "consolidation/output-formatters": "^4.1.1",
  497. "php": ">=7.1.3",
  498. "psr/log": "^1|^2",
  499. "symfony/console": "^4.4.8|~5.1.0",
  500. "symfony/event-dispatcher": "^4.4.8|^5",
  501. "symfony/finder": "^4.4.8|^5"
  502. },
  503. "require-dev": {
  504. "phpunit/phpunit": ">=7.5.20",
  505. "squizlabs/php_codesniffer": "^3",
  506. "yoast/phpunit-polyfills": "^0.2.0"
  507. },
  508. "type": "library",
  509. "extra": {
  510. "branch-alias": {
  511. "dev-main": "4.x-dev"
  512. }
  513. },
  514. "autoload": {
  515. "psr-4": {
  516. "Consolidation\\AnnotatedCommand\\": "src"
  517. }
  518. },
  519. "notification-url": "https://packagist.org/downloads/",
  520. "license": [
  521. "MIT"
  522. ],
  523. "authors": [
  524. {
  525. "name": "Greg Anderson",
  526. "email": "greg.1.anderson@greenknowe.org"
  527. }
  528. ],
  529. "description": "Initialize Symfony Console commands from annotated command class methods.",
  530. "time": "2020-12-10T16:56:39+00:00"
  531. },
  532. {
  533. "name": "consolidation/config",
  534. "version": "1.2.1",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/consolidation/config.git",
  538. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  543. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  544. "shasum": ""
  545. },
  546. "require": {
  547. "dflydev/dot-access-data": "^1.1.0",
  548. "grasmash/expander": "^1",
  549. "php": ">=5.4.0"
  550. },
  551. "require-dev": {
  552. "g1a/composer-test-scenarios": "^3",
  553. "php-coveralls/php-coveralls": "^1",
  554. "phpunit/phpunit": "^5",
  555. "squizlabs/php_codesniffer": "2.*",
  556. "symfony/console": "^2.5|^3|^4",
  557. "symfony/yaml": "^2.8.11|^3|^4"
  558. },
  559. "suggest": {
  560. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  561. },
  562. "type": "library",
  563. "extra": {
  564. "scenarios": {
  565. "symfony4": {
  566. "require-dev": {
  567. "symfony/console": "^4.0"
  568. },
  569. "config": {
  570. "platform": {
  571. "php": "7.1.3"
  572. }
  573. }
  574. },
  575. "symfony2": {
  576. "require-dev": {
  577. "symfony/console": "^2.8",
  578. "symfony/event-dispatcher": "^2.8",
  579. "phpunit/phpunit": "^4.8.36"
  580. },
  581. "remove": [
  582. "php-coveralls/php-coveralls"
  583. ],
  584. "config": {
  585. "platform": {
  586. "php": "5.4.8"
  587. }
  588. }
  589. }
  590. },
  591. "branch-alias": {
  592. "dev-master": "1.x-dev"
  593. }
  594. },
  595. "autoload": {
  596. "psr-4": {
  597. "Consolidation\\Config\\": "src"
  598. }
  599. },
  600. "notification-url": "https://packagist.org/downloads/",
  601. "license": [
  602. "MIT"
  603. ],
  604. "authors": [
  605. {
  606. "name": "Greg Anderson",
  607. "email": "greg.1.anderson@greenknowe.org"
  608. }
  609. ],
  610. "description": "Provide configuration services for a commandline tool.",
  611. "time": "2019-03-03T19:37:04+00:00"
  612. },
  613. {
  614. "name": "consolidation/filter-via-dot-access-data",
  615. "version": "1.0.0",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  619. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  624. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  625. "shasum": ""
  626. },
  627. "require": {
  628. "dflydev/dot-access-data": "^1.1.0",
  629. "php": ">=5.5.0"
  630. },
  631. "require-dev": {
  632. "consolidation/robo": "^1.2.3",
  633. "g1a/composer-test-scenarios": "^3",
  634. "knplabs/github-api": "^2.7",
  635. "php-coveralls/php-coveralls": "^1",
  636. "php-http/guzzle6-adapter": "^1.1",
  637. "phpunit/phpunit": "^5",
  638. "squizlabs/php_codesniffer": "^2.8",
  639. "symfony/console": "^2.8|^3|^4"
  640. },
  641. "type": "library",
  642. "extra": {
  643. "scenarios": {
  644. "phpunit5": {
  645. "require-dev": {
  646. "phpunit/phpunit": "^5.7.27"
  647. },
  648. "remove": [
  649. "php-coveralls/php-coveralls"
  650. ],
  651. "config": {
  652. "platform": {
  653. "php": "5.6.33"
  654. }
  655. }
  656. }
  657. },
  658. "branch-alias": {
  659. "dev-master": "1.x-dev"
  660. }
  661. },
  662. "autoload": {
  663. "psr-4": {
  664. "Consolidation\\Filter\\": "src"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Greg Anderson",
  674. "email": "greg.1.anderson@greenknowe.org"
  675. }
  676. ],
  677. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  678. "time": "2019-01-18T06:05:07+00:00"
  679. },
  680. {
  681. "name": "consolidation/log",
  682. "version": "2.0.2",
  683. "source": {
  684. "type": "git",
  685. "url": "https://github.com/consolidation/log.git",
  686. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  687. },
  688. "dist": {
  689. "type": "zip",
  690. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  691. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  692. "shasum": ""
  693. },
  694. "require": {
  695. "php": ">=7.1.3",
  696. "psr/log": "^1.0",
  697. "symfony/console": "^4|^5"
  698. },
  699. "require-dev": {
  700. "phpunit/phpunit": ">=7.5.20",
  701. "squizlabs/php_codesniffer": "^3",
  702. "yoast/phpunit-polyfills": "^0.2.0"
  703. },
  704. "type": "library",
  705. "extra": {
  706. "branch-alias": {
  707. "dev-main": "2.x-dev"
  708. }
  709. },
  710. "autoload": {
  711. "psr-4": {
  712. "Consolidation\\Log\\": "src"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Greg Anderson",
  722. "email": "greg.1.anderson@greenknowe.org"
  723. }
  724. ],
  725. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  726. "time": "2020-12-10T16:26:23+00:00"
  727. },
  728. {
  729. "name": "consolidation/output-formatters",
  730. "version": "4.1.2",
  731. "source": {
  732. "type": "git",
  733. "url": "https://github.com/consolidation/output-formatters.git",
  734. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  735. },
  736. "dist": {
  737. "type": "zip",
  738. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  739. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  740. "shasum": ""
  741. },
  742. "require": {
  743. "dflydev/dot-access-data": "^1.1.0",
  744. "php": ">=7.1.3",
  745. "symfony/console": "^4|^5",
  746. "symfony/finder": "^4|^5"
  747. },
  748. "require-dev": {
  749. "php-coveralls/php-coveralls": "^2.4.2",
  750. "phpunit/phpunit": ">=7",
  751. "squizlabs/php_codesniffer": "^3",
  752. "symfony/var-dumper": "^4",
  753. "symfony/yaml": "^4",
  754. "yoast/phpunit-polyfills": "^0.2.0"
  755. },
  756. "suggest": {
  757. "symfony/var-dumper": "For using the var_dump formatter"
  758. },
  759. "type": "library",
  760. "extra": {
  761. "branch-alias": {
  762. "dev-main": "4.x-dev"
  763. }
  764. },
  765. "autoload": {
  766. "psr-4": {
  767. "Consolidation\\OutputFormatters\\": "src"
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "authors": [
  775. {
  776. "name": "Greg Anderson",
  777. "email": "greg.1.anderson@greenknowe.org"
  778. }
  779. ],
  780. "description": "Format text by applying transformations provided by plug-in formatters.",
  781. "time": "2020-12-12T19:04:59+00:00"
  782. },
  783. {
  784. "name": "consolidation/robo",
  785. "version": "2.2.1",
  786. "source": {
  787. "type": "git",
  788. "url": "https://github.com/consolidation/Robo.git",
  789. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3"
  790. },
  791. "dist": {
  792. "type": "zip",
  793. "url": "https://api.github.com/repos/consolidation/Robo/zipball/1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  794. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  795. "shasum": ""
  796. },
  797. "require": {
  798. "consolidation/annotated-command": "^4.2.1",
  799. "consolidation/config": "^1.2.1|^2",
  800. "consolidation/log": "^1.1.1|^2.0.1",
  801. "consolidation/output-formatters": "^4.1.1",
  802. "consolidation/self-update": "^1.2",
  803. "league/container": "^2.4.1",
  804. "php": ">=7.1.3",
  805. "symfony/console": "^4.4.11|^5",
  806. "symfony/event-dispatcher": "^4.4.11|^5",
  807. "symfony/filesystem": "^4.4.11|^5",
  808. "symfony/finder": "^4.4.11|^5",
  809. "symfony/process": "^4.4.11|^5"
  810. },
  811. "conflict": {
  812. "codegyre/robo": "*"
  813. },
  814. "require-dev": {
  815. "g1a/composer-test-scenarios": "^3",
  816. "natxet/cssmin": "3.0.4",
  817. "patchwork/jsqueeze": "^2",
  818. "pear/archive_tar": "^1.4.4",
  819. "php-coveralls/php-coveralls": "^2.2",
  820. "phpdocumentor/reflection-docblock": "^4.3.2",
  821. "phpunit/phpunit": "^6.5.14",
  822. "squizlabs/php_codesniffer": "^3"
  823. },
  824. "suggest": {
  825. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  826. "natxet/cssmin": "For minifying CSS files in taskMinify",
  827. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  828. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  829. },
  830. "bin": [
  831. "robo"
  832. ],
  833. "type": "library",
  834. "extra": {
  835. "scenarios": {
  836. "symfony4": {
  837. "require": {
  838. "symfony/console": "^4.4.11",
  839. "symfony/event-dispatcher": "^4.4.11",
  840. "symfony/filesystem": "^4.4.11",
  841. "symfony/finder": "^4.4.11",
  842. "symfony/process": "^4.4.11",
  843. "phpunit/phpunit": "^6",
  844. "nikic/php-parser": "^2"
  845. },
  846. "remove": [
  847. "codeception/phpunit-wrapper"
  848. ],
  849. "config": {
  850. "platform": {
  851. "php": "7.1.3"
  852. }
  853. }
  854. }
  855. },
  856. "branch-alias": {
  857. "dev-master": "2.x-dev",
  858. "dev-main": "2.x-dev"
  859. }
  860. },
  861. "autoload": {
  862. "psr-4": {
  863. "Robo\\": "src"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Davert",
  873. "email": "davert.php@resend.cc"
  874. }
  875. ],
  876. "description": "Modern task runner",
  877. "time": "2020-09-08T16:23:18+00:00"
  878. },
  879. {
  880. "name": "consolidation/self-update",
  881. "version": "1.2.0",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/consolidation/self-update.git",
  885. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  890. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "php": ">=5.5.0",
  895. "symfony/console": "^2.8|^3|^4|^5",
  896. "symfony/filesystem": "^2.5|^3|^4|^5"
  897. },
  898. "bin": [
  899. "scripts/release"
  900. ],
  901. "type": "library",
  902. "extra": {
  903. "branch-alias": {
  904. "dev-master": "1.x-dev"
  905. }
  906. },
  907. "autoload": {
  908. "psr-4": {
  909. "SelfUpdate\\": "src"
  910. }
  911. },
  912. "notification-url": "https://packagist.org/downloads/",
  913. "license": [
  914. "MIT"
  915. ],
  916. "authors": [
  917. {
  918. "name": "Alexander Menk",
  919. "email": "menk@mestrona.net"
  920. },
  921. {
  922. "name": "Greg Anderson",
  923. "email": "greg.1.anderson@greenknowe.org"
  924. }
  925. ],
  926. "description": "Provides a self:update command for Symfony Console applications.",
  927. "time": "2020-04-13T02:49:20+00:00"
  928. },
  929. {
  930. "name": "consolidation/site-alias",
  931. "version": "3.0.1",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/consolidation/site-alias.git",
  935. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  940. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "consolidation/config": "^1.2.1|^2",
  945. "php": ">=5.5.0"
  946. },
  947. "require-dev": {
  948. "consolidation/robo": "^1.2.3|^2",
  949. "g1a/composer-test-scenarios": "^3",
  950. "knplabs/github-api": "^2.7",
  951. "php-coveralls/php-coveralls": "^2.2",
  952. "php-http/guzzle6-adapter": "^1.1",
  953. "phpunit/phpunit": "^6",
  954. "squizlabs/php_codesniffer": "^2.8",
  955. "symfony/yaml": "~2.3|^3|^4.4|^5"
  956. },
  957. "type": "library",
  958. "extra": {
  959. "scenarios": {
  960. "phpunit5": {
  961. "require-dev": {
  962. "phpunit/phpunit": "^5.7.27"
  963. },
  964. "remove": [
  965. "php-coveralls/php-coveralls"
  966. ],
  967. "config": {
  968. "platform": {
  969. "php": "5.6.33"
  970. }
  971. }
  972. }
  973. },
  974. "branch-alias": {
  975. "dev-master": "3.x-dev"
  976. }
  977. },
  978. "autoload": {
  979. "psr-4": {
  980. "Consolidation\\SiteAlias\\": "src"
  981. }
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "MIT"
  986. ],
  987. "authors": [
  988. {
  989. "name": "Greg Anderson",
  990. "email": "greg.1.anderson@greenknowe.org"
  991. },
  992. {
  993. "name": "Moshe Weitzman",
  994. "email": "weitzman@tejasa.com"
  995. }
  996. ],
  997. "description": "Manage alias records for local and remote sites.",
  998. "time": "2020-05-28T00:33:41+00:00"
  999. },
  1000. {
  1001. "name": "consolidation/site-process",
  1002. "version": "4.0.0",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/consolidation/site-process.git",
  1006. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  1011. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "consolidation/config": "^1.2.1|^2",
  1016. "consolidation/site-alias": "^3",
  1017. "php": ">=7.1.3",
  1018. "symfony/process": "^4.3.4"
  1019. },
  1020. "require-dev": {
  1021. "consolidation/robo": "^1.4.10|^2",
  1022. "g1a/composer-test-scenarios": "^3.0.4",
  1023. "knplabs/github-api": "^2.7",
  1024. "php-coveralls/php-coveralls": "^2.2",
  1025. "php-http/guzzle6-adapter": "^1.1",
  1026. "phpunit/phpunit": "^6.5.14",
  1027. "squizlabs/php_codesniffer": "^2.9.2"
  1028. },
  1029. "type": "library",
  1030. "extra": {
  1031. "scenarios": {
  1032. "symfony4": {
  1033. "require": {
  1034. "symfony/console": "^4.4.8",
  1035. "symfony/event-dispatcher": "^4.4.8",
  1036. "symfony/filesystem": "^4.4.8",
  1037. "symfony/finder": "^4.4.8"
  1038. },
  1039. "config": {
  1040. "platform": {
  1041. "php": "7.1.3"
  1042. }
  1043. }
  1044. }
  1045. },
  1046. "branch-alias": {
  1047. "dev-master": "4.x-dev"
  1048. }
  1049. },
  1050. "autoload": {
  1051. "psr-4": {
  1052. "Consolidation\\SiteProcess\\": "src"
  1053. }
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "MIT"
  1058. ],
  1059. "authors": [
  1060. {
  1061. "name": "Greg Anderson",
  1062. "email": "greg.1.anderson@greenknowe.org"
  1063. },
  1064. {
  1065. "name": "Moshe Weitzman",
  1066. "email": "weitzman@tejasa.com"
  1067. }
  1068. ],
  1069. "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.",
  1070. "time": "2020-05-28T00:05:34+00:00"
  1071. },
  1072. {
  1073. "name": "container-interop/container-interop",
  1074. "version": "1.2.0",
  1075. "source": {
  1076. "type": "git",
  1077. "url": "https://github.com/container-interop/container-interop.git",
  1078. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1079. },
  1080. "dist": {
  1081. "type": "zip",
  1082. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1083. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1084. "shasum": ""
  1085. },
  1086. "require": {
  1087. "psr/container": "^1.0"
  1088. },
  1089. "type": "library",
  1090. "autoload": {
  1091. "psr-4": {
  1092. "Interop\\Container\\": "src/Interop/Container/"
  1093. }
  1094. },
  1095. "notification-url": "https://packagist.org/downloads/",
  1096. "license": [
  1097. "MIT"
  1098. ],
  1099. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1100. "homepage": "https://github.com/container-interop/container-interop",
  1101. "abandoned": "psr/container",
  1102. "time": "2017-02-14T19:40:03+00:00"
  1103. },
  1104. {
  1105. "name": "cweagans/composer-patches",
  1106. "version": "1.7.0",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/cweagans/composer-patches.git",
  1110. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1115. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1116. "shasum": ""
  1117. },
  1118. "require": {
  1119. "composer-plugin-api": "^1.0 || ^2.0",
  1120. "php": ">=5.3.0"
  1121. },
  1122. "require-dev": {
  1123. "composer/composer": "~1.0 || ~2.0",
  1124. "phpunit/phpunit": "~4.6"
  1125. },
  1126. "type": "composer-plugin",
  1127. "extra": {
  1128. "class": "cweagans\\Composer\\Patches"
  1129. },
  1130. "autoload": {
  1131. "psr-4": {
  1132. "cweagans\\Composer\\": "src"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "BSD-3-Clause"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Cameron Eagans",
  1142. "email": "me@cweagans.net"
  1143. }
  1144. ],
  1145. "description": "Provides a way to patch Composer packages.",
  1146. "time": "2020-09-30T17:56:20+00:00"
  1147. },
  1148. {
  1149. "name": "d3/d3",
  1150. "version": "v3.5.17",
  1151. "dist": {
  1152. "type": "zip",
  1153. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1154. },
  1155. "type": "drupal-library"
  1156. },
  1157. {
  1158. "name": "dflydev/dot-access-configuration",
  1159. "version": "v1.0.3",
  1160. "source": {
  1161. "type": "git",
  1162. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1163. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1164. },
  1165. "dist": {
  1166. "type": "zip",
  1167. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1168. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1169. "shasum": ""
  1170. },
  1171. "require": {
  1172. "dflydev/dot-access-data": "1.*",
  1173. "dflydev/placeholder-resolver": "1.*",
  1174. "php": ">=5.3.2"
  1175. },
  1176. "require-dev": {
  1177. "symfony/yaml": "~2.1"
  1178. },
  1179. "suggest": {
  1180. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.0-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-0": {
  1190. "Dflydev\\DotAccessConfiguration": "src"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Dragonfly Development Inc.",
  1200. "email": "info@dflydev.com",
  1201. "homepage": "http://dflydev.com"
  1202. },
  1203. {
  1204. "name": "Beau Simensen",
  1205. "email": "beau@dflydev.com",
  1206. "homepage": "http://beausimensen.com"
  1207. }
  1208. ],
  1209. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1210. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1211. "keywords": [
  1212. "config",
  1213. "configuration"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/dflydev/dflydev-dot-access-configuration/issues",
  1217. "source": "https://github.com/dflydev/dflydev-dot-access-configuration/tree/master"
  1218. },
  1219. "time": "2018-09-08T23:00:17+00:00"
  1220. },
  1221. {
  1222. "name": "dflydev/dot-access-data",
  1223. "version": "v1.1.0",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1227. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1232. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1233. "shasum": ""
  1234. },
  1235. "require": {
  1236. "php": ">=5.3.2"
  1237. },
  1238. "type": "library",
  1239. "extra": {
  1240. "branch-alias": {
  1241. "dev-master": "1.0-dev"
  1242. }
  1243. },
  1244. "autoload": {
  1245. "psr-0": {
  1246. "Dflydev\\DotAccessData": "src"
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "MIT"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Dragonfly Development Inc.",
  1256. "email": "info@dflydev.com",
  1257. "homepage": "http://dflydev.com"
  1258. },
  1259. {
  1260. "name": "Beau Simensen",
  1261. "email": "beau@dflydev.com",
  1262. "homepage": "http://beausimensen.com"
  1263. },
  1264. {
  1265. "name": "Carlos Frutos",
  1266. "email": "carlos@kiwing.it",
  1267. "homepage": "https://github.com/cfrutos"
  1268. }
  1269. ],
  1270. "description": "Given a deep data structure, access data by dot notation.",
  1271. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1272. "keywords": [
  1273. "access",
  1274. "data",
  1275. "dot",
  1276. "notation"
  1277. ],
  1278. "support": {
  1279. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1280. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1281. },
  1282. "time": "2017-01-20T21:14:22+00:00"
  1283. },
  1284. {
  1285. "name": "dflydev/placeholder-resolver",
  1286. "version": "v1.0.3",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1290. "reference": "d0161b4be1e15838327b01b21d0149f382d69906"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/d0161b4be1e15838327b01b21d0149f382d69906",
  1295. "reference": "d0161b4be1e15838327b01b21d0149f382d69906",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "php": ">=5.3.2"
  1300. },
  1301. "type": "library",
  1302. "extra": {
  1303. "branch-alias": {
  1304. "dev-master": "1.0-dev"
  1305. }
  1306. },
  1307. "autoload": {
  1308. "psr-0": {
  1309. "Dflydev\\PlaceholderResolver": "src"
  1310. }
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "authors": [
  1317. {
  1318. "name": "Dragonfly Development Inc.",
  1319. "email": "info@dflydev.com",
  1320. "homepage": "http://dflydev.com"
  1321. },
  1322. {
  1323. "name": "Beau Simensen",
  1324. "email": "beau@dflydev.com",
  1325. "homepage": "http://beausimensen.com"
  1326. }
  1327. ],
  1328. "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.",
  1329. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1330. "keywords": [
  1331. "placeholder",
  1332. "resolver"
  1333. ],
  1334. "support": {
  1335. "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues",
  1336. "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.3"
  1337. },
  1338. "time": "2021-12-03T16:48:58+00:00"
  1339. },
  1340. {
  1341. "name": "doctrine/annotations",
  1342. "version": "1.13.2",
  1343. "source": {
  1344. "type": "git",
  1345. "url": "https://github.com/doctrine/annotations.git",
  1346. "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
  1347. },
  1348. "dist": {
  1349. "type": "zip",
  1350. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
  1351. "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
  1352. "shasum": ""
  1353. },
  1354. "require": {
  1355. "doctrine/lexer": "1.*",
  1356. "ext-tokenizer": "*",
  1357. "php": "^7.1 || ^8.0",
  1358. "psr/cache": "^1 || ^2 || ^3"
  1359. },
  1360. "require-dev": {
  1361. "doctrine/cache": "^1.11 || ^2.0",
  1362. "doctrine/coding-standard": "^6.0 || ^8.1",
  1363. "phpstan/phpstan": "^0.12.20",
  1364. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1365. "symfony/cache": "^4.4 || ^5.2"
  1366. },
  1367. "type": "library",
  1368. "autoload": {
  1369. "psr-4": {
  1370. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1371. }
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "MIT"
  1376. ],
  1377. "authors": [
  1378. {
  1379. "name": "Guilherme Blanco",
  1380. "email": "guilhermeblanco@gmail.com"
  1381. },
  1382. {
  1383. "name": "Roman Borschel",
  1384. "email": "roman@code-factory.org"
  1385. },
  1386. {
  1387. "name": "Benjamin Eberlei",
  1388. "email": "kontakt@beberlei.de"
  1389. },
  1390. {
  1391. "name": "Jonathan Wage",
  1392. "email": "jonwage@gmail.com"
  1393. },
  1394. {
  1395. "name": "Johannes Schmitt",
  1396. "email": "schmittjoh@gmail.com"
  1397. }
  1398. ],
  1399. "description": "Docblock Annotations Parser",
  1400. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1401. "keywords": [
  1402. "annotations",
  1403. "docblock",
  1404. "parser"
  1405. ],
  1406. "support": {
  1407. "issues": "https://github.com/doctrine/annotations/issues",
  1408. "source": "https://github.com/doctrine/annotations/tree/1.13.2"
  1409. },
  1410. "time": "2021-08-05T19:00:23+00:00"
  1411. },
  1412. {
  1413. "name": "doctrine/cache",
  1414. "version": "1.12.1",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/doctrine/cache.git",
  1418. "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/doctrine/cache/zipball/4cf401d14df219fa6f38b671f5493449151c9ad8",
  1423. "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8",
  1424. "shasum": ""
  1425. },
  1426. "require": {
  1427. "php": "~7.1 || ^8.0"
  1428. },
  1429. "conflict": {
  1430. "doctrine/common": ">2.2,<2.4"
  1431. },
  1432. "require-dev": {
  1433. "alcaeus/mongo-php-adapter": "^1.1",
  1434. "cache/integration-tests": "dev-master",
  1435. "doctrine/coding-standard": "^8.0",
  1436. "mongodb/mongodb": "^1.1",
  1437. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1438. "predis/predis": "~1.0",
  1439. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1440. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  1441. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  1442. },
  1443. "suggest": {
  1444. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1445. },
  1446. "type": "library",
  1447. "autoload": {
  1448. "psr-4": {
  1449. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Guilherme Blanco",
  1459. "email": "guilhermeblanco@gmail.com"
  1460. },
  1461. {
  1462. "name": "Roman Borschel",
  1463. "email": "roman@code-factory.org"
  1464. },
  1465. {
  1466. "name": "Benjamin Eberlei",
  1467. "email": "kontakt@beberlei.de"
  1468. },
  1469. {
  1470. "name": "Jonathan Wage",
  1471. "email": "jonwage@gmail.com"
  1472. },
  1473. {
  1474. "name": "Johannes Schmitt",
  1475. "email": "schmittjoh@gmail.com"
  1476. }
  1477. ],
  1478. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1479. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1480. "keywords": [
  1481. "abstraction",
  1482. "apcu",
  1483. "cache",
  1484. "caching",
  1485. "couchdb",
  1486. "memcached",
  1487. "php",
  1488. "redis",
  1489. "xcache"
  1490. ],
  1491. "support": {
  1492. "issues": "https://github.com/doctrine/cache/issues",
  1493. "source": "https://github.com/doctrine/cache/tree/1.12.1"
  1494. },
  1495. "funding": [
  1496. {
  1497. "url": "https://www.doctrine-project.org/sponsorship.html",
  1498. "type": "custom"
  1499. },
  1500. {
  1501. "url": "https://www.patreon.com/phpdoctrine",
  1502. "type": "patreon"
  1503. },
  1504. {
  1505. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1506. "type": "tidelift"
  1507. }
  1508. ],
  1509. "time": "2021-07-17T14:39:21+00:00"
  1510. },
  1511. {
  1512. "name": "doctrine/collections",
  1513. "version": "1.6.8",
  1514. "source": {
  1515. "type": "git",
  1516. "url": "https://github.com/doctrine/collections.git",
  1517. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
  1518. },
  1519. "dist": {
  1520. "type": "zip",
  1521. "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
  1522. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
  1523. "shasum": ""
  1524. },
  1525. "require": {
  1526. "php": "^7.1.3 || ^8.0"
  1527. },
  1528. "require-dev": {
  1529. "doctrine/coding-standard": "^9.0",
  1530. "phpstan/phpstan": "^0.12",
  1531. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  1532. "vimeo/psalm": "^4.2.1"
  1533. },
  1534. "type": "library",
  1535. "autoload": {
  1536. "psr-4": {
  1537. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1538. }
  1539. },
  1540. "notification-url": "https://packagist.org/downloads/",
  1541. "license": [
  1542. "MIT"
  1543. ],
  1544. "authors": [
  1545. {
  1546. "name": "Guilherme Blanco",
  1547. "email": "guilhermeblanco@gmail.com"
  1548. },
  1549. {
  1550. "name": "Roman Borschel",
  1551. "email": "roman@code-factory.org"
  1552. },
  1553. {
  1554. "name": "Benjamin Eberlei",
  1555. "email": "kontakt@beberlei.de"
  1556. },
  1557. {
  1558. "name": "Jonathan Wage",
  1559. "email": "jonwage@gmail.com"
  1560. },
  1561. {
  1562. "name": "Johannes Schmitt",
  1563. "email": "schmittjoh@gmail.com"
  1564. }
  1565. ],
  1566. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1567. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1568. "keywords": [
  1569. "array",
  1570. "collections",
  1571. "iterators",
  1572. "php"
  1573. ],
  1574. "support": {
  1575. "issues": "https://github.com/doctrine/collections/issues",
  1576. "source": "https://github.com/doctrine/collections/tree/1.6.8"
  1577. },
  1578. "time": "2021-08-10T18:51:53+00:00"
  1579. },
  1580. {
  1581. "name": "doctrine/common",
  1582. "version": "2.13.3",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/doctrine/common.git",
  1586. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1591. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "doctrine/annotations": "^1.0",
  1596. "doctrine/cache": "^1.0",
  1597. "doctrine/collections": "^1.0",
  1598. "doctrine/event-manager": "^1.0",
  1599. "doctrine/inflector": "^1.0",
  1600. "doctrine/lexer": "^1.0",
  1601. "doctrine/persistence": "^1.3.3",
  1602. "doctrine/reflection": "^1.0",
  1603. "php": "^7.1 || ^8.0"
  1604. },
  1605. "require-dev": {
  1606. "doctrine/coding-standard": "^1.0",
  1607. "phpstan/phpstan": "^0.11",
  1608. "phpstan/phpstan-phpunit": "^0.11",
  1609. "phpunit/phpunit": "^7.0",
  1610. "squizlabs/php_codesniffer": "^3.0",
  1611. "symfony/phpunit-bridge": "^4.0.5"
  1612. },
  1613. "type": "library",
  1614. "extra": {
  1615. "branch-alias": {
  1616. "dev-master": "2.11.x-dev"
  1617. }
  1618. },
  1619. "autoload": {
  1620. "psr-4": {
  1621. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1622. }
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "authors": [
  1629. {
  1630. "name": "Guilherme Blanco",
  1631. "email": "guilhermeblanco@gmail.com"
  1632. },
  1633. {
  1634. "name": "Roman Borschel",
  1635. "email": "roman@code-factory.org"
  1636. },
  1637. {
  1638. "name": "Benjamin Eberlei",
  1639. "email": "kontakt@beberlei.de"
  1640. },
  1641. {
  1642. "name": "Jonathan Wage",
  1643. "email": "jonwage@gmail.com"
  1644. },
  1645. {
  1646. "name": "Johannes Schmitt",
  1647. "email": "schmittjoh@gmail.com"
  1648. },
  1649. {
  1650. "name": "Marco Pivetta",
  1651. "email": "ocramius@gmail.com"
  1652. }
  1653. ],
  1654. "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.",
  1655. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1656. "keywords": [
  1657. "common",
  1658. "doctrine",
  1659. "php"
  1660. ],
  1661. "support": {
  1662. "issues": "https://github.com/doctrine/common/issues",
  1663. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1664. },
  1665. "funding": [
  1666. {
  1667. "url": "https://www.doctrine-project.org/sponsorship.html",
  1668. "type": "custom"
  1669. },
  1670. {
  1671. "url": "https://www.patreon.com/phpdoctrine",
  1672. "type": "patreon"
  1673. },
  1674. {
  1675. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1676. "type": "tidelift"
  1677. }
  1678. ],
  1679. "time": "2020-06-05T16:46:05+00:00"
  1680. },
  1681. {
  1682. "name": "doctrine/event-manager",
  1683. "version": "1.1.1",
  1684. "source": {
  1685. "type": "git",
  1686. "url": "https://github.com/doctrine/event-manager.git",
  1687. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1688. },
  1689. "dist": {
  1690. "type": "zip",
  1691. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1692. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1693. "shasum": ""
  1694. },
  1695. "require": {
  1696. "php": "^7.1 || ^8.0"
  1697. },
  1698. "conflict": {
  1699. "doctrine/common": "<2.9@dev"
  1700. },
  1701. "require-dev": {
  1702. "doctrine/coding-standard": "^6.0",
  1703. "phpunit/phpunit": "^7.0"
  1704. },
  1705. "type": "library",
  1706. "extra": {
  1707. "branch-alias": {
  1708. "dev-master": "1.0.x-dev"
  1709. }
  1710. },
  1711. "autoload": {
  1712. "psr-4": {
  1713. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Guilherme Blanco",
  1723. "email": "guilhermeblanco@gmail.com"
  1724. },
  1725. {
  1726. "name": "Roman Borschel",
  1727. "email": "roman@code-factory.org"
  1728. },
  1729. {
  1730. "name": "Benjamin Eberlei",
  1731. "email": "kontakt@beberlei.de"
  1732. },
  1733. {
  1734. "name": "Jonathan Wage",
  1735. "email": "jonwage@gmail.com"
  1736. },
  1737. {
  1738. "name": "Johannes Schmitt",
  1739. "email": "schmittjoh@gmail.com"
  1740. },
  1741. {
  1742. "name": "Marco Pivetta",
  1743. "email": "ocramius@gmail.com"
  1744. }
  1745. ],
  1746. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1747. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1748. "keywords": [
  1749. "event",
  1750. "event dispatcher",
  1751. "event manager",
  1752. "event system",
  1753. "events"
  1754. ],
  1755. "support": {
  1756. "issues": "https://github.com/doctrine/event-manager/issues",
  1757. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1758. },
  1759. "funding": [
  1760. {
  1761. "url": "https://www.doctrine-project.org/sponsorship.html",
  1762. "type": "custom"
  1763. },
  1764. {
  1765. "url": "https://www.patreon.com/phpdoctrine",
  1766. "type": "patreon"
  1767. },
  1768. {
  1769. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1770. "type": "tidelift"
  1771. }
  1772. ],
  1773. "time": "2020-05-29T18:28:51+00:00"
  1774. },
  1775. {
  1776. "name": "doctrine/inflector",
  1777. "version": "1.4.4",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/doctrine/inflector.git",
  1781. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1786. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1787. "shasum": ""
  1788. },
  1789. "require": {
  1790. "php": "^7.1 || ^8.0"
  1791. },
  1792. "require-dev": {
  1793. "doctrine/coding-standard": "^8.0",
  1794. "phpstan/phpstan": "^0.12",
  1795. "phpstan/phpstan-phpunit": "^0.12",
  1796. "phpstan/phpstan-strict-rules": "^0.12",
  1797. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1798. },
  1799. "type": "library",
  1800. "extra": {
  1801. "branch-alias": {
  1802. "dev-master": "2.0.x-dev"
  1803. }
  1804. },
  1805. "autoload": {
  1806. "psr-4": {
  1807. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1808. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1809. }
  1810. },
  1811. "notification-url": "https://packagist.org/downloads/",
  1812. "license": [
  1813. "MIT"
  1814. ],
  1815. "authors": [
  1816. {
  1817. "name": "Guilherme Blanco",
  1818. "email": "guilhermeblanco@gmail.com"
  1819. },
  1820. {
  1821. "name": "Roman Borschel",
  1822. "email": "roman@code-factory.org"
  1823. },
  1824. {
  1825. "name": "Benjamin Eberlei",
  1826. "email": "kontakt@beberlei.de"
  1827. },
  1828. {
  1829. "name": "Jonathan Wage",
  1830. "email": "jonwage@gmail.com"
  1831. },
  1832. {
  1833. "name": "Johannes Schmitt",
  1834. "email": "schmittjoh@gmail.com"
  1835. }
  1836. ],
  1837. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1838. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1839. "keywords": [
  1840. "inflection",
  1841. "inflector",
  1842. "lowercase",
  1843. "manipulation",
  1844. "php",
  1845. "plural",
  1846. "singular",
  1847. "strings",
  1848. "uppercase",
  1849. "words"
  1850. ],
  1851. "support": {
  1852. "issues": "https://github.com/doctrine/inflector/issues",
  1853. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  1854. },
  1855. "funding": [
  1856. {
  1857. "url": "https://www.doctrine-project.org/sponsorship.html",
  1858. "type": "custom"
  1859. },
  1860. {
  1861. "url": "https://www.patreon.com/phpdoctrine",
  1862. "type": "patreon"
  1863. },
  1864. {
  1865. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1866. "type": "tidelift"
  1867. }
  1868. ],
  1869. "time": "2021-04-16T17:34:40+00:00"
  1870. },
  1871. {
  1872. "name": "doctrine/lexer",
  1873. "version": "1.2.1",
  1874. "source": {
  1875. "type": "git",
  1876. "url": "https://github.com/doctrine/lexer.git",
  1877. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1878. },
  1879. "dist": {
  1880. "type": "zip",
  1881. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1882. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1883. "shasum": ""
  1884. },
  1885. "require": {
  1886. "php": "^7.2 || ^8.0"
  1887. },
  1888. "require-dev": {
  1889. "doctrine/coding-standard": "^6.0",
  1890. "phpstan/phpstan": "^0.11.8",
  1891. "phpunit/phpunit": "^8.2"
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "1.2.x-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "authors": [
  1909. {
  1910. "name": "Guilherme Blanco",
  1911. "email": "guilhermeblanco@gmail.com"
  1912. },
  1913. {
  1914. "name": "Roman Borschel",
  1915. "email": "roman@code-factory.org"
  1916. },
  1917. {
  1918. "name": "Johannes Schmitt",
  1919. "email": "schmittjoh@gmail.com"
  1920. }
  1921. ],
  1922. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1923. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1924. "keywords": [
  1925. "annotations",
  1926. "docblock",
  1927. "lexer",
  1928. "parser",
  1929. "php"
  1930. ],
  1931. "support": {
  1932. "issues": "https://github.com/doctrine/lexer/issues",
  1933. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1934. },
  1935. "funding": [
  1936. {
  1937. "url": "https://www.doctrine-project.org/sponsorship.html",
  1938. "type": "custom"
  1939. },
  1940. {
  1941. "url": "https://www.patreon.com/phpdoctrine",
  1942. "type": "patreon"
  1943. },
  1944. {
  1945. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1946. "type": "tidelift"
  1947. }
  1948. ],
  1949. "time": "2020-05-25T17:44:05+00:00"
  1950. },
  1951. {
  1952. "name": "doctrine/persistence",
  1953. "version": "1.3.8",
  1954. "source": {
  1955. "type": "git",
  1956. "url": "https://github.com/doctrine/persistence.git",
  1957. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1958. },
  1959. "dist": {
  1960. "type": "zip",
  1961. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1962. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1963. "shasum": ""
  1964. },
  1965. "require": {
  1966. "doctrine/annotations": "^1.0",
  1967. "doctrine/cache": "^1.0",
  1968. "doctrine/collections": "^1.0",
  1969. "doctrine/event-manager": "^1.0",
  1970. "doctrine/reflection": "^1.2",
  1971. "php": "^7.1 || ^8.0"
  1972. },
  1973. "conflict": {
  1974. "doctrine/common": "<2.10@dev"
  1975. },
  1976. "require-dev": {
  1977. "doctrine/coding-standard": "^6.0",
  1978. "phpstan/phpstan": "^0.11",
  1979. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1980. "vimeo/psalm": "^3.11"
  1981. },
  1982. "type": "library",
  1983. "extra": {
  1984. "branch-alias": {
  1985. "dev-master": "1.3.x-dev"
  1986. }
  1987. },
  1988. "autoload": {
  1989. "psr-4": {
  1990. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1991. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Guilherme Blanco",
  2001. "email": "guilhermeblanco@gmail.com"
  2002. },
  2003. {
  2004. "name": "Roman Borschel",
  2005. "email": "roman@code-factory.org"
  2006. },
  2007. {
  2008. "name": "Benjamin Eberlei",
  2009. "email": "kontakt@beberlei.de"
  2010. },
  2011. {
  2012. "name": "Jonathan Wage",
  2013. "email": "jonwage@gmail.com"
  2014. },
  2015. {
  2016. "name": "Johannes Schmitt",
  2017. "email": "schmittjoh@gmail.com"
  2018. },
  2019. {
  2020. "name": "Marco Pivetta",
  2021. "email": "ocramius@gmail.com"
  2022. }
  2023. ],
  2024. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  2025. "homepage": "https://doctrine-project.org/projects/persistence.html",
  2026. "keywords": [
  2027. "mapper",
  2028. "object",
  2029. "odm",
  2030. "orm",
  2031. "persistence"
  2032. ],
  2033. "support": {
  2034. "issues": "https://github.com/doctrine/persistence/issues",
  2035. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  2036. },
  2037. "funding": [
  2038. {
  2039. "url": "https://www.doctrine-project.org/sponsorship.html",
  2040. "type": "custom"
  2041. },
  2042. {
  2043. "url": "https://www.patreon.com/phpdoctrine",
  2044. "type": "patreon"
  2045. },
  2046. {
  2047. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2048. "type": "tidelift"
  2049. }
  2050. ],
  2051. "time": "2020-06-20T12:56:16+00:00"
  2052. },
  2053. {
  2054. "name": "doctrine/reflection",
  2055. "version": "1.2.2",
  2056. "source": {
  2057. "type": "git",
  2058. "url": "https://github.com/doctrine/reflection.git",
  2059. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2060. },
  2061. "dist": {
  2062. "type": "zip",
  2063. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2064. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2065. "shasum": ""
  2066. },
  2067. "require": {
  2068. "doctrine/annotations": "^1.0",
  2069. "ext-tokenizer": "*",
  2070. "php": "^7.1 || ^8.0"
  2071. },
  2072. "conflict": {
  2073. "doctrine/common": "<2.9"
  2074. },
  2075. "require-dev": {
  2076. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2077. "doctrine/common": "^2.10",
  2078. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2079. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2080. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2081. },
  2082. "type": "library",
  2083. "extra": {
  2084. "branch-alias": {
  2085. "dev-master": "1.2.x-dev"
  2086. }
  2087. },
  2088. "autoload": {
  2089. "psr-4": {
  2090. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2091. }
  2092. },
  2093. "notification-url": "https://packagist.org/downloads/",
  2094. "license": [
  2095. "MIT"
  2096. ],
  2097. "authors": [
  2098. {
  2099. "name": "Guilherme Blanco",
  2100. "email": "guilhermeblanco@gmail.com"
  2101. },
  2102. {
  2103. "name": "Roman Borschel",
  2104. "email": "roman@code-factory.org"
  2105. },
  2106. {
  2107. "name": "Benjamin Eberlei",
  2108. "email": "kontakt@beberlei.de"
  2109. },
  2110. {
  2111. "name": "Jonathan Wage",
  2112. "email": "jonwage@gmail.com"
  2113. },
  2114. {
  2115. "name": "Johannes Schmitt",
  2116. "email": "schmittjoh@gmail.com"
  2117. },
  2118. {
  2119. "name": "Marco Pivetta",
  2120. "email": "ocramius@gmail.com"
  2121. }
  2122. ],
  2123. "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.",
  2124. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2125. "keywords": [
  2126. "reflection",
  2127. "static"
  2128. ],
  2129. "support": {
  2130. "issues": "https://github.com/doctrine/reflection/issues",
  2131. "source": "https://github.com/doctrine/reflection/tree/1.2.2"
  2132. },
  2133. "abandoned": "roave/better-reflection",
  2134. "time": "2020-10-27T21:46:55+00:00"
  2135. },
  2136. {
  2137. "name": "drupal/address",
  2138. "version": "1.9.0",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://git.drupalcode.org/project/address.git",
  2142. "reference": "8.x-1.9"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2147. "reference": "8.x-1.9",
  2148. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2149. },
  2150. "require": {
  2151. "commerceguys/addressing": "^1.0.7",
  2152. "drupal/core": "^8.8 || ^9"
  2153. },
  2154. "require-dev": {
  2155. "drupal/token": "^1.0"
  2156. },
  2157. "type": "drupal-module",
  2158. "extra": {
  2159. "drupal": {
  2160. "version": "8.x-1.9",
  2161. "datestamp": "1604422821",
  2162. "security-coverage": {
  2163. "status": "covered",
  2164. "message": "Covered by Drupal's security advisory policy"
  2165. }
  2166. }
  2167. },
  2168. "notification-url": "https://packages.drupal.org/8/downloads",
  2169. "license": [
  2170. "GPL-2.0-or-later"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "bojanz",
  2175. "homepage": "https://www.drupal.org/user/86106"
  2176. },
  2177. {
  2178. "name": "dww",
  2179. "homepage": "https://www.drupal.org/user/46549"
  2180. },
  2181. {
  2182. "name": "googletorp",
  2183. "homepage": "https://www.drupal.org/user/386230"
  2184. },
  2185. {
  2186. "name": "jsacksick",
  2187. "homepage": "https://www.drupal.org/user/972218"
  2188. },
  2189. {
  2190. "name": "mglaman",
  2191. "homepage": "https://www.drupal.org/user/2416470"
  2192. },
  2193. {
  2194. "name": "rszrama",
  2195. "homepage": "https://www.drupal.org/user/49344"
  2196. }
  2197. ],
  2198. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2199. "homepage": "http://drupal.org/project/address",
  2200. "support": {
  2201. "source": "https://git.drupalcode.org/project/address"
  2202. }
  2203. },
  2204. {
  2205. "name": "drupal/admin_toolbar",
  2206. "version": "2.5.0",
  2207. "source": {
  2208. "type": "git",
  2209. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2210. "reference": "8.x-2.5"
  2211. },
  2212. "dist": {
  2213. "type": "zip",
  2214. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  2215. "reference": "8.x-2.5",
  2216. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  2217. },
  2218. "require": {
  2219. "drupal/core": "^8.8.0 || ^9.0"
  2220. },
  2221. "type": "drupal-module",
  2222. "extra": {
  2223. "drupal": {
  2224. "version": "8.x-2.5",
  2225. "datestamp": "1629907119",
  2226. "security-coverage": {
  2227. "status": "covered",
  2228. "message": "Covered by Drupal's security advisory policy"
  2229. }
  2230. }
  2231. },
  2232. "notification-url": "https://packages.drupal.org/8/downloads",
  2233. "license": [
  2234. "GPL-2.0-or-later"
  2235. ],
  2236. "authors": [
  2237. {
  2238. "name": "Wilfrid Roze (eme)",
  2239. "homepage": "https://www.drupal.org/u/eme",
  2240. "role": "Maintainer"
  2241. },
  2242. {
  2243. "name": "Romain Jarraud (romainj)",
  2244. "homepage": "https://www.drupal.org/u/romainj",
  2245. "role": "Maintainer"
  2246. },
  2247. {
  2248. "name": "Adrian Cid Almaguer (adriancid)",
  2249. "homepage": "https://www.drupal.org/u/adriancid",
  2250. "email": "adriancid@gmail.com",
  2251. "role": "Maintainer"
  2252. },
  2253. {
  2254. "name": "Mohamed Anis Taktak (matio89)",
  2255. "homepage": "https://www.drupal.org/u/matio89",
  2256. "role": "Maintainer"
  2257. },
  2258. {
  2259. "name": "fethi.krout",
  2260. "homepage": "https://www.drupal.org/user/3206765"
  2261. },
  2262. {
  2263. "name": "matio89",
  2264. "homepage": "https://www.drupal.org/user/2320090"
  2265. },
  2266. {
  2267. "name": "romainj",
  2268. "homepage": "https://www.drupal.org/user/370706"
  2269. }
  2270. ],
  2271. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2272. "homepage": "http://drupal.org/project/admin_toolbar",
  2273. "keywords": [
  2274. "Drupal",
  2275. "Toolbar"
  2276. ],
  2277. "support": {
  2278. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2279. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2280. }
  2281. },
  2282. {
  2283. "name": "drupal/adminimal_theme",
  2284. "version": "1.6.0",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2288. "reference": "8.x-1.6"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2293. "reference": "8.x-1.6",
  2294. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2295. },
  2296. "require": {
  2297. "drupal/core": "^8.8 || ^9"
  2298. },
  2299. "type": "drupal-theme",
  2300. "extra": {
  2301. "drupal": {
  2302. "version": "8.x-1.6",
  2303. "datestamp": "1602006937",
  2304. "security-coverage": {
  2305. "status": "covered",
  2306. "message": "Covered by Drupal's security advisory policy"
  2307. }
  2308. }
  2309. },
  2310. "notification-url": "https://packages.drupal.org/8/downloads",
  2311. "license": [
  2312. "GPL-2.0+"
  2313. ],
  2314. "authors": [
  2315. {
  2316. "name": "ANDiTKO",
  2317. "homepage": "https://www.drupal.org/user/1428124"
  2318. },
  2319. {
  2320. "name": "andrey.troeglazov",
  2321. "homepage": "https://www.drupal.org/user/3145389"
  2322. },
  2323. {
  2324. "name": "realityloop",
  2325. "homepage": "https://www.drupal.org/user/139189"
  2326. }
  2327. ],
  2328. "description": "Drupal administration theme with modern minimalist design.",
  2329. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2330. "support": {
  2331. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2332. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2333. }
  2334. },
  2335. {
  2336. "name": "drupal/advanced_text_formatter",
  2337. "version": "2.1.1",
  2338. "source": {
  2339. "type": "git",
  2340. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2341. "reference": "2.1.1"
  2342. },
  2343. "dist": {
  2344. "type": "zip",
  2345. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.1.1.zip",
  2346. "reference": "2.1.1",
  2347. "shasum": "c656349ce20bf6ca1f561b18bd223a993700bc6f"
  2348. },
  2349. "require": {
  2350. "drupal/core": "^8 || ^9"
  2351. },
  2352. "type": "drupal-module",
  2353. "extra": {
  2354. "drupal": {
  2355. "version": "2.1.1",
  2356. "datestamp": "1631794804",
  2357. "security-coverage": {
  2358. "status": "covered",
  2359. "message": "Covered by Drupal's security advisory policy"
  2360. }
  2361. }
  2362. },
  2363. "notification-url": "https://packages.drupal.org/8/downloads",
  2364. "license": [
  2365. "GPL-2.0-or-later"
  2366. ],
  2367. "authors": [
  2368. {
  2369. "name": "azovsky",
  2370. "homepage": "https://www.drupal.org/user/330533"
  2371. },
  2372. {
  2373. "name": "thmnhat",
  2374. "homepage": "https://www.drupal.org/user/998946"
  2375. }
  2376. ],
  2377. "description": "Provides an additional formatter for text field, text area and text format.",
  2378. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2379. "support": {
  2380. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2381. }
  2382. },
  2383. {
  2384. "name": "drupal/audiofield",
  2385. "version": "1.10.0",
  2386. "source": {
  2387. "type": "git",
  2388. "url": "https://git.drupalcode.org/project/audiofield.git",
  2389. "reference": "8.x-1.10"
  2390. },
  2391. "dist": {
  2392. "type": "zip",
  2393. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2394. "reference": "8.x-1.10",
  2395. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2396. },
  2397. "require": {
  2398. "drupal/core": "^8 || ^9"
  2399. },
  2400. "type": "drupal-module",
  2401. "extra": {
  2402. "drupal": {
  2403. "version": "8.x-1.10",
  2404. "datestamp": "1607014410",
  2405. "security-coverage": {
  2406. "status": "covered",
  2407. "message": "Covered by Drupal's security advisory policy"
  2408. }
  2409. },
  2410. "drush": {
  2411. "services": {
  2412. "drush.services.yml": "^9"
  2413. }
  2414. }
  2415. },
  2416. "notification-url": "https://packages.drupal.org/8/downloads",
  2417. "license": [
  2418. "GPL-2.0-or-later"
  2419. ],
  2420. "authors": [
  2421. {
  2422. "name": "Daniel Moberly",
  2423. "homepage": "https://www.drupal.org/u/danielmoberly",
  2424. "role": "Maintainer"
  2425. },
  2426. {
  2427. "name": "josipsaric",
  2428. "homepage": "https://www.drupal.org/user/3063287"
  2429. },
  2430. {
  2431. "name": "tamerzg",
  2432. "homepage": "https://www.drupal.org/user/464564"
  2433. }
  2434. ],
  2435. "description": "AudioField Module",
  2436. "homepage": "https://www.drupal.org/project/audiofield",
  2437. "support": {
  2438. "source": "https://git.drupalcode.org/project/audiofield",
  2439. "issues": "https://www.drupal.org/project/issues/audiofield"
  2440. }
  2441. },
  2442. {
  2443. "name": "drupal/auto_entitylabel",
  2444. "version": "dev-3.x",
  2445. "source": {
  2446. "type": "git",
  2447. "url": "https://git.drupalcode.org/project/auto_entitylabel.git",
  2448. "reference": "7d2063d5ee869d20e00409eca12bf6776fff7772"
  2449. },
  2450. "require": {
  2451. "drupal/core": "^8 || ^9"
  2452. },
  2453. "require-dev": {
  2454. "drupal/token": "^1.0"
  2455. },
  2456. "type": "drupal-module",
  2457. "extra": {
  2458. "branch-alias": {
  2459. "dev-3.x": "3.x-dev"
  2460. },
  2461. "drupal": {
  2462. "version": "8.x-3.0-beta3+6-dev",
  2463. "datestamp": "1609346741",
  2464. "security-coverage": {
  2465. "status": "not-covered",
  2466. "message": "Dev releases are not covered by Drupal security advisories."
  2467. }
  2468. }
  2469. },
  2470. "notification-url": "https://packages.drupal.org/8/downloads",
  2471. "license": [
  2472. "GPL-2.0-or-later"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Pravin Ajaaz",
  2477. "homepage": "https://www.drupal.org/user/2910049"
  2478. },
  2479. {
  2480. "name": "RenatoG",
  2481. "homepage": "https://www.drupal.org/user/3326031"
  2482. },
  2483. {
  2484. "name": "VladimirAus",
  2485. "homepage": "https://www.drupal.org/user/673120"
  2486. },
  2487. {
  2488. "name": "bforchhammer",
  2489. "homepage": "https://www.drupal.org/user/216396"
  2490. },
  2491. {
  2492. "name": "colan",
  2493. "homepage": "https://www.drupal.org/user/58704"
  2494. },
  2495. {
  2496. "name": "diqidoq",
  2497. "homepage": "https://www.drupal.org/user/1001934"
  2498. },
  2499. {
  2500. "name": "purushotam.rai",
  2501. "homepage": "https://www.drupal.org/user/3193859"
  2502. }
  2503. ],
  2504. "description": "Allows hiding of entity label fields and automatic label creation.",
  2505. "homepage": "https://www.drupal.org/project/auto_entitylabel",
  2506. "support": {
  2507. "source": "https://git.drupalcode.org/project/auto_entitylabel",
  2508. "issues": "https://www.drupal.org/project/issues/auto_entitylabel"
  2509. },
  2510. "time": "2021-03-01T17:14:07+00:00"
  2511. },
  2512. {
  2513. "name": "drupal/autocomplete_deluxe",
  2514. "version": "2.0.1",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2518. "reference": "2.0.1"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.1.zip",
  2523. "reference": "2.0.1",
  2524. "shasum": "244d3a1992da6ec126220bab22a933f9f6780d78"
  2525. },
  2526. "require": {
  2527. "drupal/core": "^8 || ^9"
  2528. },
  2529. "type": "drupal-module",
  2530. "extra": {
  2531. "drupal": {
  2532. "version": "2.0.1",
  2533. "datestamp": "1630177423",
  2534. "security-coverage": {
  2535. "status": "covered",
  2536. "message": "Covered by Drupal's security advisory policy"
  2537. }
  2538. }
  2539. },
  2540. "notification-url": "https://packages.drupal.org/8/downloads",
  2541. "license": [
  2542. "GPL-2.0-or-later"
  2543. ],
  2544. "authors": [
  2545. {
  2546. "name": "Vardot",
  2547. "homepage": "https://www.drupal.org/vardot",
  2548. "role": "Maintenance for D8 and D9 versions"
  2549. },
  2550. {
  2551. "name": "Mediacurrent",
  2552. "homepage": "https://www.drupal.org/mediacurrent",
  2553. "role": "Supporting organization"
  2554. },
  2555. {
  2556. "name": "edwardchiapet",
  2557. "homepage": "https://www.drupal.org/user/2354784"
  2558. },
  2559. {
  2560. "name": "klausi",
  2561. "homepage": "https://www.drupal.org/user/262198"
  2562. },
  2563. {
  2564. "name": "mpriscella",
  2565. "homepage": "https://www.drupal.org/user/2354820"
  2566. },
  2567. {
  2568. "name": "sepgil",
  2569. "homepage": "https://www.drupal.org/user/512828"
  2570. }
  2571. ],
  2572. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2573. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2574. "support": {
  2575. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2576. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2577. }
  2578. },
  2579. {
  2580. "name": "drupal/autologout",
  2581. "version": "1.3.0",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://git.drupalcode.org/project/autologout.git",
  2585. "reference": "8.x-1.3"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2590. "reference": "8.x-1.3",
  2591. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2592. },
  2593. "require": {
  2594. "drupal/core": "^8 || ^9"
  2595. },
  2596. "type": "drupal-module",
  2597. "extra": {
  2598. "drupal": {
  2599. "version": "8.x-1.3",
  2600. "datestamp": "1587193798",
  2601. "security-coverage": {
  2602. "status": "covered",
  2603. "message": "Covered by Drupal's security advisory policy"
  2604. }
  2605. }
  2606. },
  2607. "notification-url": "https://packages.drupal.org/8/downloads",
  2608. "license": [
  2609. "GPL-2.0+"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "AjK",
  2614. "homepage": "https://www.drupal.org/user/39030"
  2615. },
  2616. {
  2617. "name": "AjitS",
  2618. "homepage": "https://www.drupal.org/user/981944"
  2619. },
  2620. {
  2621. "name": "boshtian",
  2622. "homepage": "https://www.drupal.org/user/1773456"
  2623. },
  2624. {
  2625. "name": "dandrews",
  2626. "homepage": "https://www.drupal.org/user/2014490"
  2627. },
  2628. {
  2629. "name": "darksnow",
  2630. "homepage": "https://www.drupal.org/user/391915"
  2631. },
  2632. {
  2633. "name": "johnennew",
  2634. "homepage": "https://www.drupal.org/user/1150042"
  2635. },
  2636. {
  2637. "name": "jrglasgow",
  2638. "homepage": "https://www.drupal.org/user/36590"
  2639. },
  2640. {
  2641. "name": "kmasood",
  2642. "homepage": "https://www.drupal.org/user/1262860"
  2643. },
  2644. {
  2645. "name": "levelos",
  2646. "homepage": "https://www.drupal.org/user/54135"
  2647. },
  2648. {
  2649. "name": "prabeen.giri",
  2650. "homepage": "https://www.drupal.org/user/913078"
  2651. },
  2652. {
  2653. "name": "str8",
  2654. "homepage": "https://www.drupal.org/user/2865063"
  2655. }
  2656. ],
  2657. "description": "Adds automated timed logout.",
  2658. "homepage": "http://drupal.org/project/autologout",
  2659. "support": {
  2660. "source": "https://git.drupalcode.org/project/autologout"
  2661. }
  2662. },
  2663. {
  2664. "name": "drupal/better_exposed_filters",
  2665. "version": "5.0.0",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2669. "reference": "8.x-5.0"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0.zip",
  2674. "reference": "8.x-5.0",
  2675. "shasum": "ef575591af202b5c6867841ce58e1f447455e502"
  2676. },
  2677. "require": {
  2678. "drupal/core": "^8.8 || ^9",
  2679. "drupal/jquery_ui": "^1.4",
  2680. "drupal/jquery_ui_datepicker": "^1.0",
  2681. "drupal/jquery_ui_slider": "^1.1",
  2682. "drupal/jquery_ui_touch_punch": "^1.0"
  2683. },
  2684. "type": "drupal-module",
  2685. "extra": {
  2686. "drupal": {
  2687. "version": "8.x-5.0",
  2688. "datestamp": "1634748760",
  2689. "security-coverage": {
  2690. "status": "covered",
  2691. "message": "Covered by Drupal's security advisory policy"
  2692. }
  2693. }
  2694. },
  2695. "notification-url": "https://packages.drupal.org/8/downloads",
  2696. "license": [
  2697. "GPL-2.0-or-later"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Mike Keran",
  2702. "homepage": "https://www.drupal.org/u/mikeker"
  2703. },
  2704. {
  2705. "name": "Martin Keereman",
  2706. "homepage": "https://www.drupal.org/u/etroid"
  2707. },
  2708. {
  2709. "name": "Neslee Canil Pinto",
  2710. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2711. },
  2712. {
  2713. "name": "jkopel",
  2714. "homepage": "https://www.drupal.org/user/66207"
  2715. },
  2716. {
  2717. "name": "mikeker",
  2718. "homepage": "https://www.drupal.org/user/192273"
  2719. },
  2720. {
  2721. "name": "rlhawk",
  2722. "homepage": "https://www.drupal.org/user/352283"
  2723. }
  2724. ],
  2725. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2726. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2727. "support": {
  2728. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2729. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2730. }
  2731. },
  2732. {
  2733. "name": "drupal/betterlogin",
  2734. "version": "1.5.0",
  2735. "source": {
  2736. "type": "git",
  2737. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2738. "reference": "8.x-1.5"
  2739. },
  2740. "dist": {
  2741. "type": "zip",
  2742. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2743. "reference": "8.x-1.5",
  2744. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2745. },
  2746. "require": {
  2747. "drupal/core": "^8 || ^9"
  2748. },
  2749. "type": "drupal-module",
  2750. "extra": {
  2751. "drupal": {
  2752. "version": "8.x-1.5",
  2753. "datestamp": "1588242718",
  2754. "security-coverage": {
  2755. "status": "covered",
  2756. "message": "Covered by Drupal's security advisory policy"
  2757. }
  2758. }
  2759. },
  2760. "notification-url": "https://packages.drupal.org/8/downloads",
  2761. "license": [
  2762. "GPL-2.0-or-later"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "theamoeba",
  2767. "homepage": "https://www.drupal.org/user/251700"
  2768. },
  2769. {
  2770. "name": "yogeshmpawar",
  2771. "homepage": "https://www.drupal.org/user/2922907"
  2772. }
  2773. ],
  2774. "description": "Make the login screens better :)",
  2775. "homepage": "https://www.drupal.org/project/betterlogin",
  2776. "support": {
  2777. "source": "https://git.drupalcode.org/project/betterlogin"
  2778. }
  2779. },
  2780. {
  2781. "name": "drupal/block_class",
  2782. "version": "1.3.0",
  2783. "source": {
  2784. "type": "git",
  2785. "url": "https://git.drupalcode.org/project/block_class.git",
  2786. "reference": "8.x-1.3"
  2787. },
  2788. "dist": {
  2789. "type": "zip",
  2790. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2791. "reference": "8.x-1.3",
  2792. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2793. },
  2794. "require": {
  2795. "drupal/core": "^8 || ^9"
  2796. },
  2797. "type": "drupal-module",
  2798. "extra": {
  2799. "drupal": {
  2800. "version": "8.x-1.3",
  2801. "datestamp": "1604426178",
  2802. "security-coverage": {
  2803. "status": "covered",
  2804. "message": "Covered by Drupal's security advisory policy"
  2805. }
  2806. }
  2807. },
  2808. "notification-url": "https://packages.drupal.org/8/downloads",
  2809. "license": [
  2810. "GPL-2.0-or-later"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "Todd Nienkerk",
  2815. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2816. "role": "Maintainer"
  2817. },
  2818. {
  2819. "name": "Renato Gonçalves (RenatoG)",
  2820. "homepage": "https://www.drupal.org/u/RenatoG",
  2821. "email": "renatog@ciandt.com",
  2822. "role": "Maintainer"
  2823. },
  2824. {
  2825. "name": "Neslee Canil Pinto",
  2826. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2827. "role": "Maintainer"
  2828. },
  2829. {
  2830. "name": "Aaron Stanush",
  2831. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2832. "role": "Maintainer"
  2833. },
  2834. {
  2835. "name": "David Suissa (DYdave)",
  2836. "homepage": "https://www.drupal.org/u/DYdave",
  2837. "role": "Maintainer"
  2838. },
  2839. {
  2840. "name": "Four Kitchens",
  2841. "homepage": "https://www.drupal.org/user/358502",
  2842. "role": "Maintainer"
  2843. },
  2844. {
  2845. "name": "berenddeboer",
  2846. "homepage": "https://www.drupal.org/u/berenddeboer",
  2847. "role": "Maintainer"
  2848. },
  2849. {
  2850. "name": "elliotttf",
  2851. "homepage": "https://www.drupal.org/u/elliotttf",
  2852. "role": "Maintainer"
  2853. },
  2854. {
  2855. "name": "Michal Minecki (mirzu)",
  2856. "homepage": "https://www.drupal.org/u/mirzu",
  2857. "role": "Maintainer"
  2858. },
  2859. {
  2860. "name": "Patrick Coffey (pcoffey)",
  2861. "homepage": "https://www.drupal.org/u/pcoffey",
  2862. "role": "Maintainer"
  2863. },
  2864. {
  2865. "name": "Taylor Smith (tsmith512)",
  2866. "homepage": "https://www.drupal.org/u/tsmith512",
  2867. "role": "Maintainer"
  2868. }
  2869. ],
  2870. "description": "Allows assigning classes to Blocks.",
  2871. "homepage": "https://www.drupal.org/project/block_class",
  2872. "keywords": [
  2873. "Drupal"
  2874. ],
  2875. "support": {
  2876. "source": "https://git.drupalcode.org/project/block_class",
  2877. "issues": "https://www.drupal.org/project/issues/block_class",
  2878. "irc": "irc://irc.freenode.org/drupal-contribute"
  2879. }
  2880. },
  2881. {
  2882. "name": "drupal/bulkdelete",
  2883. "version": "dev-1.x",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2887. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2888. },
  2889. "require": {
  2890. "drupal/core": "^8.7.7 || ^9"
  2891. },
  2892. "type": "drupal-module",
  2893. "extra": {
  2894. "branch-alias": {
  2895. "dev-1.x": "1.x-dev"
  2896. },
  2897. "drupal": {
  2898. "version": "8.x-1.x-dev",
  2899. "datestamp": "1590300128",
  2900. "security-coverage": {
  2901. "status": "not-covered",
  2902. "message": "Dev releases are not covered by Drupal security advisories."
  2903. }
  2904. }
  2905. },
  2906. "notification-url": "https://packages.drupal.org/8/downloads",
  2907. "license": [
  2908. "GPL-2.0-or-later"
  2909. ],
  2910. "authors": [
  2911. {
  2912. "name": "Kars-T",
  2913. "homepage": "https://www.drupal.org/user/224499"
  2914. },
  2915. {
  2916. "name": "Rahul Seth",
  2917. "homepage": "https://www.drupal.org/user/2694359"
  2918. },
  2919. {
  2920. "name": "adriancid",
  2921. "homepage": "https://www.drupal.org/user/1962106"
  2922. },
  2923. {
  2924. "name": "robertDouglass",
  2925. "homepage": "https://www.drupal.org/user/5449"
  2926. }
  2927. ],
  2928. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2929. "homepage": "https://www.drupal.org/project/bulkdelete",
  2930. "support": {
  2931. "source": "https://git.drupalcode.org/project/bulkdelete"
  2932. },
  2933. "time": "2020-05-24T06:01:38+00:00"
  2934. },
  2935. {
  2936. "name": "drupal/cer",
  2937. "version": "4.0.0-alpha3",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://git.drupalcode.org/project/cer.git",
  2941. "reference": "8.x-4.0-alpha3"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://ftp.drupal.org/files/projects/cer-8.x-4.0-alpha3.zip",
  2946. "reference": "8.x-4.0-alpha3",
  2947. "shasum": "3c508e842a2c17235e4c9909ab64ef1aeb9d3ebe"
  2948. },
  2949. "require": {
  2950. "drupal/core": "^8 || ^9"
  2951. },
  2952. "type": "drupal-module",
  2953. "extra": {
  2954. "drupal": {
  2955. "version": "8.x-4.0-alpha3",
  2956. "datestamp": "1620240213",
  2957. "security-coverage": {
  2958. "status": "not-covered",
  2959. "message": "Project has not opted into security advisory coverage!"
  2960. }
  2961. }
  2962. },
  2963. "notification-url": "https://packages.drupal.org/8/downloads",
  2964. "license": [
  2965. "GPL-2.0-or-later"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "bmcclure",
  2970. "homepage": "https://www.drupal.org/user/278485"
  2971. },
  2972. {
  2973. "name": "chertzog",
  2974. "homepage": "https://www.drupal.org/user/806366"
  2975. },
  2976. {
  2977. "name": "gcb",
  2978. "homepage": "https://www.drupal.org/user/1682976"
  2979. },
  2980. {
  2981. "name": "gregcube",
  2982. "homepage": "https://www.drupal.org/user/336930"
  2983. },
  2984. {
  2985. "name": "jrglasgow",
  2986. "homepage": "https://www.drupal.org/user/36590"
  2987. },
  2988. {
  2989. "name": "phenaproxima",
  2990. "homepage": "https://www.drupal.org/user/205645"
  2991. }
  2992. ],
  2993. "description": "Allows user to create two-way references between entities.",
  2994. "homepage": "https://www.drupal.org/project/cer",
  2995. "support": {
  2996. "source": "https://git.drupalcode.org/project/cer"
  2997. }
  2998. },
  2999. {
  3000. "name": "drupal/config_devel",
  3001. "version": "dev-1.x",
  3002. "source": {
  3003. "type": "git",
  3004. "url": "https://git.drupalcode.org/project/config_devel.git",
  3005. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  3006. },
  3007. "require": {
  3008. "drupal/core": "^8 || ^9"
  3009. },
  3010. "type": "drupal-module",
  3011. "extra": {
  3012. "branch-alias": {
  3013. "dev-1.x": "1.x-dev"
  3014. },
  3015. "drupal": {
  3016. "version": "8.x-1.7+3-dev",
  3017. "datestamp": "1607535421",
  3018. "security-coverage": {
  3019. "status": "not-covered",
  3020. "message": "Dev releases are not covered by Drupal security advisories."
  3021. }
  3022. }
  3023. },
  3024. "notification-url": "https://packages.drupal.org/8/downloads",
  3025. "license": [
  3026. "GPL-2.0+"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "alexpott",
  3031. "homepage": "https://www.drupal.org/user/157725"
  3032. },
  3033. {
  3034. "name": "benjy",
  3035. "homepage": "https://www.drupal.org/user/1852732"
  3036. },
  3037. {
  3038. "name": "chx",
  3039. "homepage": "https://www.drupal.org/user/9446"
  3040. },
  3041. {
  3042. "name": "joachim",
  3043. "homepage": "https://www.drupal.org/user/107701"
  3044. },
  3045. {
  3046. "name": "nedjo",
  3047. "homepage": "https://www.drupal.org/user/4481"
  3048. },
  3049. {
  3050. "name": "tim.plunkett",
  3051. "homepage": "https://www.drupal.org/user/241634"
  3052. },
  3053. {
  3054. "name": "vijaycs85",
  3055. "homepage": "https://www.drupal.org/user/93488"
  3056. }
  3057. ],
  3058. "description": "Helps developers work with configuration.",
  3059. "homepage": "https://www.drupal.org/project/config_devel",
  3060. "support": {
  3061. "source": "https://git.drupalcode.org/project/config_devel"
  3062. },
  3063. "time": "2020-12-11T15:36:08+00:00"
  3064. },
  3065. {
  3066. "name": "drupal/config_filter",
  3067. "version": "1.8.0",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://git.drupalcode.org/project/config_filter.git",
  3071. "reference": "8.x-1.8"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  3076. "reference": "8.x-1.8",
  3077. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  3078. },
  3079. "require": {
  3080. "drupal/core": "^8 || ^9"
  3081. },
  3082. "suggest": {
  3083. "drupal/config_split": "Split site configuration for different environments."
  3084. },
  3085. "type": "drupal-module",
  3086. "extra": {
  3087. "drupal": {
  3088. "version": "8.x-1.8",
  3089. "datestamp": "1603870062",
  3090. "security-coverage": {
  3091. "status": "covered",
  3092. "message": "Covered by Drupal's security advisory policy"
  3093. }
  3094. }
  3095. },
  3096. "notification-url": "https://packages.drupal.org/8/downloads",
  3097. "license": [
  3098. "GPL-2.0-or-later"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "Fabian Bircher",
  3103. "homepage": "https://www.drupal.org/u/bircher",
  3104. "email": "opensource@fabianbircher.com",
  3105. "role": "Maintainer"
  3106. },
  3107. {
  3108. "name": "Nuvole Web",
  3109. "homepage": "http://nuvole.org",
  3110. "email": "info@nuvole.org",
  3111. "role": "Maintainer"
  3112. },
  3113. {
  3114. "name": "pescetti",
  3115. "homepage": "https://www.drupal.org/user/436244"
  3116. }
  3117. ],
  3118. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3119. "homepage": "https://www.drupal.org/project/config_filter",
  3120. "keywords": [
  3121. "Drupal",
  3122. "configuration",
  3123. "configuration management"
  3124. ],
  3125. "support": {
  3126. "source": "https://git.drupalcode.org/project/config_filter",
  3127. "issues": "https://www.drupal.org/project/issues/config_filter",
  3128. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3129. }
  3130. },
  3131. {
  3132. "name": "drupal/config_ignore",
  3133. "version": "2.3.0",
  3134. "source": {
  3135. "type": "git",
  3136. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3137. "reference": "8.x-2.3"
  3138. },
  3139. "dist": {
  3140. "type": "zip",
  3141. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  3142. "reference": "8.x-2.3",
  3143. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  3144. },
  3145. "require": {
  3146. "drupal/config_filter": "^1 || ^2",
  3147. "drupal/core": "^8 || ^9"
  3148. },
  3149. "type": "drupal-module",
  3150. "extra": {
  3151. "drupal": {
  3152. "version": "8.x-2.3",
  3153. "datestamp": "1608306489",
  3154. "security-coverage": {
  3155. "status": "covered",
  3156. "message": "Covered by Drupal's security advisory policy"
  3157. }
  3158. }
  3159. },
  3160. "notification-url": "https://packages.drupal.org/8/downloads",
  3161. "license": [
  3162. "GPL-2.0-or-later"
  3163. ],
  3164. "authors": [
  3165. {
  3166. "name": "Tommy Lynge Jørgensen",
  3167. "homepage": "https://www.drupal.org/u/tlyngej",
  3168. "email": "tlyngej@gmail.com",
  3169. "role": "Maintainer"
  3170. },
  3171. {
  3172. "name": "Fabian Bircher",
  3173. "homepage": "https://www.drupal.org/u/bircher",
  3174. "role": "Maintainer"
  3175. },
  3176. {
  3177. "name": "tlyngej",
  3178. "homepage": "https://www.drupal.org/user/413139"
  3179. }
  3180. ],
  3181. "description": "Ignore certain configuration during import.",
  3182. "homepage": "http://drupal.org/project/config_ignore",
  3183. "support": {
  3184. "source": "https://git.drupalcode.org/project/config_ignore",
  3185. "issues": "http://drupal.org/project/config_ignore",
  3186. "irc": "irc://irc.freenode.org/drupal-contribute"
  3187. }
  3188. },
  3189. {
  3190. "name": "drupal/config_update",
  3191. "version": "1.7.0",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://git.drupalcode.org/project/config_update.git",
  3195. "reference": "8.x-1.7"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3200. "reference": "8.x-1.7",
  3201. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3202. },
  3203. "require": {
  3204. "drupal/core": "^8 || ^9"
  3205. },
  3206. "type": "drupal-module",
  3207. "extra": {
  3208. "drupal": {
  3209. "version": "8.x-1.7",
  3210. "datestamp": "1586355587",
  3211. "security-coverage": {
  3212. "status": "covered",
  3213. "message": "Covered by Drupal's security advisory policy"
  3214. }
  3215. }
  3216. },
  3217. "notification-url": "https://packages.drupal.org/8/downloads",
  3218. "license": [
  3219. "GPL-2.0-or-later"
  3220. ],
  3221. "authors": [
  3222. {
  3223. "name": "jhodgdon",
  3224. "homepage": "https://www.drupal.org/user/155601"
  3225. },
  3226. {
  3227. "name": "nedjo",
  3228. "homepage": "https://www.drupal.org/user/4481"
  3229. }
  3230. ],
  3231. "description": "Provides basic revert and update functionality for other modules",
  3232. "homepage": "https://www.drupal.org/project/config_update",
  3233. "support": {
  3234. "source": "https://git.drupalcode.org/project/config_update"
  3235. }
  3236. },
  3237. {
  3238. "name": "drupal/console",
  3239. "version": "1.9.8",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3243. "reference": "d292c940c07d164e32bbe9525e909311ca65e8cb"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/d292c940c07d164e32bbe9525e909311ca65e8cb",
  3248. "reference": "d292c940c07d164e32bbe9525e909311ca65e8cb",
  3249. "shasum": ""
  3250. },
  3251. "require": {
  3252. "alchemy/zippy": "~0.4",
  3253. "composer/installers": "~1.0",
  3254. "doctrine/annotations": "^1.2",
  3255. "doctrine/collections": "^1.3",
  3256. "drupal/console-core": "1.9.7",
  3257. "drupal/console-extend-plugin": "~0.9.5",
  3258. "php": ">=7.0.8",
  3259. "psy/psysh": "0.6.* || ~0.8",
  3260. "symfony/css-selector": "~3.0|~4.0",
  3261. "symfony/dom-crawler": "~3.0|~4.0",
  3262. "symfony/http-foundation": "~3.0|~4.0"
  3263. },
  3264. "suggest": {
  3265. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3266. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3267. },
  3268. "bin": [
  3269. "bin/drupal"
  3270. ],
  3271. "type": "library",
  3272. "autoload": {
  3273. "psr-4": {
  3274. "Drupal\\Console\\": "src"
  3275. }
  3276. },
  3277. "notification-url": "https://packagist.org/downloads/",
  3278. "license": [
  3279. "GPL-2.0-or-later"
  3280. ],
  3281. "authors": [
  3282. {
  3283. "name": "David Flores",
  3284. "email": "dmousex@gmail.com",
  3285. "homepage": "http://dmouse.net"
  3286. },
  3287. {
  3288. "name": "Jesus Manuel Olivas",
  3289. "email": "jesus.olivas@gmail.com",
  3290. "homepage": "http://jmolivas.com"
  3291. },
  3292. {
  3293. "name": "Eduardo Garcia",
  3294. "email": "enzo@enzolutions.com",
  3295. "homepage": "http://enzolutions.com/"
  3296. },
  3297. {
  3298. "name": "Omar Aguirre",
  3299. "email": "omersguchigu@gmail.com"
  3300. },
  3301. {
  3302. "name": "Drupal Console Contributors",
  3303. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3304. }
  3305. ],
  3306. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3307. "homepage": "http://drupalconsole.com/",
  3308. "keywords": [
  3309. "console",
  3310. "development",
  3311. "drupal",
  3312. "symfony"
  3313. ],
  3314. "support": {
  3315. "docs": "https://docs.drupalconsole.com/",
  3316. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3317. "issues": "https://github.com/hechoendrupal/drupal-console/issues",
  3318. "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.8"
  3319. },
  3320. "funding": [
  3321. {
  3322. "url": "https://opencollective.com/drupalconsole",
  3323. "type": "open_collective"
  3324. }
  3325. ],
  3326. "time": "2021-11-29T17:09:44+00:00"
  3327. },
  3328. {
  3329. "name": "drupal/console-core",
  3330. "version": "1.9.7",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3334. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3339. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3340. "shasum": ""
  3341. },
  3342. "require": {
  3343. "dflydev/dot-access-configuration": "^1.0",
  3344. "drupal/console-en": "1.9.7",
  3345. "guzzlehttp/guzzle": "~6.1",
  3346. "php": ">=7.0.8",
  3347. "stecman/symfony-console-completion": "~0.7",
  3348. "symfony/config": "~3.0|^4.4",
  3349. "symfony/console": "~3.0|^4.4",
  3350. "symfony/debug": "~3.0|^4.4",
  3351. "symfony/dependency-injection": "~3.0|^4.4",
  3352. "symfony/event-dispatcher": "~3.0|^4.4",
  3353. "symfony/filesystem": "~3.0|^4.4",
  3354. "symfony/finder": "~3.0|^4.4",
  3355. "symfony/process": "~3.0|^4.4",
  3356. "symfony/translation": "~3.0|^4.4",
  3357. "symfony/yaml": "~3.0|^4.4",
  3358. "twig/twig": "^1.38.2|^2.12.0",
  3359. "webflo/drupal-finder": "^1.0",
  3360. "webmozart/path-util": "^2.3"
  3361. },
  3362. "type": "library",
  3363. "autoload": {
  3364. "files": [
  3365. "src/functions.php"
  3366. ],
  3367. "psr-4": {
  3368. "Drupal\\Console\\Core\\": "src"
  3369. }
  3370. },
  3371. "notification-url": "https://packagist.org/downloads/",
  3372. "license": [
  3373. "GPL-2.0-or-later"
  3374. ],
  3375. "authors": [
  3376. {
  3377. "name": "David Flores",
  3378. "email": "dmousex@gmail.com",
  3379. "homepage": "http://dmouse.net"
  3380. },
  3381. {
  3382. "name": "Jesus Manuel Olivas",
  3383. "email": "jesus.olivas@gmail.com",
  3384. "homepage": "http://jmolivas.com"
  3385. },
  3386. {
  3387. "name": "Eduardo Garcia",
  3388. "email": "enzo@enzolutions.com",
  3389. "homepage": "http://enzolutions.com/"
  3390. },
  3391. {
  3392. "name": "Omar Aguirre",
  3393. "email": "omersguchigu@gmail.com"
  3394. },
  3395. {
  3396. "name": "Drupal Console Contributors",
  3397. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3398. }
  3399. ],
  3400. "description": "Drupal Console Core",
  3401. "homepage": "http://drupalconsole.com/",
  3402. "keywords": [
  3403. "console",
  3404. "development",
  3405. "drupal",
  3406. "symfony"
  3407. ],
  3408. "support": {
  3409. "docs": "http://docs.drupalconsole.com/",
  3410. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3411. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3412. "source": "https://github.com/hechoendrupal/drupal-console-core/tree/1.9.7"
  3413. },
  3414. "time": "2020-11-30T01:45:57+00:00"
  3415. },
  3416. {
  3417. "name": "drupal/console-en",
  3418. "version": "v1.9.7",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3422. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3427. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3428. "shasum": ""
  3429. },
  3430. "type": "library",
  3431. "notification-url": "https://packagist.org/downloads/",
  3432. "license": [
  3433. "GPL-2.0-or-later"
  3434. ],
  3435. "authors": [
  3436. {
  3437. "name": "David Flores",
  3438. "email": "dmousex@gmail.com",
  3439. "homepage": "http://dmouse.net"
  3440. },
  3441. {
  3442. "name": "Jesus Manuel Olivas",
  3443. "email": "jesus.olivas@gmail.com",
  3444. "homepage": "http://jmolivas.com"
  3445. },
  3446. {
  3447. "name": "Eduardo Garcia",
  3448. "email": "enzo@enzolutions.com",
  3449. "homepage": "http://enzolutions.com/"
  3450. },
  3451. {
  3452. "name": "Omar Aguirre",
  3453. "email": "omersguchigu@gmail.com"
  3454. },
  3455. {
  3456. "name": "Drupal Console Contributors",
  3457. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3458. }
  3459. ],
  3460. "description": "Drupal Console English Language",
  3461. "homepage": "http://drupalconsole.com/",
  3462. "keywords": [
  3463. "console",
  3464. "development",
  3465. "drupal",
  3466. "symfony"
  3467. ],
  3468. "support": {
  3469. "docs": "https://docs.drupalconsole.com",
  3470. "forum": "https://gitter.im/hechoendrupal/DrupalConsole",
  3471. "issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
  3472. "source": "https://github.com/hechoendrupal/drupal-console-en/tree/master"
  3473. },
  3474. "time": "2020-08-15T03:34:54+00:00"
  3475. },
  3476. {
  3477. "name": "drupal/console-extend-plugin",
  3478. "version": "0.9.5",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3482. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3487. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3488. "shasum": ""
  3489. },
  3490. "require": {
  3491. "composer-plugin-api": "^1.0 || ^2.0",
  3492. "composer/installers": "^1.2",
  3493. "symfony/finder": "~3.0|^4.4",
  3494. "symfony/yaml": "~3.0|^4.4"
  3495. },
  3496. "type": "composer-plugin",
  3497. "extra": {
  3498. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3499. },
  3500. "autoload": {
  3501. "psr-4": {
  3502. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3503. }
  3504. },
  3505. "notification-url": "https://packagist.org/downloads/",
  3506. "license": [
  3507. "GPL-2.0+"
  3508. ],
  3509. "authors": [
  3510. {
  3511. "name": "Jesus Manuel Olivas",
  3512. "email": "jesus.olivas@gmail.com"
  3513. }
  3514. ],
  3515. "description": "Drupal Console Extend Plugin",
  3516. "support": {
  3517. "issues": "https://github.com/hechoendrupal/drupal-console-extend-plugin/issues",
  3518. "source": "https://github.com/hechoendrupal/drupal-console-extend-plugin/tree/0.9.5"
  3519. },
  3520. "time": "2020-11-18T00:15:28+00:00"
  3521. },
  3522. {
  3523. "name": "drupal/content_lock",
  3524. "version": "2.2.0",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://git.drupalcode.org/project/content_lock.git",
  3528. "reference": "8.x-2.2"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3533. "reference": "8.x-2.2",
  3534. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3535. },
  3536. "require": {
  3537. "drupal/core": "^8.8|^9.0"
  3538. },
  3539. "require-dev": {
  3540. "drupal/conflict": "^2.0@ALPHA",
  3541. "drupal/prefetch_cache": "dev-1.x"
  3542. },
  3543. "type": "drupal-module",
  3544. "extra": {
  3545. "drupal": {
  3546. "version": "8.x-2.2",
  3547. "datestamp": "1607936866",
  3548. "security-coverage": {
  3549. "status": "covered",
  3550. "message": "Covered by Drupal's security advisory policy"
  3551. }
  3552. }
  3553. },
  3554. "notification-url": "https://packages.drupal.org/8/downloads",
  3555. "license": [
  3556. "GPL-2.0-or-later"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "chr.fritsch",
  3561. "homepage": "https://www.drupal.org/user/2103716"
  3562. },
  3563. {
  3564. "name": "ergonlogic",
  3565. "homepage": "https://www.drupal.org/user/368613"
  3566. },
  3567. {
  3568. "name": "mfb",
  3569. "homepage": "https://www.drupal.org/user/12302"
  3570. },
  3571. {
  3572. "name": "pandaski",
  3573. "homepage": "https://www.drupal.org/user/1987218"
  3574. }
  3575. ],
  3576. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3577. "homepage": "https://www.drupal.org/project/content_lock",
  3578. "support": {
  3579. "source": "https://git.drupalcode.org/project/content_lock"
  3580. }
  3581. },
  3582. {
  3583. "name": "drupal/context",
  3584. "version": "4.0.0-beta6",
  3585. "source": {
  3586. "type": "git",
  3587. "url": "https://git.drupalcode.org/project/context.git",
  3588. "reference": "8.x-4.0-beta6"
  3589. },
  3590. "dist": {
  3591. "type": "zip",
  3592. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta6.zip",
  3593. "reference": "8.x-4.0-beta6",
  3594. "shasum": "c377c12d8c23e8f39151f2da1d85d58b294033df"
  3595. },
  3596. "require": {
  3597. "drupal/core": "^8.8 || ^9"
  3598. },
  3599. "type": "drupal-module",
  3600. "extra": {
  3601. "drupal": {
  3602. "version": "8.x-4.0-beta6",
  3603. "datestamp": "1619440410",
  3604. "security-coverage": {
  3605. "status": "not-covered",
  3606. "message": "Beta releases are not covered by Drupal security advisories."
  3607. }
  3608. }
  3609. },
  3610. "notification-url": "https://packages.drupal.org/8/downloads",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Christoffer Palm",
  3617. "homepage": "http://www.oddhill.se/",
  3618. "email": "christoffer.palm@oddhill.se",
  3619. "role": "Developer"
  3620. },
  3621. {
  3622. "name": "Steven Jones",
  3623. "homepage": "https://www.drupal.org/user/99644"
  3624. },
  3625. {
  3626. "name": "alex_b",
  3627. "homepage": "https://www.drupal.org/user/53995"
  3628. },
  3629. {
  3630. "name": "boshtian",
  3631. "homepage": "https://www.drupal.org/user/1773456"
  3632. },
  3633. {
  3634. "name": "colan",
  3635. "homepage": "https://www.drupal.org/user/58704"
  3636. },
  3637. {
  3638. "name": "emanaton",
  3639. "homepage": "https://www.drupal.org/user/120853"
  3640. },
  3641. {
  3642. "name": "febbraro",
  3643. "homepage": "https://www.drupal.org/user/43670"
  3644. },
  3645. {
  3646. "name": "fizk",
  3647. "homepage": "https://www.drupal.org/user/473174"
  3648. },
  3649. {
  3650. "name": "hass",
  3651. "homepage": "https://www.drupal.org/user/85918"
  3652. },
  3653. {
  3654. "name": "hefox",
  3655. "homepage": "https://www.drupal.org/user/426416"
  3656. },
  3657. {
  3658. "name": "jmiccolis",
  3659. "homepage": "https://www.drupal.org/user/31731"
  3660. },
  3661. {
  3662. "name": "nedjo",
  3663. "homepage": "https://www.drupal.org/user/4481"
  3664. },
  3665. {
  3666. "name": "patricksettle",
  3667. "homepage": "https://www.drupal.org/user/26618"
  3668. },
  3669. {
  3670. "name": "paulocs",
  3671. "homepage": "https://www.drupal.org/user/3640109"
  3672. },
  3673. {
  3674. "name": "tekante",
  3675. "homepage": "https://www.drupal.org/user/640024"
  3676. },
  3677. {
  3678. "name": "yhahn",
  3679. "homepage": "https://www.drupal.org/user/264833"
  3680. }
  3681. ],
  3682. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3683. "homepage": "https://github.com/oddhill/context",
  3684. "keywords": [
  3685. "Drupal",
  3686. "block",
  3687. "conditions",
  3688. "context",
  3689. "visibility"
  3690. ],
  3691. "support": {
  3692. "source": "https://github.com/oddhill/context",
  3693. "issues": "https://github.com/oddhill/context/issues",
  3694. "docs": "https://github.com/oddhill/context"
  3695. }
  3696. },
  3697. {
  3698. "name": "drupal/core",
  3699. "version": "9.3.5",
  3700. "source": {
  3701. "type": "git",
  3702. "url": "https://github.com/drupal/core.git",
  3703. "reference": "089417f9f1d557f9323c190c8de139eba613e465"
  3704. },
  3705. "dist": {
  3706. "type": "zip",
  3707. "url": "https://api.github.com/repos/drupal/core/zipball/089417f9f1d557f9323c190c8de139eba613e465",
  3708. "reference": "089417f9f1d557f9323c190c8de139eba613e465",
  3709. "shasum": ""
  3710. },
  3711. "require": {
  3712. "asm89/stack-cors": "^1.1",
  3713. "composer/semver": "^3.0",
  3714. "doctrine/annotations": "^1.12",
  3715. "doctrine/reflection": "^1.1",
  3716. "egulias/email-validator": "^2.1.22|^3.0",
  3717. "ext-date": "*",
  3718. "ext-dom": "*",
  3719. "ext-filter": "*",
  3720. "ext-gd": "*",
  3721. "ext-hash": "*",
  3722. "ext-json": "*",
  3723. "ext-pcre": "*",
  3724. "ext-pdo": "*",
  3725. "ext-session": "*",
  3726. "ext-simplexml": "*",
  3727. "ext-spl": "*",
  3728. "ext-tokenizer": "*",
  3729. "ext-xml": "*",
  3730. "guzzlehttp/guzzle": "^6.5.2",
  3731. "laminas/laminas-diactoros": "^2.1",
  3732. "laminas/laminas-feed": "^2.12",
  3733. "masterminds/html5": "^2.1",
  3734. "pear/archive_tar": "^1.4.14",
  3735. "php": ">=7.3.0",
  3736. "psr/log": "^1.0",
  3737. "stack/builder": "^1.0",
  3738. "symfony-cmf/routing": "^2.1",
  3739. "symfony/console": "^4.4",
  3740. "symfony/dependency-injection": "^4.4",
  3741. "symfony/event-dispatcher": "^4.4",
  3742. "symfony/http-foundation": "^4.4.7",
  3743. "symfony/http-kernel": "^4.4",
  3744. "symfony/mime": "^5.4",
  3745. "symfony/polyfill-iconv": "^1.0",
  3746. "symfony/polyfill-php80": "^1.16",
  3747. "symfony/process": "^4.4",
  3748. "symfony/psr-http-message-bridge": "^2.0",
  3749. "symfony/routing": "^4.4",
  3750. "symfony/serializer": "^4.4",
  3751. "symfony/translation": "^4.4",
  3752. "symfony/validator": "^4.4",
  3753. "symfony/yaml": "^4.4.19",
  3754. "twig/twig": "^2.12.0",
  3755. "typo3/phar-stream-wrapper": "^3.1.3"
  3756. },
  3757. "conflict": {
  3758. "drush/drush": "<8.1.10"
  3759. },
  3760. "replace": {
  3761. "drupal/action": "self.version",
  3762. "drupal/aggregator": "self.version",
  3763. "drupal/automated_cron": "self.version",
  3764. "drupal/ban": "self.version",
  3765. "drupal/bartik": "self.version",
  3766. "drupal/basic_auth": "self.version",
  3767. "drupal/big_pipe": "self.version",
  3768. "drupal/block": "self.version",
  3769. "drupal/block_content": "self.version",
  3770. "drupal/book": "self.version",
  3771. "drupal/breakpoint": "self.version",
  3772. "drupal/ckeditor": "self.version",
  3773. "drupal/ckeditor5": "self.version",
  3774. "drupal/claro": "self.version",
  3775. "drupal/classy": "self.version",
  3776. "drupal/color": "self.version",
  3777. "drupal/comment": "self.version",
  3778. "drupal/config": "self.version",
  3779. "drupal/config_translation": "self.version",
  3780. "drupal/contact": "self.version",
  3781. "drupal/content_moderation": "self.version",
  3782. "drupal/content_translation": "self.version",
  3783. "drupal/contextual": "self.version",
  3784. "drupal/core-annotation": "self.version",
  3785. "drupal/core-assertion": "self.version",
  3786. "drupal/core-bridge": "self.version",
  3787. "drupal/core-class-finder": "self.version",
  3788. "drupal/core-datetime": "self.version",
  3789. "drupal/core-dependency-injection": "self.version",
  3790. "drupal/core-diff": "self.version",
  3791. "drupal/core-discovery": "self.version",
  3792. "drupal/core-event-dispatcher": "self.version",
  3793. "drupal/core-file-cache": "self.version",
  3794. "drupal/core-file-security": "self.version",
  3795. "drupal/core-filesystem": "self.version",
  3796. "drupal/core-front-matter": "self.version",
  3797. "drupal/core-gettext": "self.version",
  3798. "drupal/core-graph": "self.version",
  3799. "drupal/core-http-foundation": "self.version",
  3800. "drupal/core-php-storage": "self.version",
  3801. "drupal/core-plugin": "self.version",
  3802. "drupal/core-proxy-builder": "self.version",
  3803. "drupal/core-render": "self.version",
  3804. "drupal/core-serialization": "self.version",
  3805. "drupal/core-transliteration": "self.version",
  3806. "drupal/core-utility": "self.version",
  3807. "drupal/core-uuid": "self.version",
  3808. "drupal/core-version": "self.version",
  3809. "drupal/datetime": "self.version",
  3810. "drupal/datetime_range": "self.version",
  3811. "drupal/dblog": "self.version",
  3812. "drupal/dynamic_page_cache": "self.version",
  3813. "drupal/editor": "self.version",
  3814. "drupal/entity_reference": "self.version",
  3815. "drupal/field": "self.version",
  3816. "drupal/field_layout": "self.version",
  3817. "drupal/field_ui": "self.version",
  3818. "drupal/file": "self.version",
  3819. "drupal/filter": "self.version",
  3820. "drupal/forum": "self.version",
  3821. "drupal/hal": "self.version",
  3822. "drupal/help": "self.version",
  3823. "drupal/help_topics": "self.version",
  3824. "drupal/history": "self.version",
  3825. "drupal/image": "self.version",
  3826. "drupal/inline_form_errors": "self.version",
  3827. "drupal/jsonapi": "self.version",
  3828. "drupal/language": "self.version",
  3829. "drupal/layout_builder": "self.version",
  3830. "drupal/layout_discovery": "self.version",
  3831. "drupal/link": "self.version",
  3832. "drupal/locale": "self.version",
  3833. "drupal/media": "self.version",
  3834. "drupal/media_library": "self.version",
  3835. "drupal/menu_link_content": "self.version",
  3836. "drupal/menu_ui": "self.version",
  3837. "drupal/migrate": "self.version",
  3838. "drupal/migrate_drupal": "self.version",
  3839. "drupal/migrate_drupal_multilingual": "self.version",
  3840. "drupal/migrate_drupal_ui": "self.version",
  3841. "drupal/minimal": "self.version",
  3842. "drupal/node": "self.version",
  3843. "drupal/olivero": "self.version",
  3844. "drupal/options": "self.version",
  3845. "drupal/page_cache": "self.version",
  3846. "drupal/path": "self.version",
  3847. "drupal/path_alias": "self.version",
  3848. "drupal/quickedit": "self.version",
  3849. "drupal/rdf": "self.version",
  3850. "drupal/responsive_image": "self.version",
  3851. "drupal/rest": "self.version",
  3852. "drupal/search": "self.version",
  3853. "drupal/serialization": "self.version",
  3854. "drupal/settings_tray": "self.version",
  3855. "drupal/seven": "self.version",
  3856. "drupal/shortcut": "self.version",
  3857. "drupal/standard": "self.version",
  3858. "drupal/stark": "self.version",
  3859. "drupal/statistics": "self.version",
  3860. "drupal/syslog": "self.version",
  3861. "drupal/system": "self.version",
  3862. "drupal/taxonomy": "self.version",
  3863. "drupal/telephone": "self.version",
  3864. "drupal/text": "self.version",
  3865. "drupal/toolbar": "self.version",
  3866. "drupal/tour": "self.version",
  3867. "drupal/tracker": "self.version",
  3868. "drupal/update": "self.version",
  3869. "drupal/user": "self.version",
  3870. "drupal/views": "self.version",
  3871. "drupal/views_ui": "self.version",
  3872. "drupal/workflows": "self.version",
  3873. "drupal/workspaces": "self.version"
  3874. },
  3875. "type": "drupal-core",
  3876. "extra": {
  3877. "drupal-scaffold": {
  3878. "file-mapping": {
  3879. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3880. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3881. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3882. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3883. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3884. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3885. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3886. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3887. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3888. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3889. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3890. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3891. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3892. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3893. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3894. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3895. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3896. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3897. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3898. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3899. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3900. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3901. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3902. }
  3903. }
  3904. },
  3905. "autoload": {
  3906. "files": [
  3907. "includes/bootstrap.inc",
  3908. "includes/guzzle_php81_shim.php"
  3909. ],
  3910. "psr-4": {
  3911. "Drupal\\Core\\": "lib/Drupal/Core",
  3912. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  3913. "Drupal\\Component\\": "lib/Drupal/Component"
  3914. },
  3915. "classmap": [
  3916. "lib/Drupal.php",
  3917. "lib/Drupal/Component/DependencyInjection/Container.php",
  3918. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3919. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3920. "lib/Drupal/Component/Utility/Timer.php",
  3921. "lib/Drupal/Component/Utility/Unicode.php",
  3922. "lib/Drupal/Core/Cache/Cache.php",
  3923. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3924. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3925. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3926. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3927. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3928. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3929. "lib/Drupal/Core/Database/Connection.php",
  3930. "lib/Drupal/Core/Database/Database.php",
  3931. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3932. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3933. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3934. "lib/Drupal/Core/Database/Statement.php",
  3935. "lib/Drupal/Core/Database/StatementInterface.php",
  3936. "lib/Drupal/Core/DependencyInjection/Container.php",
  3937. "lib/Drupal/Core/DrupalKernel.php",
  3938. "lib/Drupal/Core/DrupalKernelInterface.php",
  3939. "lib/Drupal/Core/Http/InputBag.php",
  3940. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3941. "lib/Drupal/Core/Site/Settings.php"
  3942. ]
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "GPL-2.0-or-later"
  3947. ],
  3948. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3949. "support": {
  3950. "source": "https://github.com/drupal/core/tree/9.3.5"
  3951. },
  3952. "time": "2022-02-04T20:00:20+00:00"
  3953. },
  3954. {
  3955. "name": "drupal/core-composer-scaffold",
  3956. "version": "9.3.5",
  3957. "source": {
  3958. "type": "git",
  3959. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3960. "reference": "d3e0b1d707125c5de0f54315906e65654c3608da"
  3961. },
  3962. "dist": {
  3963. "type": "zip",
  3964. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/d3e0b1d707125c5de0f54315906e65654c3608da",
  3965. "reference": "d3e0b1d707125c5de0f54315906e65654c3608da",
  3966. "shasum": ""
  3967. },
  3968. "require": {
  3969. "composer-plugin-api": "^1 || ^2",
  3970. "php": ">=7.3.0"
  3971. },
  3972. "conflict": {
  3973. "drupal-composer/drupal-scaffold": "*"
  3974. },
  3975. "require-dev": {
  3976. "composer/composer": "^1.8@stable"
  3977. },
  3978. "type": "composer-plugin",
  3979. "extra": {
  3980. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3981. "branch-alias": {
  3982. "dev-master": "1.0.x-dev"
  3983. }
  3984. },
  3985. "autoload": {
  3986. "psr-4": {
  3987. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3988. }
  3989. },
  3990. "notification-url": "https://packagist.org/downloads/",
  3991. "license": [
  3992. "GPL-2.0-or-later"
  3993. ],
  3994. "description": "A flexible Composer project scaffold builder.",
  3995. "homepage": "https://www.drupal.org/project/drupal",
  3996. "keywords": [
  3997. "drupal"
  3998. ],
  3999. "support": {
  4000. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.3.5"
  4001. },
  4002. "time": "2021-11-19T09:52:23+00:00"
  4003. },
  4004. {
  4005. "name": "drupal/core-project-message",
  4006. "version": "9.1.4",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/drupal/core-project-message.git",
  4010. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  4015. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  4016. "shasum": ""
  4017. },
  4018. "require": {
  4019. "composer-plugin-api": "^1.1 || ^2",
  4020. "php": ">=7.3.0"
  4021. },
  4022. "type": "composer-plugin",
  4023. "extra": {
  4024. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  4025. },
  4026. "autoload": {
  4027. "psr-4": {
  4028. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  4029. }
  4030. },
  4031. "notification-url": "https://packagist.org/downloads/",
  4032. "license": [
  4033. "GPL-2.0-or-later"
  4034. ],
  4035. "description": "Adds a message after Composer installation.",
  4036. "homepage": "https://www.drupal.org/project/drupal",
  4037. "keywords": [
  4038. "drupal"
  4039. ],
  4040. "time": "2020-09-14T13:40:36+00:00"
  4041. },
  4042. {
  4043. "name": "drupal/core-recommended",
  4044. "version": "9.3.5",
  4045. "source": {
  4046. "type": "git",
  4047. "url": "https://github.com/drupal/core-recommended.git",
  4048. "reference": "2ff50e75ad0387f7a14131b0a151b73760c43c63"
  4049. },
  4050. "dist": {
  4051. "type": "zip",
  4052. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/2ff50e75ad0387f7a14131b0a151b73760c43c63",
  4053. "reference": "2ff50e75ad0387f7a14131b0a151b73760c43c63",
  4054. "shasum": ""
  4055. },
  4056. "require": {
  4057. "asm89/stack-cors": "1.3.0",
  4058. "composer/semver": "3.2.6",
  4059. "doctrine/annotations": "1.13.2",
  4060. "doctrine/lexer": "1.2.1",
  4061. "doctrine/reflection": "1.2.2",
  4062. "drupal/core": "9.3.5",
  4063. "egulias/email-validator": "3.1.2",
  4064. "guzzlehttp/guzzle": "6.5.5",
  4065. "guzzlehttp/promises": "1.5.1",
  4066. "guzzlehttp/psr7": "1.8.3",
  4067. "laminas/laminas-diactoros": "2.8.0",
  4068. "laminas/laminas-escaper": "2.9.0",
  4069. "laminas/laminas-feed": "2.15.0",
  4070. "laminas/laminas-stdlib": "3.6.1",
  4071. "masterminds/html5": "2.7.5",
  4072. "pear/archive_tar": "1.4.14",
  4073. "pear/console_getopt": "v1.4.3",
  4074. "pear/pear-core-minimal": "v1.10.11",
  4075. "pear/pear_exception": "v1.0.2",
  4076. "psr/cache": "1.0.1",
  4077. "psr/container": "1.1.1",
  4078. "psr/http-factory": "1.0.1",
  4079. "psr/http-message": "1.0.1",
  4080. "psr/log": "1.1.4",
  4081. "ralouphie/getallheaders": "3.0.3",
  4082. "stack/builder": "v1.0.6",
  4083. "symfony-cmf/routing": "2.3.4",
  4084. "symfony/console": "v4.4.34",
  4085. "symfony/debug": "v4.4.31",
  4086. "symfony/dependency-injection": "v4.4.34",
  4087. "symfony/deprecation-contracts": "v2.5.0",
  4088. "symfony/error-handler": "v4.4.34",
  4089. "symfony/event-dispatcher": "v4.4.34",
  4090. "symfony/event-dispatcher-contracts": "v1.1.11",
  4091. "symfony/http-client-contracts": "v2.5.0",
  4092. "symfony/http-foundation": "v4.4.34",
  4093. "symfony/http-kernel": "v4.4.35",
  4094. "symfony/mime": "v5.4.0",
  4095. "symfony/polyfill-ctype": "v1.23.0",
  4096. "symfony/polyfill-iconv": "v1.23.0",
  4097. "symfony/polyfill-intl-idn": "v1.23.0",
  4098. "symfony/polyfill-intl-normalizer": "v1.23.0",
  4099. "symfony/polyfill-mbstring": "v1.23.1",
  4100. "symfony/polyfill-php80": "v1.23.1",
  4101. "symfony/process": "v4.4.35",
  4102. "symfony/psr-http-message-bridge": "v2.1.2",
  4103. "symfony/routing": "v4.4.34",
  4104. "symfony/serializer": "v4.4.35",
  4105. "symfony/service-contracts": "v2.5.0",
  4106. "symfony/translation": "v4.4.34",
  4107. "symfony/translation-contracts": "v2.5.0",
  4108. "symfony/validator": "v4.4.35",
  4109. "symfony/var-dumper": "v5.4.0",
  4110. "symfony/yaml": "v4.4.34",
  4111. "twig/twig": "v2.14.11",
  4112. "typo3/phar-stream-wrapper": "v3.1.7"
  4113. },
  4114. "conflict": {
  4115. "webflo/drupal-core-strict": "*"
  4116. },
  4117. "type": "metapackage",
  4118. "notification-url": "https://packagist.org/downloads/",
  4119. "license": [
  4120. "GPL-2.0-or-later"
  4121. ],
  4122. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  4123. "support": {
  4124. "source": "https://github.com/drupal/core-recommended/tree/9.3.5"
  4125. },
  4126. "time": "2022-02-04T20:00:20+00:00"
  4127. },
  4128. {
  4129. "name": "drupal/cshs",
  4130. "version": "dev-1.x",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://git.drupalcode.org/project/cshs.git",
  4134. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  4135. },
  4136. "require": {
  4137. "drupal/core": "^8 || ^9"
  4138. },
  4139. "type": "drupal-module",
  4140. "extra": {
  4141. "branch-alias": {
  4142. "dev-1.x": "1.x-dev"
  4143. },
  4144. "drupal": {
  4145. "version": "8.x-1.2+4-dev",
  4146. "datestamp": "1607678639",
  4147. "security-coverage": {
  4148. "status": "not-covered",
  4149. "message": "Dev releases are not covered by Drupal security advisories."
  4150. }
  4151. }
  4152. },
  4153. "notification-url": "https://packages.drupal.org/8/downloads",
  4154. "license": [
  4155. "GPL-2.0-or-later"
  4156. ],
  4157. "authors": [
  4158. {
  4159. "name": "Walter Jenner",
  4160. "homepage": "https://drupal.org/u/valderama"
  4161. },
  4162. {
  4163. "name": "Sergii Bondarenko",
  4164. "homepage": "https://drupal.org/u/BR0kEN",
  4165. "email": "sb@firstvector.org"
  4166. },
  4167. {
  4168. "name": "Daneel Cruz",
  4169. "homepage": "https://drupal.org/u/daneelcm"
  4170. },
  4171. {
  4172. "name": "Purushotam Rai",
  4173. "homepage": "https://drupal.org/u/purushotam.rai"
  4174. }
  4175. ],
  4176. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4177. "homepage": "https://www.drupal.org/project/cshs",
  4178. "keywords": [
  4179. "client-side-select",
  4180. "hierarchical-select",
  4181. "module",
  4182. "select",
  4183. "taxonomy"
  4184. ],
  4185. "support": {
  4186. "source": "https://git.drupalcode.org/project/cshs",
  4187. "issues": "https://www.drupal.org/project/issues/cshs"
  4188. },
  4189. "time": "2020-12-11T09:23:35+00:00"
  4190. },
  4191. {
  4192. "name": "drupal/ctools",
  4193. "version": "3.7.0",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://git.drupalcode.org/project/ctools.git",
  4197. "reference": "8.x-3.7"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.7.zip",
  4202. "reference": "8.x-3.7",
  4203. "shasum": "b11c0981a1d2ab3cc9e8e614a337d8e2a2a70c0e"
  4204. },
  4205. "require": {
  4206. "drupal/core": "^8.8 || ^9"
  4207. },
  4208. "type": "drupal-module",
  4209. "extra": {
  4210. "drupal": {
  4211. "version": "8.x-3.7",
  4212. "datestamp": "1623860918",
  4213. "security-coverage": {
  4214. "status": "covered",
  4215. "message": "Covered by Drupal's security advisory policy"
  4216. }
  4217. },
  4218. "branch-alias": {
  4219. "dev-8.x-3.x": "3.x-dev"
  4220. }
  4221. },
  4222. "notification-url": "https://packages.drupal.org/8/downloads",
  4223. "license": [
  4224. "GPL-2.0-or-later"
  4225. ],
  4226. "authors": [
  4227. {
  4228. "name": "Kris Vanderwater (EclipseGc)",
  4229. "homepage": "https://www.drupal.org/u/eclipsegc",
  4230. "role": "Maintainer"
  4231. },
  4232. {
  4233. "name": "Jakob Perry (japerry)",
  4234. "homepage": "https://www.drupal.org/u/japerry",
  4235. "role": "Maintainer"
  4236. },
  4237. {
  4238. "name": "Tim Plunkett (tim.plunkett)",
  4239. "homepage": "https://www.drupal.org/u/timplunkett",
  4240. "role": "Maintainer"
  4241. },
  4242. {
  4243. "name": "James Gilliland (neclimdul)",
  4244. "homepage": "https://www.drupal.org/u/neclimdul",
  4245. "role": "Maintainer"
  4246. },
  4247. {
  4248. "name": "Daniel Wehner (dawehner)",
  4249. "homepage": "https://www.drupal.org/u/dawehner",
  4250. "role": "Maintainer"
  4251. },
  4252. {
  4253. "name": "joelpittet",
  4254. "homepage": "https://www.drupal.org/user/160302"
  4255. },
  4256. {
  4257. "name": "merlinofchaos",
  4258. "homepage": "https://www.drupal.org/user/26979"
  4259. },
  4260. {
  4261. "name": "neclimdul",
  4262. "homepage": "https://www.drupal.org/user/48673"
  4263. },
  4264. {
  4265. "name": "sdboyer",
  4266. "homepage": "https://www.drupal.org/user/146719"
  4267. },
  4268. {
  4269. "name": "sun",
  4270. "homepage": "https://www.drupal.org/user/54136"
  4271. },
  4272. {
  4273. "name": "tim.plunkett",
  4274. "homepage": "https://www.drupal.org/user/241634"
  4275. }
  4276. ],
  4277. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4278. "homepage": "https://www.drupal.org/project/ctools",
  4279. "support": {
  4280. "source": "https://git.drupalcode.org/project/ctools",
  4281. "issues": "https://www.drupal.org/project/issues/ctools"
  4282. }
  4283. },
  4284. {
  4285. "name": "drupal/date_range_formatter",
  4286. "version": "dev-9.0.x",
  4287. "source": {
  4288. "type": "git",
  4289. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4290. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4291. },
  4292. "require": {
  4293. "drupal/core": "^8 || ^9"
  4294. },
  4295. "type": "drupal-module",
  4296. "extra": {
  4297. "branch-alias": {
  4298. "dev-9.0.x": "9.0.x-dev"
  4299. },
  4300. "drupal": {
  4301. "version": "9.0.x-dev",
  4302. "datestamp": "1589956448",
  4303. "security-coverage": {
  4304. "status": "not-covered",
  4305. "message": "Dev releases are not covered by Drupal security advisories."
  4306. }
  4307. }
  4308. },
  4309. "notification-url": "https://packages.drupal.org/8/downloads",
  4310. "license": [
  4311. "GPL-2.0-or-later"
  4312. ],
  4313. "authors": [
  4314. {
  4315. "name": "maximpodorov",
  4316. "homepage": "https://www.drupal.org/user/515310"
  4317. },
  4318. {
  4319. "name": "sudishth",
  4320. "homepage": "https://www.drupal.org/user/1440562"
  4321. }
  4322. ],
  4323. "description": "Formats date ranges.",
  4324. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4325. "support": {
  4326. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4327. },
  4328. "time": "2020-05-20T06:32:37+00:00"
  4329. },
  4330. {
  4331. "name": "drupal/devel",
  4332. "version": "4.1.1",
  4333. "source": {
  4334. "type": "git",
  4335. "url": "https://git.drupalcode.org/project/devel.git",
  4336. "reference": "4.1.1"
  4337. },
  4338. "dist": {
  4339. "type": "zip",
  4340. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4341. "reference": "4.1.1",
  4342. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4343. },
  4344. "require": {
  4345. "doctrine/common": "^2.7",
  4346. "drupal/core": "^8.8 || ^9",
  4347. "symfony/var-dumper": "^4 || ^5"
  4348. },
  4349. "conflict": {
  4350. "kint-php/kint": "<3"
  4351. },
  4352. "require-dev": {
  4353. "drush/drush": "^10"
  4354. },
  4355. "suggest": {
  4356. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4357. },
  4358. "type": "drupal-module",
  4359. "extra": {
  4360. "drupal": {
  4361. "version": "4.1.1",
  4362. "datestamp": "1609419527",
  4363. "security-coverage": {
  4364. "status": "covered",
  4365. "message": "Covered by Drupal's security advisory policy"
  4366. }
  4367. },
  4368. "drush": {
  4369. "services": {
  4370. "drush.services.yml": "^9 || ^10"
  4371. }
  4372. }
  4373. },
  4374. "notification-url": "https://packages.drupal.org/8/downloads",
  4375. "license": [
  4376. "GPL-2.0-or-later"
  4377. ],
  4378. "authors": [
  4379. {
  4380. "name": "drupalspoons",
  4381. "homepage": "https://www.drupal.org/user/3647684"
  4382. },
  4383. {
  4384. "name": "moshe weitzman",
  4385. "homepage": "https://www.drupal.org/user/23"
  4386. }
  4387. ],
  4388. "description": "Various blocks, pages, and functions for developers.",
  4389. "homepage": "https://www.drupal.org/project/devel",
  4390. "support": {
  4391. "source": "https://gitlab.com/drupalspoons/devel",
  4392. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4393. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4394. }
  4395. },
  4396. {
  4397. "name": "drupal/domain",
  4398. "version": "dev-1.x",
  4399. "source": {
  4400. "type": "git",
  4401. "url": "https://git.drupalcode.org/project/domain.git",
  4402. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4403. },
  4404. "require": {
  4405. "drupal/core": "^8 || ^9"
  4406. },
  4407. "require-dev": {
  4408. "drupal/domain_access": "*",
  4409. "drupal/domain_config": "*"
  4410. },
  4411. "type": "drupal-module",
  4412. "extra": {
  4413. "branch-alias": {
  4414. "dev-1.x": "1.x-dev"
  4415. },
  4416. "drupal": {
  4417. "version": "8.x-1.x-dev",
  4418. "datestamp": "1603119924",
  4419. "security-coverage": {
  4420. "status": "not-covered",
  4421. "message": "Dev releases are not covered by Drupal security advisories."
  4422. }
  4423. }
  4424. },
  4425. "notification-url": "https://packages.drupal.org/8/downloads",
  4426. "license": [
  4427. "GPL-2.0-or-later"
  4428. ],
  4429. "authors": [
  4430. {
  4431. "name": "agentrickard",
  4432. "homepage": "https://www.drupal.org/user/20975"
  4433. },
  4434. {
  4435. "name": "nonsie",
  4436. "homepage": "https://www.drupal.org/user/29899"
  4437. }
  4438. ],
  4439. "description": "Creates domain records within a Drupal installation.",
  4440. "homepage": "https://www.drupal.org/project/domain",
  4441. "support": {
  4442. "source": "https://git.drupalcode.org/project/domain"
  4443. },
  4444. "time": "2020-11-18T18:57:19+00:00"
  4445. },
  4446. {
  4447. "name": "drupal/domain_alias",
  4448. "version": "dev-1.x",
  4449. "require": {
  4450. "drupal/core": "^8 || ^9",
  4451. "drupal/domain": "*"
  4452. },
  4453. "type": "metapackage",
  4454. "extra": {
  4455. "branch-alias": {
  4456. "dev-1.x": "1.x-dev"
  4457. },
  4458. "drupal": {
  4459. "version": "8.x-1.x-dev",
  4460. "datestamp": "1603119924",
  4461. "security-coverage": {
  4462. "status": "not-covered",
  4463. "message": "Dev releases are not covered by Drupal security advisories."
  4464. }
  4465. }
  4466. },
  4467. "notification-url": "https://packages.drupal.org/8/downloads",
  4468. "license": [
  4469. "GPL-2.0-or-later"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "agentrickard",
  4474. "homepage": "https://www.drupal.org/user/20975"
  4475. },
  4476. {
  4477. "name": "nonsie",
  4478. "homepage": "https://www.drupal.org/user/29899"
  4479. }
  4480. ],
  4481. "description": "Maps multiple host requests to a single domain record.",
  4482. "homepage": "https://www.drupal.org/project/domain",
  4483. "support": {
  4484. "source": "https://git.drupalcode.org/project/domain"
  4485. }
  4486. },
  4487. {
  4488. "name": "drupal/domain_config",
  4489. "version": "dev-1.x",
  4490. "require": {
  4491. "drupal/core": "^8 || ^9",
  4492. "drupal/domain": "*"
  4493. },
  4494. "type": "metapackage",
  4495. "extra": {
  4496. "branch-alias": {
  4497. "dev-1.x": "1.x-dev"
  4498. },
  4499. "drupal": {
  4500. "version": "8.x-1.x-dev",
  4501. "datestamp": "1603119924",
  4502. "security-coverage": {
  4503. "status": "not-covered",
  4504. "message": "Dev releases are not covered by Drupal security advisories."
  4505. }
  4506. }
  4507. },
  4508. "notification-url": "https://packages.drupal.org/8/downloads",
  4509. "license": [
  4510. "GPL-2.0-or-later"
  4511. ],
  4512. "authors": [
  4513. {
  4514. "name": "agentrickard",
  4515. "homepage": "https://www.drupal.org/user/20975"
  4516. },
  4517. {
  4518. "name": "nonsie",
  4519. "homepage": "https://www.drupal.org/user/29899"
  4520. }
  4521. ],
  4522. "description": "Allows domain specific configuration.",
  4523. "homepage": "https://www.drupal.org/project/domain",
  4524. "support": {
  4525. "source": "https://git.drupalcode.org/project/domain"
  4526. }
  4527. },
  4528. {
  4529. "name": "drupal/domain_site_settings",
  4530. "version": "dev-1.x",
  4531. "source": {
  4532. "type": "git",
  4533. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4534. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4535. },
  4536. "require": {
  4537. "drupal/core": "^8 || ^9",
  4538. "drupal/domain": "*",
  4539. "drupal/domain_config": "*"
  4540. },
  4541. "type": "drupal-module",
  4542. "extra": {
  4543. "branch-alias": {
  4544. "dev-1.x": "1.x-dev"
  4545. },
  4546. "drupal": {
  4547. "version": "8.x-1.3+7-dev",
  4548. "datestamp": "1584297727",
  4549. "security-coverage": {
  4550. "status": "not-covered",
  4551. "message": "Dev releases are not covered by Drupal security advisories."
  4552. }
  4553. }
  4554. },
  4555. "notification-url": "https://packages.drupal.org/8/downloads",
  4556. "license": [
  4557. "GPL-2.0+"
  4558. ],
  4559. "authors": [
  4560. {
  4561. "name": "aloknarwaria",
  4562. "homepage": "https://www.drupal.org/user/906640"
  4563. },
  4564. {
  4565. "name": "malaynayak",
  4566. "homepage": "https://www.drupal.org/user/3529755"
  4567. }
  4568. ],
  4569. "description": "Basic Site Setting for Domains.",
  4570. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4571. "keywords": [
  4572. "Drupal"
  4573. ],
  4574. "support": {
  4575. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4576. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4577. },
  4578. "time": "2020-03-15T18:41:41+00:00"
  4579. },
  4580. {
  4581. "name": "drupal/email_registration",
  4582. "version": "1.1.0",
  4583. "source": {
  4584. "type": "git",
  4585. "url": "https://git.drupalcode.org/project/email_registration.git",
  4586. "reference": "8.x-1.1"
  4587. },
  4588. "dist": {
  4589. "type": "zip",
  4590. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4591. "reference": "8.x-1.1",
  4592. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4593. },
  4594. "require": {
  4595. "drupal/core": "^8.7.7 || ^9"
  4596. },
  4597. "conflict": {
  4598. "drupal/commerce": "<2.12"
  4599. },
  4600. "require-dev": {
  4601. "drupal/commerce": "^2.0"
  4602. },
  4603. "type": "drupal-module",
  4604. "extra": {
  4605. "drupal": {
  4606. "version": "8.x-1.1",
  4607. "datestamp": "1592317072",
  4608. "security-coverage": {
  4609. "status": "covered",
  4610. "message": "Covered by Drupal's security advisory policy"
  4611. }
  4612. }
  4613. },
  4614. "notification-url": "https://packages.drupal.org/8/downloads",
  4615. "license": [
  4616. "GPL-2.0-or-later"
  4617. ],
  4618. "authors": [
  4619. {
  4620. "name": "Greg Knaddison (greggles)",
  4621. "homepage": "https://www.drupal.org/u/greggles",
  4622. "role": "Maintainer"
  4623. },
  4624. {
  4625. "name": "Andrey Postnikov (andypost)",
  4626. "homepage": "https://www.drupal.org/u/andypost",
  4627. "role": "Maintainer"
  4628. },
  4629. {
  4630. "name": "Chris Herberte",
  4631. "homepage": "https://www.drupal.org/u/chris-herberte",
  4632. "role": "Maintainer"
  4633. },
  4634. {
  4635. "name": "Moshe Weitzman (moshe weitzman)",
  4636. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4637. "role": "Maintainer"
  4638. }
  4639. ],
  4640. "description": "Allows users to register with an email address as their username.",
  4641. "homepage": "https://www.drupal.org/project/email_registration",
  4642. "support": {
  4643. "source": "https://git.drupalcode.org/project/email_registration",
  4644. "issues": "http://drupal.org/project/issues/email_registration"
  4645. }
  4646. },
  4647. {
  4648. "name": "drupal/embed",
  4649. "version": "1.4.0",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://git.drupalcode.org/project/embed.git",
  4653. "reference": "8.x-1.4"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4658. "reference": "8.x-1.4",
  4659. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4660. },
  4661. "require": {
  4662. "drupal/core": "^8.7.7 || ^9"
  4663. },
  4664. "type": "drupal-module",
  4665. "extra": {
  4666. "drupal": {
  4667. "version": "8.x-1.4",
  4668. "datestamp": "1590176831",
  4669. "security-coverage": {
  4670. "status": "covered",
  4671. "message": "Covered by Drupal's security advisory policy"
  4672. }
  4673. }
  4674. },
  4675. "notification-url": "https://packages.drupal.org/8/downloads",
  4676. "license": [
  4677. "GPL-2.0-or-later"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "Dave Reid",
  4682. "homepage": "https://www.drupal.org/user/53892"
  4683. },
  4684. {
  4685. "name": "Devin Carlson",
  4686. "homepage": "https://www.drupal.org/user/290182"
  4687. },
  4688. {
  4689. "name": "Drupal Media Team",
  4690. "homepage": "https://www.drupal.org/user/3260690"
  4691. },
  4692. {
  4693. "name": "cs_shadow",
  4694. "homepage": "https://www.drupal.org/user/2828287"
  4695. },
  4696. {
  4697. "name": "phenaproxima",
  4698. "homepage": "https://www.drupal.org/user/205645"
  4699. },
  4700. {
  4701. "name": "slashrsm",
  4702. "homepage": "https://www.drupal.org/user/744628"
  4703. }
  4704. ],
  4705. "description": "Provides a framework for different types of embeds in text editors.",
  4706. "homepage": "https://www.drupal.org/project/embed",
  4707. "support": {
  4708. "source": "https://git.drupalcode.org/project/embed"
  4709. }
  4710. },
  4711. {
  4712. "name": "drupal/entity",
  4713. "version": "1.2.0",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://git.drupalcode.org/project/entity.git",
  4717. "reference": "8.x-1.2"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4722. "reference": "8.x-1.2",
  4723. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4724. },
  4725. "require": {
  4726. "drupal/core": "^8.8 || ^9"
  4727. },
  4728. "type": "drupal-module",
  4729. "extra": {
  4730. "drupal": {
  4731. "version": "8.x-1.2",
  4732. "datestamp": "1606399149",
  4733. "security-coverage": {
  4734. "status": "covered",
  4735. "message": "Covered by Drupal's security advisory policy"
  4736. }
  4737. }
  4738. },
  4739. "notification-url": "https://packages.drupal.org/8/downloads",
  4740. "license": [
  4741. "GPL-2.0-or-later"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Berdir",
  4746. "homepage": "https://www.drupal.org/user/214652"
  4747. },
  4748. {
  4749. "name": "bojanz",
  4750. "homepage": "https://www.drupal.org/user/86106"
  4751. },
  4752. {
  4753. "name": "dawehner",
  4754. "homepage": "https://www.drupal.org/user/99340"
  4755. },
  4756. {
  4757. "name": "dixon_",
  4758. "homepage": "https://www.drupal.org/user/239911"
  4759. },
  4760. {
  4761. "name": "fago",
  4762. "homepage": "https://www.drupal.org/user/16747"
  4763. },
  4764. {
  4765. "name": "mglaman",
  4766. "homepage": "https://www.drupal.org/user/2416470"
  4767. }
  4768. ],
  4769. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4770. "homepage": "http://drupal.org/project/entity",
  4771. "support": {
  4772. "source": "https://git.drupalcode.org/project/entity"
  4773. }
  4774. },
  4775. {
  4776. "name": "drupal/entity_browser",
  4777. "version": "2.6.0",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4781. "reference": "8.x-2.6"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.6.zip",
  4786. "reference": "8.x-2.6",
  4787. "shasum": "95cad4ce9620ccb4f02afa0e8b8bbf7c73fc5aac"
  4788. },
  4789. "require": {
  4790. "drupal/core": "^8.8 || ^9"
  4791. },
  4792. "require-dev": {
  4793. "drupal/embed": "~1.0",
  4794. "drupal/entity_embed": "1.x-dev",
  4795. "drupal/entity_reference_revisions": "1.x-dev",
  4796. "drupal/entityqueue": "1.x-dev",
  4797. "drupal/inline_entity_form": "1.x-dev",
  4798. "drupal/paragraphs": "1.x-dev",
  4799. "drupal/token": "~1.0"
  4800. },
  4801. "type": "drupal-module",
  4802. "extra": {
  4803. "drupal": {
  4804. "version": "8.x-2.6",
  4805. "datestamp": "1624401306",
  4806. "security-coverage": {
  4807. "status": "covered",
  4808. "message": "Covered by Drupal's security advisory policy"
  4809. }
  4810. }
  4811. },
  4812. "notification-url": "https://packages.drupal.org/8/downloads",
  4813. "license": [
  4814. "GPL-2.0+"
  4815. ],
  4816. "authors": [
  4817. {
  4818. "name": "Janez Urevc",
  4819. "homepage": "https://github.com/slashrsm",
  4820. "role": "Maintainer"
  4821. },
  4822. {
  4823. "name": "Primoz Hmeljak",
  4824. "homepage": "https://github.com/primsi",
  4825. "role": "Maintainer"
  4826. },
  4827. {
  4828. "name": "See other contributors",
  4829. "homepage": "https://www.drupal.org/node/1943336/committers",
  4830. "role": "contributor"
  4831. },
  4832. {
  4833. "name": "Drupal Media Team",
  4834. "homepage": "https://www.drupal.org/user/3260690"
  4835. },
  4836. {
  4837. "name": "Primsi",
  4838. "homepage": "https://www.drupal.org/user/282629"
  4839. },
  4840. {
  4841. "name": "marcingy",
  4842. "homepage": "https://www.drupal.org/user/77320"
  4843. },
  4844. {
  4845. "name": "oknate",
  4846. "homepage": "https://www.drupal.org/user/471638"
  4847. },
  4848. {
  4849. "name": "samuel.mortenson",
  4850. "homepage": "https://www.drupal.org/user/2582268"
  4851. },
  4852. {
  4853. "name": "slashrsm",
  4854. "homepage": "https://www.drupal.org/user/744628"
  4855. }
  4856. ],
  4857. "description": "Entity browsing and selecting component.",
  4858. "homepage": "http://drupal.org/project/entity_browser",
  4859. "support": {
  4860. "source": "https://git.drupalcode.org/project/entity_browser",
  4861. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4862. "irc": "irc://irc.freenode.org/drupal-contribute"
  4863. }
  4864. },
  4865. {
  4866. "name": "drupal/entity_browser_enhanced",
  4867. "version": "1.0.0",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4871. "reference": "8.x-1.0"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4876. "reference": "8.x-1.0",
  4877. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4878. },
  4879. "require": {
  4880. "drupal/core": "^8 || ^9",
  4881. "drupal/entity_browser": "~2.0"
  4882. },
  4883. "type": "drupal-module",
  4884. "extra": {
  4885. "drupal": {
  4886. "version": "8.x-1.0",
  4887. "datestamp": "1581940931",
  4888. "security-coverage": {
  4889. "status": "covered",
  4890. "message": "Covered by Drupal's security advisory policy"
  4891. }
  4892. },
  4893. "branch-alias": {
  4894. "dev-8.x-1.x": "8.1.x-dev"
  4895. }
  4896. },
  4897. "notification-url": "https://packages.drupal.org/8/downloads",
  4898. "license": [
  4899. "GPL-2.0-or-later"
  4900. ],
  4901. "authors": [
  4902. {
  4903. "name": "Vardot",
  4904. "homepage": "https://www.drupal.org/vardot",
  4905. "role": "Maintainer"
  4906. },
  4907. {
  4908. "name": "RajabNatshah",
  4909. "homepage": "https://www.drupal.org/user/1414312"
  4910. }
  4911. ],
  4912. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4913. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4914. "support": {
  4915. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4916. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4917. }
  4918. },
  4919. {
  4920. "name": "drupal/entity_clone",
  4921. "version": "1.0.0-beta4",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4925. "reference": "8.x-1.0-beta4"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4930. "reference": "8.x-1.0-beta4",
  4931. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4932. },
  4933. "require": {
  4934. "drupal/core": "^8 || ^9"
  4935. },
  4936. "type": "drupal-module",
  4937. "extra": {
  4938. "drupal": {
  4939. "version": "8.x-1.0-beta4",
  4940. "datestamp": "1588605099",
  4941. "security-coverage": {
  4942. "status": "not-covered",
  4943. "message": "Beta releases are not covered by Drupal security advisories."
  4944. }
  4945. }
  4946. },
  4947. "notification-url": "https://packages.drupal.org/8/downloads",
  4948. "license": [
  4949. "GPL-2.0-or-later"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "vpeltot",
  4954. "homepage": "https://www.drupal.org/user/1361586"
  4955. }
  4956. ],
  4957. "description": "Add a clone action for all entities",
  4958. "homepage": "https://www.drupal.org/project/entity_clone",
  4959. "support": {
  4960. "source": "https://git.drupalcode.org/project/entity_clone"
  4961. }
  4962. },
  4963. {
  4964. "name": "drupal/entity_reference_revisions",
  4965. "version": "1.9.0",
  4966. "source": {
  4967. "type": "git",
  4968. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4969. "reference": "8.x-1.9"
  4970. },
  4971. "dist": {
  4972. "type": "zip",
  4973. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip",
  4974. "reference": "8.x-1.9",
  4975. "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df"
  4976. },
  4977. "require": {
  4978. "drupal/core": "^8.7.7 || ^9"
  4979. },
  4980. "require-dev": {
  4981. "drupal/diff": "1.x-dev"
  4982. },
  4983. "type": "drupal-module",
  4984. "extra": {
  4985. "drupal": {
  4986. "version": "8.x-1.9",
  4987. "datestamp": "1614805871",
  4988. "security-coverage": {
  4989. "status": "covered",
  4990. "message": "Covered by Drupal's security advisory policy"
  4991. }
  4992. }
  4993. },
  4994. "notification-url": "https://packages.drupal.org/8/downloads",
  4995. "license": [
  4996. "GPL-2.0-or-later"
  4997. ],
  4998. "authors": [
  4999. {
  5000. "name": "Berdir",
  5001. "homepage": "https://www.drupal.org/user/214652"
  5002. },
  5003. {
  5004. "name": "Frans",
  5005. "homepage": "https://www.drupal.org/user/514222"
  5006. },
  5007. {
  5008. "name": "jeroen.b",
  5009. "homepage": "https://www.drupal.org/user/1853532"
  5010. },
  5011. {
  5012. "name": "miro_dietiker",
  5013. "homepage": "https://www.drupal.org/user/227761"
  5014. }
  5015. ],
  5016. "description": "Entity Reference Revisions",
  5017. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  5018. "support": {
  5019. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  5020. }
  5021. },
  5022. {
  5023. "name": "drupal/extlink",
  5024. "version": "1.6.0",
  5025. "source": {
  5026. "type": "git",
  5027. "url": "https://git.drupalcode.org/project/extlink.git",
  5028. "reference": "8.x-1.6"
  5029. },
  5030. "dist": {
  5031. "type": "zip",
  5032. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.6.zip",
  5033. "reference": "8.x-1.6",
  5034. "shasum": "92c2794b1d5ece7978f5f6fa37f719c0b37d470e"
  5035. },
  5036. "require": {
  5037. "drupal/core": "^8 || ^9"
  5038. },
  5039. "type": "drupal-module",
  5040. "extra": {
  5041. "drupal": {
  5042. "version": "8.x-1.6",
  5043. "datestamp": "1615218226",
  5044. "security-coverage": {
  5045. "status": "covered",
  5046. "message": "Covered by Drupal's security advisory policy"
  5047. }
  5048. }
  5049. },
  5050. "notification-url": "https://packages.drupal.org/8/downloads",
  5051. "license": [
  5052. "GPL-2.0-or-later"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "Nate Lampton",
  5057. "homepage": "https://www.drupal.org/u/quicksketch",
  5058. "role": "Maintainer"
  5059. },
  5060. {
  5061. "name": "Lachlan Ennis",
  5062. "homepage": "https://www.drupal.org/u/elachlan",
  5063. "role": "Maintainer"
  5064. },
  5065. {
  5066. "name": "Neslee Canil Pinto",
  5067. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  5068. "role": "Maintainer"
  5069. }
  5070. ],
  5071. "description": "Modify behavior and appearance of external links.",
  5072. "homepage": "https://www.drupal.org/project/extlink",
  5073. "keywords": [
  5074. "Drupal",
  5075. "External Links"
  5076. ],
  5077. "support": {
  5078. "source": "https://git.drupalcode.org/project/extlink",
  5079. "issues": "https://www.drupal.org/project/issues/extlink"
  5080. }
  5081. },
  5082. {
  5083. "name": "drupal/field_group",
  5084. "version": "3.1.0",
  5085. "source": {
  5086. "type": "git",
  5087. "url": "https://git.drupalcode.org/project/field_group.git",
  5088. "reference": "8.x-3.1"
  5089. },
  5090. "dist": {
  5091. "type": "zip",
  5092. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  5093. "reference": "8.x-3.1",
  5094. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  5095. },
  5096. "require": {
  5097. "drupal/core": "^8.8 || ^9"
  5098. },
  5099. "require-dev": {
  5100. "drupal/jquery_ui_accordion": "^1.0"
  5101. },
  5102. "type": "drupal-module",
  5103. "extra": {
  5104. "drupal": {
  5105. "version": "8.x-3.1",
  5106. "datestamp": "1591772567",
  5107. "security-coverage": {
  5108. "status": "covered",
  5109. "message": "Covered by Drupal's security advisory policy"
  5110. }
  5111. }
  5112. },
  5113. "notification-url": "https://packages.drupal.org/8/downloads",
  5114. "license": [
  5115. "GPL-2.0-or-later"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "Hydra",
  5120. "homepage": "https://www.drupal.org/user/647364"
  5121. },
  5122. {
  5123. "name": "Stalski",
  5124. "homepage": "https://www.drupal.org/user/322618"
  5125. },
  5126. {
  5127. "name": "jyve",
  5128. "homepage": "https://www.drupal.org/user/591438"
  5129. },
  5130. {
  5131. "name": "nils.destoop",
  5132. "homepage": "https://www.drupal.org/user/361625"
  5133. },
  5134. {
  5135. "name": "swentel",
  5136. "homepage": "https://www.drupal.org/user/107403"
  5137. }
  5138. ],
  5139. "description": "Provides the field_group module.",
  5140. "homepage": "https://www.drupal.org/project/field_group",
  5141. "support": {
  5142. "source": "https://git.drupalcode.org/project/field_group",
  5143. "issues": "https://www.drupal.org/project/issues/field_group"
  5144. }
  5145. },
  5146. {
  5147. "name": "drupal/file_mdm",
  5148. "version": "2.1.0",
  5149. "source": {
  5150. "type": "git",
  5151. "url": "https://git.drupalcode.org/project/file_mdm.git",
  5152. "reference": "8.x-2.1"
  5153. },
  5154. "dist": {
  5155. "type": "zip",
  5156. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  5157. "reference": "8.x-2.1",
  5158. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  5159. },
  5160. "require": {
  5161. "drupal/core": "^8.8 || ^9",
  5162. "lsolesen/pel": "^0.9.8",
  5163. "phenx/php-font-lib": "^0.5.2",
  5164. "php": ">=7"
  5165. },
  5166. "require-dev": {
  5167. "drupal/image_effects": "*"
  5168. },
  5169. "type": "drupal-module",
  5170. "extra": {
  5171. "drupal": {
  5172. "version": "8.x-2.1",
  5173. "datestamp": "1586801064",
  5174. "security-coverage": {
  5175. "status": "covered",
  5176. "message": "Covered by Drupal's security advisory policy"
  5177. }
  5178. }
  5179. },
  5180. "notification-url": "https://packages.drupal.org/8/downloads",
  5181. "license": [
  5182. "GPL-2.0-or-later"
  5183. ],
  5184. "authors": [
  5185. {
  5186. "name": "mondrake",
  5187. "homepage": "https://www.drupal.org/user/1307444"
  5188. }
  5189. ],
  5190. "description": "Provides a service to manage file metadata.",
  5191. "homepage": "https://www.drupal.org/project/file_mdm",
  5192. "support": {
  5193. "source": "https://git.drupalcode.org/project/file_mdm"
  5194. }
  5195. },
  5196. {
  5197. "name": "drupal/filefield_sources",
  5198. "version": "dev-1.x",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5202. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  5203. },
  5204. "require": {
  5205. "drupal/core": "^8 || ^9"
  5206. },
  5207. "require-dev": {
  5208. "drupal/imce": "*"
  5209. },
  5210. "type": "drupal-module",
  5211. "extra": {
  5212. "branch-alias": {
  5213. "dev-1.x": "1.x-dev"
  5214. },
  5215. "drupal": {
  5216. "version": "8.x-1.0-alpha3+3-dev",
  5217. "datestamp": "1604712687",
  5218. "security-coverage": {
  5219. "status": "not-covered",
  5220. "message": "Dev releases are not covered by Drupal security advisories."
  5221. }
  5222. }
  5223. },
  5224. "notification-url": "https://packages.drupal.org/8/downloads",
  5225. "license": [
  5226. "GPL-2.0-or-later"
  5227. ],
  5228. "authors": [
  5229. {
  5230. "name": "Nate Lampton (quicksketch)",
  5231. "homepage": "https://www.drupal.org/u/quicksketch",
  5232. "role": "Maintainer"
  5233. },
  5234. {
  5235. "name": "Andrey Khromyshev (profak)",
  5236. "homepage": "https://www.drupal.org/u/profak",
  5237. "role": "Maintainer"
  5238. },
  5239. {
  5240. "name": "David Valdez (gnuget)",
  5241. "homepage": "https://www.drupal.org/u/gnuget",
  5242. "role": "Maintainer"
  5243. }
  5244. ],
  5245. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5246. "homepage": "https://www.drupal.org/project/filefield_sources",
  5247. "support": {
  5248. "source": "https://git.drupalcode.org/project/filefield_sources",
  5249. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5250. "irc": "irc://irc.freenode.org/drupal-contribute"
  5251. },
  5252. "time": "2020-11-07T01:30:52+00:00"
  5253. },
  5254. {
  5255. "name": "drupal/filter_perms",
  5256. "version": "dev-1.x",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5260. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5261. },
  5262. "require": {
  5263. "drupal/core": "^8 || ^9"
  5264. },
  5265. "type": "drupal-module",
  5266. "extra": {
  5267. "branch-alias": {
  5268. "dev-1.x": "1.x-dev"
  5269. },
  5270. "drupal": {
  5271. "version": "8.x-1.0-alpha1+2-dev",
  5272. "datestamp": "1599239698",
  5273. "security-coverage": {
  5274. "status": "not-covered",
  5275. "message": "Dev releases are not covered by Drupal security advisories."
  5276. }
  5277. }
  5278. },
  5279. "notification-url": "https://packages.drupal.org/8/downloads",
  5280. "license": [
  5281. "GPL-2.0-or-later"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "cYu",
  5286. "homepage": "https://www.drupal.org/user/202205"
  5287. },
  5288. {
  5289. "name": "deekayen",
  5290. "homepage": "https://www.drupal.org/user/972"
  5291. },
  5292. {
  5293. "name": "ivagold",
  5294. "homepage": "https://www.drupal.org/user/3061533"
  5295. },
  5296. {
  5297. "name": "mgbellaire",
  5298. "homepage": "https://www.drupal.org/user/1831932"
  5299. },
  5300. {
  5301. "name": "willzyx",
  5302. "homepage": "https://www.drupal.org/user/1043862"
  5303. }
  5304. ],
  5305. "description": "Provides role and module filters to simplify the user permissions page.",
  5306. "homepage": "https://www.drupal.org/project/filter_perms",
  5307. "support": {
  5308. "source": "https://git.drupalcode.org/project/filter_perms"
  5309. },
  5310. "time": "2020-11-17T18:20:11+00:00"
  5311. },
  5312. {
  5313. "name": "drupal/graphql",
  5314. "version": "4.2.0",
  5315. "source": {
  5316. "type": "git",
  5317. "url": "https://git.drupalcode.org/project/graphql.git",
  5318. "reference": "8.x-4.2"
  5319. },
  5320. "dist": {
  5321. "type": "zip",
  5322. "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.2.zip",
  5323. "reference": "8.x-4.2",
  5324. "shasum": "51f749e36f24cd83318d8fc3c268bac376ffec22"
  5325. },
  5326. "require": {
  5327. "drupal/core": "^8 || ^9",
  5328. "drupal/typed_data": "*",
  5329. "php": ">=7.2",
  5330. "webonyx/graphql-php": "^14.8.0"
  5331. },
  5332. "require-dev": {
  5333. "drupal/node-node": "*"
  5334. },
  5335. "type": "drupal-module",
  5336. "extra": {
  5337. "drupal": {
  5338. "version": "8.x-4.2",
  5339. "datestamp": "1631726359",
  5340. "security-coverage": {
  5341. "status": "covered",
  5342. "message": "Covered by Drupal's security advisory policy"
  5343. }
  5344. }
  5345. },
  5346. "notification-url": "https://packages.drupal.org/8/downloads",
  5347. "license": [
  5348. "GPL-2.0+"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "fubhy",
  5353. "homepage": "https://www.drupal.org/user/761344"
  5354. },
  5355. {
  5356. "name": "hideaway",
  5357. "homepage": "https://www.drupal.org/user/741876"
  5358. },
  5359. {
  5360. "name": "joaogarin",
  5361. "homepage": "https://www.drupal.org/user/612814"
  5362. },
  5363. {
  5364. "name": "klausi",
  5365. "homepage": "https://www.drupal.org/user/262198"
  5366. },
  5367. {
  5368. "name": "pmelab",
  5369. "homepage": "https://www.drupal.org/user/555322"
  5370. }
  5371. ],
  5372. "description": "Exposes your Drupal data model through a GraphQL schema.",
  5373. "homepage": "http://drupal.org/project/graphql",
  5374. "support": {
  5375. "source": "https://git.drupalcode.org/project/graphql"
  5376. }
  5377. },
  5378. {
  5379. "name": "drupal/honeypot",
  5380. "version": "2.0.1",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://git.drupalcode.org/project/honeypot.git",
  5384. "reference": "2.0.1"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5389. "reference": "2.0.1",
  5390. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5391. },
  5392. "require": {
  5393. "drupal/core": "^8.0 || ^9.0"
  5394. },
  5395. "type": "drupal-module",
  5396. "extra": {
  5397. "drupal": {
  5398. "version": "2.0.1",
  5399. "datestamp": "1597855128",
  5400. "security-coverage": {
  5401. "status": "covered",
  5402. "message": "Covered by Drupal's security advisory policy"
  5403. }
  5404. }
  5405. },
  5406. "notification-url": "https://packages.drupal.org/8/downloads",
  5407. "license": [
  5408. "GPL-2.0-or-later"
  5409. ],
  5410. "authors": [
  5411. {
  5412. "name": "Jeff Geerling",
  5413. "homepage": "https://www.drupal.org/user/213194",
  5414. "email": "geerlingguy@mac.com"
  5415. },
  5416. {
  5417. "name": "geerlingguy",
  5418. "homepage": "https://www.drupal.org/user/389011"
  5419. },
  5420. {
  5421. "name": "vijaycs85",
  5422. "homepage": "https://www.drupal.org/user/93488"
  5423. }
  5424. ],
  5425. "description": "Mitigates spam form submissions using the honeypot method.",
  5426. "homepage": "https://www.drupal.org/project/honeypot",
  5427. "keywords": [
  5428. "deterrent",
  5429. "form",
  5430. "honeypot",
  5431. "honeytrap",
  5432. "php",
  5433. "spam"
  5434. ],
  5435. "support": {
  5436. "source": "https://git.drupalcode.org/project/honeypot",
  5437. "issues": "https://www.drupal.org/project/issues/honeypot"
  5438. }
  5439. },
  5440. {
  5441. "name": "drupal/imagemagick",
  5442. "version": "3.1.0",
  5443. "source": {
  5444. "type": "git",
  5445. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5446. "reference": "8.x-3.1"
  5447. },
  5448. "dist": {
  5449. "type": "zip",
  5450. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5451. "reference": "8.x-3.1",
  5452. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5453. },
  5454. "require": {
  5455. "drupal/core": "^8.8 || ^9",
  5456. "drupal/file_mdm": "^2",
  5457. "drupal/sophron": "^1",
  5458. "php": ">=7"
  5459. },
  5460. "type": "drupal-module",
  5461. "extra": {
  5462. "drupal": {
  5463. "version": "8.x-3.1",
  5464. "datestamp": "1581420882",
  5465. "security-coverage": {
  5466. "status": "covered",
  5467. "message": "Covered by Drupal's security advisory policy"
  5468. }
  5469. }
  5470. },
  5471. "notification-url": "https://packages.drupal.org/8/downloads",
  5472. "license": [
  5473. "GPL-2.0-or-later"
  5474. ],
  5475. "authors": [
  5476. {
  5477. "name": "Chris Charlton",
  5478. "homepage": "https://www.drupal.org/user/17089"
  5479. },
  5480. {
  5481. "name": "chx",
  5482. "homepage": "https://www.drupal.org/user/9446"
  5483. },
  5484. {
  5485. "name": "claudiu.cristea",
  5486. "homepage": "https://www.drupal.org/user/56348"
  5487. },
  5488. {
  5489. "name": "dman",
  5490. "homepage": "https://www.drupal.org/user/33240"
  5491. },
  5492. {
  5493. "name": "dopry",
  5494. "homepage": "https://www.drupal.org/user/22202"
  5495. },
  5496. {
  5497. "name": "drewish",
  5498. "homepage": "https://www.drupal.org/user/34869"
  5499. },
  5500. {
  5501. "name": "gdl",
  5502. "homepage": "https://www.drupal.org/user/507326"
  5503. },
  5504. {
  5505. "name": "mondrake",
  5506. "homepage": "https://www.drupal.org/user/1307444"
  5507. },
  5508. {
  5509. "name": "quicksketch",
  5510. "homepage": "https://www.drupal.org/user/35821"
  5511. },
  5512. {
  5513. "name": "sun",
  5514. "homepage": "https://www.drupal.org/user/54136"
  5515. },
  5516. {
  5517. "name": "walkah",
  5518. "homepage": "https://www.drupal.org/user/1531"
  5519. }
  5520. ],
  5521. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5522. "homepage": "https://www.drupal.org/project/imagemagick",
  5523. "support": {
  5524. "source": "https://git.drupalcode.org/project/imagemagick"
  5525. }
  5526. },
  5527. {
  5528. "name": "drupal/inline_entity_form",
  5529. "version": "1.0.0-rc9",
  5530. "source": {
  5531. "type": "git",
  5532. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5533. "reference": "8.x-1.0-rc9"
  5534. },
  5535. "dist": {
  5536. "type": "zip",
  5537. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc9.zip",
  5538. "reference": "8.x-1.0-rc9",
  5539. "shasum": "78953103a9c6e4e44bc877820a35f39913ea4559"
  5540. },
  5541. "require": {
  5542. "drupal/core": "^8.8 || ^9",
  5543. "php": ">=7.1"
  5544. },
  5545. "require-dev": {
  5546. "drupal/entity_reference_revisions": "^1.0"
  5547. },
  5548. "type": "drupal-module",
  5549. "extra": {
  5550. "drupal": {
  5551. "version": "8.x-1.0-rc9",
  5552. "datestamp": "1618174486",
  5553. "security-coverage": {
  5554. "status": "not-covered",
  5555. "message": "RC releases are not covered by Drupal security advisories."
  5556. }
  5557. }
  5558. },
  5559. "notification-url": "https://packages.drupal.org/8/downloads",
  5560. "license": [
  5561. "GPL-2.0-or-later"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "bojanz",
  5566. "homepage": "https://www.drupal.org/user/86106"
  5567. },
  5568. {
  5569. "name": "dawehner",
  5570. "homepage": "https://www.drupal.org/user/99340"
  5571. },
  5572. {
  5573. "name": "geek-merlin",
  5574. "homepage": "https://www.drupal.org/user/229048"
  5575. },
  5576. {
  5577. "name": "joachim",
  5578. "homepage": "https://www.drupal.org/user/107701"
  5579. },
  5580. {
  5581. "name": "jsacksick",
  5582. "homepage": "https://www.drupal.org/user/972218"
  5583. },
  5584. {
  5585. "name": "kaythay",
  5586. "homepage": "https://www.drupal.org/user/2182186"
  5587. },
  5588. {
  5589. "name": "oknate",
  5590. "homepage": "https://www.drupal.org/user/471638"
  5591. },
  5592. {
  5593. "name": "rszrama",
  5594. "homepage": "https://www.drupal.org/user/49344"
  5595. },
  5596. {
  5597. "name": "slashrsm",
  5598. "homepage": "https://www.drupal.org/user/744628"
  5599. },
  5600. {
  5601. "name": "webflo",
  5602. "homepage": "https://www.drupal.org/user/254778"
  5603. }
  5604. ],
  5605. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5606. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5607. "support": {
  5608. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5609. }
  5610. },
  5611. {
  5612. "name": "drupal/insert",
  5613. "version": "dev-2.x",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://git.drupalcode.org/project/insert.git",
  5617. "reference": "892cb12f5c748f29106a04b4cdfd4fe77a503118"
  5618. },
  5619. "require": {
  5620. "drupal/core": "^8 || ^9"
  5621. },
  5622. "require-dev": {
  5623. "drupal/colorbox": "*"
  5624. },
  5625. "type": "drupal-module",
  5626. "extra": {
  5627. "branch-alias": {
  5628. "dev-2.x": "2.x-dev"
  5629. },
  5630. "drupal": {
  5631. "version": "8.x-2.0-beta1+6-dev",
  5632. "datestamp": "1597165610",
  5633. "security-coverage": {
  5634. "status": "not-covered",
  5635. "message": "Dev releases are not covered by Drupal security advisories."
  5636. }
  5637. }
  5638. },
  5639. "notification-url": "https://packages.drupal.org/8/downloads",
  5640. "license": [
  5641. "GPL-2.0-or-later"
  5642. ],
  5643. "authors": [
  5644. {
  5645. "name": "Neslee Canil Pinto",
  5646. "homepage": "https://www.drupal.org/user/3580850"
  5647. },
  5648. {
  5649. "name": "Snater",
  5650. "homepage": "https://www.drupal.org/user/3513717"
  5651. },
  5652. {
  5653. "name": "quicksketch",
  5654. "homepage": "https://www.drupal.org/user/35821"
  5655. }
  5656. ],
  5657. "description": "Assists in inserting files, images, or other media into the body field as well as other editor and text areas.",
  5658. "homepage": "https://www.drupal.org/project/insert",
  5659. "support": {
  5660. "source": "https://git.drupalcode.org/project/insert"
  5661. },
  5662. "time": "2020-10-08T16:45:33+00:00"
  5663. },
  5664. {
  5665. "name": "drupal/jquery_ui",
  5666. "version": "1.4.0",
  5667. "source": {
  5668. "type": "git",
  5669. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5670. "reference": "8.x-1.4"
  5671. },
  5672. "dist": {
  5673. "type": "zip",
  5674. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5675. "reference": "8.x-1.4",
  5676. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5677. },
  5678. "require": {
  5679. "drupal/core": "^8 || ^9"
  5680. },
  5681. "type": "drupal-module",
  5682. "extra": {
  5683. "drupal": {
  5684. "version": "8.x-1.4",
  5685. "datestamp": "1582149957",
  5686. "security-coverage": {
  5687. "status": "covered",
  5688. "message": "Covered by Drupal's security advisory policy"
  5689. }
  5690. }
  5691. },
  5692. "notification-url": "https://packages.drupal.org/8/downloads",
  5693. "license": [
  5694. "GPL-2.0-or-later"
  5695. ],
  5696. "authors": [
  5697. {
  5698. "name": "RobLoach",
  5699. "homepage": "https://www.drupal.org/user/61114"
  5700. },
  5701. {
  5702. "name": "jjeff",
  5703. "homepage": "https://www.drupal.org/user/17190"
  5704. },
  5705. {
  5706. "name": "lauriii",
  5707. "homepage": "https://www.drupal.org/user/1078742"
  5708. },
  5709. {
  5710. "name": "litwol",
  5711. "homepage": "https://www.drupal.org/user/78134"
  5712. },
  5713. {
  5714. "name": "mfb",
  5715. "homepage": "https://www.drupal.org/user/12302"
  5716. },
  5717. {
  5718. "name": "mfer",
  5719. "homepage": "https://www.drupal.org/user/25701"
  5720. },
  5721. {
  5722. "name": "mikelutz",
  5723. "homepage": "https://www.drupal.org/user/2972409"
  5724. },
  5725. {
  5726. "name": "sun",
  5727. "homepage": "https://www.drupal.org/user/54136"
  5728. },
  5729. {
  5730. "name": "webchick",
  5731. "homepage": "https://www.drupal.org/user/24967"
  5732. },
  5733. {
  5734. "name": "zrpnr",
  5735. "homepage": "https://www.drupal.org/user/1448368"
  5736. }
  5737. ],
  5738. "description": "Provides jQuery UI library.",
  5739. "homepage": "https://www.drupal.org/project/jquery_ui",
  5740. "support": {
  5741. "source": "https://git.drupalcode.org/project/jquery_ui"
  5742. }
  5743. },
  5744. {
  5745. "name": "drupal/jquery_ui_button",
  5746. "version": "1.1.0",
  5747. "source": {
  5748. "type": "git",
  5749. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5750. "reference": "8.x-1.1"
  5751. },
  5752. "dist": {
  5753. "type": "zip",
  5754. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5755. "reference": "8.x-1.1",
  5756. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5757. },
  5758. "require": {
  5759. "drupal/core": "^8 || ^9",
  5760. "drupal/jquery_ui": "*",
  5761. "drupal/jquery_ui_checkboxradio": "*",
  5762. "drupal/jquery_ui_controlgroup": "*"
  5763. },
  5764. "type": "drupal-module",
  5765. "extra": {
  5766. "drupal": {
  5767. "version": "8.x-1.1",
  5768. "datestamp": "1584106807",
  5769. "security-coverage": {
  5770. "status": "covered",
  5771. "message": "Covered by Drupal's security advisory policy"
  5772. }
  5773. }
  5774. },
  5775. "notification-url": "https://packages.drupal.org/8/downloads",
  5776. "license": [
  5777. "GPL-2.0-or-later"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "bnjmnm",
  5782. "homepage": "https://www.drupal.org/user/2369194"
  5783. },
  5784. {
  5785. "name": "lauriii",
  5786. "homepage": "https://www.drupal.org/user/1078742"
  5787. },
  5788. {
  5789. "name": "zrpnr",
  5790. "homepage": "https://www.drupal.org/user/1448368"
  5791. }
  5792. ],
  5793. "description": "Provides jQuery UI Button library.",
  5794. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5795. "support": {
  5796. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5797. }
  5798. },
  5799. {
  5800. "name": "drupal/jquery_ui_checkboxradio",
  5801. "version": "1.2.0",
  5802. "source": {
  5803. "type": "git",
  5804. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5805. "reference": "8.x-1.2"
  5806. },
  5807. "dist": {
  5808. "type": "zip",
  5809. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5810. "reference": "8.x-1.2",
  5811. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5812. },
  5813. "require": {
  5814. "drupal/core": "^8 || ^9",
  5815. "drupal/jquery_ui": "*"
  5816. },
  5817. "type": "drupal-module",
  5818. "extra": {
  5819. "drupal": {
  5820. "version": "8.x-1.2",
  5821. "datestamp": "1584106406",
  5822. "security-coverage": {
  5823. "status": "covered",
  5824. "message": "Covered by Drupal's security advisory policy"
  5825. }
  5826. }
  5827. },
  5828. "notification-url": "https://packages.drupal.org/8/downloads",
  5829. "license": [
  5830. "GPL-2.0-or-later"
  5831. ],
  5832. "authors": [
  5833. {
  5834. "name": "bnjmnm",
  5835. "homepage": "https://www.drupal.org/user/2369194"
  5836. },
  5837. {
  5838. "name": "lauriii",
  5839. "homepage": "https://www.drupal.org/user/1078742"
  5840. },
  5841. {
  5842. "name": "zrpnr",
  5843. "homepage": "https://www.drupal.org/user/1448368"
  5844. }
  5845. ],
  5846. "description": "Provides jQuery UI Checkboxradio library.",
  5847. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5848. "support": {
  5849. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5850. }
  5851. },
  5852. {
  5853. "name": "drupal/jquery_ui_controlgroup",
  5854. "version": "1.1.0",
  5855. "source": {
  5856. "type": "git",
  5857. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5858. "reference": "8.x-1.1"
  5859. },
  5860. "dist": {
  5861. "type": "zip",
  5862. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5863. "reference": "8.x-1.1",
  5864. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5865. },
  5866. "require": {
  5867. "drupal/core": "^8 || ^9",
  5868. "drupal/jquery_ui": "*"
  5869. },
  5870. "type": "drupal-module",
  5871. "extra": {
  5872. "drupal": {
  5873. "version": "8.x-1.1",
  5874. "datestamp": "1584106616",
  5875. "security-coverage": {
  5876. "status": "covered",
  5877. "message": "Covered by Drupal's security advisory policy"
  5878. }
  5879. }
  5880. },
  5881. "notification-url": "https://packages.drupal.org/8/downloads",
  5882. "license": [
  5883. "GPL-2.0-or-later"
  5884. ],
  5885. "authors": [
  5886. {
  5887. "name": "bnjmnm",
  5888. "homepage": "https://www.drupal.org/user/2369194"
  5889. },
  5890. {
  5891. "name": "lauriii",
  5892. "homepage": "https://www.drupal.org/user/1078742"
  5893. },
  5894. {
  5895. "name": "zrpnr",
  5896. "homepage": "https://www.drupal.org/user/1448368"
  5897. }
  5898. ],
  5899. "description": "Provides jQuery UI Controlgroup library.",
  5900. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5901. "support": {
  5902. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5903. }
  5904. },
  5905. {
  5906. "name": "drupal/jquery_ui_datepicker",
  5907. "version": "1.2.0",
  5908. "source": {
  5909. "type": "git",
  5910. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5911. "reference": "8.x-1.2"
  5912. },
  5913. "dist": {
  5914. "type": "zip",
  5915. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.2.zip",
  5916. "reference": "8.x-1.2",
  5917. "shasum": "19ffa245970ee4e9d908fa0c5d0761f567e487bb"
  5918. },
  5919. "require": {
  5920. "drupal/core": "^8 || ^9",
  5921. "drupal/jquery_ui": "*"
  5922. },
  5923. "type": "drupal-module",
  5924. "extra": {
  5925. "drupal": {
  5926. "version": "8.x-1.2",
  5927. "datestamp": "1642614454",
  5928. "security-coverage": {
  5929. "status": "covered",
  5930. "message": "Covered by Drupal's security advisory policy"
  5931. }
  5932. }
  5933. },
  5934. "notification-url": "https://packages.drupal.org/8/downloads",
  5935. "license": [
  5936. "GPL-2.0-or-later"
  5937. ],
  5938. "authors": [
  5939. {
  5940. "name": "Andrei Ivnitskii",
  5941. "homepage": "https://www.drupal.org/u/ivnish",
  5942. "role": "Maintainer"
  5943. },
  5944. {
  5945. "name": "ivnish",
  5946. "homepage": "https://www.drupal.org/user/3547706"
  5947. },
  5948. {
  5949. "name": "jrockowitz",
  5950. "homepage": "https://www.drupal.org/user/371407"
  5951. },
  5952. {
  5953. "name": "lauriii",
  5954. "homepage": "https://www.drupal.org/user/1078742"
  5955. },
  5956. {
  5957. "name": "zrpnr",
  5958. "homepage": "https://www.drupal.org/user/1448368"
  5959. }
  5960. ],
  5961. "description": "Provides jQuery UI Datepicker library.",
  5962. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5963. "support": {
  5964. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker",
  5965. "issues": "https://www.drupal.org/project/issues/jquery_ui_datepicker"
  5966. }
  5967. },
  5968. {
  5969. "name": "drupal/jquery_ui_slider",
  5970. "version": "1.1.0",
  5971. "source": {
  5972. "type": "git",
  5973. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5974. "reference": "8.x-1.1"
  5975. },
  5976. "dist": {
  5977. "type": "zip",
  5978. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5979. "reference": "8.x-1.1",
  5980. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5981. },
  5982. "require": {
  5983. "drupal/core": "^8 || ^9",
  5984. "drupal/jquery_ui": "*"
  5985. },
  5986. "type": "drupal-module",
  5987. "extra": {
  5988. "drupal": {
  5989. "version": "8.x-1.1",
  5990. "datestamp": "1584107817",
  5991. "security-coverage": {
  5992. "status": "covered",
  5993. "message": "Covered by Drupal's security advisory policy"
  5994. }
  5995. }
  5996. },
  5997. "notification-url": "https://packages.drupal.org/8/downloads",
  5998. "license": [
  5999. "GPL-2.0-or-later"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "bnjmnm",
  6004. "homepage": "https://www.drupal.org/user/2369194"
  6005. },
  6006. {
  6007. "name": "lauriii",
  6008. "homepage": "https://www.drupal.org/user/1078742"
  6009. },
  6010. {
  6011. "name": "zrpnr",
  6012. "homepage": "https://www.drupal.org/user/1448368"
  6013. }
  6014. ],
  6015. "description": "Provides jQuery UI Slider library.",
  6016. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  6017. "support": {
  6018. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  6019. }
  6020. },
  6021. {
  6022. "name": "drupal/jquery_ui_touch_punch",
  6023. "version": "1.0.0",
  6024. "source": {
  6025. "type": "git",
  6026. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  6027. "reference": "1.0.0"
  6028. },
  6029. "dist": {
  6030. "type": "zip",
  6031. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  6032. "reference": "1.0.0",
  6033. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  6034. },
  6035. "require": {
  6036. "drupal/core": "^8 || ^9",
  6037. "drupal/jquery_ui": "^1.0"
  6038. },
  6039. "suggest": {
  6040. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  6041. },
  6042. "type": "drupal-module",
  6043. "extra": {
  6044. "drupal": {
  6045. "version": "1.0.0",
  6046. "datestamp": "1591893292",
  6047. "security-coverage": {
  6048. "status": "not-covered",
  6049. "message": "Project has not opted into security advisory coverage!"
  6050. }
  6051. }
  6052. },
  6053. "notification-url": "https://packages.drupal.org/8/downloads",
  6054. "license": [
  6055. "GPL-2.0+"
  6056. ],
  6057. "authors": [
  6058. {
  6059. "name": "Naveen Valecha",
  6060. "homepage": "https://drupal.org/u/naveenvalecha",
  6061. "role": "Maintainer"
  6062. }
  6063. ],
  6064. "description": "Provides jQuery UI Touch Punch library.",
  6065. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6066. "keywords": [
  6067. "Drupal",
  6068. "jquery_ui_touch_punch"
  6069. ],
  6070. "support": {
  6071. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  6072. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  6073. "irc": "irc://irc.freenode.org/drupal-contribute"
  6074. }
  6075. },
  6076. {
  6077. "name": "drupal/link_attributes",
  6078. "version": "1.11.0",
  6079. "source": {
  6080. "type": "git",
  6081. "url": "https://git.drupalcode.org/project/link_attributes.git",
  6082. "reference": "8.x-1.11"
  6083. },
  6084. "dist": {
  6085. "type": "zip",
  6086. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  6087. "reference": "8.x-1.11",
  6088. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  6089. },
  6090. "require": {
  6091. "drupal/core": "^8 || ^9"
  6092. },
  6093. "type": "drupal-module",
  6094. "extra": {
  6095. "drupal": {
  6096. "version": "8.x-1.11",
  6097. "datestamp": "1598323550",
  6098. "security-coverage": {
  6099. "status": "covered",
  6100. "message": "Covered by Drupal's security advisory policy"
  6101. }
  6102. }
  6103. },
  6104. "notification-url": "https://packages.drupal.org/8/downloads",
  6105. "license": [
  6106. "GPL-2.0-or-later"
  6107. ],
  6108. "authors": [
  6109. {
  6110. "name": "larowlan",
  6111. "homepage": "https://www.drupal.org/user/395439"
  6112. }
  6113. ],
  6114. "description": "Provides a widget to allow settings of link attributes for menu links.",
  6115. "homepage": "https://www.drupal.org/project/link_attributes",
  6116. "support": {
  6117. "source": "https://git.drupalcode.org/project/link_attributes"
  6118. }
  6119. },
  6120. {
  6121. "name": "drupal/linkit",
  6122. "version": "5.0.0-beta13",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://git.drupalcode.org/project/linkit.git",
  6126. "reference": "8.x-5.0-beta13"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta13.zip",
  6131. "reference": "8.x-5.0-beta13",
  6132. "shasum": "9215fbea84166cabc9b7a2d9a04dedaffb9fc1ed"
  6133. },
  6134. "require": {
  6135. "drupal/core": "^8.7.7 || ^9"
  6136. },
  6137. "require-dev": {
  6138. "drupal/imce": "*"
  6139. },
  6140. "type": "drupal-module",
  6141. "extra": {
  6142. "drupal": {
  6143. "version": "8.x-5.0-beta13",
  6144. "datestamp": "1632946970",
  6145. "security-coverage": {
  6146. "status": "not-covered",
  6147. "message": "Beta releases are not covered by Drupal security advisories."
  6148. }
  6149. }
  6150. },
  6151. "notification-url": "https://packages.drupal.org/8/downloads",
  6152. "license": [
  6153. "GPL-2.0-or-later"
  6154. ],
  6155. "authors": [
  6156. {
  6157. "name": "Emil Stjerneman",
  6158. "homepage": "https://stjerneman.com",
  6159. "email": "emil@stjerneman.com",
  6160. "role": "Maintainer"
  6161. },
  6162. {
  6163. "name": "johnwebdev",
  6164. "homepage": "https://www.drupal.org/user/3331569"
  6165. }
  6166. ],
  6167. "description": "Linkit - Enriched linking experience",
  6168. "homepage": "http://drupal.org/project/linkit",
  6169. "support": {
  6170. "source": "http://cgit.drupalcode.org/linkit",
  6171. "issues": "http://drupal.org/project/linkit"
  6172. }
  6173. },
  6174. {
  6175. "name": "drupal/login_destination",
  6176. "version": "dev-2.x",
  6177. "source": {
  6178. "type": "git",
  6179. "url": "https://git.drupalcode.org/project/login_destination.git",
  6180. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  6181. },
  6182. "require": {
  6183. "drupal/core": "^8.7.10 || ^9"
  6184. },
  6185. "require-dev": {
  6186. "drupal/admin_toolbar": "^1.23",
  6187. "drupal/admin_toolbar_tools": "*"
  6188. },
  6189. "type": "drupal-module",
  6190. "extra": {
  6191. "branch-alias": {
  6192. "dev-2.x": "2.x-dev"
  6193. },
  6194. "drupal": {
  6195. "version": "8.x-2.0-alpha3+8-dev",
  6196. "datestamp": "1603450565",
  6197. "security-coverage": {
  6198. "status": "not-covered",
  6199. "message": "Dev releases are not covered by Drupal security advisories."
  6200. }
  6201. }
  6202. },
  6203. "notification-url": "https://packages.drupal.org/8/downloads",
  6204. "license": [
  6205. "GPL-2.0-or-later"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "3CWebDev",
  6210. "homepage": "https://www.drupal.org/user/61221"
  6211. },
  6212. {
  6213. "name": "Oliver Huynh",
  6214. "homepage": "https://www.drupal.org/user/243730"
  6215. },
  6216. {
  6217. "name": "beautifulmind",
  6218. "homepage": "https://www.drupal.org/user/219482"
  6219. },
  6220. {
  6221. "name": "ddrozdik",
  6222. "homepage": "https://www.drupal.org/user/574124"
  6223. },
  6224. {
  6225. "name": "jng12",
  6226. "homepage": "https://www.drupal.org/user/204316"
  6227. },
  6228. {
  6229. "name": "marcp",
  6230. "homepage": "https://www.drupal.org/user/20885"
  6231. },
  6232. {
  6233. "name": "mithy",
  6234. "homepage": "https://www.drupal.org/user/258911"
  6235. },
  6236. {
  6237. "name": "moshe weitzman",
  6238. "homepage": "https://www.drupal.org/user/23"
  6239. },
  6240. {
  6241. "name": "perennial.sky",
  6242. "homepage": "https://www.drupal.org/user/2622667"
  6243. },
  6244. {
  6245. "name": "rsvelko",
  6246. "homepage": "https://www.drupal.org/user/337401"
  6247. }
  6248. ],
  6249. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  6250. "homepage": "https://www.drupal.org/project/login_destination",
  6251. "support": {
  6252. "source": "https://git.drupalcode.org/project/login_destination"
  6253. },
  6254. "time": "2020-10-23T10:55:36+00:00"
  6255. },
  6256. {
  6257. "name": "drupal/maillog",
  6258. "version": "dev-1.x",
  6259. "source": {
  6260. "type": "git",
  6261. "url": "https://git.drupalcode.org/project/maillog.git",
  6262. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6263. },
  6264. "require": {
  6265. "drupal/core": "^8 || ^9"
  6266. },
  6267. "type": "drupal-module",
  6268. "extra": {
  6269. "branch-alias": {
  6270. "dev-1.x": "1.x-dev"
  6271. },
  6272. "drupal": {
  6273. "version": "8.x-1.0-beta1+0-dev",
  6274. "datestamp": "1600799873",
  6275. "security-coverage": {
  6276. "status": "not-covered",
  6277. "message": "Dev releases are not covered by Drupal security advisories."
  6278. }
  6279. }
  6280. },
  6281. "notification-url": "https://packages.drupal.org/8/downloads",
  6282. "license": [
  6283. "GPL-2.0-or-later"
  6284. ],
  6285. "authors": [
  6286. {
  6287. "name": "Berdir",
  6288. "homepage": "https://www.drupal.org/user/214652"
  6289. },
  6290. {
  6291. "name": "DamienMcKenna",
  6292. "homepage": "https://www.drupal.org/user/108450"
  6293. },
  6294. {
  6295. "name": "miro_dietiker",
  6296. "homepage": "https://www.drupal.org/user/227761"
  6297. },
  6298. {
  6299. "name": "pluess",
  6300. "homepage": "https://www.drupal.org/user/84659"
  6301. }
  6302. ],
  6303. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6304. "homepage": "https://www.drupal.org/project/maillog",
  6305. "support": {
  6306. "source": "https://git.drupalcode.org/project/maillog"
  6307. },
  6308. "time": "2020-09-22T18:37:31+00:00"
  6309. },
  6310. {
  6311. "name": "drupal/mailsystem",
  6312. "version": "4.3.0",
  6313. "source": {
  6314. "type": "git",
  6315. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6316. "reference": "8.x-4.3"
  6317. },
  6318. "dist": {
  6319. "type": "zip",
  6320. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6321. "reference": "8.x-4.3",
  6322. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6323. },
  6324. "require": {
  6325. "drupal/core": "^8.7.7 || ^9"
  6326. },
  6327. "type": "drupal-module",
  6328. "extra": {
  6329. "drupal": {
  6330. "version": "8.x-4.3",
  6331. "datestamp": "1586203024",
  6332. "security-coverage": {
  6333. "status": "covered",
  6334. "message": "Covered by Drupal's security advisory policy"
  6335. }
  6336. }
  6337. },
  6338. "notification-url": "https://packages.drupal.org/8/downloads",
  6339. "license": [
  6340. "GPL-2.0+"
  6341. ],
  6342. "authors": [
  6343. {
  6344. "name": "Berdir",
  6345. "homepage": "https://www.drupal.org/user/214652"
  6346. },
  6347. {
  6348. "name": "Les Lim",
  6349. "homepage": "https://www.drupal.org/user/84263"
  6350. },
  6351. {
  6352. "name": "Manuel Garcia",
  6353. "homepage": "https://www.drupal.org/user/213194"
  6354. },
  6355. {
  6356. "name": "Nafes",
  6357. "homepage": "https://www.drupal.org/user/2489926"
  6358. },
  6359. {
  6360. "name": "miro_dietiker",
  6361. "homepage": "https://www.drupal.org/user/227761"
  6362. },
  6363. {
  6364. "name": "pillarsdotnet",
  6365. "homepage": "https://www.drupal.org/user/36148"
  6366. }
  6367. ],
  6368. "description": "Mail System",
  6369. "homepage": "https://www.drupal.org/project/mailsystem",
  6370. "support": {
  6371. "source": "https://git.drupalcode.org/project/mailsystem"
  6372. }
  6373. },
  6374. {
  6375. "name": "drupal/matomo",
  6376. "version": "1.11.0",
  6377. "source": {
  6378. "type": "git",
  6379. "url": "https://git.drupalcode.org/project/matomo.git",
  6380. "reference": "8.x-1.11"
  6381. },
  6382. "dist": {
  6383. "type": "zip",
  6384. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6385. "reference": "8.x-1.11",
  6386. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6387. },
  6388. "require": {
  6389. "drupal/core": "^8 || ^9"
  6390. },
  6391. "require-dev": {
  6392. "drupal/php": "*",
  6393. "drupal/token": "*"
  6394. },
  6395. "type": "drupal-module",
  6396. "extra": {
  6397. "drupal": {
  6398. "version": "8.x-1.11",
  6399. "datestamp": "1601651459",
  6400. "security-coverage": {
  6401. "status": "covered",
  6402. "message": "Covered by Drupal's security advisory policy"
  6403. }
  6404. }
  6405. },
  6406. "notification-url": "https://packages.drupal.org/8/downloads",
  6407. "license": [
  6408. "GPL-2.0-or-later"
  6409. ],
  6410. "authors": [
  6411. {
  6412. "name": "Carsten Logemann",
  6413. "homepage": "https://www.drupal.org/u/C_Logemann"
  6414. },
  6415. {
  6416. "name": "Shelane French",
  6417. "homepage": "https://www.drupal.org/u/shelane"
  6418. },
  6419. {
  6420. "name": "See other contributors",
  6421. "homepage": "https://www.drupal.org/node/247808/committers"
  6422. }
  6423. ],
  6424. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6425. "homepage": "https://www.drupal.org/project/matomo",
  6426. "support": {
  6427. "source": "https://git.drupal.org/project/matomo.git",
  6428. "issues": "https://www.drupal.org/project/issues/matomo"
  6429. }
  6430. },
  6431. {
  6432. "name": "drupal/maxlength",
  6433. "version": "1.0.0-rc1",
  6434. "source": {
  6435. "type": "git",
  6436. "url": "https://git.drupalcode.org/project/maxlength.git",
  6437. "reference": "8.x-1.0-rc1"
  6438. },
  6439. "dist": {
  6440. "type": "zip",
  6441. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6442. "reference": "8.x-1.0-rc1",
  6443. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6444. },
  6445. "require": {
  6446. "drupal/core": "^8.8 || ^9"
  6447. },
  6448. "type": "drupal-module",
  6449. "extra": {
  6450. "drupal": {
  6451. "version": "8.x-1.0-rc1",
  6452. "datestamp": "1593198218",
  6453. "security-coverage": {
  6454. "status": "not-covered",
  6455. "message": "RC releases are not covered by Drupal security advisories."
  6456. }
  6457. }
  6458. },
  6459. "notification-url": "https://packages.drupal.org/8/downloads",
  6460. "license": [
  6461. "GPL-2.0-or-later"
  6462. ],
  6463. "authors": [
  6464. {
  6465. "name": "Aron Novak",
  6466. "homepage": "https://www.drupal.org/user/61864"
  6467. },
  6468. {
  6469. "name": "Schnitzel",
  6470. "homepage": "https://www.drupal.org/user/643820"
  6471. },
  6472. {
  6473. "name": "a_c_m",
  6474. "homepage": "https://www.drupal.org/user/195063"
  6475. },
  6476. {
  6477. "name": "barneytech",
  6478. "homepage": "https://www.drupal.org/user/669922"
  6479. },
  6480. {
  6481. "name": "claudiu_cristea",
  6482. "homepage": "https://www.drupal.org/user/2623935"
  6483. },
  6484. {
  6485. "name": "dawehner",
  6486. "homepage": "https://www.drupal.org/user/99340"
  6487. },
  6488. {
  6489. "name": "derhasi",
  6490. "homepage": "https://www.drupal.org/user/83474"
  6491. },
  6492. {
  6493. "name": "frjo",
  6494. "homepage": "https://www.drupal.org/user/5546"
  6495. },
  6496. {
  6497. "name": "hefox",
  6498. "homepage": "https://www.drupal.org/user/426416"
  6499. },
  6500. {
  6501. "name": "jm.federico",
  6502. "homepage": "https://www.drupal.org/user/509892"
  6503. },
  6504. {
  6505. "name": "k4v",
  6506. "homepage": "https://www.drupal.org/user/744246"
  6507. },
  6508. {
  6509. "name": "mariano73",
  6510. "homepage": "https://www.drupal.org/user/1324866"
  6511. },
  6512. {
  6513. "name": "mariuss",
  6514. "homepage": "https://www.drupal.org/user/28539"
  6515. },
  6516. {
  6517. "name": "sanduhrs",
  6518. "homepage": "https://www.drupal.org/user/28074"
  6519. },
  6520. {
  6521. "name": "vasi1186",
  6522. "homepage": "https://www.drupal.org/user/342104"
  6523. },
  6524. {
  6525. "name": "webiator GmbH",
  6526. "homepage": "https://www.drupal.org/user/2390554"
  6527. }
  6528. ],
  6529. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6530. "homepage": "https://www.drupal.org/project/maxlength",
  6531. "support": {
  6532. "source": "https://git.drupalcode.org/project/maxlength"
  6533. }
  6534. },
  6535. {
  6536. "name": "drupal/menu_admin_per_menu",
  6537. "version": "1.3.0",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6541. "reference": "8.x-1.3"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6546. "reference": "8.x-1.3",
  6547. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6548. },
  6549. "require": {
  6550. "drupal/core": "^8 || ^9"
  6551. },
  6552. "type": "drupal-module",
  6553. "extra": {
  6554. "drupal": {
  6555. "version": "8.x-1.3",
  6556. "datestamp": "1593436060",
  6557. "security-coverage": {
  6558. "status": "covered",
  6559. "message": "Covered by Drupal's security advisory policy"
  6560. }
  6561. }
  6562. },
  6563. "notification-url": "https://packages.drupal.org/8/downloads",
  6564. "license": [
  6565. "GPL-2.0-or-later"
  6566. ],
  6567. "authors": [
  6568. {
  6569. "name": "JeroenT",
  6570. "homepage": "https://www.drupal.org/user/2228934"
  6571. },
  6572. {
  6573. "name": "anrikun",
  6574. "homepage": "https://www.drupal.org/user/410199"
  6575. },
  6576. {
  6577. "name": "jonas139",
  6578. "homepage": "https://www.drupal.org/user/2873401"
  6579. },
  6580. {
  6581. "name": "mkdok",
  6582. "homepage": "https://www.drupal.org/user/3308753"
  6583. }
  6584. ],
  6585. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6586. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6587. "support": {
  6588. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6589. }
  6590. },
  6591. {
  6592. "name": "drupal/menu_block",
  6593. "version": "dev-1.x",
  6594. "source": {
  6595. "type": "git",
  6596. "url": "https://git.drupalcode.org/project/menu_block.git",
  6597. "reference": "567becffbb0589e824fb053f15fb38a5846e7276"
  6598. },
  6599. "require": {
  6600. "drupal/core": "^8 || ^9"
  6601. },
  6602. "type": "drupal-module",
  6603. "extra": {
  6604. "branch-alias": {
  6605. "dev-1.x": "1.x-dev"
  6606. },
  6607. "drupal": {
  6608. "version": "8.x-1.6+5-dev",
  6609. "datestamp": "1591593747",
  6610. "security-coverage": {
  6611. "status": "not-covered",
  6612. "message": "Dev releases are not covered by Drupal security advisories."
  6613. }
  6614. }
  6615. },
  6616. "notification-url": "https://packages.drupal.org/8/downloads",
  6617. "license": [
  6618. "GPL-2.0-or-later"
  6619. ],
  6620. "authors": [
  6621. {
  6622. "name": "Dave Reid",
  6623. "homepage": "https://www.drupal.org/user/53892"
  6624. },
  6625. {
  6626. "name": "JohnAlbin",
  6627. "homepage": "https://www.drupal.org/user/32095"
  6628. },
  6629. {
  6630. "name": "joelpittet",
  6631. "homepage": "https://www.drupal.org/user/160302"
  6632. },
  6633. {
  6634. "name": "kim.pepper",
  6635. "homepage": "https://www.drupal.org/user/370574"
  6636. },
  6637. {
  6638. "name": "rrrob",
  6639. "homepage": "https://www.drupal.org/user/273533"
  6640. }
  6641. ],
  6642. "description": "Provides configurable blocks of menu links.",
  6643. "homepage": "https://www.drupal.org/project/menu_block",
  6644. "support": {
  6645. "source": "https://git.drupalcode.org/project/menu_block"
  6646. },
  6647. "time": "2020-11-18T00:42:05+00:00"
  6648. },
  6649. {
  6650. "name": "drupal/menu_position",
  6651. "version": "dev-1.x",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://git.drupalcode.org/project/menu_position.git",
  6655. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6656. },
  6657. "require": {
  6658. "drupal/core": "^8 || ^9"
  6659. },
  6660. "type": "drupal-module",
  6661. "extra": {
  6662. "branch-alias": {
  6663. "dev-1.x": "1.x-dev"
  6664. },
  6665. "drupal": {
  6666. "version": "8.x-1.0-alpha4+4-dev",
  6667. "datestamp": "1587797468",
  6668. "security-coverage": {
  6669. "status": "not-covered",
  6670. "message": "Dev releases are not covered by Drupal security advisories."
  6671. }
  6672. }
  6673. },
  6674. "notification-url": "https://packages.drupal.org/8/downloads",
  6675. "license": [
  6676. "GPL-2.0+"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "BarisW",
  6681. "homepage": "https://www.drupal.org/user/107229"
  6682. },
  6683. {
  6684. "name": "JohnAlbin",
  6685. "homepage": "https://www.drupal.org/user/32095"
  6686. },
  6687. {
  6688. "name": "Sutharsan",
  6689. "homepage": "https://www.drupal.org/user/73854"
  6690. },
  6691. {
  6692. "name": "joelpittet",
  6693. "homepage": "https://www.drupal.org/user/160302"
  6694. },
  6695. {
  6696. "name": "lbainbridge",
  6697. "homepage": "https://www.drupal.org/user/2406996"
  6698. }
  6699. ],
  6700. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6701. "homepage": "https://www.drupal.org/project/menu_position",
  6702. "support": {
  6703. "source": "https://git.drupalcode.org/project/menu_position",
  6704. "issues": "https://www.drupal.org/project/issues/menu_position"
  6705. },
  6706. "time": "2020-04-25T06:50:43+00:00"
  6707. },
  6708. {
  6709. "name": "drupal/pagerer",
  6710. "version": "2.1.0",
  6711. "source": {
  6712. "type": "git",
  6713. "url": "https://git.drupalcode.org/project/pagerer.git",
  6714. "reference": "8.x-2.1"
  6715. },
  6716. "dist": {
  6717. "type": "zip",
  6718. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.1.zip",
  6719. "reference": "8.x-2.1",
  6720. "shasum": "a08539fde32372b66771afbaeba4105de19ddb14"
  6721. },
  6722. "require": {
  6723. "drupal/core": "^8.9 || ^9.1",
  6724. "drupal/jquery_ui_button": "*",
  6725. "drupal/jquery_ui_slider": "*",
  6726. "php": ">=7.1"
  6727. },
  6728. "type": "drupal-module",
  6729. "extra": {
  6730. "drupal": {
  6731. "version": "8.x-2.1",
  6732. "datestamp": "1621878520",
  6733. "security-coverage": {
  6734. "status": "covered",
  6735. "message": "Covered by Drupal's security advisory policy"
  6736. }
  6737. }
  6738. },
  6739. "notification-url": "https://packages.drupal.org/8/downloads",
  6740. "license": [
  6741. "GPL-2.0-or-later"
  6742. ],
  6743. "authors": [
  6744. {
  6745. "name": "mondrake",
  6746. "homepage": "https://www.drupal.org/user/1307444"
  6747. }
  6748. ],
  6749. "description": "Configurable pager styles.",
  6750. "homepage": "https://www.drupal.org/project/pagerer",
  6751. "support": {
  6752. "source": "https://git.drupalcode.org/project/pagerer"
  6753. }
  6754. },
  6755. {
  6756. "name": "drupal/paragraphs",
  6757. "version": "1.12.0",
  6758. "source": {
  6759. "type": "git",
  6760. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6761. "reference": "8.x-1.12"
  6762. },
  6763. "dist": {
  6764. "type": "zip",
  6765. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  6766. "reference": "8.x-1.12",
  6767. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  6768. },
  6769. "require": {
  6770. "drupal/core": "^8.8 || ^9",
  6771. "drupal/entity_reference_revisions": "~1.3"
  6772. },
  6773. "require-dev": {
  6774. "drupal/block_field": "~1.0",
  6775. "drupal/ctools": "3.x-dev",
  6776. "drupal/diff": "~1.0",
  6777. "drupal/entity_browser": "2.x-dev",
  6778. "drupal/entity_usage": "2.x-dev",
  6779. "drupal/field_group": "3.x-dev",
  6780. "drupal/inline_entity_form": "~1.0",
  6781. "drupal/paragraphs-paragraphs_library": "*",
  6782. "drupal/replicate": "~1.0",
  6783. "drupal/search_api": "~1.0",
  6784. "drupal/search_api_db": "*"
  6785. },
  6786. "suggest": {
  6787. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6788. },
  6789. "type": "drupal-module",
  6790. "extra": {
  6791. "drupal": {
  6792. "version": "8.x-1.12",
  6793. "datestamp": "1590140081",
  6794. "security-coverage": {
  6795. "status": "covered",
  6796. "message": "Covered by Drupal's security advisory policy"
  6797. }
  6798. }
  6799. },
  6800. "notification-url": "https://packages.drupal.org/8/downloads",
  6801. "license": [
  6802. "GPL-2.0-or-later"
  6803. ],
  6804. "authors": [
  6805. {
  6806. "name": "Berdir",
  6807. "homepage": "https://www.drupal.org/user/214652"
  6808. },
  6809. {
  6810. "name": "Frans",
  6811. "homepage": "https://www.drupal.org/user/514222"
  6812. },
  6813. {
  6814. "name": "Primsi",
  6815. "homepage": "https://www.drupal.org/user/282629"
  6816. },
  6817. {
  6818. "name": "jeroen.b",
  6819. "homepage": "https://www.drupal.org/user/1853532"
  6820. },
  6821. {
  6822. "name": "jstoller",
  6823. "homepage": "https://www.drupal.org/user/99012"
  6824. },
  6825. {
  6826. "name": "miro_dietiker",
  6827. "homepage": "https://www.drupal.org/user/227761"
  6828. }
  6829. ],
  6830. "description": "Enables the creation of Paragraphs entities.",
  6831. "homepage": "https://www.drupal.org/project/paragraphs",
  6832. "support": {
  6833. "source": "https://git.drupalcode.org/project/paragraphs"
  6834. }
  6835. },
  6836. {
  6837. "name": "drupal/path_alias_xt",
  6838. "version": "dev-1.x",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6842. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6843. },
  6844. "require": {
  6845. "drupal/core": "^8.7.7 || ^9"
  6846. },
  6847. "type": "drupal-module",
  6848. "extra": {
  6849. "branch-alias": {
  6850. "dev-1.x": "1.x-dev"
  6851. },
  6852. "drupal": {
  6853. "version": "8.x-1.x-dev",
  6854. "datestamp": "1590299862",
  6855. "security-coverage": {
  6856. "status": "not-covered",
  6857. "message": "Dev releases are not covered by Drupal security advisories."
  6858. }
  6859. }
  6860. },
  6861. "notification-url": "https://packages.drupal.org/8/downloads",
  6862. "license": [
  6863. "GPL-2.0-or-later"
  6864. ],
  6865. "authors": [
  6866. {
  6867. "name": "RdeBoer",
  6868. "homepage": "https://www.drupal.org/user/404007"
  6869. },
  6870. {
  6871. "name": "adriancid",
  6872. "homepage": "https://www.drupal.org/user/1962106"
  6873. },
  6874. {
  6875. "name": "sdstyles",
  6876. "homepage": "https://www.drupal.org/user/1420228"
  6877. }
  6878. ],
  6879. "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.",
  6880. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6881. "support": {
  6882. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6883. },
  6884. "time": "2020-05-24T05:57:09+00:00"
  6885. },
  6886. {
  6887. "name": "drupal/pathauto",
  6888. "version": "1.8.0",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://git.drupalcode.org/project/pathauto.git",
  6892. "reference": "8.x-1.8"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6897. "reference": "8.x-1.8",
  6898. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6899. },
  6900. "require": {
  6901. "drupal/core": "^8.8 || ^9",
  6902. "drupal/ctools": "*",
  6903. "drupal/token": "*"
  6904. },
  6905. "suggest": {
  6906. "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."
  6907. },
  6908. "type": "drupal-module",
  6909. "extra": {
  6910. "drupal": {
  6911. "version": "8.x-1.8",
  6912. "datestamp": "1588103046",
  6913. "security-coverage": {
  6914. "status": "covered",
  6915. "message": "Covered by Drupal's security advisory policy"
  6916. }
  6917. },
  6918. "drush": {
  6919. "services": {
  6920. "drush.services.yml": "^9 || ^10"
  6921. }
  6922. }
  6923. },
  6924. "notification-url": "https://packages.drupal.org/8/downloads",
  6925. "license": [
  6926. "GPL-2.0-or-later"
  6927. ],
  6928. "authors": [
  6929. {
  6930. "name": "Berdir",
  6931. "homepage": "https://www.drupal.org/user/214652"
  6932. },
  6933. {
  6934. "name": "Dave Reid",
  6935. "homepage": "https://www.drupal.org/user/53892"
  6936. },
  6937. {
  6938. "name": "Freso",
  6939. "homepage": "https://www.drupal.org/user/27504"
  6940. },
  6941. {
  6942. "name": "greggles",
  6943. "homepage": "https://www.drupal.org/user/36762"
  6944. }
  6945. ],
  6946. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6947. "homepage": "https://www.drupal.org/project/pathauto",
  6948. "support": {
  6949. "source": "https://cgit.drupalcode.org/pathauto",
  6950. "issues": "https://www.drupal.org/project/issues/pathauto",
  6951. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6952. }
  6953. },
  6954. {
  6955. "name": "drupal/pathologic",
  6956. "version": "1.0.0-alpha2",
  6957. "source": {
  6958. "type": "git",
  6959. "url": "https://git.drupalcode.org/project/pathologic.git",
  6960. "reference": "8.x-1.0-alpha2"
  6961. },
  6962. "dist": {
  6963. "type": "zip",
  6964. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6965. "reference": "8.x-1.0-alpha2",
  6966. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6967. },
  6968. "require": {
  6969. "drupal/core": "^8 || ^9"
  6970. },
  6971. "type": "drupal-module",
  6972. "extra": {
  6973. "drupal": {
  6974. "version": "8.x-1.0-alpha2",
  6975. "datestamp": "1593911470",
  6976. "security-coverage": {
  6977. "status": "not-covered",
  6978. "message": "Alpha releases are not covered by Drupal security advisories."
  6979. }
  6980. }
  6981. },
  6982. "notification-url": "https://packages.drupal.org/8/downloads",
  6983. "license": [
  6984. "GPL-2.0-or-later"
  6985. ],
  6986. "authors": [
  6987. {
  6988. "name": "Berdir",
  6989. "homepage": "https://www.drupal.org/user/214652"
  6990. },
  6991. {
  6992. "name": "Garrett Albright",
  6993. "homepage": "https://www.drupal.org/user/191212"
  6994. },
  6995. {
  6996. "name": "dww",
  6997. "homepage": "https://www.drupal.org/user/46549"
  6998. }
  6999. ],
  7000. "description": "Helps avoid broken links and incorrect paths in content.",
  7001. "homepage": "https://www.drupal.org/project/pathologic",
  7002. "support": {
  7003. "source": "https://git.drupalcode.org/project/pathologic"
  7004. }
  7005. },
  7006. {
  7007. "name": "drupal/persistent_login",
  7008. "version": "1.3.0",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://git.drupalcode.org/project/persistent_login.git",
  7012. "reference": "8.x-1.3"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  7017. "reference": "8.x-1.3",
  7018. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  7019. },
  7020. "require": {
  7021. "drupal/core": "^8.3 || ^9.0"
  7022. },
  7023. "type": "drupal-module",
  7024. "extra": {
  7025. "drupal": {
  7026. "version": "8.x-1.3",
  7027. "datestamp": "1591597823",
  7028. "security-coverage": {
  7029. "status": "covered",
  7030. "message": "Covered by Drupal's security advisory policy"
  7031. }
  7032. }
  7033. },
  7034. "notification-url": "https://packages.drupal.org/8/downloads",
  7035. "license": [
  7036. "GPL-2.0-or-later"
  7037. ],
  7038. "authors": [
  7039. {
  7040. "name": "gapple",
  7041. "homepage": "https://www.drupal.org/user/490940"
  7042. }
  7043. ],
  7044. "description": "Provides a \"Remember Me\" feature on the login form.",
  7045. "homepage": "https://www.drupal.org/project/persistent_login",
  7046. "keywords": [
  7047. "Drupal"
  7048. ],
  7049. "support": {
  7050. "source": "https://git.drupalcode.org/project/persistent_login",
  7051. "issues": "https://www.drupal.org/project/issues/persistent_login"
  7052. }
  7053. },
  7054. {
  7055. "name": "drupal/profile",
  7056. "version": "1.2.0",
  7057. "source": {
  7058. "type": "git",
  7059. "url": "https://git.drupalcode.org/project/profile.git",
  7060. "reference": "8.x-1.2"
  7061. },
  7062. "dist": {
  7063. "type": "zip",
  7064. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  7065. "reference": "8.x-1.2",
  7066. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  7067. },
  7068. "require": {
  7069. "drupal/core": "^8.8 || ^9",
  7070. "drupal/entity": "^1.0-rc2"
  7071. },
  7072. "require-dev": {
  7073. "drupal/token": "^1.7"
  7074. },
  7075. "type": "drupal-module",
  7076. "extra": {
  7077. "drupal": {
  7078. "version": "8.x-1.2",
  7079. "datestamp": "1604422701",
  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": "bojanz",
  7093. "homepage": "https://www.drupal.org/user/86106"
  7094. },
  7095. {
  7096. "name": "daggerhart",
  7097. "homepage": "https://www.drupal.org/user/167806"
  7098. },
  7099. {
  7100. "name": "fago",
  7101. "homepage": "https://www.drupal.org/user/16747"
  7102. },
  7103. {
  7104. "name": "jsacksick",
  7105. "homepage": "https://www.drupal.org/user/972218"
  7106. },
  7107. {
  7108. "name": "mglaman",
  7109. "homepage": "https://www.drupal.org/user/2416470"
  7110. },
  7111. {
  7112. "name": "pcambra",
  7113. "homepage": "https://www.drupal.org/user/122101"
  7114. }
  7115. ],
  7116. "description": "Provides configurable user profiles.",
  7117. "homepage": "http://drupal.org/project/profile",
  7118. "support": {
  7119. "source": "https://git.drupalcode.org/project/profile"
  7120. }
  7121. },
  7122. {
  7123. "name": "drupal/redirect",
  7124. "version": "1.6.0",
  7125. "source": {
  7126. "type": "git",
  7127. "url": "https://git.drupalcode.org/project/redirect.git",
  7128. "reference": "8.x-1.6"
  7129. },
  7130. "dist": {
  7131. "type": "zip",
  7132. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  7133. "reference": "8.x-1.6",
  7134. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  7135. },
  7136. "require": {
  7137. "drupal/core": "^8.8 || ^9"
  7138. },
  7139. "type": "drupal-module",
  7140. "extra": {
  7141. "drupal": {
  7142. "version": "8.x-1.6",
  7143. "datestamp": "1589312204",
  7144. "security-coverage": {
  7145. "status": "covered",
  7146. "message": "Covered by Drupal's security advisory policy"
  7147. }
  7148. }
  7149. },
  7150. "notification-url": "https://packages.drupal.org/8/downloads",
  7151. "license": [
  7152. "GPL-2.0-or-later"
  7153. ],
  7154. "authors": [
  7155. {
  7156. "name": "Berdir",
  7157. "homepage": "https://www.drupal.org/user/214652"
  7158. },
  7159. {
  7160. "name": "Dave Reid",
  7161. "homepage": "https://www.drupal.org/user/53892"
  7162. },
  7163. {
  7164. "name": "pifagor",
  7165. "homepage": "https://www.drupal.org/user/2375692"
  7166. }
  7167. ],
  7168. "description": "Allows users to redirect from old URLs to new URLs.",
  7169. "homepage": "https://www.drupal.org/project/redirect",
  7170. "support": {
  7171. "source": "https://git.drupalcode.org/project/redirect"
  7172. }
  7173. },
  7174. {
  7175. "name": "drupal/redirect_after_login",
  7176. "version": "2.7.0",
  7177. "source": {
  7178. "type": "git",
  7179. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  7180. "reference": "8.x-2.7"
  7181. },
  7182. "dist": {
  7183. "type": "zip",
  7184. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.7.zip",
  7185. "reference": "8.x-2.7",
  7186. "shasum": "3ce87df792e918c2ec5a00e24818c893e558d111"
  7187. },
  7188. "require": {
  7189. "drupal/core": "^8 || ^9"
  7190. },
  7191. "type": "drupal-module",
  7192. "extra": {
  7193. "drupal": {
  7194. "version": "8.x-2.7",
  7195. "datestamp": "1611645039",
  7196. "security-coverage": {
  7197. "status": "covered",
  7198. "message": "Covered by Drupal's security advisory policy"
  7199. }
  7200. }
  7201. },
  7202. "notification-url": "https://packages.drupal.org/8/downloads",
  7203. "license": [
  7204. "GPL-2.0+"
  7205. ],
  7206. "authors": [
  7207. {
  7208. "name": "Shamsher Alam",
  7209. "homepage": "https://www.drupal.org/u/shamsher_alam",
  7210. "role": "Author"
  7211. },
  7212. {
  7213. "name": "pen",
  7214. "homepage": "https://www.drupal.org/user/2435634"
  7215. },
  7216. {
  7217. "name": "prempatel2447",
  7218. "homepage": "https://www.drupal.org/user/3250112"
  7219. },
  7220. {
  7221. "name": "rahul-kr-sh",
  7222. "homepage": "https://www.drupal.org/user/3561577"
  7223. }
  7224. ],
  7225. "description": "Redirect user after login to a configured url",
  7226. "homepage": "https://drupal.org/project/redirect_after_login",
  7227. "support": {
  7228. "source": "https://git.drupalcode.org/project/redirect_after_login"
  7229. }
  7230. },
  7231. {
  7232. "name": "drupal/redis",
  7233. "version": "1.5.0",
  7234. "source": {
  7235. "type": "git",
  7236. "url": "https://git.drupalcode.org/project/redis.git",
  7237. "reference": "8.x-1.5"
  7238. },
  7239. "dist": {
  7240. "type": "zip",
  7241. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7242. "reference": "8.x-1.5",
  7243. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7244. },
  7245. "require": {
  7246. "drupal/core": "^8.8 || ^9"
  7247. },
  7248. "suggest": {
  7249. "predis/predis": "^1.1.1"
  7250. },
  7251. "type": "drupal-module",
  7252. "extra": {
  7253. "drupal": {
  7254. "version": "8.x-1.5",
  7255. "datestamp": "1609972488",
  7256. "security-coverage": {
  7257. "status": "covered",
  7258. "message": "Covered by Drupal's security advisory policy"
  7259. }
  7260. }
  7261. },
  7262. "autoload": {
  7263. "psr-4": {
  7264. "Drupal\\redis\\": "src"
  7265. }
  7266. },
  7267. "notification-url": "https://packages.drupal.org/8/downloads",
  7268. "license": [
  7269. "GPL-2.0-or-later"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "Berdir",
  7274. "homepage": "https://www.drupal.org/user/214652"
  7275. },
  7276. {
  7277. "name": "pounard",
  7278. "homepage": "https://www.drupal.org/user/240164"
  7279. }
  7280. ],
  7281. "description": "Integration of Drupal with the Redis key-value store.",
  7282. "homepage": "https://www.drupal.org/project/redis",
  7283. "support": {
  7284. "source": "https://git.drupalcode.org/project/redis"
  7285. }
  7286. },
  7287. {
  7288. "name": "drupal/search_api",
  7289. "version": "1.19.0",
  7290. "source": {
  7291. "type": "git",
  7292. "url": "https://git.drupalcode.org/project/search_api.git",
  7293. "reference": "8.x-1.19"
  7294. },
  7295. "dist": {
  7296. "type": "zip",
  7297. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  7298. "reference": "8.x-1.19",
  7299. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  7300. },
  7301. "require": {
  7302. "drupal/core": "^8.8 || ^9"
  7303. },
  7304. "conflict": {
  7305. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7306. },
  7307. "require-dev": {
  7308. "drupal/language_fallback_fix": "@dev",
  7309. "drupal/search_api_autocomplete": "@dev",
  7310. "drupal/search_api_db": "*"
  7311. },
  7312. "suggest": {
  7313. "drupal/facets": "Adds the ability to create faceted searches.",
  7314. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7315. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7316. },
  7317. "type": "drupal-module",
  7318. "extra": {
  7319. "drupal": {
  7320. "version": "8.x-1.19",
  7321. "datestamp": "1612192040",
  7322. "security-coverage": {
  7323. "status": "covered",
  7324. "message": "Covered by Drupal's security advisory policy"
  7325. }
  7326. },
  7327. "drush": {
  7328. "services": {
  7329. "drush.services.yml": "^9"
  7330. }
  7331. }
  7332. },
  7333. "notification-url": "https://packages.drupal.org/8/downloads",
  7334. "license": [
  7335. "GPL-2.0-or-later"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Thomas Seidl",
  7340. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7341. },
  7342. {
  7343. "name": "Nick Veenhof",
  7344. "homepage": "https://www.drupal.org/u/nick_vh"
  7345. },
  7346. {
  7347. "name": "See other contributors",
  7348. "homepage": "https://www.drupal.org/node/790418/committers"
  7349. }
  7350. ],
  7351. "description": "Provides a generic framework for modules offering search capabilities.",
  7352. "homepage": "https://www.drupal.org/project/search_api",
  7353. "support": {
  7354. "source": "https://git.drupalcode.org/project/search_api",
  7355. "issues": "https://www.drupal.org/project/issues/search_api",
  7356. "irc": "irc://irc.freenode.org/drupal-search-api"
  7357. }
  7358. },
  7359. {
  7360. "name": "drupal/search_api_db",
  7361. "version": "1.18.0",
  7362. "require": {
  7363. "drupal/core": "^8.8 || ^9",
  7364. "drupal/search_api": "*"
  7365. },
  7366. "type": "metapackage",
  7367. "extra": {
  7368. "drupal": {
  7369. "version": "8.x-1.18",
  7370. "datestamp": "1605204423",
  7371. "security-coverage": {
  7372. "status": "covered",
  7373. "message": "Covered by Drupal's security advisory policy"
  7374. }
  7375. }
  7376. },
  7377. "notification-url": "https://packages.drupal.org/8/downloads",
  7378. "license": [
  7379. "GPL-2.0-or-later"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Nick_vh",
  7384. "homepage": "https://www.drupal.org/user/122682"
  7385. },
  7386. {
  7387. "name": "borisson_",
  7388. "homepage": "https://www.drupal.org/user/2393360"
  7389. },
  7390. {
  7391. "name": "drunken monkey",
  7392. "homepage": "https://www.drupal.org/user/205582"
  7393. }
  7394. ],
  7395. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7396. "homepage": "https://www.drupal.org/project/search_api",
  7397. "support": {
  7398. "source": "https://git.drupalcode.org/project/search_api"
  7399. }
  7400. },
  7401. {
  7402. "name": "drupal/smart_trim",
  7403. "version": "1.3.0",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7407. "reference": "8.x-1.3"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7412. "reference": "8.x-1.3",
  7413. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7414. },
  7415. "require": {
  7416. "drupal/core": "^8 || ^9"
  7417. },
  7418. "type": "drupal-module",
  7419. "extra": {
  7420. "drupal": {
  7421. "version": "8.x-1.3",
  7422. "datestamp": "1589766531",
  7423. "security-coverage": {
  7424. "status": "covered",
  7425. "message": "Covered by Drupal's security advisory policy"
  7426. }
  7427. }
  7428. },
  7429. "notification-url": "https://packages.drupal.org/8/downloads",
  7430. "license": [
  7431. "GPL-2.0-or-later"
  7432. ],
  7433. "authors": [
  7434. {
  7435. "name": "Mark Casias (markie)",
  7436. "homepage": "https://www.drupal.org/u/markie",
  7437. "role": "Maintainer"
  7438. },
  7439. {
  7440. "name": "chrisjlee",
  7441. "homepage": "https://www.drupal.org/user/760600"
  7442. },
  7443. {
  7444. "name": "drywall",
  7445. "homepage": "https://www.drupal.org/user/192591"
  7446. },
  7447. {
  7448. "name": "jsenich",
  7449. "homepage": "https://www.drupal.org/user/58871"
  7450. },
  7451. {
  7452. "name": "markie",
  7453. "homepage": "https://www.drupal.org/user/206687"
  7454. },
  7455. {
  7456. "name": "newsignature",
  7457. "homepage": "https://www.drupal.org/user/765518"
  7458. }
  7459. ],
  7460. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7461. "homepage": "https://drupal.org/project/smart_trim",
  7462. "support": {
  7463. "source": "https://cgit.drupalcode.org/smart_trim",
  7464. "issues": "https://drupal.org/project/issues/smart_trim"
  7465. }
  7466. },
  7467. {
  7468. "name": "drupal/smtp",
  7469. "version": "1.0.0",
  7470. "source": {
  7471. "type": "git",
  7472. "url": "https://git.drupalcode.org/project/smtp.git",
  7473. "reference": "8.x-1.0"
  7474. },
  7475. "dist": {
  7476. "type": "zip",
  7477. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7478. "reference": "8.x-1.0",
  7479. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7480. },
  7481. "require": {
  7482. "drupal/core": "^8.8 || ^9",
  7483. "phpmailer/phpmailer": "^6.1.7"
  7484. },
  7485. "suggest": {
  7486. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7487. },
  7488. "type": "drupal-module",
  7489. "extra": {
  7490. "drupal": {
  7491. "version": "8.x-1.0",
  7492. "datestamp": "1601070985",
  7493. "security-coverage": {
  7494. "status": "covered",
  7495. "message": "Covered by Drupal's security advisory policy"
  7496. }
  7497. },
  7498. "branch-alias": {
  7499. "dev-8.x-1.x": "1.x-dev"
  7500. }
  7501. },
  7502. "notification-url": "https://packages.drupal.org/8/downloads",
  7503. "license": [
  7504. "GPL-2.0-or-later"
  7505. ],
  7506. "authors": [
  7507. {
  7508. "name": "LukeLast",
  7509. "homepage": "https://www.drupal.org/user/30151"
  7510. },
  7511. {
  7512. "name": "japerry",
  7513. "homepage": "https://www.drupal.org/user/45640"
  7514. },
  7515. {
  7516. "name": "josesanmartin",
  7517. "homepage": "https://www.drupal.org/user/72012"
  7518. },
  7519. {
  7520. "name": "oadaeh",
  7521. "homepage": "https://www.drupal.org/user/4649"
  7522. },
  7523. {
  7524. "name": "sadashiv",
  7525. "homepage": "https://www.drupal.org/user/1773304"
  7526. },
  7527. {
  7528. "name": "wundo",
  7529. "homepage": "https://www.drupal.org/user/25523"
  7530. },
  7531. {
  7532. "name": "yettyn",
  7533. "homepage": "https://www.drupal.org/user/93281"
  7534. }
  7535. ],
  7536. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7537. "homepage": "https://www.drupal.org/project/smtp",
  7538. "support": {
  7539. "source": "https://git.drupalcode.org/project/smtp",
  7540. "issues": "https://www.drupal.org/project/issues/smtp"
  7541. }
  7542. },
  7543. {
  7544. "name": "drupal/sophron",
  7545. "version": "1.1.0",
  7546. "source": {
  7547. "type": "git",
  7548. "url": "https://git.drupalcode.org/project/sophron.git",
  7549. "reference": "8.x-1.1"
  7550. },
  7551. "dist": {
  7552. "type": "zip",
  7553. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7554. "reference": "8.x-1.1",
  7555. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7556. },
  7557. "require": {
  7558. "drupal/core": "^8.9 || ^9",
  7559. "fileeye/mimemap": "^1.1.4",
  7560. "php": ">=7.1"
  7561. },
  7562. "type": "drupal-module",
  7563. "extra": {
  7564. "drupal": {
  7565. "version": "8.x-1.1",
  7566. "datestamp": "1606047077",
  7567. "security-coverage": {
  7568. "status": "covered",
  7569. "message": "Covered by Drupal's security advisory policy"
  7570. }
  7571. }
  7572. },
  7573. "autoload": {
  7574. "psr-4": {
  7575. "Drupal\\sophron\\": "src/"
  7576. }
  7577. },
  7578. "notification-url": "https://packages.drupal.org/8/downloads",
  7579. "license": [
  7580. "GPL-2.0-or-later"
  7581. ],
  7582. "authors": [
  7583. {
  7584. "name": "mondrake",
  7585. "homepage": "https://www.drupal.org/user/1307444"
  7586. }
  7587. ],
  7588. "description": "Provides an extensive MIME types management API",
  7589. "homepage": "https://www.drupal.org/project/sophron",
  7590. "support": {
  7591. "source": "https://git.drupalcode.org/project/sophron"
  7592. }
  7593. },
  7594. {
  7595. "name": "drupal/synonyms",
  7596. "version": "dev-1.x",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://git.drupalcode.org/project/synonyms.git",
  7600. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7601. },
  7602. "require": {
  7603. "drupal/core": "^8 || ^9"
  7604. },
  7605. "type": "drupal-module",
  7606. "extra": {
  7607. "branch-alias": {
  7608. "dev-1.x": "1.x-dev"
  7609. },
  7610. "drupal": {
  7611. "version": "8.x-1.0-alpha1+23-dev",
  7612. "datestamp": "1607727823",
  7613. "security-coverage": {
  7614. "status": "not-covered",
  7615. "message": "Dev releases are not covered by Drupal security advisories."
  7616. }
  7617. }
  7618. },
  7619. "notification-url": "https://packages.drupal.org/8/downloads",
  7620. "license": [
  7621. "GPL-2.0-or-later"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "Zen",
  7626. "homepage": "https://www.drupal.org/user/21209"
  7627. },
  7628. {
  7629. "name": "bojanz",
  7630. "homepage": "https://www.drupal.org/user/86106"
  7631. },
  7632. {
  7633. "name": "bucefal91",
  7634. "homepage": "https://www.drupal.org/user/504128"
  7635. },
  7636. {
  7637. "name": "devad",
  7638. "homepage": "https://www.drupal.org/user/2268520"
  7639. }
  7640. ],
  7641. "description": "Provides synonyms feature for content entities.",
  7642. "homepage": "https://www.drupal.org/project/synonyms",
  7643. "support": {
  7644. "source": "https://git.drupalcode.org/project/synonyms"
  7645. },
  7646. "time": "2020-12-11T23:17:33+00:00"
  7647. },
  7648. {
  7649. "name": "drupal/taxonomy_unique",
  7650. "version": "2.3.0",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://git.drupalcode.org/project/taxonomy_unique.git",
  7654. "reference": "8.x-2.3"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://ftp.drupal.org/files/projects/taxonomy_unique-8.x-2.3.zip",
  7659. "reference": "8.x-2.3",
  7660. "shasum": "550d06d5b9c670538b93e0aa31b43b4eb1a76f7e"
  7661. },
  7662. "require": {
  7663. "drupal/core": "^8 || ^9"
  7664. },
  7665. "require-dev": {
  7666. "drupal/coder": "^8.3.6",
  7667. "squizlabs/php_codesniffer": "^3.4.1"
  7668. },
  7669. "type": "drupal-module",
  7670. "extra": {
  7671. "drupal": {
  7672. "version": "8.x-2.3",
  7673. "datestamp": "1591087096",
  7674. "security-coverage": {
  7675. "status": "covered",
  7676. "message": "Covered by Drupal's security advisory policy"
  7677. }
  7678. }
  7679. },
  7680. "notification-url": "https://packages.drupal.org/8/downloads",
  7681. "scripts": {
  7682. "post-install-cmd": [
  7683. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7684. "./vendor/bin/phpcs --config-set show_progress 1"
  7685. ],
  7686. "post-update-cmd": [
  7687. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7688. "./vendor/bin/phpcs --config-set show_progress 1"
  7689. ],
  7690. "phpcs": [
  7691. "./vendor/bin/phpcs --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7692. ],
  7693. "phpcbf": [
  7694. "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7695. ]
  7696. },
  7697. "license": [
  7698. "GPL-2.0+"
  7699. ],
  7700. "authors": [
  7701. {
  7702. "name": "Rafael Schally",
  7703. "homepage": "https://www.drupal.org/user/856550",
  7704. "email": "rafael.schally@gmail.com"
  7705. }
  7706. ],
  7707. "description": "Checks for duplicate occurrences of term names.",
  7708. "homepage": "https://www.drupal.org/project/taxonomy_unique",
  7709. "keywords": [
  7710. "drupal",
  7711. "taxonomy",
  7712. "ui"
  7713. ],
  7714. "support": {
  7715. "source": "https://git.drupalcode.org/project/taxonomy_unique"
  7716. }
  7717. },
  7718. {
  7719. "name": "drupal/token",
  7720. "version": "1.9.0",
  7721. "source": {
  7722. "type": "git",
  7723. "url": "https://git.drupalcode.org/project/token.git",
  7724. "reference": "8.x-1.9"
  7725. },
  7726. "dist": {
  7727. "type": "zip",
  7728. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7729. "reference": "8.x-1.9",
  7730. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7731. },
  7732. "require": {
  7733. "drupal/core": "^8.8 || ^9"
  7734. },
  7735. "type": "drupal-module",
  7736. "extra": {
  7737. "drupal": {
  7738. "version": "8.x-1.9",
  7739. "datestamp": "1608284866",
  7740. "security-coverage": {
  7741. "status": "covered",
  7742. "message": "Covered by Drupal's security advisory policy"
  7743. }
  7744. },
  7745. "drush": {
  7746. "services": {
  7747. "drush.services.yml": "^9 || ^10"
  7748. }
  7749. }
  7750. },
  7751. "notification-url": "https://packages.drupal.org/8/downloads",
  7752. "license": [
  7753. "GPL-2.0-or-later"
  7754. ],
  7755. "authors": [
  7756. {
  7757. "name": "Berdir",
  7758. "homepage": "https://www.drupal.org/user/214652"
  7759. },
  7760. {
  7761. "name": "Dave Reid",
  7762. "homepage": "https://www.drupal.org/user/53892"
  7763. },
  7764. {
  7765. "name": "eaton",
  7766. "homepage": "https://www.drupal.org/user/16496"
  7767. },
  7768. {
  7769. "name": "fago",
  7770. "homepage": "https://www.drupal.org/user/16747"
  7771. },
  7772. {
  7773. "name": "greggles",
  7774. "homepage": "https://www.drupal.org/user/36762"
  7775. },
  7776. {
  7777. "name": "mikeryan",
  7778. "homepage": "https://www.drupal.org/user/4420"
  7779. }
  7780. ],
  7781. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7782. "homepage": "https://www.drupal.org/project/token",
  7783. "support": {
  7784. "source": "https://git.drupalcode.org/project/token"
  7785. }
  7786. },
  7787. {
  7788. "name": "drupal/translation_views",
  7789. "version": "1.0.0-alpha10",
  7790. "source": {
  7791. "type": "git",
  7792. "url": "https://git.drupalcode.org/project/translation_views.git",
  7793. "reference": "8.x-1.0-alpha10"
  7794. },
  7795. "dist": {
  7796. "type": "zip",
  7797. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7798. "reference": "8.x-1.0-alpha10",
  7799. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7800. },
  7801. "require": {
  7802. "drupal/core": "^8.8 || ^9"
  7803. },
  7804. "require-dev": {
  7805. "drupal/translators": "*",
  7806. "drupal/translators_content": "*"
  7807. },
  7808. "type": "drupal-module",
  7809. "extra": {
  7810. "drupal": {
  7811. "version": "8.x-1.0-alpha10",
  7812. "datestamp": "1584303687",
  7813. "security-coverage": {
  7814. "status": "not-covered",
  7815. "message": "Project has not opted into security advisory coverage!"
  7816. }
  7817. }
  7818. },
  7819. "notification-url": "https://packages.drupal.org/8/downloads",
  7820. "license": [
  7821. "GPL-2.0-or-later"
  7822. ],
  7823. "authors": [
  7824. {
  7825. "name": "matsbla",
  7826. "homepage": "https://www.drupal.org/user/2325394"
  7827. },
  7828. {
  7829. "name": "vlad.dancer",
  7830. "homepage": "https://www.drupal.org/user/903844"
  7831. }
  7832. ],
  7833. "description": "Create customized lists and queries of translations from your database.",
  7834. "homepage": "https://www.drupal.org/project/translation_views",
  7835. "support": {
  7836. "source": "https://git.drupalcode.org/project/translation_views"
  7837. }
  7838. },
  7839. {
  7840. "name": "drupal/typed_data",
  7841. "version": "dev-1.x",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://git.drupalcode.org/project/typed_data.git",
  7845. "reference": "6be2072b6d1a3255fd4af62c624976080c47d1a3"
  7846. },
  7847. "require": {
  7848. "drupal/core": "^9 || ^10"
  7849. },
  7850. "type": "drupal-module",
  7851. "extra": {
  7852. "branch-alias": {
  7853. "dev-1.x": "1.x-dev"
  7854. },
  7855. "drupal": {
  7856. "version": "8.x-1.0-beta1+6-dev",
  7857. "datestamp": "1642914208",
  7858. "security-coverage": {
  7859. "status": "not-covered",
  7860. "message": "Dev releases are not covered by Drupal security advisories."
  7861. }
  7862. },
  7863. "drush": {
  7864. "services": {
  7865. "drush.services.yml": "^9 || ^10"
  7866. }
  7867. }
  7868. },
  7869. "notification-url": "https://packages.drupal.org/8/downloads",
  7870. "license": [
  7871. "GPL-2.0-or-later"
  7872. ],
  7873. "authors": [
  7874. {
  7875. "name": "TR",
  7876. "homepage": "https://www.drupal.org/user/202830"
  7877. },
  7878. {
  7879. "name": "fago",
  7880. "homepage": "https://www.drupal.org/user/16747"
  7881. }
  7882. ],
  7883. "description": "Extends the core Typed Data API with new APIs and features.",
  7884. "homepage": "https://www.drupal.org/project/typed_data",
  7885. "support": {
  7886. "source": "https://git.drupalcode.org/project/typed_data",
  7887. "issues": "https://www.drupal.org/project/issues/typed_data"
  7888. }
  7889. },
  7890. {
  7891. "name": "drupal/ultimate_cron",
  7892. "version": "2.0.0-alpha5",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7896. "reference": "8.x-2.0-alpha5"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7901. "reference": "8.x-2.0-alpha5",
  7902. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7903. },
  7904. "require": {
  7905. "drupal/core": "^8.7.7 || ^9"
  7906. },
  7907. "type": "drupal-module",
  7908. "extra": {
  7909. "drupal": {
  7910. "version": "8.x-2.0-alpha5",
  7911. "datestamp": "1600928948",
  7912. "security-coverage": {
  7913. "status": "not-covered",
  7914. "message": "Alpha releases are not covered by Drupal security advisories."
  7915. }
  7916. },
  7917. "drush": {
  7918. "services": {
  7919. "drush.services.yml": "^9 || ^10"
  7920. }
  7921. }
  7922. },
  7923. "notification-url": "https://packages.drupal.org/8/downloads",
  7924. "license": [
  7925. "GPL-2.0+"
  7926. ],
  7927. "authors": [
  7928. {
  7929. "name": "Berdir",
  7930. "homepage": "https://www.drupal.org/user/214652"
  7931. },
  7932. {
  7933. "name": "Dane Powell",
  7934. "homepage": "https://www.drupal.org/user/339326"
  7935. },
  7936. {
  7937. "name": "Primsi",
  7938. "homepage": "https://www.drupal.org/user/282629"
  7939. },
  7940. {
  7941. "name": "arnested",
  7942. "homepage": "https://www.drupal.org/user/245635"
  7943. },
  7944. {
  7945. "name": "gielfeldt",
  7946. "homepage": "https://www.drupal.org/user/366993"
  7947. },
  7948. {
  7949. "name": "miro_dietiker",
  7950. "homepage": "https://www.drupal.org/user/227761"
  7951. }
  7952. ],
  7953. "description": "Ultimate cron",
  7954. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7955. "support": {
  7956. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7957. }
  7958. },
  7959. {
  7960. "name": "drupal/url_to_video_filter",
  7961. "version": "2.0.0",
  7962. "source": {
  7963. "type": "git",
  7964. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7965. "reference": "2.0.0"
  7966. },
  7967. "dist": {
  7968. "type": "zip",
  7969. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7970. "reference": "2.0.0",
  7971. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7972. },
  7973. "require": {
  7974. "drupal/core": "^8 || ^9"
  7975. },
  7976. "type": "drupal-module",
  7977. "extra": {
  7978. "drupal": {
  7979. "version": "2.0.0",
  7980. "datestamp": "1607298389",
  7981. "security-coverage": {
  7982. "status": "covered",
  7983. "message": "Covered by Drupal's security advisory policy"
  7984. }
  7985. }
  7986. },
  7987. "notification-url": "https://packages.drupal.org/8/downloads",
  7988. "license": [
  7989. "GPL-2.0-or-later"
  7990. ],
  7991. "authors": [
  7992. {
  7993. "name": "Jaypan",
  7994. "homepage": "https://www.drupal.org/user/324696"
  7995. }
  7996. ],
  7997. "description": "Text filter to convert URLs to embedded videos",
  7998. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7999. "support": {
  8000. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  8001. }
  8002. },
  8003. {
  8004. "name": "drupal/video_embed_field",
  8005. "version": "2.4.0",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  8009. "reference": "8.x-2.4"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  8014. "reference": "8.x-2.4",
  8015. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  8016. },
  8017. "require": {
  8018. "drupal/core": "^8.8 || ^9"
  8019. },
  8020. "require-dev": {
  8021. "drupal/colorbox": "^1.0",
  8022. "drupal/video_embed_media": "*"
  8023. },
  8024. "type": "drupal-module",
  8025. "extra": {
  8026. "drupal": {
  8027. "version": "8.x-2.4",
  8028. "datestamp": "1587686337",
  8029. "security-coverage": {
  8030. "status": "covered",
  8031. "message": "Covered by Drupal's security advisory policy"
  8032. }
  8033. }
  8034. },
  8035. "notification-url": "https://packages.drupal.org/8/downloads",
  8036. "license": [
  8037. "GPL-2.0+"
  8038. ],
  8039. "authors": [
  8040. {
  8041. "name": "Sam152",
  8042. "homepage": "https://www.drupal.org/user/1485048"
  8043. },
  8044. {
  8045. "name": "jec006",
  8046. "homepage": "https://www.drupal.org/user/855980"
  8047. },
  8048. {
  8049. "name": "plopesc",
  8050. "homepage": "https://www.drupal.org/user/282415"
  8051. }
  8052. ],
  8053. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8054. "homepage": "https://www.drupal.org/project/video_embed_field",
  8055. "support": {
  8056. "source": "https://git.drupalcode.org/project/video_embed_field"
  8057. }
  8058. },
  8059. {
  8060. "name": "drupal/views_autocomplete_filters",
  8061. "version": "1.3.0",
  8062. "source": {
  8063. "type": "git",
  8064. "url": "https://git.drupalcode.org/project/views_autocomplete_filters.git",
  8065. "reference": "8.x-1.3"
  8066. },
  8067. "dist": {
  8068. "type": "zip",
  8069. "url": "https://ftp.drupal.org/files/projects/views_autocomplete_filters-8.x-1.3.zip",
  8070. "reference": "8.x-1.3",
  8071. "shasum": "55762182e55c70f117d5edb8692049e0881ec4ce"
  8072. },
  8073. "require": {
  8074. "drupal/core": "^8 || ^9"
  8075. },
  8076. "type": "drupal-module",
  8077. "extra": {
  8078. "drupal": {
  8079. "version": "8.x-1.3",
  8080. "datestamp": "1587146330",
  8081. "security-coverage": {
  8082. "status": "covered",
  8083. "message": "Covered by Drupal's security advisory policy"
  8084. }
  8085. }
  8086. },
  8087. "notification-url": "https://packages.drupal.org/8/downloads",
  8088. "license": [
  8089. "GPL-2.0-or-later"
  8090. ],
  8091. "authors": [
  8092. {
  8093. "name": "RobLoach",
  8094. "homepage": "https://www.drupal.org/user/61114"
  8095. },
  8096. {
  8097. "name": "colan",
  8098. "homepage": "https://www.drupal.org/user/58704"
  8099. },
  8100. {
  8101. "name": "vasike",
  8102. "homepage": "https://www.drupal.org/user/156237"
  8103. }
  8104. ],
  8105. "description": "Add autocomplete functionality to the views filter text fields.",
  8106. "homepage": "https://www.drupal.org/project/views_autocomplete_filters",
  8107. "keywords": [
  8108. "Drupal",
  8109. "views_autocomplete_filters"
  8110. ],
  8111. "support": {
  8112. "source": "https://git.drupalcode.org/project/views_autocomplete_filters",
  8113. "issues": "https://www.drupal.org/project/issues/views_autocomplete_filters"
  8114. }
  8115. },
  8116. {
  8117. "name": "drupal/views_bulk_edit",
  8118. "version": "2.6.0",
  8119. "source": {
  8120. "type": "git",
  8121. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8122. "reference": "8.x-2.6"
  8123. },
  8124. "dist": {
  8125. "type": "zip",
  8126. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.6.zip",
  8127. "reference": "8.x-2.6",
  8128. "shasum": "0e0f1dab2fa0903cbe2656e754b0d9ed3a935fbb"
  8129. },
  8130. "require": {
  8131. "drupal/core": "^8 || ^9"
  8132. },
  8133. "require-dev": {
  8134. "drupal/views_bulk_operations": "~3.0"
  8135. },
  8136. "suggest": {
  8137. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8138. },
  8139. "type": "drupal-module",
  8140. "extra": {
  8141. "drupal": {
  8142. "version": "8.x-2.6",
  8143. "datestamp": "1623748025",
  8144. "security-coverage": {
  8145. "status": "covered",
  8146. "message": "Covered by Drupal's security advisory policy"
  8147. }
  8148. }
  8149. },
  8150. "notification-url": "https://packages.drupal.org/8/downloads",
  8151. "license": [
  8152. "GPL-2.0+"
  8153. ],
  8154. "authors": [
  8155. {
  8156. "name": "Marcin Grabias",
  8157. "homepage": "https://www.drupal.org/u/graber"
  8158. },
  8159. {
  8160. "name": "benjy",
  8161. "homepage": "https://www.drupal.org/user/1852732"
  8162. }
  8163. ],
  8164. "description": "Allows bulk edition of entity field values.",
  8165. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8166. "support": {
  8167. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8168. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8169. }
  8170. },
  8171. {
  8172. "name": "drupal/views_bulk_operations",
  8173. "version": "3.13.0",
  8174. "source": {
  8175. "type": "git",
  8176. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8177. "reference": "8.x-3.13"
  8178. },
  8179. "dist": {
  8180. "type": "zip",
  8181. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  8182. "reference": "8.x-3.13",
  8183. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  8184. },
  8185. "require": {
  8186. "drupal/core": "^8.8 || ^9"
  8187. },
  8188. "require-dev": {
  8189. "drush/drush": "^10"
  8190. },
  8191. "suggest": {
  8192. "drush/drush": "^9 || ^10"
  8193. },
  8194. "type": "drupal-module",
  8195. "extra": {
  8196. "drupal": {
  8197. "version": "8.x-3.13",
  8198. "datestamp": "1619697066",
  8199. "security-coverage": {
  8200. "status": "covered",
  8201. "message": "Covered by Drupal's security advisory policy"
  8202. }
  8203. },
  8204. "drush": {
  8205. "services": {
  8206. "drush.services.yml": "^9 || ^10"
  8207. }
  8208. }
  8209. },
  8210. "notification-url": "https://packages.drupal.org/8/downloads",
  8211. "license": [
  8212. "GPL-2.0-or-later"
  8213. ],
  8214. "authors": [
  8215. {
  8216. "name": "Marcin Grabias",
  8217. "homepage": "https://www.drupal.org/u/graber"
  8218. },
  8219. {
  8220. "name": "Jon Pugh",
  8221. "homepage": "https://www.drupal.org/user/17028"
  8222. },
  8223. {
  8224. "name": "bojanz",
  8225. "homepage": "https://www.drupal.org/user/86106"
  8226. },
  8227. {
  8228. "name": "infojunkie",
  8229. "homepage": "https://www.drupal.org/user/48424"
  8230. },
  8231. {
  8232. "name": "joelpittet",
  8233. "homepage": "https://www.drupal.org/user/160302"
  8234. }
  8235. ],
  8236. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8237. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8238. "support": {
  8239. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8240. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8241. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8242. }
  8243. },
  8244. {
  8245. "name": "drupal/views_ef_fieldset",
  8246. "version": "1.5.0",
  8247. "source": {
  8248. "type": "git",
  8249. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8250. "reference": "8.x-1.5"
  8251. },
  8252. "dist": {
  8253. "type": "zip",
  8254. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8255. "reference": "8.x-1.5",
  8256. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8257. },
  8258. "require": {
  8259. "drupal/core": "^8 || ^9",
  8260. "php": ">=7"
  8261. },
  8262. "type": "drupal-module",
  8263. "extra": {
  8264. "drupal": {
  8265. "version": "8.x-1.5",
  8266. "datestamp": "1604567512",
  8267. "security-coverage": {
  8268. "status": "covered",
  8269. "message": "Covered by Drupal's security advisory policy"
  8270. }
  8271. },
  8272. "composer-exit-on-patch-failure": true,
  8273. "enable-patching": true,
  8274. "patches": {
  8275. "drupal/core": {
  8276. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8277. }
  8278. }
  8279. },
  8280. "autoload-dev": {
  8281. "psr-4": {
  8282. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8283. }
  8284. },
  8285. "notification-url": "https://packages.drupal.org/8/downloads",
  8286. "scripts": {
  8287. "grumphp": [
  8288. "./vendor/bin/grumphp run"
  8289. ]
  8290. },
  8291. "license": [
  8292. "GPL-2.0+"
  8293. ],
  8294. "authors": [
  8295. {
  8296. "name": "Pol Dellaiera",
  8297. "homepage": "https://www.drupal.org/user/47194",
  8298. "email": "pol.dellaiera@protonmail.com"
  8299. },
  8300. {
  8301. "name": "ciss",
  8302. "homepage": "https://www.drupal.org/user/1632364"
  8303. }
  8304. ],
  8305. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8306. "homepage": "https://drupal.org/project/views_field_formatter",
  8307. "support": {
  8308. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8309. }
  8310. },
  8311. {
  8312. "name": "drush/drush",
  8313. "version": "10.3.6",
  8314. "source": {
  8315. "type": "git",
  8316. "url": "https://github.com/drush-ops/drush.git",
  8317. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  8318. },
  8319. "dist": {
  8320. "type": "zip",
  8321. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8322. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8323. "shasum": ""
  8324. },
  8325. "require": {
  8326. "chi-teck/drupal-code-generator": "^1.32.1",
  8327. "composer/semver": "^1.4 || ^3",
  8328. "consolidation/config": "^1.2",
  8329. "consolidation/filter-via-dot-access-data": "^1",
  8330. "consolidation/robo": "^1.4.11 || ^2",
  8331. "consolidation/site-alias": "^3.0.0@stable",
  8332. "consolidation/site-process": "^2.1 || ^4",
  8333. "ext-dom": "*",
  8334. "grasmash/yaml-expander": "^1.1.1",
  8335. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8336. "league/container": "~2",
  8337. "php": ">=7.1.3",
  8338. "psr/log": "~1.0",
  8339. "psy/psysh": "~0.6",
  8340. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8341. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8342. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8343. "symfony/yaml": "^3.4 || ^4.0",
  8344. "webflo/drupal-finder": "^1.2",
  8345. "webmozart/path-util": "^2.1.0"
  8346. },
  8347. "require-dev": {
  8348. "composer/installers": "^1.7",
  8349. "cweagans/composer-patches": "~1.0",
  8350. "david-garcia/phpwhois": "4.3.0",
  8351. "drupal/alinks": "1.0.0",
  8352. "drupal/core-recommended": "^8.8",
  8353. "lox/xhprof": "dev-master",
  8354. "phpunit/phpunit": "^4.8.36 || ^6.1",
  8355. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8356. "vlucas/phpdotenv": "^2.4"
  8357. },
  8358. "bin": [
  8359. "drush"
  8360. ],
  8361. "type": "library",
  8362. "extra": {
  8363. "installer-paths": {
  8364. "sut/core": [
  8365. "type:drupal-core"
  8366. ],
  8367. "sut/libraries/{$name}": [
  8368. "type:drupal-library"
  8369. ],
  8370. "sut/modules/unish/{$name}": [
  8371. "drupal/devel"
  8372. ],
  8373. "sut/themes/unish/{$name}": [
  8374. "drupal/empty_theme"
  8375. ],
  8376. "sut/modules/contrib/{$name}": [
  8377. "type:drupal-module"
  8378. ],
  8379. "sut/profiles/contrib/{$name}": [
  8380. "type:drupal-profile"
  8381. ],
  8382. "sut/themes/contrib/{$name}": [
  8383. "type:drupal-theme"
  8384. ],
  8385. "sut/drush/contrib/{$name}": [
  8386. "type:drupal-drush"
  8387. ]
  8388. }
  8389. },
  8390. "autoload": {
  8391. "psr-4": {
  8392. "Drush\\": "src/",
  8393. "Drush\\Internal\\": "src/internal-forks"
  8394. }
  8395. },
  8396. "notification-url": "https://packagist.org/downloads/",
  8397. "license": [
  8398. "GPL-2.0-or-later"
  8399. ],
  8400. "authors": [
  8401. {
  8402. "name": "Moshe Weitzman",
  8403. "email": "weitzman@tejasa.com"
  8404. },
  8405. {
  8406. "name": "Owen Barton",
  8407. "email": "drupal@owenbarton.com"
  8408. },
  8409. {
  8410. "name": "Greg Anderson",
  8411. "email": "greg.1.anderson@greenknowe.org"
  8412. },
  8413. {
  8414. "name": "Jonathan Araña Cruz",
  8415. "email": "jonhattan@faita.net"
  8416. },
  8417. {
  8418. "name": "Jonathan Hedstrom",
  8419. "email": "jhedstrom@gmail.com"
  8420. },
  8421. {
  8422. "name": "Christopher Gervais",
  8423. "email": "chris@ergonlogic.com"
  8424. },
  8425. {
  8426. "name": "Dave Reid",
  8427. "email": "dave@davereid.net"
  8428. },
  8429. {
  8430. "name": "Damian Lee",
  8431. "email": "damiankloip@googlemail.com"
  8432. }
  8433. ],
  8434. "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.",
  8435. "homepage": "http://www.drush.org",
  8436. "funding": [
  8437. {
  8438. "url": "https://github.com/weitzman",
  8439. "type": "github"
  8440. }
  8441. ],
  8442. "time": "2020-11-11T04:36:51+00:00"
  8443. },
  8444. {
  8445. "name": "egulias/email-validator",
  8446. "version": "3.1.2",
  8447. "source": {
  8448. "type": "git",
  8449. "url": "https://github.com/egulias/EmailValidator.git",
  8450. "reference": "ee0db30118f661fb166bcffbf5d82032df484697"
  8451. },
  8452. "dist": {
  8453. "type": "zip",
  8454. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697",
  8455. "reference": "ee0db30118f661fb166bcffbf5d82032df484697",
  8456. "shasum": ""
  8457. },
  8458. "require": {
  8459. "doctrine/lexer": "^1.2",
  8460. "php": ">=7.2",
  8461. "symfony/polyfill-intl-idn": "^1.15"
  8462. },
  8463. "require-dev": {
  8464. "php-coveralls/php-coveralls": "^2.2",
  8465. "phpunit/phpunit": "^8.5.8|^9.3.3",
  8466. "vimeo/psalm": "^4"
  8467. },
  8468. "suggest": {
  8469. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8470. },
  8471. "type": "library",
  8472. "extra": {
  8473. "branch-alias": {
  8474. "dev-master": "3.0.x-dev"
  8475. }
  8476. },
  8477. "autoload": {
  8478. "psr-4": {
  8479. "Egulias\\EmailValidator\\": "src"
  8480. }
  8481. },
  8482. "notification-url": "https://packagist.org/downloads/",
  8483. "license": [
  8484. "MIT"
  8485. ],
  8486. "authors": [
  8487. {
  8488. "name": "Eduardo Gulias Davis"
  8489. }
  8490. ],
  8491. "description": "A library for validating emails against several RFCs",
  8492. "homepage": "https://github.com/egulias/EmailValidator",
  8493. "keywords": [
  8494. "email",
  8495. "emailvalidation",
  8496. "emailvalidator",
  8497. "validation",
  8498. "validator"
  8499. ],
  8500. "support": {
  8501. "issues": "https://github.com/egulias/EmailValidator/issues",
  8502. "source": "https://github.com/egulias/EmailValidator/tree/3.1.2"
  8503. },
  8504. "funding": [
  8505. {
  8506. "url": "https://github.com/egulias",
  8507. "type": "github"
  8508. }
  8509. ],
  8510. "time": "2021-10-11T09:18:27+00:00"
  8511. },
  8512. {
  8513. "name": "fileeye/mimemap",
  8514. "version": "1.1.4",
  8515. "source": {
  8516. "type": "git",
  8517. "url": "https://github.com/FileEye/MimeMap.git",
  8518. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  8519. },
  8520. "dist": {
  8521. "type": "zip",
  8522. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8523. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8524. "shasum": ""
  8525. },
  8526. "require": {
  8527. "php": ">=5.4"
  8528. },
  8529. "require-dev": {
  8530. "phpunit/phpunit": "<10",
  8531. "sebastian/comparator": "*",
  8532. "sebastian/diff": "*",
  8533. "squizlabs/php_codesniffer": "*",
  8534. "symfony/console": "*",
  8535. "symfony/filesystem": "*",
  8536. "symfony/var-dumper": "*",
  8537. "symfony/yaml": "*"
  8538. },
  8539. "bin": [
  8540. "bin/fileeye-mimemap"
  8541. ],
  8542. "type": "library",
  8543. "extra": {
  8544. "branch-alias": {
  8545. "dev-master": "1.x-dev"
  8546. }
  8547. },
  8548. "autoload": {
  8549. "psr-4": {
  8550. "FileEye\\MimeMap\\": "src/"
  8551. }
  8552. },
  8553. "notification-url": "https://packagist.org/downloads/",
  8554. "license": [
  8555. "LGPL-3.0-or-later"
  8556. ],
  8557. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8558. "homepage": "https://github.com/FileEye/MimeMap",
  8559. "keywords": [
  8560. "mime",
  8561. "mime-database",
  8562. "mime-parser",
  8563. "mime-type"
  8564. ],
  8565. "time": "2020-05-16T10:19:16+00:00"
  8566. },
  8567. {
  8568. "name": "grasmash/expander",
  8569. "version": "1.0.0",
  8570. "source": {
  8571. "type": "git",
  8572. "url": "https://github.com/grasmash/expander.git",
  8573. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  8574. },
  8575. "dist": {
  8576. "type": "zip",
  8577. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8578. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8579. "shasum": ""
  8580. },
  8581. "require": {
  8582. "dflydev/dot-access-data": "^1.1.0",
  8583. "php": ">=5.4"
  8584. },
  8585. "require-dev": {
  8586. "greg-1-anderson/composer-test-scenarios": "^1",
  8587. "phpunit/phpunit": "^4|^5.5.4",
  8588. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8589. "squizlabs/php_codesniffer": "^2.7"
  8590. },
  8591. "type": "library",
  8592. "extra": {
  8593. "branch-alias": {
  8594. "dev-master": "1.x-dev"
  8595. }
  8596. },
  8597. "autoload": {
  8598. "psr-4": {
  8599. "Grasmash\\Expander\\": "src/"
  8600. }
  8601. },
  8602. "notification-url": "https://packagist.org/downloads/",
  8603. "license": [
  8604. "MIT"
  8605. ],
  8606. "authors": [
  8607. {
  8608. "name": "Matthew Grasmick"
  8609. }
  8610. ],
  8611. "description": "Expands internal property references in PHP arrays file.",
  8612. "time": "2017-12-21T22:14:55+00:00"
  8613. },
  8614. {
  8615. "name": "grasmash/yaml-expander",
  8616. "version": "1.4.0",
  8617. "source": {
  8618. "type": "git",
  8619. "url": "https://github.com/grasmash/yaml-expander.git",
  8620. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8621. },
  8622. "dist": {
  8623. "type": "zip",
  8624. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8625. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8626. "shasum": ""
  8627. },
  8628. "require": {
  8629. "dflydev/dot-access-data": "^1.1.0",
  8630. "php": ">=5.4",
  8631. "symfony/yaml": "^2.8.11|^3|^4"
  8632. },
  8633. "require-dev": {
  8634. "greg-1-anderson/composer-test-scenarios": "^1",
  8635. "phpunit/phpunit": "^4.8|^5.5.4",
  8636. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8637. "squizlabs/php_codesniffer": "^2.7"
  8638. },
  8639. "type": "library",
  8640. "extra": {
  8641. "branch-alias": {
  8642. "dev-master": "1.x-dev"
  8643. }
  8644. },
  8645. "autoload": {
  8646. "psr-4": {
  8647. "Grasmash\\YamlExpander\\": "src/"
  8648. }
  8649. },
  8650. "notification-url": "https://packagist.org/downloads/",
  8651. "license": [
  8652. "MIT"
  8653. ],
  8654. "authors": [
  8655. {
  8656. "name": "Matthew Grasmick"
  8657. }
  8658. ],
  8659. "description": "Expands internal property references in a yaml file.",
  8660. "time": "2017-12-16T16:06:03+00:00"
  8661. },
  8662. {
  8663. "name": "guzzlehttp/guzzle",
  8664. "version": "6.5.5",
  8665. "source": {
  8666. "type": "git",
  8667. "url": "https://github.com/guzzle/guzzle.git",
  8668. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8669. },
  8670. "dist": {
  8671. "type": "zip",
  8672. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8673. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8674. "shasum": ""
  8675. },
  8676. "require": {
  8677. "ext-json": "*",
  8678. "guzzlehttp/promises": "^1.0",
  8679. "guzzlehttp/psr7": "^1.6.1",
  8680. "php": ">=5.5",
  8681. "symfony/polyfill-intl-idn": "^1.17.0"
  8682. },
  8683. "require-dev": {
  8684. "ext-curl": "*",
  8685. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8686. "psr/log": "^1.1"
  8687. },
  8688. "suggest": {
  8689. "psr/log": "Required for using the Log middleware"
  8690. },
  8691. "type": "library",
  8692. "extra": {
  8693. "branch-alias": {
  8694. "dev-master": "6.5-dev"
  8695. }
  8696. },
  8697. "autoload": {
  8698. "psr-4": {
  8699. "GuzzleHttp\\": "src/"
  8700. },
  8701. "files": [
  8702. "src/functions_include.php"
  8703. ]
  8704. },
  8705. "notification-url": "https://packagist.org/downloads/",
  8706. "license": [
  8707. "MIT"
  8708. ],
  8709. "authors": [
  8710. {
  8711. "name": "Michael Dowling",
  8712. "email": "mtdowling@gmail.com",
  8713. "homepage": "https://github.com/mtdowling"
  8714. }
  8715. ],
  8716. "description": "Guzzle is a PHP HTTP client library",
  8717. "homepage": "http://guzzlephp.org/",
  8718. "keywords": [
  8719. "client",
  8720. "curl",
  8721. "framework",
  8722. "http",
  8723. "http client",
  8724. "rest",
  8725. "web service"
  8726. ],
  8727. "support": {
  8728. "issues": "https://github.com/guzzle/guzzle/issues",
  8729. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  8730. },
  8731. "time": "2020-06-16T21:01:06+00:00"
  8732. },
  8733. {
  8734. "name": "guzzlehttp/promises",
  8735. "version": "1.5.1",
  8736. "source": {
  8737. "type": "git",
  8738. "url": "https://github.com/guzzle/promises.git",
  8739. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  8740. },
  8741. "dist": {
  8742. "type": "zip",
  8743. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  8744. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  8745. "shasum": ""
  8746. },
  8747. "require": {
  8748. "php": ">=5.5"
  8749. },
  8750. "require-dev": {
  8751. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8752. },
  8753. "type": "library",
  8754. "extra": {
  8755. "branch-alias": {
  8756. "dev-master": "1.5-dev"
  8757. }
  8758. },
  8759. "autoload": {
  8760. "psr-4": {
  8761. "GuzzleHttp\\Promise\\": "src/"
  8762. },
  8763. "files": [
  8764. "src/functions_include.php"
  8765. ]
  8766. },
  8767. "notification-url": "https://packagist.org/downloads/",
  8768. "license": [
  8769. "MIT"
  8770. ],
  8771. "authors": [
  8772. {
  8773. "name": "Graham Campbell",
  8774. "email": "hello@gjcampbell.co.uk",
  8775. "homepage": "https://github.com/GrahamCampbell"
  8776. },
  8777. {
  8778. "name": "Michael Dowling",
  8779. "email": "mtdowling@gmail.com",
  8780. "homepage": "https://github.com/mtdowling"
  8781. },
  8782. {
  8783. "name": "Tobias Nyholm",
  8784. "email": "tobias.nyholm@gmail.com",
  8785. "homepage": "https://github.com/Nyholm"
  8786. },
  8787. {
  8788. "name": "Tobias Schultze",
  8789. "email": "webmaster@tubo-world.de",
  8790. "homepage": "https://github.com/Tobion"
  8791. }
  8792. ],
  8793. "description": "Guzzle promises library",
  8794. "keywords": [
  8795. "promise"
  8796. ],
  8797. "support": {
  8798. "issues": "https://github.com/guzzle/promises/issues",
  8799. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  8800. },
  8801. "funding": [
  8802. {
  8803. "url": "https://github.com/GrahamCampbell",
  8804. "type": "github"
  8805. },
  8806. {
  8807. "url": "https://github.com/Nyholm",
  8808. "type": "github"
  8809. },
  8810. {
  8811. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8812. "type": "tidelift"
  8813. }
  8814. ],
  8815. "time": "2021-10-22T20:56:57+00:00"
  8816. },
  8817. {
  8818. "name": "guzzlehttp/psr7",
  8819. "version": "1.8.3",
  8820. "source": {
  8821. "type": "git",
  8822. "url": "https://github.com/guzzle/psr7.git",
  8823. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  8824. },
  8825. "dist": {
  8826. "type": "zip",
  8827. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  8828. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  8829. "shasum": ""
  8830. },
  8831. "require": {
  8832. "php": ">=5.4.0",
  8833. "psr/http-message": "~1.0",
  8834. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8835. },
  8836. "provide": {
  8837. "psr/http-message-implementation": "1.0"
  8838. },
  8839. "require-dev": {
  8840. "ext-zlib": "*",
  8841. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8842. },
  8843. "suggest": {
  8844. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8845. },
  8846. "type": "library",
  8847. "extra": {
  8848. "branch-alias": {
  8849. "dev-master": "1.7-dev"
  8850. }
  8851. },
  8852. "autoload": {
  8853. "files": [
  8854. "src/functions_include.php"
  8855. ],
  8856. "psr-4": {
  8857. "GuzzleHttp\\Psr7\\": "src/"
  8858. }
  8859. },
  8860. "notification-url": "https://packagist.org/downloads/",
  8861. "license": [
  8862. "MIT"
  8863. ],
  8864. "authors": [
  8865. {
  8866. "name": "Graham Campbell",
  8867. "email": "hello@gjcampbell.co.uk",
  8868. "homepage": "https://github.com/GrahamCampbell"
  8869. },
  8870. {
  8871. "name": "Michael Dowling",
  8872. "email": "mtdowling@gmail.com",
  8873. "homepage": "https://github.com/mtdowling"
  8874. },
  8875. {
  8876. "name": "George Mponos",
  8877. "email": "gmponos@gmail.com",
  8878. "homepage": "https://github.com/gmponos"
  8879. },
  8880. {
  8881. "name": "Tobias Nyholm",
  8882. "email": "tobias.nyholm@gmail.com",
  8883. "homepage": "https://github.com/Nyholm"
  8884. },
  8885. {
  8886. "name": "Márk Sági-Kazár",
  8887. "email": "mark.sagikazar@gmail.com",
  8888. "homepage": "https://github.com/sagikazarmark"
  8889. },
  8890. {
  8891. "name": "Tobias Schultze",
  8892. "email": "webmaster@tubo-world.de",
  8893. "homepage": "https://github.com/Tobion"
  8894. }
  8895. ],
  8896. "description": "PSR-7 message implementation that also provides common utility methods",
  8897. "keywords": [
  8898. "http",
  8899. "message",
  8900. "psr-7",
  8901. "request",
  8902. "response",
  8903. "stream",
  8904. "uri",
  8905. "url"
  8906. ],
  8907. "support": {
  8908. "issues": "https://github.com/guzzle/psr7/issues",
  8909. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  8910. },
  8911. "funding": [
  8912. {
  8913. "url": "https://github.com/GrahamCampbell",
  8914. "type": "github"
  8915. },
  8916. {
  8917. "url": "https://github.com/Nyholm",
  8918. "type": "github"
  8919. },
  8920. {
  8921. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8922. "type": "tidelift"
  8923. }
  8924. ],
  8925. "time": "2021-10-05T13:56:00+00:00"
  8926. },
  8927. {
  8928. "name": "kint-php/kint",
  8929. "version": "3.3",
  8930. "source": {
  8931. "type": "git",
  8932. "url": "https://github.com/kint-php/kint.git",
  8933. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8934. },
  8935. "dist": {
  8936. "type": "zip",
  8937. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8938. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8939. "shasum": ""
  8940. },
  8941. "require": {
  8942. "php": ">=5.3.6"
  8943. },
  8944. "require-dev": {
  8945. "friendsofphp/php-cs-fixer": "^2.0",
  8946. "phpunit/phpunit": "^4.0",
  8947. "seld/phar-utils": "^1.0",
  8948. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8949. "vimeo/psalm": "^3.0"
  8950. },
  8951. "suggest": {
  8952. "ext-ctype": "Simple data type tests",
  8953. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8954. "ext-mbstring": "Provides string encoding detection",
  8955. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8956. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8957. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8958. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8959. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8960. },
  8961. "type": "library",
  8962. "autoload": {
  8963. "files": [
  8964. "init.php"
  8965. ],
  8966. "psr-4": {
  8967. "Kint\\": "src/"
  8968. }
  8969. },
  8970. "notification-url": "https://packagist.org/downloads/",
  8971. "license": [
  8972. "MIT"
  8973. ],
  8974. "authors": [
  8975. {
  8976. "name": "Jonathan Vollebregt",
  8977. "homepage": "https://github.com/jnvsor"
  8978. },
  8979. {
  8980. "name": "Rokas Šleinius",
  8981. "homepage": "https://github.com/raveren"
  8982. },
  8983. {
  8984. "name": "Contributors",
  8985. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8986. }
  8987. ],
  8988. "description": "Kint - debugging tool for PHP developers",
  8989. "homepage": "https://kint-php.github.io/kint/",
  8990. "keywords": [
  8991. "debug",
  8992. "kint",
  8993. "php"
  8994. ],
  8995. "time": "2019-10-17T18:05:24+00:00"
  8996. },
  8997. {
  8998. "name": "laminas/laminas-diactoros",
  8999. "version": "2.8.0",
  9000. "source": {
  9001. "type": "git",
  9002. "url": "https://github.com/laminas/laminas-diactoros.git",
  9003. "reference": "0c26ef1d95b6d7e6e3943a243ba3dc0797227199"
  9004. },
  9005. "dist": {
  9006. "type": "zip",
  9007. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/0c26ef1d95b6d7e6e3943a243ba3dc0797227199",
  9008. "reference": "0c26ef1d95b6d7e6e3943a243ba3dc0797227199",
  9009. "shasum": ""
  9010. },
  9011. "require": {
  9012. "php": "^7.3 || ~8.0.0 || ~8.1.0",
  9013. "psr/http-factory": "^1.0",
  9014. "psr/http-message": "^1.0"
  9015. },
  9016. "conflict": {
  9017. "phpspec/prophecy": "<1.9.0",
  9018. "zendframework/zend-diactoros": "*"
  9019. },
  9020. "provide": {
  9021. "psr/http-factory-implementation": "1.0",
  9022. "psr/http-message-implementation": "1.0"
  9023. },
  9024. "require-dev": {
  9025. "ext-curl": "*",
  9026. "ext-dom": "*",
  9027. "ext-gd": "*",
  9028. "ext-libxml": "*",
  9029. "http-interop/http-factory-tests": "^0.8.0",
  9030. "laminas/laminas-coding-standard": "~1.0.0",
  9031. "php-http/psr7-integration-tests": "^1.1",
  9032. "phpspec/prophecy-phpunit": "^2.0",
  9033. "phpunit/phpunit": "^9.1",
  9034. "psalm/plugin-phpunit": "^0.14.0",
  9035. "vimeo/psalm": "^4.3"
  9036. },
  9037. "type": "library",
  9038. "extra": {
  9039. "laminas": {
  9040. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  9041. "module": "Laminas\\Diactoros"
  9042. }
  9043. },
  9044. "autoload": {
  9045. "files": [
  9046. "src/functions/create_uploaded_file.php",
  9047. "src/functions/marshal_headers_from_sapi.php",
  9048. "src/functions/marshal_method_from_sapi.php",
  9049. "src/functions/marshal_protocol_version_from_sapi.php",
  9050. "src/functions/marshal_uri_from_sapi.php",
  9051. "src/functions/normalize_server.php",
  9052. "src/functions/normalize_uploaded_files.php",
  9053. "src/functions/parse_cookie_header.php",
  9054. "src/functions/create_uploaded_file.legacy.php",
  9055. "src/functions/marshal_headers_from_sapi.legacy.php",
  9056. "src/functions/marshal_method_from_sapi.legacy.php",
  9057. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  9058. "src/functions/marshal_uri_from_sapi.legacy.php",
  9059. "src/functions/normalize_server.legacy.php",
  9060. "src/functions/normalize_uploaded_files.legacy.php",
  9061. "src/functions/parse_cookie_header.legacy.php"
  9062. ],
  9063. "psr-4": {
  9064. "Laminas\\Diactoros\\": "src/"
  9065. }
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "BSD-3-Clause"
  9070. ],
  9071. "description": "PSR HTTP Message implementations",
  9072. "homepage": "https://laminas.dev",
  9073. "keywords": [
  9074. "http",
  9075. "laminas",
  9076. "psr",
  9077. "psr-17",
  9078. "psr-7"
  9079. ],
  9080. "support": {
  9081. "chat": "https://laminas.dev/chat",
  9082. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  9083. "forum": "https://discourse.laminas.dev",
  9084. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  9085. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  9086. "source": "https://github.com/laminas/laminas-diactoros"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9091. "type": "community_bridge"
  9092. }
  9093. ],
  9094. "time": "2021-09-22T03:54:36+00:00"
  9095. },
  9096. {
  9097. "name": "laminas/laminas-escaper",
  9098. "version": "2.9.0",
  9099. "source": {
  9100. "type": "git",
  9101. "url": "https://github.com/laminas/laminas-escaper.git",
  9102. "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f"
  9103. },
  9104. "dist": {
  9105. "type": "zip",
  9106. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/891ad70986729e20ed2e86355fcf93c9dc238a5f",
  9107. "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f",
  9108. "shasum": ""
  9109. },
  9110. "require": {
  9111. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  9112. },
  9113. "conflict": {
  9114. "zendframework/zend-escaper": "*"
  9115. },
  9116. "require-dev": {
  9117. "laminas/laminas-coding-standard": "~2.3.0",
  9118. "phpunit/phpunit": "^9.3",
  9119. "psalm/plugin-phpunit": "^0.12.2",
  9120. "vimeo/psalm": "^3.16"
  9121. },
  9122. "suggest": {
  9123. "ext-iconv": "*",
  9124. "ext-mbstring": "*"
  9125. },
  9126. "type": "library",
  9127. "autoload": {
  9128. "psr-4": {
  9129. "Laminas\\Escaper\\": "src/"
  9130. }
  9131. },
  9132. "notification-url": "https://packagist.org/downloads/",
  9133. "license": [
  9134. "BSD-3-Clause"
  9135. ],
  9136. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9137. "homepage": "https://laminas.dev",
  9138. "keywords": [
  9139. "escaper",
  9140. "laminas"
  9141. ],
  9142. "support": {
  9143. "chat": "https://laminas.dev/chat",
  9144. "docs": "https://docs.laminas.dev/laminas-escaper/",
  9145. "forum": "https://discourse.laminas.dev",
  9146. "issues": "https://github.com/laminas/laminas-escaper/issues",
  9147. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  9148. "source": "https://github.com/laminas/laminas-escaper"
  9149. },
  9150. "funding": [
  9151. {
  9152. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9153. "type": "community_bridge"
  9154. }
  9155. ],
  9156. "time": "2021-09-02T17:10:53+00:00"
  9157. },
  9158. {
  9159. "name": "laminas/laminas-feed",
  9160. "version": "2.15.0",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/laminas/laminas-feed.git",
  9164. "reference": "3ef837a12833c74b438d2c3780023c4244e0abae"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3ef837a12833c74b438d2c3780023c4244e0abae",
  9169. "reference": "3ef837a12833c74b438d2c3780023c4244e0abae",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "ext-dom": "*",
  9174. "ext-libxml": "*",
  9175. "laminas/laminas-escaper": "^2.9",
  9176. "laminas/laminas-stdlib": "^3.6",
  9177. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  9178. },
  9179. "conflict": {
  9180. "laminas/laminas-servicemanager": "<3.3",
  9181. "zendframework/zend-feed": "*"
  9182. },
  9183. "require-dev": {
  9184. "laminas/laminas-cache": "^2.7.2",
  9185. "laminas/laminas-coding-standard": "~2.2.1",
  9186. "laminas/laminas-db": "^2.13.3",
  9187. "laminas/laminas-http": "^2.15",
  9188. "laminas/laminas-servicemanager": "^3.7",
  9189. "laminas/laminas-validator": "^2.15",
  9190. "phpunit/phpunit": "^9.5.5",
  9191. "psalm/plugin-phpunit": "^0.13.0",
  9192. "psr/http-message": "^1.0.1",
  9193. "vimeo/psalm": "^4.1"
  9194. },
  9195. "suggest": {
  9196. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  9197. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  9198. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  9199. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  9200. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  9201. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  9202. },
  9203. "type": "library",
  9204. "autoload": {
  9205. "psr-4": {
  9206. "Laminas\\Feed\\": "src/"
  9207. }
  9208. },
  9209. "notification-url": "https://packagist.org/downloads/",
  9210. "license": [
  9211. "BSD-3-Clause"
  9212. ],
  9213. "description": "provides functionality for consuming RSS and Atom feeds",
  9214. "homepage": "https://laminas.dev",
  9215. "keywords": [
  9216. "feed",
  9217. "laminas"
  9218. ],
  9219. "support": {
  9220. "chat": "https://laminas.dev/chat",
  9221. "docs": "https://docs.laminas.dev/laminas-feed/",
  9222. "forum": "https://discourse.laminas.dev",
  9223. "issues": "https://github.com/laminas/laminas-feed/issues",
  9224. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  9225. "source": "https://github.com/laminas/laminas-feed"
  9226. },
  9227. "funding": [
  9228. {
  9229. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9230. "type": "community_bridge"
  9231. }
  9232. ],
  9233. "time": "2021-09-20T18:11:11+00:00"
  9234. },
  9235. {
  9236. "name": "laminas/laminas-stdlib",
  9237. "version": "3.6.1",
  9238. "source": {
  9239. "type": "git",
  9240. "url": "https://github.com/laminas/laminas-stdlib.git",
  9241. "reference": "db581851a092246ad99e12d4fddf105184924c71"
  9242. },
  9243. "dist": {
  9244. "type": "zip",
  9245. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/db581851a092246ad99e12d4fddf105184924c71",
  9246. "reference": "db581851a092246ad99e12d4fddf105184924c71",
  9247. "shasum": ""
  9248. },
  9249. "require": {
  9250. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  9251. },
  9252. "conflict": {
  9253. "zendframework/zend-stdlib": "*"
  9254. },
  9255. "require-dev": {
  9256. "laminas/laminas-coding-standard": "~2.3.0",
  9257. "phpbench/phpbench": "^0.17.1",
  9258. "phpunit/phpunit": "~9.3.7",
  9259. "psalm/plugin-phpunit": "^0.16.0",
  9260. "vimeo/psalm": "^4.7"
  9261. },
  9262. "type": "library",
  9263. "autoload": {
  9264. "psr-4": {
  9265. "Laminas\\Stdlib\\": "src/"
  9266. }
  9267. },
  9268. "notification-url": "https://packagist.org/downloads/",
  9269. "license": [
  9270. "BSD-3-Clause"
  9271. ],
  9272. "description": "SPL extensions, array utilities, error handlers, and more",
  9273. "homepage": "https://laminas.dev",
  9274. "keywords": [
  9275. "laminas",
  9276. "stdlib"
  9277. ],
  9278. "support": {
  9279. "chat": "https://laminas.dev/chat",
  9280. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  9281. "forum": "https://discourse.laminas.dev",
  9282. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  9283. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  9284. "source": "https://github.com/laminas/laminas-stdlib"
  9285. },
  9286. "funding": [
  9287. {
  9288. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9289. "type": "community_bridge"
  9290. }
  9291. ],
  9292. "time": "2021-11-10T11:33:52+00:00"
  9293. },
  9294. {
  9295. "name": "league/container",
  9296. "version": "2.4.1",
  9297. "source": {
  9298. "type": "git",
  9299. "url": "https://github.com/thephpleague/container.git",
  9300. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  9301. },
  9302. "dist": {
  9303. "type": "zip",
  9304. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  9305. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  9306. "shasum": ""
  9307. },
  9308. "require": {
  9309. "container-interop/container-interop": "^1.2",
  9310. "php": "^5.4.0 || ^7.0"
  9311. },
  9312. "provide": {
  9313. "container-interop/container-interop-implementation": "^1.2",
  9314. "psr/container-implementation": "^1.0"
  9315. },
  9316. "replace": {
  9317. "orno/di": "~2.0"
  9318. },
  9319. "require-dev": {
  9320. "phpunit/phpunit": "4.*"
  9321. },
  9322. "type": "library",
  9323. "extra": {
  9324. "branch-alias": {
  9325. "dev-2.x": "2.x-dev",
  9326. "dev-1.x": "1.x-dev"
  9327. }
  9328. },
  9329. "autoload": {
  9330. "psr-4": {
  9331. "League\\Container\\": "src"
  9332. }
  9333. },
  9334. "notification-url": "https://packagist.org/downloads/",
  9335. "license": [
  9336. "MIT"
  9337. ],
  9338. "authors": [
  9339. {
  9340. "name": "Phil Bennett",
  9341. "email": "philipobenito@gmail.com",
  9342. "homepage": "http://www.philipobenito.com",
  9343. "role": "Developer"
  9344. }
  9345. ],
  9346. "description": "A fast and intuitive dependency injection container.",
  9347. "homepage": "https://github.com/thephpleague/container",
  9348. "keywords": [
  9349. "container",
  9350. "dependency",
  9351. "di",
  9352. "injection",
  9353. "league",
  9354. "provider",
  9355. "service"
  9356. ],
  9357. "time": "2017-05-10T09:20:27+00:00"
  9358. },
  9359. {
  9360. "name": "lsolesen/pel",
  9361. "version": "0.9.9",
  9362. "source": {
  9363. "type": "git",
  9364. "url": "https://github.com/pel/pel.git",
  9365. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  9366. },
  9367. "dist": {
  9368. "type": "zip",
  9369. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  9370. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  9371. "shasum": ""
  9372. },
  9373. "require": {
  9374. "php": ">=5.4.0"
  9375. },
  9376. "require-dev": {
  9377. "ext-gd": "*",
  9378. "phpunit/phpunit": ">=4.8.36 <8",
  9379. "satooshi/php-coveralls": "1.0.*",
  9380. "squizlabs/php_codesniffer": "^3.0.0"
  9381. },
  9382. "type": "library",
  9383. "autoload": {
  9384. "psr-4": {
  9385. "lsolesen\\pel\\": "src/"
  9386. }
  9387. },
  9388. "notification-url": "https://packagist.org/downloads/",
  9389. "license": [
  9390. "GPL-2.0"
  9391. ],
  9392. "authors": [
  9393. {
  9394. "name": "Lars Olesen",
  9395. "email": "lars@intraface.dk",
  9396. "homepage": "http://intraface.dk",
  9397. "role": "Developer"
  9398. },
  9399. {
  9400. "name": "Martin Geisler",
  9401. "email": "martin@geisler.net",
  9402. "homepage": "http://geisler.net",
  9403. "role": "Developer"
  9404. }
  9405. ],
  9406. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9407. "homepage": "http://pel.github.com/pel/",
  9408. "keywords": [
  9409. "exif",
  9410. "image"
  9411. ],
  9412. "time": "2020-11-07T06:04:18+00:00"
  9413. },
  9414. {
  9415. "name": "masterminds/html5",
  9416. "version": "2.7.5",
  9417. "source": {
  9418. "type": "git",
  9419. "url": "https://github.com/Masterminds/html5-php.git",
  9420. "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab"
  9421. },
  9422. "dist": {
  9423. "type": "zip",
  9424. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f640ac1bdddff06ea333a920c95bbad8872429ab",
  9425. "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab",
  9426. "shasum": ""
  9427. },
  9428. "require": {
  9429. "ext-ctype": "*",
  9430. "ext-dom": "*",
  9431. "ext-libxml": "*",
  9432. "php": ">=5.3.0"
  9433. },
  9434. "require-dev": {
  9435. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  9436. },
  9437. "type": "library",
  9438. "extra": {
  9439. "branch-alias": {
  9440. "dev-master": "2.7-dev"
  9441. }
  9442. },
  9443. "autoload": {
  9444. "psr-4": {
  9445. "Masterminds\\": "src"
  9446. }
  9447. },
  9448. "notification-url": "https://packagist.org/downloads/",
  9449. "license": [
  9450. "MIT"
  9451. ],
  9452. "authors": [
  9453. {
  9454. "name": "Matt Butcher",
  9455. "email": "technosophos@gmail.com"
  9456. },
  9457. {
  9458. "name": "Matt Farina",
  9459. "email": "matt@mattfarina.com"
  9460. },
  9461. {
  9462. "name": "Asmir Mustafic",
  9463. "email": "goetas@gmail.com"
  9464. }
  9465. ],
  9466. "description": "An HTML5 parser and serializer.",
  9467. "homepage": "http://masterminds.github.io/html5-php",
  9468. "keywords": [
  9469. "HTML5",
  9470. "dom",
  9471. "html",
  9472. "parser",
  9473. "querypath",
  9474. "serializer",
  9475. "xml"
  9476. ],
  9477. "support": {
  9478. "issues": "https://github.com/Masterminds/html5-php/issues",
  9479. "source": "https://github.com/Masterminds/html5-php/tree/2.7.5"
  9480. },
  9481. "time": "2021-07-01T14:25:37+00:00"
  9482. },
  9483. {
  9484. "name": "nikic/php-parser",
  9485. "version": "v4.13.2",
  9486. "source": {
  9487. "type": "git",
  9488. "url": "https://github.com/nikic/PHP-Parser.git",
  9489. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  9490. },
  9491. "dist": {
  9492. "type": "zip",
  9493. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  9494. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  9495. "shasum": ""
  9496. },
  9497. "require": {
  9498. "ext-tokenizer": "*",
  9499. "php": ">=7.0"
  9500. },
  9501. "require-dev": {
  9502. "ircmaxell/php-yacc": "^0.0.7",
  9503. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9504. },
  9505. "bin": [
  9506. "bin/php-parse"
  9507. ],
  9508. "type": "library",
  9509. "extra": {
  9510. "branch-alias": {
  9511. "dev-master": "4.9-dev"
  9512. }
  9513. },
  9514. "autoload": {
  9515. "psr-4": {
  9516. "PhpParser\\": "lib/PhpParser"
  9517. }
  9518. },
  9519. "notification-url": "https://packagist.org/downloads/",
  9520. "license": [
  9521. "BSD-3-Clause"
  9522. ],
  9523. "authors": [
  9524. {
  9525. "name": "Nikita Popov"
  9526. }
  9527. ],
  9528. "description": "A PHP parser written in PHP",
  9529. "keywords": [
  9530. "parser",
  9531. "php"
  9532. ],
  9533. "support": {
  9534. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9535. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  9536. },
  9537. "time": "2021-11-30T19:35:32+00:00"
  9538. },
  9539. {
  9540. "name": "pear/archive_tar",
  9541. "version": "1.4.14",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/pear/Archive_Tar.git",
  9545. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  9550. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "pear/pear-core-minimal": "^1.10.0alpha2",
  9555. "php": ">=5.2.0"
  9556. },
  9557. "require-dev": {
  9558. "phpunit/phpunit": "*"
  9559. },
  9560. "suggest": {
  9561. "ext-bz2": "Bz2 compression support.",
  9562. "ext-xz": "Lzma2 compression support.",
  9563. "ext-zlib": "Gzip compression support."
  9564. },
  9565. "type": "library",
  9566. "extra": {
  9567. "branch-alias": {
  9568. "dev-master": "1.4.x-dev"
  9569. }
  9570. },
  9571. "autoload": {
  9572. "psr-0": {
  9573. "Archive_Tar": ""
  9574. }
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "include-path": [
  9578. "./"
  9579. ],
  9580. "license": [
  9581. "BSD-3-Clause"
  9582. ],
  9583. "authors": [
  9584. {
  9585. "name": "Vincent Blavet",
  9586. "email": "vincent@phpconcept.net"
  9587. },
  9588. {
  9589. "name": "Greg Beaver",
  9590. "email": "greg@chiaraquartet.net"
  9591. },
  9592. {
  9593. "name": "Michiel Rook",
  9594. "email": "mrook@php.net"
  9595. }
  9596. ],
  9597. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9598. "homepage": "https://github.com/pear/Archive_Tar",
  9599. "keywords": [
  9600. "archive",
  9601. "tar"
  9602. ],
  9603. "support": {
  9604. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9605. "source": "https://github.com/pear/Archive_Tar"
  9606. },
  9607. "funding": [
  9608. {
  9609. "url": "https://github.com/mrook",
  9610. "type": "github"
  9611. },
  9612. {
  9613. "url": "https://www.patreon.com/michielrook",
  9614. "type": "patreon"
  9615. }
  9616. ],
  9617. "time": "2021-07-20T13:53:39+00:00"
  9618. },
  9619. {
  9620. "name": "pear/console_getopt",
  9621. "version": "v1.4.3",
  9622. "source": {
  9623. "type": "git",
  9624. "url": "https://github.com/pear/Console_Getopt.git",
  9625. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9626. },
  9627. "dist": {
  9628. "type": "zip",
  9629. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9630. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9631. "shasum": ""
  9632. },
  9633. "type": "library",
  9634. "autoload": {
  9635. "psr-0": {
  9636. "Console": "./"
  9637. }
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "include-path": [
  9641. "./"
  9642. ],
  9643. "license": [
  9644. "BSD-2-Clause"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Andrei Zmievski",
  9649. "email": "andrei@php.net",
  9650. "role": "Lead"
  9651. },
  9652. {
  9653. "name": "Stig Bakken",
  9654. "email": "stig@php.net",
  9655. "role": "Developer"
  9656. },
  9657. {
  9658. "name": "Greg Beaver",
  9659. "email": "cellog@php.net",
  9660. "role": "Helper"
  9661. }
  9662. ],
  9663. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9664. "support": {
  9665. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9666. "source": "https://github.com/pear/Console_Getopt"
  9667. },
  9668. "time": "2019-11-20T18:27:48+00:00"
  9669. },
  9670. {
  9671. "name": "pear/pear-core-minimal",
  9672. "version": "v1.10.11",
  9673. "source": {
  9674. "type": "git",
  9675. "url": "https://github.com/pear/pear-core-minimal.git",
  9676. "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d"
  9677. },
  9678. "dist": {
  9679. "type": "zip",
  9680. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/68d0d32ada737153b7e93b8d3c710ebe70ac867d",
  9681. "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d",
  9682. "shasum": ""
  9683. },
  9684. "require": {
  9685. "pear/console_getopt": "~1.4",
  9686. "pear/pear_exception": "~1.0"
  9687. },
  9688. "replace": {
  9689. "rsky/pear-core-min": "self.version"
  9690. },
  9691. "type": "library",
  9692. "autoload": {
  9693. "psr-0": {
  9694. "": "src/"
  9695. }
  9696. },
  9697. "notification-url": "https://packagist.org/downloads/",
  9698. "include-path": [
  9699. "src/"
  9700. ],
  9701. "license": [
  9702. "BSD-3-Clause"
  9703. ],
  9704. "authors": [
  9705. {
  9706. "name": "Christian Weiske",
  9707. "email": "cweiske@php.net",
  9708. "role": "Lead"
  9709. }
  9710. ],
  9711. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9712. "support": {
  9713. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9714. "source": "https://github.com/pear/pear-core-minimal"
  9715. },
  9716. "time": "2021-08-10T22:31:03+00:00"
  9717. },
  9718. {
  9719. "name": "pear/pear_exception",
  9720. "version": "v1.0.2",
  9721. "source": {
  9722. "type": "git",
  9723. "url": "https://github.com/pear/PEAR_Exception.git",
  9724. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9725. },
  9726. "dist": {
  9727. "type": "zip",
  9728. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9729. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9730. "shasum": ""
  9731. },
  9732. "require": {
  9733. "php": ">=5.2.0"
  9734. },
  9735. "require-dev": {
  9736. "phpunit/phpunit": "<9"
  9737. },
  9738. "type": "class",
  9739. "extra": {
  9740. "branch-alias": {
  9741. "dev-master": "1.0.x-dev"
  9742. }
  9743. },
  9744. "autoload": {
  9745. "classmap": [
  9746. "PEAR/"
  9747. ]
  9748. },
  9749. "notification-url": "https://packagist.org/downloads/",
  9750. "include-path": [
  9751. "."
  9752. ],
  9753. "license": [
  9754. "BSD-2-Clause"
  9755. ],
  9756. "authors": [
  9757. {
  9758. "name": "Helgi Thormar",
  9759. "email": "dufuz@php.net"
  9760. },
  9761. {
  9762. "name": "Greg Beaver",
  9763. "email": "cellog@php.net"
  9764. }
  9765. ],
  9766. "description": "The PEAR Exception base class.",
  9767. "homepage": "https://github.com/pear/PEAR_Exception",
  9768. "keywords": [
  9769. "exception"
  9770. ],
  9771. "support": {
  9772. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9773. "source": "https://github.com/pear/PEAR_Exception"
  9774. },
  9775. "time": "2021-03-21T15:43:46+00:00"
  9776. },
  9777. {
  9778. "name": "phenx/php-font-lib",
  9779. "version": "0.5.2",
  9780. "source": {
  9781. "type": "git",
  9782. "url": "https://github.com/PhenX/php-font-lib.git",
  9783. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9784. },
  9785. "dist": {
  9786. "type": "zip",
  9787. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9788. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9789. "shasum": ""
  9790. },
  9791. "require-dev": {
  9792. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9793. },
  9794. "type": "library",
  9795. "autoload": {
  9796. "psr-4": {
  9797. "FontLib\\": "src/FontLib"
  9798. }
  9799. },
  9800. "notification-url": "https://packagist.org/downloads/",
  9801. "license": [
  9802. "LGPL-3.0"
  9803. ],
  9804. "authors": [
  9805. {
  9806. "name": "Fabien Ménager",
  9807. "email": "fabien.menager@gmail.com"
  9808. }
  9809. ],
  9810. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9811. "homepage": "https://github.com/PhenX/php-font-lib",
  9812. "time": "2020-03-08T15:31:32+00:00"
  9813. },
  9814. {
  9815. "name": "phpmailer/phpmailer",
  9816. "version": "v6.2.0",
  9817. "source": {
  9818. "type": "git",
  9819. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9820. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9821. },
  9822. "dist": {
  9823. "type": "zip",
  9824. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9825. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9826. "shasum": ""
  9827. },
  9828. "require": {
  9829. "ext-ctype": "*",
  9830. "ext-filter": "*",
  9831. "ext-hash": "*",
  9832. "php": ">=5.5.0"
  9833. },
  9834. "require-dev": {
  9835. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9836. "doctrine/annotations": "^1.2",
  9837. "phpcompatibility/php-compatibility": "^9.3.5",
  9838. "roave/security-advisories": "dev-latest",
  9839. "squizlabs/php_codesniffer": "^3.5.6",
  9840. "yoast/phpunit-polyfills": "^0.2.0"
  9841. },
  9842. "suggest": {
  9843. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9844. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9845. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9846. "psr/log": "For optional PSR-3 debug logging",
  9847. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9848. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9849. },
  9850. "type": "library",
  9851. "autoload": {
  9852. "psr-4": {
  9853. "PHPMailer\\PHPMailer\\": "src/"
  9854. }
  9855. },
  9856. "notification-url": "https://packagist.org/downloads/",
  9857. "license": [
  9858. "LGPL-2.1-only"
  9859. ],
  9860. "authors": [
  9861. {
  9862. "name": "Marcus Bointon",
  9863. "email": "phpmailer@synchromedia.co.uk"
  9864. },
  9865. {
  9866. "name": "Jim Jagielski",
  9867. "email": "jimjag@gmail.com"
  9868. },
  9869. {
  9870. "name": "Andy Prevost",
  9871. "email": "codeworxtech@users.sourceforge.net"
  9872. },
  9873. {
  9874. "name": "Brent R. Matzelle"
  9875. }
  9876. ],
  9877. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9878. "funding": [
  9879. {
  9880. "url": "https://github.com/Synchro",
  9881. "type": "github"
  9882. }
  9883. ],
  9884. "time": "2020-11-25T15:24:57+00:00"
  9885. },
  9886. {
  9887. "name": "psr/cache",
  9888. "version": "1.0.1",
  9889. "source": {
  9890. "type": "git",
  9891. "url": "https://github.com/php-fig/cache.git",
  9892. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  9893. },
  9894. "dist": {
  9895. "type": "zip",
  9896. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  9897. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  9898. "shasum": ""
  9899. },
  9900. "require": {
  9901. "php": ">=5.3.0"
  9902. },
  9903. "type": "library",
  9904. "extra": {
  9905. "branch-alias": {
  9906. "dev-master": "1.0.x-dev"
  9907. }
  9908. },
  9909. "autoload": {
  9910. "psr-4": {
  9911. "Psr\\Cache\\": "src/"
  9912. }
  9913. },
  9914. "notification-url": "https://packagist.org/downloads/",
  9915. "license": [
  9916. "MIT"
  9917. ],
  9918. "authors": [
  9919. {
  9920. "name": "PHP-FIG",
  9921. "homepage": "http://www.php-fig.org/"
  9922. }
  9923. ],
  9924. "description": "Common interface for caching libraries",
  9925. "keywords": [
  9926. "cache",
  9927. "psr",
  9928. "psr-6"
  9929. ],
  9930. "support": {
  9931. "source": "https://github.com/php-fig/cache/tree/master"
  9932. },
  9933. "time": "2016-08-06T20:24:11+00:00"
  9934. },
  9935. {
  9936. "name": "psr/container",
  9937. "version": "1.1.1",
  9938. "source": {
  9939. "type": "git",
  9940. "url": "https://github.com/php-fig/container.git",
  9941. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  9942. },
  9943. "dist": {
  9944. "type": "zip",
  9945. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  9946. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  9947. "shasum": ""
  9948. },
  9949. "require": {
  9950. "php": ">=7.2.0"
  9951. },
  9952. "type": "library",
  9953. "autoload": {
  9954. "psr-4": {
  9955. "Psr\\Container\\": "src/"
  9956. }
  9957. },
  9958. "notification-url": "https://packagist.org/downloads/",
  9959. "license": [
  9960. "MIT"
  9961. ],
  9962. "authors": [
  9963. {
  9964. "name": "PHP-FIG",
  9965. "homepage": "https://www.php-fig.org/"
  9966. }
  9967. ],
  9968. "description": "Common Container Interface (PHP FIG PSR-11)",
  9969. "homepage": "https://github.com/php-fig/container",
  9970. "keywords": [
  9971. "PSR-11",
  9972. "container",
  9973. "container-interface",
  9974. "container-interop",
  9975. "psr"
  9976. ],
  9977. "support": {
  9978. "issues": "https://github.com/php-fig/container/issues",
  9979. "source": "https://github.com/php-fig/container/tree/1.1.1"
  9980. },
  9981. "time": "2021-03-05T17:36:06+00:00"
  9982. },
  9983. {
  9984. "name": "psr/http-factory",
  9985. "version": "1.0.1",
  9986. "source": {
  9987. "type": "git",
  9988. "url": "https://github.com/php-fig/http-factory.git",
  9989. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9990. },
  9991. "dist": {
  9992. "type": "zip",
  9993. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9994. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9995. "shasum": ""
  9996. },
  9997. "require": {
  9998. "php": ">=7.0.0",
  9999. "psr/http-message": "^1.0"
  10000. },
  10001. "type": "library",
  10002. "extra": {
  10003. "branch-alias": {
  10004. "dev-master": "1.0.x-dev"
  10005. }
  10006. },
  10007. "autoload": {
  10008. "psr-4": {
  10009. "Psr\\Http\\Message\\": "src/"
  10010. }
  10011. },
  10012. "notification-url": "https://packagist.org/downloads/",
  10013. "license": [
  10014. "MIT"
  10015. ],
  10016. "authors": [
  10017. {
  10018. "name": "PHP-FIG",
  10019. "homepage": "http://www.php-fig.org/"
  10020. }
  10021. ],
  10022. "description": "Common interfaces for PSR-7 HTTP message factories",
  10023. "keywords": [
  10024. "factory",
  10025. "http",
  10026. "message",
  10027. "psr",
  10028. "psr-17",
  10029. "psr-7",
  10030. "request",
  10031. "response"
  10032. ],
  10033. "support": {
  10034. "source": "https://github.com/php-fig/http-factory/tree/master"
  10035. },
  10036. "time": "2019-04-30T12:38:16+00:00"
  10037. },
  10038. {
  10039. "name": "psr/http-message",
  10040. "version": "1.0.1",
  10041. "source": {
  10042. "type": "git",
  10043. "url": "https://github.com/php-fig/http-message.git",
  10044. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  10045. },
  10046. "dist": {
  10047. "type": "zip",
  10048. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  10049. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  10050. "shasum": ""
  10051. },
  10052. "require": {
  10053. "php": ">=5.3.0"
  10054. },
  10055. "type": "library",
  10056. "extra": {
  10057. "branch-alias": {
  10058. "dev-master": "1.0.x-dev"
  10059. }
  10060. },
  10061. "autoload": {
  10062. "psr-4": {
  10063. "Psr\\Http\\Message\\": "src/"
  10064. }
  10065. },
  10066. "notification-url": "https://packagist.org/downloads/",
  10067. "license": [
  10068. "MIT"
  10069. ],
  10070. "authors": [
  10071. {
  10072. "name": "PHP-FIG",
  10073. "homepage": "http://www.php-fig.org/"
  10074. }
  10075. ],
  10076. "description": "Common interface for HTTP messages",
  10077. "homepage": "https://github.com/php-fig/http-message",
  10078. "keywords": [
  10079. "http",
  10080. "http-message",
  10081. "psr",
  10082. "psr-7",
  10083. "request",
  10084. "response"
  10085. ],
  10086. "support": {
  10087. "source": "https://github.com/php-fig/http-message/tree/master"
  10088. },
  10089. "time": "2016-08-06T14:39:51+00:00"
  10090. },
  10091. {
  10092. "name": "psr/log",
  10093. "version": "1.1.4",
  10094. "source": {
  10095. "type": "git",
  10096. "url": "https://github.com/php-fig/log.git",
  10097. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  10098. },
  10099. "dist": {
  10100. "type": "zip",
  10101. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  10102. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  10103. "shasum": ""
  10104. },
  10105. "require": {
  10106. "php": ">=5.3.0"
  10107. },
  10108. "type": "library",
  10109. "extra": {
  10110. "branch-alias": {
  10111. "dev-master": "1.1.x-dev"
  10112. }
  10113. },
  10114. "autoload": {
  10115. "psr-4": {
  10116. "Psr\\Log\\": "Psr/Log/"
  10117. }
  10118. },
  10119. "notification-url": "https://packagist.org/downloads/",
  10120. "license": [
  10121. "MIT"
  10122. ],
  10123. "authors": [
  10124. {
  10125. "name": "PHP-FIG",
  10126. "homepage": "https://www.php-fig.org/"
  10127. }
  10128. ],
  10129. "description": "Common interface for logging libraries",
  10130. "homepage": "https://github.com/php-fig/log",
  10131. "keywords": [
  10132. "log",
  10133. "psr",
  10134. "psr-3"
  10135. ],
  10136. "support": {
  10137. "source": "https://github.com/php-fig/log/tree/1.1.4"
  10138. },
  10139. "time": "2021-05-03T11:20:27+00:00"
  10140. },
  10141. {
  10142. "name": "psy/psysh",
  10143. "version": "v0.11.1",
  10144. "source": {
  10145. "type": "git",
  10146. "url": "https://github.com/bobthecow/psysh.git",
  10147. "reference": "570292577277f06f590635381a7f761a6cf4f026"
  10148. },
  10149. "dist": {
  10150. "type": "zip",
  10151. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/570292577277f06f590635381a7f761a6cf4f026",
  10152. "reference": "570292577277f06f590635381a7f761a6cf4f026",
  10153. "shasum": ""
  10154. },
  10155. "require": {
  10156. "ext-json": "*",
  10157. "ext-tokenizer": "*",
  10158. "nikic/php-parser": "^4.0 || ^3.1",
  10159. "php": "^8.0 || ^7.0.8",
  10160. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  10161. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  10162. },
  10163. "require-dev": {
  10164. "bamarni/composer-bin-plugin": "^1.2",
  10165. "hoa/console": "3.17.05.02"
  10166. },
  10167. "suggest": {
  10168. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10169. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10170. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  10171. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  10172. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  10173. },
  10174. "bin": [
  10175. "bin/psysh"
  10176. ],
  10177. "type": "library",
  10178. "extra": {
  10179. "branch-alias": {
  10180. "dev-main": "0.11.x-dev"
  10181. }
  10182. },
  10183. "autoload": {
  10184. "files": [
  10185. "src/functions.php"
  10186. ],
  10187. "psr-4": {
  10188. "Psy\\": "src/"
  10189. }
  10190. },
  10191. "notification-url": "https://packagist.org/downloads/",
  10192. "license": [
  10193. "MIT"
  10194. ],
  10195. "authors": [
  10196. {
  10197. "name": "Justin Hileman",
  10198. "email": "justin@justinhileman.info",
  10199. "homepage": "http://justinhileman.com"
  10200. }
  10201. ],
  10202. "description": "An interactive shell for modern PHP.",
  10203. "homepage": "http://psysh.org",
  10204. "keywords": [
  10205. "REPL",
  10206. "console",
  10207. "interactive",
  10208. "shell"
  10209. ],
  10210. "support": {
  10211. "issues": "https://github.com/bobthecow/psysh/issues",
  10212. "source": "https://github.com/bobthecow/psysh/tree/v0.11.1"
  10213. },
  10214. "time": "2022-01-03T13:58:38+00:00"
  10215. },
  10216. {
  10217. "name": "ralouphie/getallheaders",
  10218. "version": "3.0.3",
  10219. "source": {
  10220. "type": "git",
  10221. "url": "https://github.com/ralouphie/getallheaders.git",
  10222. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10223. },
  10224. "dist": {
  10225. "type": "zip",
  10226. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10227. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10228. "shasum": ""
  10229. },
  10230. "require": {
  10231. "php": ">=5.6"
  10232. },
  10233. "require-dev": {
  10234. "php-coveralls/php-coveralls": "^2.1",
  10235. "phpunit/phpunit": "^5 || ^6.5"
  10236. },
  10237. "type": "library",
  10238. "autoload": {
  10239. "files": [
  10240. "src/getallheaders.php"
  10241. ]
  10242. },
  10243. "notification-url": "https://packagist.org/downloads/",
  10244. "license": [
  10245. "MIT"
  10246. ],
  10247. "authors": [
  10248. {
  10249. "name": "Ralph Khattar",
  10250. "email": "ralph.khattar@gmail.com"
  10251. }
  10252. ],
  10253. "description": "A polyfill for getallheaders.",
  10254. "support": {
  10255. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10256. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10257. },
  10258. "time": "2019-03-08T08:55:37+00:00"
  10259. },
  10260. {
  10261. "name": "stack/builder",
  10262. "version": "v1.0.6",
  10263. "source": {
  10264. "type": "git",
  10265. "url": "https://github.com/stackphp/builder.git",
  10266. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  10267. },
  10268. "dist": {
  10269. "type": "zip",
  10270. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10271. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  10272. "shasum": ""
  10273. },
  10274. "require": {
  10275. "php": ">=7.2.0",
  10276. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  10277. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  10278. },
  10279. "require-dev": {
  10280. "phpunit/phpunit": "~8.0",
  10281. "symfony/routing": "^5.0"
  10282. },
  10283. "type": "library",
  10284. "extra": {
  10285. "branch-alias": {
  10286. "dev-master": "1.0-dev"
  10287. }
  10288. },
  10289. "autoload": {
  10290. "psr-0": {
  10291. "Stack": "src"
  10292. }
  10293. },
  10294. "notification-url": "https://packagist.org/downloads/",
  10295. "license": [
  10296. "MIT"
  10297. ],
  10298. "authors": [
  10299. {
  10300. "name": "Igor Wiedler",
  10301. "email": "igor@wiedler.ch"
  10302. }
  10303. ],
  10304. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10305. "keywords": [
  10306. "stack"
  10307. ],
  10308. "support": {
  10309. "issues": "https://github.com/stackphp/builder/issues",
  10310. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  10311. },
  10312. "time": "2020-01-30T12:17:27+00:00"
  10313. },
  10314. {
  10315. "name": "stecman/symfony-console-completion",
  10316. "version": "0.11.0",
  10317. "source": {
  10318. "type": "git",
  10319. "url": "https://github.com/stecman/symfony-console-completion.git",
  10320. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10321. },
  10322. "dist": {
  10323. "type": "zip",
  10324. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10325. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10326. "shasum": ""
  10327. },
  10328. "require": {
  10329. "php": ">=5.3.2",
  10330. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10331. },
  10332. "require-dev": {
  10333. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10334. },
  10335. "type": "library",
  10336. "extra": {
  10337. "branch-alias": {
  10338. "dev-master": "0.10.x-dev"
  10339. }
  10340. },
  10341. "autoload": {
  10342. "psr-4": {
  10343. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10344. }
  10345. },
  10346. "notification-url": "https://packagist.org/downloads/",
  10347. "license": [
  10348. "MIT"
  10349. ],
  10350. "authors": [
  10351. {
  10352. "name": "Stephen Holdaway",
  10353. "email": "stephen@stecman.co.nz"
  10354. }
  10355. ],
  10356. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10357. "support": {
  10358. "issues": "https://github.com/stecman/symfony-console-completion/issues",
  10359. "source": "https://github.com/stecman/symfony-console-completion/tree/0.11.0"
  10360. },
  10361. "time": "2019-11-24T17:03:06+00:00"
  10362. },
  10363. {
  10364. "name": "symfony-cmf/routing",
  10365. "version": "2.3.4",
  10366. "source": {
  10367. "type": "git",
  10368. "url": "https://github.com/symfony-cmf/Routing.git",
  10369. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  10370. },
  10371. "dist": {
  10372. "type": "zip",
  10373. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  10374. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  10375. "shasum": ""
  10376. },
  10377. "require": {
  10378. "php": "^7.2 || ^8.0",
  10379. "psr/log": "^1.0 || ^2.0 || ^3.0",
  10380. "symfony/http-kernel": "^4.4 || ^5.0",
  10381. "symfony/routing": "^4.4 || ^5.0"
  10382. },
  10383. "require-dev": {
  10384. "symfony-cmf/testing": "^3@dev",
  10385. "symfony/config": "^4.4 || ^5.0",
  10386. "symfony/dependency-injection": "^4.4 || ^5.0",
  10387. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10388. "symfony/phpunit-bridge": "^5.0"
  10389. },
  10390. "suggest": {
  10391. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10392. },
  10393. "type": "library",
  10394. "extra": {
  10395. "branch-alias": {
  10396. "dev-master": "2.x-dev"
  10397. }
  10398. },
  10399. "autoload": {
  10400. "psr-4": {
  10401. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10402. }
  10403. },
  10404. "notification-url": "https://packagist.org/downloads/",
  10405. "license": [
  10406. "MIT"
  10407. ],
  10408. "authors": [
  10409. {
  10410. "name": "Symfony CMF Community",
  10411. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10412. }
  10413. ],
  10414. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10415. "homepage": "http://cmf.symfony.com",
  10416. "keywords": [
  10417. "database",
  10418. "routing"
  10419. ],
  10420. "support": {
  10421. "issues": "https://github.com/symfony-cmf/Routing/issues",
  10422. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  10423. },
  10424. "time": "2021-11-08T16:33:10+00:00"
  10425. },
  10426. {
  10427. "name": "symfony/config",
  10428. "version": "v4.4.37",
  10429. "source": {
  10430. "type": "git",
  10431. "url": "https://github.com/symfony/config.git",
  10432. "reference": "e8c2d2c951ddedecb6d28954d336cb7d2e852d0e"
  10433. },
  10434. "dist": {
  10435. "type": "zip",
  10436. "url": "https://api.github.com/repos/symfony/config/zipball/e8c2d2c951ddedecb6d28954d336cb7d2e852d0e",
  10437. "reference": "e8c2d2c951ddedecb6d28954d336cb7d2e852d0e",
  10438. "shasum": ""
  10439. },
  10440. "require": {
  10441. "php": ">=7.1.3",
  10442. "symfony/filesystem": "^3.4|^4.0|^5.0",
  10443. "symfony/polyfill-ctype": "~1.8",
  10444. "symfony/polyfill-php80": "^1.16",
  10445. "symfony/polyfill-php81": "^1.22"
  10446. },
  10447. "conflict": {
  10448. "symfony/finder": "<3.4"
  10449. },
  10450. "require-dev": {
  10451. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  10452. "symfony/finder": "^3.4|^4.0|^5.0",
  10453. "symfony/messenger": "^4.1|^5.0",
  10454. "symfony/service-contracts": "^1.1|^2",
  10455. "symfony/yaml": "^3.4|^4.0|^5.0"
  10456. },
  10457. "suggest": {
  10458. "symfony/yaml": "To use the yaml reference dumper"
  10459. },
  10460. "type": "library",
  10461. "autoload": {
  10462. "psr-4": {
  10463. "Symfony\\Component\\Config\\": ""
  10464. },
  10465. "exclude-from-classmap": [
  10466. "/Tests/"
  10467. ]
  10468. },
  10469. "notification-url": "https://packagist.org/downloads/",
  10470. "license": [
  10471. "MIT"
  10472. ],
  10473. "authors": [
  10474. {
  10475. "name": "Fabien Potencier",
  10476. "email": "fabien@symfony.com"
  10477. },
  10478. {
  10479. "name": "Symfony Community",
  10480. "homepage": "https://symfony.com/contributors"
  10481. }
  10482. ],
  10483. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  10484. "homepage": "https://symfony.com",
  10485. "support": {
  10486. "source": "https://github.com/symfony/config/tree/v4.4.37"
  10487. },
  10488. "funding": [
  10489. {
  10490. "url": "https://symfony.com/sponsor",
  10491. "type": "custom"
  10492. },
  10493. {
  10494. "url": "https://github.com/fabpot",
  10495. "type": "github"
  10496. },
  10497. {
  10498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10499. "type": "tidelift"
  10500. }
  10501. ],
  10502. "time": "2022-01-03T09:46:22+00:00"
  10503. },
  10504. {
  10505. "name": "symfony/console",
  10506. "version": "v4.4.34",
  10507. "source": {
  10508. "type": "git",
  10509. "url": "https://github.com/symfony/console.git",
  10510. "reference": "329b3a75cc6b16d435ba1b1a41df54a53382a3f0"
  10511. },
  10512. "dist": {
  10513. "type": "zip",
  10514. "url": "https://api.github.com/repos/symfony/console/zipball/329b3a75cc6b16d435ba1b1a41df54a53382a3f0",
  10515. "reference": "329b3a75cc6b16d435ba1b1a41df54a53382a3f0",
  10516. "shasum": ""
  10517. },
  10518. "require": {
  10519. "php": ">=7.1.3",
  10520. "symfony/polyfill-mbstring": "~1.0",
  10521. "symfony/polyfill-php73": "^1.8",
  10522. "symfony/polyfill-php80": "^1.16",
  10523. "symfony/service-contracts": "^1.1|^2"
  10524. },
  10525. "conflict": {
  10526. "psr/log": ">=3",
  10527. "symfony/dependency-injection": "<3.4",
  10528. "symfony/event-dispatcher": "<4.3|>=5",
  10529. "symfony/lock": "<4.4",
  10530. "symfony/process": "<3.3"
  10531. },
  10532. "provide": {
  10533. "psr/log-implementation": "1.0|2.0"
  10534. },
  10535. "require-dev": {
  10536. "psr/log": "^1|^2",
  10537. "symfony/config": "^3.4|^4.0|^5.0",
  10538. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10539. "symfony/event-dispatcher": "^4.3",
  10540. "symfony/lock": "^4.4|^5.0",
  10541. "symfony/process": "^3.4|^4.0|^5.0",
  10542. "symfony/var-dumper": "^4.3|^5.0"
  10543. },
  10544. "suggest": {
  10545. "psr/log": "For using the console logger",
  10546. "symfony/event-dispatcher": "",
  10547. "symfony/lock": "",
  10548. "symfony/process": ""
  10549. },
  10550. "type": "library",
  10551. "autoload": {
  10552. "psr-4": {
  10553. "Symfony\\Component\\Console\\": ""
  10554. },
  10555. "exclude-from-classmap": [
  10556. "/Tests/"
  10557. ]
  10558. },
  10559. "notification-url": "https://packagist.org/downloads/",
  10560. "license": [
  10561. "MIT"
  10562. ],
  10563. "authors": [
  10564. {
  10565. "name": "Fabien Potencier",
  10566. "email": "fabien@symfony.com"
  10567. },
  10568. {
  10569. "name": "Symfony Community",
  10570. "homepage": "https://symfony.com/contributors"
  10571. }
  10572. ],
  10573. "description": "Eases the creation of beautiful and testable command line interfaces",
  10574. "homepage": "https://symfony.com",
  10575. "support": {
  10576. "source": "https://github.com/symfony/console/tree/v4.4.34"
  10577. },
  10578. "funding": [
  10579. {
  10580. "url": "https://symfony.com/sponsor",
  10581. "type": "custom"
  10582. },
  10583. {
  10584. "url": "https://github.com/fabpot",
  10585. "type": "github"
  10586. },
  10587. {
  10588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10589. "type": "tidelift"
  10590. }
  10591. ],
  10592. "time": "2021-11-04T12:23:33+00:00"
  10593. },
  10594. {
  10595. "name": "symfony/css-selector",
  10596. "version": "v4.4.37",
  10597. "source": {
  10598. "type": "git",
  10599. "url": "https://github.com/symfony/css-selector.git",
  10600. "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436"
  10601. },
  10602. "dist": {
  10603. "type": "zip",
  10604. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0628e6c6d7c92f1a7bae543959bdc17347be2436",
  10605. "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436",
  10606. "shasum": ""
  10607. },
  10608. "require": {
  10609. "php": ">=7.1.3",
  10610. "symfony/polyfill-php80": "^1.16"
  10611. },
  10612. "type": "library",
  10613. "autoload": {
  10614. "psr-4": {
  10615. "Symfony\\Component\\CssSelector\\": ""
  10616. },
  10617. "exclude-from-classmap": [
  10618. "/Tests/"
  10619. ]
  10620. },
  10621. "notification-url": "https://packagist.org/downloads/",
  10622. "license": [
  10623. "MIT"
  10624. ],
  10625. "authors": [
  10626. {
  10627. "name": "Fabien Potencier",
  10628. "email": "fabien@symfony.com"
  10629. },
  10630. {
  10631. "name": "Jean-François Simon",
  10632. "email": "jeanfrancois.simon@sensiolabs.com"
  10633. },
  10634. {
  10635. "name": "Symfony Community",
  10636. "homepage": "https://symfony.com/contributors"
  10637. }
  10638. ],
  10639. "description": "Converts CSS selectors to XPath expressions",
  10640. "homepage": "https://symfony.com",
  10641. "support": {
  10642. "source": "https://github.com/symfony/css-selector/tree/v4.4.37"
  10643. },
  10644. "funding": [
  10645. {
  10646. "url": "https://symfony.com/sponsor",
  10647. "type": "custom"
  10648. },
  10649. {
  10650. "url": "https://github.com/fabpot",
  10651. "type": "github"
  10652. },
  10653. {
  10654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10655. "type": "tidelift"
  10656. }
  10657. ],
  10658. "time": "2022-01-02T09:41:36+00:00"
  10659. },
  10660. {
  10661. "name": "symfony/debug",
  10662. "version": "v4.4.31",
  10663. "source": {
  10664. "type": "git",
  10665. "url": "https://github.com/symfony/debug.git",
  10666. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0"
  10667. },
  10668. "dist": {
  10669. "type": "zip",
  10670. "url": "https://api.github.com/repos/symfony/debug/zipball/43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10671. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10672. "shasum": ""
  10673. },
  10674. "require": {
  10675. "php": ">=7.1.3",
  10676. "psr/log": "^1|^2|^3"
  10677. },
  10678. "conflict": {
  10679. "symfony/http-kernel": "<3.4"
  10680. },
  10681. "require-dev": {
  10682. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10683. },
  10684. "type": "library",
  10685. "autoload": {
  10686. "psr-4": {
  10687. "Symfony\\Component\\Debug\\": ""
  10688. },
  10689. "exclude-from-classmap": [
  10690. "/Tests/"
  10691. ]
  10692. },
  10693. "notification-url": "https://packagist.org/downloads/",
  10694. "license": [
  10695. "MIT"
  10696. ],
  10697. "authors": [
  10698. {
  10699. "name": "Fabien Potencier",
  10700. "email": "fabien@symfony.com"
  10701. },
  10702. {
  10703. "name": "Symfony Community",
  10704. "homepage": "https://symfony.com/contributors"
  10705. }
  10706. ],
  10707. "description": "Provides tools to ease debugging PHP code",
  10708. "homepage": "https://symfony.com",
  10709. "support": {
  10710. "source": "https://github.com/symfony/debug/tree/v4.4.31"
  10711. },
  10712. "funding": [
  10713. {
  10714. "url": "https://symfony.com/sponsor",
  10715. "type": "custom"
  10716. },
  10717. {
  10718. "url": "https://github.com/fabpot",
  10719. "type": "github"
  10720. },
  10721. {
  10722. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10723. "type": "tidelift"
  10724. }
  10725. ],
  10726. "time": "2021-09-24T13:30:14+00:00"
  10727. },
  10728. {
  10729. "name": "symfony/dependency-injection",
  10730. "version": "v4.4.34",
  10731. "source": {
  10732. "type": "git",
  10733. "url": "https://github.com/symfony/dependency-injection.git",
  10734. "reference": "117d7f132ed7efbd535ec947709d49bec1b9d24b"
  10735. },
  10736. "dist": {
  10737. "type": "zip",
  10738. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/117d7f132ed7efbd535ec947709d49bec1b9d24b",
  10739. "reference": "117d7f132ed7efbd535ec947709d49bec1b9d24b",
  10740. "shasum": ""
  10741. },
  10742. "require": {
  10743. "php": ">=7.1.3",
  10744. "psr/container": "^1.0",
  10745. "symfony/polyfill-php80": "^1.16",
  10746. "symfony/service-contracts": "^1.1.6|^2"
  10747. },
  10748. "conflict": {
  10749. "symfony/config": "<4.3|>=5.0",
  10750. "symfony/finder": "<3.4",
  10751. "symfony/proxy-manager-bridge": "<3.4",
  10752. "symfony/yaml": "<3.4"
  10753. },
  10754. "provide": {
  10755. "psr/container-implementation": "1.0",
  10756. "symfony/service-implementation": "1.0|2.0"
  10757. },
  10758. "require-dev": {
  10759. "symfony/config": "^4.3",
  10760. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10761. "symfony/yaml": "^4.4|^5.0"
  10762. },
  10763. "suggest": {
  10764. "symfony/config": "",
  10765. "symfony/expression-language": "For using expressions in service container configuration",
  10766. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  10767. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  10768. "symfony/yaml": ""
  10769. },
  10770. "type": "library",
  10771. "autoload": {
  10772. "psr-4": {
  10773. "Symfony\\Component\\DependencyInjection\\": ""
  10774. },
  10775. "exclude-from-classmap": [
  10776. "/Tests/"
  10777. ]
  10778. },
  10779. "notification-url": "https://packagist.org/downloads/",
  10780. "license": [
  10781. "MIT"
  10782. ],
  10783. "authors": [
  10784. {
  10785. "name": "Fabien Potencier",
  10786. "email": "fabien@symfony.com"
  10787. },
  10788. {
  10789. "name": "Symfony Community",
  10790. "homepage": "https://symfony.com/contributors"
  10791. }
  10792. ],
  10793. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10794. "homepage": "https://symfony.com",
  10795. "support": {
  10796. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.34"
  10797. },
  10798. "funding": [
  10799. {
  10800. "url": "https://symfony.com/sponsor",
  10801. "type": "custom"
  10802. },
  10803. {
  10804. "url": "https://github.com/fabpot",
  10805. "type": "github"
  10806. },
  10807. {
  10808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10809. "type": "tidelift"
  10810. }
  10811. ],
  10812. "time": "2021-11-15T14:42:25+00:00"
  10813. },
  10814. {
  10815. "name": "symfony/deprecation-contracts",
  10816. "version": "v2.5.0",
  10817. "source": {
  10818. "type": "git",
  10819. "url": "https://github.com/symfony/deprecation-contracts.git",
  10820. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  10821. },
  10822. "dist": {
  10823. "type": "zip",
  10824. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  10825. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  10826. "shasum": ""
  10827. },
  10828. "require": {
  10829. "php": ">=7.1"
  10830. },
  10831. "type": "library",
  10832. "extra": {
  10833. "branch-alias": {
  10834. "dev-main": "2.5-dev"
  10835. },
  10836. "thanks": {
  10837. "name": "symfony/contracts",
  10838. "url": "https://github.com/symfony/contracts"
  10839. }
  10840. },
  10841. "autoload": {
  10842. "files": [
  10843. "function.php"
  10844. ]
  10845. },
  10846. "notification-url": "https://packagist.org/downloads/",
  10847. "license": [
  10848. "MIT"
  10849. ],
  10850. "authors": [
  10851. {
  10852. "name": "Nicolas Grekas",
  10853. "email": "p@tchwork.com"
  10854. },
  10855. {
  10856. "name": "Symfony Community",
  10857. "homepage": "https://symfony.com/contributors"
  10858. }
  10859. ],
  10860. "description": "A generic function and convention to trigger deprecation notices",
  10861. "homepage": "https://symfony.com",
  10862. "support": {
  10863. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  10864. },
  10865. "funding": [
  10866. {
  10867. "url": "https://symfony.com/sponsor",
  10868. "type": "custom"
  10869. },
  10870. {
  10871. "url": "https://github.com/fabpot",
  10872. "type": "github"
  10873. },
  10874. {
  10875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10876. "type": "tidelift"
  10877. }
  10878. ],
  10879. "time": "2021-07-12T14:48:14+00:00"
  10880. },
  10881. {
  10882. "name": "symfony/dom-crawler",
  10883. "version": "v4.4.37",
  10884. "source": {
  10885. "type": "git",
  10886. "url": "https://github.com/symfony/dom-crawler.git",
  10887. "reference": "60d36408a3a48500bcc6e30d9f831e51d04d7fa4"
  10888. },
  10889. "dist": {
  10890. "type": "zip",
  10891. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/60d36408a3a48500bcc6e30d9f831e51d04d7fa4",
  10892. "reference": "60d36408a3a48500bcc6e30d9f831e51d04d7fa4",
  10893. "shasum": ""
  10894. },
  10895. "require": {
  10896. "php": ">=7.1.3",
  10897. "symfony/polyfill-ctype": "~1.8",
  10898. "symfony/polyfill-mbstring": "~1.0",
  10899. "symfony/polyfill-php80": "^1.16"
  10900. },
  10901. "conflict": {
  10902. "masterminds/html5": "<2.6"
  10903. },
  10904. "require-dev": {
  10905. "masterminds/html5": "^2.6",
  10906. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10907. },
  10908. "suggest": {
  10909. "symfony/css-selector": ""
  10910. },
  10911. "type": "library",
  10912. "autoload": {
  10913. "psr-4": {
  10914. "Symfony\\Component\\DomCrawler\\": ""
  10915. },
  10916. "exclude-from-classmap": [
  10917. "/Tests/"
  10918. ]
  10919. },
  10920. "notification-url": "https://packagist.org/downloads/",
  10921. "license": [
  10922. "MIT"
  10923. ],
  10924. "authors": [
  10925. {
  10926. "name": "Fabien Potencier",
  10927. "email": "fabien@symfony.com"
  10928. },
  10929. {
  10930. "name": "Symfony Community",
  10931. "homepage": "https://symfony.com/contributors"
  10932. }
  10933. ],
  10934. "description": "Eases DOM navigation for HTML and XML documents",
  10935. "homepage": "https://symfony.com",
  10936. "support": {
  10937. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.37"
  10938. },
  10939. "funding": [
  10940. {
  10941. "url": "https://symfony.com/sponsor",
  10942. "type": "custom"
  10943. },
  10944. {
  10945. "url": "https://github.com/fabpot",
  10946. "type": "github"
  10947. },
  10948. {
  10949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10950. "type": "tidelift"
  10951. }
  10952. ],
  10953. "time": "2022-01-02T09:41:36+00:00"
  10954. },
  10955. {
  10956. "name": "symfony/error-handler",
  10957. "version": "v4.4.34",
  10958. "source": {
  10959. "type": "git",
  10960. "url": "https://github.com/symfony/error-handler.git",
  10961. "reference": "17785c374645def1e884d8ec49976c156c61db4d"
  10962. },
  10963. "dist": {
  10964. "type": "zip",
  10965. "url": "https://api.github.com/repos/symfony/error-handler/zipball/17785c374645def1e884d8ec49976c156c61db4d",
  10966. "reference": "17785c374645def1e884d8ec49976c156c61db4d",
  10967. "shasum": ""
  10968. },
  10969. "require": {
  10970. "php": ">=7.1.3",
  10971. "psr/log": "^1|^2|^3",
  10972. "symfony/debug": "^4.4.5",
  10973. "symfony/var-dumper": "^4.4|^5.0"
  10974. },
  10975. "require-dev": {
  10976. "symfony/http-kernel": "^4.4|^5.0",
  10977. "symfony/serializer": "^4.4|^5.0"
  10978. },
  10979. "type": "library",
  10980. "autoload": {
  10981. "psr-4": {
  10982. "Symfony\\Component\\ErrorHandler\\": ""
  10983. },
  10984. "exclude-from-classmap": [
  10985. "/Tests/"
  10986. ]
  10987. },
  10988. "notification-url": "https://packagist.org/downloads/",
  10989. "license": [
  10990. "MIT"
  10991. ],
  10992. "authors": [
  10993. {
  10994. "name": "Fabien Potencier",
  10995. "email": "fabien@symfony.com"
  10996. },
  10997. {
  10998. "name": "Symfony Community",
  10999. "homepage": "https://symfony.com/contributors"
  11000. }
  11001. ],
  11002. "description": "Provides tools to manage errors and ease debugging PHP code",
  11003. "homepage": "https://symfony.com",
  11004. "support": {
  11005. "source": "https://github.com/symfony/error-handler/tree/v4.4.34"
  11006. },
  11007. "funding": [
  11008. {
  11009. "url": "https://symfony.com/sponsor",
  11010. "type": "custom"
  11011. },
  11012. {
  11013. "url": "https://github.com/fabpot",
  11014. "type": "github"
  11015. },
  11016. {
  11017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11018. "type": "tidelift"
  11019. }
  11020. ],
  11021. "time": "2021-11-12T14:57:39+00:00"
  11022. },
  11023. {
  11024. "name": "symfony/event-dispatcher",
  11025. "version": "v4.4.34",
  11026. "source": {
  11027. "type": "git",
  11028. "url": "https://github.com/symfony/event-dispatcher.git",
  11029. "reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8"
  11030. },
  11031. "dist": {
  11032. "type": "zip",
  11033. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8",
  11034. "reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8",
  11035. "shasum": ""
  11036. },
  11037. "require": {
  11038. "php": ">=7.1.3",
  11039. "symfony/event-dispatcher-contracts": "^1.1",
  11040. "symfony/polyfill-php80": "^1.16"
  11041. },
  11042. "conflict": {
  11043. "symfony/dependency-injection": "<3.4"
  11044. },
  11045. "provide": {
  11046. "psr/event-dispatcher-implementation": "1.0",
  11047. "symfony/event-dispatcher-implementation": "1.1"
  11048. },
  11049. "require-dev": {
  11050. "psr/log": "^1|^2|^3",
  11051. "symfony/config": "^3.4|^4.0|^5.0",
  11052. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11053. "symfony/error-handler": "~3.4|~4.4",
  11054. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11055. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11056. "symfony/service-contracts": "^1.1|^2",
  11057. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  11058. },
  11059. "suggest": {
  11060. "symfony/dependency-injection": "",
  11061. "symfony/http-kernel": ""
  11062. },
  11063. "type": "library",
  11064. "autoload": {
  11065. "psr-4": {
  11066. "Symfony\\Component\\EventDispatcher\\": ""
  11067. },
  11068. "exclude-from-classmap": [
  11069. "/Tests/"
  11070. ]
  11071. },
  11072. "notification-url": "https://packagist.org/downloads/",
  11073. "license": [
  11074. "MIT"
  11075. ],
  11076. "authors": [
  11077. {
  11078. "name": "Fabien Potencier",
  11079. "email": "fabien@symfony.com"
  11080. },
  11081. {
  11082. "name": "Symfony Community",
  11083. "homepage": "https://symfony.com/contributors"
  11084. }
  11085. ],
  11086. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11087. "homepage": "https://symfony.com",
  11088. "support": {
  11089. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.34"
  11090. },
  11091. "funding": [
  11092. {
  11093. "url": "https://symfony.com/sponsor",
  11094. "type": "custom"
  11095. },
  11096. {
  11097. "url": "https://github.com/fabpot",
  11098. "type": "github"
  11099. },
  11100. {
  11101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11102. "type": "tidelift"
  11103. }
  11104. ],
  11105. "time": "2021-11-15T14:42:25+00:00"
  11106. },
  11107. {
  11108. "name": "symfony/event-dispatcher-contracts",
  11109. "version": "v1.1.11",
  11110. "source": {
  11111. "type": "git",
  11112. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11113. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c"
  11114. },
  11115. "dist": {
  11116. "type": "zip",
  11117. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  11118. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  11119. "shasum": ""
  11120. },
  11121. "require": {
  11122. "php": ">=7.1.3"
  11123. },
  11124. "suggest": {
  11125. "psr/event-dispatcher": "",
  11126. "symfony/event-dispatcher-implementation": ""
  11127. },
  11128. "type": "library",
  11129. "extra": {
  11130. "branch-alias": {
  11131. "dev-main": "1.1-dev"
  11132. },
  11133. "thanks": {
  11134. "name": "symfony/contracts",
  11135. "url": "https://github.com/symfony/contracts"
  11136. }
  11137. },
  11138. "autoload": {
  11139. "psr-4": {
  11140. "Symfony\\Contracts\\EventDispatcher\\": ""
  11141. }
  11142. },
  11143. "notification-url": "https://packagist.org/downloads/",
  11144. "license": [
  11145. "MIT"
  11146. ],
  11147. "authors": [
  11148. {
  11149. "name": "Nicolas Grekas",
  11150. "email": "p@tchwork.com"
  11151. },
  11152. {
  11153. "name": "Symfony Community",
  11154. "homepage": "https://symfony.com/contributors"
  11155. }
  11156. ],
  11157. "description": "Generic abstractions related to dispatching event",
  11158. "homepage": "https://symfony.com",
  11159. "keywords": [
  11160. "abstractions",
  11161. "contracts",
  11162. "decoupling",
  11163. "interfaces",
  11164. "interoperability",
  11165. "standards"
  11166. ],
  11167. "support": {
  11168. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.11"
  11169. },
  11170. "funding": [
  11171. {
  11172. "url": "https://symfony.com/sponsor",
  11173. "type": "custom"
  11174. },
  11175. {
  11176. "url": "https://github.com/fabpot",
  11177. "type": "github"
  11178. },
  11179. {
  11180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11181. "type": "tidelift"
  11182. }
  11183. ],
  11184. "time": "2021-03-23T15:25:38+00:00"
  11185. },
  11186. {
  11187. "name": "symfony/filesystem",
  11188. "version": "v4.4.37",
  11189. "source": {
  11190. "type": "git",
  11191. "url": "https://github.com/symfony/filesystem.git",
  11192. "reference": "c59f37705c3e513ae55b2735f128f4ce363c82ec"
  11193. },
  11194. "dist": {
  11195. "type": "zip",
  11196. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c59f37705c3e513ae55b2735f128f4ce363c82ec",
  11197. "reference": "c59f37705c3e513ae55b2735f128f4ce363c82ec",
  11198. "shasum": ""
  11199. },
  11200. "require": {
  11201. "php": ">=7.1.3",
  11202. "symfony/polyfill-ctype": "~1.8",
  11203. "symfony/polyfill-php80": "^1.16"
  11204. },
  11205. "type": "library",
  11206. "autoload": {
  11207. "psr-4": {
  11208. "Symfony\\Component\\Filesystem\\": ""
  11209. },
  11210. "exclude-from-classmap": [
  11211. "/Tests/"
  11212. ]
  11213. },
  11214. "notification-url": "https://packagist.org/downloads/",
  11215. "license": [
  11216. "MIT"
  11217. ],
  11218. "authors": [
  11219. {
  11220. "name": "Fabien Potencier",
  11221. "email": "fabien@symfony.com"
  11222. },
  11223. {
  11224. "name": "Symfony Community",
  11225. "homepage": "https://symfony.com/contributors"
  11226. }
  11227. ],
  11228. "description": "Provides basic utilities for the filesystem",
  11229. "homepage": "https://symfony.com",
  11230. "support": {
  11231. "source": "https://github.com/symfony/filesystem/tree/v4.4.37"
  11232. },
  11233. "funding": [
  11234. {
  11235. "url": "https://symfony.com/sponsor",
  11236. "type": "custom"
  11237. },
  11238. {
  11239. "url": "https://github.com/fabpot",
  11240. "type": "github"
  11241. },
  11242. {
  11243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11244. "type": "tidelift"
  11245. }
  11246. ],
  11247. "time": "2022-01-02T09:41:36+00:00"
  11248. },
  11249. {
  11250. "name": "symfony/finder",
  11251. "version": "v4.4.37",
  11252. "source": {
  11253. "type": "git",
  11254. "url": "https://github.com/symfony/finder.git",
  11255. "reference": "b17d76d7ed179f017aad646e858c90a2771af15d"
  11256. },
  11257. "dist": {
  11258. "type": "zip",
  11259. "url": "https://api.github.com/repos/symfony/finder/zipball/b17d76d7ed179f017aad646e858c90a2771af15d",
  11260. "reference": "b17d76d7ed179f017aad646e858c90a2771af15d",
  11261. "shasum": ""
  11262. },
  11263. "require": {
  11264. "php": ">=7.1.3",
  11265. "symfony/polyfill-php80": "^1.16"
  11266. },
  11267. "type": "library",
  11268. "autoload": {
  11269. "psr-4": {
  11270. "Symfony\\Component\\Finder\\": ""
  11271. },
  11272. "exclude-from-classmap": [
  11273. "/Tests/"
  11274. ]
  11275. },
  11276. "notification-url": "https://packagist.org/downloads/",
  11277. "license": [
  11278. "MIT"
  11279. ],
  11280. "authors": [
  11281. {
  11282. "name": "Fabien Potencier",
  11283. "email": "fabien@symfony.com"
  11284. },
  11285. {
  11286. "name": "Symfony Community",
  11287. "homepage": "https://symfony.com/contributors"
  11288. }
  11289. ],
  11290. "description": "Finds files and directories via an intuitive fluent interface",
  11291. "homepage": "https://symfony.com",
  11292. "support": {
  11293. "source": "https://github.com/symfony/finder/tree/v4.4.37"
  11294. },
  11295. "funding": [
  11296. {
  11297. "url": "https://symfony.com/sponsor",
  11298. "type": "custom"
  11299. },
  11300. {
  11301. "url": "https://github.com/fabpot",
  11302. "type": "github"
  11303. },
  11304. {
  11305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11306. "type": "tidelift"
  11307. }
  11308. ],
  11309. "time": "2022-01-02T09:41:36+00:00"
  11310. },
  11311. {
  11312. "name": "symfony/http-client-contracts",
  11313. "version": "v2.5.0",
  11314. "source": {
  11315. "type": "git",
  11316. "url": "https://github.com/symfony/http-client-contracts.git",
  11317. "reference": "ec82e57b5b714dbb69300d348bd840b345e24166"
  11318. },
  11319. "dist": {
  11320. "type": "zip",
  11321. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ec82e57b5b714dbb69300d348bd840b345e24166",
  11322. "reference": "ec82e57b5b714dbb69300d348bd840b345e24166",
  11323. "shasum": ""
  11324. },
  11325. "require": {
  11326. "php": ">=7.2.5"
  11327. },
  11328. "suggest": {
  11329. "symfony/http-client-implementation": ""
  11330. },
  11331. "type": "library",
  11332. "extra": {
  11333. "branch-alias": {
  11334. "dev-main": "2.5-dev"
  11335. },
  11336. "thanks": {
  11337. "name": "symfony/contracts",
  11338. "url": "https://github.com/symfony/contracts"
  11339. }
  11340. },
  11341. "autoload": {
  11342. "psr-4": {
  11343. "Symfony\\Contracts\\HttpClient\\": ""
  11344. }
  11345. },
  11346. "notification-url": "https://packagist.org/downloads/",
  11347. "license": [
  11348. "MIT"
  11349. ],
  11350. "authors": [
  11351. {
  11352. "name": "Nicolas Grekas",
  11353. "email": "p@tchwork.com"
  11354. },
  11355. {
  11356. "name": "Symfony Community",
  11357. "homepage": "https://symfony.com/contributors"
  11358. }
  11359. ],
  11360. "description": "Generic abstractions related to HTTP clients",
  11361. "homepage": "https://symfony.com",
  11362. "keywords": [
  11363. "abstractions",
  11364. "contracts",
  11365. "decoupling",
  11366. "interfaces",
  11367. "interoperability",
  11368. "standards"
  11369. ],
  11370. "support": {
  11371. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.0"
  11372. },
  11373. "funding": [
  11374. {
  11375. "url": "https://symfony.com/sponsor",
  11376. "type": "custom"
  11377. },
  11378. {
  11379. "url": "https://github.com/fabpot",
  11380. "type": "github"
  11381. },
  11382. {
  11383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11384. "type": "tidelift"
  11385. }
  11386. ],
  11387. "time": "2021-11-03T09:24:47+00:00"
  11388. },
  11389. {
  11390. "name": "symfony/http-foundation",
  11391. "version": "v4.4.34",
  11392. "source": {
  11393. "type": "git",
  11394. "url": "https://github.com/symfony/http-foundation.git",
  11395. "reference": "f4cbbb6fc428588ce8373802461e7fe84e6809ab"
  11396. },
  11397. "dist": {
  11398. "type": "zip",
  11399. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4cbbb6fc428588ce8373802461e7fe84e6809ab",
  11400. "reference": "f4cbbb6fc428588ce8373802461e7fe84e6809ab",
  11401. "shasum": ""
  11402. },
  11403. "require": {
  11404. "php": ">=7.1.3",
  11405. "symfony/mime": "^4.3|^5.0",
  11406. "symfony/polyfill-mbstring": "~1.1",
  11407. "symfony/polyfill-php80": "^1.16"
  11408. },
  11409. "require-dev": {
  11410. "predis/predis": "~1.0",
  11411. "symfony/expression-language": "^3.4|^4.0|^5.0"
  11412. },
  11413. "type": "library",
  11414. "autoload": {
  11415. "psr-4": {
  11416. "Symfony\\Component\\HttpFoundation\\": ""
  11417. },
  11418. "exclude-from-classmap": [
  11419. "/Tests/"
  11420. ]
  11421. },
  11422. "notification-url": "https://packagist.org/downloads/",
  11423. "license": [
  11424. "MIT"
  11425. ],
  11426. "authors": [
  11427. {
  11428. "name": "Fabien Potencier",
  11429. "email": "fabien@symfony.com"
  11430. },
  11431. {
  11432. "name": "Symfony Community",
  11433. "homepage": "https://symfony.com/contributors"
  11434. }
  11435. ],
  11436. "description": "Defines an object-oriented layer for the HTTP specification",
  11437. "homepage": "https://symfony.com",
  11438. "support": {
  11439. "source": "https://github.com/symfony/http-foundation/tree/v4.4.34"
  11440. },
  11441. "funding": [
  11442. {
  11443. "url": "https://symfony.com/sponsor",
  11444. "type": "custom"
  11445. },
  11446. {
  11447. "url": "https://github.com/fabpot",
  11448. "type": "github"
  11449. },
  11450. {
  11451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11452. "type": "tidelift"
  11453. }
  11454. ],
  11455. "time": "2021-11-04T12:23:33+00:00"
  11456. },
  11457. {
  11458. "name": "symfony/http-kernel",
  11459. "version": "v4.4.35",
  11460. "source": {
  11461. "type": "git",
  11462. "url": "https://github.com/symfony/http-kernel.git",
  11463. "reference": "fb793f1381c34b79a43596a532a6a49bd729c9db"
  11464. },
  11465. "dist": {
  11466. "type": "zip",
  11467. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fb793f1381c34b79a43596a532a6a49bd729c9db",
  11468. "reference": "fb793f1381c34b79a43596a532a6a49bd729c9db",
  11469. "shasum": ""
  11470. },
  11471. "require": {
  11472. "php": ">=7.1.3",
  11473. "psr/log": "^1|^2",
  11474. "symfony/error-handler": "^4.4",
  11475. "symfony/event-dispatcher": "^4.4",
  11476. "symfony/http-client-contracts": "^1.1|^2",
  11477. "symfony/http-foundation": "^4.4.30|^5.3.7",
  11478. "symfony/polyfill-ctype": "^1.8",
  11479. "symfony/polyfill-php73": "^1.9",
  11480. "symfony/polyfill-php80": "^1.16"
  11481. },
  11482. "conflict": {
  11483. "symfony/browser-kit": "<4.3",
  11484. "symfony/config": "<3.4",
  11485. "symfony/console": ">=5",
  11486. "symfony/dependency-injection": "<4.3",
  11487. "symfony/translation": "<4.2",
  11488. "twig/twig": "<1.43|<2.13,>=2"
  11489. },
  11490. "provide": {
  11491. "psr/log-implementation": "1.0|2.0"
  11492. },
  11493. "require-dev": {
  11494. "psr/cache": "^1.0|^2.0|^3.0",
  11495. "symfony/browser-kit": "^4.3|^5.0",
  11496. "symfony/config": "^3.4|^4.0|^5.0",
  11497. "symfony/console": "^3.4|^4.0",
  11498. "symfony/css-selector": "^3.4|^4.0|^5.0",
  11499. "symfony/dependency-injection": "^4.3|^5.0",
  11500. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  11501. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11502. "symfony/finder": "^3.4|^4.0|^5.0",
  11503. "symfony/process": "^3.4|^4.0|^5.0",
  11504. "symfony/routing": "^3.4|^4.0|^5.0",
  11505. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  11506. "symfony/templating": "^3.4|^4.0|^5.0",
  11507. "symfony/translation": "^4.2|^5.0",
  11508. "symfony/translation-contracts": "^1.1|^2",
  11509. "twig/twig": "^1.43|^2.13|^3.0.4"
  11510. },
  11511. "suggest": {
  11512. "symfony/browser-kit": "",
  11513. "symfony/config": "",
  11514. "symfony/console": "",
  11515. "symfony/dependency-injection": ""
  11516. },
  11517. "type": "library",
  11518. "autoload": {
  11519. "psr-4": {
  11520. "Symfony\\Component\\HttpKernel\\": ""
  11521. },
  11522. "exclude-from-classmap": [
  11523. "/Tests/"
  11524. ]
  11525. },
  11526. "notification-url": "https://packagist.org/downloads/",
  11527. "license": [
  11528. "MIT"
  11529. ],
  11530. "authors": [
  11531. {
  11532. "name": "Fabien Potencier",
  11533. "email": "fabien@symfony.com"
  11534. },
  11535. {
  11536. "name": "Symfony Community",
  11537. "homepage": "https://symfony.com/contributors"
  11538. }
  11539. ],
  11540. "description": "Provides a structured process for converting a Request into a Response",
  11541. "homepage": "https://symfony.com",
  11542. "support": {
  11543. "source": "https://github.com/symfony/http-kernel/tree/v4.4.35"
  11544. },
  11545. "funding": [
  11546. {
  11547. "url": "https://symfony.com/sponsor",
  11548. "type": "custom"
  11549. },
  11550. {
  11551. "url": "https://github.com/fabpot",
  11552. "type": "github"
  11553. },
  11554. {
  11555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11556. "type": "tidelift"
  11557. }
  11558. ],
  11559. "time": "2021-11-24T08:40:10+00:00"
  11560. },
  11561. {
  11562. "name": "symfony/mime",
  11563. "version": "v5.4.0",
  11564. "source": {
  11565. "type": "git",
  11566. "url": "https://github.com/symfony/mime.git",
  11567. "reference": "d4365000217b67c01acff407573906ff91bcfb34"
  11568. },
  11569. "dist": {
  11570. "type": "zip",
  11571. "url": "https://api.github.com/repos/symfony/mime/zipball/d4365000217b67c01acff407573906ff91bcfb34",
  11572. "reference": "d4365000217b67c01acff407573906ff91bcfb34",
  11573. "shasum": ""
  11574. },
  11575. "require": {
  11576. "php": ">=7.2.5",
  11577. "symfony/deprecation-contracts": "^2.1|^3",
  11578. "symfony/polyfill-intl-idn": "^1.10",
  11579. "symfony/polyfill-mbstring": "^1.0",
  11580. "symfony/polyfill-php80": "^1.16"
  11581. },
  11582. "conflict": {
  11583. "egulias/email-validator": "~3.0.0",
  11584. "phpdocumentor/reflection-docblock": "<3.2.2",
  11585. "phpdocumentor/type-resolver": "<1.4.0",
  11586. "symfony/mailer": "<4.4"
  11587. },
  11588. "require-dev": {
  11589. "egulias/email-validator": "^2.1.10|^3.1",
  11590. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11591. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  11592. "symfony/property-access": "^4.4|^5.1|^6.0",
  11593. "symfony/property-info": "^4.4|^5.1|^6.0",
  11594. "symfony/serializer": "^5.2|^6.0"
  11595. },
  11596. "type": "library",
  11597. "autoload": {
  11598. "psr-4": {
  11599. "Symfony\\Component\\Mime\\": ""
  11600. },
  11601. "exclude-from-classmap": [
  11602. "/Tests/"
  11603. ]
  11604. },
  11605. "notification-url": "https://packagist.org/downloads/",
  11606. "license": [
  11607. "MIT"
  11608. ],
  11609. "authors": [
  11610. {
  11611. "name": "Fabien Potencier",
  11612. "email": "fabien@symfony.com"
  11613. },
  11614. {
  11615. "name": "Symfony Community",
  11616. "homepage": "https://symfony.com/contributors"
  11617. }
  11618. ],
  11619. "description": "Allows manipulating MIME messages",
  11620. "homepage": "https://symfony.com",
  11621. "keywords": [
  11622. "mime",
  11623. "mime-type"
  11624. ],
  11625. "support": {
  11626. "source": "https://github.com/symfony/mime/tree/v5.4.0"
  11627. },
  11628. "funding": [
  11629. {
  11630. "url": "https://symfony.com/sponsor",
  11631. "type": "custom"
  11632. },
  11633. {
  11634. "url": "https://github.com/fabpot",
  11635. "type": "github"
  11636. },
  11637. {
  11638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11639. "type": "tidelift"
  11640. }
  11641. ],
  11642. "time": "2021-11-23T10:19:22+00:00"
  11643. },
  11644. {
  11645. "name": "symfony/polyfill-ctype",
  11646. "version": "v1.23.0",
  11647. "source": {
  11648. "type": "git",
  11649. "url": "https://github.com/symfony/polyfill-ctype.git",
  11650. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  11651. },
  11652. "dist": {
  11653. "type": "zip",
  11654. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  11655. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  11656. "shasum": ""
  11657. },
  11658. "require": {
  11659. "php": ">=7.1"
  11660. },
  11661. "suggest": {
  11662. "ext-ctype": "For best performance"
  11663. },
  11664. "type": "library",
  11665. "extra": {
  11666. "branch-alias": {
  11667. "dev-main": "1.23-dev"
  11668. },
  11669. "thanks": {
  11670. "name": "symfony/polyfill",
  11671. "url": "https://github.com/symfony/polyfill"
  11672. }
  11673. },
  11674. "autoload": {
  11675. "psr-4": {
  11676. "Symfony\\Polyfill\\Ctype\\": ""
  11677. },
  11678. "files": [
  11679. "bootstrap.php"
  11680. ]
  11681. },
  11682. "notification-url": "https://packagist.org/downloads/",
  11683. "license": [
  11684. "MIT"
  11685. ],
  11686. "authors": [
  11687. {
  11688. "name": "Gert de Pagter",
  11689. "email": "BackEndTea@gmail.com"
  11690. },
  11691. {
  11692. "name": "Symfony Community",
  11693. "homepage": "https://symfony.com/contributors"
  11694. }
  11695. ],
  11696. "description": "Symfony polyfill for ctype functions",
  11697. "homepage": "https://symfony.com",
  11698. "keywords": [
  11699. "compatibility",
  11700. "ctype",
  11701. "polyfill",
  11702. "portable"
  11703. ],
  11704. "support": {
  11705. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  11706. },
  11707. "funding": [
  11708. {
  11709. "url": "https://symfony.com/sponsor",
  11710. "type": "custom"
  11711. },
  11712. {
  11713. "url": "https://github.com/fabpot",
  11714. "type": "github"
  11715. },
  11716. {
  11717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11718. "type": "tidelift"
  11719. }
  11720. ],
  11721. "time": "2021-02-19T12:13:01+00:00"
  11722. },
  11723. {
  11724. "name": "symfony/polyfill-iconv",
  11725. "version": "v1.23.0",
  11726. "source": {
  11727. "type": "git",
  11728. "url": "https://github.com/symfony/polyfill-iconv.git",
  11729. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  11730. },
  11731. "dist": {
  11732. "type": "zip",
  11733. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  11734. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  11735. "shasum": ""
  11736. },
  11737. "require": {
  11738. "php": ">=7.1"
  11739. },
  11740. "suggest": {
  11741. "ext-iconv": "For best performance"
  11742. },
  11743. "type": "library",
  11744. "extra": {
  11745. "branch-alias": {
  11746. "dev-main": "1.23-dev"
  11747. },
  11748. "thanks": {
  11749. "name": "symfony/polyfill",
  11750. "url": "https://github.com/symfony/polyfill"
  11751. }
  11752. },
  11753. "autoload": {
  11754. "files": [
  11755. "bootstrap.php"
  11756. ],
  11757. "psr-4": {
  11758. "Symfony\\Polyfill\\Iconv\\": ""
  11759. }
  11760. },
  11761. "notification-url": "https://packagist.org/downloads/",
  11762. "license": [
  11763. "MIT"
  11764. ],
  11765. "authors": [
  11766. {
  11767. "name": "Nicolas Grekas",
  11768. "email": "p@tchwork.com"
  11769. },
  11770. {
  11771. "name": "Symfony Community",
  11772. "homepage": "https://symfony.com/contributors"
  11773. }
  11774. ],
  11775. "description": "Symfony polyfill for the Iconv extension",
  11776. "homepage": "https://symfony.com",
  11777. "keywords": [
  11778. "compatibility",
  11779. "iconv",
  11780. "polyfill",
  11781. "portable",
  11782. "shim"
  11783. ],
  11784. "support": {
  11785. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  11786. },
  11787. "funding": [
  11788. {
  11789. "url": "https://symfony.com/sponsor",
  11790. "type": "custom"
  11791. },
  11792. {
  11793. "url": "https://github.com/fabpot",
  11794. "type": "github"
  11795. },
  11796. {
  11797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11798. "type": "tidelift"
  11799. }
  11800. ],
  11801. "time": "2021-05-27T09:27:20+00:00"
  11802. },
  11803. {
  11804. "name": "symfony/polyfill-intl-idn",
  11805. "version": "v1.23.0",
  11806. "source": {
  11807. "type": "git",
  11808. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11809. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  11810. },
  11811. "dist": {
  11812. "type": "zip",
  11813. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  11814. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  11815. "shasum": ""
  11816. },
  11817. "require": {
  11818. "php": ">=7.1",
  11819. "symfony/polyfill-intl-normalizer": "^1.10",
  11820. "symfony/polyfill-php72": "^1.10"
  11821. },
  11822. "suggest": {
  11823. "ext-intl": "For best performance"
  11824. },
  11825. "type": "library",
  11826. "extra": {
  11827. "branch-alias": {
  11828. "dev-main": "1.23-dev"
  11829. },
  11830. "thanks": {
  11831. "name": "symfony/polyfill",
  11832. "url": "https://github.com/symfony/polyfill"
  11833. }
  11834. },
  11835. "autoload": {
  11836. "files": [
  11837. "bootstrap.php"
  11838. ],
  11839. "psr-4": {
  11840. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11841. }
  11842. },
  11843. "notification-url": "https://packagist.org/downloads/",
  11844. "license": [
  11845. "MIT"
  11846. ],
  11847. "authors": [
  11848. {
  11849. "name": "Laurent Bassin",
  11850. "email": "laurent@bassin.info"
  11851. },
  11852. {
  11853. "name": "Trevor Rowbotham",
  11854. "email": "trevor.rowbotham@pm.me"
  11855. },
  11856. {
  11857. "name": "Symfony Community",
  11858. "homepage": "https://symfony.com/contributors"
  11859. }
  11860. ],
  11861. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11862. "homepage": "https://symfony.com",
  11863. "keywords": [
  11864. "compatibility",
  11865. "idn",
  11866. "intl",
  11867. "polyfill",
  11868. "portable",
  11869. "shim"
  11870. ],
  11871. "support": {
  11872. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  11873. },
  11874. "funding": [
  11875. {
  11876. "url": "https://symfony.com/sponsor",
  11877. "type": "custom"
  11878. },
  11879. {
  11880. "url": "https://github.com/fabpot",
  11881. "type": "github"
  11882. },
  11883. {
  11884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11885. "type": "tidelift"
  11886. }
  11887. ],
  11888. "time": "2021-05-27T09:27:20+00:00"
  11889. },
  11890. {
  11891. "name": "symfony/polyfill-intl-normalizer",
  11892. "version": "v1.23.0",
  11893. "source": {
  11894. "type": "git",
  11895. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11896. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  11897. },
  11898. "dist": {
  11899. "type": "zip",
  11900. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  11901. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  11902. "shasum": ""
  11903. },
  11904. "require": {
  11905. "php": ">=7.1"
  11906. },
  11907. "suggest": {
  11908. "ext-intl": "For best performance"
  11909. },
  11910. "type": "library",
  11911. "extra": {
  11912. "branch-alias": {
  11913. "dev-main": "1.23-dev"
  11914. },
  11915. "thanks": {
  11916. "name": "symfony/polyfill",
  11917. "url": "https://github.com/symfony/polyfill"
  11918. }
  11919. },
  11920. "autoload": {
  11921. "files": [
  11922. "bootstrap.php"
  11923. ],
  11924. "psr-4": {
  11925. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11926. },
  11927. "classmap": [
  11928. "Resources/stubs"
  11929. ]
  11930. },
  11931. "notification-url": "https://packagist.org/downloads/",
  11932. "license": [
  11933. "MIT"
  11934. ],
  11935. "authors": [
  11936. {
  11937. "name": "Nicolas Grekas",
  11938. "email": "p@tchwork.com"
  11939. },
  11940. {
  11941. "name": "Symfony Community",
  11942. "homepage": "https://symfony.com/contributors"
  11943. }
  11944. ],
  11945. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11946. "homepage": "https://symfony.com",
  11947. "keywords": [
  11948. "compatibility",
  11949. "intl",
  11950. "normalizer",
  11951. "polyfill",
  11952. "portable",
  11953. "shim"
  11954. ],
  11955. "support": {
  11956. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  11957. },
  11958. "funding": [
  11959. {
  11960. "url": "https://symfony.com/sponsor",
  11961. "type": "custom"
  11962. },
  11963. {
  11964. "url": "https://github.com/fabpot",
  11965. "type": "github"
  11966. },
  11967. {
  11968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11969. "type": "tidelift"
  11970. }
  11971. ],
  11972. "time": "2021-02-19T12:13:01+00:00"
  11973. },
  11974. {
  11975. "name": "symfony/polyfill-mbstring",
  11976. "version": "v1.23.1",
  11977. "source": {
  11978. "type": "git",
  11979. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11980. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  11981. },
  11982. "dist": {
  11983. "type": "zip",
  11984. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  11985. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  11986. "shasum": ""
  11987. },
  11988. "require": {
  11989. "php": ">=7.1"
  11990. },
  11991. "suggest": {
  11992. "ext-mbstring": "For best performance"
  11993. },
  11994. "type": "library",
  11995. "extra": {
  11996. "branch-alias": {
  11997. "dev-main": "1.23-dev"
  11998. },
  11999. "thanks": {
  12000. "name": "symfony/polyfill",
  12001. "url": "https://github.com/symfony/polyfill"
  12002. }
  12003. },
  12004. "autoload": {
  12005. "psr-4": {
  12006. "Symfony\\Polyfill\\Mbstring\\": ""
  12007. },
  12008. "files": [
  12009. "bootstrap.php"
  12010. ]
  12011. },
  12012. "notification-url": "https://packagist.org/downloads/",
  12013. "license": [
  12014. "MIT"
  12015. ],
  12016. "authors": [
  12017. {
  12018. "name": "Nicolas Grekas",
  12019. "email": "p@tchwork.com"
  12020. },
  12021. {
  12022. "name": "Symfony Community",
  12023. "homepage": "https://symfony.com/contributors"
  12024. }
  12025. ],
  12026. "description": "Symfony polyfill for the Mbstring extension",
  12027. "homepage": "https://symfony.com",
  12028. "keywords": [
  12029. "compatibility",
  12030. "mbstring",
  12031. "polyfill",
  12032. "portable",
  12033. "shim"
  12034. ],
  12035. "support": {
  12036. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  12037. },
  12038. "funding": [
  12039. {
  12040. "url": "https://symfony.com/sponsor",
  12041. "type": "custom"
  12042. },
  12043. {
  12044. "url": "https://github.com/fabpot",
  12045. "type": "github"
  12046. },
  12047. {
  12048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12049. "type": "tidelift"
  12050. }
  12051. ],
  12052. "time": "2021-05-27T12:26:48+00:00"
  12053. },
  12054. {
  12055. "name": "symfony/polyfill-php72",
  12056. "version": "v1.24.0",
  12057. "source": {
  12058. "type": "git",
  12059. "url": "https://github.com/symfony/polyfill-php72.git",
  12060. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  12061. },
  12062. "dist": {
  12063. "type": "zip",
  12064. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  12065. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  12066. "shasum": ""
  12067. },
  12068. "require": {
  12069. "php": ">=7.1"
  12070. },
  12071. "type": "library",
  12072. "extra": {
  12073. "branch-alias": {
  12074. "dev-main": "1.23-dev"
  12075. },
  12076. "thanks": {
  12077. "name": "symfony/polyfill",
  12078. "url": "https://github.com/symfony/polyfill"
  12079. }
  12080. },
  12081. "autoload": {
  12082. "files": [
  12083. "bootstrap.php"
  12084. ],
  12085. "psr-4": {
  12086. "Symfony\\Polyfill\\Php72\\": ""
  12087. }
  12088. },
  12089. "notification-url": "https://packagist.org/downloads/",
  12090. "license": [
  12091. "MIT"
  12092. ],
  12093. "authors": [
  12094. {
  12095. "name": "Nicolas Grekas",
  12096. "email": "p@tchwork.com"
  12097. },
  12098. {
  12099. "name": "Symfony Community",
  12100. "homepage": "https://symfony.com/contributors"
  12101. }
  12102. ],
  12103. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  12104. "homepage": "https://symfony.com",
  12105. "keywords": [
  12106. "compatibility",
  12107. "polyfill",
  12108. "portable",
  12109. "shim"
  12110. ],
  12111. "support": {
  12112. "source": "https://github.com/symfony/polyfill-php72/tree/v1.24.0"
  12113. },
  12114. "funding": [
  12115. {
  12116. "url": "https://symfony.com/sponsor",
  12117. "type": "custom"
  12118. },
  12119. {
  12120. "url": "https://github.com/fabpot",
  12121. "type": "github"
  12122. },
  12123. {
  12124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12125. "type": "tidelift"
  12126. }
  12127. ],
  12128. "time": "2021-05-27T09:17:38+00:00"
  12129. },
  12130. {
  12131. "name": "symfony/polyfill-php73",
  12132. "version": "v1.24.0",
  12133. "source": {
  12134. "type": "git",
  12135. "url": "https://github.com/symfony/polyfill-php73.git",
  12136. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  12137. },
  12138. "dist": {
  12139. "type": "zip",
  12140. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  12141. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  12142. "shasum": ""
  12143. },
  12144. "require": {
  12145. "php": ">=7.1"
  12146. },
  12147. "type": "library",
  12148. "extra": {
  12149. "branch-alias": {
  12150. "dev-main": "1.23-dev"
  12151. },
  12152. "thanks": {
  12153. "name": "symfony/polyfill",
  12154. "url": "https://github.com/symfony/polyfill"
  12155. }
  12156. },
  12157. "autoload": {
  12158. "files": [
  12159. "bootstrap.php"
  12160. ],
  12161. "psr-4": {
  12162. "Symfony\\Polyfill\\Php73\\": ""
  12163. },
  12164. "classmap": [
  12165. "Resources/stubs"
  12166. ]
  12167. },
  12168. "notification-url": "https://packagist.org/downloads/",
  12169. "license": [
  12170. "MIT"
  12171. ],
  12172. "authors": [
  12173. {
  12174. "name": "Nicolas Grekas",
  12175. "email": "p@tchwork.com"
  12176. },
  12177. {
  12178. "name": "Symfony Community",
  12179. "homepage": "https://symfony.com/contributors"
  12180. }
  12181. ],
  12182. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  12183. "homepage": "https://symfony.com",
  12184. "keywords": [
  12185. "compatibility",
  12186. "polyfill",
  12187. "portable",
  12188. "shim"
  12189. ],
  12190. "support": {
  12191. "source": "https://github.com/symfony/polyfill-php73/tree/v1.24.0"
  12192. },
  12193. "funding": [
  12194. {
  12195. "url": "https://symfony.com/sponsor",
  12196. "type": "custom"
  12197. },
  12198. {
  12199. "url": "https://github.com/fabpot",
  12200. "type": "github"
  12201. },
  12202. {
  12203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12204. "type": "tidelift"
  12205. }
  12206. ],
  12207. "time": "2021-06-05T21:20:04+00:00"
  12208. },
  12209. {
  12210. "name": "symfony/polyfill-php80",
  12211. "version": "v1.23.1",
  12212. "source": {
  12213. "type": "git",
  12214. "url": "https://github.com/symfony/polyfill-php80.git",
  12215. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  12216. },
  12217. "dist": {
  12218. "type": "zip",
  12219. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  12220. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  12221. "shasum": ""
  12222. },
  12223. "require": {
  12224. "php": ">=7.1"
  12225. },
  12226. "type": "library",
  12227. "extra": {
  12228. "branch-alias": {
  12229. "dev-main": "1.23-dev"
  12230. },
  12231. "thanks": {
  12232. "name": "symfony/polyfill",
  12233. "url": "https://github.com/symfony/polyfill"
  12234. }
  12235. },
  12236. "autoload": {
  12237. "files": [
  12238. "bootstrap.php"
  12239. ],
  12240. "psr-4": {
  12241. "Symfony\\Polyfill\\Php80\\": ""
  12242. },
  12243. "classmap": [
  12244. "Resources/stubs"
  12245. ]
  12246. },
  12247. "notification-url": "https://packagist.org/downloads/",
  12248. "license": [
  12249. "MIT"
  12250. ],
  12251. "authors": [
  12252. {
  12253. "name": "Ion Bazan",
  12254. "email": "ion.bazan@gmail.com"
  12255. },
  12256. {
  12257. "name": "Nicolas Grekas",
  12258. "email": "p@tchwork.com"
  12259. },
  12260. {
  12261. "name": "Symfony Community",
  12262. "homepage": "https://symfony.com/contributors"
  12263. }
  12264. ],
  12265. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  12266. "homepage": "https://symfony.com",
  12267. "keywords": [
  12268. "compatibility",
  12269. "polyfill",
  12270. "portable",
  12271. "shim"
  12272. ],
  12273. "support": {
  12274. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  12275. },
  12276. "funding": [
  12277. {
  12278. "url": "https://symfony.com/sponsor",
  12279. "type": "custom"
  12280. },
  12281. {
  12282. "url": "https://github.com/fabpot",
  12283. "type": "github"
  12284. },
  12285. {
  12286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12287. "type": "tidelift"
  12288. }
  12289. ],
  12290. "time": "2021-07-28T13:41:28+00:00"
  12291. },
  12292. {
  12293. "name": "symfony/polyfill-php81",
  12294. "version": "v1.24.0",
  12295. "source": {
  12296. "type": "git",
  12297. "url": "https://github.com/symfony/polyfill-php81.git",
  12298. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
  12299. },
  12300. "dist": {
  12301. "type": "zip",
  12302. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  12303. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  12304. "shasum": ""
  12305. },
  12306. "require": {
  12307. "php": ">=7.1"
  12308. },
  12309. "type": "library",
  12310. "extra": {
  12311. "branch-alias": {
  12312. "dev-main": "1.23-dev"
  12313. },
  12314. "thanks": {
  12315. "name": "symfony/polyfill",
  12316. "url": "https://github.com/symfony/polyfill"
  12317. }
  12318. },
  12319. "autoload": {
  12320. "psr-4": {
  12321. "Symfony\\Polyfill\\Php81\\": ""
  12322. },
  12323. "files": [
  12324. "bootstrap.php"
  12325. ],
  12326. "classmap": [
  12327. "Resources/stubs"
  12328. ]
  12329. },
  12330. "notification-url": "https://packagist.org/downloads/",
  12331. "license": [
  12332. "MIT"
  12333. ],
  12334. "authors": [
  12335. {
  12336. "name": "Nicolas Grekas",
  12337. "email": "p@tchwork.com"
  12338. },
  12339. {
  12340. "name": "Symfony Community",
  12341. "homepage": "https://symfony.com/contributors"
  12342. }
  12343. ],
  12344. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12345. "homepage": "https://symfony.com",
  12346. "keywords": [
  12347. "compatibility",
  12348. "polyfill",
  12349. "portable",
  12350. "shim"
  12351. ],
  12352. "support": {
  12353. "source": "https://github.com/symfony/polyfill-php81/tree/v1.24.0"
  12354. },
  12355. "funding": [
  12356. {
  12357. "url": "https://symfony.com/sponsor",
  12358. "type": "custom"
  12359. },
  12360. {
  12361. "url": "https://github.com/fabpot",
  12362. "type": "github"
  12363. },
  12364. {
  12365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12366. "type": "tidelift"
  12367. }
  12368. ],
  12369. "time": "2021-09-13T13:58:11+00:00"
  12370. },
  12371. {
  12372. "name": "symfony/process",
  12373. "version": "v4.4.35",
  12374. "source": {
  12375. "type": "git",
  12376. "url": "https://github.com/symfony/process.git",
  12377. "reference": "c2098705326addae6e6742151dfade47ac71da1b"
  12378. },
  12379. "dist": {
  12380. "type": "zip",
  12381. "url": "https://api.github.com/repos/symfony/process/zipball/c2098705326addae6e6742151dfade47ac71da1b",
  12382. "reference": "c2098705326addae6e6742151dfade47ac71da1b",
  12383. "shasum": ""
  12384. },
  12385. "require": {
  12386. "php": ">=7.1.3",
  12387. "symfony/polyfill-php80": "^1.16"
  12388. },
  12389. "type": "library",
  12390. "autoload": {
  12391. "psr-4": {
  12392. "Symfony\\Component\\Process\\": ""
  12393. },
  12394. "exclude-from-classmap": [
  12395. "/Tests/"
  12396. ]
  12397. },
  12398. "notification-url": "https://packagist.org/downloads/",
  12399. "license": [
  12400. "MIT"
  12401. ],
  12402. "authors": [
  12403. {
  12404. "name": "Fabien Potencier",
  12405. "email": "fabien@symfony.com"
  12406. },
  12407. {
  12408. "name": "Symfony Community",
  12409. "homepage": "https://symfony.com/contributors"
  12410. }
  12411. ],
  12412. "description": "Executes commands in sub-processes",
  12413. "homepage": "https://symfony.com",
  12414. "support": {
  12415. "source": "https://github.com/symfony/process/tree/v4.4.35"
  12416. },
  12417. "funding": [
  12418. {
  12419. "url": "https://symfony.com/sponsor",
  12420. "type": "custom"
  12421. },
  12422. {
  12423. "url": "https://github.com/fabpot",
  12424. "type": "github"
  12425. },
  12426. {
  12427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12428. "type": "tidelift"
  12429. }
  12430. ],
  12431. "time": "2021-11-22T22:36:24+00:00"
  12432. },
  12433. {
  12434. "name": "symfony/psr-http-message-bridge",
  12435. "version": "v2.1.2",
  12436. "source": {
  12437. "type": "git",
  12438. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12439. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  12440. },
  12441. "dist": {
  12442. "type": "zip",
  12443. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  12444. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  12445. "shasum": ""
  12446. },
  12447. "require": {
  12448. "php": ">=7.1",
  12449. "psr/http-message": "^1.0",
  12450. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  12451. },
  12452. "require-dev": {
  12453. "nyholm/psr7": "^1.1",
  12454. "psr/log": "^1.1 || ^2 || ^3",
  12455. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  12456. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  12457. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  12458. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  12459. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  12460. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  12461. },
  12462. "suggest": {
  12463. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  12464. },
  12465. "type": "symfony-bridge",
  12466. "extra": {
  12467. "branch-alias": {
  12468. "dev-main": "2.1-dev"
  12469. }
  12470. },
  12471. "autoload": {
  12472. "psr-4": {
  12473. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12474. },
  12475. "exclude-from-classmap": [
  12476. "/Tests/"
  12477. ]
  12478. },
  12479. "notification-url": "https://packagist.org/downloads/",
  12480. "license": [
  12481. "MIT"
  12482. ],
  12483. "authors": [
  12484. {
  12485. "name": "Fabien Potencier",
  12486. "email": "fabien@symfony.com"
  12487. },
  12488. {
  12489. "name": "Symfony Community",
  12490. "homepage": "http://symfony.com/contributors"
  12491. }
  12492. ],
  12493. "description": "PSR HTTP message bridge",
  12494. "homepage": "http://symfony.com",
  12495. "keywords": [
  12496. "http",
  12497. "http-message",
  12498. "psr-17",
  12499. "psr-7"
  12500. ],
  12501. "support": {
  12502. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  12503. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  12504. },
  12505. "funding": [
  12506. {
  12507. "url": "https://symfony.com/sponsor",
  12508. "type": "custom"
  12509. },
  12510. {
  12511. "url": "https://github.com/fabpot",
  12512. "type": "github"
  12513. },
  12514. {
  12515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12516. "type": "tidelift"
  12517. }
  12518. ],
  12519. "time": "2021-11-05T13:13:39+00:00"
  12520. },
  12521. {
  12522. "name": "symfony/routing",
  12523. "version": "v4.4.34",
  12524. "source": {
  12525. "type": "git",
  12526. "url": "https://github.com/symfony/routing.git",
  12527. "reference": "fc9dda0c8496f8ef0a89805c2eabfc43b8cef366"
  12528. },
  12529. "dist": {
  12530. "type": "zip",
  12531. "url": "https://api.github.com/repos/symfony/routing/zipball/fc9dda0c8496f8ef0a89805c2eabfc43b8cef366",
  12532. "reference": "fc9dda0c8496f8ef0a89805c2eabfc43b8cef366",
  12533. "shasum": ""
  12534. },
  12535. "require": {
  12536. "php": ">=7.1.3",
  12537. "symfony/polyfill-php80": "^1.16"
  12538. },
  12539. "conflict": {
  12540. "symfony/config": "<4.2",
  12541. "symfony/dependency-injection": "<3.4",
  12542. "symfony/yaml": "<3.4"
  12543. },
  12544. "require-dev": {
  12545. "doctrine/annotations": "^1.10.4",
  12546. "psr/log": "^1|^2|^3",
  12547. "symfony/config": "^4.2|^5.0",
  12548. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12549. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12550. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12551. "symfony/yaml": "^3.4|^4.0|^5.0"
  12552. },
  12553. "suggest": {
  12554. "doctrine/annotations": "For using the annotation loader",
  12555. "symfony/config": "For using the all-in-one router or any loader",
  12556. "symfony/expression-language": "For using expression matching",
  12557. "symfony/http-foundation": "For using a Symfony Request object",
  12558. "symfony/yaml": "For using the YAML loader"
  12559. },
  12560. "type": "library",
  12561. "autoload": {
  12562. "psr-4": {
  12563. "Symfony\\Component\\Routing\\": ""
  12564. },
  12565. "exclude-from-classmap": [
  12566. "/Tests/"
  12567. ]
  12568. },
  12569. "notification-url": "https://packagist.org/downloads/",
  12570. "license": [
  12571. "MIT"
  12572. ],
  12573. "authors": [
  12574. {
  12575. "name": "Fabien Potencier",
  12576. "email": "fabien@symfony.com"
  12577. },
  12578. {
  12579. "name": "Symfony Community",
  12580. "homepage": "https://symfony.com/contributors"
  12581. }
  12582. ],
  12583. "description": "Maps an HTTP request to a set of configuration variables",
  12584. "homepage": "https://symfony.com",
  12585. "keywords": [
  12586. "router",
  12587. "routing",
  12588. "uri",
  12589. "url"
  12590. ],
  12591. "support": {
  12592. "source": "https://github.com/symfony/routing/tree/v4.4.34"
  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-11-04T12:23:33+00:00"
  12609. },
  12610. {
  12611. "name": "symfony/serializer",
  12612. "version": "v4.4.35",
  12613. "source": {
  12614. "type": "git",
  12615. "url": "https://github.com/symfony/serializer.git",
  12616. "reference": "1b2ae02cb1b923987947e013688c51954a80b751"
  12617. },
  12618. "dist": {
  12619. "type": "zip",
  12620. "url": "https://api.github.com/repos/symfony/serializer/zipball/1b2ae02cb1b923987947e013688c51954a80b751",
  12621. "reference": "1b2ae02cb1b923987947e013688c51954a80b751",
  12622. "shasum": ""
  12623. },
  12624. "require": {
  12625. "php": ">=7.1.3",
  12626. "symfony/polyfill-ctype": "~1.8",
  12627. "symfony/polyfill-php80": "^1.16"
  12628. },
  12629. "conflict": {
  12630. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  12631. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  12632. "symfony/dependency-injection": "<3.4",
  12633. "symfony/property-access": "<3.4",
  12634. "symfony/property-info": "<3.4",
  12635. "symfony/yaml": "<3.4"
  12636. },
  12637. "require-dev": {
  12638. "doctrine/annotations": "^1.10.4",
  12639. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12640. "symfony/cache": "^3.4|^4.0|^5.0",
  12641. "symfony/config": "^3.4|^4.0|^5.0",
  12642. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12643. "symfony/error-handler": "^4.4|^5.0",
  12644. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12645. "symfony/mime": "^4.4|^5.0",
  12646. "symfony/property-access": "^3.4.41|^4.4.9|^5.0.9",
  12647. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  12648. "symfony/validator": "^3.4|^4.0|^5.0",
  12649. "symfony/yaml": "^3.4|^4.0|^5.0"
  12650. },
  12651. "suggest": {
  12652. "doctrine/annotations": "For using the annotation mapping.",
  12653. "psr/cache-implementation": "For using the metadata cache.",
  12654. "symfony/config": "For using the XML mapping loader.",
  12655. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  12656. "symfony/property-access": "For using the ObjectNormalizer.",
  12657. "symfony/property-info": "To deserialize relations.",
  12658. "symfony/yaml": "For using the default YAML mapping loader."
  12659. },
  12660. "type": "library",
  12661. "autoload": {
  12662. "psr-4": {
  12663. "Symfony\\Component\\Serializer\\": ""
  12664. },
  12665. "exclude-from-classmap": [
  12666. "/Tests/"
  12667. ]
  12668. },
  12669. "notification-url": "https://packagist.org/downloads/",
  12670. "license": [
  12671. "MIT"
  12672. ],
  12673. "authors": [
  12674. {
  12675. "name": "Fabien Potencier",
  12676. "email": "fabien@symfony.com"
  12677. },
  12678. {
  12679. "name": "Symfony Community",
  12680. "homepage": "https://symfony.com/contributors"
  12681. }
  12682. ],
  12683. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12684. "homepage": "https://symfony.com",
  12685. "support": {
  12686. "source": "https://github.com/symfony/serializer/tree/v4.4.35"
  12687. },
  12688. "funding": [
  12689. {
  12690. "url": "https://symfony.com/sponsor",
  12691. "type": "custom"
  12692. },
  12693. {
  12694. "url": "https://github.com/fabpot",
  12695. "type": "github"
  12696. },
  12697. {
  12698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12699. "type": "tidelift"
  12700. }
  12701. ],
  12702. "time": "2021-11-24T08:12:42+00:00"
  12703. },
  12704. {
  12705. "name": "symfony/service-contracts",
  12706. "version": "v2.5.0",
  12707. "source": {
  12708. "type": "git",
  12709. "url": "https://github.com/symfony/service-contracts.git",
  12710. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  12711. },
  12712. "dist": {
  12713. "type": "zip",
  12714. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  12715. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  12716. "shasum": ""
  12717. },
  12718. "require": {
  12719. "php": ">=7.2.5",
  12720. "psr/container": "^1.1",
  12721. "symfony/deprecation-contracts": "^2.1"
  12722. },
  12723. "conflict": {
  12724. "ext-psr": "<1.1|>=2"
  12725. },
  12726. "suggest": {
  12727. "symfony/service-implementation": ""
  12728. },
  12729. "type": "library",
  12730. "extra": {
  12731. "branch-alias": {
  12732. "dev-main": "2.5-dev"
  12733. },
  12734. "thanks": {
  12735. "name": "symfony/contracts",
  12736. "url": "https://github.com/symfony/contracts"
  12737. }
  12738. },
  12739. "autoload": {
  12740. "psr-4": {
  12741. "Symfony\\Contracts\\Service\\": ""
  12742. }
  12743. },
  12744. "notification-url": "https://packagist.org/downloads/",
  12745. "license": [
  12746. "MIT"
  12747. ],
  12748. "authors": [
  12749. {
  12750. "name": "Nicolas Grekas",
  12751. "email": "p@tchwork.com"
  12752. },
  12753. {
  12754. "name": "Symfony Community",
  12755. "homepage": "https://symfony.com/contributors"
  12756. }
  12757. ],
  12758. "description": "Generic abstractions related to writing services",
  12759. "homepage": "https://symfony.com",
  12760. "keywords": [
  12761. "abstractions",
  12762. "contracts",
  12763. "decoupling",
  12764. "interfaces",
  12765. "interoperability",
  12766. "standards"
  12767. ],
  12768. "support": {
  12769. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  12770. },
  12771. "funding": [
  12772. {
  12773. "url": "https://symfony.com/sponsor",
  12774. "type": "custom"
  12775. },
  12776. {
  12777. "url": "https://github.com/fabpot",
  12778. "type": "github"
  12779. },
  12780. {
  12781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12782. "type": "tidelift"
  12783. }
  12784. ],
  12785. "time": "2021-11-04T16:48:04+00:00"
  12786. },
  12787. {
  12788. "name": "symfony/translation",
  12789. "version": "v4.4.34",
  12790. "source": {
  12791. "type": "git",
  12792. "url": "https://github.com/symfony/translation.git",
  12793. "reference": "26d330720627b234803595ecfc0191eeabc65190"
  12794. },
  12795. "dist": {
  12796. "type": "zip",
  12797. "url": "https://api.github.com/repos/symfony/translation/zipball/26d330720627b234803595ecfc0191eeabc65190",
  12798. "reference": "26d330720627b234803595ecfc0191eeabc65190",
  12799. "shasum": ""
  12800. },
  12801. "require": {
  12802. "php": ">=7.1.3",
  12803. "symfony/polyfill-mbstring": "~1.0",
  12804. "symfony/polyfill-php80": "^1.16",
  12805. "symfony/translation-contracts": "^1.1.6|^2"
  12806. },
  12807. "conflict": {
  12808. "symfony/config": "<3.4",
  12809. "symfony/dependency-injection": "<3.4",
  12810. "symfony/http-kernel": "<4.4",
  12811. "symfony/yaml": "<3.4"
  12812. },
  12813. "provide": {
  12814. "symfony/translation-implementation": "1.0|2.0"
  12815. },
  12816. "require-dev": {
  12817. "psr/log": "^1|^2|^3",
  12818. "symfony/config": "^3.4|^4.0|^5.0",
  12819. "symfony/console": "^3.4|^4.0|^5.0",
  12820. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12821. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  12822. "symfony/http-kernel": "^4.4",
  12823. "symfony/intl": "^3.4|^4.0|^5.0",
  12824. "symfony/service-contracts": "^1.1.2|^2",
  12825. "symfony/yaml": "^3.4|^4.0|^5.0"
  12826. },
  12827. "suggest": {
  12828. "psr/log-implementation": "To use logging capability in translator",
  12829. "symfony/config": "",
  12830. "symfony/yaml": ""
  12831. },
  12832. "type": "library",
  12833. "autoload": {
  12834. "psr-4": {
  12835. "Symfony\\Component\\Translation\\": ""
  12836. },
  12837. "exclude-from-classmap": [
  12838. "/Tests/"
  12839. ]
  12840. },
  12841. "notification-url": "https://packagist.org/downloads/",
  12842. "license": [
  12843. "MIT"
  12844. ],
  12845. "authors": [
  12846. {
  12847. "name": "Fabien Potencier",
  12848. "email": "fabien@symfony.com"
  12849. },
  12850. {
  12851. "name": "Symfony Community",
  12852. "homepage": "https://symfony.com/contributors"
  12853. }
  12854. ],
  12855. "description": "Provides tools to internationalize your application",
  12856. "homepage": "https://symfony.com",
  12857. "support": {
  12858. "source": "https://github.com/symfony/translation/tree/v4.4.34"
  12859. },
  12860. "funding": [
  12861. {
  12862. "url": "https://symfony.com/sponsor",
  12863. "type": "custom"
  12864. },
  12865. {
  12866. "url": "https://github.com/fabpot",
  12867. "type": "github"
  12868. },
  12869. {
  12870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12871. "type": "tidelift"
  12872. }
  12873. ],
  12874. "time": "2021-11-04T12:23:33+00:00"
  12875. },
  12876. {
  12877. "name": "symfony/translation-contracts",
  12878. "version": "v2.5.0",
  12879. "source": {
  12880. "type": "git",
  12881. "url": "https://github.com/symfony/translation-contracts.git",
  12882. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  12883. },
  12884. "dist": {
  12885. "type": "zip",
  12886. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  12887. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  12888. "shasum": ""
  12889. },
  12890. "require": {
  12891. "php": ">=7.2.5"
  12892. },
  12893. "suggest": {
  12894. "symfony/translation-implementation": ""
  12895. },
  12896. "type": "library",
  12897. "extra": {
  12898. "branch-alias": {
  12899. "dev-main": "2.5-dev"
  12900. },
  12901. "thanks": {
  12902. "name": "symfony/contracts",
  12903. "url": "https://github.com/symfony/contracts"
  12904. }
  12905. },
  12906. "autoload": {
  12907. "psr-4": {
  12908. "Symfony\\Contracts\\Translation\\": ""
  12909. }
  12910. },
  12911. "notification-url": "https://packagist.org/downloads/",
  12912. "license": [
  12913. "MIT"
  12914. ],
  12915. "authors": [
  12916. {
  12917. "name": "Nicolas Grekas",
  12918. "email": "p@tchwork.com"
  12919. },
  12920. {
  12921. "name": "Symfony Community",
  12922. "homepage": "https://symfony.com/contributors"
  12923. }
  12924. ],
  12925. "description": "Generic abstractions related to translation",
  12926. "homepage": "https://symfony.com",
  12927. "keywords": [
  12928. "abstractions",
  12929. "contracts",
  12930. "decoupling",
  12931. "interfaces",
  12932. "interoperability",
  12933. "standards"
  12934. ],
  12935. "support": {
  12936. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  12937. },
  12938. "funding": [
  12939. {
  12940. "url": "https://symfony.com/sponsor",
  12941. "type": "custom"
  12942. },
  12943. {
  12944. "url": "https://github.com/fabpot",
  12945. "type": "github"
  12946. },
  12947. {
  12948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12949. "type": "tidelift"
  12950. }
  12951. ],
  12952. "time": "2021-08-17T14:20:01+00:00"
  12953. },
  12954. {
  12955. "name": "symfony/validator",
  12956. "version": "v4.4.35",
  12957. "source": {
  12958. "type": "git",
  12959. "url": "https://github.com/symfony/validator.git",
  12960. "reference": "629f420d8350634fd8ed686d4472c1f10044b265"
  12961. },
  12962. "dist": {
  12963. "type": "zip",
  12964. "url": "https://api.github.com/repos/symfony/validator/zipball/629f420d8350634fd8ed686d4472c1f10044b265",
  12965. "reference": "629f420d8350634fd8ed686d4472c1f10044b265",
  12966. "shasum": ""
  12967. },
  12968. "require": {
  12969. "php": ">=7.1.3",
  12970. "symfony/polyfill-ctype": "~1.8",
  12971. "symfony/polyfill-mbstring": "~1.0",
  12972. "symfony/polyfill-php80": "^1.16",
  12973. "symfony/translation-contracts": "^1.1|^2"
  12974. },
  12975. "conflict": {
  12976. "doctrine/lexer": "<1.0.2",
  12977. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  12978. "symfony/dependency-injection": "<3.4",
  12979. "symfony/http-kernel": "<4.4",
  12980. "symfony/intl": "<4.3",
  12981. "symfony/translation": ">=5.0",
  12982. "symfony/yaml": "<3.4"
  12983. },
  12984. "require-dev": {
  12985. "doctrine/annotations": "^1.10.4",
  12986. "doctrine/cache": "^1.0|^2.0",
  12987. "egulias/email-validator": "^2.1.10|^3",
  12988. "symfony/cache": "^3.4|^4.0|^5.0",
  12989. "symfony/config": "^3.4|^4.0|^5.0",
  12990. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12991. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12992. "symfony/http-client": "^4.3|^5.0",
  12993. "symfony/http-foundation": "^4.1|^5.0",
  12994. "symfony/http-kernel": "^4.4",
  12995. "symfony/intl": "^4.3|^5.0",
  12996. "symfony/mime": "^4.4|^5.0",
  12997. "symfony/property-access": "^3.4|^4.0|^5.0",
  12998. "symfony/property-info": "^3.4|^4.0|^5.0",
  12999. "symfony/translation": "^4.2",
  13000. "symfony/yaml": "^3.4|^4.0|^5.0"
  13001. },
  13002. "suggest": {
  13003. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  13004. "doctrine/cache": "For using the default cached annotation reader.",
  13005. "egulias/email-validator": "Strict (RFC compliant) email validation",
  13006. "psr/cache-implementation": "For using the mapping cache.",
  13007. "symfony/config": "",
  13008. "symfony/expression-language": "For using the Expression validator",
  13009. "symfony/http-foundation": "",
  13010. "symfony/intl": "",
  13011. "symfony/property-access": "For accessing properties within comparison constraints",
  13012. "symfony/property-info": "To automatically add NotNull and Type constraints",
  13013. "symfony/translation": "For translating validation errors.",
  13014. "symfony/yaml": ""
  13015. },
  13016. "type": "library",
  13017. "autoload": {
  13018. "psr-4": {
  13019. "Symfony\\Component\\Validator\\": ""
  13020. },
  13021. "exclude-from-classmap": [
  13022. "/Tests/"
  13023. ]
  13024. },
  13025. "notification-url": "https://packagist.org/downloads/",
  13026. "license": [
  13027. "MIT"
  13028. ],
  13029. "authors": [
  13030. {
  13031. "name": "Fabien Potencier",
  13032. "email": "fabien@symfony.com"
  13033. },
  13034. {
  13035. "name": "Symfony Community",
  13036. "homepage": "https://symfony.com/contributors"
  13037. }
  13038. ],
  13039. "description": "Provides tools to validate values",
  13040. "homepage": "https://symfony.com",
  13041. "support": {
  13042. "source": "https://github.com/symfony/validator/tree/v4.4.35"
  13043. },
  13044. "funding": [
  13045. {
  13046. "url": "https://symfony.com/sponsor",
  13047. "type": "custom"
  13048. },
  13049. {
  13050. "url": "https://github.com/fabpot",
  13051. "type": "github"
  13052. },
  13053. {
  13054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13055. "type": "tidelift"
  13056. }
  13057. ],
  13058. "time": "2021-11-22T21:43:32+00:00"
  13059. },
  13060. {
  13061. "name": "symfony/var-dumper",
  13062. "version": "v5.4.0",
  13063. "source": {
  13064. "type": "git",
  13065. "url": "https://github.com/symfony/var-dumper.git",
  13066. "reference": "89ab66eaef230c9cd1992de2e9a1b26652b127b9"
  13067. },
  13068. "dist": {
  13069. "type": "zip",
  13070. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89ab66eaef230c9cd1992de2e9a1b26652b127b9",
  13071. "reference": "89ab66eaef230c9cd1992de2e9a1b26652b127b9",
  13072. "shasum": ""
  13073. },
  13074. "require": {
  13075. "php": ">=7.2.5",
  13076. "symfony/polyfill-mbstring": "~1.0",
  13077. "symfony/polyfill-php80": "^1.16"
  13078. },
  13079. "conflict": {
  13080. "phpunit/phpunit": "<5.4.3",
  13081. "symfony/console": "<4.4"
  13082. },
  13083. "require-dev": {
  13084. "ext-iconv": "*",
  13085. "symfony/console": "^4.4|^5.0|^6.0",
  13086. "symfony/process": "^4.4|^5.0|^6.0",
  13087. "symfony/uid": "^5.1|^6.0",
  13088. "twig/twig": "^2.13|^3.0.4"
  13089. },
  13090. "suggest": {
  13091. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  13092. "ext-intl": "To show region name in time zone dump",
  13093. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  13094. },
  13095. "bin": [
  13096. "Resources/bin/var-dump-server"
  13097. ],
  13098. "type": "library",
  13099. "autoload": {
  13100. "files": [
  13101. "Resources/functions/dump.php"
  13102. ],
  13103. "psr-4": {
  13104. "Symfony\\Component\\VarDumper\\": ""
  13105. },
  13106. "exclude-from-classmap": [
  13107. "/Tests/"
  13108. ]
  13109. },
  13110. "notification-url": "https://packagist.org/downloads/",
  13111. "license": [
  13112. "MIT"
  13113. ],
  13114. "authors": [
  13115. {
  13116. "name": "Nicolas Grekas",
  13117. "email": "p@tchwork.com"
  13118. },
  13119. {
  13120. "name": "Symfony Community",
  13121. "homepage": "https://symfony.com/contributors"
  13122. }
  13123. ],
  13124. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13125. "homepage": "https://symfony.com",
  13126. "keywords": [
  13127. "debug",
  13128. "dump"
  13129. ],
  13130. "support": {
  13131. "source": "https://github.com/symfony/var-dumper/tree/v5.4.0"
  13132. },
  13133. "funding": [
  13134. {
  13135. "url": "https://symfony.com/sponsor",
  13136. "type": "custom"
  13137. },
  13138. {
  13139. "url": "https://github.com/fabpot",
  13140. "type": "github"
  13141. },
  13142. {
  13143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13144. "type": "tidelift"
  13145. }
  13146. ],
  13147. "time": "2021-11-29T15:30:56+00:00"
  13148. },
  13149. {
  13150. "name": "symfony/yaml",
  13151. "version": "v4.4.34",
  13152. "source": {
  13153. "type": "git",
  13154. "url": "https://github.com/symfony/yaml.git",
  13155. "reference": "2c309e258adeb9970229042be39b360d34986fad"
  13156. },
  13157. "dist": {
  13158. "type": "zip",
  13159. "url": "https://api.github.com/repos/symfony/yaml/zipball/2c309e258adeb9970229042be39b360d34986fad",
  13160. "reference": "2c309e258adeb9970229042be39b360d34986fad",
  13161. "shasum": ""
  13162. },
  13163. "require": {
  13164. "php": ">=7.1.3",
  13165. "symfony/polyfill-ctype": "~1.8"
  13166. },
  13167. "conflict": {
  13168. "symfony/console": "<3.4"
  13169. },
  13170. "require-dev": {
  13171. "symfony/console": "^3.4|^4.0|^5.0"
  13172. },
  13173. "suggest": {
  13174. "symfony/console": "For validating YAML files using the lint command"
  13175. },
  13176. "type": "library",
  13177. "autoload": {
  13178. "psr-4": {
  13179. "Symfony\\Component\\Yaml\\": ""
  13180. },
  13181. "exclude-from-classmap": [
  13182. "/Tests/"
  13183. ]
  13184. },
  13185. "notification-url": "https://packagist.org/downloads/",
  13186. "license": [
  13187. "MIT"
  13188. ],
  13189. "authors": [
  13190. {
  13191. "name": "Fabien Potencier",
  13192. "email": "fabien@symfony.com"
  13193. },
  13194. {
  13195. "name": "Symfony Community",
  13196. "homepage": "https://symfony.com/contributors"
  13197. }
  13198. ],
  13199. "description": "Loads and dumps YAML files",
  13200. "homepage": "https://symfony.com",
  13201. "support": {
  13202. "source": "https://github.com/symfony/yaml/tree/v4.4.34"
  13203. },
  13204. "funding": [
  13205. {
  13206. "url": "https://symfony.com/sponsor",
  13207. "type": "custom"
  13208. },
  13209. {
  13210. "url": "https://github.com/fabpot",
  13211. "type": "github"
  13212. },
  13213. {
  13214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13215. "type": "tidelift"
  13216. }
  13217. ],
  13218. "time": "2021-11-18T18:49:23+00:00"
  13219. },
  13220. {
  13221. "name": "twig/twig",
  13222. "version": "v2.14.11",
  13223. "source": {
  13224. "type": "git",
  13225. "url": "https://github.com/twigphp/Twig.git",
  13226. "reference": "66baa66f29ee30e487e05f1679903e36eb01d727"
  13227. },
  13228. "dist": {
  13229. "type": "zip",
  13230. "url": "https://api.github.com/repos/twigphp/Twig/zipball/66baa66f29ee30e487e05f1679903e36eb01d727",
  13231. "reference": "66baa66f29ee30e487e05f1679903e36eb01d727",
  13232. "shasum": ""
  13233. },
  13234. "require": {
  13235. "php": ">=7.1.3",
  13236. "symfony/polyfill-ctype": "^1.8",
  13237. "symfony/polyfill-mbstring": "^1.3",
  13238. "symfony/polyfill-php72": "^1.8"
  13239. },
  13240. "require-dev": {
  13241. "psr/container": "^1.0",
  13242. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  13243. },
  13244. "type": "library",
  13245. "extra": {
  13246. "branch-alias": {
  13247. "dev-master": "2.14-dev"
  13248. }
  13249. },
  13250. "autoload": {
  13251. "psr-0": {
  13252. "Twig_": "lib/"
  13253. },
  13254. "psr-4": {
  13255. "Twig\\": "src/"
  13256. }
  13257. },
  13258. "notification-url": "https://packagist.org/downloads/",
  13259. "license": [
  13260. "BSD-3-Clause"
  13261. ],
  13262. "authors": [
  13263. {
  13264. "name": "Fabien Potencier",
  13265. "email": "fabien@symfony.com",
  13266. "homepage": "http://fabien.potencier.org",
  13267. "role": "Lead Developer"
  13268. },
  13269. {
  13270. "name": "Twig Team",
  13271. "role": "Contributors"
  13272. },
  13273. {
  13274. "name": "Armin Ronacher",
  13275. "email": "armin.ronacher@active-4.com",
  13276. "role": "Project Founder"
  13277. }
  13278. ],
  13279. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13280. "homepage": "https://twig.symfony.com",
  13281. "keywords": [
  13282. "templating"
  13283. ],
  13284. "support": {
  13285. "issues": "https://github.com/twigphp/Twig/issues",
  13286. "source": "https://github.com/twigphp/Twig/tree/v2.14.11"
  13287. },
  13288. "funding": [
  13289. {
  13290. "url": "https://github.com/fabpot",
  13291. "type": "github"
  13292. },
  13293. {
  13294. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13295. "type": "tidelift"
  13296. }
  13297. ],
  13298. "time": "2022-02-04T06:57:25+00:00"
  13299. },
  13300. {
  13301. "name": "typo3/phar-stream-wrapper",
  13302. "version": "v3.1.7",
  13303. "source": {
  13304. "type": "git",
  13305. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  13306. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  13307. },
  13308. "dist": {
  13309. "type": "zip",
  13310. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  13311. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  13312. "shasum": ""
  13313. },
  13314. "require": {
  13315. "ext-json": "*",
  13316. "php": "^7.0 || ^8.0"
  13317. },
  13318. "require-dev": {
  13319. "ext-xdebug": "*",
  13320. "phpspec/prophecy": "^1.10",
  13321. "symfony/phpunit-bridge": "^5.1"
  13322. },
  13323. "suggest": {
  13324. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  13325. },
  13326. "type": "library",
  13327. "extra": {
  13328. "branch-alias": {
  13329. "dev-master": "v3.x-dev"
  13330. }
  13331. },
  13332. "autoload": {
  13333. "psr-4": {
  13334. "TYPO3\\PharStreamWrapper\\": "src/"
  13335. }
  13336. },
  13337. "notification-url": "https://packagist.org/downloads/",
  13338. "license": [
  13339. "MIT"
  13340. ],
  13341. "description": "Interceptors for PHP's native phar:// stream handling",
  13342. "homepage": "https://typo3.org/",
  13343. "keywords": [
  13344. "phar",
  13345. "php",
  13346. "security",
  13347. "stream-wrapper"
  13348. ],
  13349. "support": {
  13350. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  13351. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  13352. },
  13353. "time": "2021-09-20T19:19:13+00:00"
  13354. },
  13355. {
  13356. "name": "webflo/drupal-finder",
  13357. "version": "1.2.2",
  13358. "source": {
  13359. "type": "git",
  13360. "url": "https://github.com/webflo/drupal-finder.git",
  13361. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  13362. },
  13363. "dist": {
  13364. "type": "zip",
  13365. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13366. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13367. "shasum": ""
  13368. },
  13369. "require": {
  13370. "ext-json": "*"
  13371. },
  13372. "require-dev": {
  13373. "mikey179/vfsstream": "^1.6",
  13374. "phpunit/phpunit": "^4.8"
  13375. },
  13376. "type": "library",
  13377. "autoload": {
  13378. "classmap": [
  13379. "src/DrupalFinder.php"
  13380. ]
  13381. },
  13382. "notification-url": "https://packagist.org/downloads/",
  13383. "license": [
  13384. "GPL-2.0-or-later"
  13385. ],
  13386. "authors": [
  13387. {
  13388. "name": "Florian Weber",
  13389. "email": "florian@webflo.org"
  13390. }
  13391. ],
  13392. "description": "Helper class to locate a Drupal installation from a given path.",
  13393. "support": {
  13394. "issues": "https://github.com/webflo/drupal-finder/issues",
  13395. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  13396. },
  13397. "time": "2020-10-27T09:42:17+00:00"
  13398. },
  13399. {
  13400. "name": "webmozart/assert",
  13401. "version": "1.10.0",
  13402. "source": {
  13403. "type": "git",
  13404. "url": "https://github.com/webmozarts/assert.git",
  13405. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  13406. },
  13407. "dist": {
  13408. "type": "zip",
  13409. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  13410. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  13411. "shasum": ""
  13412. },
  13413. "require": {
  13414. "php": "^7.2 || ^8.0",
  13415. "symfony/polyfill-ctype": "^1.8"
  13416. },
  13417. "conflict": {
  13418. "phpstan/phpstan": "<0.12.20",
  13419. "vimeo/psalm": "<4.6.1 || 4.6.2"
  13420. },
  13421. "require-dev": {
  13422. "phpunit/phpunit": "^8.5.13"
  13423. },
  13424. "type": "library",
  13425. "extra": {
  13426. "branch-alias": {
  13427. "dev-master": "1.10-dev"
  13428. }
  13429. },
  13430. "autoload": {
  13431. "psr-4": {
  13432. "Webmozart\\Assert\\": "src/"
  13433. }
  13434. },
  13435. "notification-url": "https://packagist.org/downloads/",
  13436. "license": [
  13437. "MIT"
  13438. ],
  13439. "authors": [
  13440. {
  13441. "name": "Bernhard Schussek",
  13442. "email": "bschussek@gmail.com"
  13443. }
  13444. ],
  13445. "description": "Assertions to validate method input/output with nice error messages.",
  13446. "keywords": [
  13447. "assert",
  13448. "check",
  13449. "validate"
  13450. ],
  13451. "support": {
  13452. "issues": "https://github.com/webmozarts/assert/issues",
  13453. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  13454. },
  13455. "time": "2021-03-09T10:59:23+00:00"
  13456. },
  13457. {
  13458. "name": "webmozart/path-util",
  13459. "version": "2.3.0",
  13460. "source": {
  13461. "type": "git",
  13462. "url": "https://github.com/webmozart/path-util.git",
  13463. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  13464. },
  13465. "dist": {
  13466. "type": "zip",
  13467. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13468. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  13469. "shasum": ""
  13470. },
  13471. "require": {
  13472. "php": ">=5.3.3",
  13473. "webmozart/assert": "~1.0"
  13474. },
  13475. "require-dev": {
  13476. "phpunit/phpunit": "^4.6",
  13477. "sebastian/version": "^1.0.1"
  13478. },
  13479. "type": "library",
  13480. "extra": {
  13481. "branch-alias": {
  13482. "dev-master": "2.3-dev"
  13483. }
  13484. },
  13485. "autoload": {
  13486. "psr-4": {
  13487. "Webmozart\\PathUtil\\": "src/"
  13488. }
  13489. },
  13490. "notification-url": "https://packagist.org/downloads/",
  13491. "license": [
  13492. "MIT"
  13493. ],
  13494. "authors": [
  13495. {
  13496. "name": "Bernhard Schussek",
  13497. "email": "bschussek@gmail.com"
  13498. }
  13499. ],
  13500. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  13501. "support": {
  13502. "issues": "https://github.com/webmozart/path-util/issues",
  13503. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  13504. },
  13505. "abandoned": "symfony/filesystem",
  13506. "time": "2015-12-17T08:42:14+00:00"
  13507. },
  13508. {
  13509. "name": "webonyx/graphql-php",
  13510. "version": "v14.11.5",
  13511. "source": {
  13512. "type": "git",
  13513. "url": "https://github.com/webonyx/graphql-php.git",
  13514. "reference": "ffa431c0821821839370a68dab3c2597c06bf7f0"
  13515. },
  13516. "dist": {
  13517. "type": "zip",
  13518. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/ffa431c0821821839370a68dab3c2597c06bf7f0",
  13519. "reference": "ffa431c0821821839370a68dab3c2597c06bf7f0",
  13520. "shasum": ""
  13521. },
  13522. "require": {
  13523. "ext-json": "*",
  13524. "ext-mbstring": "*",
  13525. "php": "^7.1 || ^8"
  13526. },
  13527. "require-dev": {
  13528. "amphp/amp": "^2.3",
  13529. "doctrine/coding-standard": "^6.0",
  13530. "nyholm/psr7": "^1.2",
  13531. "phpbench/phpbench": "^1.2",
  13532. "phpstan/extension-installer": "^1.0",
  13533. "phpstan/phpstan": "0.12.82",
  13534. "phpstan/phpstan-phpunit": "0.12.18",
  13535. "phpstan/phpstan-strict-rules": "0.12.9",
  13536. "phpunit/phpunit": "^7.2 || ^8.5",
  13537. "psr/http-message": "^1.0",
  13538. "react/promise": "2.*",
  13539. "simpod/php-coveralls-mirror": "^3.0",
  13540. "squizlabs/php_codesniffer": "3.5.4"
  13541. },
  13542. "suggest": {
  13543. "psr/http-message": "To use standard GraphQL server",
  13544. "react/promise": "To leverage async resolving on React PHP platform"
  13545. },
  13546. "type": "library",
  13547. "autoload": {
  13548. "psr-4": {
  13549. "GraphQL\\": "src/"
  13550. }
  13551. },
  13552. "notification-url": "https://packagist.org/downloads/",
  13553. "license": [
  13554. "MIT"
  13555. ],
  13556. "description": "A PHP port of GraphQL reference implementation",
  13557. "homepage": "https://github.com/webonyx/graphql-php",
  13558. "keywords": [
  13559. "api",
  13560. "graphql"
  13561. ],
  13562. "support": {
  13563. "issues": "https://github.com/webonyx/graphql-php/issues",
  13564. "source": "https://github.com/webonyx/graphql-php/tree/v14.11.5"
  13565. },
  13566. "funding": [
  13567. {
  13568. "url": "https://opencollective.com/webonyx-graphql-php",
  13569. "type": "open_collective"
  13570. }
  13571. ],
  13572. "time": "2022-01-24T11:13:31+00:00"
  13573. },
  13574. {
  13575. "name": "wikimedia/composer-merge-plugin",
  13576. "version": "v2.0.1",
  13577. "source": {
  13578. "type": "git",
  13579. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13580. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  13581. },
  13582. "dist": {
  13583. "type": "zip",
  13584. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13585. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  13586. "shasum": ""
  13587. },
  13588. "require": {
  13589. "composer-plugin-api": "^1.1||^2.0",
  13590. "php": ">=7.2.0"
  13591. },
  13592. "require-dev": {
  13593. "composer/composer": "^1.1||^2.0",
  13594. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  13595. "phpunit/phpunit": "^8.5||^9.0",
  13596. "squizlabs/php_codesniffer": "~3.5.4"
  13597. },
  13598. "type": "composer-plugin",
  13599. "extra": {
  13600. "branch-alias": {
  13601. "dev-master": "2.x-dev"
  13602. },
  13603. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13604. },
  13605. "autoload": {
  13606. "psr-4": {
  13607. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13608. }
  13609. },
  13610. "notification-url": "https://packagist.org/downloads/",
  13611. "license": [
  13612. "MIT"
  13613. ],
  13614. "authors": [
  13615. {
  13616. "name": "Bryan Davis",
  13617. "email": "bd808@wikimedia.org"
  13618. }
  13619. ],
  13620. "description": "Composer plugin to merge multiple composer.json files",
  13621. "time": "2021-02-24T05:28:06+00:00"
  13622. }
  13623. ],
  13624. "packages-dev": [],
  13625. "aliases": [],
  13626. "minimum-stability": "stable",
  13627. "stability-flags": {
  13628. "drupal/auto_entitylabel": 20,
  13629. "drupal/cer": 15,
  13630. "drupal/insert": 20,
  13631. "drupal/typed_data": 20,
  13632. "drupal/autocomplete_deluxe": 5,
  13633. "drupal/better_exposed_filters": 10,
  13634. "drupal/bulkdelete": 20,
  13635. "drupal/cshs": 20,
  13636. "drupal/config_ignore": 5,
  13637. "drupal/config_devel": 20,
  13638. "drupal/context": 10,
  13639. "drupal/date_range_formatter": 20,
  13640. "drupal/domain": 20,
  13641. "drupal/domain_alias": 20,
  13642. "drupal/domain_config": 20,
  13643. "drupal/domain_site_settings": 20,
  13644. "drupal/email_registration": 5,
  13645. "drupal/entity_browser_enhanced": 5,
  13646. "drupal/entity_clone": 15,
  13647. "drupal/filefield_sources": 20,
  13648. "drupal/filter_perms": 20,
  13649. "drupal/inline_entity_form": 5,
  13650. "drupal/linkit": 10,
  13651. "drupal/login_destination": 20,
  13652. "drupal/maillog": 20,
  13653. "drupal/maxlength": 10,
  13654. "drupal/menu_block": 20,
  13655. "drupal/menu_position": 20,
  13656. "drupal/path_alias_xt": 20,
  13657. "drupal/pathologic": 15,
  13658. "drupal/profile": 5,
  13659. "drupal/smtp": 10,
  13660. "drupal/synonyms": 20,
  13661. "drupal/translation_views": 15,
  13662. "drupal/ultimate_cron": 15
  13663. },
  13664. "prefer-stable": true,
  13665. "prefer-lowest": false,
  13666. "platform": [],
  13667. "platform-dev": [],
  13668. "plugin-api-version": "2.0.0"
  13669. }