composer.lock 360 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857
  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": "8468a28ac4bdb41656a180bdd036b156",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  62. },
  63. "time": "2019-12-24T22:41:47+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "1.32.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  76. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=5.5.9",
  82. "symfony/console": "^3.4 || ^4.0",
  83. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  84. "twig/twig": "^1.41 || ^2.12"
  85. },
  86. "bin": [
  87. "bin/dcg"
  88. ],
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-master": "1.x-dev"
  93. }
  94. },
  95. "autoload": {
  96. "files": [
  97. "src/bootstrap.php"
  98. ],
  99. "psr-4": {
  100. "DrupalCodeGenerator\\": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "GPL-2.0-or-later"
  106. ],
  107. "description": "Drupal code generator",
  108. "time": "2020-04-16T06:45:06+00:00"
  109. },
  110. {
  111. "name": "composer/installers",
  112. "version": "v1.11.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/composer/installers.git",
  116. "reference": "ae03311f45dfe194412081526be2e003960df74b"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
  121. "reference": "ae03311f45dfe194412081526be2e003960df74b",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "composer-plugin-api": "^1.0 || ^2.0"
  126. },
  127. "replace": {
  128. "roundcube/plugin-installer": "*",
  129. "shama/baton": "*"
  130. },
  131. "require-dev": {
  132. "composer/composer": "1.6.* || ^2.0",
  133. "composer/semver": "^1 || ^3",
  134. "phpstan/phpstan": "^0.12.55",
  135. "phpstan/phpstan-phpunit": "^0.12.16",
  136. "symfony/phpunit-bridge": "^4.2 || ^5",
  137. "symfony/process": "^2.3"
  138. },
  139. "type": "composer-plugin",
  140. "extra": {
  141. "class": "Composer\\Installers\\Plugin",
  142. "branch-alias": {
  143. "dev-main": "1.x-dev"
  144. }
  145. },
  146. "autoload": {
  147. "psr-4": {
  148. "Composer\\Installers\\": "src/Composer/Installers"
  149. }
  150. },
  151. "notification-url": "https://packagist.org/downloads/",
  152. "license": [
  153. "MIT"
  154. ],
  155. "authors": [
  156. {
  157. "name": "Kyle Robinson Young",
  158. "email": "kyle@dontkry.com",
  159. "homepage": "https://github.com/shama"
  160. }
  161. ],
  162. "description": "A multi-framework Composer library installer",
  163. "homepage": "https://composer.github.io/installers/",
  164. "keywords": [
  165. "Craft",
  166. "Dolibarr",
  167. "Eliasis",
  168. "Hurad",
  169. "ImageCMS",
  170. "Kanboard",
  171. "Lan Management System",
  172. "MODX Evo",
  173. "MantisBT",
  174. "Mautic",
  175. "Maya",
  176. "OXID",
  177. "Plentymarkets",
  178. "Porto",
  179. "RadPHP",
  180. "SMF",
  181. "Starbug",
  182. "Thelia",
  183. "Whmcs",
  184. "WolfCMS",
  185. "agl",
  186. "aimeos",
  187. "annotatecms",
  188. "attogram",
  189. "bitrix",
  190. "cakephp",
  191. "chef",
  192. "cockpit",
  193. "codeigniter",
  194. "concrete5",
  195. "croogo",
  196. "dokuwiki",
  197. "drupal",
  198. "eZ Platform",
  199. "elgg",
  200. "expressionengine",
  201. "fuelphp",
  202. "grav",
  203. "installer",
  204. "itop",
  205. "joomla",
  206. "known",
  207. "kohana",
  208. "laravel",
  209. "lavalite",
  210. "lithium",
  211. "magento",
  212. "majima",
  213. "mako",
  214. "mediawiki",
  215. "miaoxing",
  216. "modulework",
  217. "modx",
  218. "moodle",
  219. "osclass",
  220. "phpbb",
  221. "piwik",
  222. "ppi",
  223. "processwire",
  224. "puppet",
  225. "pxcms",
  226. "reindex",
  227. "roundcube",
  228. "shopware",
  229. "silverstripe",
  230. "sydes",
  231. "sylius",
  232. "symfony",
  233. "tastyigniter",
  234. "typo3",
  235. "wordpress",
  236. "yawik",
  237. "zend",
  238. "zikula"
  239. ],
  240. "funding": [
  241. {
  242. "url": "https://packagist.com",
  243. "type": "custom"
  244. },
  245. {
  246. "url": "https://github.com/composer",
  247. "type": "github"
  248. },
  249. {
  250. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  251. "type": "tidelift"
  252. }
  253. ],
  254. "time": "2021-04-28T06:42:17+00:00"
  255. },
  256. {
  257. "name": "composer/semver",
  258. "version": "1.5.1",
  259. "source": {
  260. "type": "git",
  261. "url": "https://github.com/composer/semver.git",
  262. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  267. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  268. "shasum": ""
  269. },
  270. "require": {
  271. "php": "^5.3.2 || ^7.0"
  272. },
  273. "require-dev": {
  274. "phpunit/phpunit": "^4.5 || ^5.0.5"
  275. },
  276. "type": "library",
  277. "extra": {
  278. "branch-alias": {
  279. "dev-master": "1.x-dev"
  280. }
  281. },
  282. "autoload": {
  283. "psr-4": {
  284. "Composer\\Semver\\": "src"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Nils Adermann",
  294. "email": "naderman@naderman.de",
  295. "homepage": "http://www.naderman.de"
  296. },
  297. {
  298. "name": "Jordi Boggiano",
  299. "email": "j.boggiano@seld.be",
  300. "homepage": "http://seld.be"
  301. },
  302. {
  303. "name": "Rob Bast",
  304. "email": "rob.bast@gmail.com",
  305. "homepage": "http://robbast.nl"
  306. }
  307. ],
  308. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  309. "keywords": [
  310. "semantic",
  311. "semver",
  312. "validation",
  313. "versioning"
  314. ],
  315. "support": {
  316. "irc": "irc://irc.freenode.org/composer",
  317. "issues": "https://github.com/composer/semver/issues",
  318. "source": "https://github.com/composer/semver/tree/1.5.1"
  319. },
  320. "time": "2020-01-13T12:06:48+00:00"
  321. },
  322. {
  323. "name": "consolidation/annotated-command",
  324. "version": "2.12.0",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/consolidation/annotated-command.git",
  328. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  333. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "consolidation/output-formatters": "^3.4",
  338. "php": ">=5.4.5",
  339. "psr/log": "^1",
  340. "symfony/console": "^2.8|^3|^4",
  341. "symfony/event-dispatcher": "^2.5|^3|^4",
  342. "symfony/finder": "^2.5|^3|^4"
  343. },
  344. "require-dev": {
  345. "g1a/composer-test-scenarios": "^3",
  346. "php-coveralls/php-coveralls": "^1",
  347. "phpunit/phpunit": "^6",
  348. "squizlabs/php_codesniffer": "^2.7"
  349. },
  350. "type": "library",
  351. "extra": {
  352. "scenarios": {
  353. "symfony4": {
  354. "require": {
  355. "symfony/console": "^4.0"
  356. },
  357. "config": {
  358. "platform": {
  359. "php": "7.1.3"
  360. }
  361. }
  362. },
  363. "symfony2": {
  364. "require": {
  365. "symfony/console": "^2.8"
  366. },
  367. "require-dev": {
  368. "phpunit/phpunit": "^4.8.36"
  369. },
  370. "remove": [
  371. "php-coveralls/php-coveralls"
  372. ],
  373. "config": {
  374. "platform": {
  375. "php": "5.4.8"
  376. }
  377. },
  378. "scenario-options": {
  379. "create-lockfile": "false"
  380. }
  381. },
  382. "phpunit4": {
  383. "require-dev": {
  384. "phpunit/phpunit": "^4.8.36"
  385. },
  386. "remove": [
  387. "php-coveralls/php-coveralls"
  388. ],
  389. "config": {
  390. "platform": {
  391. "php": "5.4.8"
  392. }
  393. }
  394. }
  395. },
  396. "branch-alias": {
  397. "dev-master": "2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Consolidation\\AnnotatedCommand\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Greg Anderson",
  412. "email": "greg.1.anderson@greenknowe.org"
  413. }
  414. ],
  415. "description": "Initialize Symfony Console commands from annotated command class methods.",
  416. "time": "2019-03-08T16:55:03+00:00"
  417. },
  418. {
  419. "name": "consolidation/config",
  420. "version": "1.2.1",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/consolidation/config.git",
  424. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  429. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  430. "shasum": ""
  431. },
  432. "require": {
  433. "dflydev/dot-access-data": "^1.1.0",
  434. "grasmash/expander": "^1",
  435. "php": ">=5.4.0"
  436. },
  437. "require-dev": {
  438. "g1a/composer-test-scenarios": "^3",
  439. "php-coveralls/php-coveralls": "^1",
  440. "phpunit/phpunit": "^5",
  441. "squizlabs/php_codesniffer": "2.*",
  442. "symfony/console": "^2.5|^3|^4",
  443. "symfony/yaml": "^2.8.11|^3|^4"
  444. },
  445. "suggest": {
  446. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "scenarios": {
  451. "symfony4": {
  452. "require-dev": {
  453. "symfony/console": "^4.0"
  454. },
  455. "config": {
  456. "platform": {
  457. "php": "7.1.3"
  458. }
  459. }
  460. },
  461. "symfony2": {
  462. "require-dev": {
  463. "symfony/console": "^2.8",
  464. "symfony/event-dispatcher": "^2.8",
  465. "phpunit/phpunit": "^4.8.36"
  466. },
  467. "remove": [
  468. "php-coveralls/php-coveralls"
  469. ],
  470. "config": {
  471. "platform": {
  472. "php": "5.4.8"
  473. }
  474. }
  475. }
  476. },
  477. "branch-alias": {
  478. "dev-master": "1.x-dev"
  479. }
  480. },
  481. "autoload": {
  482. "psr-4": {
  483. "Consolidation\\Config\\": "src"
  484. }
  485. },
  486. "notification-url": "https://packagist.org/downloads/",
  487. "license": [
  488. "MIT"
  489. ],
  490. "authors": [
  491. {
  492. "name": "Greg Anderson",
  493. "email": "greg.1.anderson@greenknowe.org"
  494. }
  495. ],
  496. "description": "Provide configuration services for a commandline tool.",
  497. "time": "2019-03-03T19:37:04+00:00"
  498. },
  499. {
  500. "name": "consolidation/filter-via-dot-access-data",
  501. "version": "1.0.0",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  505. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  510. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "dflydev/dot-access-data": "^1.1.0",
  515. "php": ">=5.5.0"
  516. },
  517. "require-dev": {
  518. "consolidation/robo": "^1.2.3",
  519. "g1a/composer-test-scenarios": "^3",
  520. "knplabs/github-api": "^2.7",
  521. "php-coveralls/php-coveralls": "^1",
  522. "php-http/guzzle6-adapter": "^1.1",
  523. "phpunit/phpunit": "^5",
  524. "squizlabs/php_codesniffer": "^2.8",
  525. "symfony/console": "^2.8|^3|^4"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "scenarios": {
  530. "phpunit5": {
  531. "require-dev": {
  532. "phpunit/phpunit": "^5.7.27"
  533. },
  534. "remove": [
  535. "php-coveralls/php-coveralls"
  536. ],
  537. "config": {
  538. "platform": {
  539. "php": "5.6.33"
  540. }
  541. }
  542. }
  543. },
  544. "branch-alias": {
  545. "dev-master": "1.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\Filter\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  564. "time": "2019-01-18T06:05:07+00:00"
  565. },
  566. {
  567. "name": "consolidation/log",
  568. "version": "1.1.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/log.git",
  572. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  577. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": ">=5.4.5",
  582. "psr/log": "^1.0",
  583. "symfony/console": "^2.8|^3|^4"
  584. },
  585. "require-dev": {
  586. "g1a/composer-test-scenarios": "^3",
  587. "php-coveralls/php-coveralls": "^1",
  588. "phpunit/phpunit": "^6",
  589. "squizlabs/php_codesniffer": "^2"
  590. },
  591. "type": "library",
  592. "extra": {
  593. "scenarios": {
  594. "symfony4": {
  595. "require": {
  596. "symfony/console": "^4.0"
  597. },
  598. "config": {
  599. "platform": {
  600. "php": "7.1.3"
  601. }
  602. }
  603. },
  604. "symfony2": {
  605. "require": {
  606. "symfony/console": "^2.8"
  607. },
  608. "require-dev": {
  609. "phpunit/phpunit": "^4.8.36"
  610. },
  611. "remove": [
  612. "php-coveralls/php-coveralls"
  613. ],
  614. "config": {
  615. "platform": {
  616. "php": "5.4.8"
  617. }
  618. }
  619. },
  620. "phpunit4": {
  621. "require-dev": {
  622. "phpunit/phpunit": "^4.8.36"
  623. },
  624. "remove": [
  625. "php-coveralls/php-coveralls"
  626. ],
  627. "config": {
  628. "platform": {
  629. "php": "5.4.8"
  630. }
  631. }
  632. }
  633. },
  634. "branch-alias": {
  635. "dev-master": "1.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Consolidation\\Log\\": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Greg Anderson",
  650. "email": "greg.1.anderson@greenknowe.org"
  651. }
  652. ],
  653. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  654. "time": "2019-01-01T17:30:51+00:00"
  655. },
  656. {
  657. "name": "consolidation/output-formatters",
  658. "version": "3.5.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/consolidation/output-formatters.git",
  662. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  667. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "dflydev/dot-access-data": "^1.1.0",
  672. "php": ">=5.4.0",
  673. "symfony/console": "^2.8|^3|^4",
  674. "symfony/finder": "^2.5|^3|^4"
  675. },
  676. "require-dev": {
  677. "g1a/composer-test-scenarios": "^3",
  678. "php-coveralls/php-coveralls": "^1",
  679. "phpunit/phpunit": "^5.7.27",
  680. "squizlabs/php_codesniffer": "^2.7",
  681. "symfony/var-dumper": "^2.8|^3|^4",
  682. "victorjonsson/markdowndocs": "^1.3"
  683. },
  684. "suggest": {
  685. "symfony/var-dumper": "For using the var_dump formatter"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "scenarios": {
  690. "symfony4": {
  691. "require": {
  692. "symfony/console": "^4.0"
  693. },
  694. "require-dev": {
  695. "phpunit/phpunit": "^6"
  696. },
  697. "config": {
  698. "platform": {
  699. "php": "7.1.3"
  700. }
  701. }
  702. },
  703. "symfony3": {
  704. "require": {
  705. "symfony/console": "^3.4",
  706. "symfony/finder": "^3.4",
  707. "symfony/var-dumper": "^3.4"
  708. },
  709. "config": {
  710. "platform": {
  711. "php": "5.6.32"
  712. }
  713. }
  714. },
  715. "symfony2": {
  716. "require": {
  717. "symfony/console": "^2.8"
  718. },
  719. "require-dev": {
  720. "phpunit/phpunit": "^4.8.36"
  721. },
  722. "remove": [
  723. "php-coveralls/php-coveralls"
  724. ],
  725. "config": {
  726. "platform": {
  727. "php": "5.4.8"
  728. }
  729. },
  730. "scenario-options": {
  731. "create-lockfile": "false"
  732. }
  733. }
  734. },
  735. "branch-alias": {
  736. "dev-master": "3.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Consolidation\\OutputFormatters\\": "src"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Greg Anderson",
  751. "email": "greg.1.anderson@greenknowe.org"
  752. }
  753. ],
  754. "description": "Format text by applying transformations provided by plug-in formatters.",
  755. "time": "2019-05-30T23:16:01+00:00"
  756. },
  757. {
  758. "name": "consolidation/robo",
  759. "version": "1.4.12",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/Robo.git",
  763. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  768. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/annotated-command": "^2.11.0|^4.1",
  773. "consolidation/config": "^1.2.1",
  774. "consolidation/log": "^1.1.1|^2",
  775. "consolidation/output-formatters": "^3.1.13|^4.1",
  776. "consolidation/self-update": "^1.1.5",
  777. "grasmash/yaml-expander": "^1.4",
  778. "league/container": "^2.4.1",
  779. "php": ">=5.5.0",
  780. "symfony/console": "^2.8|^3|^4",
  781. "symfony/event-dispatcher": "^2.5|^3|^4",
  782. "symfony/filesystem": "^2.5|^3|^4",
  783. "symfony/finder": "^2.5|^3|^4",
  784. "symfony/process": "^2.5|^3|^4"
  785. },
  786. "replace": {
  787. "codegyre/robo": "< 1.0"
  788. },
  789. "require-dev": {
  790. "g1a/composer-test-scenarios": "^3",
  791. "natxet/cssmin": "3.0.4",
  792. "patchwork/jsqueeze": "^2",
  793. "pear/archive_tar": "^1.4.4",
  794. "php-coveralls/php-coveralls": "^1",
  795. "phpunit/phpunit": "^5.7.27",
  796. "squizlabs/php_codesniffer": "^3"
  797. },
  798. "suggest": {
  799. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  800. "natxet/CssMin": "For minifying CSS files in taskMinify",
  801. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  802. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  803. },
  804. "bin": [
  805. "robo"
  806. ],
  807. "type": "library",
  808. "extra": {
  809. "scenarios": {
  810. "symfony4": {
  811. "require": {
  812. "symfony/console": "^4"
  813. },
  814. "config": {
  815. "platform": {
  816. "php": "7.1.3"
  817. }
  818. }
  819. },
  820. "symfony2": {
  821. "require": {
  822. "symfony/console": "^2.8"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "^4.8.36"
  826. },
  827. "remove": [
  828. "php-coveralls/php-coveralls"
  829. ],
  830. "config": {
  831. "platform": {
  832. "php": "5.5.9"
  833. }
  834. },
  835. "scenario-options": {
  836. "create-lockfile": "false"
  837. }
  838. }
  839. },
  840. "branch-alias": {
  841. "dev-master": "1.x-dev"
  842. }
  843. },
  844. "autoload": {
  845. "psr-4": {
  846. "Robo\\": "src"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Davert",
  856. "email": "davert.php@resend.cc"
  857. }
  858. ],
  859. "description": "Modern task runner",
  860. "time": "2020-02-18T17:31:26+00:00"
  861. },
  862. {
  863. "name": "consolidation/self-update",
  864. "version": "1.2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/consolidation/self-update.git",
  868. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  873. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "php": ">=5.5.0",
  878. "symfony/console": "^2.8|^3|^4|^5",
  879. "symfony/filesystem": "^2.5|^3|^4|^5"
  880. },
  881. "bin": [
  882. "scripts/release"
  883. ],
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.x-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-4": {
  892. "SelfUpdate\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Alexander Menk",
  902. "email": "menk@mestrona.net"
  903. },
  904. {
  905. "name": "Greg Anderson",
  906. "email": "greg.1.anderson@greenknowe.org"
  907. }
  908. ],
  909. "description": "Provides a self:update command for Symfony Console applications.",
  910. "time": "2020-04-13T02:49:20+00:00"
  911. },
  912. {
  913. "name": "consolidation/site-alias",
  914. "version": "3.0.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/consolidation/site-alias.git",
  918. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  923. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "consolidation/config": "^1.2.1",
  928. "php": ">=5.5.0"
  929. },
  930. "require-dev": {
  931. "consolidation/robo": "^1.2.3",
  932. "g1a/composer-test-scenarios": "^3",
  933. "knplabs/github-api": "^2.7",
  934. "php-coveralls/php-coveralls": "^1",
  935. "php-http/guzzle6-adapter": "^1.1",
  936. "phpunit/phpunit": "^6",
  937. "squizlabs/php_codesniffer": "^2.8",
  938. "symfony/console": "^2.8|^3|^4",
  939. "symfony/yaml": "~2.3|^3"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "scenarios": {
  944. "phpunit5": {
  945. "require-dev": {
  946. "phpunit/phpunit": "^5.7.27"
  947. },
  948. "remove": [
  949. "php-coveralls/php-coveralls"
  950. ],
  951. "config": {
  952. "platform": {
  953. "php": "5.6.33"
  954. }
  955. }
  956. }
  957. },
  958. "branch-alias": {
  959. "dev-master": "3.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Consolidation\\SiteAlias\\": "src"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Moshe Weitzman",
  974. "email": "weitzman@tejasa.com"
  975. },
  976. {
  977. "name": "Greg Anderson",
  978. "email": "greg.1.anderson@greenknowe.org"
  979. }
  980. ],
  981. "description": "Manage alias records for local and remote sites.",
  982. "time": "2019-03-12T17:31:48+00:00"
  983. },
  984. {
  985. "name": "consolidation/site-process",
  986. "version": "2.1.0",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/consolidation/site-process.git",
  990. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  995. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "consolidation/config": "^1.2.1",
  1000. "consolidation/site-alias": "^3",
  1001. "php": ">=5.6.0",
  1002. "symfony/process": "^3.4"
  1003. },
  1004. "require-dev": {
  1005. "consolidation/robo": "^1.3",
  1006. "g1a/composer-test-scenarios": "^3",
  1007. "knplabs/github-api": "^2.7",
  1008. "php-coveralls/php-coveralls": "^1",
  1009. "php-http/guzzle6-adapter": "^1.1",
  1010. "phpunit/phpunit": "^6",
  1011. "squizlabs/php_codesniffer": "^2.8"
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "scenarios": {
  1016. "phpunit5": {
  1017. "require-dev": {
  1018. "phpunit/phpunit": "^5.7.27"
  1019. },
  1020. "remove": [
  1021. "php-coveralls/php-coveralls"
  1022. ],
  1023. "config": {
  1024. "platform": {
  1025. "php": "5.6.33"
  1026. }
  1027. }
  1028. }
  1029. },
  1030. "branch-alias": {
  1031. "dev-master": "0.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Consolidation\\SiteProcess\\": "src"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Greg Anderson",
  1046. "email": "greg.1.anderson@greenknowe.org"
  1047. },
  1048. {
  1049. "name": "Moshe Weitzman",
  1050. "email": "weitzman@tejasa.com"
  1051. }
  1052. ],
  1053. "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.",
  1054. "time": "2019-09-10T17:56:24+00:00"
  1055. },
  1056. {
  1057. "name": "cweagans/composer-patches",
  1058. "version": "1.7.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/cweagans/composer-patches.git",
  1062. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1067. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "composer-plugin-api": "^1.0 || ^2.0",
  1072. "php": ">=5.3.0"
  1073. },
  1074. "require-dev": {
  1075. "composer/composer": "~1.0 || ~2.0",
  1076. "phpunit/phpunit": "~4.6"
  1077. },
  1078. "type": "composer-plugin",
  1079. "extra": {
  1080. "class": "cweagans\\Composer\\Patches"
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "cweagans\\Composer\\": "src"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "BSD-3-Clause"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Cameron Eagans",
  1094. "email": "me@cweagans.net"
  1095. }
  1096. ],
  1097. "description": "Provides a way to patch Composer packages.",
  1098. "time": "2021-06-08T15:12:46+00:00"
  1099. },
  1100. {
  1101. "name": "dflydev/dot-access-data",
  1102. "version": "v1.1.0",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1106. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1111. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.2"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.0-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-0": {
  1125. "Dflydev\\DotAccessData": "src"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Dragonfly Development Inc.",
  1135. "email": "info@dflydev.com",
  1136. "homepage": "http://dflydev.com"
  1137. },
  1138. {
  1139. "name": "Beau Simensen",
  1140. "email": "beau@dflydev.com",
  1141. "homepage": "http://beausimensen.com"
  1142. },
  1143. {
  1144. "name": "Carlos Frutos",
  1145. "email": "carlos@kiwing.it",
  1146. "homepage": "https://github.com/cfrutos"
  1147. }
  1148. ],
  1149. "description": "Given a deep data structure, access data by dot notation.",
  1150. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1151. "keywords": [
  1152. "access",
  1153. "data",
  1154. "dot",
  1155. "notation"
  1156. ],
  1157. "time": "2017-01-20T21:14:22+00:00"
  1158. },
  1159. {
  1160. "name": "dnoegel/php-xdg-base-dir",
  1161. "version": "v0.1.1",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1165. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1170. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "php": ">=5.3.2"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "XdgBaseDir\\": "src/"
  1183. }
  1184. },
  1185. "notification-url": "https://packagist.org/downloads/",
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "description": "implementation of xdg base directory specification for php",
  1190. "time": "2019-12-04T15:06:13+00:00"
  1191. },
  1192. {
  1193. "name": "doctrine/annotations",
  1194. "version": "v1.4.0",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/doctrine/annotations.git",
  1198. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1203. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "doctrine/lexer": "1.*",
  1208. "php": "^5.6 || ^7.0"
  1209. },
  1210. "require-dev": {
  1211. "doctrine/cache": "1.*",
  1212. "phpunit/phpunit": "^5.7"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "1.4.x-dev"
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Benjamin Eberlei",
  1236. "email": "kontakt@beberlei.de"
  1237. },
  1238. {
  1239. "name": "Guilherme Blanco",
  1240. "email": "guilhermeblanco@gmail.com"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "Docblock Annotations Parser",
  1252. "homepage": "http://www.doctrine-project.org",
  1253. "keywords": [
  1254. "annotations",
  1255. "docblock",
  1256. "parser"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/doctrine/annotations/issues",
  1260. "source": "https://github.com/doctrine/annotations/tree/v1.4.0"
  1261. },
  1262. "time": "2017-02-24T16:22:25+00:00"
  1263. },
  1264. {
  1265. "name": "doctrine/cache",
  1266. "version": "v1.6.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/doctrine/cache.git",
  1270. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1275. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": "~5.5|~7.0"
  1280. },
  1281. "conflict": {
  1282. "doctrine/common": ">2.2,<2.4"
  1283. },
  1284. "require-dev": {
  1285. "phpunit/phpunit": "~4.8|~5.0",
  1286. "predis/predis": "~1.0",
  1287. "satooshi/php-coveralls": "~0.6"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "1.6.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Roman Borschel",
  1307. "email": "roman@code-factory.org"
  1308. },
  1309. {
  1310. "name": "Benjamin Eberlei",
  1311. "email": "kontakt@beberlei.de"
  1312. },
  1313. {
  1314. "name": "Guilherme Blanco",
  1315. "email": "guilhermeblanco@gmail.com"
  1316. },
  1317. {
  1318. "name": "Jonathan Wage",
  1319. "email": "jonwage@gmail.com"
  1320. },
  1321. {
  1322. "name": "Johannes Schmitt",
  1323. "email": "schmittjoh@gmail.com"
  1324. }
  1325. ],
  1326. "description": "Caching library offering an object-oriented API for many cache backends",
  1327. "homepage": "http://www.doctrine-project.org",
  1328. "keywords": [
  1329. "cache",
  1330. "caching"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/doctrine/cache/issues",
  1334. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  1335. },
  1336. "time": "2017-07-22T12:49:21+00:00"
  1337. },
  1338. {
  1339. "name": "doctrine/collections",
  1340. "version": "v1.4.0",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/doctrine/collections.git",
  1344. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1349. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": "^5.6 || ^7.0"
  1354. },
  1355. "require-dev": {
  1356. "doctrine/coding-standard": "~0.1@dev",
  1357. "phpunit/phpunit": "^5.7"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.3.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-0": {
  1367. "Doctrine\\Common\\Collections\\": "lib/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Roman Borschel",
  1377. "email": "roman@code-factory.org"
  1378. },
  1379. {
  1380. "name": "Benjamin Eberlei",
  1381. "email": "kontakt@beberlei.de"
  1382. },
  1383. {
  1384. "name": "Guilherme Blanco",
  1385. "email": "guilhermeblanco@gmail.com"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Collections Abstraction library",
  1397. "homepage": "http://www.doctrine-project.org",
  1398. "keywords": [
  1399. "array",
  1400. "collections",
  1401. "iterator"
  1402. ],
  1403. "support": {
  1404. "issues": "https://github.com/doctrine/collections/issues",
  1405. "source": "https://github.com/doctrine/collections/tree/master"
  1406. },
  1407. "time": "2017-01-03T10:49:41+00:00"
  1408. },
  1409. {
  1410. "name": "doctrine/common",
  1411. "version": "v2.7.3",
  1412. "source": {
  1413. "type": "git",
  1414. "url": "https://github.com/doctrine/common.git",
  1415. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1416. },
  1417. "dist": {
  1418. "type": "zip",
  1419. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1420. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1421. "shasum": ""
  1422. },
  1423. "require": {
  1424. "doctrine/annotations": "1.*",
  1425. "doctrine/cache": "1.*",
  1426. "doctrine/collections": "1.*",
  1427. "doctrine/inflector": "1.*",
  1428. "doctrine/lexer": "1.*",
  1429. "php": "~5.6|~7.0"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "^5.4.6"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-master": "2.7.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Roman Borschel",
  1452. "email": "roman@code-factory.org"
  1453. },
  1454. {
  1455. "name": "Benjamin Eberlei",
  1456. "email": "kontakt@beberlei.de"
  1457. },
  1458. {
  1459. "name": "Guilherme Blanco",
  1460. "email": "guilhermeblanco@gmail.com"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. }
  1470. ],
  1471. "description": "Common Library for Doctrine projects",
  1472. "homepage": "http://www.doctrine-project.org",
  1473. "keywords": [
  1474. "annotations",
  1475. "collections",
  1476. "eventmanager",
  1477. "persistence",
  1478. "spl"
  1479. ],
  1480. "support": {
  1481. "issues": "https://github.com/doctrine/common/issues",
  1482. "source": "https://github.com/doctrine/common/tree/v2.7.3"
  1483. },
  1484. "time": "2017-07-22T08:35:12+00:00"
  1485. },
  1486. {
  1487. "name": "doctrine/inflector",
  1488. "version": "v1.2.0",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/doctrine/inflector.git",
  1492. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1497. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": "^7.0"
  1502. },
  1503. "require-dev": {
  1504. "phpunit/phpunit": "^6.2"
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "1.2.x-dev"
  1510. }
  1511. },
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Roman Borschel",
  1524. "email": "roman@code-factory.org"
  1525. },
  1526. {
  1527. "name": "Benjamin Eberlei",
  1528. "email": "kontakt@beberlei.de"
  1529. },
  1530. {
  1531. "name": "Guilherme Blanco",
  1532. "email": "guilhermeblanco@gmail.com"
  1533. },
  1534. {
  1535. "name": "Jonathan Wage",
  1536. "email": "jonwage@gmail.com"
  1537. },
  1538. {
  1539. "name": "Johannes Schmitt",
  1540. "email": "schmittjoh@gmail.com"
  1541. }
  1542. ],
  1543. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1544. "homepage": "http://www.doctrine-project.org",
  1545. "keywords": [
  1546. "inflection",
  1547. "pluralize",
  1548. "singularize",
  1549. "string"
  1550. ],
  1551. "support": {
  1552. "source": "https://github.com/doctrine/inflector/tree/master"
  1553. },
  1554. "time": "2017-07-22T12:18:28+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/lexer",
  1558. "version": "1.0.2",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/lexer.git",
  1562. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1567. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=5.3.2"
  1572. },
  1573. "require-dev": {
  1574. "phpunit/phpunit": "^4.5"
  1575. },
  1576. "type": "library",
  1577. "extra": {
  1578. "branch-alias": {
  1579. "dev-master": "1.0.x-dev"
  1580. }
  1581. },
  1582. "autoload": {
  1583. "psr-4": {
  1584. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Roman Borschel",
  1594. "email": "roman@code-factory.org"
  1595. },
  1596. {
  1597. "name": "Guilherme Blanco",
  1598. "email": "guilhermeblanco@gmail.com"
  1599. },
  1600. {
  1601. "name": "Johannes Schmitt",
  1602. "email": "schmittjoh@gmail.com"
  1603. }
  1604. ],
  1605. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1606. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1607. "keywords": [
  1608. "annotations",
  1609. "docblock",
  1610. "lexer",
  1611. "parser",
  1612. "php"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/doctrine/lexer/issues",
  1616. "source": "https://github.com/doctrine/lexer/tree/1.0.2"
  1617. },
  1618. "time": "2019-06-08T11:03:04+00:00"
  1619. },
  1620. {
  1621. "name": "drupal/addtoany",
  1622. "version": "1.14.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://git.drupalcode.org/project/addtoany.git",
  1626. "reference": "8.x-1.14"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.14.zip",
  1631. "reference": "8.x-1.14",
  1632. "shasum": "269ec4d1cfaf93132d5945edebf691ec7c04901a"
  1633. },
  1634. "require": {
  1635. "drupal/core": "^8 || ^9"
  1636. },
  1637. "type": "drupal-module",
  1638. "extra": {
  1639. "drupal": {
  1640. "version": "8.x-1.14",
  1641. "datestamp": "1589571718",
  1642. "security-coverage": {
  1643. "status": "covered",
  1644. "message": "Covered by Drupal's security advisory policy"
  1645. }
  1646. }
  1647. },
  1648. "notification-url": "https://packages.drupal.org/8/downloads",
  1649. "license": [
  1650. "GPL-2.0-or-later"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "AddToAny",
  1655. "homepage": "https://www.drupal.org/user/2640913"
  1656. },
  1657. {
  1658. "name": "micropat",
  1659. "homepage": "https://www.drupal.org/user/260224"
  1660. }
  1661. ],
  1662. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Twitter, Pinterest, WhatsApp and many more.",
  1663. "homepage": "https://www.drupal.org/project/addtoany",
  1664. "keywords": [
  1665. "Drupal"
  1666. ],
  1667. "support": {
  1668. "source": "https://git.drupalcode.org/project/addtoany",
  1669. "issues": "https://www.drupal.org/project/issues/addtoany"
  1670. }
  1671. },
  1672. {
  1673. "name": "drupal/admin_toolbar",
  1674. "version": "2.3.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1678. "reference": "8.x-2.3"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip",
  1683. "reference": "8.x-2.3",
  1684. "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a"
  1685. },
  1686. "require": {
  1687. "drupal/core": "^8.8.0 || ^9.0"
  1688. },
  1689. "type": "drupal-module",
  1690. "extra": {
  1691. "drupal": {
  1692. "version": "8.x-2.3",
  1693. "datestamp": "1592535714",
  1694. "security-coverage": {
  1695. "status": "covered",
  1696. "message": "Covered by Drupal's security advisory policy"
  1697. }
  1698. }
  1699. },
  1700. "notification-url": "https://packages.drupal.org/8/downloads",
  1701. "license": [
  1702. "GPL-2.0-or-later"
  1703. ],
  1704. "authors": [
  1705. {
  1706. "name": "Wilfrid Roze (eme)",
  1707. "homepage": "https://www.drupal.org/u/eme",
  1708. "role": "Maintainer"
  1709. },
  1710. {
  1711. "name": "Romain Jarraud (romainj)",
  1712. "homepage": "https://www.drupal.org/u/romainj",
  1713. "role": "Maintainer"
  1714. },
  1715. {
  1716. "name": "Adrian Cid Almaguer (adriancid)",
  1717. "homepage": "https://www.drupal.org/u/adriancid",
  1718. "email": "adriancid@gmail.com",
  1719. "role": "Maintainer"
  1720. },
  1721. {
  1722. "name": "Mohamed Anis Taktak (matio89)",
  1723. "homepage": "https://www.drupal.org/u/matio89",
  1724. "role": "Maintainer"
  1725. },
  1726. {
  1727. "name": "fethi.krout",
  1728. "homepage": "https://www.drupal.org/user/3206765"
  1729. },
  1730. {
  1731. "name": "matio89",
  1732. "homepage": "https://www.drupal.org/user/2320090"
  1733. },
  1734. {
  1735. "name": "romainj",
  1736. "homepage": "https://www.drupal.org/user/370706"
  1737. }
  1738. ],
  1739. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1740. "homepage": "http://drupal.org/project/admin_toolbar",
  1741. "keywords": [
  1742. "Drupal",
  1743. "Toolbar"
  1744. ],
  1745. "support": {
  1746. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1747. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1748. }
  1749. },
  1750. {
  1751. "name": "drupal/adminimal_theme",
  1752. "version": "1.6.0",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1756. "reference": "8.x-1.6"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1761. "reference": "8.x-1.6",
  1762. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1763. },
  1764. "require": {
  1765. "drupal/core": "^8.8 || ^9"
  1766. },
  1767. "type": "drupal-theme",
  1768. "extra": {
  1769. "drupal": {
  1770. "version": "8.x-1.6",
  1771. "datestamp": "1602006937",
  1772. "security-coverage": {
  1773. "status": "covered",
  1774. "message": "Covered by Drupal's security advisory policy"
  1775. }
  1776. }
  1777. },
  1778. "notification-url": "https://packages.drupal.org/8/downloads",
  1779. "license": [
  1780. "GPL-2.0+"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "ANDiTKO",
  1785. "homepage": "https://www.drupal.org/user/1428124"
  1786. },
  1787. {
  1788. "name": "andrey.troeglazov",
  1789. "homepage": "https://www.drupal.org/user/3145389"
  1790. },
  1791. {
  1792. "name": "realityloop",
  1793. "homepage": "https://www.drupal.org/user/139189"
  1794. },
  1795. {
  1796. "name": "rjjakes",
  1797. "homepage": "https://www.drupal.org/user/3457245"
  1798. }
  1799. ],
  1800. "description": "Drupal administration theme with modern minimalist design.",
  1801. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1802. "support": {
  1803. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1804. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1805. }
  1806. },
  1807. {
  1808. "name": "drupal/audiofield",
  1809. "version": "1.13.0",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://git.drupalcode.org/project/audiofield.git",
  1813. "reference": "8.x-1.13"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1818. "reference": "8.x-1.13",
  1819. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1820. },
  1821. "require": {
  1822. "drupal/core": "^8 || ^9 || ^10"
  1823. },
  1824. "type": "drupal-module",
  1825. "extra": {
  1826. "drupal": {
  1827. "version": "8.x-1.13",
  1828. "datestamp": "1681143245",
  1829. "security-coverage": {
  1830. "status": "covered",
  1831. "message": "Covered by Drupal's security advisory policy"
  1832. }
  1833. },
  1834. "drush": {
  1835. "services": {
  1836. "drush.services.yml": "^9"
  1837. }
  1838. }
  1839. },
  1840. "notification-url": "https://packages.drupal.org/8/downloads",
  1841. "license": [
  1842. "GPL-2.0-or-later"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Daniel Moberly",
  1847. "homepage": "https://www.drupal.org/u/danielmoberly",
  1848. "role": "Maintainer"
  1849. },
  1850. {
  1851. "name": "tamerzg",
  1852. "homepage": "https://www.drupal.org/user/464564"
  1853. }
  1854. ],
  1855. "description": "AudioField Module",
  1856. "homepage": "https://www.drupal.org/project/audiofield",
  1857. "support": {
  1858. "source": "https://git.drupalcode.org/project/audiofield",
  1859. "issues": "https://www.drupal.org/project/issues/audiofield"
  1860. }
  1861. },
  1862. {
  1863. "name": "drupal/autologout",
  1864. "version": "1.3.0",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://git.drupalcode.org/project/autologout.git",
  1868. "reference": "8.x-1.3"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1873. "reference": "8.x-1.3",
  1874. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1875. },
  1876. "require": {
  1877. "drupal/core": "^8 || ^9"
  1878. },
  1879. "type": "drupal-module",
  1880. "extra": {
  1881. "drupal": {
  1882. "version": "8.x-1.3",
  1883. "datestamp": "1587193798",
  1884. "security-coverage": {
  1885. "status": "covered",
  1886. "message": "Covered by Drupal's security advisory policy"
  1887. }
  1888. },
  1889. "patches_applied": {
  1890. "AutologoutManager class incompatible with interface https://www.drupal.org/project/autologout/issues/3121214": "https://www.drupal.org/files/issues/2020-03-20/3121214-autologout_manager_incompatible_interface.patch"
  1891. }
  1892. },
  1893. "notification-url": "https://packages.drupal.org/8/downloads",
  1894. "license": [
  1895. "GPL-2.0+"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "AjK",
  1900. "homepage": "https://www.drupal.org/user/39030"
  1901. },
  1902. {
  1903. "name": "AjitS",
  1904. "homepage": "https://www.drupal.org/user/981944"
  1905. },
  1906. {
  1907. "name": "boshtian",
  1908. "homepage": "https://www.drupal.org/user/1773456"
  1909. },
  1910. {
  1911. "name": "dandrews",
  1912. "homepage": "https://www.drupal.org/user/2014490"
  1913. },
  1914. {
  1915. "name": "darksnow",
  1916. "homepage": "https://www.drupal.org/user/391915"
  1917. },
  1918. {
  1919. "name": "johnennew",
  1920. "homepage": "https://www.drupal.org/user/1150042"
  1921. },
  1922. {
  1923. "name": "jrglasgow",
  1924. "homepage": "https://www.drupal.org/user/36590"
  1925. },
  1926. {
  1927. "name": "kmasood",
  1928. "homepage": "https://www.drupal.org/user/1262860"
  1929. },
  1930. {
  1931. "name": "levelos",
  1932. "homepage": "https://www.drupal.org/user/54135"
  1933. },
  1934. {
  1935. "name": "prabeen.giri",
  1936. "homepage": "https://www.drupal.org/user/913078"
  1937. },
  1938. {
  1939. "name": "str8",
  1940. "homepage": "https://www.drupal.org/user/2865063"
  1941. }
  1942. ],
  1943. "description": "Adds automated timed logout.",
  1944. "homepage": "http://drupal.org/project/autologout",
  1945. "support": {
  1946. "source": "https://git.drupalcode.org/project/autologout"
  1947. }
  1948. },
  1949. {
  1950. "name": "drupal/basic",
  1951. "version": "2.1.0",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://git.drupalcode.org/project/basic.git",
  1955. "reference": "8.x-2.1"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  1960. "reference": "8.x-2.1",
  1961. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  1962. },
  1963. "require": {
  1964. "drupal/core": "^8.8 || ^9"
  1965. },
  1966. "type": "drupal-theme",
  1967. "extra": {
  1968. "drupal": {
  1969. "version": "8.x-2.1",
  1970. "datestamp": "1612916291",
  1971. "security-coverage": {
  1972. "status": "covered",
  1973. "message": "Covered by Drupal's security advisory policy"
  1974. }
  1975. }
  1976. },
  1977. "notification-url": "https://packages.drupal.org/8/downloads",
  1978. "license": [
  1979. "GPL-2.0+"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Steve Krueger",
  1984. "homepage": "http://thejibe.com",
  1985. "email": "steve@thejibe.com",
  1986. "role": "Maintainer"
  1987. },
  1988. {
  1989. "name": "Joël Pittet",
  1990. "homepage": "https://www.drupal.org/u/joelpittet",
  1991. "email": "joel@pittet.ca",
  1992. "role": "Maintainer"
  1993. },
  1994. {
  1995. "name": "Leah Wagner",
  1996. "homepage": "http://thejibe.com",
  1997. "email": "leah@thejibe.com",
  1998. "role": "Maintainer"
  1999. },
  2000. {
  2001. "name": "Catherine Winters",
  2002. "homepage": "http://www.catherinewinters.com",
  2003. "email": "catherine@catherinewinters.com",
  2004. "role": "Maintainer"
  2005. },
  2006. {
  2007. "name": "Johannes Schmidt",
  2008. "homepage": "http://2tabs.com",
  2009. "email": "mail@2tabs.com",
  2010. "role": "Maintainer"
  2011. },
  2012. {
  2013. "name": "Chuck Kosman",
  2014. "homepage": "http://thejibe.com",
  2015. "email": "chuck@thejibe.com",
  2016. "role": "Maintainer"
  2017. },
  2018. {
  2019. "name": "SteveK",
  2020. "homepage": "https://www.drupal.org/user/111656"
  2021. }
  2022. ],
  2023. "description": "HTML5, SASS, Responsive grid starter theme.",
  2024. "homepage": "http://drupal.org/project/basic",
  2025. "support": {
  2026. "source": "http://cgit.drupalcode.org/basic",
  2027. "issues": "https://www.drupal.org/project/issues/basic",
  2028. "irc": "irc://irc.freenode.org/drupal-contribute"
  2029. }
  2030. },
  2031. {
  2032. "name": "drupal/better_messages",
  2033. "version": "2.0.0-alpha2",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://git.drupalcode.org/project/better_messages.git",
  2037. "reference": "2.0.0-alpha2"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2042. "reference": "2.0.0-alpha2",
  2043. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2044. },
  2045. "require": {
  2046. "drupal/core": "^8 || ^9"
  2047. },
  2048. "type": "drupal-module",
  2049. "extra": {
  2050. "drupal": {
  2051. "version": "2.0.0-alpha2",
  2052. "datestamp": "1644241962",
  2053. "security-coverage": {
  2054. "status": "not-covered",
  2055. "message": "Alpha releases are not covered by Drupal security advisories."
  2056. }
  2057. }
  2058. },
  2059. "notification-url": "https://packages.drupal.org/8/downloads",
  2060. "license": [
  2061. "GPL-2.0-or-later"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "bucefal91",
  2066. "homepage": "https://www.drupal.org/user/504128"
  2067. },
  2068. {
  2069. "name": "le72",
  2070. "homepage": "https://www.drupal.org/user/1866896"
  2071. },
  2072. {
  2073. "name": "mohammed j. razem",
  2074. "homepage": "https://www.drupal.org/user/255384"
  2075. },
  2076. {
  2077. "name": "usingsession",
  2078. "homepage": "https://www.drupal.org/user/3582050"
  2079. }
  2080. ],
  2081. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2082. "homepage": "https://www.drupal.org/project/better_messages",
  2083. "support": {
  2084. "source": "https://git.drupalcode.org/project/better_messages"
  2085. }
  2086. },
  2087. {
  2088. "name": "drupal/bulkdelete",
  2089. "version": "dev-1.x",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2093. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2094. },
  2095. "require": {
  2096. "drupal/core": "^8.7.7 || ^9"
  2097. },
  2098. "type": "drupal-module",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-1.x": "1.x-dev"
  2102. },
  2103. "drupal": {
  2104. "version": "8.x-1.x-dev",
  2105. "datestamp": "1569586386",
  2106. "security-coverage": {
  2107. "status": "not-covered",
  2108. "message": "Dev releases are not covered by Drupal security advisories."
  2109. }
  2110. }
  2111. },
  2112. "notification-url": "https://packages.drupal.org/8/downloads",
  2113. "license": [
  2114. "GPL-2.0-or-later"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Kars-T",
  2119. "homepage": "https://www.drupal.org/user/224499"
  2120. },
  2121. {
  2122. "name": "Rahul Seth",
  2123. "homepage": "https://www.drupal.org/user/2694359"
  2124. },
  2125. {
  2126. "name": "adriancid",
  2127. "homepage": "https://www.drupal.org/user/1962106"
  2128. },
  2129. {
  2130. "name": "robertDouglass",
  2131. "homepage": "https://www.drupal.org/user/5449"
  2132. }
  2133. ],
  2134. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2135. "homepage": "https://www.drupal.org/project/bulkdelete",
  2136. "support": {
  2137. "source": "https://git.drupalcode.org/project/bulkdelete"
  2138. },
  2139. "time": "2020-05-24T06:01:38+00:00"
  2140. },
  2141. {
  2142. "name": "drupal/color_field",
  2143. "version": "2.4.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://git.drupalcode.org/project/color_field.git",
  2147. "reference": "8.x-2.4"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.4.zip",
  2152. "reference": "8.x-2.4",
  2153. "shasum": "11c163a409f4f70083f188d917fecc6052c53a2f"
  2154. },
  2155. "require": {
  2156. "drupal/core": "^8 || ^9"
  2157. },
  2158. "require-dev": {
  2159. "drupal/token": "~1.3",
  2160. "nickwilde1990/php-composter-phpcs-drupal": "^2.0"
  2161. },
  2162. "suggest": {
  2163. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2164. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2165. },
  2166. "type": "drupal-module",
  2167. "extra": {
  2168. "drupal": {
  2169. "version": "8.x-2.4",
  2170. "datestamp": "1596479692",
  2171. "security-coverage": {
  2172. "status": "covered",
  2173. "message": "Covered by Drupal's security advisory policy"
  2174. }
  2175. }
  2176. },
  2177. "notification-url": "https://packages.drupal.org/8/downloads",
  2178. "license": [
  2179. "GPL-2.0-or-later"
  2180. ],
  2181. "authors": [
  2182. {
  2183. "name": "targoo",
  2184. "homepage": "https://www.drupal.org/user/431910",
  2185. "role": "Maintainer"
  2186. },
  2187. {
  2188. "name": "Nick Wilde",
  2189. "homepage": "https://www.drupal.org/user/nickwilde",
  2190. "role": "Maintainer"
  2191. }
  2192. ],
  2193. "description": "Provides a color field type to store the color value and opacity",
  2194. "homepage": "https://www.drupal.org/project/color_field",
  2195. "support": {
  2196. "source": "https://git.drupalcode.org/project/color_field",
  2197. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2198. }
  2199. },
  2200. {
  2201. "name": "drupal/config_devel",
  2202. "version": "1.8.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://git.drupalcode.org/project/config_devel.git",
  2206. "reference": "8.x-1.8"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2211. "reference": "8.x-1.8",
  2212. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2213. },
  2214. "require": {
  2215. "drupal/core": "^8 || ^9"
  2216. },
  2217. "type": "drupal-module",
  2218. "extra": {
  2219. "drupal": {
  2220. "version": "8.x-1.8",
  2221. "datestamp": "1609324318",
  2222. "security-coverage": {
  2223. "status": "covered",
  2224. "message": "Covered by Drupal's security advisory policy"
  2225. }
  2226. }
  2227. },
  2228. "notification-url": "https://packages.drupal.org/8/downloads",
  2229. "license": [
  2230. "GPL-2.0+"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "alexpott",
  2235. "homepage": "https://www.drupal.org/user/157725"
  2236. },
  2237. {
  2238. "name": "benjy",
  2239. "homepage": "https://www.drupal.org/user/1852732"
  2240. },
  2241. {
  2242. "name": "chx",
  2243. "homepage": "https://www.drupal.org/user/9446"
  2244. },
  2245. {
  2246. "name": "joachim",
  2247. "homepage": "https://www.drupal.org/user/107701"
  2248. },
  2249. {
  2250. "name": "vijaycs85",
  2251. "homepage": "https://www.drupal.org/user/93488"
  2252. }
  2253. ],
  2254. "description": "Helps developers work with configuration.",
  2255. "homepage": "https://www.drupal.org/project/config_devel",
  2256. "support": {
  2257. "source": "https://git.drupalcode.org/project/config_devel"
  2258. }
  2259. },
  2260. {
  2261. "name": "drupal/config_filter",
  2262. "version": "1.12.0",
  2263. "source": {
  2264. "type": "git",
  2265. "url": "https://git.drupalcode.org/project/config_filter.git",
  2266. "reference": "8.x-1.12"
  2267. },
  2268. "dist": {
  2269. "type": "zip",
  2270. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2271. "reference": "8.x-1.12",
  2272. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2273. },
  2274. "require": {
  2275. "drupal/core": "^8.8 || ^9 || ^10"
  2276. },
  2277. "suggest": {
  2278. "drupal/config_split": "Split site configuration for different environments."
  2279. },
  2280. "type": "drupal-module",
  2281. "extra": {
  2282. "drupal": {
  2283. "version": "8.x-1.12",
  2284. "datestamp": "1698308496",
  2285. "security-coverage": {
  2286. "status": "covered",
  2287. "message": "Covered by Drupal's security advisory policy"
  2288. }
  2289. }
  2290. },
  2291. "notification-url": "https://packages.drupal.org/8/downloads",
  2292. "license": [
  2293. "GPL-2.0-or-later"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Fabian Bircher",
  2298. "homepage": "https://www.drupal.org/u/bircher",
  2299. "email": "opensource@fabianbircher.com",
  2300. "role": "Maintainer"
  2301. },
  2302. {
  2303. "name": "Nuvole Web",
  2304. "homepage": "http://nuvole.org",
  2305. "email": "info@nuvole.org",
  2306. "role": "Maintainer"
  2307. },
  2308. {
  2309. "name": "pescetti",
  2310. "homepage": "https://www.drupal.org/user/436244"
  2311. }
  2312. ],
  2313. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2314. "homepage": "https://www.drupal.org/project/config_filter",
  2315. "keywords": [
  2316. "Drupal",
  2317. "configuration",
  2318. "configuration management"
  2319. ],
  2320. "support": {
  2321. "source": "https://git.drupalcode.org/project/config_filter",
  2322. "issues": "https://www.drupal.org/project/issues/config_filter",
  2323. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2324. }
  2325. },
  2326. {
  2327. "name": "drupal/config_ignore",
  2328. "version": "2.4.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2332. "reference": "8.x-2.4"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2337. "reference": "8.x-2.4",
  2338. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2339. },
  2340. "require": {
  2341. "drupal/config_filter": "^1 || ^2",
  2342. "drupal/core": "^8 || ^9 || ^10"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "drupal": {
  2347. "version": "8.x-2.4",
  2348. "datestamp": "1676045435",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0-or-later"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Tommy Lynge Jørgensen",
  2362. "homepage": "https://www.drupal.org/u/tlyngej",
  2363. "email": "tlyngej@gmail.com",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Fabian Bircher",
  2368. "homepage": "https://www.drupal.org/u/bircher",
  2369. "role": "Maintainer"
  2370. },
  2371. {
  2372. "name": "tlyngej",
  2373. "homepage": "https://www.drupal.org/user/413139"
  2374. }
  2375. ],
  2376. "description": "Ignore certain configuration during import.",
  2377. "homepage": "http://drupal.org/project/config_ignore",
  2378. "support": {
  2379. "source": "https://git.drupalcode.org/project/config_ignore",
  2380. "issues": "https://drupal.org/project/config_ignore",
  2381. "irc": "irc://irc.freenode.org/drupal-contribute"
  2382. }
  2383. },
  2384. {
  2385. "name": "drupal/config_update",
  2386. "version": "1.7.0",
  2387. "source": {
  2388. "type": "git",
  2389. "url": "https://git.drupalcode.org/project/config_update.git",
  2390. "reference": "8.x-1.7"
  2391. },
  2392. "dist": {
  2393. "type": "zip",
  2394. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2395. "reference": "8.x-1.7",
  2396. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2397. },
  2398. "require": {
  2399. "drupal/core": "^8 || ^9"
  2400. },
  2401. "type": "drupal-module",
  2402. "extra": {
  2403. "drupal": {
  2404. "version": "8.x-1.7",
  2405. "datestamp": "1586355587",
  2406. "security-coverage": {
  2407. "status": "covered",
  2408. "message": "Covered by Drupal's security advisory policy"
  2409. }
  2410. }
  2411. },
  2412. "notification-url": "https://packages.drupal.org/8/downloads",
  2413. "license": [
  2414. "GPL-2.0-or-later"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "jhodgdon",
  2419. "homepage": "https://www.drupal.org/user/155601"
  2420. },
  2421. {
  2422. "name": "nedjo",
  2423. "homepage": "https://www.drupal.org/user/4481"
  2424. }
  2425. ],
  2426. "description": "Provides basic revert and update functionality for other modules",
  2427. "homepage": "https://www.drupal.org/project/config_update",
  2428. "support": {
  2429. "source": "https://git.drupalcode.org/project/config_update"
  2430. }
  2431. },
  2432. {
  2433. "name": "drupal/context",
  2434. "version": "4.1.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://git.drupalcode.org/project/context.git",
  2438. "reference": "8.x-4.1"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2443. "reference": "8.x-4.1",
  2444. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2445. },
  2446. "require": {
  2447. "drupal/core": "^8.8 || ^9"
  2448. },
  2449. "type": "drupal-module",
  2450. "extra": {
  2451. "drupal": {
  2452. "version": "8.x-4.1",
  2453. "datestamp": "1628187190",
  2454. "security-coverage": {
  2455. "status": "covered",
  2456. "message": "Covered by Drupal's security advisory policy"
  2457. }
  2458. }
  2459. },
  2460. "notification-url": "https://packages.drupal.org/8/downloads",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Christoffer Palm",
  2467. "homepage": "http://www.oddhill.se/",
  2468. "email": "christoffer.palm@oddhill.se",
  2469. "role": "Developer"
  2470. },
  2471. {
  2472. "name": "boshtian",
  2473. "homepage": "https://www.drupal.org/user/1773456"
  2474. },
  2475. {
  2476. "name": "colan",
  2477. "homepage": "https://www.drupal.org/user/58704"
  2478. },
  2479. {
  2480. "name": "emanaton",
  2481. "homepage": "https://www.drupal.org/user/120853"
  2482. },
  2483. {
  2484. "name": "febbraro",
  2485. "homepage": "https://www.drupal.org/user/43670"
  2486. },
  2487. {
  2488. "name": "fizk",
  2489. "homepage": "https://www.drupal.org/user/473174"
  2490. },
  2491. {
  2492. "name": "hass",
  2493. "homepage": "https://www.drupal.org/user/85918"
  2494. },
  2495. {
  2496. "name": "hefox",
  2497. "homepage": "https://www.drupal.org/user/426416"
  2498. },
  2499. {
  2500. "name": "jmiccolis",
  2501. "homepage": "https://www.drupal.org/user/31731"
  2502. },
  2503. {
  2504. "name": "Kristen Pol",
  2505. "homepage": "https://www.drupal.org/user/8389"
  2506. },
  2507. {
  2508. "name": "nedjo",
  2509. "homepage": "https://www.drupal.org/user/4481"
  2510. },
  2511. {
  2512. "name": "NormySan",
  2513. "homepage": "https://www.drupal.org/user/112352"
  2514. },
  2515. {
  2516. "name": "patricksettle",
  2517. "homepage": "https://www.drupal.org/user/26618"
  2518. },
  2519. {
  2520. "name": "paulocs",
  2521. "homepage": "https://www.drupal.org/user/3640109"
  2522. },
  2523. {
  2524. "name": "Steven Jones",
  2525. "homepage": "https://www.drupal.org/user/99644"
  2526. },
  2527. {
  2528. "name": "tekante",
  2529. "homepage": "https://www.drupal.org/user/640024"
  2530. },
  2531. {
  2532. "name": "yhahn",
  2533. "homepage": "https://www.drupal.org/user/264833"
  2534. }
  2535. ],
  2536. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2537. "homepage": "https://github.com/oddhill/context",
  2538. "keywords": [
  2539. "Drupal",
  2540. "block",
  2541. "conditions",
  2542. "context",
  2543. "visibility"
  2544. ],
  2545. "support": {
  2546. "source": "https://github.com/oddhill/context",
  2547. "issues": "https://github.com/oddhill/context/issues",
  2548. "docs": "https://github.com/oddhill/context"
  2549. }
  2550. },
  2551. {
  2552. "name": "drupal/core",
  2553. "version": "8.9.20",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/drupal/core.git",
  2557. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2562. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2563. "shasum": ""
  2564. },
  2565. "require": {
  2566. "asm89/stack-cors": "^1.1",
  2567. "composer/semver": "^1.0",
  2568. "doctrine/annotations": "^1.4",
  2569. "doctrine/common": "^2.7",
  2570. "easyrdf/easyrdf": "^0.9",
  2571. "egulias/email-validator": "^2.0",
  2572. "ext-date": "*",
  2573. "ext-dom": "*",
  2574. "ext-filter": "*",
  2575. "ext-gd": "*",
  2576. "ext-hash": "*",
  2577. "ext-json": "*",
  2578. "ext-pcre": "*",
  2579. "ext-pdo": "*",
  2580. "ext-session": "*",
  2581. "ext-simplexml": "*",
  2582. "ext-spl": "*",
  2583. "ext-tokenizer": "*",
  2584. "ext-xml": "*",
  2585. "guzzlehttp/guzzle": "^6.3",
  2586. "laminas/laminas-diactoros": "^1.8",
  2587. "laminas/laminas-feed": "^2.12",
  2588. "masterminds/html5": "^2.1",
  2589. "pear/archive_tar": "^1.4.14",
  2590. "php": "^7.0.8",
  2591. "psr/log": "^1.0",
  2592. "stack/builder": "^1.0",
  2593. "symfony-cmf/routing": "^1.4",
  2594. "symfony/class-loader": "~3.4.0",
  2595. "symfony/console": "~3.4.0",
  2596. "symfony/dependency-injection": "~3.4.26",
  2597. "symfony/event-dispatcher": "~3.4.0",
  2598. "symfony/http-foundation": "~3.4.35",
  2599. "symfony/http-kernel": "~3.4.14",
  2600. "symfony/polyfill-iconv": "^1.0",
  2601. "symfony/process": "~3.4.0",
  2602. "symfony/psr-http-message-bridge": "^1.1.2",
  2603. "symfony/routing": "~3.4.0",
  2604. "symfony/serializer": "~3.4.0",
  2605. "symfony/translation": "~3.4.0",
  2606. "symfony/validator": "~3.4.0",
  2607. "symfony/yaml": "~3.4.5",
  2608. "twig/twig": "^1.38.2",
  2609. "typo3/phar-stream-wrapper": "^3.1.3"
  2610. },
  2611. "conflict": {
  2612. "drupal/pathauto": "<1.6",
  2613. "drush/drush": "<8.1.10"
  2614. },
  2615. "replace": {
  2616. "drupal/action": "self.version",
  2617. "drupal/aggregator": "self.version",
  2618. "drupal/automated_cron": "self.version",
  2619. "drupal/ban": "self.version",
  2620. "drupal/bartik": "self.version",
  2621. "drupal/basic_auth": "self.version",
  2622. "drupal/big_pipe": "self.version",
  2623. "drupal/block": "self.version",
  2624. "drupal/block_content": "self.version",
  2625. "drupal/block_place": "self.version",
  2626. "drupal/book": "self.version",
  2627. "drupal/breakpoint": "self.version",
  2628. "drupal/ckeditor": "self.version",
  2629. "drupal/claro": "self.version",
  2630. "drupal/classy": "self.version",
  2631. "drupal/color": "self.version",
  2632. "drupal/comment": "self.version",
  2633. "drupal/config": "self.version",
  2634. "drupal/config_translation": "self.version",
  2635. "drupal/contact": "self.version",
  2636. "drupal/content_moderation": "self.version",
  2637. "drupal/content_translation": "self.version",
  2638. "drupal/contextual": "self.version",
  2639. "drupal/core-annotation": "self.version",
  2640. "drupal/core-assertion": "self.version",
  2641. "drupal/core-bridge": "self.version",
  2642. "drupal/core-class-finder": "self.version",
  2643. "drupal/core-datetime": "self.version",
  2644. "drupal/core-dependency-injection": "self.version",
  2645. "drupal/core-diff": "self.version",
  2646. "drupal/core-discovery": "self.version",
  2647. "drupal/core-event-dispatcher": "self.version",
  2648. "drupal/core-file-cache": "self.version",
  2649. "drupal/core-file-security": "self.version",
  2650. "drupal/core-filesystem": "self.version",
  2651. "drupal/core-gettext": "self.version",
  2652. "drupal/core-graph": "self.version",
  2653. "drupal/core-http-foundation": "self.version",
  2654. "drupal/core-php-storage": "self.version",
  2655. "drupal/core-plugin": "self.version",
  2656. "drupal/core-proxy-builder": "self.version",
  2657. "drupal/core-render": "self.version",
  2658. "drupal/core-serialization": "self.version",
  2659. "drupal/core-transliteration": "self.version",
  2660. "drupal/core-utility": "self.version",
  2661. "drupal/core-uuid": "self.version",
  2662. "drupal/core-version": "self.version",
  2663. "drupal/datetime": "self.version",
  2664. "drupal/datetime_range": "self.version",
  2665. "drupal/dblog": "self.version",
  2666. "drupal/dynamic_page_cache": "self.version",
  2667. "drupal/editor": "self.version",
  2668. "drupal/entity_reference": "self.version",
  2669. "drupal/field": "self.version",
  2670. "drupal/field_layout": "self.version",
  2671. "drupal/field_ui": "self.version",
  2672. "drupal/file": "self.version",
  2673. "drupal/filter": "self.version",
  2674. "drupal/forum": "self.version",
  2675. "drupal/hal": "self.version",
  2676. "drupal/help": "self.version",
  2677. "drupal/help_topics": "self.version",
  2678. "drupal/history": "self.version",
  2679. "drupal/image": "self.version",
  2680. "drupal/inline_form_errors": "self.version",
  2681. "drupal/jsonapi": "self.version",
  2682. "drupal/language": "self.version",
  2683. "drupal/layout_builder": "self.version",
  2684. "drupal/layout_discovery": "self.version",
  2685. "drupal/link": "self.version",
  2686. "drupal/locale": "self.version",
  2687. "drupal/media": "self.version",
  2688. "drupal/media_library": "self.version",
  2689. "drupal/menu_link_content": "self.version",
  2690. "drupal/menu_ui": "self.version",
  2691. "drupal/migrate": "self.version",
  2692. "drupal/migrate_drupal": "self.version",
  2693. "drupal/migrate_drupal_multilingual": "self.version",
  2694. "drupal/migrate_drupal_ui": "self.version",
  2695. "drupal/minimal": "self.version",
  2696. "drupal/node": "self.version",
  2697. "drupal/options": "self.version",
  2698. "drupal/page_cache": "self.version",
  2699. "drupal/path": "self.version",
  2700. "drupal/path_alias": "self.version",
  2701. "drupal/quickedit": "self.version",
  2702. "drupal/rdf": "self.version",
  2703. "drupal/responsive_image": "self.version",
  2704. "drupal/rest": "self.version",
  2705. "drupal/search": "self.version",
  2706. "drupal/serialization": "self.version",
  2707. "drupal/settings_tray": "self.version",
  2708. "drupal/seven": "self.version",
  2709. "drupal/shortcut": "self.version",
  2710. "drupal/simpletest": "self.version",
  2711. "drupal/standard": "self.version",
  2712. "drupal/stark": "self.version",
  2713. "drupal/statistics": "self.version",
  2714. "drupal/syslog": "self.version",
  2715. "drupal/system": "self.version",
  2716. "drupal/taxonomy": "self.version",
  2717. "drupal/telephone": "self.version",
  2718. "drupal/text": "self.version",
  2719. "drupal/toolbar": "self.version",
  2720. "drupal/tour": "self.version",
  2721. "drupal/tracker": "self.version",
  2722. "drupal/update": "self.version",
  2723. "drupal/user": "self.version",
  2724. "drupal/views": "self.version",
  2725. "drupal/views_ui": "self.version",
  2726. "drupal/workflows": "self.version",
  2727. "drupal/workspaces": "self.version"
  2728. },
  2729. "type": "drupal-core",
  2730. "extra": {
  2731. "drupal-scaffold": {
  2732. "file-mapping": {
  2733. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2734. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2735. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2736. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2737. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2738. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2739. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2740. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2741. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2742. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2743. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2744. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2745. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2746. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2747. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2748. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2749. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2750. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2751. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2752. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2753. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2754. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2755. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2756. }
  2757. }
  2758. },
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Drupal\\Core\\": "lib/Drupal/Core",
  2762. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2763. "Drupal\\Component\\": "lib/Drupal/Component"
  2764. },
  2765. "classmap": [
  2766. "lib/Drupal.php",
  2767. "lib/Drupal/Component/Utility/Timer.php",
  2768. "lib/Drupal/Component/Utility/Unicode.php",
  2769. "lib/Drupal/Core/Database/Database.php",
  2770. "lib/Drupal/Core/DrupalKernel.php",
  2771. "lib/Drupal/Core/DrupalKernelInterface.php",
  2772. "lib/Drupal/Core/Site/Settings.php"
  2773. ]
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "GPL-2.0-or-later"
  2778. ],
  2779. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2780. "support": {
  2781. "source": "https://github.com/drupal/core/tree/8.9.20"
  2782. },
  2783. "time": "2021-11-17T21:24:28+00:00"
  2784. },
  2785. {
  2786. "name": "drupal/core-composer-scaffold",
  2787. "version": "8.9.20",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2791. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2796. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2797. "shasum": ""
  2798. },
  2799. "require": {
  2800. "composer-plugin-api": "^1 || ^2",
  2801. "php": ">=7.0.8"
  2802. },
  2803. "conflict": {
  2804. "drupal-composer/drupal-scaffold": "*"
  2805. },
  2806. "require-dev": {
  2807. "composer/composer": "^1.8@stable"
  2808. },
  2809. "type": "composer-plugin",
  2810. "extra": {
  2811. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2812. "branch-alias": {
  2813. "dev-master": "1.0.x-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2819. }
  2820. },
  2821. "notification-url": "https://packagist.org/downloads/",
  2822. "license": [
  2823. "GPL-2.0-or-later"
  2824. ],
  2825. "description": "A flexible Composer project scaffold builder.",
  2826. "homepage": "https://www.drupal.org/project/drupal",
  2827. "keywords": [
  2828. "drupal"
  2829. ],
  2830. "support": {
  2831. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2832. },
  2833. "time": "2020-08-07T22:30:30+00:00"
  2834. },
  2835. {
  2836. "name": "drupal/core-recommended",
  2837. "version": "8.9.20",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/drupal/core-recommended.git",
  2841. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2846. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2847. "shasum": ""
  2848. },
  2849. "require": {
  2850. "asm89/stack-cors": "1.3.0",
  2851. "composer/semver": "1.5.1",
  2852. "doctrine/annotations": "v1.4.0",
  2853. "doctrine/cache": "v1.6.2",
  2854. "doctrine/collections": "v1.4.0",
  2855. "doctrine/common": "v2.7.3",
  2856. "doctrine/inflector": "v1.2.0",
  2857. "doctrine/lexer": "1.0.2",
  2858. "drupal/core": "8.9.20",
  2859. "easyrdf/easyrdf": "0.9.1",
  2860. "egulias/email-validator": "2.1.17",
  2861. "guzzlehttp/guzzle": "6.5.4",
  2862. "guzzlehttp/promises": "v1.3.1",
  2863. "guzzlehttp/psr7": "1.6.1",
  2864. "laminas/laminas-diactoros": "1.8.7p2",
  2865. "laminas/laminas-escaper": "2.6.1",
  2866. "laminas/laminas-feed": "2.12.2",
  2867. "laminas/laminas-stdlib": "3.2.1",
  2868. "laminas/laminas-zendframework-bridge": "1.0.4",
  2869. "masterminds/html5": "2.3.0",
  2870. "paragonie/random_compat": "v9.99.99",
  2871. "pear/archive_tar": "1.4.14",
  2872. "pear/console_getopt": "v1.4.3",
  2873. "pear/pear-core-minimal": "v1.10.10",
  2874. "pear/pear_exception": "v1.0.1",
  2875. "psr/container": "1.0.0",
  2876. "psr/http-message": "1.0.1",
  2877. "psr/log": "1.1.3",
  2878. "ralouphie/getallheaders": "3.0.3",
  2879. "stack/builder": "v1.0.5",
  2880. "symfony-cmf/routing": "1.4.1",
  2881. "symfony/class-loader": "v3.4.41",
  2882. "symfony/console": "v3.4.41",
  2883. "symfony/debug": "v3.4.41",
  2884. "symfony/dependency-injection": "v3.4.41",
  2885. "symfony/event-dispatcher": "v3.4.41",
  2886. "symfony/http-foundation": "v3.4.41",
  2887. "symfony/http-kernel": "v3.4.44",
  2888. "symfony/polyfill-ctype": "v1.17.0",
  2889. "symfony/polyfill-iconv": "v1.17.0",
  2890. "symfony/polyfill-intl-idn": "v1.17.0",
  2891. "symfony/polyfill-mbstring": "v1.17.0",
  2892. "symfony/polyfill-php56": "v1.17.0",
  2893. "symfony/polyfill-php70": "v1.17.0",
  2894. "symfony/polyfill-php72": "v1.17.0",
  2895. "symfony/polyfill-util": "v1.17.0",
  2896. "symfony/process": "v3.4.41",
  2897. "symfony/psr-http-message-bridge": "v1.1.2",
  2898. "symfony/routing": "v3.4.41",
  2899. "symfony/serializer": "v3.4.41",
  2900. "symfony/translation": "v3.4.41",
  2901. "symfony/validator": "v3.4.41",
  2902. "symfony/yaml": "v3.4.41",
  2903. "twig/twig": "v1.42.5",
  2904. "typo3/phar-stream-wrapper": "v3.1.4"
  2905. },
  2906. "conflict": {
  2907. "webflo/drupal-core-strict": "*"
  2908. },
  2909. "type": "metapackage",
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "GPL-2.0-or-later"
  2913. ],
  2914. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2915. "support": {
  2916. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2917. },
  2918. "time": "2021-11-17T21:24:28+00:00"
  2919. },
  2920. {
  2921. "name": "drupal/ctools",
  2922. "version": "3.4.0",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://git.drupalcode.org/project/ctools.git",
  2926. "reference": "8.x-3.4"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  2931. "reference": "8.x-3.4",
  2932. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  2933. },
  2934. "require": {
  2935. "drupal/core": "^8.7.7 || ^9"
  2936. },
  2937. "type": "drupal-module",
  2938. "extra": {
  2939. "drupal": {
  2940. "version": "8.x-3.4",
  2941. "datestamp": "1585763383",
  2942. "security-coverage": {
  2943. "status": "covered",
  2944. "message": "Covered by Drupal's security advisory policy"
  2945. }
  2946. }
  2947. },
  2948. "notification-url": "https://packages.drupal.org/8/downloads",
  2949. "license": [
  2950. "GPL-2.0+"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Kris Vanderwater (EclipseGc)",
  2955. "homepage": "https://www.drupal.org/u/eclipsegc",
  2956. "role": "Maintainer"
  2957. },
  2958. {
  2959. "name": "Jakob Perry (japerry)",
  2960. "homepage": "https://www.drupal.org/u/japerry",
  2961. "role": "Maintainer"
  2962. },
  2963. {
  2964. "name": "Tim Plunkett (tim.plunkett)",
  2965. "homepage": "https://www.drupal.org/u/timplunkett",
  2966. "role": "Maintainer"
  2967. },
  2968. {
  2969. "name": "James Gilliland (neclimdul)",
  2970. "homepage": "https://www.drupal.org/u/neclimdul",
  2971. "role": "Maintainer"
  2972. },
  2973. {
  2974. "name": "Daniel Wehner (dawehner)",
  2975. "homepage": "https://www.drupal.org/u/dawehner",
  2976. "role": "Maintainer"
  2977. },
  2978. {
  2979. "name": "joelpittet",
  2980. "homepage": "https://www.drupal.org/user/160302"
  2981. },
  2982. {
  2983. "name": "merlinofchaos",
  2984. "homepage": "https://www.drupal.org/user/26979"
  2985. },
  2986. {
  2987. "name": "neclimdul",
  2988. "homepage": "https://www.drupal.org/user/48673"
  2989. },
  2990. {
  2991. "name": "sdboyer",
  2992. "homepage": "https://www.drupal.org/user/146719"
  2993. },
  2994. {
  2995. "name": "sun",
  2996. "homepage": "https://www.drupal.org/user/54136"
  2997. },
  2998. {
  2999. "name": "tim.plunkett",
  3000. "homepage": "https://www.drupal.org/user/241634"
  3001. }
  3002. ],
  3003. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3004. "homepage": "https://www.drupal.org/project/ctools",
  3005. "support": {
  3006. "source": "https://git.drupalcode.org/project/ctools",
  3007. "issues": "https://www.drupal.org/project/issues/ctools"
  3008. }
  3009. },
  3010. {
  3011. "name": "drupal/date_range_formatter",
  3012. "version": "4.0.1",
  3013. "source": {
  3014. "type": "git",
  3015. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3016. "reference": "4.0.1"
  3017. },
  3018. "dist": {
  3019. "type": "zip",
  3020. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.1.zip",
  3021. "reference": "4.0.1",
  3022. "shasum": "d218f325c9a1e144ede86d34b87002330a4e8709"
  3023. },
  3024. "require": {
  3025. "drupal/core": "^8 || ^9 || ^10"
  3026. },
  3027. "type": "drupal-module",
  3028. "extra": {
  3029. "drupal": {
  3030. "version": "4.0.1",
  3031. "datestamp": "1661752209",
  3032. "security-coverage": {
  3033. "status": "covered",
  3034. "message": "Covered by Drupal's security advisory policy"
  3035. }
  3036. }
  3037. },
  3038. "notification-url": "https://packages.drupal.org/8/downloads",
  3039. "license": [
  3040. "GPL-2.0-or-later"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "maximpodorov",
  3045. "homepage": "https://www.drupal.org/user/515310"
  3046. },
  3047. {
  3048. "name": "sudishth",
  3049. "homepage": "https://www.drupal.org/user/1440562"
  3050. }
  3051. ],
  3052. "description": "Formats date ranges.",
  3053. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3054. "support": {
  3055. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3056. }
  3057. },
  3058. {
  3059. "name": "drupal/devel",
  3060. "version": "4.2.1",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://git.drupalcode.org/project/devel.git",
  3064. "reference": "4.2.1"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3069. "reference": "4.2.1",
  3070. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3071. },
  3072. "require": {
  3073. "doctrine/common": "^2.7",
  3074. "drupal/core": "^8.8 || ^9",
  3075. "symfony/var-dumper": "^4 || ^5"
  3076. },
  3077. "conflict": {
  3078. "kint-php/kint": "<3"
  3079. },
  3080. "require-dev": {
  3081. "drush/drush": "^10"
  3082. },
  3083. "suggest": {
  3084. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3085. },
  3086. "type": "drupal-module",
  3087. "extra": {
  3088. "drupal": {
  3089. "version": "4.2.1",
  3090. "datestamp": "1664317444",
  3091. "security-coverage": {
  3092. "status": "covered",
  3093. "message": "Covered by Drupal's security advisory policy"
  3094. }
  3095. },
  3096. "drush": {
  3097. "services": {
  3098. "drush.services.yml": "^9 || ^10"
  3099. }
  3100. }
  3101. },
  3102. "notification-url": "https://packages.drupal.org/8/downloads",
  3103. "license": [
  3104. "GPL-2.0-or-later"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "moshe weitzman",
  3109. "homepage": "https://www.drupal.org/user/23"
  3110. }
  3111. ],
  3112. "description": "Various blocks, pages, and functions for developers.",
  3113. "homepage": "https://www.drupal.org/project/devel",
  3114. "support": {
  3115. "source": "https://gitlab.com/drupalspoons/devel",
  3116. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3117. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3118. }
  3119. },
  3120. {
  3121. "name": "drupal/domain",
  3122. "version": "1.0.0-beta8",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://git.drupalcode.org/project/domain.git",
  3126. "reference": "8.x-1.0-beta8"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3131. "reference": "8.x-1.0-beta8",
  3132. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3133. },
  3134. "require": {
  3135. "drupal/core": "^8 || ^9"
  3136. },
  3137. "require-dev": {
  3138. "drupal/domain_access": "*",
  3139. "drupal/domain_config": "*"
  3140. },
  3141. "type": "drupal-module",
  3142. "extra": {
  3143. "drupal": {
  3144. "version": "8.x-1.0-beta8",
  3145. "datestamp": "1677511311",
  3146. "security-coverage": {
  3147. "status": "not-covered",
  3148. "message": "Beta releases are not covered by Drupal security advisories."
  3149. }
  3150. }
  3151. },
  3152. "notification-url": "https://packages.drupal.org/8/downloads",
  3153. "license": [
  3154. "GPL-2.0-or-later"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "agentrickard",
  3159. "homepage": "https://www.drupal.org/user/20975"
  3160. },
  3161. {
  3162. "name": "nonsie",
  3163. "homepage": "https://www.drupal.org/user/29899"
  3164. },
  3165. {
  3166. "name": "webflo",
  3167. "homepage": "https://www.drupal.org/user/254778"
  3168. }
  3169. ],
  3170. "description": "Creates domain records within a Drupal installation.",
  3171. "homepage": "https://www.drupal.org/project/domain",
  3172. "support": {
  3173. "source": "https://git.drupalcode.org/project/domain"
  3174. }
  3175. },
  3176. {
  3177. "name": "drupal/email_registration",
  3178. "version": "1.1.0",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://git.drupalcode.org/project/email_registration.git",
  3182. "reference": "8.x-1.1"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3187. "reference": "8.x-1.1",
  3188. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3189. },
  3190. "require": {
  3191. "drupal/core": "^8.7.7 || ^9"
  3192. },
  3193. "conflict": {
  3194. "drupal/commerce": "<2.12"
  3195. },
  3196. "require-dev": {
  3197. "drupal/commerce": "^2.0"
  3198. },
  3199. "type": "drupal-module",
  3200. "extra": {
  3201. "drupal": {
  3202. "version": "8.x-1.1",
  3203. "datestamp": "1592317072",
  3204. "security-coverage": {
  3205. "status": "covered",
  3206. "message": "Covered by Drupal's security advisory policy"
  3207. }
  3208. }
  3209. },
  3210. "notification-url": "https://packages.drupal.org/8/downloads",
  3211. "license": [
  3212. "GPL-2.0-or-later"
  3213. ],
  3214. "authors": [
  3215. {
  3216. "name": "Greg Knaddison (greggles)",
  3217. "homepage": "https://www.drupal.org/u/greggles",
  3218. "role": "Maintainer"
  3219. },
  3220. {
  3221. "name": "Andrey Postnikov (andypost)",
  3222. "homepage": "https://www.drupal.org/u/andypost",
  3223. "role": "Maintainer"
  3224. },
  3225. {
  3226. "name": "Chris Herberte",
  3227. "homepage": "https://www.drupal.org/u/chris-herberte",
  3228. "role": "Maintainer"
  3229. },
  3230. {
  3231. "name": "Moshe Weitzman (moshe weitzman)",
  3232. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3233. "role": "Maintainer"
  3234. }
  3235. ],
  3236. "description": "Allows users to register with an email address as their username.",
  3237. "homepage": "https://www.drupal.org/project/email_registration",
  3238. "support": {
  3239. "source": "https://git.drupalcode.org/project/email_registration",
  3240. "issues": "http://drupal.org/project/issues/email_registration"
  3241. }
  3242. },
  3243. {
  3244. "name": "drupal/entity",
  3245. "version": "dev-1.x",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://git.drupalcode.org/project/entity.git",
  3249. "reference": "3d3a99924df1b65564a417e74802bb524691dfd8"
  3250. },
  3251. "require": {
  3252. "drupal/core": "^8.8 || ^9"
  3253. },
  3254. "type": "drupal-module",
  3255. "extra": {
  3256. "branch-alias": {
  3257. "dev-1.x": "1.x-dev"
  3258. },
  3259. "drupal": {
  3260. "version": "8.x-1.0+5-dev",
  3261. "datestamp": "1594294834",
  3262. "security-coverage": {
  3263. "status": "not-covered",
  3264. "message": "Dev releases are not covered by Drupal security advisories."
  3265. }
  3266. }
  3267. },
  3268. "notification-url": "https://packages.drupal.org/8/downloads",
  3269. "license": [
  3270. "GPL-2.0-or-later"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Berdir",
  3275. "homepage": "https://www.drupal.org/user/214652"
  3276. },
  3277. {
  3278. "name": "bojanz",
  3279. "homepage": "https://www.drupal.org/user/86106"
  3280. },
  3281. {
  3282. "name": "dawehner",
  3283. "homepage": "https://www.drupal.org/user/99340"
  3284. },
  3285. {
  3286. "name": "dixon_",
  3287. "homepage": "https://www.drupal.org/user/239911"
  3288. },
  3289. {
  3290. "name": "fago",
  3291. "homepage": "https://www.drupal.org/user/16747"
  3292. },
  3293. {
  3294. "name": "mglaman",
  3295. "homepage": "https://www.drupal.org/user/2416470"
  3296. }
  3297. ],
  3298. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3299. "homepage": "http://drupal.org/project/entity",
  3300. "support": {
  3301. "source": "https://git.drupalcode.org/project/entity"
  3302. },
  3303. "time": "2020-08-08T09:14:05+00:00"
  3304. },
  3305. {
  3306. "name": "drupal/features",
  3307. "version": "3.11.0",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://git.drupalcode.org/project/features.git",
  3311. "reference": "8.x-3.11"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3316. "reference": "8.x-3.11",
  3317. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3318. },
  3319. "require": {
  3320. "drupal/config_update": "^1.4",
  3321. "drupal/core": "^8.8 || ^9"
  3322. },
  3323. "type": "drupal-module",
  3324. "extra": {
  3325. "drupal": {
  3326. "version": "8.x-3.11",
  3327. "datestamp": "1591023154",
  3328. "security-coverage": {
  3329. "status": "covered",
  3330. "message": "Covered by Drupal's security advisory policy"
  3331. }
  3332. },
  3333. "drush": {
  3334. "services": {
  3335. "drush.services.yml": "^9"
  3336. }
  3337. }
  3338. },
  3339. "notification-url": "https://packages.drupal.org/8/downloads",
  3340. "license": [
  3341. "GPL-2.0-or-later"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "dawehner",
  3346. "homepage": "https://www.drupal.org/user/99340"
  3347. },
  3348. {
  3349. "name": "donquixote",
  3350. "homepage": "https://www.drupal.org/user/459338"
  3351. },
  3352. {
  3353. "name": "e2thex",
  3354. "homepage": "https://www.drupal.org/user/189123"
  3355. },
  3356. {
  3357. "name": "febbraro",
  3358. "homepage": "https://www.drupal.org/user/43670"
  3359. },
  3360. {
  3361. "name": "flocondetoile",
  3362. "homepage": "https://www.drupal.org/user/2006064"
  3363. },
  3364. {
  3365. "name": "jmiccolis",
  3366. "homepage": "https://www.drupal.org/user/31731"
  3367. },
  3368. {
  3369. "name": "joseph.olstad",
  3370. "homepage": "https://www.drupal.org/user/1321830"
  3371. },
  3372. {
  3373. "name": "mpotter",
  3374. "homepage": "https://www.drupal.org/user/616192"
  3375. },
  3376. {
  3377. "name": "nedjo",
  3378. "homepage": "https://www.drupal.org/user/4481"
  3379. },
  3380. {
  3381. "name": "tim.plunkett",
  3382. "homepage": "https://www.drupal.org/user/241634"
  3383. }
  3384. ],
  3385. "description": "Enables administrators to package configuration into modules",
  3386. "homepage": "https://www.drupal.org/project/features",
  3387. "support": {
  3388. "source": "https://git.drupalcode.org/project/features"
  3389. }
  3390. },
  3391. {
  3392. "name": "drupal/field_group",
  3393. "version": "3.1.0",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://git.drupalcode.org/project/field_group.git",
  3397. "reference": "8.x-3.1"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  3402. "reference": "8.x-3.1",
  3403. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  3404. },
  3405. "require": {
  3406. "drupal/core": "^8.8 || ^9"
  3407. },
  3408. "require-dev": {
  3409. "drupal/jquery_ui_accordion": "^1.0"
  3410. },
  3411. "type": "drupal-module",
  3412. "extra": {
  3413. "drupal": {
  3414. "version": "8.x-3.1",
  3415. "datestamp": "1591772567",
  3416. "security-coverage": {
  3417. "status": "covered",
  3418. "message": "Covered by Drupal's security advisory policy"
  3419. }
  3420. }
  3421. },
  3422. "notification-url": "https://packages.drupal.org/8/downloads",
  3423. "license": [
  3424. "GPL-2.0-or-later"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Hydra",
  3429. "homepage": "https://www.drupal.org/user/647364"
  3430. },
  3431. {
  3432. "name": "Stalski",
  3433. "homepage": "https://www.drupal.org/user/322618"
  3434. },
  3435. {
  3436. "name": "jyve",
  3437. "homepage": "https://www.drupal.org/user/591438"
  3438. },
  3439. {
  3440. "name": "nils.destoop",
  3441. "homepage": "https://www.drupal.org/user/361625"
  3442. },
  3443. {
  3444. "name": "swentel",
  3445. "homepage": "https://www.drupal.org/user/107403"
  3446. }
  3447. ],
  3448. "description": "Provides the field_group module.",
  3449. "homepage": "https://www.drupal.org/project/field_group",
  3450. "support": {
  3451. "source": "https://git.drupalcode.org/project/field_group",
  3452. "issues": "https://www.drupal.org/project/issues/field_group"
  3453. }
  3454. },
  3455. {
  3456. "name": "drupal/filefield_sources",
  3457. "version": "1.0.0-alpha5",
  3458. "source": {
  3459. "type": "git",
  3460. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3461. "reference": "8.x-1.0-alpha5"
  3462. },
  3463. "dist": {
  3464. "type": "zip",
  3465. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3466. "reference": "8.x-1.0-alpha5",
  3467. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3468. },
  3469. "require": {
  3470. "drupal/core": "^8 || ^9"
  3471. },
  3472. "require-dev": {
  3473. "drupal/imce": "^2.3"
  3474. },
  3475. "type": "drupal-module",
  3476. "extra": {
  3477. "drupal": {
  3478. "version": "8.x-1.0-alpha5",
  3479. "datestamp": "1642555269",
  3480. "security-coverage": {
  3481. "status": "not-covered",
  3482. "message": "Alpha releases are not covered by Drupal security advisories."
  3483. }
  3484. }
  3485. },
  3486. "notification-url": "https://packages.drupal.org/8/downloads",
  3487. "license": [
  3488. "GPL-2.0-or-later"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "Nate Lampton (quicksketch)",
  3493. "homepage": "https://www.drupal.org/u/quicksketch",
  3494. "role": "Maintainer"
  3495. },
  3496. {
  3497. "name": "Andrey Khromyshev (profak)",
  3498. "homepage": "https://www.drupal.org/u/profak",
  3499. "role": "Maintainer"
  3500. },
  3501. {
  3502. "name": "David Valdez (gnuget)",
  3503. "homepage": "https://www.drupal.org/u/gnuget",
  3504. "role": "Maintainer"
  3505. },
  3506. {
  3507. "name": "quicksketch",
  3508. "homepage": "https://www.drupal.org/user/35821"
  3509. }
  3510. ],
  3511. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3512. "homepage": "https://www.drupal.org/project/filefield_sources",
  3513. "support": {
  3514. "source": "https://git.drupalcode.org/project/filefield_sources",
  3515. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3516. "irc": "irc://irc.freenode.org/drupal-contribute"
  3517. }
  3518. },
  3519. {
  3520. "name": "drupal/filter_perms",
  3521. "version": "1.0.0-alpha1",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3525. "reference": "8.x-1.0-alpha1"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3530. "reference": "8.x-1.0-alpha1",
  3531. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3532. },
  3533. "require": {
  3534. "drupal/core": "^8 || ^9"
  3535. },
  3536. "type": "drupal-module",
  3537. "extra": {
  3538. "drupal": {
  3539. "version": "8.x-1.0-alpha1",
  3540. "datestamp": "1595202904",
  3541. "security-coverage": {
  3542. "status": "not-covered",
  3543. "message": "Alpha releases are not covered by Drupal security advisories."
  3544. }
  3545. }
  3546. },
  3547. "notification-url": "https://packages.drupal.org/8/downloads",
  3548. "license": [
  3549. "GPL-2.0-or-later"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "cYu",
  3554. "homepage": "https://www.drupal.org/user/202205"
  3555. },
  3556. {
  3557. "name": "deekayen",
  3558. "homepage": "https://www.drupal.org/user/972"
  3559. },
  3560. {
  3561. "name": "ivavictoria",
  3562. "homepage": "https://www.drupal.org/user/3061533"
  3563. },
  3564. {
  3565. "name": "justcaldwell",
  3566. "homepage": "https://www.drupal.org/user/290069"
  3567. },
  3568. {
  3569. "name": "mgbellaire",
  3570. "homepage": "https://www.drupal.org/user/1831932"
  3571. },
  3572. {
  3573. "name": "willzyx",
  3574. "homepage": "https://www.drupal.org/user/1043862"
  3575. }
  3576. ],
  3577. "description": "Provides role and module filters to simplify the user permissions page.",
  3578. "homepage": "https://www.drupal.org/project/filter_perms",
  3579. "support": {
  3580. "source": "https://git.drupalcode.org/project/filter_perms"
  3581. }
  3582. },
  3583. {
  3584. "name": "drupal/honeypot",
  3585. "version": "2.0.2",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://git.drupalcode.org/project/honeypot.git",
  3589. "reference": "2.0.2"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3594. "reference": "2.0.2",
  3595. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3596. },
  3597. "require": {
  3598. "drupal/core": "^8.8.2 || ^9"
  3599. },
  3600. "type": "drupal-module",
  3601. "extra": {
  3602. "drupal": {
  3603. "version": "2.0.2",
  3604. "datestamp": "1651895165",
  3605. "security-coverage": {
  3606. "status": "covered",
  3607. "message": "Covered by Drupal's security advisory policy"
  3608. }
  3609. }
  3610. },
  3611. "notification-url": "https://packages.drupal.org/8/downloads",
  3612. "license": [
  3613. "GPL-2.0-or-later"
  3614. ],
  3615. "authors": [
  3616. {
  3617. "name": "Jeff Geerling",
  3618. "homepage": "https://www.drupal.org/user/389011",
  3619. "email": "geerlingguy@mac.com"
  3620. },
  3621. {
  3622. "name": "Manuel Garcia",
  3623. "homepage": "https://www.drupal.org/user/213194"
  3624. },
  3625. {
  3626. "name": "TR",
  3627. "homepage": "https://www.drupal.org/user/202830"
  3628. },
  3629. {
  3630. "name": "vijaycs85",
  3631. "homepage": "https://www.drupal.org/user/93488"
  3632. }
  3633. ],
  3634. "description": "Mitigates spam form submissions using the honeypot method.",
  3635. "homepage": "https://www.drupal.org/project/honeypot",
  3636. "keywords": [
  3637. "deterrent",
  3638. "form",
  3639. "honeypot",
  3640. "honeytrap",
  3641. "php",
  3642. "spam"
  3643. ],
  3644. "support": {
  3645. "source": "https://git.drupalcode.org/project/honeypot",
  3646. "issues": "https://www.drupal.org/project/issues/honeypot"
  3647. }
  3648. },
  3649. {
  3650. "name": "drupal/linkit",
  3651. "version": "5.0.0-beta11",
  3652. "source": {
  3653. "type": "git",
  3654. "url": "https://git.drupalcode.org/project/linkit.git",
  3655. "reference": "8.x-5.0-beta11"
  3656. },
  3657. "dist": {
  3658. "type": "zip",
  3659. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  3660. "reference": "8.x-5.0-beta11",
  3661. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  3662. },
  3663. "require": {
  3664. "drupal/core": "^8.7.7 || ^9"
  3665. },
  3666. "require-dev": {
  3667. "drupal/imce": "*"
  3668. },
  3669. "type": "drupal-module",
  3670. "extra": {
  3671. "drupal": {
  3672. "version": "8.x-5.0-beta11",
  3673. "datestamp": "1591971693",
  3674. "security-coverage": {
  3675. "status": "not-covered",
  3676. "message": "Beta releases are not covered by Drupal security advisories."
  3677. }
  3678. }
  3679. },
  3680. "notification-url": "https://packages.drupal.org/8/downloads",
  3681. "license": [
  3682. "GPL-2.0+"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "Emil Stjerneman",
  3687. "homepage": "https://stjerneman.com",
  3688. "email": "emil@stjerneman.com",
  3689. "role": "Maintainer"
  3690. }
  3691. ],
  3692. "description": "Linkit - Enriched linking experience",
  3693. "homepage": "http://drupal.org/project/linkit",
  3694. "support": {
  3695. "source": "http://cgit.drupalcode.org/linkit",
  3696. "issues": "http://drupal.org/project/linkit"
  3697. }
  3698. },
  3699. {
  3700. "name": "drupal/login_emailusername",
  3701. "version": "2.1.0",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  3705. "reference": "2.1.0"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  3710. "reference": "2.1.0",
  3711. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  3712. },
  3713. "require": {
  3714. "drupal/core": "^8.8 || ^9 || ^10"
  3715. },
  3716. "type": "drupal-module",
  3717. "extra": {
  3718. "drupal": {
  3719. "version": "2.1.0",
  3720. "datestamp": "1677072401",
  3721. "security-coverage": {
  3722. "status": "covered",
  3723. "message": "Covered by Drupal's security advisory policy"
  3724. }
  3725. },
  3726. "branch-alias": {
  3727. "dev-8.x-1.x": "8.1.x-dev"
  3728. }
  3729. },
  3730. "notification-url": "https://packages.drupal.org/8/downloads",
  3731. "license": [
  3732. "GPL-2.0-or-later"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "See contributors",
  3737. "homepage": "https://www.drupal.org/node/2820429/committers",
  3738. "role": "contributor"
  3739. },
  3740. {
  3741. "name": "rjjakes",
  3742. "homepage": "https://www.drupal.org/user/3457245"
  3743. },
  3744. {
  3745. "name": "VladimirAus",
  3746. "homepage": "https://www.drupal.org/user/673120"
  3747. }
  3748. ],
  3749. "description": "Login with the email as username.",
  3750. "homepage": "https://drupal.org/project/login_emailusername",
  3751. "support": {
  3752. "source": "https://git.drupalcode.org/project/login_emailusername",
  3753. "issues": "https://drupal.org/project/issues/login_emailusername"
  3754. }
  3755. },
  3756. {
  3757. "name": "drupal/maillog",
  3758. "version": "1.0.0-beta1",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://git.drupalcode.org/project/maillog.git",
  3762. "reference": "8.x-1.0-beta1"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  3767. "reference": "8.x-1.0-beta1",
  3768. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  3769. },
  3770. "require": {
  3771. "drupal/core": "^8 || ^9"
  3772. },
  3773. "type": "drupal-module",
  3774. "extra": {
  3775. "drupal": {
  3776. "version": "8.x-1.0-beta1",
  3777. "datestamp": "1600800168",
  3778. "security-coverage": {
  3779. "status": "not-covered",
  3780. "message": "Beta releases are not covered by Drupal security advisories."
  3781. }
  3782. }
  3783. },
  3784. "notification-url": "https://packages.drupal.org/8/downloads",
  3785. "license": [
  3786. "GPL-2.0-or-later"
  3787. ],
  3788. "authors": [
  3789. {
  3790. "name": "berdir",
  3791. "homepage": "https://www.drupal.org/user/214652"
  3792. },
  3793. {
  3794. "name": "damienmckenna",
  3795. "homepage": "https://www.drupal.org/user/108450"
  3796. },
  3797. {
  3798. "name": "miro_dietiker",
  3799. "homepage": "https://www.drupal.org/user/227761"
  3800. },
  3801. {
  3802. "name": "pluess",
  3803. "homepage": "https://www.drupal.org/user/84659"
  3804. }
  3805. ],
  3806. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  3807. "homepage": "https://www.drupal.org/project/maillog",
  3808. "support": {
  3809. "source": "https://git.drupalcode.org/project/maillog"
  3810. }
  3811. },
  3812. {
  3813. "name": "drupal/matomo",
  3814. "version": "1.9.0",
  3815. "source": {
  3816. "type": "git",
  3817. "url": "https://git.drupalcode.org/project/matomo.git",
  3818. "reference": "8.x-1.9"
  3819. },
  3820. "dist": {
  3821. "type": "zip",
  3822. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  3823. "reference": "8.x-1.9",
  3824. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  3825. },
  3826. "require": {
  3827. "drupal/core": "~8.5"
  3828. },
  3829. "require-dev": {
  3830. "drupal/php": "*",
  3831. "drupal/token": "*"
  3832. },
  3833. "type": "drupal-module",
  3834. "extra": {
  3835. "branch-alias": {
  3836. "dev-1.x": "1.x-dev"
  3837. },
  3838. "drupal": {
  3839. "version": "8.x-1.9",
  3840. "datestamp": "1549615080",
  3841. "security-coverage": {
  3842. "status": "covered",
  3843. "message": "Covered by Drupal's security advisory policy"
  3844. }
  3845. }
  3846. },
  3847. "notification-url": "https://packages.drupal.org/8/downloads",
  3848. "license": [
  3849. "GPL-2.0+"
  3850. ],
  3851. "authors": [
  3852. {
  3853. "name": "hass",
  3854. "homepage": "https://www.drupal.org/u/hass"
  3855. },
  3856. {
  3857. "name": "See other contributors",
  3858. "homepage": "https://www.drupal.org/node/247808/committers"
  3859. }
  3860. ],
  3861. "description": "Adds Matomo javascript tracking code to all your site's pages",
  3862. "homepage": "https://www.drupal.org/project/matomo",
  3863. "support": {
  3864. "source": "https://git.drupal.org/project/matomo.git",
  3865. "issues": "https://www.drupal.org/project/issues/matomo"
  3866. }
  3867. },
  3868. {
  3869. "name": "drupal/menu_admin_per_menu",
  3870. "version": "1.1.0",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  3874. "reference": "8.x-1.1"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  3879. "reference": "8.x-1.1",
  3880. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  3881. },
  3882. "require": {
  3883. "drupal/core": "^8 || ^9"
  3884. },
  3885. "type": "drupal-module",
  3886. "extra": {
  3887. "drupal": {
  3888. "version": "8.x-1.1",
  3889. "datestamp": "1591098397",
  3890. "security-coverage": {
  3891. "status": "covered",
  3892. "message": "Covered by Drupal's security advisory policy"
  3893. }
  3894. }
  3895. },
  3896. "notification-url": "https://packages.drupal.org/8/downloads",
  3897. "license": [
  3898. "GPL-2.0-or-later"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "JeroenT",
  3903. "homepage": "https://www.drupal.org/user/2228934"
  3904. },
  3905. {
  3906. "name": "anrikun",
  3907. "homepage": "https://www.drupal.org/user/410199"
  3908. },
  3909. {
  3910. "name": "jonas139",
  3911. "homepage": "https://www.drupal.org/user/2873401"
  3912. },
  3913. {
  3914. "name": "mkdok",
  3915. "homepage": "https://www.drupal.org/user/3308753"
  3916. }
  3917. ],
  3918. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  3919. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  3920. "support": {
  3921. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  3922. }
  3923. },
  3924. {
  3925. "name": "drupal/metatag",
  3926. "version": "1.14.0",
  3927. "source": {
  3928. "type": "git",
  3929. "url": "https://git.drupalcode.org/project/metatag.git",
  3930. "reference": "8.x-1.14"
  3931. },
  3932. "dist": {
  3933. "type": "zip",
  3934. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip",
  3935. "reference": "8.x-1.14",
  3936. "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90"
  3937. },
  3938. "require": {
  3939. "drupal/core": "^8 || ^9",
  3940. "drupal/token": "^1.0"
  3941. },
  3942. "require-dev": {
  3943. "drupal/metatag_dc": "*",
  3944. "drupal/metatag_open_graph": "*",
  3945. "drupal/page_manager": "4.x-dev",
  3946. "drupal/panelizer": "4.x-dev",
  3947. "drupal/redirect": "1.x-dev"
  3948. },
  3949. "type": "drupal-module",
  3950. "extra": {
  3951. "drupal": {
  3952. "version": "8.x-1.14",
  3953. "datestamp": "1597183852",
  3954. "security-coverage": {
  3955. "status": "covered",
  3956. "message": "Covered by Drupal's security advisory policy"
  3957. }
  3958. }
  3959. },
  3960. "notification-url": "https://packages.drupal.org/8/downloads",
  3961. "license": [
  3962. "GPL-2.0-or-later"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "See contributors",
  3967. "homepage": "https://www.drupal.org/node/640498/committers",
  3968. "role": "Developer"
  3969. },
  3970. {
  3971. "name": "Dave Reid",
  3972. "homepage": "https://www.drupal.org/user/53892"
  3973. }
  3974. ],
  3975. "description": "Manage meta tags for all entities.",
  3976. "homepage": "https://www.drupal.org/project/metatag",
  3977. "keywords": [
  3978. "Drupal",
  3979. "seo"
  3980. ],
  3981. "support": {
  3982. "source": "https://git.drupalcode.org/project/metatag",
  3983. "issues": "https://www.drupal.org/project/issues/metatag",
  3984. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3985. }
  3986. },
  3987. {
  3988. "name": "drupal/migrate_plus",
  3989. "version": "5.0.0",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  3993. "reference": "8.x-5.0"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  3998. "reference": "8.x-5.0",
  3999. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4000. },
  4001. "require": {
  4002. "drupal/core": "^8 || ^9"
  4003. },
  4004. "require-dev": {
  4005. "drupal/migrate_example_advanced_setup": "*",
  4006. "drupal/migrate_example_setup": "*"
  4007. },
  4008. "suggest": {
  4009. "ext-soap": "*",
  4010. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4011. },
  4012. "type": "drupal-module",
  4013. "extra": {
  4014. "drupal": {
  4015. "version": "8.x-5.0",
  4016. "datestamp": "1586234154",
  4017. "security-coverage": {
  4018. "status": "covered",
  4019. "message": "Covered by Drupal's security advisory policy"
  4020. }
  4021. }
  4022. },
  4023. "notification-url": "https://packages.drupal.org/8/downloads",
  4024. "license": [
  4025. "GPL-2.0+"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "Mike Ryan",
  4030. "homepage": "https://www.drupal.org/u/mikeryan",
  4031. "role": "Maintainer"
  4032. },
  4033. {
  4034. "name": "Lucas Hedding",
  4035. "homepage": "https://www.drupal.org/u/heddn",
  4036. "role": "Maintainer"
  4037. }
  4038. ],
  4039. "description": "Enhancements to core migration support.",
  4040. "homepage": "https://www.drupal.org/project/migrate_plus",
  4041. "support": {
  4042. "source": "https://git.drupalcode.org/project/migrate_plus",
  4043. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4044. "slack": "#migrate"
  4045. }
  4046. },
  4047. {
  4048. "name": "drupal/migrate_tools",
  4049. "version": "4.5.0",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4053. "reference": "8.x-4.5"
  4054. },
  4055. "dist": {
  4056. "type": "zip",
  4057. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4058. "reference": "8.x-4.5",
  4059. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4060. },
  4061. "require": {
  4062. "drupal/core": "^8 || ^9",
  4063. "drupal/migrate_plus": "^4 || ^5"
  4064. },
  4065. "require-dev": {
  4066. "drupal/migrate_plus": "4.x-dev",
  4067. "drupal/migrate_source_csv": "^2.2",
  4068. "drush/drush": "^10"
  4069. },
  4070. "type": "drupal-module",
  4071. "extra": {
  4072. "drupal": {
  4073. "version": "8.x-4.5",
  4074. "datestamp": "1574693285",
  4075. "security-coverage": {
  4076. "status": "covered",
  4077. "message": "Covered by Drupal's security advisory policy"
  4078. }
  4079. },
  4080. "drush": {
  4081. "services": {
  4082. "drush.services.yml": "^9 || ^10"
  4083. }
  4084. }
  4085. },
  4086. "notification-url": "https://packages.drupal.org/8/downloads",
  4087. "license": [
  4088. "GPL-2.0-or-later"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "heddn",
  4093. "homepage": "https://www.drupal.org/user/1463982"
  4094. },
  4095. {
  4096. "name": "mikeryan",
  4097. "homepage": "https://www.drupal.org/user/4420"
  4098. },
  4099. {
  4100. "name": "moshe weitzman",
  4101. "homepage": "https://www.drupal.org/user/23"
  4102. }
  4103. ],
  4104. "description": "Tools to assist in developing and running migrations.",
  4105. "homepage": "http://drupal.org/project/migrate_tools",
  4106. "support": {
  4107. "source": "http://cgit.drupalcode.org/migrate_tools",
  4108. "issues": "http://drupal.org/project/migrate_tools",
  4109. "irc": "irc://irc.freenode.org/drupal-migrate"
  4110. }
  4111. },
  4112. {
  4113. "name": "drupal/path_alias_xt",
  4114. "version": "dev-1.x",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4118. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4119. },
  4120. "require": {
  4121. "drupal/core": "^8.7.7 || ^9"
  4122. },
  4123. "type": "drupal-module",
  4124. "extra": {
  4125. "branch-alias": {
  4126. "dev-1.x": "1.x-dev"
  4127. },
  4128. "drupal": {
  4129. "version": "8.x-1.x-dev",
  4130. "datestamp": "1582322571",
  4131. "security-coverage": {
  4132. "status": "not-covered",
  4133. "message": "Dev releases are not covered by Drupal security advisories."
  4134. }
  4135. }
  4136. },
  4137. "notification-url": "https://packages.drupal.org/8/downloads",
  4138. "license": [
  4139. "GPL-2.0-or-later"
  4140. ],
  4141. "authors": [
  4142. {
  4143. "name": "RdeBoer",
  4144. "homepage": "https://www.drupal.org/user/404007"
  4145. },
  4146. {
  4147. "name": "adriancid",
  4148. "homepage": "https://www.drupal.org/user/1962106"
  4149. },
  4150. {
  4151. "name": "sdstyles",
  4152. "homepage": "https://www.drupal.org/user/1420228"
  4153. }
  4154. ],
  4155. "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.",
  4156. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4157. "support": {
  4158. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4159. },
  4160. "time": "2020-05-24T05:57:09+00:00"
  4161. },
  4162. {
  4163. "name": "drupal/pathauto",
  4164. "version": "1.8.0",
  4165. "source": {
  4166. "type": "git",
  4167. "url": "https://git.drupalcode.org/project/pathauto.git",
  4168. "reference": "8.x-1.8"
  4169. },
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4173. "reference": "8.x-1.8",
  4174. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4175. },
  4176. "require": {
  4177. "drupal/core": "^8.8 || ^9",
  4178. "drupal/ctools": "*",
  4179. "drupal/token": "*"
  4180. },
  4181. "suggest": {
  4182. "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."
  4183. },
  4184. "type": "drupal-module",
  4185. "extra": {
  4186. "drupal": {
  4187. "version": "8.x-1.8",
  4188. "datestamp": "1588103046",
  4189. "security-coverage": {
  4190. "status": "covered",
  4191. "message": "Covered by Drupal's security advisory policy"
  4192. }
  4193. },
  4194. "drush": {
  4195. "services": {
  4196. "drush.services.yml": "^9 || ^10"
  4197. }
  4198. }
  4199. },
  4200. "notification-url": "https://packages.drupal.org/8/downloads",
  4201. "license": [
  4202. "GPL-2.0-or-later"
  4203. ],
  4204. "authors": [
  4205. {
  4206. "name": "Berdir",
  4207. "homepage": "https://www.drupal.org/user/214652"
  4208. },
  4209. {
  4210. "name": "Dave Reid",
  4211. "homepage": "https://www.drupal.org/user/53892"
  4212. },
  4213. {
  4214. "name": "Freso",
  4215. "homepage": "https://www.drupal.org/user/27504"
  4216. },
  4217. {
  4218. "name": "greggles",
  4219. "homepage": "https://www.drupal.org/user/36762"
  4220. }
  4221. ],
  4222. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4223. "homepage": "https://www.drupal.org/project/pathauto",
  4224. "support": {
  4225. "source": "https://cgit.drupalcode.org/pathauto",
  4226. "issues": "https://www.drupal.org/project/issues/pathauto",
  4227. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4228. }
  4229. },
  4230. {
  4231. "name": "drupal/piwik",
  4232. "version": "1.4.0",
  4233. "source": {
  4234. "type": "git",
  4235. "url": "https://git.drupalcode.org/project/piwik.git",
  4236. "reference": "8.x-1.4"
  4237. },
  4238. "dist": {
  4239. "type": "zip",
  4240. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4241. "reference": "8.x-1.4",
  4242. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4243. },
  4244. "require": {
  4245. "drupal/core": "~8.0",
  4246. "drupal/matomo": "^1.0"
  4247. },
  4248. "require-dev": {
  4249. "drupal/php": "*",
  4250. "drupal/token": "*"
  4251. },
  4252. "type": "drupal-module",
  4253. "extra": {
  4254. "branch-alias": {
  4255. "dev-1.x": "1.x-dev"
  4256. },
  4257. "drupal": {
  4258. "version": "8.x-1.4",
  4259. "datestamp": "1530437786",
  4260. "security-coverage": {
  4261. "status": "covered",
  4262. "message": "Covered by Drupal's security advisory policy"
  4263. }
  4264. }
  4265. },
  4266. "notification-url": "https://packages.drupal.org/8/downloads",
  4267. "license": [
  4268. "GPL-2.0+"
  4269. ],
  4270. "authors": [
  4271. {
  4272. "name": "hass",
  4273. "homepage": "https://www.drupal.org/u/hass"
  4274. },
  4275. {
  4276. "name": "See other contributors",
  4277. "homepage": "https://www.drupal.org/node/247808/committers"
  4278. }
  4279. ],
  4280. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4281. "homepage": "https://www.drupal.org/project/piwik",
  4282. "support": {
  4283. "source": "http://git.drupal.org/project/piwik.git",
  4284. "issues": "https://www.drupal.org/project/issues/piwik"
  4285. }
  4286. },
  4287. {
  4288. "name": "drupal/profile",
  4289. "version": "1.1.0",
  4290. "source": {
  4291. "type": "git",
  4292. "url": "https://git.drupalcode.org/project/profile.git",
  4293. "reference": "8.x-1.1"
  4294. },
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4298. "reference": "8.x-1.1",
  4299. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4300. },
  4301. "require": {
  4302. "drupal/core": "^8.7.7 || ^9",
  4303. "drupal/entity": "^1.0-rc2"
  4304. },
  4305. "require-dev": {
  4306. "drupal/token": "^1.0"
  4307. },
  4308. "type": "drupal-module",
  4309. "extra": {
  4310. "drupal": {
  4311. "version": "8.x-1.1",
  4312. "datestamp": "1582134004",
  4313. "security-coverage": {
  4314. "status": "covered",
  4315. "message": "Covered by Drupal's security advisory policy"
  4316. }
  4317. }
  4318. },
  4319. "notification-url": "https://packages.drupal.org/8/downloads",
  4320. "license": [
  4321. "GPL-2.0+"
  4322. ],
  4323. "authors": [
  4324. {
  4325. "name": "bojanz",
  4326. "homepage": "https://www.drupal.org/user/86106"
  4327. },
  4328. {
  4329. "name": "daggerhart",
  4330. "homepage": "https://www.drupal.org/user/167806"
  4331. },
  4332. {
  4333. "name": "fago",
  4334. "homepage": "https://www.drupal.org/user/16747"
  4335. },
  4336. {
  4337. "name": "jsacksick",
  4338. "homepage": "https://www.drupal.org/user/972218"
  4339. },
  4340. {
  4341. "name": "mglaman",
  4342. "homepage": "https://www.drupal.org/user/2416470"
  4343. },
  4344. {
  4345. "name": "pcambra",
  4346. "homepage": "https://www.drupal.org/user/122101"
  4347. }
  4348. ],
  4349. "description": "Provides configurable user profiles.",
  4350. "homepage": "http://drupal.org/project/profile",
  4351. "support": {
  4352. "source": "https://git.drupalcode.org/project/profile"
  4353. }
  4354. },
  4355. {
  4356. "name": "drupal/redirect",
  4357. "version": "1.6.0",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://git.drupalcode.org/project/redirect.git",
  4361. "reference": "8.x-1.6"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4366. "reference": "8.x-1.6",
  4367. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4368. },
  4369. "require": {
  4370. "drupal/core": "^8.8 || ^9"
  4371. },
  4372. "type": "drupal-module",
  4373. "extra": {
  4374. "drupal": {
  4375. "version": "8.x-1.6",
  4376. "datestamp": "1589312204",
  4377. "security-coverage": {
  4378. "status": "covered",
  4379. "message": "Covered by Drupal's security advisory policy"
  4380. }
  4381. }
  4382. },
  4383. "notification-url": "https://packages.drupal.org/8/downloads",
  4384. "license": [
  4385. "GPL-2.0-or-later"
  4386. ],
  4387. "authors": [
  4388. {
  4389. "name": "Berdir",
  4390. "homepage": "https://www.drupal.org/user/214652"
  4391. },
  4392. {
  4393. "name": "Dave Reid",
  4394. "homepage": "https://www.drupal.org/user/53892"
  4395. },
  4396. {
  4397. "name": "pifagor",
  4398. "homepage": "https://www.drupal.org/user/2375692"
  4399. }
  4400. ],
  4401. "description": "Allows users to redirect from old URLs to new URLs.",
  4402. "homepage": "https://www.drupal.org/project/redirect",
  4403. "support": {
  4404. "source": "https://git.drupalcode.org/project/redirect"
  4405. }
  4406. },
  4407. {
  4408. "name": "drupal/redis",
  4409. "version": "1.4.0",
  4410. "source": {
  4411. "type": "git",
  4412. "url": "https://git.drupalcode.org/project/redis.git",
  4413. "reference": "8.x-1.4"
  4414. },
  4415. "dist": {
  4416. "type": "zip",
  4417. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  4418. "reference": "8.x-1.4",
  4419. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  4420. },
  4421. "require": {
  4422. "drupal/core": "^8.8 || ^9"
  4423. },
  4424. "suggest": {
  4425. "predis/predis": "^1.1.1"
  4426. },
  4427. "type": "drupal-module",
  4428. "extra": {
  4429. "branch-alias": {
  4430. "dev-1.x": "1.x-dev"
  4431. },
  4432. "drupal": {
  4433. "version": "8.x-1.4",
  4434. "datestamp": "1581504947",
  4435. "security-coverage": {
  4436. "status": "covered",
  4437. "message": "Covered by Drupal's security advisory policy"
  4438. }
  4439. }
  4440. },
  4441. "autoload": {
  4442. "psr-4": {
  4443. "Drupal\\redis\\": "src"
  4444. }
  4445. },
  4446. "notification-url": "https://packages.drupal.org/8/downloads",
  4447. "license": [
  4448. "GPL-2.0"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "Berdir",
  4453. "homepage": "https://www.drupal.org/user/214652"
  4454. },
  4455. {
  4456. "name": "pounard",
  4457. "homepage": "https://www.drupal.org/user/240164"
  4458. }
  4459. ],
  4460. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  4461. "homepage": "https://www.drupal.org/project/redis",
  4462. "support": {
  4463. "source": "https://git.drupalcode.org/project/redis"
  4464. }
  4465. },
  4466. {
  4467. "name": "drupal/restui",
  4468. "version": "1.18.0",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://git.drupalcode.org/project/restui.git",
  4472. "reference": "8.x-1.18"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  4477. "reference": "8.x-1.18",
  4478. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  4479. },
  4480. "require": {
  4481. "drupal/core": "^8.7.7 || ^9"
  4482. },
  4483. "type": "drupal-module",
  4484. "extra": {
  4485. "drupal": {
  4486. "version": "8.x-1.18",
  4487. "datestamp": "1586170645",
  4488. "security-coverage": {
  4489. "status": "covered",
  4490. "message": "Covered by Drupal's security advisory policy"
  4491. }
  4492. }
  4493. },
  4494. "notification-url": "https://packages.drupal.org/8/downloads",
  4495. "license": [
  4496. "GPL-2.0-or-later"
  4497. ],
  4498. "authors": [
  4499. {
  4500. "name": "-enzo-",
  4501. "homepage": "https://www.drupal.org/user/294937"
  4502. },
  4503. {
  4504. "name": "clemens.tolboom",
  4505. "homepage": "https://www.drupal.org/user/125814"
  4506. },
  4507. {
  4508. "name": "juampynr",
  4509. "homepage": "https://www.drupal.org/user/682736"
  4510. },
  4511. {
  4512. "name": "klausi",
  4513. "homepage": "https://www.drupal.org/user/262198"
  4514. }
  4515. ],
  4516. "description": "Provides a user interface to manage REST resources.",
  4517. "homepage": "https://www.drupal.org/project/restui",
  4518. "support": {
  4519. "source": "https://git.drupalcode.org/project/restui"
  4520. }
  4521. },
  4522. {
  4523. "name": "drupal/search_api",
  4524. "version": "1.17.0",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://git.drupalcode.org/project/search_api.git",
  4528. "reference": "8.x-1.17"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip",
  4533. "reference": "8.x-1.17",
  4534. "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56"
  4535. },
  4536. "require": {
  4537. "drupal/core": "^8.8 || ^9"
  4538. },
  4539. "conflict": {
  4540. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4541. },
  4542. "require-dev": {
  4543. "drupal/language_fallback_fix": "@dev",
  4544. "drupal/search_api_autocomplete": "@dev",
  4545. "drupal/search_api_db": "*"
  4546. },
  4547. "suggest": {
  4548. "drupal/facets": "Adds the ability to create faceted searches.",
  4549. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4550. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4551. },
  4552. "type": "drupal-module",
  4553. "extra": {
  4554. "drupal": {
  4555. "version": "8.x-1.17",
  4556. "datestamp": "1594482952",
  4557. "security-coverage": {
  4558. "status": "covered",
  4559. "message": "Covered by Drupal's security advisory policy"
  4560. }
  4561. },
  4562. "drush": {
  4563. "services": {
  4564. "drush.services.yml": "^9"
  4565. }
  4566. }
  4567. },
  4568. "notification-url": "https://packages.drupal.org/8/downloads",
  4569. "license": [
  4570. "GPL-2.0+"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "Thomas Seidl",
  4575. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4576. },
  4577. {
  4578. "name": "Nick Veenhof",
  4579. "homepage": "https://www.drupal.org/u/nick_vh"
  4580. },
  4581. {
  4582. "name": "See other contributors",
  4583. "homepage": "https://www.drupal.org/node/790418/committers"
  4584. }
  4585. ],
  4586. "description": "Provides a generic framework for modules offering search capabilities.",
  4587. "homepage": "https://www.drupal.org/project/search_api",
  4588. "support": {
  4589. "source": "https://git.drupalcode.org/project/search_api",
  4590. "issues": "https://www.drupal.org/project/issues/search_api",
  4591. "irc": "irc://irc.freenode.org/drupal-search-api"
  4592. }
  4593. },
  4594. {
  4595. "name": "drupal/simple_sitemap",
  4596. "version": "3.7.0",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4600. "reference": "8.x-3.7"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.7.zip",
  4605. "reference": "8.x-3.7",
  4606. "shasum": "7b23930cc71d37f332c1e836bc18c29ed2ae8cde"
  4607. },
  4608. "require": {
  4609. "drupal/core": "^8 || ^9",
  4610. "ext-xmlwriter": "*"
  4611. },
  4612. "type": "drupal-module",
  4613. "extra": {
  4614. "drupal": {
  4615. "version": "8.x-3.7",
  4616. "datestamp": "1592298918",
  4617. "security-coverage": {
  4618. "status": "covered",
  4619. "message": "Covered by Drupal's security advisory policy"
  4620. }
  4621. },
  4622. "drush": {
  4623. "services": {
  4624. "drush.services.yml": "^9 || ^10"
  4625. }
  4626. }
  4627. },
  4628. "notification-url": "https://packages.drupal.org/8/downloads",
  4629. "license": [
  4630. "GPL-2.0-or-later"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "Pawel Ginalski (gbyte.co)",
  4635. "homepage": "https://www.drupal.org/u/gbyte.co",
  4636. "email": "contact@gbyte.co",
  4637. "role": "Maintainer"
  4638. }
  4639. ],
  4640. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4641. "homepage": "https://drupal.org/project/simple_sitemap",
  4642. "support": {
  4643. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4644. "issues": "https://drupal.org/project/issues/simple_sitemap",
  4645. "irc": "irc://irc.freenode.org/drupal-contribute"
  4646. }
  4647. },
  4648. {
  4649. "name": "drupal/synonyms",
  4650. "version": "1.0.0-alpha3",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://git.drupalcode.org/project/synonyms.git",
  4654. "reference": "8.x-1.0-alpha3"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  4659. "reference": "8.x-1.0-alpha3",
  4660. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  4661. },
  4662. "require": {
  4663. "drupal/core": "^8 || ^9"
  4664. },
  4665. "type": "drupal-module",
  4666. "extra": {
  4667. "drupal": {
  4668. "version": "8.x-1.0-alpha3",
  4669. "datestamp": "1609623594",
  4670. "security-coverage": {
  4671. "status": "not-covered",
  4672. "message": "Alpha releases are not covered by Drupal security advisories."
  4673. }
  4674. }
  4675. },
  4676. "notification-url": "https://packages.drupal.org/8/downloads",
  4677. "license": [
  4678. "GPL-2.0-or-later"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "bojanz",
  4683. "homepage": "https://www.drupal.org/user/86106"
  4684. },
  4685. {
  4686. "name": "bucefal91",
  4687. "homepage": "https://www.drupal.org/user/504128"
  4688. },
  4689. {
  4690. "name": "devad",
  4691. "homepage": "https://www.drupal.org/user/2268520"
  4692. },
  4693. {
  4694. "name": "Zen",
  4695. "homepage": "https://www.drupal.org/user/21209"
  4696. }
  4697. ],
  4698. "description": "Provides synonyms feature for content entities.",
  4699. "homepage": "https://www.drupal.org/project/synonyms",
  4700. "support": {
  4701. "source": "https://git.drupalcode.org/project/synonyms"
  4702. }
  4703. },
  4704. {
  4705. "name": "drupal/token",
  4706. "version": "1.7.0",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://git.drupalcode.org/project/token.git",
  4710. "reference": "8.x-1.7"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  4715. "reference": "8.x-1.7",
  4716. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  4717. },
  4718. "require": {
  4719. "drupal/core": "^8.8 || ^9"
  4720. },
  4721. "type": "drupal-module",
  4722. "extra": {
  4723. "drupal": {
  4724. "version": "8.x-1.7",
  4725. "datestamp": "1589314266",
  4726. "security-coverage": {
  4727. "status": "covered",
  4728. "message": "Covered by Drupal's security advisory policy"
  4729. }
  4730. },
  4731. "drush": {
  4732. "services": {
  4733. "drush.services.yml": "^9 || ^10"
  4734. }
  4735. }
  4736. },
  4737. "notification-url": "https://packages.drupal.org/8/downloads",
  4738. "license": [
  4739. "GPL-2.0+"
  4740. ],
  4741. "authors": [
  4742. {
  4743. "name": "Berdir",
  4744. "homepage": "https://www.drupal.org/user/214652"
  4745. },
  4746. {
  4747. "name": "Dave Reid",
  4748. "homepage": "https://www.drupal.org/user/53892"
  4749. },
  4750. {
  4751. "name": "eaton",
  4752. "homepage": "https://www.drupal.org/user/16496"
  4753. },
  4754. {
  4755. "name": "fago",
  4756. "homepage": "https://www.drupal.org/user/16747"
  4757. },
  4758. {
  4759. "name": "greggles",
  4760. "homepage": "https://www.drupal.org/user/36762"
  4761. },
  4762. {
  4763. "name": "mikeryan",
  4764. "homepage": "https://www.drupal.org/user/4420"
  4765. }
  4766. ],
  4767. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4768. "homepage": "https://www.drupal.org/project/token",
  4769. "support": {
  4770. "source": "https://git.drupalcode.org/project/token"
  4771. }
  4772. },
  4773. {
  4774. "name": "drupal/toolbar_themes",
  4775. "version": "dev-1.x",
  4776. "source": {
  4777. "type": "git",
  4778. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  4779. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  4780. },
  4781. "require": {
  4782. "drupal/core": "*"
  4783. },
  4784. "type": "drupal-module",
  4785. "extra": {
  4786. "branch-alias": {
  4787. "dev-1.x": "1.x-dev"
  4788. },
  4789. "drupal": {
  4790. "version": "8.x-1.0-alpha4+10-dev",
  4791. "datestamp": "1510689485",
  4792. "security-coverage": {
  4793. "status": "not-covered",
  4794. "message": "Project has not opted into security advisory coverage!"
  4795. }
  4796. }
  4797. },
  4798. "notification-url": "https://packages.drupal.org/8/downloads",
  4799. "license": [
  4800. "GPL-2.0-or-later"
  4801. ],
  4802. "authors": [
  4803. {
  4804. "name": "Jeff Burnz",
  4805. "homepage": "https://www.drupal.org/user/61393"
  4806. }
  4807. ],
  4808. "description": "Apply themes to the toolbar.",
  4809. "homepage": "https://www.drupal.org/project/toolbar_themes",
  4810. "support": {
  4811. "source": "https://git.drupalcode.org/project/toolbar_themes"
  4812. },
  4813. "time": "2017-11-14T19:57:02+00:00"
  4814. },
  4815. {
  4816. "name": "drupal/translation_views",
  4817. "version": "1.0.0-alpha10",
  4818. "source": {
  4819. "type": "git",
  4820. "url": "https://git.drupalcode.org/project/translation_views.git",
  4821. "reference": "8.x-1.0-alpha10"
  4822. },
  4823. "dist": {
  4824. "type": "zip",
  4825. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  4826. "reference": "8.x-1.0-alpha10",
  4827. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  4828. },
  4829. "require": {
  4830. "drupal/core": "^8.8 || ^9"
  4831. },
  4832. "require-dev": {
  4833. "drupal/translators": "*",
  4834. "drupal/translators_content": "*"
  4835. },
  4836. "type": "drupal-module",
  4837. "extra": {
  4838. "drupal": {
  4839. "version": "8.x-1.0-alpha10",
  4840. "datestamp": "1584303687",
  4841. "security-coverage": {
  4842. "status": "not-covered",
  4843. "message": "Project has not opted into security advisory coverage!"
  4844. }
  4845. }
  4846. },
  4847. "notification-url": "https://packages.drupal.org/8/downloads",
  4848. "license": [
  4849. "GPL-2.0-or-later"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "matsbla",
  4854. "homepage": "https://www.drupal.org/user/2325394"
  4855. },
  4856. {
  4857. "name": "vlad.dancer",
  4858. "homepage": "https://www.drupal.org/user/903844"
  4859. }
  4860. ],
  4861. "description": "Create customized lists and queries of translations from your database.",
  4862. "homepage": "https://www.drupal.org/project/translation_views",
  4863. "support": {
  4864. "source": "https://git.drupalcode.org/project/translation_views"
  4865. }
  4866. },
  4867. {
  4868. "name": "drupal/upgrade_status",
  4869. "version": "3.19.0",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  4873. "reference": "8.x-3.19"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  4878. "reference": "8.x-3.19",
  4879. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  4880. },
  4881. "require": {
  4882. "drupal/core": "^8 || ^9",
  4883. "mathieuviossat/arraytotexttable": "~1.0.0",
  4884. "mglaman/phpstan-drupal": "^1.0.0",
  4885. "nikic/php-parser": "^4.0.0",
  4886. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  4887. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  4888. "webflo/drupal-finder": "^1.2"
  4889. },
  4890. "type": "drupal-module",
  4891. "extra": {
  4892. "drupal": {
  4893. "version": "8.x-3.19",
  4894. "datestamp": "1678815320",
  4895. "security-coverage": {
  4896. "status": "covered",
  4897. "message": "Covered by Drupal's security advisory policy"
  4898. }
  4899. },
  4900. "drush": {
  4901. "services": {
  4902. "drush.services.yml": "^9 || ^10"
  4903. }
  4904. }
  4905. },
  4906. "notification-url": "https://packages.drupal.org/8/downloads",
  4907. "license": [
  4908. "GPL-2.0-or-later"
  4909. ],
  4910. "authors": [
  4911. {
  4912. "name": "Gábor Hojtsy",
  4913. "homepage": "https://www.drupal.org/user/4166"
  4914. }
  4915. ],
  4916. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  4917. "homepage": "http://drupal.org/project/upgrade_status",
  4918. "support": {
  4919. "source": "https://git.drupalcode.org/project/upgrade_status"
  4920. }
  4921. },
  4922. {
  4923. "name": "drupal/url_to_video_filter",
  4924. "version": "2.0.0",
  4925. "source": {
  4926. "type": "git",
  4927. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  4928. "reference": "2.0.0"
  4929. },
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  4933. "reference": "2.0.0",
  4934. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  4935. },
  4936. "require": {
  4937. "drupal/core": "^8 || ^9"
  4938. },
  4939. "type": "drupal-module",
  4940. "extra": {
  4941. "drupal": {
  4942. "version": "2.0.0",
  4943. "datestamp": "1607298389",
  4944. "security-coverage": {
  4945. "status": "covered",
  4946. "message": "Covered by Drupal's security advisory policy"
  4947. }
  4948. }
  4949. },
  4950. "notification-url": "https://packages.drupal.org/8/downloads",
  4951. "license": [
  4952. "GPL-2.0-or-later"
  4953. ],
  4954. "authors": [
  4955. {
  4956. "name": "Jaypan",
  4957. "homepage": "https://www.drupal.org/user/324696"
  4958. }
  4959. ],
  4960. "description": "Text filter to convert URLs to embedded videos",
  4961. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  4962. "support": {
  4963. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  4964. }
  4965. },
  4966. {
  4967. "name": "drupal/views_bulk_edit",
  4968. "version": "2.7.0",
  4969. "source": {
  4970. "type": "git",
  4971. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  4972. "reference": "8.x-2.7"
  4973. },
  4974. "dist": {
  4975. "type": "zip",
  4976. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  4977. "reference": "8.x-2.7",
  4978. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  4979. },
  4980. "require": {
  4981. "drupal/core": "^8 || ^9"
  4982. },
  4983. "require-dev": {
  4984. "drupal/views_bulk_operations": "~3.0"
  4985. },
  4986. "suggest": {
  4987. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  4988. },
  4989. "type": "drupal-module",
  4990. "extra": {
  4991. "drupal": {
  4992. "version": "8.x-2.7",
  4993. "datestamp": "1664355764",
  4994. "security-coverage": {
  4995. "status": "covered",
  4996. "message": "Covered by Drupal's security advisory policy"
  4997. }
  4998. }
  4999. },
  5000. "notification-url": "https://packages.drupal.org/8/downloads",
  5001. "license": [
  5002. "GPL-2.0+"
  5003. ],
  5004. "authors": [
  5005. {
  5006. "name": "Marcin Grabias",
  5007. "homepage": "https://www.drupal.org/u/graber"
  5008. },
  5009. {
  5010. "name": "benjy",
  5011. "homepage": "https://www.drupal.org/user/1852732"
  5012. },
  5013. {
  5014. "name": "graber",
  5015. "homepage": "https://www.drupal.org/user/1599440"
  5016. },
  5017. {
  5018. "name": "grevil",
  5019. "homepage": "https://www.drupal.org/user/3668491"
  5020. },
  5021. {
  5022. "name": "joseph.olstad",
  5023. "homepage": "https://www.drupal.org/user/1321830"
  5024. }
  5025. ],
  5026. "description": "Allows bulk edition of entity field values.",
  5027. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5028. "support": {
  5029. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5030. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5031. }
  5032. },
  5033. {
  5034. "name": "drupal/views_bulk_operations",
  5035. "version": "3.9.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5039. "reference": "8.x-3.9"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5044. "reference": "8.x-3.9",
  5045. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5046. },
  5047. "require": {
  5048. "drupal/core": "^8.8 || ^9"
  5049. },
  5050. "require-dev": {
  5051. "drush/drush": "^10"
  5052. },
  5053. "suggest": {
  5054. "drush/drush": "^9 || ^10"
  5055. },
  5056. "type": "drupal-module",
  5057. "extra": {
  5058. "drupal": {
  5059. "version": "8.x-3.9",
  5060. "datestamp": "1597319021",
  5061. "security-coverage": {
  5062. "status": "covered",
  5063. "message": "Covered by Drupal's security advisory policy"
  5064. }
  5065. },
  5066. "drush": {
  5067. "services": {
  5068. "drush.services.yml": "^9 || ^10"
  5069. }
  5070. }
  5071. },
  5072. "notification-url": "https://packages.drupal.org/8/downloads",
  5073. "license": [
  5074. "GPL-2.0-or-later"
  5075. ],
  5076. "authors": [
  5077. {
  5078. "name": "Marcin Grabias",
  5079. "homepage": "https://www.drupal.org/u/graber"
  5080. },
  5081. {
  5082. "name": "Jon Pugh",
  5083. "homepage": "https://www.drupal.org/user/17028"
  5084. },
  5085. {
  5086. "name": "bojanz",
  5087. "homepage": "https://www.drupal.org/user/86106"
  5088. },
  5089. {
  5090. "name": "infojunkie",
  5091. "homepage": "https://www.drupal.org/user/48424"
  5092. },
  5093. {
  5094. "name": "joelpittet",
  5095. "homepage": "https://www.drupal.org/user/160302"
  5096. }
  5097. ],
  5098. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5099. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5100. "support": {
  5101. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5102. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5103. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5104. }
  5105. },
  5106. {
  5107. "name": "drupal/workflow",
  5108. "version": "1.3.0",
  5109. "source": {
  5110. "type": "git",
  5111. "url": "https://git.drupalcode.org/project/workflow.git",
  5112. "reference": "8.x-1.3"
  5113. },
  5114. "dist": {
  5115. "type": "zip",
  5116. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5117. "reference": "8.x-1.3",
  5118. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5119. },
  5120. "require": {
  5121. "drupal/core": "^8 || ^9"
  5122. },
  5123. "type": "drupal-module",
  5124. "extra": {
  5125. "drupal": {
  5126. "version": "8.x-1.3",
  5127. "datestamp": "1590740623",
  5128. "security-coverage": {
  5129. "status": "covered",
  5130. "message": "Covered by Drupal's security advisory policy"
  5131. }
  5132. }
  5133. },
  5134. "notification-url": "https://packages.drupal.org/8/downloads",
  5135. "license": [
  5136. "GPL-2.0-or-later"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Bastlynn",
  5141. "homepage": "https://www.drupal.org/user/275249"
  5142. },
  5143. {
  5144. "name": "eaton",
  5145. "homepage": "https://www.drupal.org/user/16496"
  5146. },
  5147. {
  5148. "name": "Heine",
  5149. "homepage": "https://www.drupal.org/user/17943"
  5150. },
  5151. {
  5152. "name": "JacobSingh",
  5153. "homepage": "https://www.drupal.org/user/68912"
  5154. },
  5155. {
  5156. "name": "johnv",
  5157. "homepage": "https://www.drupal.org/user/591042"
  5158. },
  5159. {
  5160. "name": "jvandyk",
  5161. "homepage": "https://www.drupal.org/user/2375"
  5162. },
  5163. {
  5164. "name": "mfredrickson",
  5165. "homepage": "https://www.drupal.org/user/31994"
  5166. },
  5167. {
  5168. "name": "NancyDru",
  5169. "homepage": "https://www.drupal.org/user/101412"
  5170. },
  5171. {
  5172. "name": "q0rban",
  5173. "homepage": "https://www.drupal.org/user/31022"
  5174. }
  5175. ],
  5176. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5177. "homepage": "https://www.drupal.org/project/workflow",
  5178. "support": {
  5179. "source": "https://git.drupalcode.org/project/workflow"
  5180. }
  5181. },
  5182. {
  5183. "name": "drush/drush",
  5184. "version": "9.7.3",
  5185. "source": {
  5186. "type": "git",
  5187. "url": "https://github.com/drush-ops/drush.git",
  5188. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210"
  5189. },
  5190. "dist": {
  5191. "type": "zip",
  5192. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5193. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5194. "shasum": ""
  5195. },
  5196. "require": {
  5197. "chi-teck/drupal-code-generator": "^1.28.1",
  5198. "composer/semver": "^1.4",
  5199. "consolidation/annotated-command": "^2.12",
  5200. "consolidation/config": "^1.2",
  5201. "consolidation/filter-via-dot-access-data": "^1",
  5202. "consolidation/output-formatters": "^3.3.1",
  5203. "consolidation/robo": "^1.4.6",
  5204. "consolidation/site-alias": "^3.0.0@stable",
  5205. "consolidation/site-process": "^2.0.3",
  5206. "ext-dom": "*",
  5207. "grasmash/yaml-expander": "^1.1.1",
  5208. "league/container": "~2",
  5209. "php": ">=5.6.0",
  5210. "psr/log": "~1.0",
  5211. "psy/psysh": "~0.6",
  5212. "symfony/console": "^3.4",
  5213. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5214. "symfony/finder": "^3.4 || ^4.0",
  5215. "symfony/process": "^3.4",
  5216. "symfony/var-dumper": "^3.4 || ^4.0",
  5217. "symfony/yaml": "^3.4",
  5218. "webflo/drupal-finder": "^1.1",
  5219. "webmozart/path-util": "^2.1.0"
  5220. },
  5221. "require-dev": {
  5222. "composer/installers": "^1.2",
  5223. "cweagans/composer-patches": "~1.0",
  5224. "drupal/alinks": "1.0.0",
  5225. "drupal/core-recommended": "^8.9",
  5226. "drupal/devel": "^2",
  5227. "drupal/empty_theme": "1.0",
  5228. "g1a/composer-test-scenarios": "^3",
  5229. "lox/xhprof": "dev-master",
  5230. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5231. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5232. "vlucas/phpdotenv": "^2.4"
  5233. },
  5234. "bin": [
  5235. "drush"
  5236. ],
  5237. "type": "library",
  5238. "extra": {
  5239. "installer-paths": {
  5240. "sut/core": [
  5241. "type:drupal-core"
  5242. ],
  5243. "sut/libraries/{$name}": [
  5244. "type:drupal-library"
  5245. ],
  5246. "sut/modules/unish/{$name}": [
  5247. "drupal/devel"
  5248. ],
  5249. "sut/themes/unish/{$name}": [
  5250. "drupal/empty_theme"
  5251. ],
  5252. "sut/modules/contrib/{$name}": [
  5253. "type:drupal-module"
  5254. ],
  5255. "sut/profiles/contrib/{$name}": [
  5256. "type:drupal-profile"
  5257. ],
  5258. "sut/themes/contrib/{$name}": [
  5259. "type:drupal-theme"
  5260. ],
  5261. "sut/drush/contrib/{$name}": [
  5262. "type:drupal-drush"
  5263. ]
  5264. },
  5265. "scenarios": {
  5266. "php5": {
  5267. "config": {
  5268. "platform": {
  5269. "php": "5.6.38"
  5270. }
  5271. },
  5272. "require-dev": {
  5273. "drupal/core-recommended": "~8.6.0"
  5274. }
  5275. }
  5276. },
  5277. "branch-alias": {
  5278. "dev-master": "9.x-dev"
  5279. }
  5280. },
  5281. "autoload": {
  5282. "psr-4": {
  5283. "Drush\\": "src/",
  5284. "Drush\\Internal\\": "src/internal-forks"
  5285. }
  5286. },
  5287. "notification-url": "https://packagist.org/downloads/",
  5288. "license": [
  5289. "GPL-2.0-or-later"
  5290. ],
  5291. "authors": [
  5292. {
  5293. "name": "Moshe Weitzman",
  5294. "email": "weitzman@tejasa.com"
  5295. },
  5296. {
  5297. "name": "Owen Barton",
  5298. "email": "drupal@owenbarton.com"
  5299. },
  5300. {
  5301. "name": "Greg Anderson",
  5302. "email": "greg.1.anderson@greenknowe.org"
  5303. },
  5304. {
  5305. "name": "Jonathan Araña Cruz",
  5306. "email": "jonhattan@faita.net"
  5307. },
  5308. {
  5309. "name": "Jonathan Hedstrom",
  5310. "email": "jhedstrom@gmail.com"
  5311. },
  5312. {
  5313. "name": "Christopher Gervais",
  5314. "email": "chris@ergonlogic.com"
  5315. },
  5316. {
  5317. "name": "Dave Reid",
  5318. "email": "dave@davereid.net"
  5319. },
  5320. {
  5321. "name": "Damian Lee",
  5322. "email": "damiankloip@googlemail.com"
  5323. }
  5324. ],
  5325. "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.",
  5326. "homepage": "http://www.drush.org",
  5327. "support": {
  5328. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5329. "irc": "irc://irc.freenode.org/drush",
  5330. "issues": "https://github.com/drush-ops/drush/issues",
  5331. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5332. "source": "https://github.com/drush-ops/drush/tree/9.7.3"
  5333. },
  5334. "funding": [
  5335. {
  5336. "url": "https://github.com/weitzman",
  5337. "type": "github"
  5338. }
  5339. ],
  5340. "time": "2021-03-22T17:00:48+00:00"
  5341. },
  5342. {
  5343. "name": "easyrdf/easyrdf",
  5344. "version": "0.9.1",
  5345. "source": {
  5346. "type": "git",
  5347. "url": "https://github.com/easyrdf/easyrdf.git",
  5348. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5349. },
  5350. "dist": {
  5351. "type": "zip",
  5352. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5353. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5354. "shasum": ""
  5355. },
  5356. "require": {
  5357. "ext-mbstring": "*",
  5358. "ext-pcre": "*",
  5359. "php": ">=5.2.8"
  5360. },
  5361. "require-dev": {
  5362. "phpunit/phpunit": "~3.5",
  5363. "sami/sami": "~1.4",
  5364. "squizlabs/php_codesniffer": "~1.4.3"
  5365. },
  5366. "suggest": {
  5367. "ml/json-ld": "~1.0"
  5368. },
  5369. "type": "library",
  5370. "autoload": {
  5371. "psr-0": {
  5372. "EasyRdf_": "lib/"
  5373. }
  5374. },
  5375. "notification-url": "https://packagist.org/downloads/",
  5376. "license": [
  5377. "BSD-3-Clause"
  5378. ],
  5379. "authors": [
  5380. {
  5381. "name": "Nicholas Humfrey",
  5382. "email": "njh@aelius.com",
  5383. "homepage": "http://www.aelius.com/njh/",
  5384. "role": "Developer"
  5385. },
  5386. {
  5387. "name": "Alexey Zakhlestin",
  5388. "email": "indeyets@gmail.com",
  5389. "role": "Developer"
  5390. }
  5391. ],
  5392. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5393. "homepage": "http://www.easyrdf.org/",
  5394. "keywords": [
  5395. "Linked Data",
  5396. "RDF",
  5397. "Semantic Web",
  5398. "Turtle",
  5399. "rdfa",
  5400. "sparql"
  5401. ],
  5402. "support": {
  5403. "forum": "http://groups.google.com/group/easyrdf/",
  5404. "irc": "irc://chat.freenode.net/easyrdf",
  5405. "issues": "http://github.com/njh/easyrdf/issues",
  5406. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5407. },
  5408. "time": "2015-02-27T09:45:49+00:00"
  5409. },
  5410. {
  5411. "name": "egulias/email-validator",
  5412. "version": "2.1.17",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/egulias/EmailValidator.git",
  5416. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5421. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5422. "shasum": ""
  5423. },
  5424. "require": {
  5425. "doctrine/lexer": "^1.0.1",
  5426. "php": ">=5.5",
  5427. "symfony/polyfill-intl-idn": "^1.10"
  5428. },
  5429. "require-dev": {
  5430. "dominicsayers/isemail": "^3.0.7",
  5431. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5432. "satooshi/php-coveralls": "^1.0.1"
  5433. },
  5434. "suggest": {
  5435. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5436. },
  5437. "type": "library",
  5438. "extra": {
  5439. "branch-alias": {
  5440. "dev-master": "2.1.x-dev"
  5441. }
  5442. },
  5443. "autoload": {
  5444. "psr-4": {
  5445. "Egulias\\EmailValidator\\": "EmailValidator"
  5446. }
  5447. },
  5448. "notification-url": "https://packagist.org/downloads/",
  5449. "license": [
  5450. "MIT"
  5451. ],
  5452. "authors": [
  5453. {
  5454. "name": "Eduardo Gulias Davis"
  5455. }
  5456. ],
  5457. "description": "A library for validating emails against several RFCs",
  5458. "homepage": "https://github.com/egulias/EmailValidator",
  5459. "keywords": [
  5460. "email",
  5461. "emailvalidation",
  5462. "emailvalidator",
  5463. "validation",
  5464. "validator"
  5465. ],
  5466. "support": {
  5467. "issues": "https://github.com/egulias/EmailValidator/issues",
  5468. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5469. },
  5470. "time": "2020-02-13T22:36:52+00:00"
  5471. },
  5472. {
  5473. "name": "grasmash/expander",
  5474. "version": "1.0.0",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://github.com/grasmash/expander.git",
  5478. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5479. },
  5480. "dist": {
  5481. "type": "zip",
  5482. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5483. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5484. "shasum": ""
  5485. },
  5486. "require": {
  5487. "dflydev/dot-access-data": "^1.1.0",
  5488. "php": ">=5.4"
  5489. },
  5490. "require-dev": {
  5491. "greg-1-anderson/composer-test-scenarios": "^1",
  5492. "phpunit/phpunit": "^4|^5.5.4",
  5493. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5494. "squizlabs/php_codesniffer": "^2.7"
  5495. },
  5496. "type": "library",
  5497. "extra": {
  5498. "branch-alias": {
  5499. "dev-master": "1.x-dev"
  5500. }
  5501. },
  5502. "autoload": {
  5503. "psr-4": {
  5504. "Grasmash\\Expander\\": "src/"
  5505. }
  5506. },
  5507. "notification-url": "https://packagist.org/downloads/",
  5508. "license": [
  5509. "MIT"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "Matthew Grasmick"
  5514. }
  5515. ],
  5516. "description": "Expands internal property references in PHP arrays file.",
  5517. "time": "2017-12-21T22:14:55+00:00"
  5518. },
  5519. {
  5520. "name": "grasmash/yaml-expander",
  5521. "version": "1.4.0",
  5522. "source": {
  5523. "type": "git",
  5524. "url": "https://github.com/grasmash/yaml-expander.git",
  5525. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5526. },
  5527. "dist": {
  5528. "type": "zip",
  5529. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5530. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5531. "shasum": ""
  5532. },
  5533. "require": {
  5534. "dflydev/dot-access-data": "^1.1.0",
  5535. "php": ">=5.4",
  5536. "symfony/yaml": "^2.8.11|^3|^4"
  5537. },
  5538. "require-dev": {
  5539. "greg-1-anderson/composer-test-scenarios": "^1",
  5540. "phpunit/phpunit": "^4.8|^5.5.4",
  5541. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5542. "squizlabs/php_codesniffer": "^2.7"
  5543. },
  5544. "type": "library",
  5545. "extra": {
  5546. "branch-alias": {
  5547. "dev-master": "1.x-dev"
  5548. }
  5549. },
  5550. "autoload": {
  5551. "psr-4": {
  5552. "Grasmash\\YamlExpander\\": "src/"
  5553. }
  5554. },
  5555. "notification-url": "https://packagist.org/downloads/",
  5556. "license": [
  5557. "MIT"
  5558. ],
  5559. "authors": [
  5560. {
  5561. "name": "Matthew Grasmick"
  5562. }
  5563. ],
  5564. "description": "Expands internal property references in a yaml file.",
  5565. "time": "2017-12-16T16:06:03+00:00"
  5566. },
  5567. {
  5568. "name": "guzzlehttp/guzzle",
  5569. "version": "6.5.4",
  5570. "source": {
  5571. "type": "git",
  5572. "url": "https://github.com/guzzle/guzzle.git",
  5573. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5574. },
  5575. "dist": {
  5576. "type": "zip",
  5577. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5578. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5579. "shasum": ""
  5580. },
  5581. "require": {
  5582. "ext-json": "*",
  5583. "guzzlehttp/promises": "^1.0",
  5584. "guzzlehttp/psr7": "^1.6.1",
  5585. "php": ">=5.5",
  5586. "symfony/polyfill-intl-idn": "1.17.0"
  5587. },
  5588. "require-dev": {
  5589. "ext-curl": "*",
  5590. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5591. "psr/log": "^1.1"
  5592. },
  5593. "suggest": {
  5594. "psr/log": "Required for using the Log middleware"
  5595. },
  5596. "type": "library",
  5597. "extra": {
  5598. "branch-alias": {
  5599. "dev-master": "6.5-dev"
  5600. }
  5601. },
  5602. "autoload": {
  5603. "files": [
  5604. "src/functions_include.php"
  5605. ],
  5606. "psr-4": {
  5607. "GuzzleHttp\\": "src/"
  5608. }
  5609. },
  5610. "notification-url": "https://packagist.org/downloads/",
  5611. "license": [
  5612. "MIT"
  5613. ],
  5614. "authors": [
  5615. {
  5616. "name": "Michael Dowling",
  5617. "email": "mtdowling@gmail.com",
  5618. "homepage": "https://github.com/mtdowling"
  5619. }
  5620. ],
  5621. "description": "Guzzle is a PHP HTTP client library",
  5622. "homepage": "http://guzzlephp.org/",
  5623. "keywords": [
  5624. "client",
  5625. "curl",
  5626. "framework",
  5627. "http",
  5628. "http client",
  5629. "rest",
  5630. "web service"
  5631. ],
  5632. "support": {
  5633. "issues": "https://github.com/guzzle/guzzle/issues",
  5634. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  5635. },
  5636. "time": "2020-05-25T19:35:05+00:00"
  5637. },
  5638. {
  5639. "name": "guzzlehttp/promises",
  5640. "version": "v1.3.1",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/guzzle/promises.git",
  5644. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5649. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "php": ">=5.5.0"
  5654. },
  5655. "require-dev": {
  5656. "phpunit/phpunit": "^4.0"
  5657. },
  5658. "type": "library",
  5659. "extra": {
  5660. "branch-alias": {
  5661. "dev-master": "1.4-dev"
  5662. }
  5663. },
  5664. "autoload": {
  5665. "files": [
  5666. "src/functions_include.php"
  5667. ],
  5668. "psr-4": {
  5669. "GuzzleHttp\\Promise\\": "src/"
  5670. }
  5671. },
  5672. "notification-url": "https://packagist.org/downloads/",
  5673. "license": [
  5674. "MIT"
  5675. ],
  5676. "authors": [
  5677. {
  5678. "name": "Michael Dowling",
  5679. "email": "mtdowling@gmail.com",
  5680. "homepage": "https://github.com/mtdowling"
  5681. }
  5682. ],
  5683. "description": "Guzzle promises library",
  5684. "keywords": [
  5685. "promise"
  5686. ],
  5687. "support": {
  5688. "issues": "https://github.com/guzzle/promises/issues",
  5689. "source": "https://github.com/guzzle/promises/tree/master"
  5690. },
  5691. "time": "2016-12-20T10:07:11+00:00"
  5692. },
  5693. {
  5694. "name": "guzzlehttp/psr7",
  5695. "version": "1.6.1",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://github.com/guzzle/psr7.git",
  5699. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  5704. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  5705. "shasum": ""
  5706. },
  5707. "require": {
  5708. "php": ">=5.4.0",
  5709. "psr/http-message": "~1.0",
  5710. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5711. },
  5712. "provide": {
  5713. "psr/http-message-implementation": "1.0"
  5714. },
  5715. "require-dev": {
  5716. "ext-zlib": "*",
  5717. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  5718. },
  5719. "suggest": {
  5720. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  5721. },
  5722. "type": "library",
  5723. "extra": {
  5724. "branch-alias": {
  5725. "dev-master": "1.6-dev"
  5726. }
  5727. },
  5728. "autoload": {
  5729. "files": [
  5730. "src/functions_include.php"
  5731. ],
  5732. "psr-4": {
  5733. "GuzzleHttp\\Psr7\\": "src/"
  5734. }
  5735. },
  5736. "notification-url": "https://packagist.org/downloads/",
  5737. "license": [
  5738. "MIT"
  5739. ],
  5740. "authors": [
  5741. {
  5742. "name": "Michael Dowling",
  5743. "email": "mtdowling@gmail.com",
  5744. "homepage": "https://github.com/mtdowling"
  5745. },
  5746. {
  5747. "name": "Tobias Schultze",
  5748. "homepage": "https://github.com/Tobion"
  5749. }
  5750. ],
  5751. "description": "PSR-7 message implementation that also provides common utility methods",
  5752. "keywords": [
  5753. "http",
  5754. "message",
  5755. "psr-7",
  5756. "request",
  5757. "response",
  5758. "stream",
  5759. "uri",
  5760. "url"
  5761. ],
  5762. "support": {
  5763. "issues": "https://github.com/guzzle/psr7/issues",
  5764. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  5765. },
  5766. "time": "2019-07-01T23:21:34+00:00"
  5767. },
  5768. {
  5769. "name": "kint-php/kint",
  5770. "version": "5.1.1",
  5771. "source": {
  5772. "type": "git",
  5773. "url": "https://github.com/kint-php/kint.git",
  5774. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5775. },
  5776. "dist": {
  5777. "type": "zip",
  5778. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5779. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5780. "shasum": ""
  5781. },
  5782. "require": {
  5783. "php": ">=7.1"
  5784. },
  5785. "require-dev": {
  5786. "friendsofphp/php-cs-fixer": "^3",
  5787. "phpspec/prophecy-phpunit": "^2",
  5788. "phpunit/phpunit": "^9",
  5789. "seld/phar-utils": "^1",
  5790. "symfony/finder": ">=4.0",
  5791. "vimeo/psalm": "^5"
  5792. },
  5793. "suggest": {
  5794. "kint-php/kint-helpers": "Provides extra helper functions",
  5795. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  5796. },
  5797. "type": "library",
  5798. "autoload": {
  5799. "files": [
  5800. "init.php"
  5801. ],
  5802. "psr-4": {
  5803. "Kint\\": "src/"
  5804. }
  5805. },
  5806. "notification-url": "https://packagist.org/downloads/",
  5807. "license": [
  5808. "MIT"
  5809. ],
  5810. "authors": [
  5811. {
  5812. "name": "Jonathan Vollebregt",
  5813. "homepage": "https://github.com/jnvsor"
  5814. },
  5815. {
  5816. "name": "Contributors",
  5817. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  5818. }
  5819. ],
  5820. "description": "Kint - debugging tool for PHP developers",
  5821. "homepage": "https://kint-php.github.io/kint/",
  5822. "keywords": [
  5823. "debug",
  5824. "kint",
  5825. "php"
  5826. ],
  5827. "support": {
  5828. "issues": "https://github.com/kint-php/kint/issues",
  5829. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  5830. },
  5831. "time": "2024-04-26T14:20:09+00:00"
  5832. },
  5833. {
  5834. "name": "laminas/laminas-diactoros",
  5835. "version": "1.8.7p2",
  5836. "source": {
  5837. "type": "git",
  5838. "url": "https://github.com/laminas/laminas-diactoros.git",
  5839. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  5840. },
  5841. "dist": {
  5842. "type": "zip",
  5843. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5844. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5845. "shasum": ""
  5846. },
  5847. "require": {
  5848. "laminas/laminas-zendframework-bridge": "^1.0",
  5849. "php": "^5.6 || ^7.0",
  5850. "psr/http-message": "^1.0"
  5851. },
  5852. "provide": {
  5853. "psr/http-message-implementation": "1.0"
  5854. },
  5855. "replace": {
  5856. "zendframework/zend-diactoros": "~1.8.7.0"
  5857. },
  5858. "require-dev": {
  5859. "ext-dom": "*",
  5860. "ext-libxml": "*",
  5861. "laminas/laminas-coding-standard": "~1.0",
  5862. "php-http/psr7-integration-tests": "dev-master",
  5863. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  5864. },
  5865. "type": "library",
  5866. "extra": {
  5867. "branch-alias": {
  5868. "dev-release-1.8": "1.8.x-dev"
  5869. }
  5870. },
  5871. "autoload": {
  5872. "files": [
  5873. "src/functions/create_uploaded_file.php",
  5874. "src/functions/marshal_headers_from_sapi.php",
  5875. "src/functions/marshal_method_from_sapi.php",
  5876. "src/functions/marshal_protocol_version_from_sapi.php",
  5877. "src/functions/marshal_uri_from_sapi.php",
  5878. "src/functions/normalize_server.php",
  5879. "src/functions/normalize_uploaded_files.php",
  5880. "src/functions/parse_cookie_header.php",
  5881. "src/functions/create_uploaded_file.legacy.php",
  5882. "src/functions/marshal_headers_from_sapi.legacy.php",
  5883. "src/functions/marshal_method_from_sapi.legacy.php",
  5884. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  5885. "src/functions/marshal_uri_from_sapi.legacy.php",
  5886. "src/functions/normalize_server.legacy.php",
  5887. "src/functions/normalize_uploaded_files.legacy.php",
  5888. "src/functions/parse_cookie_header.legacy.php"
  5889. ],
  5890. "psr-4": {
  5891. "Laminas\\Diactoros\\": "src/"
  5892. }
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "BSD-3-Clause"
  5897. ],
  5898. "description": "PSR HTTP Message implementations",
  5899. "homepage": "https://laminas.dev",
  5900. "keywords": [
  5901. "http",
  5902. "laminas",
  5903. "psr",
  5904. "psr-7"
  5905. ],
  5906. "support": {
  5907. "chat": "https://laminas.dev/chat",
  5908. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  5909. "forum": "https://discourse.laminas.dev",
  5910. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  5911. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  5912. "source": "https://github.com/laminas/laminas-diactoros"
  5913. },
  5914. "time": "2020-03-23T15:28:28+00:00"
  5915. },
  5916. {
  5917. "name": "laminas/laminas-escaper",
  5918. "version": "2.6.1",
  5919. "source": {
  5920. "type": "git",
  5921. "url": "https://github.com/laminas/laminas-escaper.git",
  5922. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  5923. },
  5924. "dist": {
  5925. "type": "zip",
  5926. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  5927. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  5928. "shasum": ""
  5929. },
  5930. "require": {
  5931. "laminas/laminas-zendframework-bridge": "^1.0",
  5932. "php": "^5.6 || ^7.0"
  5933. },
  5934. "replace": {
  5935. "zendframework/zend-escaper": "self.version"
  5936. },
  5937. "require-dev": {
  5938. "laminas/laminas-coding-standard": "~1.0.0",
  5939. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  5940. },
  5941. "type": "library",
  5942. "extra": {
  5943. "branch-alias": {
  5944. "dev-master": "2.6.x-dev",
  5945. "dev-develop": "2.7.x-dev"
  5946. }
  5947. },
  5948. "autoload": {
  5949. "psr-4": {
  5950. "Laminas\\Escaper\\": "src/"
  5951. }
  5952. },
  5953. "notification-url": "https://packagist.org/downloads/",
  5954. "license": [
  5955. "BSD-3-Clause"
  5956. ],
  5957. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5958. "homepage": "https://laminas.dev",
  5959. "keywords": [
  5960. "escaper",
  5961. "laminas"
  5962. ],
  5963. "support": {
  5964. "chat": "https://laminas.dev/chat",
  5965. "docs": "https://docs.laminas.dev/laminas-escaper/",
  5966. "forum": "https://discourse.laminas.dev",
  5967. "issues": "https://github.com/laminas/laminas-escaper/issues",
  5968. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  5969. "source": "https://github.com/laminas/laminas-escaper"
  5970. },
  5971. "time": "2019-12-31T16:43:30+00:00"
  5972. },
  5973. {
  5974. "name": "laminas/laminas-feed",
  5975. "version": "2.12.2",
  5976. "source": {
  5977. "type": "git",
  5978. "url": "https://github.com/laminas/laminas-feed.git",
  5979. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  5980. },
  5981. "dist": {
  5982. "type": "zip",
  5983. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5984. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5985. "shasum": ""
  5986. },
  5987. "require": {
  5988. "ext-dom": "*",
  5989. "ext-libxml": "*",
  5990. "laminas/laminas-escaper": "^2.5.2",
  5991. "laminas/laminas-stdlib": "^3.2.1",
  5992. "laminas/laminas-zendframework-bridge": "^1.0",
  5993. "php": "^5.6 || ^7.0"
  5994. },
  5995. "replace": {
  5996. "zendframework/zend-feed": "^2.12.0"
  5997. },
  5998. "require-dev": {
  5999. "laminas/laminas-cache": "^2.7.2",
  6000. "laminas/laminas-coding-standard": "~1.0.0",
  6001. "laminas/laminas-db": "^2.8.2",
  6002. "laminas/laminas-http": "^2.7",
  6003. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6004. "laminas/laminas-validator": "^2.10.1",
  6005. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6006. "psr/http-message": "^1.0.1"
  6007. },
  6008. "suggest": {
  6009. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6010. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6011. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6012. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6013. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6014. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6015. },
  6016. "type": "library",
  6017. "extra": {
  6018. "branch-alias": {
  6019. "dev-master": "2.12.x-dev",
  6020. "dev-develop": "2.13.x-dev"
  6021. }
  6022. },
  6023. "autoload": {
  6024. "psr-4": {
  6025. "Laminas\\Feed\\": "src/"
  6026. }
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "BSD-3-Clause"
  6031. ],
  6032. "description": "provides functionality for consuming RSS and Atom feeds",
  6033. "homepage": "https://laminas.dev",
  6034. "keywords": [
  6035. "feed",
  6036. "laminas"
  6037. ],
  6038. "support": {
  6039. "chat": "https://laminas.dev/chat",
  6040. "docs": "https://docs.laminas.dev/laminas-feed/",
  6041. "forum": "https://discourse.laminas.dev",
  6042. "issues": "https://github.com/laminas/laminas-feed/issues",
  6043. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6044. "source": "https://github.com/laminas/laminas-feed"
  6045. },
  6046. "time": "2020-03-29T12:36:29+00:00"
  6047. },
  6048. {
  6049. "name": "laminas/laminas-servicemanager",
  6050. "version": "3.17.0",
  6051. "source": {
  6052. "type": "git",
  6053. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6054. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6055. },
  6056. "dist": {
  6057. "type": "zip",
  6058. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6059. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6060. "shasum": ""
  6061. },
  6062. "require": {
  6063. "laminas/laminas-stdlib": "^3.2.1",
  6064. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6065. "psr/container": "^1.0"
  6066. },
  6067. "conflict": {
  6068. "ext-psr": "*",
  6069. "laminas/laminas-code": "<3.3.1",
  6070. "zendframework/zend-code": "<3.3.1",
  6071. "zendframework/zend-servicemanager": "*"
  6072. },
  6073. "provide": {
  6074. "psr/container-implementation": "^1.0"
  6075. },
  6076. "replace": {
  6077. "container-interop/container-interop": "^1.2.0"
  6078. },
  6079. "require-dev": {
  6080. "composer/package-versions-deprecated": "^1.0",
  6081. "laminas/laminas-coding-standard": "~2.4.0",
  6082. "laminas/laminas-container-config-test": "^0.7",
  6083. "laminas/laminas-dependency-plugin": "^2.1.2",
  6084. "mikey179/vfsstream": "^1.6.10@alpha",
  6085. "ocramius/proxy-manager": "^2.11",
  6086. "phpbench/phpbench": "^1.1",
  6087. "phpspec/prophecy-phpunit": "^2.0",
  6088. "phpunit/phpunit": "^9.5.5",
  6089. "psalm/plugin-phpunit": "^0.17.0",
  6090. "vimeo/psalm": "^4.8"
  6091. },
  6092. "suggest": {
  6093. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6094. },
  6095. "bin": [
  6096. "bin/generate-deps-for-config-factory",
  6097. "bin/generate-factory-for-class"
  6098. ],
  6099. "type": "library",
  6100. "autoload": {
  6101. "files": [
  6102. "src/autoload.php"
  6103. ],
  6104. "psr-4": {
  6105. "Laminas\\ServiceManager\\": "src/"
  6106. }
  6107. },
  6108. "notification-url": "https://packagist.org/downloads/",
  6109. "license": [
  6110. "BSD-3-Clause"
  6111. ],
  6112. "description": "Factory-Driven Dependency Injection Container",
  6113. "homepage": "https://laminas.dev",
  6114. "keywords": [
  6115. "PSR-11",
  6116. "dependency-injection",
  6117. "di",
  6118. "dic",
  6119. "laminas",
  6120. "service-manager",
  6121. "servicemanager"
  6122. ],
  6123. "support": {
  6124. "chat": "https://laminas.dev/chat",
  6125. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6126. "forum": "https://discourse.laminas.dev",
  6127. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6128. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6129. "source": "https://github.com/laminas/laminas-servicemanager"
  6130. },
  6131. "funding": [
  6132. {
  6133. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6134. "type": "community_bridge"
  6135. }
  6136. ],
  6137. "time": "2022-09-22T11:33:46+00:00"
  6138. },
  6139. {
  6140. "name": "laminas/laminas-stdlib",
  6141. "version": "3.2.1",
  6142. "source": {
  6143. "type": "git",
  6144. "url": "https://github.com/laminas/laminas-stdlib.git",
  6145. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6146. },
  6147. "dist": {
  6148. "type": "zip",
  6149. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6150. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6151. "shasum": ""
  6152. },
  6153. "require": {
  6154. "laminas/laminas-zendframework-bridge": "^1.0",
  6155. "php": "^5.6 || ^7.0"
  6156. },
  6157. "replace": {
  6158. "zendframework/zend-stdlib": "self.version"
  6159. },
  6160. "require-dev": {
  6161. "laminas/laminas-coding-standard": "~1.0.0",
  6162. "phpbench/phpbench": "^0.13",
  6163. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6164. },
  6165. "type": "library",
  6166. "extra": {
  6167. "branch-alias": {
  6168. "dev-master": "3.2.x-dev",
  6169. "dev-develop": "3.3.x-dev"
  6170. }
  6171. },
  6172. "autoload": {
  6173. "psr-4": {
  6174. "Laminas\\Stdlib\\": "src/"
  6175. }
  6176. },
  6177. "notification-url": "https://packagist.org/downloads/",
  6178. "license": [
  6179. "BSD-3-Clause"
  6180. ],
  6181. "description": "SPL extensions, array utilities, error handlers, and more",
  6182. "homepage": "https://laminas.dev",
  6183. "keywords": [
  6184. "laminas",
  6185. "stdlib"
  6186. ],
  6187. "support": {
  6188. "chat": "https://laminas.dev/chat",
  6189. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6190. "forum": "https://discourse.laminas.dev",
  6191. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6192. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6193. "source": "https://github.com/laminas/laminas-stdlib"
  6194. },
  6195. "time": "2019-12-31T17:51:15+00:00"
  6196. },
  6197. {
  6198. "name": "laminas/laminas-text",
  6199. "version": "2.8.1",
  6200. "source": {
  6201. "type": "git",
  6202. "url": "https://github.com/laminas/laminas-text.git",
  6203. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6204. },
  6205. "dist": {
  6206. "type": "zip",
  6207. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6208. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6209. "shasum": ""
  6210. },
  6211. "require": {
  6212. "laminas/laminas-servicemanager": "^3.4",
  6213. "laminas/laminas-stdlib": "^3.1",
  6214. "laminas/laminas-zendframework-bridge": "^1.0",
  6215. "php": "^7.3 || ~8.0.0"
  6216. },
  6217. "replace": {
  6218. "zendframework/zend-text": "^2.7.1"
  6219. },
  6220. "require-dev": {
  6221. "laminas/laminas-coding-standard": "~1.0.0",
  6222. "laminas/laminas-config": "^3.4",
  6223. "phpunit/phpunit": "^9.3"
  6224. },
  6225. "type": "library",
  6226. "autoload": {
  6227. "psr-4": {
  6228. "Laminas\\Text\\": "src/"
  6229. }
  6230. },
  6231. "notification-url": "https://packagist.org/downloads/",
  6232. "license": [
  6233. "BSD-3-Clause"
  6234. ],
  6235. "description": "Create FIGlets and text-based tables",
  6236. "homepage": "https://laminas.dev",
  6237. "keywords": [
  6238. "laminas",
  6239. "text"
  6240. ],
  6241. "support": {
  6242. "chat": "https://laminas.dev/chat",
  6243. "docs": "https://docs.laminas.dev/laminas-text/",
  6244. "forum": "https://discourse.laminas.dev",
  6245. "issues": "https://github.com/laminas/laminas-text/issues",
  6246. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6247. "source": "https://github.com/laminas/laminas-text"
  6248. },
  6249. "funding": [
  6250. {
  6251. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6252. "type": "community_bridge"
  6253. }
  6254. ],
  6255. "time": "2021-02-17T21:24:58+00:00"
  6256. },
  6257. {
  6258. "name": "laminas/laminas-zendframework-bridge",
  6259. "version": "1.0.4",
  6260. "source": {
  6261. "type": "git",
  6262. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6263. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6264. },
  6265. "dist": {
  6266. "type": "zip",
  6267. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6268. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6269. "shasum": ""
  6270. },
  6271. "require": {
  6272. "php": "^5.6 || ^7.0"
  6273. },
  6274. "require-dev": {
  6275. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6276. "squizlabs/php_codesniffer": "^3.5"
  6277. },
  6278. "type": "library",
  6279. "extra": {
  6280. "branch-alias": {
  6281. "dev-master": "1.0.x-dev",
  6282. "dev-develop": "1.1.x-dev"
  6283. },
  6284. "laminas": {
  6285. "module": "Laminas\\ZendFrameworkBridge"
  6286. }
  6287. },
  6288. "autoload": {
  6289. "files": [
  6290. "src/autoload.php"
  6291. ],
  6292. "psr-4": {
  6293. "Laminas\\ZendFrameworkBridge\\": "src//"
  6294. }
  6295. },
  6296. "notification-url": "https://packagist.org/downloads/",
  6297. "license": [
  6298. "BSD-3-Clause"
  6299. ],
  6300. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6301. "keywords": [
  6302. "ZendFramework",
  6303. "autoloading",
  6304. "laminas",
  6305. "zf"
  6306. ],
  6307. "support": {
  6308. "forum": "https://discourse.laminas.dev/",
  6309. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6310. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6311. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6312. },
  6313. "funding": [
  6314. {
  6315. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6316. "type": "community_bridge"
  6317. }
  6318. ],
  6319. "abandoned": true,
  6320. "time": "2020-05-20T16:45:56+00:00"
  6321. },
  6322. {
  6323. "name": "league/container",
  6324. "version": "2.4.1",
  6325. "source": {
  6326. "type": "git",
  6327. "url": "https://github.com/thephpleague/container.git",
  6328. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6329. },
  6330. "dist": {
  6331. "type": "zip",
  6332. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6333. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6334. "shasum": ""
  6335. },
  6336. "require": {
  6337. "container-interop/container-interop": "^1.2",
  6338. "php": "^5.4.0 || ^7.0"
  6339. },
  6340. "provide": {
  6341. "container-interop/container-interop-implementation": "^1.2",
  6342. "psr/container-implementation": "^1.0"
  6343. },
  6344. "replace": {
  6345. "orno/di": "~2.0"
  6346. },
  6347. "require-dev": {
  6348. "phpunit/phpunit": "4.*"
  6349. },
  6350. "type": "library",
  6351. "extra": {
  6352. "branch-alias": {
  6353. "dev-2.x": "2.x-dev",
  6354. "dev-1.x": "1.x-dev"
  6355. }
  6356. },
  6357. "autoload": {
  6358. "psr-4": {
  6359. "League\\Container\\": "src"
  6360. }
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "MIT"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "Phil Bennett",
  6369. "email": "philipobenito@gmail.com",
  6370. "homepage": "http://www.philipobenito.com",
  6371. "role": "Developer"
  6372. }
  6373. ],
  6374. "description": "A fast and intuitive dependency injection container.",
  6375. "homepage": "https://github.com/thephpleague/container",
  6376. "keywords": [
  6377. "container",
  6378. "dependency",
  6379. "di",
  6380. "injection",
  6381. "league",
  6382. "provider",
  6383. "service"
  6384. ],
  6385. "time": "2017-05-10T09:20:27+00:00"
  6386. },
  6387. {
  6388. "name": "masterminds/html5",
  6389. "version": "2.3.0",
  6390. "source": {
  6391. "type": "git",
  6392. "url": "https://github.com/Masterminds/html5-php.git",
  6393. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6394. },
  6395. "dist": {
  6396. "type": "zip",
  6397. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6398. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6399. "shasum": ""
  6400. },
  6401. "require": {
  6402. "ext-libxml": "*",
  6403. "php": ">=5.3.0"
  6404. },
  6405. "require-dev": {
  6406. "phpunit/phpunit": "4.*",
  6407. "sami/sami": "~2.0",
  6408. "satooshi/php-coveralls": "1.0.*"
  6409. },
  6410. "type": "library",
  6411. "extra": {
  6412. "branch-alias": {
  6413. "dev-master": "2.2-dev"
  6414. }
  6415. },
  6416. "autoload": {
  6417. "psr-4": {
  6418. "Masterminds\\": "src"
  6419. }
  6420. },
  6421. "notification-url": "https://packagist.org/downloads/",
  6422. "license": [
  6423. "MIT"
  6424. ],
  6425. "authors": [
  6426. {
  6427. "name": "Matt Butcher",
  6428. "email": "technosophos@gmail.com"
  6429. },
  6430. {
  6431. "name": "Asmir Mustafic",
  6432. "email": "goetas@gmail.com"
  6433. },
  6434. {
  6435. "name": "Matt Farina",
  6436. "email": "matt@mattfarina.com"
  6437. }
  6438. ],
  6439. "description": "An HTML5 parser and serializer.",
  6440. "homepage": "http://masterminds.github.io/html5-php",
  6441. "keywords": [
  6442. "HTML5",
  6443. "dom",
  6444. "html",
  6445. "parser",
  6446. "querypath",
  6447. "serializer",
  6448. "xml"
  6449. ],
  6450. "support": {
  6451. "issues": "https://github.com/Masterminds/html5-php/issues",
  6452. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6453. },
  6454. "time": "2017-09-04T12:26:28+00:00"
  6455. },
  6456. {
  6457. "name": "mathieuviossat/arraytotexttable",
  6458. "version": "v1.0.8",
  6459. "source": {
  6460. "type": "git",
  6461. "url": "https://github.com/viossat/arraytotexttable.git",
  6462. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6463. },
  6464. "dist": {
  6465. "type": "zip",
  6466. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6467. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6468. "shasum": ""
  6469. },
  6470. "require": {
  6471. "laminas/laminas-text": "^2.7",
  6472. "php": ">=5.3.0"
  6473. },
  6474. "type": "library",
  6475. "autoload": {
  6476. "psr-4": {
  6477. "MathieuViossat\\Util\\": "src/"
  6478. }
  6479. },
  6480. "notification-url": "https://packagist.org/downloads/",
  6481. "license": [
  6482. "MIT"
  6483. ],
  6484. "authors": [
  6485. {
  6486. "name": "Mathieu Viossat",
  6487. "email": "mathieu@viossat.fr",
  6488. "homepage": "https://viossat.fr"
  6489. }
  6490. ],
  6491. "description": "Display arrays in terminal",
  6492. "homepage": "https://github.com/viossat/arraytotexttable",
  6493. "keywords": [
  6494. "array",
  6495. "ascii",
  6496. "table",
  6497. "terminal",
  6498. "text",
  6499. "unicode"
  6500. ],
  6501. "support": {
  6502. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6503. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6504. },
  6505. "time": "2020-06-23T17:14:22+00:00"
  6506. },
  6507. {
  6508. "name": "mglaman/phpstan-drupal",
  6509. "version": "1.2.1",
  6510. "source": {
  6511. "type": "git",
  6512. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6513. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6514. },
  6515. "dist": {
  6516. "type": "zip",
  6517. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6518. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6519. "shasum": ""
  6520. },
  6521. "require": {
  6522. "php": "^7.4 || ^8.0",
  6523. "phpstan/phpstan": "^1.10.1",
  6524. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6525. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6526. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6527. "webflo/drupal-finder": "^1.2"
  6528. },
  6529. "require-dev": {
  6530. "behat/mink": "^1.8",
  6531. "composer/installers": "^1.9",
  6532. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6533. "drush/drush": "^9.6 || ^10.0 || ^11",
  6534. "phpstan/extension-installer": "^1.1",
  6535. "phpstan/phpstan-strict-rules": "^1.0",
  6536. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6537. "slevomat/coding-standard": "^7.1",
  6538. "squizlabs/php_codesniffer": "^3.3",
  6539. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6540. },
  6541. "suggest": {
  6542. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6543. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6544. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6545. },
  6546. "type": "phpstan-extension",
  6547. "extra": {
  6548. "branch-alias": {
  6549. "dev-main": "1.0-dev"
  6550. },
  6551. "installer-paths": {
  6552. "tests/fixtures/drupal/core": [
  6553. "type:drupal-core"
  6554. ],
  6555. "tests/fixtures/drupal/libraries/{$name}": [
  6556. "type:drupal-library"
  6557. ],
  6558. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6559. "type:drupal-module"
  6560. ],
  6561. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6562. "type:drupal-profile"
  6563. ],
  6564. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6565. "type:drupal-theme"
  6566. ]
  6567. },
  6568. "phpstan": {
  6569. "includes": [
  6570. "extension.neon",
  6571. "rules.neon"
  6572. ]
  6573. }
  6574. },
  6575. "autoload": {
  6576. "psr-4": {
  6577. "mglaman\\PHPStanDrupal\\": "src/"
  6578. }
  6579. },
  6580. "notification-url": "https://packagist.org/downloads/",
  6581. "license": [
  6582. "MIT"
  6583. ],
  6584. "authors": [
  6585. {
  6586. "name": "Matt Glaman",
  6587. "email": "nmd.matt@gmail.com"
  6588. }
  6589. ],
  6590. "description": "Drupal extension and rules for PHPStan",
  6591. "support": {
  6592. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6593. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  6594. },
  6595. "funding": [
  6596. {
  6597. "url": "https://github.com/mglaman",
  6598. "type": "github"
  6599. },
  6600. {
  6601. "url": "https://opencollective.com/phpstan-drupal",
  6602. "type": "open_collective"
  6603. },
  6604. {
  6605. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6606. "type": "tidelift"
  6607. }
  6608. ],
  6609. "time": "2023-11-03T13:17:28+00:00"
  6610. },
  6611. {
  6612. "name": "nikic/php-parser",
  6613. "version": "v4.4.0",
  6614. "source": {
  6615. "type": "git",
  6616. "url": "https://github.com/nikic/PHP-Parser.git",
  6617. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6618. },
  6619. "dist": {
  6620. "type": "zip",
  6621. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6622. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6623. "shasum": ""
  6624. },
  6625. "require": {
  6626. "ext-tokenizer": "*",
  6627. "php": ">=7.0"
  6628. },
  6629. "require-dev": {
  6630. "ircmaxell/php-yacc": "0.0.5",
  6631. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6632. },
  6633. "bin": [
  6634. "bin/php-parse"
  6635. ],
  6636. "type": "library",
  6637. "extra": {
  6638. "branch-alias": {
  6639. "dev-master": "4.3-dev"
  6640. }
  6641. },
  6642. "autoload": {
  6643. "psr-4": {
  6644. "PhpParser\\": "lib/PhpParser"
  6645. }
  6646. },
  6647. "notification-url": "https://packagist.org/downloads/",
  6648. "license": [
  6649. "BSD-3-Clause"
  6650. ],
  6651. "authors": [
  6652. {
  6653. "name": "Nikita Popov"
  6654. }
  6655. ],
  6656. "description": "A PHP parser written in PHP",
  6657. "keywords": [
  6658. "parser",
  6659. "php"
  6660. ],
  6661. "time": "2020-04-10T16:34:50+00:00"
  6662. },
  6663. {
  6664. "name": "paragonie/random_compat",
  6665. "version": "v9.99.99",
  6666. "source": {
  6667. "type": "git",
  6668. "url": "https://github.com/paragonie/random_compat.git",
  6669. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6670. },
  6671. "dist": {
  6672. "type": "zip",
  6673. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6674. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6675. "shasum": ""
  6676. },
  6677. "require": {
  6678. "php": "^7"
  6679. },
  6680. "require-dev": {
  6681. "phpunit/phpunit": "4.*|5.*",
  6682. "vimeo/psalm": "^1"
  6683. },
  6684. "suggest": {
  6685. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6686. },
  6687. "type": "library",
  6688. "notification-url": "https://packagist.org/downloads/",
  6689. "license": [
  6690. "MIT"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Paragon Initiative Enterprises",
  6695. "email": "security@paragonie.com",
  6696. "homepage": "https://paragonie.com"
  6697. }
  6698. ],
  6699. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6700. "keywords": [
  6701. "csprng",
  6702. "polyfill",
  6703. "pseudorandom",
  6704. "random"
  6705. ],
  6706. "support": {
  6707. "email": "info@paragonie.com",
  6708. "issues": "https://github.com/paragonie/random_compat/issues",
  6709. "source": "https://github.com/paragonie/random_compat"
  6710. },
  6711. "time": "2018-07-02T15:55:56+00:00"
  6712. },
  6713. {
  6714. "name": "pear/archive_tar",
  6715. "version": "1.4.14",
  6716. "source": {
  6717. "type": "git",
  6718. "url": "https://github.com/pear/Archive_Tar.git",
  6719. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6720. },
  6721. "dist": {
  6722. "type": "zip",
  6723. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6724. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6725. "shasum": ""
  6726. },
  6727. "require": {
  6728. "pear/pear-core-minimal": "^1.10.0alpha2",
  6729. "php": ">=5.2.0"
  6730. },
  6731. "require-dev": {
  6732. "phpunit/phpunit": "*"
  6733. },
  6734. "suggest": {
  6735. "ext-bz2": "Bz2 compression support.",
  6736. "ext-xz": "Lzma2 compression support.",
  6737. "ext-zlib": "Gzip compression support."
  6738. },
  6739. "type": "library",
  6740. "extra": {
  6741. "branch-alias": {
  6742. "dev-master": "1.4.x-dev"
  6743. }
  6744. },
  6745. "autoload": {
  6746. "psr-0": {
  6747. "Archive_Tar": ""
  6748. }
  6749. },
  6750. "notification-url": "https://packagist.org/downloads/",
  6751. "include-path": [
  6752. "./"
  6753. ],
  6754. "license": [
  6755. "BSD-3-Clause"
  6756. ],
  6757. "authors": [
  6758. {
  6759. "name": "Vincent Blavet",
  6760. "email": "vincent@phpconcept.net"
  6761. },
  6762. {
  6763. "name": "Greg Beaver",
  6764. "email": "greg@chiaraquartet.net"
  6765. },
  6766. {
  6767. "name": "Michiel Rook",
  6768. "email": "mrook@php.net"
  6769. }
  6770. ],
  6771. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6772. "homepage": "https://github.com/pear/Archive_Tar",
  6773. "keywords": [
  6774. "archive",
  6775. "tar"
  6776. ],
  6777. "support": {
  6778. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6779. "source": "https://github.com/pear/Archive_Tar"
  6780. },
  6781. "funding": [
  6782. {
  6783. "url": "https://github.com/mrook",
  6784. "type": "github"
  6785. },
  6786. {
  6787. "url": "https://www.patreon.com/michielrook",
  6788. "type": "patreon"
  6789. }
  6790. ],
  6791. "time": "2021-07-20T13:53:39+00:00"
  6792. },
  6793. {
  6794. "name": "pear/console_getopt",
  6795. "version": "v1.4.3",
  6796. "source": {
  6797. "type": "git",
  6798. "url": "https://github.com/pear/Console_Getopt.git",
  6799. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6800. },
  6801. "dist": {
  6802. "type": "zip",
  6803. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6804. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6805. "shasum": ""
  6806. },
  6807. "type": "library",
  6808. "autoload": {
  6809. "psr-0": {
  6810. "Console": "./"
  6811. }
  6812. },
  6813. "notification-url": "https://packagist.org/downloads/",
  6814. "include-path": [
  6815. "./"
  6816. ],
  6817. "license": [
  6818. "BSD-2-Clause"
  6819. ],
  6820. "authors": [
  6821. {
  6822. "name": "Andrei Zmievski",
  6823. "email": "andrei@php.net",
  6824. "role": "Lead"
  6825. },
  6826. {
  6827. "name": "Stig Bakken",
  6828. "email": "stig@php.net",
  6829. "role": "Developer"
  6830. },
  6831. {
  6832. "name": "Greg Beaver",
  6833. "email": "cellog@php.net",
  6834. "role": "Helper"
  6835. }
  6836. ],
  6837. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6838. "support": {
  6839. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6840. "source": "https://github.com/pear/Console_Getopt"
  6841. },
  6842. "time": "2019-11-20T18:27:48+00:00"
  6843. },
  6844. {
  6845. "name": "pear/pear-core-minimal",
  6846. "version": "v1.10.10",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/pear/pear-core-minimal.git",
  6850. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6855. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6856. "shasum": ""
  6857. },
  6858. "require": {
  6859. "pear/console_getopt": "~1.4",
  6860. "pear/pear_exception": "~1.0"
  6861. },
  6862. "replace": {
  6863. "rsky/pear-core-min": "self.version"
  6864. },
  6865. "type": "library",
  6866. "autoload": {
  6867. "psr-0": {
  6868. "": "src/"
  6869. }
  6870. },
  6871. "notification-url": "https://packagist.org/downloads/",
  6872. "include-path": [
  6873. "src/"
  6874. ],
  6875. "license": [
  6876. "BSD-3-Clause"
  6877. ],
  6878. "authors": [
  6879. {
  6880. "name": "Christian Weiske",
  6881. "email": "cweiske@php.net",
  6882. "role": "Lead"
  6883. }
  6884. ],
  6885. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6886. "support": {
  6887. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6888. "source": "https://github.com/pear/pear-core-minimal"
  6889. },
  6890. "time": "2019-11-19T19:00:24+00:00"
  6891. },
  6892. {
  6893. "name": "pear/pear_exception",
  6894. "version": "v1.0.1",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/pear/PEAR_Exception.git",
  6898. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6903. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": ">=4.4.0"
  6908. },
  6909. "require-dev": {
  6910. "phpunit/phpunit": "*"
  6911. },
  6912. "type": "class",
  6913. "extra": {
  6914. "branch-alias": {
  6915. "dev-master": "1.0.x-dev"
  6916. }
  6917. },
  6918. "autoload": {
  6919. "classmap": [
  6920. "PEAR/"
  6921. ]
  6922. },
  6923. "notification-url": "https://packagist.org/downloads/",
  6924. "include-path": [
  6925. "."
  6926. ],
  6927. "license": [
  6928. "BSD-2-Clause"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "Helgi Thormar",
  6933. "email": "dufuz@php.net"
  6934. },
  6935. {
  6936. "name": "Greg Beaver",
  6937. "email": "cellog@php.net"
  6938. }
  6939. ],
  6940. "description": "The PEAR Exception base class.",
  6941. "homepage": "https://github.com/pear/PEAR_Exception",
  6942. "keywords": [
  6943. "exception"
  6944. ],
  6945. "support": {
  6946. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6947. "source": "https://github.com/pear/PEAR_Exception"
  6948. },
  6949. "time": "2019-12-10T10:24:42+00:00"
  6950. },
  6951. {
  6952. "name": "phpstan/phpstan",
  6953. "version": "1.12.3",
  6954. "source": {
  6955. "type": "git",
  6956. "url": "https://github.com/phpstan/phpstan.git",
  6957. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  6958. },
  6959. "dist": {
  6960. "type": "zip",
  6961. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6962. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6963. "shasum": ""
  6964. },
  6965. "require": {
  6966. "php": "^7.2|^8.0"
  6967. },
  6968. "conflict": {
  6969. "phpstan/phpstan-shim": "*"
  6970. },
  6971. "bin": [
  6972. "phpstan",
  6973. "phpstan.phar"
  6974. ],
  6975. "type": "library",
  6976. "autoload": {
  6977. "files": [
  6978. "bootstrap.php"
  6979. ]
  6980. },
  6981. "notification-url": "https://packagist.org/downloads/",
  6982. "license": [
  6983. "MIT"
  6984. ],
  6985. "description": "PHPStan - PHP Static Analysis Tool",
  6986. "keywords": [
  6987. "dev",
  6988. "static analysis"
  6989. ],
  6990. "support": {
  6991. "docs": "https://phpstan.org/user-guide/getting-started",
  6992. "forum": "https://github.com/phpstan/phpstan/discussions",
  6993. "issues": "https://github.com/phpstan/phpstan/issues",
  6994. "security": "https://github.com/phpstan/phpstan/security/policy",
  6995. "source": "https://github.com/phpstan/phpstan-src"
  6996. },
  6997. "funding": [
  6998. {
  6999. "url": "https://github.com/ondrejmirtes",
  7000. "type": "github"
  7001. },
  7002. {
  7003. "url": "https://github.com/phpstan",
  7004. "type": "github"
  7005. }
  7006. ],
  7007. "time": "2024-09-09T08:10:35+00:00"
  7008. },
  7009. {
  7010. "name": "phpstan/phpstan-deprecation-rules",
  7011. "version": "1.2.1",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7015. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7020. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7021. "shasum": ""
  7022. },
  7023. "require": {
  7024. "php": "^7.2 || ^8.0",
  7025. "phpstan/phpstan": "^1.12"
  7026. },
  7027. "require-dev": {
  7028. "php-parallel-lint/php-parallel-lint": "^1.2",
  7029. "phpstan/phpstan-phpunit": "^1.0",
  7030. "phpunit/phpunit": "^9.5"
  7031. },
  7032. "type": "phpstan-extension",
  7033. "extra": {
  7034. "phpstan": {
  7035. "includes": [
  7036. "rules.neon"
  7037. ]
  7038. }
  7039. },
  7040. "autoload": {
  7041. "psr-4": {
  7042. "PHPStan\\": "src/"
  7043. }
  7044. },
  7045. "notification-url": "https://packagist.org/downloads/",
  7046. "license": [
  7047. "MIT"
  7048. ],
  7049. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7050. "support": {
  7051. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7052. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7053. },
  7054. "time": "2024-09-11T15:52:35+00:00"
  7055. },
  7056. {
  7057. "name": "psr/container",
  7058. "version": "1.0.0",
  7059. "source": {
  7060. "type": "git",
  7061. "url": "https://github.com/php-fig/container.git",
  7062. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7063. },
  7064. "dist": {
  7065. "type": "zip",
  7066. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7067. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7068. "shasum": ""
  7069. },
  7070. "require": {
  7071. "php": ">=5.3.0"
  7072. },
  7073. "type": "library",
  7074. "extra": {
  7075. "branch-alias": {
  7076. "dev-master": "1.0.x-dev"
  7077. }
  7078. },
  7079. "autoload": {
  7080. "psr-4": {
  7081. "Psr\\Container\\": "src/"
  7082. }
  7083. },
  7084. "notification-url": "https://packagist.org/downloads/",
  7085. "license": [
  7086. "MIT"
  7087. ],
  7088. "authors": [
  7089. {
  7090. "name": "PHP-FIG",
  7091. "homepage": "http://www.php-fig.org/"
  7092. }
  7093. ],
  7094. "description": "Common Container Interface (PHP FIG PSR-11)",
  7095. "homepage": "https://github.com/php-fig/container",
  7096. "keywords": [
  7097. "PSR-11",
  7098. "container",
  7099. "container-interface",
  7100. "container-interop",
  7101. "psr"
  7102. ],
  7103. "support": {
  7104. "issues": "https://github.com/php-fig/container/issues",
  7105. "source": "https://github.com/php-fig/container/tree/master"
  7106. },
  7107. "time": "2017-02-14T16:28:37+00:00"
  7108. },
  7109. {
  7110. "name": "psr/http-message",
  7111. "version": "1.0.1",
  7112. "source": {
  7113. "type": "git",
  7114. "url": "https://github.com/php-fig/http-message.git",
  7115. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7116. },
  7117. "dist": {
  7118. "type": "zip",
  7119. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7120. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7121. "shasum": ""
  7122. },
  7123. "require": {
  7124. "php": ">=5.3.0"
  7125. },
  7126. "type": "library",
  7127. "extra": {
  7128. "branch-alias": {
  7129. "dev-master": "1.0.x-dev"
  7130. }
  7131. },
  7132. "autoload": {
  7133. "psr-4": {
  7134. "Psr\\Http\\Message\\": "src/"
  7135. }
  7136. },
  7137. "notification-url": "https://packagist.org/downloads/",
  7138. "license": [
  7139. "MIT"
  7140. ],
  7141. "authors": [
  7142. {
  7143. "name": "PHP-FIG",
  7144. "homepage": "http://www.php-fig.org/"
  7145. }
  7146. ],
  7147. "description": "Common interface for HTTP messages",
  7148. "homepage": "https://github.com/php-fig/http-message",
  7149. "keywords": [
  7150. "http",
  7151. "http-message",
  7152. "psr",
  7153. "psr-7",
  7154. "request",
  7155. "response"
  7156. ],
  7157. "support": {
  7158. "source": "https://github.com/php-fig/http-message/tree/master"
  7159. },
  7160. "time": "2016-08-06T14:39:51+00:00"
  7161. },
  7162. {
  7163. "name": "psr/log",
  7164. "version": "1.1.3",
  7165. "source": {
  7166. "type": "git",
  7167. "url": "https://github.com/php-fig/log.git",
  7168. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7169. },
  7170. "dist": {
  7171. "type": "zip",
  7172. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7173. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7174. "shasum": ""
  7175. },
  7176. "require": {
  7177. "php": ">=5.3.0"
  7178. },
  7179. "type": "library",
  7180. "extra": {
  7181. "branch-alias": {
  7182. "dev-master": "1.1.x-dev"
  7183. }
  7184. },
  7185. "autoload": {
  7186. "psr-4": {
  7187. "Psr\\Log\\": "Psr/Log/"
  7188. }
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "PHP-FIG",
  7197. "homepage": "http://www.php-fig.org/"
  7198. }
  7199. ],
  7200. "description": "Common interface for logging libraries",
  7201. "homepage": "https://github.com/php-fig/log",
  7202. "keywords": [
  7203. "log",
  7204. "psr",
  7205. "psr-3"
  7206. ],
  7207. "support": {
  7208. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7209. },
  7210. "time": "2020-03-23T09:12:05+00:00"
  7211. },
  7212. {
  7213. "name": "psy/psysh",
  7214. "version": "v0.10.4",
  7215. "source": {
  7216. "type": "git",
  7217. "url": "https://github.com/bobthecow/psysh.git",
  7218. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7219. },
  7220. "dist": {
  7221. "type": "zip",
  7222. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7223. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7224. "shasum": ""
  7225. },
  7226. "require": {
  7227. "dnoegel/php-xdg-base-dir": "0.1.*",
  7228. "ext-json": "*",
  7229. "ext-tokenizer": "*",
  7230. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7231. "php": "^8.0 || ^7.0 || ^5.5.9",
  7232. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7233. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7234. },
  7235. "require-dev": {
  7236. "bamarni/composer-bin-plugin": "^1.2",
  7237. "hoa/console": "3.17.*"
  7238. },
  7239. "suggest": {
  7240. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7241. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7242. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7243. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7244. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7245. },
  7246. "bin": [
  7247. "bin/psysh"
  7248. ],
  7249. "type": "library",
  7250. "extra": {
  7251. "branch-alias": {
  7252. "dev-master": "0.10.x-dev"
  7253. }
  7254. },
  7255. "autoload": {
  7256. "files": [
  7257. "src/functions.php"
  7258. ],
  7259. "psr-4": {
  7260. "Psy\\": "src/"
  7261. }
  7262. },
  7263. "notification-url": "https://packagist.org/downloads/",
  7264. "license": [
  7265. "MIT"
  7266. ],
  7267. "authors": [
  7268. {
  7269. "name": "Justin Hileman",
  7270. "email": "justin@justinhileman.info",
  7271. "homepage": "http://justinhileman.com"
  7272. }
  7273. ],
  7274. "description": "An interactive shell for modern PHP.",
  7275. "homepage": "http://psysh.org",
  7276. "keywords": [
  7277. "REPL",
  7278. "console",
  7279. "interactive",
  7280. "shell"
  7281. ],
  7282. "time": "2020-05-03T19:32:03+00:00"
  7283. },
  7284. {
  7285. "name": "ralouphie/getallheaders",
  7286. "version": "3.0.3",
  7287. "source": {
  7288. "type": "git",
  7289. "url": "https://github.com/ralouphie/getallheaders.git",
  7290. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7291. },
  7292. "dist": {
  7293. "type": "zip",
  7294. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7295. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7296. "shasum": ""
  7297. },
  7298. "require": {
  7299. "php": ">=5.6"
  7300. },
  7301. "require-dev": {
  7302. "php-coveralls/php-coveralls": "^2.1",
  7303. "phpunit/phpunit": "^5 || ^6.5"
  7304. },
  7305. "type": "library",
  7306. "autoload": {
  7307. "files": [
  7308. "src/getallheaders.php"
  7309. ]
  7310. },
  7311. "notification-url": "https://packagist.org/downloads/",
  7312. "license": [
  7313. "MIT"
  7314. ],
  7315. "authors": [
  7316. {
  7317. "name": "Ralph Khattar",
  7318. "email": "ralph.khattar@gmail.com"
  7319. }
  7320. ],
  7321. "description": "A polyfill for getallheaders.",
  7322. "support": {
  7323. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7324. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7325. },
  7326. "time": "2019-03-08T08:55:37+00:00"
  7327. },
  7328. {
  7329. "name": "stack/builder",
  7330. "version": "v1.0.5",
  7331. "source": {
  7332. "type": "git",
  7333. "url": "https://github.com/stackphp/builder.git",
  7334. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7335. },
  7336. "dist": {
  7337. "type": "zip",
  7338. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7339. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7340. "shasum": ""
  7341. },
  7342. "require": {
  7343. "php": ">=5.3.0",
  7344. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7345. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7346. },
  7347. "require-dev": {
  7348. "silex/silex": "~1.0"
  7349. },
  7350. "type": "library",
  7351. "extra": {
  7352. "branch-alias": {
  7353. "dev-master": "1.0-dev"
  7354. }
  7355. },
  7356. "autoload": {
  7357. "psr-0": {
  7358. "Stack": "src"
  7359. }
  7360. },
  7361. "notification-url": "https://packagist.org/downloads/",
  7362. "license": [
  7363. "MIT"
  7364. ],
  7365. "authors": [
  7366. {
  7367. "name": "Igor Wiedler",
  7368. "email": "igor@wiedler.ch"
  7369. }
  7370. ],
  7371. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7372. "keywords": [
  7373. "stack"
  7374. ],
  7375. "support": {
  7376. "issues": "https://github.com/stackphp/builder/issues",
  7377. "source": "https://github.com/stackphp/builder/tree/master"
  7378. },
  7379. "abandoned": true,
  7380. "time": "2017-11-18T14:57:29+00:00"
  7381. },
  7382. {
  7383. "name": "symfony-cmf/routing",
  7384. "version": "1.4.1",
  7385. "source": {
  7386. "type": "git",
  7387. "url": "https://github.com/symfony-cmf/routing.git",
  7388. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7389. },
  7390. "dist": {
  7391. "type": "zip",
  7392. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7393. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7394. "shasum": ""
  7395. },
  7396. "require": {
  7397. "php": "^5.3.9|^7.0",
  7398. "psr/log": "1.*",
  7399. "symfony/http-kernel": "^2.2|3.*",
  7400. "symfony/routing": "^2.2|3.*"
  7401. },
  7402. "require-dev": {
  7403. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7404. "symfony-cmf/testing": "^1.3",
  7405. "symfony/config": "^2.2|3.*",
  7406. "symfony/dependency-injection": "^2.0.5|3.*",
  7407. "symfony/event-dispatcher": "^2.1|3.*"
  7408. },
  7409. "suggest": {
  7410. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7411. },
  7412. "type": "library",
  7413. "extra": {
  7414. "branch-alias": {
  7415. "dev-master": "1.4-dev"
  7416. }
  7417. },
  7418. "autoload": {
  7419. "psr-4": {
  7420. "Symfony\\Cmf\\Component\\Routing\\": ""
  7421. }
  7422. },
  7423. "notification-url": "https://packagist.org/downloads/",
  7424. "license": [
  7425. "MIT"
  7426. ],
  7427. "authors": [
  7428. {
  7429. "name": "Symfony CMF Community",
  7430. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7431. }
  7432. ],
  7433. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7434. "homepage": "http://cmf.symfony.com",
  7435. "keywords": [
  7436. "database",
  7437. "routing"
  7438. ],
  7439. "support": {
  7440. "issues": "https://github.com/symfony-cmf/routing/issues",
  7441. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7442. },
  7443. "time": "2017-05-09T08:10:41+00:00"
  7444. },
  7445. {
  7446. "name": "symfony/class-loader",
  7447. "version": "v3.4.41",
  7448. "source": {
  7449. "type": "git",
  7450. "url": "https://github.com/symfony/class-loader.git",
  7451. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7452. },
  7453. "dist": {
  7454. "type": "zip",
  7455. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7456. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7457. "shasum": ""
  7458. },
  7459. "require": {
  7460. "php": "^5.5.9|>=7.0.8"
  7461. },
  7462. "require-dev": {
  7463. "symfony/finder": "~2.8|~3.0|~4.0",
  7464. "symfony/polyfill-apcu": "~1.1"
  7465. },
  7466. "suggest": {
  7467. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7468. },
  7469. "type": "library",
  7470. "extra": {
  7471. "branch-alias": {
  7472. "dev-master": "3.4-dev"
  7473. }
  7474. },
  7475. "autoload": {
  7476. "psr-4": {
  7477. "Symfony\\Component\\ClassLoader\\": ""
  7478. },
  7479. "exclude-from-classmap": [
  7480. "/Tests/"
  7481. ]
  7482. },
  7483. "notification-url": "https://packagist.org/downloads/",
  7484. "license": [
  7485. "MIT"
  7486. ],
  7487. "authors": [
  7488. {
  7489. "name": "Fabien Potencier",
  7490. "email": "fabien@symfony.com"
  7491. },
  7492. {
  7493. "name": "Symfony Community",
  7494. "homepage": "https://symfony.com/contributors"
  7495. }
  7496. ],
  7497. "description": "Symfony ClassLoader Component",
  7498. "homepage": "https://symfony.com",
  7499. "support": {
  7500. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7501. },
  7502. "funding": [
  7503. {
  7504. "url": "https://symfony.com/sponsor",
  7505. "type": "custom"
  7506. },
  7507. {
  7508. "url": "https://github.com/fabpot",
  7509. "type": "github"
  7510. },
  7511. {
  7512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7513. "type": "tidelift"
  7514. }
  7515. ],
  7516. "abandoned": true,
  7517. "time": "2020-03-15T09:38:08+00:00"
  7518. },
  7519. {
  7520. "name": "symfony/console",
  7521. "version": "v3.4.41",
  7522. "source": {
  7523. "type": "git",
  7524. "url": "https://github.com/symfony/console.git",
  7525. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7526. },
  7527. "dist": {
  7528. "type": "zip",
  7529. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7530. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7531. "shasum": ""
  7532. },
  7533. "require": {
  7534. "php": "^5.5.9|>=7.0.8",
  7535. "symfony/debug": "~2.8|~3.0|~4.0",
  7536. "symfony/polyfill-mbstring": "~1.0"
  7537. },
  7538. "conflict": {
  7539. "symfony/dependency-injection": "<3.4",
  7540. "symfony/process": "<3.3"
  7541. },
  7542. "provide": {
  7543. "psr/log-implementation": "1.0"
  7544. },
  7545. "require-dev": {
  7546. "psr/log": "~1.0",
  7547. "symfony/config": "~3.3|~4.0",
  7548. "symfony/dependency-injection": "~3.4|~4.0",
  7549. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7550. "symfony/lock": "~3.4|~4.0",
  7551. "symfony/process": "~3.3|~4.0"
  7552. },
  7553. "suggest": {
  7554. "psr/log": "For using the console logger",
  7555. "symfony/event-dispatcher": "",
  7556. "symfony/lock": "",
  7557. "symfony/process": ""
  7558. },
  7559. "type": "library",
  7560. "extra": {
  7561. "branch-alias": {
  7562. "dev-master": "3.4-dev"
  7563. }
  7564. },
  7565. "autoload": {
  7566. "psr-4": {
  7567. "Symfony\\Component\\Console\\": ""
  7568. },
  7569. "exclude-from-classmap": [
  7570. "/Tests/"
  7571. ]
  7572. },
  7573. "notification-url": "https://packagist.org/downloads/",
  7574. "license": [
  7575. "MIT"
  7576. ],
  7577. "authors": [
  7578. {
  7579. "name": "Fabien Potencier",
  7580. "email": "fabien@symfony.com"
  7581. },
  7582. {
  7583. "name": "Symfony Community",
  7584. "homepage": "https://symfony.com/contributors"
  7585. }
  7586. ],
  7587. "description": "Symfony Console Component",
  7588. "homepage": "https://symfony.com",
  7589. "support": {
  7590. "source": "https://github.com/symfony/console/tree/v3.4.41"
  7591. },
  7592. "funding": [
  7593. {
  7594. "url": "https://symfony.com/sponsor",
  7595. "type": "custom"
  7596. },
  7597. {
  7598. "url": "https://github.com/fabpot",
  7599. "type": "github"
  7600. },
  7601. {
  7602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7603. "type": "tidelift"
  7604. }
  7605. ],
  7606. "time": "2020-05-30T18:58:05+00:00"
  7607. },
  7608. {
  7609. "name": "symfony/debug",
  7610. "version": "v3.4.41",
  7611. "source": {
  7612. "type": "git",
  7613. "url": "https://github.com/symfony/debug.git",
  7614. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7615. },
  7616. "dist": {
  7617. "type": "zip",
  7618. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7619. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7620. "shasum": ""
  7621. },
  7622. "require": {
  7623. "php": "^5.5.9|>=7.0.8",
  7624. "psr/log": "~1.0"
  7625. },
  7626. "conflict": {
  7627. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7628. },
  7629. "require-dev": {
  7630. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7631. },
  7632. "type": "library",
  7633. "extra": {
  7634. "branch-alias": {
  7635. "dev-master": "3.4-dev"
  7636. }
  7637. },
  7638. "autoload": {
  7639. "psr-4": {
  7640. "Symfony\\Component\\Debug\\": ""
  7641. },
  7642. "exclude-from-classmap": [
  7643. "/Tests/"
  7644. ]
  7645. },
  7646. "notification-url": "https://packagist.org/downloads/",
  7647. "license": [
  7648. "MIT"
  7649. ],
  7650. "authors": [
  7651. {
  7652. "name": "Fabien Potencier",
  7653. "email": "fabien@symfony.com"
  7654. },
  7655. {
  7656. "name": "Symfony Community",
  7657. "homepage": "https://symfony.com/contributors"
  7658. }
  7659. ],
  7660. "description": "Symfony Debug Component",
  7661. "homepage": "https://symfony.com",
  7662. "support": {
  7663. "source": "https://github.com/symfony/debug/tree/3.4"
  7664. },
  7665. "funding": [
  7666. {
  7667. "url": "https://symfony.com/sponsor",
  7668. "type": "custom"
  7669. },
  7670. {
  7671. "url": "https://github.com/fabpot",
  7672. "type": "github"
  7673. },
  7674. {
  7675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7676. "type": "tidelift"
  7677. }
  7678. ],
  7679. "abandoned": "symfony/error-handler",
  7680. "time": "2020-05-22T18:25:20+00:00"
  7681. },
  7682. {
  7683. "name": "symfony/dependency-injection",
  7684. "version": "v3.4.41",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/symfony/dependency-injection.git",
  7688. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7693. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7694. "shasum": ""
  7695. },
  7696. "require": {
  7697. "php": "^5.5.9|>=7.0.8",
  7698. "psr/container": "^1.0"
  7699. },
  7700. "conflict": {
  7701. "symfony/config": "<3.3.7",
  7702. "symfony/finder": "<3.3",
  7703. "symfony/proxy-manager-bridge": "<3.4",
  7704. "symfony/yaml": "<3.4"
  7705. },
  7706. "provide": {
  7707. "psr/container-implementation": "1.0"
  7708. },
  7709. "require-dev": {
  7710. "symfony/config": "~3.3|~4.0",
  7711. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7712. "symfony/yaml": "~3.4|~4.0"
  7713. },
  7714. "suggest": {
  7715. "symfony/config": "",
  7716. "symfony/expression-language": "For using expressions in service container configuration",
  7717. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7718. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7719. "symfony/yaml": ""
  7720. },
  7721. "type": "library",
  7722. "extra": {
  7723. "branch-alias": {
  7724. "dev-master": "3.4-dev"
  7725. }
  7726. },
  7727. "autoload": {
  7728. "psr-4": {
  7729. "Symfony\\Component\\DependencyInjection\\": ""
  7730. },
  7731. "exclude-from-classmap": [
  7732. "/Tests/"
  7733. ]
  7734. },
  7735. "notification-url": "https://packagist.org/downloads/",
  7736. "license": [
  7737. "MIT"
  7738. ],
  7739. "authors": [
  7740. {
  7741. "name": "Fabien Potencier",
  7742. "email": "fabien@symfony.com"
  7743. },
  7744. {
  7745. "name": "Symfony Community",
  7746. "homepage": "https://symfony.com/contributors"
  7747. }
  7748. ],
  7749. "description": "Symfony DependencyInjection Component",
  7750. "homepage": "https://symfony.com",
  7751. "support": {
  7752. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  7753. },
  7754. "funding": [
  7755. {
  7756. "url": "https://symfony.com/sponsor",
  7757. "type": "custom"
  7758. },
  7759. {
  7760. "url": "https://github.com/fabpot",
  7761. "type": "github"
  7762. },
  7763. {
  7764. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7765. "type": "tidelift"
  7766. }
  7767. ],
  7768. "time": "2020-05-30T21:06:01+00:00"
  7769. },
  7770. {
  7771. "name": "symfony/event-dispatcher",
  7772. "version": "v3.4.41",
  7773. "source": {
  7774. "type": "git",
  7775. "url": "https://github.com/symfony/event-dispatcher.git",
  7776. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7777. },
  7778. "dist": {
  7779. "type": "zip",
  7780. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7781. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7782. "shasum": ""
  7783. },
  7784. "require": {
  7785. "php": "^5.5.9|>=7.0.8"
  7786. },
  7787. "conflict": {
  7788. "symfony/dependency-injection": "<3.3"
  7789. },
  7790. "require-dev": {
  7791. "psr/log": "~1.0",
  7792. "symfony/config": "~2.8|~3.0|~4.0",
  7793. "symfony/dependency-injection": "~3.3|~4.0",
  7794. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7795. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7796. },
  7797. "suggest": {
  7798. "symfony/dependency-injection": "",
  7799. "symfony/http-kernel": ""
  7800. },
  7801. "type": "library",
  7802. "extra": {
  7803. "branch-alias": {
  7804. "dev-master": "3.4-dev"
  7805. }
  7806. },
  7807. "autoload": {
  7808. "psr-4": {
  7809. "Symfony\\Component\\EventDispatcher\\": ""
  7810. },
  7811. "exclude-from-classmap": [
  7812. "/Tests/"
  7813. ]
  7814. },
  7815. "notification-url": "https://packagist.org/downloads/",
  7816. "license": [
  7817. "MIT"
  7818. ],
  7819. "authors": [
  7820. {
  7821. "name": "Fabien Potencier",
  7822. "email": "fabien@symfony.com"
  7823. },
  7824. {
  7825. "name": "Symfony Community",
  7826. "homepage": "https://symfony.com/contributors"
  7827. }
  7828. ],
  7829. "description": "Symfony EventDispatcher Component",
  7830. "homepage": "https://symfony.com",
  7831. "support": {
  7832. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  7833. },
  7834. "funding": [
  7835. {
  7836. "url": "https://symfony.com/sponsor",
  7837. "type": "custom"
  7838. },
  7839. {
  7840. "url": "https://github.com/fabpot",
  7841. "type": "github"
  7842. },
  7843. {
  7844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7845. "type": "tidelift"
  7846. }
  7847. ],
  7848. "time": "2020-05-05T15:06:23+00:00"
  7849. },
  7850. {
  7851. "name": "symfony/filesystem",
  7852. "version": "v4.4.42",
  7853. "source": {
  7854. "type": "git",
  7855. "url": "https://github.com/symfony/filesystem.git",
  7856. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  7857. },
  7858. "dist": {
  7859. "type": "zip",
  7860. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  7861. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  7862. "shasum": ""
  7863. },
  7864. "require": {
  7865. "php": ">=7.1.3",
  7866. "symfony/polyfill-ctype": "~1.8",
  7867. "symfony/polyfill-php80": "^1.16"
  7868. },
  7869. "type": "library",
  7870. "autoload": {
  7871. "psr-4": {
  7872. "Symfony\\Component\\Filesystem\\": ""
  7873. },
  7874. "exclude-from-classmap": [
  7875. "/Tests/"
  7876. ]
  7877. },
  7878. "notification-url": "https://packagist.org/downloads/",
  7879. "license": [
  7880. "MIT"
  7881. ],
  7882. "authors": [
  7883. {
  7884. "name": "Fabien Potencier",
  7885. "email": "fabien@symfony.com"
  7886. },
  7887. {
  7888. "name": "Symfony Community",
  7889. "homepage": "https://symfony.com/contributors"
  7890. }
  7891. ],
  7892. "description": "Provides basic utilities for the filesystem",
  7893. "homepage": "https://symfony.com",
  7894. "support": {
  7895. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  7896. },
  7897. "funding": [
  7898. {
  7899. "url": "https://symfony.com/sponsor",
  7900. "type": "custom"
  7901. },
  7902. {
  7903. "url": "https://github.com/fabpot",
  7904. "type": "github"
  7905. },
  7906. {
  7907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7908. "type": "tidelift"
  7909. }
  7910. ],
  7911. "time": "2022-05-20T08:49:14+00:00"
  7912. },
  7913. {
  7914. "name": "symfony/finder",
  7915. "version": "v4.4.44",
  7916. "source": {
  7917. "type": "git",
  7918. "url": "https://github.com/symfony/finder.git",
  7919. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  7920. },
  7921. "dist": {
  7922. "type": "zip",
  7923. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  7924. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  7925. "shasum": ""
  7926. },
  7927. "require": {
  7928. "php": ">=7.1.3",
  7929. "symfony/polyfill-php80": "^1.16"
  7930. },
  7931. "type": "library",
  7932. "autoload": {
  7933. "psr-4": {
  7934. "Symfony\\Component\\Finder\\": ""
  7935. },
  7936. "exclude-from-classmap": [
  7937. "/Tests/"
  7938. ]
  7939. },
  7940. "notification-url": "https://packagist.org/downloads/",
  7941. "license": [
  7942. "MIT"
  7943. ],
  7944. "authors": [
  7945. {
  7946. "name": "Fabien Potencier",
  7947. "email": "fabien@symfony.com"
  7948. },
  7949. {
  7950. "name": "Symfony Community",
  7951. "homepage": "https://symfony.com/contributors"
  7952. }
  7953. ],
  7954. "description": "Finds files and directories via an intuitive fluent interface",
  7955. "homepage": "https://symfony.com",
  7956. "support": {
  7957. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  7958. },
  7959. "funding": [
  7960. {
  7961. "url": "https://symfony.com/sponsor",
  7962. "type": "custom"
  7963. },
  7964. {
  7965. "url": "https://github.com/fabpot",
  7966. "type": "github"
  7967. },
  7968. {
  7969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7970. "type": "tidelift"
  7971. }
  7972. ],
  7973. "time": "2022-07-29T07:35:46+00:00"
  7974. },
  7975. {
  7976. "name": "symfony/http-foundation",
  7977. "version": "v3.4.41",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/symfony/http-foundation.git",
  7981. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  7986. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "php": "^5.5.9|>=7.0.8",
  7991. "symfony/polyfill-mbstring": "~1.1",
  7992. "symfony/polyfill-php70": "~1.6"
  7993. },
  7994. "require-dev": {
  7995. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7996. },
  7997. "type": "library",
  7998. "extra": {
  7999. "branch-alias": {
  8000. "dev-master": "3.4-dev"
  8001. }
  8002. },
  8003. "autoload": {
  8004. "psr-4": {
  8005. "Symfony\\Component\\HttpFoundation\\": ""
  8006. },
  8007. "exclude-from-classmap": [
  8008. "/Tests/"
  8009. ]
  8010. },
  8011. "notification-url": "https://packagist.org/downloads/",
  8012. "license": [
  8013. "MIT"
  8014. ],
  8015. "authors": [
  8016. {
  8017. "name": "Fabien Potencier",
  8018. "email": "fabien@symfony.com"
  8019. },
  8020. {
  8021. "name": "Symfony Community",
  8022. "homepage": "https://symfony.com/contributors"
  8023. }
  8024. ],
  8025. "description": "Symfony HttpFoundation Component",
  8026. "homepage": "https://symfony.com",
  8027. "support": {
  8028. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8029. },
  8030. "funding": [
  8031. {
  8032. "url": "https://symfony.com/sponsor",
  8033. "type": "custom"
  8034. },
  8035. {
  8036. "url": "https://github.com/fabpot",
  8037. "type": "github"
  8038. },
  8039. {
  8040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8041. "type": "tidelift"
  8042. }
  8043. ],
  8044. "time": "2020-05-16T13:15:54+00:00"
  8045. },
  8046. {
  8047. "name": "symfony/http-kernel",
  8048. "version": "v3.4.44",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/symfony/http-kernel.git",
  8052. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8057. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "php": "^5.5.9|>=7.0.8",
  8062. "psr/log": "~1.0",
  8063. "symfony/debug": "^3.3.3|~4.0",
  8064. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8065. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8066. "symfony/polyfill-ctype": "~1.8",
  8067. "symfony/polyfill-php56": "~1.8"
  8068. },
  8069. "conflict": {
  8070. "symfony/config": "<2.8",
  8071. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8072. "symfony/var-dumper": "<3.3",
  8073. "twig/twig": "<1.34|<2.4,>=2"
  8074. },
  8075. "provide": {
  8076. "psr/log-implementation": "1.0"
  8077. },
  8078. "require-dev": {
  8079. "psr/cache": "~1.0",
  8080. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8081. "symfony/class-loader": "~2.8|~3.0",
  8082. "symfony/config": "~2.8|~3.0|~4.0",
  8083. "symfony/console": "~2.8|~3.0|~4.0",
  8084. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8085. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8086. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8087. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8088. "symfony/finder": "~2.8|~3.0|~4.0",
  8089. "symfony/process": "~2.8|~3.0|~4.0",
  8090. "symfony/routing": "~3.4|~4.0",
  8091. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8092. "symfony/templating": "~2.8|~3.0|~4.0",
  8093. "symfony/translation": "~2.8|~3.0|~4.0",
  8094. "symfony/var-dumper": "~3.3|~4.0"
  8095. },
  8096. "suggest": {
  8097. "symfony/browser-kit": "",
  8098. "symfony/config": "",
  8099. "symfony/console": "",
  8100. "symfony/dependency-injection": "",
  8101. "symfony/finder": "",
  8102. "symfony/var-dumper": ""
  8103. },
  8104. "type": "library",
  8105. "extra": {
  8106. "branch-alias": {
  8107. "dev-master": "3.4-dev"
  8108. }
  8109. },
  8110. "autoload": {
  8111. "psr-4": {
  8112. "Symfony\\Component\\HttpKernel\\": ""
  8113. },
  8114. "exclude-from-classmap": [
  8115. "/Tests/"
  8116. ]
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "Fabien Potencier",
  8125. "email": "fabien@symfony.com"
  8126. },
  8127. {
  8128. "name": "Symfony Community",
  8129. "homepage": "https://symfony.com/contributors"
  8130. }
  8131. ],
  8132. "description": "Symfony HttpKernel Component",
  8133. "homepage": "https://symfony.com",
  8134. "support": {
  8135. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8136. },
  8137. "funding": [
  8138. {
  8139. "url": "https://symfony.com/sponsor",
  8140. "type": "custom"
  8141. },
  8142. {
  8143. "url": "https://github.com/fabpot",
  8144. "type": "github"
  8145. },
  8146. {
  8147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8148. "type": "tidelift"
  8149. }
  8150. ],
  8151. "time": "2020-08-31T05:53:42+00:00"
  8152. },
  8153. {
  8154. "name": "symfony/polyfill-ctype",
  8155. "version": "v1.17.0",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/symfony/polyfill-ctype.git",
  8159. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8164. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": ">=5.3.3"
  8169. },
  8170. "suggest": {
  8171. "ext-ctype": "For best performance"
  8172. },
  8173. "type": "library",
  8174. "extra": {
  8175. "branch-alias": {
  8176. "dev-master": "1.17-dev"
  8177. }
  8178. },
  8179. "autoload": {
  8180. "files": [
  8181. "bootstrap.php"
  8182. ],
  8183. "psr-4": {
  8184. "Symfony\\Polyfill\\Ctype\\": ""
  8185. }
  8186. },
  8187. "notification-url": "https://packagist.org/downloads/",
  8188. "license": [
  8189. "MIT"
  8190. ],
  8191. "authors": [
  8192. {
  8193. "name": "Gert de Pagter",
  8194. "email": "BackEndTea@gmail.com"
  8195. },
  8196. {
  8197. "name": "Symfony Community",
  8198. "homepage": "https://symfony.com/contributors"
  8199. }
  8200. ],
  8201. "description": "Symfony polyfill for ctype functions",
  8202. "homepage": "https://symfony.com",
  8203. "keywords": [
  8204. "compatibility",
  8205. "ctype",
  8206. "polyfill",
  8207. "portable"
  8208. ],
  8209. "support": {
  8210. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8211. },
  8212. "funding": [
  8213. {
  8214. "url": "https://symfony.com/sponsor",
  8215. "type": "custom"
  8216. },
  8217. {
  8218. "url": "https://github.com/fabpot",
  8219. "type": "github"
  8220. },
  8221. {
  8222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8223. "type": "tidelift"
  8224. }
  8225. ],
  8226. "time": "2020-05-12T16:14:59+00:00"
  8227. },
  8228. {
  8229. "name": "symfony/polyfill-iconv",
  8230. "version": "v1.17.0",
  8231. "source": {
  8232. "type": "git",
  8233. "url": "https://github.com/symfony/polyfill-iconv.git",
  8234. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8235. },
  8236. "dist": {
  8237. "type": "zip",
  8238. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8239. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8240. "shasum": ""
  8241. },
  8242. "require": {
  8243. "php": ">=5.3.3"
  8244. },
  8245. "suggest": {
  8246. "ext-iconv": "For best performance"
  8247. },
  8248. "type": "library",
  8249. "extra": {
  8250. "branch-alias": {
  8251. "dev-master": "1.17-dev"
  8252. }
  8253. },
  8254. "autoload": {
  8255. "files": [
  8256. "bootstrap.php"
  8257. ],
  8258. "psr-4": {
  8259. "Symfony\\Polyfill\\Iconv\\": ""
  8260. }
  8261. },
  8262. "notification-url": "https://packagist.org/downloads/",
  8263. "license": [
  8264. "MIT"
  8265. ],
  8266. "authors": [
  8267. {
  8268. "name": "Nicolas Grekas",
  8269. "email": "p@tchwork.com"
  8270. },
  8271. {
  8272. "name": "Symfony Community",
  8273. "homepage": "https://symfony.com/contributors"
  8274. }
  8275. ],
  8276. "description": "Symfony polyfill for the Iconv extension",
  8277. "homepage": "https://symfony.com",
  8278. "keywords": [
  8279. "compatibility",
  8280. "iconv",
  8281. "polyfill",
  8282. "portable",
  8283. "shim"
  8284. ],
  8285. "support": {
  8286. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8287. },
  8288. "funding": [
  8289. {
  8290. "url": "https://symfony.com/sponsor",
  8291. "type": "custom"
  8292. },
  8293. {
  8294. "url": "https://github.com/fabpot",
  8295. "type": "github"
  8296. },
  8297. {
  8298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8299. "type": "tidelift"
  8300. }
  8301. ],
  8302. "time": "2020-05-12T16:47:27+00:00"
  8303. },
  8304. {
  8305. "name": "symfony/polyfill-intl-idn",
  8306. "version": "v1.17.0",
  8307. "source": {
  8308. "type": "git",
  8309. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8310. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8311. },
  8312. "dist": {
  8313. "type": "zip",
  8314. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8315. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8316. "shasum": ""
  8317. },
  8318. "require": {
  8319. "php": ">=5.3.3",
  8320. "symfony/polyfill-mbstring": "^1.3",
  8321. "symfony/polyfill-php72": "^1.10"
  8322. },
  8323. "suggest": {
  8324. "ext-intl": "For best performance"
  8325. },
  8326. "type": "library",
  8327. "extra": {
  8328. "branch-alias": {
  8329. "dev-master": "1.17-dev"
  8330. }
  8331. },
  8332. "autoload": {
  8333. "files": [
  8334. "bootstrap.php"
  8335. ],
  8336. "psr-4": {
  8337. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8338. }
  8339. },
  8340. "notification-url": "https://packagist.org/downloads/",
  8341. "license": [
  8342. "MIT"
  8343. ],
  8344. "authors": [
  8345. {
  8346. "name": "Laurent Bassin",
  8347. "email": "laurent@bassin.info"
  8348. },
  8349. {
  8350. "name": "Symfony Community",
  8351. "homepage": "https://symfony.com/contributors"
  8352. }
  8353. ],
  8354. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8355. "homepage": "https://symfony.com",
  8356. "keywords": [
  8357. "compatibility",
  8358. "idn",
  8359. "intl",
  8360. "polyfill",
  8361. "portable",
  8362. "shim"
  8363. ],
  8364. "support": {
  8365. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8366. },
  8367. "funding": [
  8368. {
  8369. "url": "https://symfony.com/sponsor",
  8370. "type": "custom"
  8371. },
  8372. {
  8373. "url": "https://github.com/fabpot",
  8374. "type": "github"
  8375. },
  8376. {
  8377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8378. "type": "tidelift"
  8379. }
  8380. ],
  8381. "time": "2020-05-12T16:47:27+00:00"
  8382. },
  8383. {
  8384. "name": "symfony/polyfill-mbstring",
  8385. "version": "v1.17.0",
  8386. "source": {
  8387. "type": "git",
  8388. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8389. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8390. },
  8391. "dist": {
  8392. "type": "zip",
  8393. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8394. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8395. "shasum": ""
  8396. },
  8397. "require": {
  8398. "php": ">=5.3.3"
  8399. },
  8400. "suggest": {
  8401. "ext-mbstring": "For best performance"
  8402. },
  8403. "type": "library",
  8404. "extra": {
  8405. "branch-alias": {
  8406. "dev-master": "1.17-dev"
  8407. }
  8408. },
  8409. "autoload": {
  8410. "files": [
  8411. "bootstrap.php"
  8412. ],
  8413. "psr-4": {
  8414. "Symfony\\Polyfill\\Mbstring\\": ""
  8415. }
  8416. },
  8417. "notification-url": "https://packagist.org/downloads/",
  8418. "license": [
  8419. "MIT"
  8420. ],
  8421. "authors": [
  8422. {
  8423. "name": "Nicolas Grekas",
  8424. "email": "p@tchwork.com"
  8425. },
  8426. {
  8427. "name": "Symfony Community",
  8428. "homepage": "https://symfony.com/contributors"
  8429. }
  8430. ],
  8431. "description": "Symfony polyfill for the Mbstring extension",
  8432. "homepage": "https://symfony.com",
  8433. "keywords": [
  8434. "compatibility",
  8435. "mbstring",
  8436. "polyfill",
  8437. "portable",
  8438. "shim"
  8439. ],
  8440. "support": {
  8441. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8442. },
  8443. "funding": [
  8444. {
  8445. "url": "https://symfony.com/sponsor",
  8446. "type": "custom"
  8447. },
  8448. {
  8449. "url": "https://github.com/fabpot",
  8450. "type": "github"
  8451. },
  8452. {
  8453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8454. "type": "tidelift"
  8455. }
  8456. ],
  8457. "time": "2020-05-12T16:47:27+00:00"
  8458. },
  8459. {
  8460. "name": "symfony/polyfill-php56",
  8461. "version": "v1.17.0",
  8462. "source": {
  8463. "type": "git",
  8464. "url": "https://github.com/symfony/polyfill-php56.git",
  8465. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8466. },
  8467. "dist": {
  8468. "type": "zip",
  8469. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8470. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8471. "shasum": ""
  8472. },
  8473. "require": {
  8474. "php": ">=5.3.3",
  8475. "symfony/polyfill-util": "~1.0"
  8476. },
  8477. "type": "library",
  8478. "extra": {
  8479. "branch-alias": {
  8480. "dev-master": "1.17-dev"
  8481. }
  8482. },
  8483. "autoload": {
  8484. "files": [
  8485. "bootstrap.php"
  8486. ],
  8487. "psr-4": {
  8488. "Symfony\\Polyfill\\Php56\\": ""
  8489. }
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "MIT"
  8494. ],
  8495. "authors": [
  8496. {
  8497. "name": "Nicolas Grekas",
  8498. "email": "p@tchwork.com"
  8499. },
  8500. {
  8501. "name": "Symfony Community",
  8502. "homepage": "https://symfony.com/contributors"
  8503. }
  8504. ],
  8505. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8506. "homepage": "https://symfony.com",
  8507. "keywords": [
  8508. "compatibility",
  8509. "polyfill",
  8510. "portable",
  8511. "shim"
  8512. ],
  8513. "support": {
  8514. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8515. },
  8516. "funding": [
  8517. {
  8518. "url": "https://symfony.com/sponsor",
  8519. "type": "custom"
  8520. },
  8521. {
  8522. "url": "https://github.com/fabpot",
  8523. "type": "github"
  8524. },
  8525. {
  8526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8527. "type": "tidelift"
  8528. }
  8529. ],
  8530. "time": "2020-05-12T16:47:27+00:00"
  8531. },
  8532. {
  8533. "name": "symfony/polyfill-php70",
  8534. "version": "v1.17.0",
  8535. "source": {
  8536. "type": "git",
  8537. "url": "https://github.com/symfony/polyfill-php70.git",
  8538. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8539. },
  8540. "dist": {
  8541. "type": "zip",
  8542. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8543. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8544. "shasum": ""
  8545. },
  8546. "require": {
  8547. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8548. "php": ">=5.3.3"
  8549. },
  8550. "type": "library",
  8551. "extra": {
  8552. "branch-alias": {
  8553. "dev-master": "1.17-dev"
  8554. }
  8555. },
  8556. "autoload": {
  8557. "files": [
  8558. "bootstrap.php"
  8559. ],
  8560. "psr-4": {
  8561. "Symfony\\Polyfill\\Php70\\": ""
  8562. },
  8563. "classmap": [
  8564. "Resources/stubs"
  8565. ]
  8566. },
  8567. "notification-url": "https://packagist.org/downloads/",
  8568. "license": [
  8569. "MIT"
  8570. ],
  8571. "authors": [
  8572. {
  8573. "name": "Nicolas Grekas",
  8574. "email": "p@tchwork.com"
  8575. },
  8576. {
  8577. "name": "Symfony Community",
  8578. "homepage": "https://symfony.com/contributors"
  8579. }
  8580. ],
  8581. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8582. "homepage": "https://symfony.com",
  8583. "keywords": [
  8584. "compatibility",
  8585. "polyfill",
  8586. "portable",
  8587. "shim"
  8588. ],
  8589. "support": {
  8590. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  8591. },
  8592. "funding": [
  8593. {
  8594. "url": "https://symfony.com/sponsor",
  8595. "type": "custom"
  8596. },
  8597. {
  8598. "url": "https://github.com/fabpot",
  8599. "type": "github"
  8600. },
  8601. {
  8602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8603. "type": "tidelift"
  8604. }
  8605. ],
  8606. "time": "2020-05-12T16:47:27+00:00"
  8607. },
  8608. {
  8609. "name": "symfony/polyfill-php72",
  8610. "version": "v1.17.0",
  8611. "source": {
  8612. "type": "git",
  8613. "url": "https://github.com/symfony/polyfill-php72.git",
  8614. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8615. },
  8616. "dist": {
  8617. "type": "zip",
  8618. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8619. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8620. "shasum": ""
  8621. },
  8622. "require": {
  8623. "php": ">=5.3.3"
  8624. },
  8625. "type": "library",
  8626. "extra": {
  8627. "branch-alias": {
  8628. "dev-master": "1.17-dev"
  8629. }
  8630. },
  8631. "autoload": {
  8632. "files": [
  8633. "bootstrap.php"
  8634. ],
  8635. "psr-4": {
  8636. "Symfony\\Polyfill\\Php72\\": ""
  8637. }
  8638. },
  8639. "notification-url": "https://packagist.org/downloads/",
  8640. "license": [
  8641. "MIT"
  8642. ],
  8643. "authors": [
  8644. {
  8645. "name": "Nicolas Grekas",
  8646. "email": "p@tchwork.com"
  8647. },
  8648. {
  8649. "name": "Symfony Community",
  8650. "homepage": "https://symfony.com/contributors"
  8651. }
  8652. ],
  8653. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8654. "homepage": "https://symfony.com",
  8655. "keywords": [
  8656. "compatibility",
  8657. "polyfill",
  8658. "portable",
  8659. "shim"
  8660. ],
  8661. "support": {
  8662. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  8663. },
  8664. "funding": [
  8665. {
  8666. "url": "https://symfony.com/sponsor",
  8667. "type": "custom"
  8668. },
  8669. {
  8670. "url": "https://github.com/fabpot",
  8671. "type": "github"
  8672. },
  8673. {
  8674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8675. "type": "tidelift"
  8676. }
  8677. ],
  8678. "time": "2020-05-12T16:47:27+00:00"
  8679. },
  8680. {
  8681. "name": "symfony/polyfill-php80",
  8682. "version": "v1.31.0",
  8683. "source": {
  8684. "type": "git",
  8685. "url": "https://github.com/symfony/polyfill-php80.git",
  8686. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8687. },
  8688. "dist": {
  8689. "type": "zip",
  8690. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8691. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8692. "shasum": ""
  8693. },
  8694. "require": {
  8695. "php": ">=7.2"
  8696. },
  8697. "type": "library",
  8698. "extra": {
  8699. "thanks": {
  8700. "name": "symfony/polyfill",
  8701. "url": "https://github.com/symfony/polyfill"
  8702. }
  8703. },
  8704. "autoload": {
  8705. "files": [
  8706. "bootstrap.php"
  8707. ],
  8708. "psr-4": {
  8709. "Symfony\\Polyfill\\Php80\\": ""
  8710. },
  8711. "classmap": [
  8712. "Resources/stubs"
  8713. ]
  8714. },
  8715. "notification-url": "https://packagist.org/downloads/",
  8716. "license": [
  8717. "MIT"
  8718. ],
  8719. "authors": [
  8720. {
  8721. "name": "Ion Bazan",
  8722. "email": "ion.bazan@gmail.com"
  8723. },
  8724. {
  8725. "name": "Nicolas Grekas",
  8726. "email": "p@tchwork.com"
  8727. },
  8728. {
  8729. "name": "Symfony Community",
  8730. "homepage": "https://symfony.com/contributors"
  8731. }
  8732. ],
  8733. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8734. "homepage": "https://symfony.com",
  8735. "keywords": [
  8736. "compatibility",
  8737. "polyfill",
  8738. "portable",
  8739. "shim"
  8740. ],
  8741. "support": {
  8742. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8743. },
  8744. "funding": [
  8745. {
  8746. "url": "https://symfony.com/sponsor",
  8747. "type": "custom"
  8748. },
  8749. {
  8750. "url": "https://github.com/fabpot",
  8751. "type": "github"
  8752. },
  8753. {
  8754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8755. "type": "tidelift"
  8756. }
  8757. ],
  8758. "time": "2024-09-09T11:45:10+00:00"
  8759. },
  8760. {
  8761. "name": "symfony/polyfill-util",
  8762. "version": "v1.17.0",
  8763. "source": {
  8764. "type": "git",
  8765. "url": "https://github.com/symfony/polyfill-util.git",
  8766. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8767. },
  8768. "dist": {
  8769. "type": "zip",
  8770. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8771. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8772. "shasum": ""
  8773. },
  8774. "require": {
  8775. "php": ">=5.3.3"
  8776. },
  8777. "type": "library",
  8778. "extra": {
  8779. "branch-alias": {
  8780. "dev-master": "1.17-dev"
  8781. }
  8782. },
  8783. "autoload": {
  8784. "psr-4": {
  8785. "Symfony\\Polyfill\\Util\\": ""
  8786. }
  8787. },
  8788. "notification-url": "https://packagist.org/downloads/",
  8789. "license": [
  8790. "MIT"
  8791. ],
  8792. "authors": [
  8793. {
  8794. "name": "Nicolas Grekas",
  8795. "email": "p@tchwork.com"
  8796. },
  8797. {
  8798. "name": "Symfony Community",
  8799. "homepage": "https://symfony.com/contributors"
  8800. }
  8801. ],
  8802. "description": "Symfony utilities for portability of PHP codes",
  8803. "homepage": "https://symfony.com",
  8804. "keywords": [
  8805. "compat",
  8806. "compatibility",
  8807. "polyfill",
  8808. "shim"
  8809. ],
  8810. "support": {
  8811. "source": "https://github.com/symfony/polyfill-util/tree/master"
  8812. },
  8813. "funding": [
  8814. {
  8815. "url": "https://symfony.com/sponsor",
  8816. "type": "custom"
  8817. },
  8818. {
  8819. "url": "https://github.com/fabpot",
  8820. "type": "github"
  8821. },
  8822. {
  8823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8824. "type": "tidelift"
  8825. }
  8826. ],
  8827. "time": "2020-05-12T16:14:59+00:00"
  8828. },
  8829. {
  8830. "name": "symfony/process",
  8831. "version": "v3.4.41",
  8832. "source": {
  8833. "type": "git",
  8834. "url": "https://github.com/symfony/process.git",
  8835. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  8836. },
  8837. "dist": {
  8838. "type": "zip",
  8839. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8840. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8841. "shasum": ""
  8842. },
  8843. "require": {
  8844. "php": "^5.5.9|>=7.0.8"
  8845. },
  8846. "type": "library",
  8847. "extra": {
  8848. "branch-alias": {
  8849. "dev-master": "3.4-dev"
  8850. }
  8851. },
  8852. "autoload": {
  8853. "psr-4": {
  8854. "Symfony\\Component\\Process\\": ""
  8855. },
  8856. "exclude-from-classmap": [
  8857. "/Tests/"
  8858. ]
  8859. },
  8860. "notification-url": "https://packagist.org/downloads/",
  8861. "license": [
  8862. "MIT"
  8863. ],
  8864. "authors": [
  8865. {
  8866. "name": "Fabien Potencier",
  8867. "email": "fabien@symfony.com"
  8868. },
  8869. {
  8870. "name": "Symfony Community",
  8871. "homepage": "https://symfony.com/contributors"
  8872. }
  8873. ],
  8874. "description": "Symfony Process Component",
  8875. "homepage": "https://symfony.com",
  8876. "support": {
  8877. "source": "https://github.com/symfony/process/tree/v3.4.41"
  8878. },
  8879. "funding": [
  8880. {
  8881. "url": "https://symfony.com/sponsor",
  8882. "type": "custom"
  8883. },
  8884. {
  8885. "url": "https://github.com/fabpot",
  8886. "type": "github"
  8887. },
  8888. {
  8889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8890. "type": "tidelift"
  8891. }
  8892. ],
  8893. "time": "2020-05-23T17:05:51+00:00"
  8894. },
  8895. {
  8896. "name": "symfony/psr-http-message-bridge",
  8897. "version": "v1.1.2",
  8898. "source": {
  8899. "type": "git",
  8900. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8901. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8902. },
  8903. "dist": {
  8904. "type": "zip",
  8905. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8906. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8907. "shasum": ""
  8908. },
  8909. "require": {
  8910. "php": "^5.3.3 || ^7.0",
  8911. "psr/http-message": "^1.0",
  8912. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8913. },
  8914. "require-dev": {
  8915. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8916. },
  8917. "suggest": {
  8918. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8919. },
  8920. "type": "symfony-bridge",
  8921. "extra": {
  8922. "branch-alias": {
  8923. "dev-master": "1.1-dev"
  8924. }
  8925. },
  8926. "autoload": {
  8927. "psr-4": {
  8928. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8929. },
  8930. "exclude-from-classmap": [
  8931. "/Tests/"
  8932. ]
  8933. },
  8934. "notification-url": "https://packagist.org/downloads/",
  8935. "license": [
  8936. "MIT"
  8937. ],
  8938. "authors": [
  8939. {
  8940. "name": "Symfony Community",
  8941. "homepage": "http://symfony.com/contributors"
  8942. },
  8943. {
  8944. "name": "Fabien Potencier",
  8945. "email": "fabien@symfony.com"
  8946. }
  8947. ],
  8948. "description": "PSR HTTP message bridge",
  8949. "homepage": "http://symfony.com",
  8950. "keywords": [
  8951. "http",
  8952. "http-message",
  8953. "psr-17",
  8954. "psr-7"
  8955. ],
  8956. "support": {
  8957. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  8958. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  8959. },
  8960. "time": "2019-04-03T17:09:40+00:00"
  8961. },
  8962. {
  8963. "name": "symfony/routing",
  8964. "version": "v3.4.41",
  8965. "source": {
  8966. "type": "git",
  8967. "url": "https://github.com/symfony/routing.git",
  8968. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  8969. },
  8970. "dist": {
  8971. "type": "zip",
  8972. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8973. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8974. "shasum": ""
  8975. },
  8976. "require": {
  8977. "php": "^5.5.9|>=7.0.8"
  8978. },
  8979. "conflict": {
  8980. "symfony/config": "<3.3.1",
  8981. "symfony/dependency-injection": "<3.3",
  8982. "symfony/yaml": "<3.4"
  8983. },
  8984. "require-dev": {
  8985. "doctrine/annotations": "~1.0",
  8986. "psr/log": "~1.0",
  8987. "symfony/config": "^3.3.1|~4.0",
  8988. "symfony/dependency-injection": "~3.3|~4.0",
  8989. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8990. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8991. "symfony/yaml": "~3.4|~4.0"
  8992. },
  8993. "suggest": {
  8994. "doctrine/annotations": "For using the annotation loader",
  8995. "symfony/config": "For using the all-in-one router or any loader",
  8996. "symfony/expression-language": "For using expression matching",
  8997. "symfony/http-foundation": "For using a Symfony Request object",
  8998. "symfony/yaml": "For using the YAML loader"
  8999. },
  9000. "type": "library",
  9001. "extra": {
  9002. "branch-alias": {
  9003. "dev-master": "3.4-dev"
  9004. }
  9005. },
  9006. "autoload": {
  9007. "psr-4": {
  9008. "Symfony\\Component\\Routing\\": ""
  9009. },
  9010. "exclude-from-classmap": [
  9011. "/Tests/"
  9012. ]
  9013. },
  9014. "notification-url": "https://packagist.org/downloads/",
  9015. "license": [
  9016. "MIT"
  9017. ],
  9018. "authors": [
  9019. {
  9020. "name": "Fabien Potencier",
  9021. "email": "fabien@symfony.com"
  9022. },
  9023. {
  9024. "name": "Symfony Community",
  9025. "homepage": "https://symfony.com/contributors"
  9026. }
  9027. ],
  9028. "description": "Symfony Routing Component",
  9029. "homepage": "https://symfony.com",
  9030. "keywords": [
  9031. "router",
  9032. "routing",
  9033. "uri",
  9034. "url"
  9035. ],
  9036. "support": {
  9037. "source": "https://github.com/symfony/routing/tree/3.4"
  9038. },
  9039. "funding": [
  9040. {
  9041. "url": "https://symfony.com/sponsor",
  9042. "type": "custom"
  9043. },
  9044. {
  9045. "url": "https://github.com/fabpot",
  9046. "type": "github"
  9047. },
  9048. {
  9049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9050. "type": "tidelift"
  9051. }
  9052. ],
  9053. "time": "2020-05-30T19:50:06+00:00"
  9054. },
  9055. {
  9056. "name": "symfony/serializer",
  9057. "version": "v3.4.41",
  9058. "source": {
  9059. "type": "git",
  9060. "url": "https://github.com/symfony/serializer.git",
  9061. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9062. },
  9063. "dist": {
  9064. "type": "zip",
  9065. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9066. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9067. "shasum": ""
  9068. },
  9069. "require": {
  9070. "php": "^5.5.9|>=7.0.8",
  9071. "symfony/polyfill-ctype": "~1.8"
  9072. },
  9073. "conflict": {
  9074. "phpdocumentor/type-resolver": "<0.2.1",
  9075. "symfony/dependency-injection": "<3.2",
  9076. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9077. "symfony/property-info": "<3.1",
  9078. "symfony/yaml": "<3.4"
  9079. },
  9080. "require-dev": {
  9081. "doctrine/annotations": "~1.0",
  9082. "doctrine/cache": "~1.0",
  9083. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9084. "symfony/cache": "~3.1|~4.0",
  9085. "symfony/config": "~2.8|~3.0|~4.0",
  9086. "symfony/dependency-injection": "~3.2|~4.0",
  9087. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9088. "symfony/property-access": "~2.8|~3.0|~4.0",
  9089. "symfony/property-info": "^3.4.13|~4.0",
  9090. "symfony/yaml": "~3.4|~4.0"
  9091. },
  9092. "suggest": {
  9093. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9094. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9095. "psr/cache-implementation": "For using the metadata cache.",
  9096. "symfony/config": "For using the XML mapping loader.",
  9097. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9098. "symfony/property-access": "For using the ObjectNormalizer.",
  9099. "symfony/property-info": "To deserialize relations.",
  9100. "symfony/yaml": "For using the default YAML mapping loader."
  9101. },
  9102. "type": "library",
  9103. "extra": {
  9104. "branch-alias": {
  9105. "dev-master": "3.4-dev"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "psr-4": {
  9110. "Symfony\\Component\\Serializer\\": ""
  9111. },
  9112. "exclude-from-classmap": [
  9113. "/Tests/"
  9114. ]
  9115. },
  9116. "notification-url": "https://packagist.org/downloads/",
  9117. "license": [
  9118. "MIT"
  9119. ],
  9120. "authors": [
  9121. {
  9122. "name": "Fabien Potencier",
  9123. "email": "fabien@symfony.com"
  9124. },
  9125. {
  9126. "name": "Symfony Community",
  9127. "homepage": "https://symfony.com/contributors"
  9128. }
  9129. ],
  9130. "description": "Symfony Serializer Component",
  9131. "homepage": "https://symfony.com",
  9132. "support": {
  9133. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9134. },
  9135. "funding": [
  9136. {
  9137. "url": "https://symfony.com/sponsor",
  9138. "type": "custom"
  9139. },
  9140. {
  9141. "url": "https://github.com/fabpot",
  9142. "type": "github"
  9143. },
  9144. {
  9145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9146. "type": "tidelift"
  9147. }
  9148. ],
  9149. "time": "2020-05-30T18:58:05+00:00"
  9150. },
  9151. {
  9152. "name": "symfony/translation",
  9153. "version": "v3.4.41",
  9154. "source": {
  9155. "type": "git",
  9156. "url": "https://github.com/symfony/translation.git",
  9157. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9158. },
  9159. "dist": {
  9160. "type": "zip",
  9161. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9162. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9163. "shasum": ""
  9164. },
  9165. "require": {
  9166. "php": "^5.5.9|>=7.0.8",
  9167. "symfony/polyfill-mbstring": "~1.0"
  9168. },
  9169. "conflict": {
  9170. "symfony/config": "<2.8",
  9171. "symfony/dependency-injection": "<3.4",
  9172. "symfony/yaml": "<3.4"
  9173. },
  9174. "require-dev": {
  9175. "psr/log": "~1.0",
  9176. "symfony/config": "~2.8|~3.0|~4.0",
  9177. "symfony/dependency-injection": "~3.4|~4.0",
  9178. "symfony/finder": "~2.8|~3.0|~4.0",
  9179. "symfony/http-kernel": "~3.4|~4.0",
  9180. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9181. "symfony/var-dumper": "~3.4|~4.0",
  9182. "symfony/yaml": "~3.4|~4.0"
  9183. },
  9184. "suggest": {
  9185. "psr/log-implementation": "To use logging capability in translator",
  9186. "symfony/config": "",
  9187. "symfony/yaml": ""
  9188. },
  9189. "type": "library",
  9190. "extra": {
  9191. "branch-alias": {
  9192. "dev-master": "3.4-dev"
  9193. }
  9194. },
  9195. "autoload": {
  9196. "psr-4": {
  9197. "Symfony\\Component\\Translation\\": ""
  9198. },
  9199. "exclude-from-classmap": [
  9200. "/Tests/"
  9201. ]
  9202. },
  9203. "notification-url": "https://packagist.org/downloads/",
  9204. "license": [
  9205. "MIT"
  9206. ],
  9207. "authors": [
  9208. {
  9209. "name": "Fabien Potencier",
  9210. "email": "fabien@symfony.com"
  9211. },
  9212. {
  9213. "name": "Symfony Community",
  9214. "homepage": "https://symfony.com/contributors"
  9215. }
  9216. ],
  9217. "description": "Symfony Translation Component",
  9218. "homepage": "https://symfony.com",
  9219. "support": {
  9220. "source": "https://github.com/symfony/translation/tree/3.4"
  9221. },
  9222. "funding": [
  9223. {
  9224. "url": "https://symfony.com/sponsor",
  9225. "type": "custom"
  9226. },
  9227. {
  9228. "url": "https://github.com/fabpot",
  9229. "type": "github"
  9230. },
  9231. {
  9232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9233. "type": "tidelift"
  9234. }
  9235. ],
  9236. "time": "2020-05-30T18:58:05+00:00"
  9237. },
  9238. {
  9239. "name": "symfony/validator",
  9240. "version": "v3.4.41",
  9241. "source": {
  9242. "type": "git",
  9243. "url": "https://github.com/symfony/validator.git",
  9244. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9245. },
  9246. "dist": {
  9247. "type": "zip",
  9248. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9249. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9250. "shasum": ""
  9251. },
  9252. "require": {
  9253. "php": "^5.5.9|>=7.0.8",
  9254. "symfony/polyfill-ctype": "~1.8",
  9255. "symfony/polyfill-mbstring": "~1.0",
  9256. "symfony/translation": "~2.8|~3.0|~4.0"
  9257. },
  9258. "conflict": {
  9259. "doctrine/lexer": "<1.0.2",
  9260. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9261. "symfony/dependency-injection": "<3.3",
  9262. "symfony/http-kernel": "<3.3.5",
  9263. "symfony/yaml": "<3.4"
  9264. },
  9265. "require-dev": {
  9266. "doctrine/annotations": "~1.7",
  9267. "doctrine/cache": "~1.0",
  9268. "egulias/email-validator": "^2.1.10",
  9269. "symfony/cache": "~3.1|~4.0",
  9270. "symfony/config": "~2.8|~3.0|~4.0",
  9271. "symfony/dependency-injection": "~3.3|~4.0",
  9272. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9273. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9274. "symfony/http-kernel": "^3.3.5|~4.0",
  9275. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9276. "symfony/property-access": "~2.8|~3.0|~4.0",
  9277. "symfony/var-dumper": "~3.3|~4.0",
  9278. "symfony/yaml": "~3.4|~4.0"
  9279. },
  9280. "suggest": {
  9281. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9282. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9283. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9284. "psr/cache-implementation": "For using the metadata cache.",
  9285. "symfony/config": "",
  9286. "symfony/expression-language": "For using the Expression validator",
  9287. "symfony/http-foundation": "",
  9288. "symfony/intl": "",
  9289. "symfony/property-access": "For accessing properties within comparison constraints",
  9290. "symfony/yaml": ""
  9291. },
  9292. "type": "library",
  9293. "extra": {
  9294. "branch-alias": {
  9295. "dev-master": "3.4-dev"
  9296. }
  9297. },
  9298. "autoload": {
  9299. "psr-4": {
  9300. "Symfony\\Component\\Validator\\": ""
  9301. },
  9302. "exclude-from-classmap": [
  9303. "/Tests/"
  9304. ]
  9305. },
  9306. "notification-url": "https://packagist.org/downloads/",
  9307. "license": [
  9308. "MIT"
  9309. ],
  9310. "authors": [
  9311. {
  9312. "name": "Fabien Potencier",
  9313. "email": "fabien@symfony.com"
  9314. },
  9315. {
  9316. "name": "Symfony Community",
  9317. "homepage": "https://symfony.com/contributors"
  9318. }
  9319. ],
  9320. "description": "Symfony Validator Component",
  9321. "homepage": "https://symfony.com",
  9322. "support": {
  9323. "source": "https://github.com/symfony/validator/tree/3.4"
  9324. },
  9325. "funding": [
  9326. {
  9327. "url": "https://symfony.com/sponsor",
  9328. "type": "custom"
  9329. },
  9330. {
  9331. "url": "https://github.com/fabpot",
  9332. "type": "github"
  9333. },
  9334. {
  9335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9336. "type": "tidelift"
  9337. }
  9338. ],
  9339. "time": "2020-05-30T18:43:38+00:00"
  9340. },
  9341. {
  9342. "name": "symfony/var-dumper",
  9343. "version": "v4.4.47",
  9344. "source": {
  9345. "type": "git",
  9346. "url": "https://github.com/symfony/var-dumper.git",
  9347. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9348. },
  9349. "dist": {
  9350. "type": "zip",
  9351. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9352. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9353. "shasum": ""
  9354. },
  9355. "require": {
  9356. "php": ">=7.1.3",
  9357. "symfony/polyfill-mbstring": "~1.0",
  9358. "symfony/polyfill-php72": "~1.5",
  9359. "symfony/polyfill-php80": "^1.16"
  9360. },
  9361. "conflict": {
  9362. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9363. "symfony/console": "<3.4"
  9364. },
  9365. "require-dev": {
  9366. "ext-iconv": "*",
  9367. "symfony/console": "^3.4|^4.0|^5.0",
  9368. "symfony/process": "^4.4|^5.0",
  9369. "twig/twig": "^1.43|^2.13|^3.0.4"
  9370. },
  9371. "suggest": {
  9372. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9373. "ext-intl": "To show region name in time zone dump",
  9374. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9375. },
  9376. "bin": [
  9377. "Resources/bin/var-dump-server"
  9378. ],
  9379. "type": "library",
  9380. "autoload": {
  9381. "files": [
  9382. "Resources/functions/dump.php"
  9383. ],
  9384. "psr-4": {
  9385. "Symfony\\Component\\VarDumper\\": ""
  9386. },
  9387. "exclude-from-classmap": [
  9388. "/Tests/"
  9389. ]
  9390. },
  9391. "notification-url": "https://packagist.org/downloads/",
  9392. "license": [
  9393. "MIT"
  9394. ],
  9395. "authors": [
  9396. {
  9397. "name": "Nicolas Grekas",
  9398. "email": "p@tchwork.com"
  9399. },
  9400. {
  9401. "name": "Symfony Community",
  9402. "homepage": "https://symfony.com/contributors"
  9403. }
  9404. ],
  9405. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9406. "homepage": "https://symfony.com",
  9407. "keywords": [
  9408. "debug",
  9409. "dump"
  9410. ],
  9411. "support": {
  9412. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9413. },
  9414. "funding": [
  9415. {
  9416. "url": "https://symfony.com/sponsor",
  9417. "type": "custom"
  9418. },
  9419. {
  9420. "url": "https://github.com/fabpot",
  9421. "type": "github"
  9422. },
  9423. {
  9424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9425. "type": "tidelift"
  9426. }
  9427. ],
  9428. "time": "2022-10-03T15:15:11+00:00"
  9429. },
  9430. {
  9431. "name": "symfony/yaml",
  9432. "version": "v3.4.41",
  9433. "source": {
  9434. "type": "git",
  9435. "url": "https://github.com/symfony/yaml.git",
  9436. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9437. },
  9438. "dist": {
  9439. "type": "zip",
  9440. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9441. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9442. "shasum": ""
  9443. },
  9444. "require": {
  9445. "php": "^5.5.9|>=7.0.8",
  9446. "symfony/polyfill-ctype": "~1.8"
  9447. },
  9448. "conflict": {
  9449. "symfony/console": "<3.4"
  9450. },
  9451. "require-dev": {
  9452. "symfony/console": "~3.4|~4.0"
  9453. },
  9454. "suggest": {
  9455. "symfony/console": "For validating YAML files using the lint command"
  9456. },
  9457. "type": "library",
  9458. "extra": {
  9459. "branch-alias": {
  9460. "dev-master": "3.4-dev"
  9461. }
  9462. },
  9463. "autoload": {
  9464. "psr-4": {
  9465. "Symfony\\Component\\Yaml\\": ""
  9466. },
  9467. "exclude-from-classmap": [
  9468. "/Tests/"
  9469. ]
  9470. },
  9471. "notification-url": "https://packagist.org/downloads/",
  9472. "license": [
  9473. "MIT"
  9474. ],
  9475. "authors": [
  9476. {
  9477. "name": "Fabien Potencier",
  9478. "email": "fabien@symfony.com"
  9479. },
  9480. {
  9481. "name": "Symfony Community",
  9482. "homepage": "https://symfony.com/contributors"
  9483. }
  9484. ],
  9485. "description": "Symfony Yaml Component",
  9486. "homepage": "https://symfony.com",
  9487. "support": {
  9488. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9489. },
  9490. "funding": [
  9491. {
  9492. "url": "https://symfony.com/sponsor",
  9493. "type": "custom"
  9494. },
  9495. {
  9496. "url": "https://github.com/fabpot",
  9497. "type": "github"
  9498. },
  9499. {
  9500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9501. "type": "tidelift"
  9502. }
  9503. ],
  9504. "time": "2020-05-11T07:51:54+00:00"
  9505. },
  9506. {
  9507. "name": "twig/twig",
  9508. "version": "v1.42.5",
  9509. "source": {
  9510. "type": "git",
  9511. "url": "https://github.com/twigphp/Twig.git",
  9512. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9513. },
  9514. "dist": {
  9515. "type": "zip",
  9516. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9517. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9518. "shasum": ""
  9519. },
  9520. "require": {
  9521. "php": ">=5.5.0",
  9522. "symfony/polyfill-ctype": "^1.8"
  9523. },
  9524. "require-dev": {
  9525. "psr/container": "^1.0",
  9526. "symfony/phpunit-bridge": "^4.4|^5.0"
  9527. },
  9528. "type": "library",
  9529. "extra": {
  9530. "branch-alias": {
  9531. "dev-master": "1.42-dev"
  9532. }
  9533. },
  9534. "autoload": {
  9535. "psr-0": {
  9536. "Twig_": "lib/"
  9537. },
  9538. "psr-4": {
  9539. "Twig\\": "src/"
  9540. }
  9541. },
  9542. "notification-url": "https://packagist.org/downloads/",
  9543. "license": [
  9544. "BSD-3-Clause"
  9545. ],
  9546. "authors": [
  9547. {
  9548. "name": "Fabien Potencier",
  9549. "email": "fabien@symfony.com",
  9550. "homepage": "http://fabien.potencier.org",
  9551. "role": "Lead Developer"
  9552. },
  9553. {
  9554. "name": "Twig Team",
  9555. "role": "Contributors"
  9556. },
  9557. {
  9558. "name": "Armin Ronacher",
  9559. "email": "armin.ronacher@active-4.com",
  9560. "role": "Project Founder"
  9561. }
  9562. ],
  9563. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9564. "homepage": "https://twig.symfony.com",
  9565. "keywords": [
  9566. "templating"
  9567. ],
  9568. "support": {
  9569. "issues": "https://github.com/twigphp/Twig/issues",
  9570. "source": "https://github.com/twigphp/Twig/tree/1.x"
  9571. },
  9572. "time": "2020-02-11T05:59:23+00:00"
  9573. },
  9574. {
  9575. "name": "typo3/phar-stream-wrapper",
  9576. "version": "v3.1.4",
  9577. "source": {
  9578. "type": "git",
  9579. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9580. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9581. },
  9582. "dist": {
  9583. "type": "zip",
  9584. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9585. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9586. "shasum": ""
  9587. },
  9588. "require": {
  9589. "ext-json": "*",
  9590. "php": "^7.0"
  9591. },
  9592. "require-dev": {
  9593. "ext-xdebug": "*",
  9594. "phpunit/phpunit": "^6.5"
  9595. },
  9596. "suggest": {
  9597. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9598. },
  9599. "type": "library",
  9600. "extra": {
  9601. "branch-alias": {
  9602. "dev-master": "v3.x-dev"
  9603. }
  9604. },
  9605. "autoload": {
  9606. "psr-4": {
  9607. "TYPO3\\PharStreamWrapper\\": "src/"
  9608. }
  9609. },
  9610. "notification-url": "https://packagist.org/downloads/",
  9611. "license": [
  9612. "MIT"
  9613. ],
  9614. "description": "Interceptors for PHP's native phar:// stream handling",
  9615. "homepage": "https://typo3.org/",
  9616. "keywords": [
  9617. "phar",
  9618. "php",
  9619. "security",
  9620. "stream-wrapper"
  9621. ],
  9622. "support": {
  9623. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  9624. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  9625. },
  9626. "time": "2019-12-10T11:53:27+00:00"
  9627. },
  9628. {
  9629. "name": "vlucas/phpdotenv",
  9630. "version": "v2.6.4",
  9631. "source": {
  9632. "type": "git",
  9633. "url": "https://github.com/vlucas/phpdotenv.git",
  9634. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  9635. },
  9636. "dist": {
  9637. "type": "zip",
  9638. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  9639. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  9640. "shasum": ""
  9641. },
  9642. "require": {
  9643. "php": "^5.3.9 || ^7.0 || ^8.0",
  9644. "symfony/polyfill-ctype": "^1.9"
  9645. },
  9646. "require-dev": {
  9647. "ext-filter": "*",
  9648. "ext-pcre": "*",
  9649. "phpunit/phpunit": "^4.8.35 || ^5.0"
  9650. },
  9651. "suggest": {
  9652. "ext-filter": "Required to use the boolean validator.",
  9653. "ext-pcre": "Required to use most of the library."
  9654. },
  9655. "type": "library",
  9656. "extra": {
  9657. "branch-alias": {
  9658. "dev-master": "2.6-dev"
  9659. }
  9660. },
  9661. "autoload": {
  9662. "psr-4": {
  9663. "Dotenv\\": "src/"
  9664. }
  9665. },
  9666. "notification-url": "https://packagist.org/downloads/",
  9667. "license": [
  9668. "BSD-3-Clause"
  9669. ],
  9670. "authors": [
  9671. {
  9672. "name": "Graham Campbell",
  9673. "email": "graham@alt-three.com",
  9674. "homepage": "https://gjcampbell.co.uk/"
  9675. },
  9676. {
  9677. "name": "Vance Lucas",
  9678. "email": "vance@vancelucas.com",
  9679. "homepage": "https://vancelucas.com/"
  9680. }
  9681. ],
  9682. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9683. "keywords": [
  9684. "dotenv",
  9685. "env",
  9686. "environment"
  9687. ],
  9688. "time": "2020-05-02T13:38:00+00:00"
  9689. },
  9690. {
  9691. "name": "webflo/drupal-finder",
  9692. "version": "1.2.0",
  9693. "source": {
  9694. "type": "git",
  9695. "url": "https://github.com/webflo/drupal-finder.git",
  9696. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9697. },
  9698. "dist": {
  9699. "type": "zip",
  9700. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9701. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9702. "shasum": ""
  9703. },
  9704. "require": {
  9705. "ext-json": "*"
  9706. },
  9707. "require-dev": {
  9708. "mikey179/vfsstream": "^1.6",
  9709. "phpunit/phpunit": "^4.8"
  9710. },
  9711. "type": "library",
  9712. "autoload": {
  9713. "classmap": [
  9714. "src/DrupalFinder.php"
  9715. ]
  9716. },
  9717. "notification-url": "https://packagist.org/downloads/",
  9718. "license": [
  9719. "GPL-2.0+"
  9720. ],
  9721. "authors": [
  9722. {
  9723. "name": "Florian Weber",
  9724. "email": "florian@webflo.org"
  9725. }
  9726. ],
  9727. "description": "Helper class to locate a Drupal installation from a given path.",
  9728. "time": "2019-08-02T08:06:18+00:00"
  9729. },
  9730. {
  9731. "name": "webmozart/assert",
  9732. "version": "1.11.0",
  9733. "source": {
  9734. "type": "git",
  9735. "url": "https://github.com/webmozarts/assert.git",
  9736. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9737. },
  9738. "dist": {
  9739. "type": "zip",
  9740. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9741. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9742. "shasum": ""
  9743. },
  9744. "require": {
  9745. "ext-ctype": "*",
  9746. "php": "^7.2 || ^8.0"
  9747. },
  9748. "conflict": {
  9749. "phpstan/phpstan": "<0.12.20",
  9750. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9751. },
  9752. "require-dev": {
  9753. "phpunit/phpunit": "^8.5.13"
  9754. },
  9755. "type": "library",
  9756. "extra": {
  9757. "branch-alias": {
  9758. "dev-master": "1.10-dev"
  9759. }
  9760. },
  9761. "autoload": {
  9762. "psr-4": {
  9763. "Webmozart\\Assert\\": "src/"
  9764. }
  9765. },
  9766. "notification-url": "https://packagist.org/downloads/",
  9767. "license": [
  9768. "MIT"
  9769. ],
  9770. "authors": [
  9771. {
  9772. "name": "Bernhard Schussek",
  9773. "email": "bschussek@gmail.com"
  9774. }
  9775. ],
  9776. "description": "Assertions to validate method input/output with nice error messages.",
  9777. "keywords": [
  9778. "assert",
  9779. "check",
  9780. "validate"
  9781. ],
  9782. "support": {
  9783. "issues": "https://github.com/webmozarts/assert/issues",
  9784. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9785. },
  9786. "time": "2022-06-03T18:03:27+00:00"
  9787. },
  9788. {
  9789. "name": "webmozart/path-util",
  9790. "version": "2.3.0",
  9791. "source": {
  9792. "type": "git",
  9793. "url": "https://github.com/webmozart/path-util.git",
  9794. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9795. },
  9796. "dist": {
  9797. "type": "zip",
  9798. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9799. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9800. "shasum": ""
  9801. },
  9802. "require": {
  9803. "php": ">=5.3.3",
  9804. "webmozart/assert": "~1.0"
  9805. },
  9806. "require-dev": {
  9807. "phpunit/phpunit": "^4.6",
  9808. "sebastian/version": "^1.0.1"
  9809. },
  9810. "type": "library",
  9811. "extra": {
  9812. "branch-alias": {
  9813. "dev-master": "2.3-dev"
  9814. }
  9815. },
  9816. "autoload": {
  9817. "psr-4": {
  9818. "Webmozart\\PathUtil\\": "src/"
  9819. }
  9820. },
  9821. "notification-url": "https://packagist.org/downloads/",
  9822. "license": [
  9823. "MIT"
  9824. ],
  9825. "authors": [
  9826. {
  9827. "name": "Bernhard Schussek",
  9828. "email": "bschussek@gmail.com"
  9829. }
  9830. ],
  9831. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9832. "time": "2015-12-17T08:42:14+00:00"
  9833. }
  9834. ],
  9835. "packages-dev": [],
  9836. "aliases": [],
  9837. "minimum-stability": "dev",
  9838. "stability-flags": {
  9839. "drupal/better_messages": 15,
  9840. "drupal/bulkdelete": 20,
  9841. "drupal/domain": 15,
  9842. "drupal/entity": 20,
  9843. "drupal/filefield_sources": 15,
  9844. "drupal/filter_perms": 15,
  9845. "drupal/maillog": 10,
  9846. "drupal/path_alias_xt": 20,
  9847. "drupal/synonyms": 15,
  9848. "drupal/toolbar_themes": 20
  9849. },
  9850. "prefer-stable": true,
  9851. "prefer-lowest": false,
  9852. "platform": {
  9853. "php": ">=5.6"
  9854. },
  9855. "platform-dev": [],
  9856. "plugin-api-version": "2.6.0"
  9857. }