composer.lock 377 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327
  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": "f67712d2925f9f01b3c6ac9ff7eec3bd",
  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.22.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://git.drupalcode.org/project/addtoany.git",
  1626. "reference": "8.x-1.22"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.22.zip",
  1631. "reference": "8.x-1.22",
  1632. "shasum": "350bfc33c163d11d137005cb56e6a1f0eaa35f04"
  1633. },
  1634. "require": {
  1635. "drupal/core": "^8 || ^9"
  1636. },
  1637. "type": "drupal-module",
  1638. "extra": {
  1639. "drupal": {
  1640. "version": "8.x-1.22",
  1641. "datestamp": "1698826527",
  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, Mastodon, 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.5.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1678. "reference": "8.x-2.5"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  1683. "reference": "8.x-2.5",
  1684. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  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.5",
  1693. "datestamp": "1629907119",
  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": "japerry",
  1728. "homepage": "https://www.drupal.org/user/45640"
  1729. },
  1730. {
  1731. "name": "matio89",
  1732. "homepage": "https://www.drupal.org/user/2320090"
  1733. },
  1734. {
  1735. "name": "musa.thomas",
  1736. "homepage": "https://www.drupal.org/user/1213824"
  1737. },
  1738. {
  1739. "name": "romainj",
  1740. "homepage": "https://www.drupal.org/user/370706"
  1741. }
  1742. ],
  1743. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1744. "homepage": "http://drupal.org/project/admin_toolbar",
  1745. "keywords": [
  1746. "Drupal",
  1747. "Toolbar"
  1748. ],
  1749. "support": {
  1750. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1751. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1752. }
  1753. },
  1754. {
  1755. "name": "drupal/adminimal_theme",
  1756. "version": "1.6.0",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1760. "reference": "8.x-1.6"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1765. "reference": "8.x-1.6",
  1766. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1767. },
  1768. "require": {
  1769. "drupal/core": "^8.8 || ^9"
  1770. },
  1771. "type": "drupal-theme",
  1772. "extra": {
  1773. "drupal": {
  1774. "version": "8.x-1.6",
  1775. "datestamp": "1602006937",
  1776. "security-coverage": {
  1777. "status": "covered",
  1778. "message": "Covered by Drupal's security advisory policy"
  1779. }
  1780. }
  1781. },
  1782. "notification-url": "https://packages.drupal.org/8/downloads",
  1783. "license": [
  1784. "GPL-2.0+"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "ANDiTKO",
  1789. "homepage": "https://www.drupal.org/user/1428124"
  1790. },
  1791. {
  1792. "name": "andrey.troeglazov",
  1793. "homepage": "https://www.drupal.org/user/3145389"
  1794. },
  1795. {
  1796. "name": "realityloop",
  1797. "homepage": "https://www.drupal.org/user/139189"
  1798. },
  1799. {
  1800. "name": "rjjakes",
  1801. "homepage": "https://www.drupal.org/user/3457245"
  1802. }
  1803. ],
  1804. "description": "Drupal administration theme with modern minimalist design.",
  1805. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1806. "support": {
  1807. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1808. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1809. }
  1810. },
  1811. {
  1812. "name": "drupal/audiofield",
  1813. "version": "1.13.0",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://git.drupalcode.org/project/audiofield.git",
  1817. "reference": "8.x-1.13"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1822. "reference": "8.x-1.13",
  1823. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1824. },
  1825. "require": {
  1826. "drupal/core": "^8 || ^9 || ^10"
  1827. },
  1828. "type": "drupal-module",
  1829. "extra": {
  1830. "drupal": {
  1831. "version": "8.x-1.13",
  1832. "datestamp": "1681143245",
  1833. "security-coverage": {
  1834. "status": "covered",
  1835. "message": "Covered by Drupal's security advisory policy"
  1836. }
  1837. },
  1838. "drush": {
  1839. "services": {
  1840. "drush.services.yml": "^9"
  1841. }
  1842. }
  1843. },
  1844. "notification-url": "https://packages.drupal.org/8/downloads",
  1845. "license": [
  1846. "GPL-2.0-or-later"
  1847. ],
  1848. "authors": [
  1849. {
  1850. "name": "Daniel Moberly",
  1851. "homepage": "https://www.drupal.org/u/danielmoberly",
  1852. "role": "Maintainer"
  1853. },
  1854. {
  1855. "name": "tamerzg",
  1856. "homepage": "https://www.drupal.org/user/464564"
  1857. }
  1858. ],
  1859. "description": "AudioField Module",
  1860. "homepage": "https://www.drupal.org/project/audiofield",
  1861. "support": {
  1862. "source": "https://git.drupalcode.org/project/audiofield",
  1863. "issues": "https://www.drupal.org/project/issues/audiofield"
  1864. }
  1865. },
  1866. {
  1867. "name": "drupal/autologout",
  1868. "version": "1.3.0",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://git.drupalcode.org/project/autologout.git",
  1872. "reference": "8.x-1.3"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1877. "reference": "8.x-1.3",
  1878. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1879. },
  1880. "require": {
  1881. "drupal/core": "^8 || ^9"
  1882. },
  1883. "type": "drupal-module",
  1884. "extra": {
  1885. "drupal": {
  1886. "version": "8.x-1.3",
  1887. "datestamp": "1587193798",
  1888. "security-coverage": {
  1889. "status": "covered",
  1890. "message": "Covered by Drupal's security advisory policy"
  1891. }
  1892. }
  1893. },
  1894. "notification-url": "https://packages.drupal.org/8/downloads",
  1895. "license": [
  1896. "GPL-2.0+"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "ajits",
  1901. "homepage": "https://www.drupal.org/user/981944"
  1902. },
  1903. {
  1904. "name": "AjK",
  1905. "homepage": "https://www.drupal.org/user/39030"
  1906. },
  1907. {
  1908. "name": "boshtian",
  1909. "homepage": "https://www.drupal.org/user/1773456"
  1910. },
  1911. {
  1912. "name": "dandrews",
  1913. "homepage": "https://www.drupal.org/user/2014490"
  1914. },
  1915. {
  1916. "name": "darksnow",
  1917. "homepage": "https://www.drupal.org/user/391915"
  1918. },
  1919. {
  1920. "name": "japerry",
  1921. "homepage": "https://www.drupal.org/user/45640"
  1922. },
  1923. {
  1924. "name": "johnennew",
  1925. "homepage": "https://www.drupal.org/user/1150042"
  1926. },
  1927. {
  1928. "name": "jrglasgow",
  1929. "homepage": "https://www.drupal.org/user/36590"
  1930. },
  1931. {
  1932. "name": "kmasood",
  1933. "homepage": "https://www.drupal.org/user/1262860"
  1934. },
  1935. {
  1936. "name": "levelos",
  1937. "homepage": "https://www.drupal.org/user/54135"
  1938. },
  1939. {
  1940. "name": "prabeen.giri",
  1941. "homepage": "https://www.drupal.org/user/913078"
  1942. },
  1943. {
  1944. "name": "scott_earnest",
  1945. "homepage": "https://www.drupal.org/user/416158"
  1946. },
  1947. {
  1948. "name": "str8",
  1949. "homepage": "https://www.drupal.org/user/2865063"
  1950. }
  1951. ],
  1952. "description": "Adds automated timed logout.",
  1953. "homepage": "http://drupal.org/project/autologout",
  1954. "support": {
  1955. "source": "https://git.drupalcode.org/project/autologout"
  1956. }
  1957. },
  1958. {
  1959. "name": "drupal/basic",
  1960. "version": "2.1.0",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://git.drupalcode.org/project/basic.git",
  1964. "reference": "8.x-2.1"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  1969. "reference": "8.x-2.1",
  1970. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  1971. },
  1972. "require": {
  1973. "drupal/core": "^8.8 || ^9"
  1974. },
  1975. "type": "drupal-theme",
  1976. "extra": {
  1977. "drupal": {
  1978. "version": "8.x-2.1",
  1979. "datestamp": "1612916291",
  1980. "security-coverage": {
  1981. "status": "covered",
  1982. "message": "Covered by Drupal's security advisory policy"
  1983. }
  1984. }
  1985. },
  1986. "notification-url": "https://packages.drupal.org/8/downloads",
  1987. "license": [
  1988. "GPL-2.0+"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "Steve Krueger",
  1993. "homepage": "http://thejibe.com",
  1994. "email": "steve@thejibe.com",
  1995. "role": "Maintainer"
  1996. },
  1997. {
  1998. "name": "Joël Pittet",
  1999. "homepage": "https://www.drupal.org/u/joelpittet",
  2000. "email": "joel@pittet.ca",
  2001. "role": "Maintainer"
  2002. },
  2003. {
  2004. "name": "Leah Wagner",
  2005. "homepage": "http://thejibe.com",
  2006. "email": "leah@thejibe.com",
  2007. "role": "Maintainer"
  2008. },
  2009. {
  2010. "name": "Catherine Winters",
  2011. "homepage": "http://www.catherinewinters.com",
  2012. "email": "catherine@catherinewinters.com",
  2013. "role": "Maintainer"
  2014. },
  2015. {
  2016. "name": "Johannes Schmidt",
  2017. "homepage": "http://2tabs.com",
  2018. "email": "mail@2tabs.com",
  2019. "role": "Maintainer"
  2020. },
  2021. {
  2022. "name": "Chuck Kosman",
  2023. "homepage": "http://thejibe.com",
  2024. "email": "chuck@thejibe.com",
  2025. "role": "Maintainer"
  2026. },
  2027. {
  2028. "name": "SteveK",
  2029. "homepage": "https://www.drupal.org/user/111656"
  2030. }
  2031. ],
  2032. "description": "HTML5, SASS, Responsive grid starter theme.",
  2033. "homepage": "http://drupal.org/project/basic",
  2034. "support": {
  2035. "source": "http://cgit.drupalcode.org/basic",
  2036. "issues": "https://www.drupal.org/project/issues/basic",
  2037. "irc": "irc://irc.freenode.org/drupal-contribute"
  2038. }
  2039. },
  2040. {
  2041. "name": "drupal/better_messages",
  2042. "version": "2.0.0-alpha2",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://git.drupalcode.org/project/better_messages.git",
  2046. "reference": "2.0.0-alpha2"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2051. "reference": "2.0.0-alpha2",
  2052. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2053. },
  2054. "require": {
  2055. "drupal/core": "^8 || ^9"
  2056. },
  2057. "type": "drupal-module",
  2058. "extra": {
  2059. "drupal": {
  2060. "version": "2.0.0-alpha2",
  2061. "datestamp": "1644241962",
  2062. "security-coverage": {
  2063. "status": "not-covered",
  2064. "message": "Alpha releases are not covered by Drupal security advisories."
  2065. }
  2066. }
  2067. },
  2068. "notification-url": "https://packages.drupal.org/8/downloads",
  2069. "license": [
  2070. "GPL-2.0-or-later"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "bucefal91",
  2075. "homepage": "https://www.drupal.org/user/504128"
  2076. },
  2077. {
  2078. "name": "le72",
  2079. "homepage": "https://www.drupal.org/user/1866896"
  2080. },
  2081. {
  2082. "name": "mohammed j. razem",
  2083. "homepage": "https://www.drupal.org/user/255384"
  2084. },
  2085. {
  2086. "name": "usingsession",
  2087. "homepage": "https://www.drupal.org/user/3582050"
  2088. }
  2089. ],
  2090. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2091. "homepage": "https://www.drupal.org/project/better_messages",
  2092. "support": {
  2093. "source": "https://git.drupalcode.org/project/better_messages"
  2094. }
  2095. },
  2096. {
  2097. "name": "drupal/bulkdelete",
  2098. "version": "dev-1.x",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2102. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2103. },
  2104. "require": {
  2105. "drupal/core": "^8.7.7 || ^9"
  2106. },
  2107. "type": "drupal-module",
  2108. "extra": {
  2109. "branch-alias": {
  2110. "dev-1.x": "1.x-dev"
  2111. },
  2112. "drupal": {
  2113. "version": "8.x-1.x-dev",
  2114. "datestamp": "1569586386",
  2115. "security-coverage": {
  2116. "status": "not-covered",
  2117. "message": "Dev releases are not covered by Drupal security advisories."
  2118. }
  2119. }
  2120. },
  2121. "notification-url": "https://packages.drupal.org/8/downloads",
  2122. "license": [
  2123. "GPL-2.0-or-later"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Kars-T",
  2128. "homepage": "https://www.drupal.org/user/224499"
  2129. },
  2130. {
  2131. "name": "Rahul Seth",
  2132. "homepage": "https://www.drupal.org/user/2694359"
  2133. },
  2134. {
  2135. "name": "adriancid",
  2136. "homepage": "https://www.drupal.org/user/1962106"
  2137. },
  2138. {
  2139. "name": "robertDouglass",
  2140. "homepage": "https://www.drupal.org/user/5449"
  2141. }
  2142. ],
  2143. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2144. "homepage": "https://www.drupal.org/project/bulkdelete",
  2145. "support": {
  2146. "source": "https://git.drupalcode.org/project/bulkdelete"
  2147. },
  2148. "time": "2020-05-24T06:01:38+00:00"
  2149. },
  2150. {
  2151. "name": "drupal/color_field",
  2152. "version": "2.5.0",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://git.drupalcode.org/project/color_field.git",
  2156. "reference": "8.x-2.5"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.5.zip",
  2161. "reference": "8.x-2.5",
  2162. "shasum": "9b0d299cb24d3cb21c7fb6a6a08d32ae5aed8652"
  2163. },
  2164. "require": {
  2165. "drupal/core": "^8 || ^9"
  2166. },
  2167. "require-dev": {
  2168. "drupal/core-recommended": "*",
  2169. "drupal/token": "~1.3"
  2170. },
  2171. "suggest": {
  2172. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2173. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2174. },
  2175. "type": "drupal-module",
  2176. "extra": {
  2177. "drupal": {
  2178. "version": "8.x-2.5",
  2179. "datestamp": "1632938098",
  2180. "security-coverage": {
  2181. "status": "covered",
  2182. "message": "Covered by Drupal's security advisory policy"
  2183. }
  2184. }
  2185. },
  2186. "notification-url": "https://packages.drupal.org/8/downloads",
  2187. "license": [
  2188. "GPL-2.0-or-later"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "targoo",
  2193. "homepage": "https://www.drupal.org/user/431910",
  2194. "role": "Maintainer"
  2195. },
  2196. {
  2197. "name": "Nick Wilde",
  2198. "homepage": "https://www.drupal.org/user/nickwilde",
  2199. "role": "Maintainer"
  2200. },
  2201. {
  2202. "name": "targoo",
  2203. "homepage": "https://www.drupal.org/user/431910"
  2204. }
  2205. ],
  2206. "description": "Provides a color field type to store the color value and opacity",
  2207. "homepage": "https://www.drupal.org/project/color_field",
  2208. "support": {
  2209. "source": "https://git.drupalcode.org/project/color_field",
  2210. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2211. }
  2212. },
  2213. {
  2214. "name": "drupal/config_devel",
  2215. "version": "1.8.0",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://git.drupalcode.org/project/config_devel.git",
  2219. "reference": "8.x-1.8"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2224. "reference": "8.x-1.8",
  2225. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2226. },
  2227. "require": {
  2228. "drupal/core": "^8 || ^9"
  2229. },
  2230. "type": "drupal-module",
  2231. "extra": {
  2232. "drupal": {
  2233. "version": "8.x-1.8",
  2234. "datestamp": "1609324318",
  2235. "security-coverage": {
  2236. "status": "covered",
  2237. "message": "Covered by Drupal's security advisory policy"
  2238. }
  2239. }
  2240. },
  2241. "notification-url": "https://packages.drupal.org/8/downloads",
  2242. "license": [
  2243. "GPL-2.0+"
  2244. ],
  2245. "authors": [
  2246. {
  2247. "name": "alexpott",
  2248. "homepage": "https://www.drupal.org/user/157725"
  2249. },
  2250. {
  2251. "name": "benjy",
  2252. "homepage": "https://www.drupal.org/user/1852732"
  2253. },
  2254. {
  2255. "name": "chx",
  2256. "homepage": "https://www.drupal.org/user/9446"
  2257. },
  2258. {
  2259. "name": "joachim",
  2260. "homepage": "https://www.drupal.org/user/107701"
  2261. },
  2262. {
  2263. "name": "vijaycs85",
  2264. "homepage": "https://www.drupal.org/user/93488"
  2265. }
  2266. ],
  2267. "description": "Helps developers work with configuration.",
  2268. "homepage": "https://www.drupal.org/project/config_devel",
  2269. "support": {
  2270. "source": "https://git.drupalcode.org/project/config_devel"
  2271. }
  2272. },
  2273. {
  2274. "name": "drupal/config_filter",
  2275. "version": "1.12.0",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://git.drupalcode.org/project/config_filter.git",
  2279. "reference": "8.x-1.12"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2284. "reference": "8.x-1.12",
  2285. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2286. },
  2287. "require": {
  2288. "drupal/core": "^8.8 || ^9 || ^10"
  2289. },
  2290. "suggest": {
  2291. "drupal/config_split": "Split site configuration for different environments."
  2292. },
  2293. "type": "drupal-module",
  2294. "extra": {
  2295. "drupal": {
  2296. "version": "8.x-1.12",
  2297. "datestamp": "1698308496",
  2298. "security-coverage": {
  2299. "status": "covered",
  2300. "message": "Covered by Drupal's security advisory policy"
  2301. }
  2302. }
  2303. },
  2304. "notification-url": "https://packages.drupal.org/8/downloads",
  2305. "license": [
  2306. "GPL-2.0-or-later"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "Fabian Bircher",
  2311. "homepage": "https://www.drupal.org/u/bircher",
  2312. "email": "opensource@fabianbircher.com",
  2313. "role": "Maintainer"
  2314. },
  2315. {
  2316. "name": "Nuvole Web",
  2317. "homepage": "http://nuvole.org",
  2318. "email": "info@nuvole.org",
  2319. "role": "Maintainer"
  2320. },
  2321. {
  2322. "name": "pescetti",
  2323. "homepage": "https://www.drupal.org/user/436244"
  2324. }
  2325. ],
  2326. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2327. "homepage": "https://www.drupal.org/project/config_filter",
  2328. "keywords": [
  2329. "Drupal",
  2330. "configuration",
  2331. "configuration management"
  2332. ],
  2333. "support": {
  2334. "source": "https://git.drupalcode.org/project/config_filter",
  2335. "issues": "https://www.drupal.org/project/issues/config_filter",
  2336. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2337. }
  2338. },
  2339. {
  2340. "name": "drupal/config_ignore",
  2341. "version": "3.3.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2345. "reference": "8.x-3.3"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2350. "reference": "8.x-3.3",
  2351. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2352. },
  2353. "require": {
  2354. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2355. },
  2356. "require-dev": {
  2357. "drupal/config_filter": "^1.8||^2.2",
  2358. "drush/drush": "^10 || ^11 || ^12"
  2359. },
  2360. "type": "drupal-module",
  2361. "extra": {
  2362. "drupal": {
  2363. "version": "8.x-3.3",
  2364. "datestamp": "1713299496",
  2365. "security-coverage": {
  2366. "status": "covered",
  2367. "message": "Covered by Drupal's security advisory policy"
  2368. }
  2369. }
  2370. },
  2371. "notification-url": "https://packages.drupal.org/8/downloads",
  2372. "license": [
  2373. "GPL-2.0-or-later"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Tommy Lynge Jørgensen",
  2378. "homepage": "https://www.drupal.org/u/tlyngej",
  2379. "email": "tlyngej@gmail.com",
  2380. "role": "Maintainer"
  2381. },
  2382. {
  2383. "name": "Fabian Bircher",
  2384. "homepage": "https://www.drupal.org/u/bircher",
  2385. "role": "Maintainer"
  2386. },
  2387. {
  2388. "name": "tlyngej",
  2389. "homepage": "https://www.drupal.org/user/413139"
  2390. }
  2391. ],
  2392. "description": "Ignore certain configuration during import and export.",
  2393. "homepage": "http://drupal.org/project/config_ignore",
  2394. "support": {
  2395. "source": "https://git.drupalcode.org/project/config_ignore",
  2396. "issues": "http://drupal.org/project/config_ignore"
  2397. }
  2398. },
  2399. {
  2400. "name": "drupal/config_update",
  2401. "version": "1.7.0",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://git.drupalcode.org/project/config_update.git",
  2405. "reference": "8.x-1.7"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2410. "reference": "8.x-1.7",
  2411. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2412. },
  2413. "require": {
  2414. "drupal/core": "^8 || ^9"
  2415. },
  2416. "type": "drupal-module",
  2417. "extra": {
  2418. "drupal": {
  2419. "version": "8.x-1.7",
  2420. "datestamp": "1586355587",
  2421. "security-coverage": {
  2422. "status": "covered",
  2423. "message": "Covered by Drupal's security advisory policy"
  2424. }
  2425. }
  2426. },
  2427. "notification-url": "https://packages.drupal.org/8/downloads",
  2428. "license": [
  2429. "GPL-2.0-or-later"
  2430. ],
  2431. "authors": [
  2432. {
  2433. "name": "codebymikey",
  2434. "homepage": "https://www.drupal.org/user/3573206"
  2435. },
  2436. {
  2437. "name": "pasqualle",
  2438. "homepage": "https://www.drupal.org/user/80733"
  2439. },
  2440. {
  2441. "name": "vishalkhode",
  2442. "homepage": "https://www.drupal.org/user/2439156"
  2443. }
  2444. ],
  2445. "description": "Provides basic revert and update functionality for other modules",
  2446. "homepage": "https://www.drupal.org/project/config_update",
  2447. "support": {
  2448. "source": "https://git.drupalcode.org/project/config_update"
  2449. }
  2450. },
  2451. {
  2452. "name": "drupal/context",
  2453. "version": "4.1.0",
  2454. "source": {
  2455. "type": "git",
  2456. "url": "https://git.drupalcode.org/project/context.git",
  2457. "reference": "8.x-4.1"
  2458. },
  2459. "dist": {
  2460. "type": "zip",
  2461. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2462. "reference": "8.x-4.1",
  2463. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2464. },
  2465. "require": {
  2466. "drupal/core": "^8.8 || ^9"
  2467. },
  2468. "type": "drupal-module",
  2469. "extra": {
  2470. "drupal": {
  2471. "version": "8.x-4.1",
  2472. "datestamp": "1628187190",
  2473. "security-coverage": {
  2474. "status": "covered",
  2475. "message": "Covered by Drupal's security advisory policy"
  2476. }
  2477. }
  2478. },
  2479. "notification-url": "https://packages.drupal.org/8/downloads",
  2480. "license": [
  2481. "MIT"
  2482. ],
  2483. "authors": [
  2484. {
  2485. "name": "Christoffer Palm",
  2486. "homepage": "http://www.oddhill.se/",
  2487. "email": "christoffer.palm@oddhill.se",
  2488. "role": "Developer"
  2489. },
  2490. {
  2491. "name": "boshtian",
  2492. "homepage": "https://www.drupal.org/user/1773456"
  2493. },
  2494. {
  2495. "name": "colan",
  2496. "homepage": "https://www.drupal.org/user/58704"
  2497. },
  2498. {
  2499. "name": "emanaton",
  2500. "homepage": "https://www.drupal.org/user/120853"
  2501. },
  2502. {
  2503. "name": "febbraro",
  2504. "homepage": "https://www.drupal.org/user/43670"
  2505. },
  2506. {
  2507. "name": "fizk",
  2508. "homepage": "https://www.drupal.org/user/473174"
  2509. },
  2510. {
  2511. "name": "hass",
  2512. "homepage": "https://www.drupal.org/user/85918"
  2513. },
  2514. {
  2515. "name": "hefox",
  2516. "homepage": "https://www.drupal.org/user/426416"
  2517. },
  2518. {
  2519. "name": "jmiccolis",
  2520. "homepage": "https://www.drupal.org/user/31731"
  2521. },
  2522. {
  2523. "name": "Kristen Pol",
  2524. "homepage": "https://www.drupal.org/user/8389"
  2525. },
  2526. {
  2527. "name": "nedjo",
  2528. "homepage": "https://www.drupal.org/user/4481"
  2529. },
  2530. {
  2531. "name": "NormySan",
  2532. "homepage": "https://www.drupal.org/user/112352"
  2533. },
  2534. {
  2535. "name": "patricksettle",
  2536. "homepage": "https://www.drupal.org/user/26618"
  2537. },
  2538. {
  2539. "name": "paulocs",
  2540. "homepage": "https://www.drupal.org/user/3640109"
  2541. },
  2542. {
  2543. "name": "Steven Jones",
  2544. "homepage": "https://www.drupal.org/user/99644"
  2545. },
  2546. {
  2547. "name": "tekante",
  2548. "homepage": "https://www.drupal.org/user/640024"
  2549. },
  2550. {
  2551. "name": "yhahn",
  2552. "homepage": "https://www.drupal.org/user/264833"
  2553. }
  2554. ],
  2555. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2556. "homepage": "https://github.com/oddhill/context",
  2557. "keywords": [
  2558. "Drupal",
  2559. "block",
  2560. "conditions",
  2561. "context",
  2562. "visibility"
  2563. ],
  2564. "support": {
  2565. "source": "https://github.com/oddhill/context",
  2566. "issues": "https://github.com/oddhill/context/issues",
  2567. "docs": "https://github.com/oddhill/context"
  2568. }
  2569. },
  2570. {
  2571. "name": "drupal/core",
  2572. "version": "8.9.20",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/drupal/core.git",
  2576. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2581. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "asm89/stack-cors": "^1.1",
  2586. "composer/semver": "^1.0",
  2587. "doctrine/annotations": "^1.4",
  2588. "doctrine/common": "^2.7",
  2589. "easyrdf/easyrdf": "^0.9",
  2590. "egulias/email-validator": "^2.0",
  2591. "ext-date": "*",
  2592. "ext-dom": "*",
  2593. "ext-filter": "*",
  2594. "ext-gd": "*",
  2595. "ext-hash": "*",
  2596. "ext-json": "*",
  2597. "ext-pcre": "*",
  2598. "ext-pdo": "*",
  2599. "ext-session": "*",
  2600. "ext-simplexml": "*",
  2601. "ext-spl": "*",
  2602. "ext-tokenizer": "*",
  2603. "ext-xml": "*",
  2604. "guzzlehttp/guzzle": "^6.3",
  2605. "laminas/laminas-diactoros": "^1.8",
  2606. "laminas/laminas-feed": "^2.12",
  2607. "masterminds/html5": "^2.1",
  2608. "pear/archive_tar": "^1.4.14",
  2609. "php": "^7.0.8",
  2610. "psr/log": "^1.0",
  2611. "stack/builder": "^1.0",
  2612. "symfony-cmf/routing": "^1.4",
  2613. "symfony/class-loader": "~3.4.0",
  2614. "symfony/console": "~3.4.0",
  2615. "symfony/dependency-injection": "~3.4.26",
  2616. "symfony/event-dispatcher": "~3.4.0",
  2617. "symfony/http-foundation": "~3.4.35",
  2618. "symfony/http-kernel": "~3.4.14",
  2619. "symfony/polyfill-iconv": "^1.0",
  2620. "symfony/process": "~3.4.0",
  2621. "symfony/psr-http-message-bridge": "^1.1.2",
  2622. "symfony/routing": "~3.4.0",
  2623. "symfony/serializer": "~3.4.0",
  2624. "symfony/translation": "~3.4.0",
  2625. "symfony/validator": "~3.4.0",
  2626. "symfony/yaml": "~3.4.5",
  2627. "twig/twig": "^1.38.2",
  2628. "typo3/phar-stream-wrapper": "^3.1.3"
  2629. },
  2630. "conflict": {
  2631. "drupal/pathauto": "<1.6",
  2632. "drush/drush": "<8.1.10"
  2633. },
  2634. "replace": {
  2635. "drupal/action": "self.version",
  2636. "drupal/aggregator": "self.version",
  2637. "drupal/automated_cron": "self.version",
  2638. "drupal/ban": "self.version",
  2639. "drupal/bartik": "self.version",
  2640. "drupal/basic_auth": "self.version",
  2641. "drupal/big_pipe": "self.version",
  2642. "drupal/block": "self.version",
  2643. "drupal/block_content": "self.version",
  2644. "drupal/block_place": "self.version",
  2645. "drupal/book": "self.version",
  2646. "drupal/breakpoint": "self.version",
  2647. "drupal/ckeditor": "self.version",
  2648. "drupal/claro": "self.version",
  2649. "drupal/classy": "self.version",
  2650. "drupal/color": "self.version",
  2651. "drupal/comment": "self.version",
  2652. "drupal/config": "self.version",
  2653. "drupal/config_translation": "self.version",
  2654. "drupal/contact": "self.version",
  2655. "drupal/content_moderation": "self.version",
  2656. "drupal/content_translation": "self.version",
  2657. "drupal/contextual": "self.version",
  2658. "drupal/core-annotation": "self.version",
  2659. "drupal/core-assertion": "self.version",
  2660. "drupal/core-bridge": "self.version",
  2661. "drupal/core-class-finder": "self.version",
  2662. "drupal/core-datetime": "self.version",
  2663. "drupal/core-dependency-injection": "self.version",
  2664. "drupal/core-diff": "self.version",
  2665. "drupal/core-discovery": "self.version",
  2666. "drupal/core-event-dispatcher": "self.version",
  2667. "drupal/core-file-cache": "self.version",
  2668. "drupal/core-file-security": "self.version",
  2669. "drupal/core-filesystem": "self.version",
  2670. "drupal/core-gettext": "self.version",
  2671. "drupal/core-graph": "self.version",
  2672. "drupal/core-http-foundation": "self.version",
  2673. "drupal/core-php-storage": "self.version",
  2674. "drupal/core-plugin": "self.version",
  2675. "drupal/core-proxy-builder": "self.version",
  2676. "drupal/core-render": "self.version",
  2677. "drupal/core-serialization": "self.version",
  2678. "drupal/core-transliteration": "self.version",
  2679. "drupal/core-utility": "self.version",
  2680. "drupal/core-uuid": "self.version",
  2681. "drupal/core-version": "self.version",
  2682. "drupal/datetime": "self.version",
  2683. "drupal/datetime_range": "self.version",
  2684. "drupal/dblog": "self.version",
  2685. "drupal/dynamic_page_cache": "self.version",
  2686. "drupal/editor": "self.version",
  2687. "drupal/entity_reference": "self.version",
  2688. "drupal/field": "self.version",
  2689. "drupal/field_layout": "self.version",
  2690. "drupal/field_ui": "self.version",
  2691. "drupal/file": "self.version",
  2692. "drupal/filter": "self.version",
  2693. "drupal/forum": "self.version",
  2694. "drupal/hal": "self.version",
  2695. "drupal/help": "self.version",
  2696. "drupal/help_topics": "self.version",
  2697. "drupal/history": "self.version",
  2698. "drupal/image": "self.version",
  2699. "drupal/inline_form_errors": "self.version",
  2700. "drupal/jsonapi": "self.version",
  2701. "drupal/language": "self.version",
  2702. "drupal/layout_builder": "self.version",
  2703. "drupal/layout_discovery": "self.version",
  2704. "drupal/link": "self.version",
  2705. "drupal/locale": "self.version",
  2706. "drupal/media": "self.version",
  2707. "drupal/media_library": "self.version",
  2708. "drupal/menu_link_content": "self.version",
  2709. "drupal/menu_ui": "self.version",
  2710. "drupal/migrate": "self.version",
  2711. "drupal/migrate_drupal": "self.version",
  2712. "drupal/migrate_drupal_multilingual": "self.version",
  2713. "drupal/migrate_drupal_ui": "self.version",
  2714. "drupal/minimal": "self.version",
  2715. "drupal/node": "self.version",
  2716. "drupal/options": "self.version",
  2717. "drupal/page_cache": "self.version",
  2718. "drupal/path": "self.version",
  2719. "drupal/path_alias": "self.version",
  2720. "drupal/quickedit": "self.version",
  2721. "drupal/rdf": "self.version",
  2722. "drupal/responsive_image": "self.version",
  2723. "drupal/rest": "self.version",
  2724. "drupal/search": "self.version",
  2725. "drupal/serialization": "self.version",
  2726. "drupal/settings_tray": "self.version",
  2727. "drupal/seven": "self.version",
  2728. "drupal/shortcut": "self.version",
  2729. "drupal/simpletest": "self.version",
  2730. "drupal/standard": "self.version",
  2731. "drupal/stark": "self.version",
  2732. "drupal/statistics": "self.version",
  2733. "drupal/syslog": "self.version",
  2734. "drupal/system": "self.version",
  2735. "drupal/taxonomy": "self.version",
  2736. "drupal/telephone": "self.version",
  2737. "drupal/text": "self.version",
  2738. "drupal/toolbar": "self.version",
  2739. "drupal/tour": "self.version",
  2740. "drupal/tracker": "self.version",
  2741. "drupal/update": "self.version",
  2742. "drupal/user": "self.version",
  2743. "drupal/views": "self.version",
  2744. "drupal/views_ui": "self.version",
  2745. "drupal/workflows": "self.version",
  2746. "drupal/workspaces": "self.version"
  2747. },
  2748. "type": "drupal-core",
  2749. "extra": {
  2750. "drupal-scaffold": {
  2751. "file-mapping": {
  2752. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2753. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2754. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2755. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2756. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2757. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2758. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2759. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2760. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2761. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2762. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2763. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2764. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2765. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2766. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2767. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2768. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2769. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2770. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2771. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2772. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2773. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2774. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2775. }
  2776. }
  2777. },
  2778. "autoload": {
  2779. "psr-4": {
  2780. "Drupal\\Core\\": "lib/Drupal/Core",
  2781. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2782. "Drupal\\Component\\": "lib/Drupal/Component"
  2783. },
  2784. "classmap": [
  2785. "lib/Drupal.php",
  2786. "lib/Drupal/Component/Utility/Timer.php",
  2787. "lib/Drupal/Component/Utility/Unicode.php",
  2788. "lib/Drupal/Core/Database/Database.php",
  2789. "lib/Drupal/Core/DrupalKernel.php",
  2790. "lib/Drupal/Core/DrupalKernelInterface.php",
  2791. "lib/Drupal/Core/Site/Settings.php"
  2792. ]
  2793. },
  2794. "notification-url": "https://packagist.org/downloads/",
  2795. "license": [
  2796. "GPL-2.0-or-later"
  2797. ],
  2798. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2799. "support": {
  2800. "source": "https://github.com/drupal/core/tree/8.9.20"
  2801. },
  2802. "time": "2021-11-17T21:24:28+00:00"
  2803. },
  2804. {
  2805. "name": "drupal/core-composer-scaffold",
  2806. "version": "8.9.20",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2810. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2815. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "composer-plugin-api": "^1 || ^2",
  2820. "php": ">=7.0.8"
  2821. },
  2822. "conflict": {
  2823. "drupal-composer/drupal-scaffold": "*"
  2824. },
  2825. "require-dev": {
  2826. "composer/composer": "^1.8@stable"
  2827. },
  2828. "type": "composer-plugin",
  2829. "extra": {
  2830. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2831. "branch-alias": {
  2832. "dev-master": "1.0.x-dev"
  2833. }
  2834. },
  2835. "autoload": {
  2836. "psr-4": {
  2837. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2838. }
  2839. },
  2840. "notification-url": "https://packagist.org/downloads/",
  2841. "license": [
  2842. "GPL-2.0-or-later"
  2843. ],
  2844. "description": "A flexible Composer project scaffold builder.",
  2845. "homepage": "https://www.drupal.org/project/drupal",
  2846. "keywords": [
  2847. "drupal"
  2848. ],
  2849. "support": {
  2850. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2851. },
  2852. "time": "2020-08-07T22:30:30+00:00"
  2853. },
  2854. {
  2855. "name": "drupal/core-recommended",
  2856. "version": "8.9.20",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://github.com/drupal/core-recommended.git",
  2860. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2865. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2866. "shasum": ""
  2867. },
  2868. "require": {
  2869. "asm89/stack-cors": "1.3.0",
  2870. "composer/semver": "1.5.1",
  2871. "doctrine/annotations": "v1.4.0",
  2872. "doctrine/cache": "v1.6.2",
  2873. "doctrine/collections": "v1.4.0",
  2874. "doctrine/common": "v2.7.3",
  2875. "doctrine/inflector": "v1.2.0",
  2876. "doctrine/lexer": "1.0.2",
  2877. "drupal/core": "8.9.20",
  2878. "easyrdf/easyrdf": "0.9.1",
  2879. "egulias/email-validator": "2.1.17",
  2880. "guzzlehttp/guzzle": "6.5.4",
  2881. "guzzlehttp/promises": "v1.3.1",
  2882. "guzzlehttp/psr7": "1.6.1",
  2883. "laminas/laminas-diactoros": "1.8.7p2",
  2884. "laminas/laminas-escaper": "2.6.1",
  2885. "laminas/laminas-feed": "2.12.2",
  2886. "laminas/laminas-stdlib": "3.2.1",
  2887. "laminas/laminas-zendframework-bridge": "1.0.4",
  2888. "masterminds/html5": "2.3.0",
  2889. "paragonie/random_compat": "v9.99.99",
  2890. "pear/archive_tar": "1.4.14",
  2891. "pear/console_getopt": "v1.4.3",
  2892. "pear/pear-core-minimal": "v1.10.10",
  2893. "pear/pear_exception": "v1.0.1",
  2894. "psr/container": "1.0.0",
  2895. "psr/http-message": "1.0.1",
  2896. "psr/log": "1.1.3",
  2897. "ralouphie/getallheaders": "3.0.3",
  2898. "stack/builder": "v1.0.5",
  2899. "symfony-cmf/routing": "1.4.1",
  2900. "symfony/class-loader": "v3.4.41",
  2901. "symfony/console": "v3.4.41",
  2902. "symfony/debug": "v3.4.41",
  2903. "symfony/dependency-injection": "v3.4.41",
  2904. "symfony/event-dispatcher": "v3.4.41",
  2905. "symfony/http-foundation": "v3.4.41",
  2906. "symfony/http-kernel": "v3.4.44",
  2907. "symfony/polyfill-ctype": "v1.17.0",
  2908. "symfony/polyfill-iconv": "v1.17.0",
  2909. "symfony/polyfill-intl-idn": "v1.17.0",
  2910. "symfony/polyfill-mbstring": "v1.17.0",
  2911. "symfony/polyfill-php56": "v1.17.0",
  2912. "symfony/polyfill-php70": "v1.17.0",
  2913. "symfony/polyfill-php72": "v1.17.0",
  2914. "symfony/polyfill-util": "v1.17.0",
  2915. "symfony/process": "v3.4.41",
  2916. "symfony/psr-http-message-bridge": "v1.1.2",
  2917. "symfony/routing": "v3.4.41",
  2918. "symfony/serializer": "v3.4.41",
  2919. "symfony/translation": "v3.4.41",
  2920. "symfony/validator": "v3.4.41",
  2921. "symfony/yaml": "v3.4.41",
  2922. "twig/twig": "v1.42.5",
  2923. "typo3/phar-stream-wrapper": "v3.1.4"
  2924. },
  2925. "conflict": {
  2926. "webflo/drupal-core-strict": "*"
  2927. },
  2928. "type": "metapackage",
  2929. "notification-url": "https://packagist.org/downloads/",
  2930. "license": [
  2931. "GPL-2.0-or-later"
  2932. ],
  2933. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2934. "support": {
  2935. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2936. },
  2937. "time": "2021-11-17T21:24:28+00:00"
  2938. },
  2939. {
  2940. "name": "drupal/ctools",
  2941. "version": "3.9.0",
  2942. "source": {
  2943. "type": "git",
  2944. "url": "https://git.drupalcode.org/project/ctools.git",
  2945. "reference": "8.x-3.9"
  2946. },
  2947. "dist": {
  2948. "type": "zip",
  2949. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.9.zip",
  2950. "reference": "8.x-3.9",
  2951. "shasum": "227ba06f5f98bded0658b83322949c33d1b3183e"
  2952. },
  2953. "require": {
  2954. "drupal/core": "^8.8 || ^9"
  2955. },
  2956. "type": "drupal-module",
  2957. "extra": {
  2958. "drupal": {
  2959. "version": "8.x-3.9",
  2960. "datestamp": "1658864511",
  2961. "security-coverage": {
  2962. "status": "covered",
  2963. "message": "Covered by Drupal's security advisory policy"
  2964. }
  2965. },
  2966. "branch-alias": {
  2967. "dev-8.x-3.x": "3.x-dev"
  2968. }
  2969. },
  2970. "notification-url": "https://packages.drupal.org/8/downloads",
  2971. "license": [
  2972. "GPL-2.0-or-later"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Kris Vanderwater (EclipseGc)",
  2977. "homepage": "https://www.drupal.org/u/eclipsegc",
  2978. "role": "Maintainer"
  2979. },
  2980. {
  2981. "name": "Jakob Perry (japerry)",
  2982. "homepage": "https://www.drupal.org/u/japerry",
  2983. "role": "Maintainer"
  2984. },
  2985. {
  2986. "name": "Tim Plunkett (tim.plunkett)",
  2987. "homepage": "https://www.drupal.org/u/timplunkett",
  2988. "role": "Maintainer"
  2989. },
  2990. {
  2991. "name": "James Gilliland (neclimdul)",
  2992. "homepage": "https://www.drupal.org/u/neclimdul",
  2993. "role": "Maintainer"
  2994. },
  2995. {
  2996. "name": "Daniel Wehner (dawehner)",
  2997. "homepage": "https://www.drupal.org/u/dawehner",
  2998. "role": "Maintainer"
  2999. },
  3000. {
  3001. "name": "joelpittet",
  3002. "homepage": "https://www.drupal.org/user/160302"
  3003. },
  3004. {
  3005. "name": "merlinofchaos",
  3006. "homepage": "https://www.drupal.org/user/26979"
  3007. },
  3008. {
  3009. "name": "neclimdul",
  3010. "homepage": "https://www.drupal.org/user/48673"
  3011. },
  3012. {
  3013. "name": "sdboyer",
  3014. "homepage": "https://www.drupal.org/user/146719"
  3015. },
  3016. {
  3017. "name": "sun",
  3018. "homepage": "https://www.drupal.org/user/54136"
  3019. },
  3020. {
  3021. "name": "tim.plunkett",
  3022. "homepage": "https://www.drupal.org/user/241634"
  3023. }
  3024. ],
  3025. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3026. "homepage": "https://www.drupal.org/project/ctools",
  3027. "support": {
  3028. "source": "https://git.drupalcode.org/project/ctools",
  3029. "issues": "https://www.drupal.org/project/issues/ctools"
  3030. }
  3031. },
  3032. {
  3033. "name": "drupal/date_range_formatter",
  3034. "version": "4.0.2",
  3035. "source": {
  3036. "type": "git",
  3037. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3038. "reference": "4.0.2"
  3039. },
  3040. "dist": {
  3041. "type": "zip",
  3042. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3043. "reference": "4.0.2",
  3044. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3045. },
  3046. "require": {
  3047. "drupal/core": "^8 || ^9 || ^10"
  3048. },
  3049. "type": "drupal-module",
  3050. "extra": {
  3051. "drupal": {
  3052. "version": "4.0.2",
  3053. "datestamp": "1703156621",
  3054. "security-coverage": {
  3055. "status": "covered",
  3056. "message": "Covered by Drupal's security advisory policy"
  3057. }
  3058. }
  3059. },
  3060. "notification-url": "https://packages.drupal.org/8/downloads",
  3061. "license": [
  3062. "GPL-2.0-or-later"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "maximpodorov",
  3067. "homepage": "https://www.drupal.org/user/515310"
  3068. },
  3069. {
  3070. "name": "sudishth",
  3071. "homepage": "https://www.drupal.org/user/1440562"
  3072. }
  3073. ],
  3074. "description": "Formats date ranges.",
  3075. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3076. "support": {
  3077. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3078. }
  3079. },
  3080. {
  3081. "name": "drupal/devel",
  3082. "version": "4.2.1",
  3083. "source": {
  3084. "type": "git",
  3085. "url": "https://git.drupalcode.org/project/devel.git",
  3086. "reference": "4.2.1"
  3087. },
  3088. "dist": {
  3089. "type": "zip",
  3090. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3091. "reference": "4.2.1",
  3092. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3093. },
  3094. "require": {
  3095. "doctrine/common": "^2.7",
  3096. "drupal/core": "^8.8 || ^9",
  3097. "symfony/var-dumper": "^4 || ^5"
  3098. },
  3099. "conflict": {
  3100. "kint-php/kint": "<3"
  3101. },
  3102. "require-dev": {
  3103. "drush/drush": "^10"
  3104. },
  3105. "suggest": {
  3106. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3107. },
  3108. "type": "drupal-module",
  3109. "extra": {
  3110. "drupal": {
  3111. "version": "4.2.1",
  3112. "datestamp": "1664317444",
  3113. "security-coverage": {
  3114. "status": "covered",
  3115. "message": "Covered by Drupal's security advisory policy"
  3116. }
  3117. },
  3118. "drush": {
  3119. "services": {
  3120. "drush.services.yml": "^9 || ^10"
  3121. }
  3122. }
  3123. },
  3124. "notification-url": "https://packages.drupal.org/8/downloads",
  3125. "license": [
  3126. "GPL-2.0-or-later"
  3127. ],
  3128. "authors": [
  3129. {
  3130. "name": "moshe weitzman",
  3131. "homepage": "https://www.drupal.org/user/23"
  3132. }
  3133. ],
  3134. "description": "Various blocks, pages, and functions for developers.",
  3135. "homepage": "https://www.drupal.org/project/devel",
  3136. "support": {
  3137. "source": "https://gitlab.com/drupalspoons/devel",
  3138. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3139. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3140. }
  3141. },
  3142. {
  3143. "name": "drupal/domain",
  3144. "version": "1.0.0-beta8",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://git.drupalcode.org/project/domain.git",
  3148. "reference": "8.x-1.0-beta8"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3153. "reference": "8.x-1.0-beta8",
  3154. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3155. },
  3156. "require": {
  3157. "drupal/core": "^8 || ^9"
  3158. },
  3159. "require-dev": {
  3160. "drupal/domain_access": "*",
  3161. "drupal/domain_config": "*"
  3162. },
  3163. "type": "drupal-module",
  3164. "extra": {
  3165. "drupal": {
  3166. "version": "8.x-1.0-beta8",
  3167. "datestamp": "1677511311",
  3168. "security-coverage": {
  3169. "status": "not-covered",
  3170. "message": "Beta releases are not covered by Drupal security advisories."
  3171. }
  3172. }
  3173. },
  3174. "notification-url": "https://packages.drupal.org/8/downloads",
  3175. "license": [
  3176. "GPL-2.0-or-later"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "agentrickard",
  3181. "homepage": "https://www.drupal.org/user/20975"
  3182. },
  3183. {
  3184. "name": "nonsie",
  3185. "homepage": "https://www.drupal.org/user/29899"
  3186. },
  3187. {
  3188. "name": "webflo",
  3189. "homepage": "https://www.drupal.org/user/254778"
  3190. }
  3191. ],
  3192. "description": "Creates domain records within a Drupal installation.",
  3193. "homepage": "https://www.drupal.org/project/domain",
  3194. "support": {
  3195. "source": "https://git.drupalcode.org/project/domain"
  3196. }
  3197. },
  3198. {
  3199. "name": "drupal/domain_access",
  3200. "version": "1.0.0-beta8",
  3201. "require": {
  3202. "drupal/core": "^8 || ^9",
  3203. "drupal/domain": "*"
  3204. },
  3205. "type": "metapackage",
  3206. "extra": {
  3207. "drupal": {
  3208. "version": "8.x-1.0-beta8",
  3209. "datestamp": "1677511311",
  3210. "security-coverage": {
  3211. "status": "not-covered",
  3212. "message": "Beta releases are not covered by Drupal security advisories."
  3213. }
  3214. }
  3215. },
  3216. "notification-url": "https://packages.drupal.org/8/downloads",
  3217. "license": [
  3218. "GPL-2.0-or-later"
  3219. ],
  3220. "authors": [
  3221. {
  3222. "name": "agentrickard",
  3223. "homepage": "https://www.drupal.org/user/20975"
  3224. },
  3225. {
  3226. "name": "nonsie",
  3227. "homepage": "https://www.drupal.org/user/29899"
  3228. },
  3229. {
  3230. "name": "webflo",
  3231. "homepage": "https://www.drupal.org/user/254778"
  3232. }
  3233. ],
  3234. "description": "Domain-based access control for content.",
  3235. "homepage": "https://www.drupal.org/project/domain",
  3236. "support": {
  3237. "source": "https://git.drupalcode.org/project/domain"
  3238. }
  3239. },
  3240. {
  3241. "name": "drupal/domain_config",
  3242. "version": "1.0.0-beta8",
  3243. "require": {
  3244. "drupal/core": "^8 || ^9",
  3245. "drupal/domain": "*"
  3246. },
  3247. "type": "metapackage",
  3248. "extra": {
  3249. "drupal": {
  3250. "version": "8.x-1.0-beta8",
  3251. "datestamp": "1677511311",
  3252. "security-coverage": {
  3253. "status": "not-covered",
  3254. "message": "Beta releases are not covered by Drupal security advisories."
  3255. }
  3256. }
  3257. },
  3258. "notification-url": "https://packages.drupal.org/8/downloads",
  3259. "license": [
  3260. "GPL-2.0-or-later"
  3261. ],
  3262. "authors": [
  3263. {
  3264. "name": "agentrickard",
  3265. "homepage": "https://www.drupal.org/user/20975"
  3266. },
  3267. {
  3268. "name": "nonsie",
  3269. "homepage": "https://www.drupal.org/user/29899"
  3270. },
  3271. {
  3272. "name": "webflo",
  3273. "homepage": "https://www.drupal.org/user/254778"
  3274. }
  3275. ],
  3276. "description": "Allows domain specific configuration.",
  3277. "homepage": "https://www.drupal.org/project/domain",
  3278. "support": {
  3279. "source": "https://git.drupalcode.org/project/domain"
  3280. }
  3281. },
  3282. {
  3283. "name": "drupal/domain_menu_access",
  3284. "version": "1.0.0-alpha2",
  3285. "source": {
  3286. "type": "git",
  3287. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3288. "reference": "8.x-1.0-alpha2"
  3289. },
  3290. "dist": {
  3291. "type": "zip",
  3292. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-8.x-1.0-alpha2.zip",
  3293. "reference": "8.x-1.0-alpha2",
  3294. "shasum": "9382513e0cd172844923686a0bb9f2324ba11709"
  3295. },
  3296. "require": {
  3297. "drupal/core": "~8.0",
  3298. "drupal/domain": "*",
  3299. "drupal/domain_access": "*"
  3300. },
  3301. "type": "drupal-module",
  3302. "extra": {
  3303. "drupal": {
  3304. "version": "8.x-1.0-alpha2",
  3305. "datestamp": "1519214884",
  3306. "security-coverage": {
  3307. "status": "not-covered",
  3308. "message": "Alpha releases are not covered by Drupal security advisories."
  3309. }
  3310. }
  3311. },
  3312. "notification-url": "https://packages.drupal.org/8/downloads",
  3313. "license": [
  3314. "GPL-2.0-or-later"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "maciej.zgadzaj",
  3319. "homepage": "https://www.drupal.org/user/271491"
  3320. },
  3321. {
  3322. "name": "pifagor",
  3323. "homepage": "https://www.drupal.org/user/2375692"
  3324. },
  3325. {
  3326. "name": "Sebastien M.",
  3327. "homepage": "https://www.drupal.org/user/380104"
  3328. },
  3329. {
  3330. "name": "tim-diels",
  3331. "homepage": "https://www.drupal.org/user/2915097"
  3332. }
  3333. ],
  3334. "description": "Domain-based access control for menu link.",
  3335. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3336. "support": {
  3337. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3338. }
  3339. },
  3340. {
  3341. "name": "drupal/domain_site_settings",
  3342. "version": "1.6.0",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3346. "reference": "8.x-1.6"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3351. "reference": "8.x-1.6",
  3352. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3353. },
  3354. "require": {
  3355. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3356. "drupal/domain": "^1.0 || ^2.0",
  3357. "drupal/domain_config": "*"
  3358. },
  3359. "type": "drupal-module",
  3360. "extra": {
  3361. "drupal": {
  3362. "version": "8.x-1.6",
  3363. "datestamp": "1726238712",
  3364. "security-coverage": {
  3365. "status": "covered",
  3366. "message": "Covered by Drupal's security advisory policy"
  3367. }
  3368. }
  3369. },
  3370. "notification-url": "https://packages.drupal.org/8/downloads",
  3371. "license": [
  3372. "GPL-2.0+"
  3373. ],
  3374. "authors": [
  3375. {
  3376. "name": "aloknarwaria",
  3377. "homepage": "https://www.drupal.org/user/906640"
  3378. },
  3379. {
  3380. "name": "jeroent",
  3381. "homepage": "https://www.drupal.org/user/2228934"
  3382. },
  3383. {
  3384. "name": "malaynayak",
  3385. "homepage": "https://www.drupal.org/user/3529755"
  3386. }
  3387. ],
  3388. "description": "Basic Site Setting for Domains.",
  3389. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3390. "keywords": [
  3391. "Drupal"
  3392. ],
  3393. "support": {
  3394. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3395. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3396. }
  3397. },
  3398. {
  3399. "name": "drupal/email_registration",
  3400. "version": "1.1.0",
  3401. "source": {
  3402. "type": "git",
  3403. "url": "https://git.drupalcode.org/project/email_registration.git",
  3404. "reference": "8.x-1.1"
  3405. },
  3406. "dist": {
  3407. "type": "zip",
  3408. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3409. "reference": "8.x-1.1",
  3410. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3411. },
  3412. "require": {
  3413. "drupal/core": "^8.7.7 || ^9"
  3414. },
  3415. "conflict": {
  3416. "drupal/commerce": "<2.12"
  3417. },
  3418. "require-dev": {
  3419. "drupal/commerce": "^2.0"
  3420. },
  3421. "type": "drupal-module",
  3422. "extra": {
  3423. "drupal": {
  3424. "version": "8.x-1.1",
  3425. "datestamp": "1592317072",
  3426. "security-coverage": {
  3427. "status": "covered",
  3428. "message": "Covered by Drupal's security advisory policy"
  3429. }
  3430. }
  3431. },
  3432. "notification-url": "https://packages.drupal.org/8/downloads",
  3433. "license": [
  3434. "GPL-2.0-or-later"
  3435. ],
  3436. "authors": [
  3437. {
  3438. "name": "Greg Knaddison (greggles)",
  3439. "homepage": "https://www.drupal.org/u/greggles",
  3440. "role": "Maintainer"
  3441. },
  3442. {
  3443. "name": "Andrey Postnikov (andypost)",
  3444. "homepage": "https://www.drupal.org/u/andypost",
  3445. "role": "Maintainer"
  3446. },
  3447. {
  3448. "name": "Chris Herberte",
  3449. "homepage": "https://www.drupal.org/u/chris-herberte",
  3450. "role": "Maintainer"
  3451. },
  3452. {
  3453. "name": "Moshe Weitzman (moshe weitzman)",
  3454. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3455. "role": "Maintainer"
  3456. },
  3457. {
  3458. "name": "Grevil",
  3459. "homepage": "https://www.drupal.org/user/3668491"
  3460. },
  3461. {
  3462. "name": "moshe weitzman",
  3463. "homepage": "https://www.drupal.org/user/23"
  3464. }
  3465. ],
  3466. "description": "Allows users to register with an email address as their username.",
  3467. "homepage": "https://www.drupal.org/project/email_registration",
  3468. "support": {
  3469. "source": "https://git.drupalcode.org/project/email_registration",
  3470. "issues": "http://drupal.org/project/issues/email_registration"
  3471. }
  3472. },
  3473. {
  3474. "name": "drupal/entity",
  3475. "version": "1.3.0",
  3476. "source": {
  3477. "type": "git",
  3478. "url": "https://git.drupalcode.org/project/entity.git",
  3479. "reference": "8.x-1.3"
  3480. },
  3481. "dist": {
  3482. "type": "zip",
  3483. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3484. "reference": "8.x-1.3",
  3485. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3486. },
  3487. "require": {
  3488. "drupal/core": "^8.8.2 || ^9"
  3489. },
  3490. "type": "drupal-module",
  3491. "extra": {
  3492. "drupal": {
  3493. "version": "8.x-1.3",
  3494. "datestamp": "1646324539",
  3495. "security-coverage": {
  3496. "status": "covered",
  3497. "message": "Covered by Drupal's security advisory policy"
  3498. }
  3499. }
  3500. },
  3501. "notification-url": "https://packages.drupal.org/8/downloads",
  3502. "license": [
  3503. "GPL-2.0-or-later"
  3504. ],
  3505. "authors": [
  3506. {
  3507. "name": "berdir",
  3508. "homepage": "https://www.drupal.org/user/214652"
  3509. },
  3510. {
  3511. "name": "bojanz",
  3512. "homepage": "https://www.drupal.org/user/86106"
  3513. },
  3514. {
  3515. "name": "dawehner",
  3516. "homepage": "https://www.drupal.org/user/99340"
  3517. },
  3518. {
  3519. "name": "dixon_",
  3520. "homepage": "https://www.drupal.org/user/239911"
  3521. },
  3522. {
  3523. "name": "fago",
  3524. "homepage": "https://www.drupal.org/user/16747"
  3525. },
  3526. {
  3527. "name": "mglaman",
  3528. "homepage": "https://www.drupal.org/user/2416470"
  3529. },
  3530. {
  3531. "name": "TR",
  3532. "homepage": "https://www.drupal.org/user/202830"
  3533. }
  3534. ],
  3535. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3536. "homepage": "https://www.drupal.org/project/entity",
  3537. "support": {
  3538. "source": "https://git.drupalcode.org/project/entity",
  3539. "issues": "https://www.drupal.org/project/issues/entity"
  3540. }
  3541. },
  3542. {
  3543. "name": "drupal/features",
  3544. "version": "3.11.0",
  3545. "source": {
  3546. "type": "git",
  3547. "url": "https://git.drupalcode.org/project/features.git",
  3548. "reference": "8.x-3.11"
  3549. },
  3550. "dist": {
  3551. "type": "zip",
  3552. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3553. "reference": "8.x-3.11",
  3554. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3555. },
  3556. "require": {
  3557. "drupal/config_update": "^1.4",
  3558. "drupal/core": "^8.8 || ^9"
  3559. },
  3560. "type": "drupal-module",
  3561. "extra": {
  3562. "drupal": {
  3563. "version": "8.x-3.11",
  3564. "datestamp": "1591023154",
  3565. "security-coverage": {
  3566. "status": "covered",
  3567. "message": "Covered by Drupal's security advisory policy"
  3568. }
  3569. },
  3570. "drush": {
  3571. "services": {
  3572. "drush.services.yml": "^9"
  3573. }
  3574. }
  3575. },
  3576. "notification-url": "https://packages.drupal.org/8/downloads",
  3577. "license": [
  3578. "GPL-2.0-or-later"
  3579. ],
  3580. "authors": [
  3581. {
  3582. "name": "dawehner",
  3583. "homepage": "https://www.drupal.org/user/99340"
  3584. },
  3585. {
  3586. "name": "donquixote",
  3587. "homepage": "https://www.drupal.org/user/459338"
  3588. },
  3589. {
  3590. "name": "e2thex",
  3591. "homepage": "https://www.drupal.org/user/189123"
  3592. },
  3593. {
  3594. "name": "febbraro",
  3595. "homepage": "https://www.drupal.org/user/43670"
  3596. },
  3597. {
  3598. "name": "flocondetoile",
  3599. "homepage": "https://www.drupal.org/user/2006064"
  3600. },
  3601. {
  3602. "name": "jmiccolis",
  3603. "homepage": "https://www.drupal.org/user/31731"
  3604. },
  3605. {
  3606. "name": "joseph.olstad",
  3607. "homepage": "https://www.drupal.org/user/1321830"
  3608. },
  3609. {
  3610. "name": "mpotter",
  3611. "homepage": "https://www.drupal.org/user/616192"
  3612. },
  3613. {
  3614. "name": "nedjo",
  3615. "homepage": "https://www.drupal.org/user/4481"
  3616. },
  3617. {
  3618. "name": "tim.plunkett",
  3619. "homepage": "https://www.drupal.org/user/241634"
  3620. }
  3621. ],
  3622. "description": "Enables administrators to package configuration into modules",
  3623. "homepage": "https://www.drupal.org/project/features",
  3624. "support": {
  3625. "source": "https://git.drupalcode.org/project/features"
  3626. }
  3627. },
  3628. {
  3629. "name": "drupal/field_group",
  3630. "version": "3.3.0",
  3631. "source": {
  3632. "type": "git",
  3633. "url": "https://git.drupalcode.org/project/field_group.git",
  3634. "reference": "8.x-3.3"
  3635. },
  3636. "dist": {
  3637. "type": "zip",
  3638. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.3.zip",
  3639. "reference": "8.x-3.3",
  3640. "shasum": "c7a423b1d7643ee40dd1543d72fa04e8ac1756e4"
  3641. },
  3642. "require": {
  3643. "drupal/core": "^8.8 || ^9"
  3644. },
  3645. "require-dev": {
  3646. "drupal/jquery_ui_accordion": "^1.0"
  3647. },
  3648. "type": "drupal-module",
  3649. "extra": {
  3650. "drupal": {
  3651. "version": "8.x-3.3",
  3652. "datestamp": "1663516404",
  3653. "security-coverage": {
  3654. "status": "covered",
  3655. "message": "Covered by Drupal's security advisory policy"
  3656. }
  3657. }
  3658. },
  3659. "notification-url": "https://packages.drupal.org/8/downloads",
  3660. "license": [
  3661. "GPL-2.0-or-later"
  3662. ],
  3663. "authors": [
  3664. {
  3665. "name": "anybody",
  3666. "homepage": "https://www.drupal.org/user/291091"
  3667. },
  3668. {
  3669. "name": "grevil",
  3670. "homepage": "https://www.drupal.org/user/3668491"
  3671. },
  3672. {
  3673. "name": "hydra",
  3674. "homepage": "https://www.drupal.org/user/647364"
  3675. },
  3676. {
  3677. "name": "joevagyok",
  3678. "homepage": "https://www.drupal.org/user/2876343"
  3679. },
  3680. {
  3681. "name": "jyve",
  3682. "homepage": "https://www.drupal.org/user/591438"
  3683. },
  3684. {
  3685. "name": "nils.destoop",
  3686. "homepage": "https://www.drupal.org/user/361625"
  3687. },
  3688. {
  3689. "name": "Stalski",
  3690. "homepage": "https://www.drupal.org/user/322618"
  3691. },
  3692. {
  3693. "name": "swentel",
  3694. "homepage": "https://www.drupal.org/user/107403"
  3695. }
  3696. ],
  3697. "description": "Provides the field_group module.",
  3698. "homepage": "https://www.drupal.org/project/field_group",
  3699. "support": {
  3700. "source": "https://git.drupalcode.org/project/field_group",
  3701. "issues": "https://www.drupal.org/project/issues/field_group"
  3702. }
  3703. },
  3704. {
  3705. "name": "drupal/filefield_sources",
  3706. "version": "1.0.0-alpha5",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3710. "reference": "8.x-1.0-alpha5"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3715. "reference": "8.x-1.0-alpha5",
  3716. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3717. },
  3718. "require": {
  3719. "drupal/core": "^8 || ^9"
  3720. },
  3721. "require-dev": {
  3722. "drupal/imce": "^2.3"
  3723. },
  3724. "type": "drupal-module",
  3725. "extra": {
  3726. "drupal": {
  3727. "version": "8.x-1.0-alpha5",
  3728. "datestamp": "1642555269",
  3729. "security-coverage": {
  3730. "status": "not-covered",
  3731. "message": "Alpha releases are not covered by Drupal security advisories."
  3732. }
  3733. }
  3734. },
  3735. "notification-url": "https://packages.drupal.org/8/downloads",
  3736. "license": [
  3737. "GPL-2.0-or-later"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "Nate Lampton (quicksketch)",
  3742. "homepage": "https://www.drupal.org/u/quicksketch",
  3743. "role": "Maintainer"
  3744. },
  3745. {
  3746. "name": "Andrey Khromyshev (profak)",
  3747. "homepage": "https://www.drupal.org/u/profak",
  3748. "role": "Maintainer"
  3749. },
  3750. {
  3751. "name": "David Valdez (gnuget)",
  3752. "homepage": "https://www.drupal.org/u/gnuget",
  3753. "role": "Maintainer"
  3754. },
  3755. {
  3756. "name": "quicksketch",
  3757. "homepage": "https://www.drupal.org/user/35821"
  3758. }
  3759. ],
  3760. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3761. "homepage": "https://www.drupal.org/project/filefield_sources",
  3762. "support": {
  3763. "source": "https://git.drupalcode.org/project/filefield_sources",
  3764. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3765. "irc": "irc://irc.freenode.org/drupal-contribute"
  3766. }
  3767. },
  3768. {
  3769. "name": "drupal/filter_perms",
  3770. "version": "1.0.0-alpha1",
  3771. "source": {
  3772. "type": "git",
  3773. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3774. "reference": "8.x-1.0-alpha1"
  3775. },
  3776. "dist": {
  3777. "type": "zip",
  3778. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3779. "reference": "8.x-1.0-alpha1",
  3780. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3781. },
  3782. "require": {
  3783. "drupal/core": "^8 || ^9"
  3784. },
  3785. "type": "drupal-module",
  3786. "extra": {
  3787. "drupal": {
  3788. "version": "8.x-1.0-alpha1",
  3789. "datestamp": "1595202904",
  3790. "security-coverage": {
  3791. "status": "not-covered",
  3792. "message": "Alpha releases are not covered by Drupal security advisories."
  3793. }
  3794. }
  3795. },
  3796. "notification-url": "https://packages.drupal.org/8/downloads",
  3797. "license": [
  3798. "GPL-2.0-or-later"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "cYu",
  3803. "homepage": "https://www.drupal.org/user/202205"
  3804. },
  3805. {
  3806. "name": "deekayen",
  3807. "homepage": "https://www.drupal.org/user/972"
  3808. },
  3809. {
  3810. "name": "ivavictoria",
  3811. "homepage": "https://www.drupal.org/user/3061533"
  3812. },
  3813. {
  3814. "name": "justcaldwell",
  3815. "homepage": "https://www.drupal.org/user/290069"
  3816. },
  3817. {
  3818. "name": "mgbellaire",
  3819. "homepage": "https://www.drupal.org/user/1831932"
  3820. },
  3821. {
  3822. "name": "willzyx",
  3823. "homepage": "https://www.drupal.org/user/1043862"
  3824. }
  3825. ],
  3826. "description": "Provides role and module filters to simplify the user permissions page.",
  3827. "homepage": "https://www.drupal.org/project/filter_perms",
  3828. "support": {
  3829. "source": "https://git.drupalcode.org/project/filter_perms"
  3830. }
  3831. },
  3832. {
  3833. "name": "drupal/honeypot",
  3834. "version": "2.0.2",
  3835. "source": {
  3836. "type": "git",
  3837. "url": "https://git.drupalcode.org/project/honeypot.git",
  3838. "reference": "2.0.2"
  3839. },
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3843. "reference": "2.0.2",
  3844. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3845. },
  3846. "require": {
  3847. "drupal/core": "^8.8.2 || ^9"
  3848. },
  3849. "type": "drupal-module",
  3850. "extra": {
  3851. "drupal": {
  3852. "version": "2.0.2",
  3853. "datestamp": "1651895165",
  3854. "security-coverage": {
  3855. "status": "covered",
  3856. "message": "Covered by Drupal's security advisory policy"
  3857. }
  3858. }
  3859. },
  3860. "notification-url": "https://packages.drupal.org/8/downloads",
  3861. "license": [
  3862. "GPL-2.0-or-later"
  3863. ],
  3864. "authors": [
  3865. {
  3866. "name": "Jeff Geerling",
  3867. "homepage": "https://www.drupal.org/user/389011",
  3868. "email": "geerlingguy@mac.com"
  3869. },
  3870. {
  3871. "name": "Manuel Garcia",
  3872. "homepage": "https://www.drupal.org/user/213194"
  3873. },
  3874. {
  3875. "name": "TR",
  3876. "homepage": "https://www.drupal.org/user/202830"
  3877. },
  3878. {
  3879. "name": "vijaycs85",
  3880. "homepage": "https://www.drupal.org/user/93488"
  3881. }
  3882. ],
  3883. "description": "Mitigates spam form submissions using the honeypot method.",
  3884. "homepage": "https://www.drupal.org/project/honeypot",
  3885. "keywords": [
  3886. "deterrent",
  3887. "form",
  3888. "honeypot",
  3889. "honeytrap",
  3890. "php",
  3891. "spam"
  3892. ],
  3893. "support": {
  3894. "source": "https://git.drupalcode.org/project/honeypot",
  3895. "issues": "https://www.drupal.org/project/issues/honeypot"
  3896. }
  3897. },
  3898. {
  3899. "name": "drupal/jquery_ui",
  3900. "version": "1.4.0",
  3901. "source": {
  3902. "type": "git",
  3903. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3904. "reference": "8.x-1.4"
  3905. },
  3906. "dist": {
  3907. "type": "zip",
  3908. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  3909. "reference": "8.x-1.4",
  3910. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  3911. },
  3912. "require": {
  3913. "drupal/core": "^8 || ^9"
  3914. },
  3915. "type": "drupal-module",
  3916. "extra": {
  3917. "drupal": {
  3918. "version": "8.x-1.4",
  3919. "datestamp": "1582149957",
  3920. "security-coverage": {
  3921. "status": "covered",
  3922. "message": "Covered by Drupal's security advisory policy"
  3923. }
  3924. }
  3925. },
  3926. "notification-url": "https://packages.drupal.org/8/downloads",
  3927. "license": [
  3928. "GPL-2.0-or-later"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "bnjmnm",
  3933. "homepage": "https://www.drupal.org/user/2369194"
  3934. },
  3935. {
  3936. "name": "jjeff",
  3937. "homepage": "https://www.drupal.org/user/17190"
  3938. },
  3939. {
  3940. "name": "lauriii",
  3941. "homepage": "https://www.drupal.org/user/1078742"
  3942. },
  3943. {
  3944. "name": "litwol",
  3945. "homepage": "https://www.drupal.org/user/78134"
  3946. },
  3947. {
  3948. "name": "mfb",
  3949. "homepage": "https://www.drupal.org/user/12302"
  3950. },
  3951. {
  3952. "name": "mfer",
  3953. "homepage": "https://www.drupal.org/user/25701"
  3954. },
  3955. {
  3956. "name": "mikelutz",
  3957. "homepage": "https://www.drupal.org/user/2972409"
  3958. },
  3959. {
  3960. "name": "nod_",
  3961. "homepage": "https://www.drupal.org/user/598310"
  3962. },
  3963. {
  3964. "name": "phenaproxima",
  3965. "homepage": "https://www.drupal.org/user/205645"
  3966. },
  3967. {
  3968. "name": "RobLoach",
  3969. "homepage": "https://www.drupal.org/user/61114"
  3970. },
  3971. {
  3972. "name": "sun",
  3973. "homepage": "https://www.drupal.org/user/54136"
  3974. },
  3975. {
  3976. "name": "webchick",
  3977. "homepage": "https://www.drupal.org/user/24967"
  3978. },
  3979. {
  3980. "name": "Wim Leers",
  3981. "homepage": "https://www.drupal.org/user/99777"
  3982. },
  3983. {
  3984. "name": "zrpnr",
  3985. "homepage": "https://www.drupal.org/user/1448368"
  3986. }
  3987. ],
  3988. "description": "Provides jQuery UI library.",
  3989. "homepage": "https://www.drupal.org/project/jquery_ui",
  3990. "support": {
  3991. "source": "https://git.drupalcode.org/project/jquery_ui"
  3992. }
  3993. },
  3994. {
  3995. "name": "drupal/jquery_ui_draggable",
  3996. "version": "1.2.0",
  3997. "source": {
  3998. "type": "git",
  3999. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4000. "reference": "8.x-1.2"
  4001. },
  4002. "dist": {
  4003. "type": "zip",
  4004. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  4005. "reference": "8.x-1.2",
  4006. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  4007. },
  4008. "require": {
  4009. "drupal/core": "^8 || ^9",
  4010. "drupal/jquery_ui": "*"
  4011. },
  4012. "type": "drupal-module",
  4013. "extra": {
  4014. "drupal": {
  4015. "version": "8.x-1.2",
  4016. "datestamp": "1582150027",
  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-or-later"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "bnjmnm",
  4030. "homepage": "https://www.drupal.org/user/2369194"
  4031. },
  4032. {
  4033. "name": "lauriii",
  4034. "homepage": "https://www.drupal.org/user/1078742"
  4035. },
  4036. {
  4037. "name": "zrpnr",
  4038. "homepage": "https://www.drupal.org/user/1448368"
  4039. }
  4040. ],
  4041. "description": "Provides jQuery UI Draggable library.",
  4042. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4043. "support": {
  4044. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4045. }
  4046. },
  4047. {
  4048. "name": "drupal/jquery_ui_droppable",
  4049. "version": "1.2.0",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4053. "reference": "8.x-1.2"
  4054. },
  4055. "dist": {
  4056. "type": "zip",
  4057. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4058. "reference": "8.x-1.2",
  4059. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4060. },
  4061. "require": {
  4062. "drupal/core": "^8 || ^9",
  4063. "drupal/jquery_ui": "*",
  4064. "drupal/jquery_ui_draggable": "*"
  4065. },
  4066. "type": "drupal-module",
  4067. "extra": {
  4068. "drupal": {
  4069. "version": "8.x-1.2",
  4070. "datestamp": "1582150071",
  4071. "security-coverage": {
  4072. "status": "covered",
  4073. "message": "Covered by Drupal's security advisory policy"
  4074. }
  4075. }
  4076. },
  4077. "notification-url": "https://packages.drupal.org/8/downloads",
  4078. "license": [
  4079. "GPL-2.0-or-later"
  4080. ],
  4081. "authors": [
  4082. {
  4083. "name": "bnjmnm",
  4084. "homepage": "https://www.drupal.org/user/2369194"
  4085. },
  4086. {
  4087. "name": "lauriii",
  4088. "homepage": "https://www.drupal.org/user/1078742"
  4089. },
  4090. {
  4091. "name": "zrpnr",
  4092. "homepage": "https://www.drupal.org/user/1448368"
  4093. }
  4094. ],
  4095. "description": "Provides jQuery UI Droppable library.",
  4096. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4097. "support": {
  4098. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4099. }
  4100. },
  4101. {
  4102. "name": "drupal/jquery_ui_sortable",
  4103. "version": "1.1.0",
  4104. "source": {
  4105. "type": "git",
  4106. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4107. "reference": "8.x-1.1"
  4108. },
  4109. "dist": {
  4110. "type": "zip",
  4111. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4112. "reference": "8.x-1.1",
  4113. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4114. },
  4115. "require": {
  4116. "drupal/core": "^8 || ^9",
  4117. "drupal/jquery_ui": "*"
  4118. },
  4119. "type": "drupal-module",
  4120. "extra": {
  4121. "drupal": {
  4122. "version": "8.x-1.1",
  4123. "datestamp": "1583174744",
  4124. "security-coverage": {
  4125. "status": "covered",
  4126. "message": "Covered by Drupal's security advisory policy"
  4127. }
  4128. }
  4129. },
  4130. "notification-url": "https://packages.drupal.org/8/downloads",
  4131. "license": [
  4132. "GPL-2.0-or-later"
  4133. ],
  4134. "authors": [
  4135. {
  4136. "name": "bnjmnm",
  4137. "homepage": "https://www.drupal.org/user/2369194"
  4138. },
  4139. {
  4140. "name": "lauriii",
  4141. "homepage": "https://www.drupal.org/user/1078742"
  4142. },
  4143. {
  4144. "name": "zrpnr",
  4145. "homepage": "https://www.drupal.org/user/1448368"
  4146. }
  4147. ],
  4148. "description": "Provides jQuery UI Sortable library.",
  4149. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4150. "support": {
  4151. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4152. }
  4153. },
  4154. {
  4155. "name": "drupal/linkit",
  4156. "version": "6.0.0-beta3",
  4157. "source": {
  4158. "type": "git",
  4159. "url": "https://git.drupalcode.org/project/linkit.git",
  4160. "reference": "6.0.0-beta3"
  4161. },
  4162. "dist": {
  4163. "type": "zip",
  4164. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip",
  4165. "reference": "6.0.0-beta3",
  4166. "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065"
  4167. },
  4168. "require": {
  4169. "drupal/core": "^8.7.7 || ^9"
  4170. },
  4171. "require-dev": {
  4172. "drupal/imce": "*"
  4173. },
  4174. "type": "drupal-module",
  4175. "extra": {
  4176. "drupal": {
  4177. "version": "6.0.0-beta3",
  4178. "datestamp": "1632946984",
  4179. "security-coverage": {
  4180. "status": "not-covered",
  4181. "message": "Beta releases are not covered by Drupal security advisories."
  4182. }
  4183. }
  4184. },
  4185. "notification-url": "https://packages.drupal.org/8/downloads",
  4186. "license": [
  4187. "GPL-2.0-or-later"
  4188. ],
  4189. "authors": [
  4190. {
  4191. "name": "Emil Stjerneman",
  4192. "homepage": "https://stjerneman.com",
  4193. "email": "emil@stjerneman.com",
  4194. "role": "Maintainer"
  4195. },
  4196. {
  4197. "name": "johnwebdev",
  4198. "homepage": "https://www.drupal.org/user/3331569"
  4199. },
  4200. {
  4201. "name": "mark_fullmer",
  4202. "homepage": "https://www.drupal.org/user/2612816"
  4203. }
  4204. ],
  4205. "description": "Linkit - Enriched linking experience",
  4206. "homepage": "http://drupal.org/project/linkit",
  4207. "support": {
  4208. "source": "http://cgit.drupalcode.org/linkit",
  4209. "issues": "http://drupal.org/project/linkit"
  4210. }
  4211. },
  4212. {
  4213. "name": "drupal/login_emailusername",
  4214. "version": "2.1.0",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4218. "reference": "2.1.0"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4223. "reference": "2.1.0",
  4224. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4225. },
  4226. "require": {
  4227. "drupal/core": "^8.8 || ^9 || ^10"
  4228. },
  4229. "type": "drupal-module",
  4230. "extra": {
  4231. "drupal": {
  4232. "version": "2.1.0",
  4233. "datestamp": "1677072401",
  4234. "security-coverage": {
  4235. "status": "covered",
  4236. "message": "Covered by Drupal's security advisory policy"
  4237. }
  4238. },
  4239. "branch-alias": {
  4240. "dev-8.x-1.x": "8.1.x-dev"
  4241. }
  4242. },
  4243. "notification-url": "https://packages.drupal.org/8/downloads",
  4244. "license": [
  4245. "GPL-2.0-or-later"
  4246. ],
  4247. "authors": [
  4248. {
  4249. "name": "See contributors",
  4250. "homepage": "https://www.drupal.org/node/2820429/committers",
  4251. "role": "contributor"
  4252. },
  4253. {
  4254. "name": "rjjakes",
  4255. "homepage": "https://www.drupal.org/user/3457245"
  4256. },
  4257. {
  4258. "name": "VladimirAus",
  4259. "homepage": "https://www.drupal.org/user/673120"
  4260. }
  4261. ],
  4262. "description": "Login with the email as username.",
  4263. "homepage": "https://drupal.org/project/login_emailusername",
  4264. "support": {
  4265. "source": "https://git.drupalcode.org/project/login_emailusername",
  4266. "issues": "https://drupal.org/project/issues/login_emailusername"
  4267. }
  4268. },
  4269. {
  4270. "name": "drupal/maillog",
  4271. "version": "1.0.0-beta1",
  4272. "source": {
  4273. "type": "git",
  4274. "url": "https://git.drupalcode.org/project/maillog.git",
  4275. "reference": "8.x-1.0-beta1"
  4276. },
  4277. "dist": {
  4278. "type": "zip",
  4279. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4280. "reference": "8.x-1.0-beta1",
  4281. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4282. },
  4283. "require": {
  4284. "drupal/core": "^8 || ^9"
  4285. },
  4286. "type": "drupal-module",
  4287. "extra": {
  4288. "drupal": {
  4289. "version": "8.x-1.0-beta1",
  4290. "datestamp": "1600800168",
  4291. "security-coverage": {
  4292. "status": "not-covered",
  4293. "message": "Beta releases are not covered by Drupal security advisories."
  4294. }
  4295. }
  4296. },
  4297. "notification-url": "https://packages.drupal.org/8/downloads",
  4298. "license": [
  4299. "GPL-2.0-or-later"
  4300. ],
  4301. "authors": [
  4302. {
  4303. "name": "berdir",
  4304. "homepage": "https://www.drupal.org/user/214652"
  4305. },
  4306. {
  4307. "name": "damienmckenna",
  4308. "homepage": "https://www.drupal.org/user/108450"
  4309. },
  4310. {
  4311. "name": "miro_dietiker",
  4312. "homepage": "https://www.drupal.org/user/227761"
  4313. },
  4314. {
  4315. "name": "pluess",
  4316. "homepage": "https://www.drupal.org/user/84659"
  4317. }
  4318. ],
  4319. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4320. "homepage": "https://www.drupal.org/project/maillog",
  4321. "support": {
  4322. "source": "https://git.drupalcode.org/project/maillog"
  4323. }
  4324. },
  4325. {
  4326. "name": "drupal/matomo",
  4327. "version": "1.9.0",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://git.drupalcode.org/project/matomo.git",
  4331. "reference": "8.x-1.9"
  4332. },
  4333. "dist": {
  4334. "type": "zip",
  4335. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4336. "reference": "8.x-1.9",
  4337. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4338. },
  4339. "require": {
  4340. "drupal/core": "~8.5"
  4341. },
  4342. "require-dev": {
  4343. "drupal/php": "*",
  4344. "drupal/token": "*"
  4345. },
  4346. "type": "drupal-module",
  4347. "extra": {
  4348. "branch-alias": {
  4349. "dev-1.x": "1.x-dev"
  4350. },
  4351. "drupal": {
  4352. "version": "8.x-1.9",
  4353. "datestamp": "1549615080",
  4354. "security-coverage": {
  4355. "status": "covered",
  4356. "message": "Covered by Drupal's security advisory policy"
  4357. }
  4358. }
  4359. },
  4360. "notification-url": "https://packages.drupal.org/8/downloads",
  4361. "license": [
  4362. "GPL-2.0+"
  4363. ],
  4364. "authors": [
  4365. {
  4366. "name": "hass",
  4367. "homepage": "https://www.drupal.org/u/hass"
  4368. },
  4369. {
  4370. "name": "See other contributors",
  4371. "homepage": "https://www.drupal.org/node/247808/committers"
  4372. }
  4373. ],
  4374. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4375. "homepage": "https://www.drupal.org/project/matomo",
  4376. "support": {
  4377. "source": "https://git.drupal.org/project/matomo.git",
  4378. "issues": "https://www.drupal.org/project/issues/matomo"
  4379. }
  4380. },
  4381. {
  4382. "name": "drupal/menu_admin_per_menu",
  4383. "version": "1.1.0",
  4384. "source": {
  4385. "type": "git",
  4386. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4387. "reference": "8.x-1.1"
  4388. },
  4389. "dist": {
  4390. "type": "zip",
  4391. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4392. "reference": "8.x-1.1",
  4393. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4394. },
  4395. "require": {
  4396. "drupal/core": "^8 || ^9"
  4397. },
  4398. "type": "drupal-module",
  4399. "extra": {
  4400. "drupal": {
  4401. "version": "8.x-1.1",
  4402. "datestamp": "1591098397",
  4403. "security-coverage": {
  4404. "status": "covered",
  4405. "message": "Covered by Drupal's security advisory policy"
  4406. }
  4407. }
  4408. },
  4409. "notification-url": "https://packages.drupal.org/8/downloads",
  4410. "license": [
  4411. "GPL-2.0-or-later"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "anrikun",
  4416. "homepage": "https://www.drupal.org/user/410199"
  4417. },
  4418. {
  4419. "name": "jeroent",
  4420. "homepage": "https://www.drupal.org/user/2228934"
  4421. },
  4422. {
  4423. "name": "jonas139",
  4424. "homepage": "https://www.drupal.org/user/2873401"
  4425. },
  4426. {
  4427. "name": "mkdok",
  4428. "homepage": "https://www.drupal.org/user/3308753"
  4429. }
  4430. ],
  4431. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4432. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4433. "support": {
  4434. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4435. }
  4436. },
  4437. {
  4438. "name": "drupal/metatag",
  4439. "version": "1.16.0",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://git.drupalcode.org/project/metatag.git",
  4443. "reference": "8.x-1.16"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip",
  4448. "reference": "8.x-1.16",
  4449. "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c"
  4450. },
  4451. "require": {
  4452. "drupal/core": "^8 || ^9",
  4453. "drupal/token": "^1.0"
  4454. },
  4455. "require-dev": {
  4456. "drupal/devel": "^4.0",
  4457. "drupal/metatag_dc": "*",
  4458. "drupal/metatag_open_graph": "*",
  4459. "drupal/page_manager": "4.x-dev",
  4460. "drupal/panelizer": "4.x-dev",
  4461. "drupal/redirect": "1.x-dev"
  4462. },
  4463. "type": "drupal-module",
  4464. "extra": {
  4465. "drupal": {
  4466. "version": "8.x-1.16",
  4467. "datestamp": "1615820867",
  4468. "security-coverage": {
  4469. "status": "covered",
  4470. "message": "Covered by Drupal's security advisory policy"
  4471. }
  4472. }
  4473. },
  4474. "notification-url": "https://packages.drupal.org/8/downloads",
  4475. "license": [
  4476. "GPL-2.0-or-later"
  4477. ],
  4478. "authors": [
  4479. {
  4480. "name": "See contributors",
  4481. "homepage": "https://www.drupal.org/node/640498/committers",
  4482. "role": "Developer"
  4483. },
  4484. {
  4485. "name": "dave reid",
  4486. "homepage": "https://www.drupal.org/user/53892"
  4487. }
  4488. ],
  4489. "description": "Manage meta tags for all entities.",
  4490. "homepage": "https://www.drupal.org/project/metatag",
  4491. "keywords": [
  4492. "Drupal",
  4493. "seo"
  4494. ],
  4495. "support": {
  4496. "source": "https://git.drupalcode.org/project/metatag",
  4497. "issues": "https://www.drupal.org/project/issues/metatag",
  4498. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4499. }
  4500. },
  4501. {
  4502. "name": "drupal/migrate_plus",
  4503. "version": "5.0.0",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4507. "reference": "8.x-5.0"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4512. "reference": "8.x-5.0",
  4513. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4514. },
  4515. "require": {
  4516. "drupal/core": "^8 || ^9"
  4517. },
  4518. "require-dev": {
  4519. "drupal/migrate_example_advanced_setup": "*",
  4520. "drupal/migrate_example_setup": "*"
  4521. },
  4522. "suggest": {
  4523. "ext-soap": "*",
  4524. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4525. },
  4526. "type": "drupal-module",
  4527. "extra": {
  4528. "drupal": {
  4529. "version": "8.x-5.0",
  4530. "datestamp": "1586234154",
  4531. "security-coverage": {
  4532. "status": "covered",
  4533. "message": "Covered by Drupal's security advisory policy"
  4534. }
  4535. }
  4536. },
  4537. "notification-url": "https://packages.drupal.org/8/downloads",
  4538. "license": [
  4539. "GPL-2.0+"
  4540. ],
  4541. "authors": [
  4542. {
  4543. "name": "Mike Ryan",
  4544. "homepage": "https://www.drupal.org/u/mikeryan",
  4545. "role": "Maintainer"
  4546. },
  4547. {
  4548. "name": "Lucas Hedding",
  4549. "homepage": "https://www.drupal.org/u/heddn",
  4550. "role": "Maintainer"
  4551. }
  4552. ],
  4553. "description": "Enhancements to core migration support.",
  4554. "homepage": "https://www.drupal.org/project/migrate_plus",
  4555. "support": {
  4556. "source": "https://git.drupalcode.org/project/migrate_plus",
  4557. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4558. "slack": "#migrate"
  4559. }
  4560. },
  4561. {
  4562. "name": "drupal/migrate_tools",
  4563. "version": "4.5.0",
  4564. "source": {
  4565. "type": "git",
  4566. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4567. "reference": "8.x-4.5"
  4568. },
  4569. "dist": {
  4570. "type": "zip",
  4571. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4572. "reference": "8.x-4.5",
  4573. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4574. },
  4575. "require": {
  4576. "drupal/core": "^8 || ^9",
  4577. "drupal/migrate_plus": "^4 || ^5"
  4578. },
  4579. "require-dev": {
  4580. "drupal/migrate_plus": "4.x-dev",
  4581. "drupal/migrate_source_csv": "^2.2",
  4582. "drush/drush": "^10"
  4583. },
  4584. "type": "drupal-module",
  4585. "extra": {
  4586. "drupal": {
  4587. "version": "8.x-4.5",
  4588. "datestamp": "1574693285",
  4589. "security-coverage": {
  4590. "status": "covered",
  4591. "message": "Covered by Drupal's security advisory policy"
  4592. }
  4593. },
  4594. "drush": {
  4595. "services": {
  4596. "drush.services.yml": "^9 || ^10"
  4597. }
  4598. }
  4599. },
  4600. "notification-url": "https://packages.drupal.org/8/downloads",
  4601. "license": [
  4602. "GPL-2.0-or-later"
  4603. ],
  4604. "authors": [
  4605. {
  4606. "name": "heddn",
  4607. "homepage": "https://www.drupal.org/user/1463982"
  4608. },
  4609. {
  4610. "name": "mikeryan",
  4611. "homepage": "https://www.drupal.org/user/4420"
  4612. },
  4613. {
  4614. "name": "moshe weitzman",
  4615. "homepage": "https://www.drupal.org/user/23"
  4616. }
  4617. ],
  4618. "description": "Tools to assist in developing and running migrations.",
  4619. "homepage": "http://drupal.org/project/migrate_tools",
  4620. "support": {
  4621. "source": "http://cgit.drupalcode.org/migrate_tools",
  4622. "issues": "http://drupal.org/project/migrate_tools",
  4623. "irc": "irc://irc.freenode.org/drupal-migrate"
  4624. }
  4625. },
  4626. {
  4627. "name": "drupal/path_alias_xt",
  4628. "version": "dev-1.x",
  4629. "source": {
  4630. "type": "git",
  4631. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4632. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4633. },
  4634. "require": {
  4635. "drupal/core": "^8.7.7 || ^9"
  4636. },
  4637. "type": "drupal-module",
  4638. "extra": {
  4639. "branch-alias": {
  4640. "dev-1.x": "1.x-dev"
  4641. },
  4642. "drupal": {
  4643. "version": "8.x-1.x-dev",
  4644. "datestamp": "1582322571",
  4645. "security-coverage": {
  4646. "status": "not-covered",
  4647. "message": "Dev releases are not covered by Drupal security advisories."
  4648. }
  4649. }
  4650. },
  4651. "notification-url": "https://packages.drupal.org/8/downloads",
  4652. "license": [
  4653. "GPL-2.0-or-later"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "RdeBoer",
  4658. "homepage": "https://www.drupal.org/user/404007"
  4659. },
  4660. {
  4661. "name": "adriancid",
  4662. "homepage": "https://www.drupal.org/user/1962106"
  4663. },
  4664. {
  4665. "name": "sdstyles",
  4666. "homepage": "https://www.drupal.org/user/1420228"
  4667. }
  4668. ],
  4669. "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.",
  4670. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4671. "support": {
  4672. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4673. },
  4674. "time": "2020-05-24T05:57:09+00:00"
  4675. },
  4676. {
  4677. "name": "drupal/pathauto",
  4678. "version": "1.10.0",
  4679. "source": {
  4680. "type": "git",
  4681. "url": "https://git.drupalcode.org/project/pathauto.git",
  4682. "reference": "8.x-1.10"
  4683. },
  4684. "dist": {
  4685. "type": "zip",
  4686. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4687. "reference": "8.x-1.10",
  4688. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4689. },
  4690. "require": {
  4691. "drupal/core": "^8.8 || ^9",
  4692. "drupal/ctools": "*",
  4693. "drupal/token": "*"
  4694. },
  4695. "suggest": {
  4696. "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."
  4697. },
  4698. "type": "drupal-module",
  4699. "extra": {
  4700. "drupal": {
  4701. "version": "8.x-1.10",
  4702. "datestamp": "1650806739",
  4703. "security-coverage": {
  4704. "status": "covered",
  4705. "message": "Covered by Drupal's security advisory policy"
  4706. }
  4707. },
  4708. "drush": {
  4709. "services": {
  4710. "drush.services.yml": "^9 || ^10"
  4711. }
  4712. }
  4713. },
  4714. "notification-url": "https://packages.drupal.org/8/downloads",
  4715. "license": [
  4716. "GPL-2.0-or-later"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "Berdir",
  4721. "homepage": "https://www.drupal.org/user/214652"
  4722. },
  4723. {
  4724. "name": "Dave Reid",
  4725. "homepage": "https://www.drupal.org/user/53892"
  4726. },
  4727. {
  4728. "name": "Freso",
  4729. "homepage": "https://www.drupal.org/user/27504"
  4730. },
  4731. {
  4732. "name": "greggles",
  4733. "homepage": "https://www.drupal.org/user/36762"
  4734. }
  4735. ],
  4736. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4737. "homepage": "https://www.drupal.org/project/pathauto",
  4738. "support": {
  4739. "source": "https://cgit.drupalcode.org/pathauto",
  4740. "issues": "https://www.drupal.org/project/issues/pathauto",
  4741. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4742. }
  4743. },
  4744. {
  4745. "name": "drupal/profile",
  4746. "version": "1.4.0",
  4747. "source": {
  4748. "type": "git",
  4749. "url": "https://git.drupalcode.org/project/profile.git",
  4750. "reference": "8.x-1.4"
  4751. },
  4752. "dist": {
  4753. "type": "zip",
  4754. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4755. "reference": "8.x-1.4",
  4756. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4757. },
  4758. "require": {
  4759. "drupal/core": "^8.9 || ^9 || ^10",
  4760. "drupal/entity": "^1.0-rc2"
  4761. },
  4762. "require-dev": {
  4763. "drupal/token": "^1.7"
  4764. },
  4765. "type": "drupal-module",
  4766. "extra": {
  4767. "drupal": {
  4768. "version": "8.x-1.4",
  4769. "datestamp": "1652430373",
  4770. "security-coverage": {
  4771. "status": "covered",
  4772. "message": "Covered by Drupal's security advisory policy"
  4773. }
  4774. }
  4775. },
  4776. "notification-url": "https://packages.drupal.org/8/downloads",
  4777. "license": [
  4778. "GPL-2.0-or-later"
  4779. ],
  4780. "authors": [
  4781. {
  4782. "name": "bojanz",
  4783. "homepage": "https://www.drupal.org/user/86106"
  4784. },
  4785. {
  4786. "name": "daggerhart",
  4787. "homepage": "https://www.drupal.org/user/167806"
  4788. },
  4789. {
  4790. "name": "fago",
  4791. "homepage": "https://www.drupal.org/user/16747"
  4792. },
  4793. {
  4794. "name": "jsacksick",
  4795. "homepage": "https://www.drupal.org/user/972218"
  4796. },
  4797. {
  4798. "name": "mglaman",
  4799. "homepage": "https://www.drupal.org/user/2416470"
  4800. },
  4801. {
  4802. "name": "pcambra",
  4803. "homepage": "https://www.drupal.org/user/122101"
  4804. }
  4805. ],
  4806. "description": "Provides configurable user profiles.",
  4807. "homepage": "http://drupal.org/project/profile",
  4808. "support": {
  4809. "source": "https://git.drupalcode.org/project/profile"
  4810. }
  4811. },
  4812. {
  4813. "name": "drupal/redirect",
  4814. "version": "1.6.0",
  4815. "source": {
  4816. "type": "git",
  4817. "url": "https://git.drupalcode.org/project/redirect.git",
  4818. "reference": "8.x-1.6"
  4819. },
  4820. "dist": {
  4821. "type": "zip",
  4822. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4823. "reference": "8.x-1.6",
  4824. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4825. },
  4826. "require": {
  4827. "drupal/core": "^8.8 || ^9"
  4828. },
  4829. "type": "drupal-module",
  4830. "extra": {
  4831. "drupal": {
  4832. "version": "8.x-1.6",
  4833. "datestamp": "1589312204",
  4834. "security-coverage": {
  4835. "status": "covered",
  4836. "message": "Covered by Drupal's security advisory policy"
  4837. }
  4838. }
  4839. },
  4840. "notification-url": "https://packages.drupal.org/8/downloads",
  4841. "license": [
  4842. "GPL-2.0-or-later"
  4843. ],
  4844. "authors": [
  4845. {
  4846. "name": "Berdir",
  4847. "homepage": "https://www.drupal.org/user/214652"
  4848. },
  4849. {
  4850. "name": "Dave Reid",
  4851. "homepage": "https://www.drupal.org/user/53892"
  4852. },
  4853. {
  4854. "name": "pifagor",
  4855. "homepage": "https://www.drupal.org/user/2375692"
  4856. }
  4857. ],
  4858. "description": "Allows users to redirect from old URLs to new URLs.",
  4859. "homepage": "https://www.drupal.org/project/redirect",
  4860. "support": {
  4861. "source": "https://git.drupalcode.org/project/redirect"
  4862. }
  4863. },
  4864. {
  4865. "name": "drupal/redis",
  4866. "version": "1.5.0",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://git.drupalcode.org/project/redis.git",
  4870. "reference": "8.x-1.5"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  4875. "reference": "8.x-1.5",
  4876. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  4877. },
  4878. "require": {
  4879. "drupal/core": "^8.8 || ^9"
  4880. },
  4881. "suggest": {
  4882. "predis/predis": "^1.1.1"
  4883. },
  4884. "type": "drupal-module",
  4885. "extra": {
  4886. "drupal": {
  4887. "version": "8.x-1.5",
  4888. "datestamp": "1609972488",
  4889. "security-coverage": {
  4890. "status": "covered",
  4891. "message": "Covered by Drupal's security advisory policy"
  4892. }
  4893. }
  4894. },
  4895. "autoload": {
  4896. "psr-4": {
  4897. "Drupal\\redis\\": "src"
  4898. }
  4899. },
  4900. "notification-url": "https://packages.drupal.org/8/downloads",
  4901. "license": [
  4902. "GPL-2.0-or-later"
  4903. ],
  4904. "authors": [
  4905. {
  4906. "name": "berdir",
  4907. "homepage": "https://www.drupal.org/user/214652"
  4908. },
  4909. {
  4910. "name": "greg.1.anderson",
  4911. "homepage": "https://www.drupal.org/user/438598"
  4912. },
  4913. {
  4914. "name": "kporras07",
  4915. "homepage": "https://www.drupal.org/user/1349780"
  4916. },
  4917. {
  4918. "name": "pounard",
  4919. "homepage": "https://www.drupal.org/user/240164"
  4920. }
  4921. ],
  4922. "description": "Integration of Drupal with the Redis key-value store.",
  4923. "homepage": "https://www.drupal.org/project/redis",
  4924. "support": {
  4925. "source": "https://git.drupalcode.org/project/redis"
  4926. }
  4927. },
  4928. {
  4929. "name": "drupal/restui",
  4930. "version": "1.21.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://git.drupalcode.org/project/restui.git",
  4934. "reference": "8.x-1.21"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4939. "reference": "8.x-1.21",
  4940. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4941. },
  4942. "require": {
  4943. "drupal/core": "^8.7.7 || ^9 || ^10"
  4944. },
  4945. "type": "drupal-module",
  4946. "extra": {
  4947. "drupal": {
  4948. "version": "8.x-1.21",
  4949. "datestamp": "1659086914",
  4950. "security-coverage": {
  4951. "status": "covered",
  4952. "message": "Covered by Drupal's security advisory policy"
  4953. }
  4954. }
  4955. },
  4956. "notification-url": "https://packages.drupal.org/8/downloads",
  4957. "license": [
  4958. "GPL-2.0-or-later"
  4959. ],
  4960. "authors": [
  4961. {
  4962. "name": "-enzo-",
  4963. "homepage": "https://www.drupal.org/user/294937"
  4964. },
  4965. {
  4966. "name": "clemens.tolboom",
  4967. "homepage": "https://www.drupal.org/user/125814"
  4968. },
  4969. {
  4970. "name": "juampynr",
  4971. "homepage": "https://www.drupal.org/user/682736"
  4972. },
  4973. {
  4974. "name": "kamkejj",
  4975. "homepage": "https://www.drupal.org/user/81043"
  4976. },
  4977. {
  4978. "name": "vipin.mittal18",
  4979. "homepage": "https://www.drupal.org/user/319716"
  4980. }
  4981. ],
  4982. "description": "Provides a user interface to manage REST resources.",
  4983. "homepage": "https://www.drupal.org/project/restui",
  4984. "support": {
  4985. "source": "https://git.drupalcode.org/project/restui"
  4986. }
  4987. },
  4988. {
  4989. "name": "drupal/search_api",
  4990. "version": "1.23.0",
  4991. "source": {
  4992. "type": "git",
  4993. "url": "https://git.drupalcode.org/project/search_api.git",
  4994. "reference": "8.x-1.23"
  4995. },
  4996. "dist": {
  4997. "type": "zip",
  4998. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  4999. "reference": "8.x-1.23",
  5000. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  5001. },
  5002. "require": {
  5003. "drupal/core": "^8.8 || ^9"
  5004. },
  5005. "conflict": {
  5006. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5007. },
  5008. "require-dev": {
  5009. "drupal/language_fallback_fix": "@dev",
  5010. "drupal/search_api_autocomplete": "@dev",
  5011. "drupal/search_api_db": "*"
  5012. },
  5013. "suggest": {
  5014. "drupal/facets": "Adds the ability to create faceted searches.",
  5015. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5016. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5017. },
  5018. "type": "drupal-module",
  5019. "extra": {
  5020. "drupal": {
  5021. "version": "8.x-1.23",
  5022. "datestamp": "1642935837",
  5023. "security-coverage": {
  5024. "status": "covered",
  5025. "message": "Covered by Drupal's security advisory policy"
  5026. }
  5027. },
  5028. "drush": {
  5029. "services": {
  5030. "drush.services.yml": "^9 || ^10"
  5031. }
  5032. }
  5033. },
  5034. "notification-url": "https://packages.drupal.org/8/downloads",
  5035. "license": [
  5036. "GPL-2.0-or-later"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "Thomas Seidl",
  5041. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5042. },
  5043. {
  5044. "name": "Nick Veenhof",
  5045. "homepage": "https://www.drupal.org/u/nick_vh"
  5046. },
  5047. {
  5048. "name": "See other contributors",
  5049. "homepage": "https://www.drupal.org/node/790418/committers"
  5050. }
  5051. ],
  5052. "description": "Provides a generic framework for modules offering search capabilities.",
  5053. "homepage": "https://www.drupal.org/project/search_api",
  5054. "support": {
  5055. "source": "https://git.drupalcode.org/project/search_api",
  5056. "issues": "https://www.drupal.org/project/issues/search_api",
  5057. "irc": "irc://irc.freenode.org/drupal-search-api"
  5058. }
  5059. },
  5060. {
  5061. "name": "drupal/simple_sitemap",
  5062. "version": "3.11.0",
  5063. "source": {
  5064. "type": "git",
  5065. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5066. "reference": "8.x-3.11"
  5067. },
  5068. "dist": {
  5069. "type": "zip",
  5070. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  5071. "reference": "8.x-3.11",
  5072. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  5073. },
  5074. "require": {
  5075. "drupal/core": "^8 || ^9",
  5076. "ext-xmlwriter": "*"
  5077. },
  5078. "type": "drupal-module",
  5079. "extra": {
  5080. "drupal": {
  5081. "version": "8.x-3.11",
  5082. "datestamp": "1658781789",
  5083. "security-coverage": {
  5084. "status": "covered",
  5085. "message": "Covered by Drupal's security advisory policy"
  5086. }
  5087. },
  5088. "drush": {
  5089. "services": {
  5090. "drush.services.yml": "^9 || ^10"
  5091. }
  5092. }
  5093. },
  5094. "notification-url": "https://packages.drupal.org/8/downloads",
  5095. "license": [
  5096. "GPL-2.0-or-later"
  5097. ],
  5098. "authors": [
  5099. {
  5100. "name": "Pawel Ginalski (gbyte)",
  5101. "homepage": "https://www.drupal.org/u/gbyte",
  5102. "email": "contact@gbyte.dev",
  5103. "role": "Maintainer"
  5104. },
  5105. {
  5106. "name": "walkingdexter",
  5107. "homepage": "https://www.drupal.org/user/3251330"
  5108. }
  5109. ],
  5110. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5111. "homepage": "https://drupal.org/project/simple_sitemap",
  5112. "support": {
  5113. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5114. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5115. "irc": "irc://irc.freenode.org/drupal-contribute"
  5116. }
  5117. },
  5118. {
  5119. "name": "drupal/synonyms",
  5120. "version": "1.0.0-alpha3",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://git.drupalcode.org/project/synonyms.git",
  5124. "reference": "8.x-1.0-alpha3"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5129. "reference": "8.x-1.0-alpha3",
  5130. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5131. },
  5132. "require": {
  5133. "drupal/core": "^8 || ^9"
  5134. },
  5135. "type": "drupal-module",
  5136. "extra": {
  5137. "drupal": {
  5138. "version": "8.x-1.0-alpha3",
  5139. "datestamp": "1609623594",
  5140. "security-coverage": {
  5141. "status": "not-covered",
  5142. "message": "Alpha releases are not covered by Drupal security advisories."
  5143. }
  5144. }
  5145. },
  5146. "notification-url": "https://packages.drupal.org/8/downloads",
  5147. "license": [
  5148. "GPL-2.0-or-later"
  5149. ],
  5150. "authors": [
  5151. {
  5152. "name": "bojanz",
  5153. "homepage": "https://www.drupal.org/user/86106"
  5154. },
  5155. {
  5156. "name": "bucefal91",
  5157. "homepage": "https://www.drupal.org/user/504128"
  5158. },
  5159. {
  5160. "name": "devad",
  5161. "homepage": "https://www.drupal.org/user/2268520"
  5162. },
  5163. {
  5164. "name": "Zen",
  5165. "homepage": "https://www.drupal.org/user/21209"
  5166. }
  5167. ],
  5168. "description": "Provides synonyms feature for content entities.",
  5169. "homepage": "https://www.drupal.org/project/synonyms",
  5170. "support": {
  5171. "source": "https://git.drupalcode.org/project/synonyms"
  5172. }
  5173. },
  5174. {
  5175. "name": "drupal/token",
  5176. "version": "1.10.0",
  5177. "source": {
  5178. "type": "git",
  5179. "url": "https://git.drupalcode.org/project/token.git",
  5180. "reference": "8.x-1.10"
  5181. },
  5182. "dist": {
  5183. "type": "zip",
  5184. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  5185. "reference": "8.x-1.10",
  5186. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  5187. },
  5188. "require": {
  5189. "drupal/core": "^8.8 || ^9"
  5190. },
  5191. "type": "drupal-module",
  5192. "extra": {
  5193. "drupal": {
  5194. "version": "8.x-1.10",
  5195. "datestamp": "1638619775",
  5196. "security-coverage": {
  5197. "status": "covered",
  5198. "message": "Covered by Drupal's security advisory policy"
  5199. }
  5200. },
  5201. "drush": {
  5202. "services": {
  5203. "drush.services.yml": "^9 || ^10"
  5204. }
  5205. }
  5206. },
  5207. "notification-url": "https://packages.drupal.org/8/downloads",
  5208. "license": [
  5209. "GPL-2.0-or-later"
  5210. ],
  5211. "authors": [
  5212. {
  5213. "name": "Berdir",
  5214. "homepage": "https://www.drupal.org/user/214652"
  5215. },
  5216. {
  5217. "name": "Dave Reid",
  5218. "homepage": "https://www.drupal.org/user/53892"
  5219. },
  5220. {
  5221. "name": "eaton",
  5222. "homepage": "https://www.drupal.org/user/16496"
  5223. },
  5224. {
  5225. "name": "fago",
  5226. "homepage": "https://www.drupal.org/user/16747"
  5227. },
  5228. {
  5229. "name": "greggles",
  5230. "homepage": "https://www.drupal.org/user/36762"
  5231. },
  5232. {
  5233. "name": "mikeryan",
  5234. "homepage": "https://www.drupal.org/user/4420"
  5235. }
  5236. ],
  5237. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5238. "homepage": "https://www.drupal.org/project/token",
  5239. "support": {
  5240. "source": "https://git.drupalcode.org/project/token"
  5241. }
  5242. },
  5243. {
  5244. "name": "drupal/toolbar_themes",
  5245. "version": "dev-1.x",
  5246. "source": {
  5247. "type": "git",
  5248. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5249. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5250. },
  5251. "require": {
  5252. "drupal/core": "*"
  5253. },
  5254. "type": "drupal-module",
  5255. "extra": {
  5256. "branch-alias": {
  5257. "dev-1.x": "1.x-dev"
  5258. },
  5259. "drupal": {
  5260. "version": "8.x-1.0-alpha4+10-dev",
  5261. "datestamp": "1510689485",
  5262. "security-coverage": {
  5263. "status": "not-covered",
  5264. "message": "Project has not opted into security advisory coverage!"
  5265. }
  5266. }
  5267. },
  5268. "notification-url": "https://packages.drupal.org/8/downloads",
  5269. "license": [
  5270. "GPL-2.0-or-later"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "Jeff Burnz",
  5275. "homepage": "https://www.drupal.org/user/61393"
  5276. }
  5277. ],
  5278. "description": "Apply themes to the toolbar.",
  5279. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5280. "support": {
  5281. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5282. },
  5283. "time": "2017-11-14T19:57:02+00:00"
  5284. },
  5285. {
  5286. "name": "drupal/translation_views",
  5287. "version": "1.0.0-alpha11",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://git.drupalcode.org/project/translation_views.git",
  5291. "reference": "8.x-1.0-alpha11"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5296. "reference": "8.x-1.0-alpha11",
  5297. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5298. },
  5299. "require": {
  5300. "drupal/core": "^8.8 || ^9 || ^10"
  5301. },
  5302. "require-dev": {
  5303. "drupal/translators_content": "^1.0@alpha"
  5304. },
  5305. "type": "drupal-module",
  5306. "extra": {
  5307. "drupal": {
  5308. "version": "8.x-1.0-alpha11",
  5309. "datestamp": "1679660668",
  5310. "security-coverage": {
  5311. "status": "not-covered",
  5312. "message": "Project has not opted into security advisory coverage!"
  5313. }
  5314. }
  5315. },
  5316. "notification-url": "https://packages.drupal.org/8/downloads",
  5317. "license": [
  5318. "GPL-2.0-or-later"
  5319. ],
  5320. "authors": [
  5321. {
  5322. "name": "matsbla",
  5323. "homepage": "https://www.drupal.org/user/2325394"
  5324. },
  5325. {
  5326. "name": "vlad.dancer",
  5327. "homepage": "https://www.drupal.org/user/903844"
  5328. }
  5329. ],
  5330. "description": "Create customized lists and queries of translations from your database.",
  5331. "homepage": "https://www.drupal.org/project/translation_views",
  5332. "support": {
  5333. "source": "https://git.drupalcode.org/project/translation_views"
  5334. }
  5335. },
  5336. {
  5337. "name": "drupal/upgrade_status",
  5338. "version": "3.19.0",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5342. "reference": "8.x-3.19"
  5343. },
  5344. "dist": {
  5345. "type": "zip",
  5346. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5347. "reference": "8.x-3.19",
  5348. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5349. },
  5350. "require": {
  5351. "drupal/core": "^8 || ^9",
  5352. "mathieuviossat/arraytotexttable": "~1.0.0",
  5353. "mglaman/phpstan-drupal": "^1.0.0",
  5354. "nikic/php-parser": "^4.0.0",
  5355. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5356. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5357. "webflo/drupal-finder": "^1.2"
  5358. },
  5359. "type": "drupal-module",
  5360. "extra": {
  5361. "drupal": {
  5362. "version": "8.x-3.19",
  5363. "datestamp": "1678815320",
  5364. "security-coverage": {
  5365. "status": "covered",
  5366. "message": "Covered by Drupal's security advisory policy"
  5367. }
  5368. },
  5369. "drush": {
  5370. "services": {
  5371. "drush.services.yml": "^9 || ^10"
  5372. }
  5373. }
  5374. },
  5375. "notification-url": "https://packages.drupal.org/8/downloads",
  5376. "license": [
  5377. "GPL-2.0-or-later"
  5378. ],
  5379. "authors": [
  5380. {
  5381. "name": "Gábor Hojtsy",
  5382. "homepage": "https://www.drupal.org/user/4166"
  5383. }
  5384. ],
  5385. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5386. "homepage": "http://drupal.org/project/upgrade_status",
  5387. "support": {
  5388. "source": "https://git.drupalcode.org/project/upgrade_status"
  5389. }
  5390. },
  5391. {
  5392. "name": "drupal/url_to_video_filter",
  5393. "version": "2.0.0",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5397. "reference": "2.0.0"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5402. "reference": "2.0.0",
  5403. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5404. },
  5405. "require": {
  5406. "drupal/core": "^8 || ^9"
  5407. },
  5408. "type": "drupal-module",
  5409. "extra": {
  5410. "drupal": {
  5411. "version": "2.0.0",
  5412. "datestamp": "1607298389",
  5413. "security-coverage": {
  5414. "status": "covered",
  5415. "message": "Covered by Drupal's security advisory policy"
  5416. }
  5417. }
  5418. },
  5419. "notification-url": "https://packages.drupal.org/8/downloads",
  5420. "license": [
  5421. "GPL-2.0-or-later"
  5422. ],
  5423. "authors": [
  5424. {
  5425. "name": "Jaypan",
  5426. "homepage": "https://www.drupal.org/user/324696"
  5427. }
  5428. ],
  5429. "description": "Text filter to convert URLs to embedded videos",
  5430. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5431. "support": {
  5432. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5433. }
  5434. },
  5435. {
  5436. "name": "drupal/views_bulk_edit",
  5437. "version": "2.7.0",
  5438. "source": {
  5439. "type": "git",
  5440. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5441. "reference": "8.x-2.7"
  5442. },
  5443. "dist": {
  5444. "type": "zip",
  5445. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5446. "reference": "8.x-2.7",
  5447. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5448. },
  5449. "require": {
  5450. "drupal/core": "^8 || ^9"
  5451. },
  5452. "require-dev": {
  5453. "drupal/views_bulk_operations": "~3.0"
  5454. },
  5455. "suggest": {
  5456. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5457. },
  5458. "type": "drupal-module",
  5459. "extra": {
  5460. "drupal": {
  5461. "version": "8.x-2.7",
  5462. "datestamp": "1664355764",
  5463. "security-coverage": {
  5464. "status": "covered",
  5465. "message": "Covered by Drupal's security advisory policy"
  5466. }
  5467. }
  5468. },
  5469. "notification-url": "https://packages.drupal.org/8/downloads",
  5470. "license": [
  5471. "GPL-2.0+"
  5472. ],
  5473. "authors": [
  5474. {
  5475. "name": "Marcin Grabias",
  5476. "homepage": "https://www.drupal.org/u/graber"
  5477. },
  5478. {
  5479. "name": "benjy",
  5480. "homepage": "https://www.drupal.org/user/1852732"
  5481. },
  5482. {
  5483. "name": "graber",
  5484. "homepage": "https://www.drupal.org/user/1599440"
  5485. },
  5486. {
  5487. "name": "grevil",
  5488. "homepage": "https://www.drupal.org/user/3668491"
  5489. },
  5490. {
  5491. "name": "joseph.olstad",
  5492. "homepage": "https://www.drupal.org/user/1321830"
  5493. }
  5494. ],
  5495. "description": "Allows bulk edition of entity field values.",
  5496. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5497. "support": {
  5498. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5499. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5500. }
  5501. },
  5502. {
  5503. "name": "drupal/views_bulk_operations",
  5504. "version": "3.9.0",
  5505. "source": {
  5506. "type": "git",
  5507. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5508. "reference": "8.x-3.9"
  5509. },
  5510. "dist": {
  5511. "type": "zip",
  5512. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5513. "reference": "8.x-3.9",
  5514. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5515. },
  5516. "require": {
  5517. "drupal/core": "^8.8 || ^9"
  5518. },
  5519. "require-dev": {
  5520. "drush/drush": "^10"
  5521. },
  5522. "suggest": {
  5523. "drush/drush": "^9 || ^10"
  5524. },
  5525. "type": "drupal-module",
  5526. "extra": {
  5527. "drupal": {
  5528. "version": "8.x-3.9",
  5529. "datestamp": "1597319021",
  5530. "security-coverage": {
  5531. "status": "covered",
  5532. "message": "Covered by Drupal's security advisory policy"
  5533. }
  5534. },
  5535. "drush": {
  5536. "services": {
  5537. "drush.services.yml": "^9 || ^10"
  5538. }
  5539. }
  5540. },
  5541. "notification-url": "https://packages.drupal.org/8/downloads",
  5542. "license": [
  5543. "GPL-2.0-or-later"
  5544. ],
  5545. "authors": [
  5546. {
  5547. "name": "Marcin Grabias",
  5548. "homepage": "https://www.drupal.org/u/graber"
  5549. },
  5550. {
  5551. "name": "Jon Pugh",
  5552. "homepage": "https://www.drupal.org/user/17028"
  5553. },
  5554. {
  5555. "name": "bojanz",
  5556. "homepage": "https://www.drupal.org/user/86106"
  5557. },
  5558. {
  5559. "name": "infojunkie",
  5560. "homepage": "https://www.drupal.org/user/48424"
  5561. },
  5562. {
  5563. "name": "joelpittet",
  5564. "homepage": "https://www.drupal.org/user/160302"
  5565. }
  5566. ],
  5567. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5568. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5569. "support": {
  5570. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5571. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5572. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5573. }
  5574. },
  5575. {
  5576. "name": "drupal/workflow",
  5577. "version": "1.3.0",
  5578. "source": {
  5579. "type": "git",
  5580. "url": "https://git.drupalcode.org/project/workflow.git",
  5581. "reference": "8.x-1.3"
  5582. },
  5583. "dist": {
  5584. "type": "zip",
  5585. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5586. "reference": "8.x-1.3",
  5587. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5588. },
  5589. "require": {
  5590. "drupal/core": "^8 || ^9"
  5591. },
  5592. "type": "drupal-module",
  5593. "extra": {
  5594. "drupal": {
  5595. "version": "8.x-1.3",
  5596. "datestamp": "1590740623",
  5597. "security-coverage": {
  5598. "status": "covered",
  5599. "message": "Covered by Drupal's security advisory policy"
  5600. }
  5601. }
  5602. },
  5603. "notification-url": "https://packages.drupal.org/8/downloads",
  5604. "license": [
  5605. "GPL-2.0-or-later"
  5606. ],
  5607. "authors": [
  5608. {
  5609. "name": "Bastlynn",
  5610. "homepage": "https://www.drupal.org/user/275249"
  5611. },
  5612. {
  5613. "name": "eaton",
  5614. "homepage": "https://www.drupal.org/user/16496"
  5615. },
  5616. {
  5617. "name": "Heine",
  5618. "homepage": "https://www.drupal.org/user/17943"
  5619. },
  5620. {
  5621. "name": "JacobSingh",
  5622. "homepage": "https://www.drupal.org/user/68912"
  5623. },
  5624. {
  5625. "name": "johnv",
  5626. "homepage": "https://www.drupal.org/user/591042"
  5627. },
  5628. {
  5629. "name": "jvandyk",
  5630. "homepage": "https://www.drupal.org/user/2375"
  5631. },
  5632. {
  5633. "name": "mfredrickson",
  5634. "homepage": "https://www.drupal.org/user/31994"
  5635. },
  5636. {
  5637. "name": "NancyDru",
  5638. "homepage": "https://www.drupal.org/user/101412"
  5639. },
  5640. {
  5641. "name": "q0rban",
  5642. "homepage": "https://www.drupal.org/user/31022"
  5643. }
  5644. ],
  5645. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5646. "homepage": "https://www.drupal.org/project/workflow",
  5647. "support": {
  5648. "source": "https://git.drupalcode.org/project/workflow"
  5649. }
  5650. },
  5651. {
  5652. "name": "drush/drush",
  5653. "version": "9.7.3",
  5654. "source": {
  5655. "type": "git",
  5656. "url": "https://github.com/drush-ops/drush.git",
  5657. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210"
  5658. },
  5659. "dist": {
  5660. "type": "zip",
  5661. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5662. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5663. "shasum": ""
  5664. },
  5665. "require": {
  5666. "chi-teck/drupal-code-generator": "^1.28.1",
  5667. "composer/semver": "^1.4",
  5668. "consolidation/annotated-command": "^2.12",
  5669. "consolidation/config": "^1.2",
  5670. "consolidation/filter-via-dot-access-data": "^1",
  5671. "consolidation/output-formatters": "^3.3.1",
  5672. "consolidation/robo": "^1.4.6",
  5673. "consolidation/site-alias": "^3.0.0@stable",
  5674. "consolidation/site-process": "^2.0.3",
  5675. "ext-dom": "*",
  5676. "grasmash/yaml-expander": "^1.1.1",
  5677. "league/container": "~2",
  5678. "php": ">=5.6.0",
  5679. "psr/log": "~1.0",
  5680. "psy/psysh": "~0.6",
  5681. "symfony/console": "^3.4",
  5682. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5683. "symfony/finder": "^3.4 || ^4.0",
  5684. "symfony/process": "^3.4",
  5685. "symfony/var-dumper": "^3.4 || ^4.0",
  5686. "symfony/yaml": "^3.4",
  5687. "webflo/drupal-finder": "^1.1",
  5688. "webmozart/path-util": "^2.1.0"
  5689. },
  5690. "require-dev": {
  5691. "composer/installers": "^1.2",
  5692. "cweagans/composer-patches": "~1.0",
  5693. "drupal/alinks": "1.0.0",
  5694. "drupal/core-recommended": "^8.9",
  5695. "drupal/devel": "^2",
  5696. "drupal/empty_theme": "1.0",
  5697. "g1a/composer-test-scenarios": "^3",
  5698. "lox/xhprof": "dev-master",
  5699. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5700. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5701. "vlucas/phpdotenv": "^2.4"
  5702. },
  5703. "bin": [
  5704. "drush"
  5705. ],
  5706. "type": "library",
  5707. "extra": {
  5708. "installer-paths": {
  5709. "sut/core": [
  5710. "type:drupal-core"
  5711. ],
  5712. "sut/libraries/{$name}": [
  5713. "type:drupal-library"
  5714. ],
  5715. "sut/modules/unish/{$name}": [
  5716. "drupal/devel"
  5717. ],
  5718. "sut/themes/unish/{$name}": [
  5719. "drupal/empty_theme"
  5720. ],
  5721. "sut/modules/contrib/{$name}": [
  5722. "type:drupal-module"
  5723. ],
  5724. "sut/profiles/contrib/{$name}": [
  5725. "type:drupal-profile"
  5726. ],
  5727. "sut/themes/contrib/{$name}": [
  5728. "type:drupal-theme"
  5729. ],
  5730. "sut/drush/contrib/{$name}": [
  5731. "type:drupal-drush"
  5732. ]
  5733. },
  5734. "scenarios": {
  5735. "php5": {
  5736. "config": {
  5737. "platform": {
  5738. "php": "5.6.38"
  5739. }
  5740. },
  5741. "require-dev": {
  5742. "drupal/core-recommended": "~8.6.0"
  5743. }
  5744. }
  5745. },
  5746. "branch-alias": {
  5747. "dev-master": "9.x-dev"
  5748. }
  5749. },
  5750. "autoload": {
  5751. "psr-4": {
  5752. "Drush\\": "src/",
  5753. "Drush\\Internal\\": "src/internal-forks"
  5754. }
  5755. },
  5756. "notification-url": "https://packagist.org/downloads/",
  5757. "license": [
  5758. "GPL-2.0-or-later"
  5759. ],
  5760. "authors": [
  5761. {
  5762. "name": "Moshe Weitzman",
  5763. "email": "weitzman@tejasa.com"
  5764. },
  5765. {
  5766. "name": "Owen Barton",
  5767. "email": "drupal@owenbarton.com"
  5768. },
  5769. {
  5770. "name": "Greg Anderson",
  5771. "email": "greg.1.anderson@greenknowe.org"
  5772. },
  5773. {
  5774. "name": "Jonathan Araña Cruz",
  5775. "email": "jonhattan@faita.net"
  5776. },
  5777. {
  5778. "name": "Jonathan Hedstrom",
  5779. "email": "jhedstrom@gmail.com"
  5780. },
  5781. {
  5782. "name": "Christopher Gervais",
  5783. "email": "chris@ergonlogic.com"
  5784. },
  5785. {
  5786. "name": "Dave Reid",
  5787. "email": "dave@davereid.net"
  5788. },
  5789. {
  5790. "name": "Damian Lee",
  5791. "email": "damiankloip@googlemail.com"
  5792. }
  5793. ],
  5794. "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.",
  5795. "homepage": "http://www.drush.org",
  5796. "support": {
  5797. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5798. "irc": "irc://irc.freenode.org/drush",
  5799. "issues": "https://github.com/drush-ops/drush/issues",
  5800. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5801. "source": "https://github.com/drush-ops/drush/tree/9.7.3"
  5802. },
  5803. "funding": [
  5804. {
  5805. "url": "https://github.com/weitzman",
  5806. "type": "github"
  5807. }
  5808. ],
  5809. "time": "2021-03-22T17:00:48+00:00"
  5810. },
  5811. {
  5812. "name": "easyrdf/easyrdf",
  5813. "version": "0.9.1",
  5814. "source": {
  5815. "type": "git",
  5816. "url": "https://github.com/easyrdf/easyrdf.git",
  5817. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5818. },
  5819. "dist": {
  5820. "type": "zip",
  5821. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5822. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5823. "shasum": ""
  5824. },
  5825. "require": {
  5826. "ext-mbstring": "*",
  5827. "ext-pcre": "*",
  5828. "php": ">=5.2.8"
  5829. },
  5830. "require-dev": {
  5831. "phpunit/phpunit": "~3.5",
  5832. "sami/sami": "~1.4",
  5833. "squizlabs/php_codesniffer": "~1.4.3"
  5834. },
  5835. "suggest": {
  5836. "ml/json-ld": "~1.0"
  5837. },
  5838. "type": "library",
  5839. "autoload": {
  5840. "psr-0": {
  5841. "EasyRdf_": "lib/"
  5842. }
  5843. },
  5844. "notification-url": "https://packagist.org/downloads/",
  5845. "license": [
  5846. "BSD-3-Clause"
  5847. ],
  5848. "authors": [
  5849. {
  5850. "name": "Nicholas Humfrey",
  5851. "email": "njh@aelius.com",
  5852. "homepage": "http://www.aelius.com/njh/",
  5853. "role": "Developer"
  5854. },
  5855. {
  5856. "name": "Alexey Zakhlestin",
  5857. "email": "indeyets@gmail.com",
  5858. "role": "Developer"
  5859. }
  5860. ],
  5861. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5862. "homepage": "http://www.easyrdf.org/",
  5863. "keywords": [
  5864. "Linked Data",
  5865. "RDF",
  5866. "Semantic Web",
  5867. "Turtle",
  5868. "rdfa",
  5869. "sparql"
  5870. ],
  5871. "support": {
  5872. "forum": "http://groups.google.com/group/easyrdf/",
  5873. "irc": "irc://chat.freenode.net/easyrdf",
  5874. "issues": "http://github.com/njh/easyrdf/issues",
  5875. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5876. },
  5877. "time": "2015-02-27T09:45:49+00:00"
  5878. },
  5879. {
  5880. "name": "egulias/email-validator",
  5881. "version": "2.1.17",
  5882. "source": {
  5883. "type": "git",
  5884. "url": "https://github.com/egulias/EmailValidator.git",
  5885. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5886. },
  5887. "dist": {
  5888. "type": "zip",
  5889. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5890. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5891. "shasum": ""
  5892. },
  5893. "require": {
  5894. "doctrine/lexer": "^1.0.1",
  5895. "php": ">=5.5",
  5896. "symfony/polyfill-intl-idn": "^1.10"
  5897. },
  5898. "require-dev": {
  5899. "dominicsayers/isemail": "^3.0.7",
  5900. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5901. "satooshi/php-coveralls": "^1.0.1"
  5902. },
  5903. "suggest": {
  5904. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5905. },
  5906. "type": "library",
  5907. "extra": {
  5908. "branch-alias": {
  5909. "dev-master": "2.1.x-dev"
  5910. }
  5911. },
  5912. "autoload": {
  5913. "psr-4": {
  5914. "Egulias\\EmailValidator\\": "EmailValidator"
  5915. }
  5916. },
  5917. "notification-url": "https://packagist.org/downloads/",
  5918. "license": [
  5919. "MIT"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "Eduardo Gulias Davis"
  5924. }
  5925. ],
  5926. "description": "A library for validating emails against several RFCs",
  5927. "homepage": "https://github.com/egulias/EmailValidator",
  5928. "keywords": [
  5929. "email",
  5930. "emailvalidation",
  5931. "emailvalidator",
  5932. "validation",
  5933. "validator"
  5934. ],
  5935. "support": {
  5936. "issues": "https://github.com/egulias/EmailValidator/issues",
  5937. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5938. },
  5939. "time": "2020-02-13T22:36:52+00:00"
  5940. },
  5941. {
  5942. "name": "grasmash/expander",
  5943. "version": "1.0.0",
  5944. "source": {
  5945. "type": "git",
  5946. "url": "https://github.com/grasmash/expander.git",
  5947. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5948. },
  5949. "dist": {
  5950. "type": "zip",
  5951. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5952. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5953. "shasum": ""
  5954. },
  5955. "require": {
  5956. "dflydev/dot-access-data": "^1.1.0",
  5957. "php": ">=5.4"
  5958. },
  5959. "require-dev": {
  5960. "greg-1-anderson/composer-test-scenarios": "^1",
  5961. "phpunit/phpunit": "^4|^5.5.4",
  5962. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5963. "squizlabs/php_codesniffer": "^2.7"
  5964. },
  5965. "type": "library",
  5966. "extra": {
  5967. "branch-alias": {
  5968. "dev-master": "1.x-dev"
  5969. }
  5970. },
  5971. "autoload": {
  5972. "psr-4": {
  5973. "Grasmash\\Expander\\": "src/"
  5974. }
  5975. },
  5976. "notification-url": "https://packagist.org/downloads/",
  5977. "license": [
  5978. "MIT"
  5979. ],
  5980. "authors": [
  5981. {
  5982. "name": "Matthew Grasmick"
  5983. }
  5984. ],
  5985. "description": "Expands internal property references in PHP arrays file.",
  5986. "time": "2017-12-21T22:14:55+00:00"
  5987. },
  5988. {
  5989. "name": "grasmash/yaml-expander",
  5990. "version": "1.4.0",
  5991. "source": {
  5992. "type": "git",
  5993. "url": "https://github.com/grasmash/yaml-expander.git",
  5994. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5995. },
  5996. "dist": {
  5997. "type": "zip",
  5998. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5999. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6000. "shasum": ""
  6001. },
  6002. "require": {
  6003. "dflydev/dot-access-data": "^1.1.0",
  6004. "php": ">=5.4",
  6005. "symfony/yaml": "^2.8.11|^3|^4"
  6006. },
  6007. "require-dev": {
  6008. "greg-1-anderson/composer-test-scenarios": "^1",
  6009. "phpunit/phpunit": "^4.8|^5.5.4",
  6010. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6011. "squizlabs/php_codesniffer": "^2.7"
  6012. },
  6013. "type": "library",
  6014. "extra": {
  6015. "branch-alias": {
  6016. "dev-master": "1.x-dev"
  6017. }
  6018. },
  6019. "autoload": {
  6020. "psr-4": {
  6021. "Grasmash\\YamlExpander\\": "src/"
  6022. }
  6023. },
  6024. "notification-url": "https://packagist.org/downloads/",
  6025. "license": [
  6026. "MIT"
  6027. ],
  6028. "authors": [
  6029. {
  6030. "name": "Matthew Grasmick"
  6031. }
  6032. ],
  6033. "description": "Expands internal property references in a yaml file.",
  6034. "time": "2017-12-16T16:06:03+00:00"
  6035. },
  6036. {
  6037. "name": "guzzlehttp/guzzle",
  6038. "version": "6.5.4",
  6039. "source": {
  6040. "type": "git",
  6041. "url": "https://github.com/guzzle/guzzle.git",
  6042. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  6043. },
  6044. "dist": {
  6045. "type": "zip",
  6046. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6047. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6048. "shasum": ""
  6049. },
  6050. "require": {
  6051. "ext-json": "*",
  6052. "guzzlehttp/promises": "^1.0",
  6053. "guzzlehttp/psr7": "^1.6.1",
  6054. "php": ">=5.5",
  6055. "symfony/polyfill-intl-idn": "1.17.0"
  6056. },
  6057. "require-dev": {
  6058. "ext-curl": "*",
  6059. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6060. "psr/log": "^1.1"
  6061. },
  6062. "suggest": {
  6063. "psr/log": "Required for using the Log middleware"
  6064. },
  6065. "type": "library",
  6066. "extra": {
  6067. "branch-alias": {
  6068. "dev-master": "6.5-dev"
  6069. }
  6070. },
  6071. "autoload": {
  6072. "files": [
  6073. "src/functions_include.php"
  6074. ],
  6075. "psr-4": {
  6076. "GuzzleHttp\\": "src/"
  6077. }
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Michael Dowling",
  6086. "email": "mtdowling@gmail.com",
  6087. "homepage": "https://github.com/mtdowling"
  6088. }
  6089. ],
  6090. "description": "Guzzle is a PHP HTTP client library",
  6091. "homepage": "http://guzzlephp.org/",
  6092. "keywords": [
  6093. "client",
  6094. "curl",
  6095. "framework",
  6096. "http",
  6097. "http client",
  6098. "rest",
  6099. "web service"
  6100. ],
  6101. "support": {
  6102. "issues": "https://github.com/guzzle/guzzle/issues",
  6103. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  6104. },
  6105. "time": "2020-05-25T19:35:05+00:00"
  6106. },
  6107. {
  6108. "name": "guzzlehttp/promises",
  6109. "version": "v1.3.1",
  6110. "source": {
  6111. "type": "git",
  6112. "url": "https://github.com/guzzle/promises.git",
  6113. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6114. },
  6115. "dist": {
  6116. "type": "zip",
  6117. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6118. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6119. "shasum": ""
  6120. },
  6121. "require": {
  6122. "php": ">=5.5.0"
  6123. },
  6124. "require-dev": {
  6125. "phpunit/phpunit": "^4.0"
  6126. },
  6127. "type": "library",
  6128. "extra": {
  6129. "branch-alias": {
  6130. "dev-master": "1.4-dev"
  6131. }
  6132. },
  6133. "autoload": {
  6134. "files": [
  6135. "src/functions_include.php"
  6136. ],
  6137. "psr-4": {
  6138. "GuzzleHttp\\Promise\\": "src/"
  6139. }
  6140. },
  6141. "notification-url": "https://packagist.org/downloads/",
  6142. "license": [
  6143. "MIT"
  6144. ],
  6145. "authors": [
  6146. {
  6147. "name": "Michael Dowling",
  6148. "email": "mtdowling@gmail.com",
  6149. "homepage": "https://github.com/mtdowling"
  6150. }
  6151. ],
  6152. "description": "Guzzle promises library",
  6153. "keywords": [
  6154. "promise"
  6155. ],
  6156. "support": {
  6157. "issues": "https://github.com/guzzle/promises/issues",
  6158. "source": "https://github.com/guzzle/promises/tree/master"
  6159. },
  6160. "time": "2016-12-20T10:07:11+00:00"
  6161. },
  6162. {
  6163. "name": "guzzlehttp/psr7",
  6164. "version": "1.6.1",
  6165. "source": {
  6166. "type": "git",
  6167. "url": "https://github.com/guzzle/psr7.git",
  6168. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6169. },
  6170. "dist": {
  6171. "type": "zip",
  6172. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6173. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6174. "shasum": ""
  6175. },
  6176. "require": {
  6177. "php": ">=5.4.0",
  6178. "psr/http-message": "~1.0",
  6179. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6180. },
  6181. "provide": {
  6182. "psr/http-message-implementation": "1.0"
  6183. },
  6184. "require-dev": {
  6185. "ext-zlib": "*",
  6186. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6187. },
  6188. "suggest": {
  6189. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6190. },
  6191. "type": "library",
  6192. "extra": {
  6193. "branch-alias": {
  6194. "dev-master": "1.6-dev"
  6195. }
  6196. },
  6197. "autoload": {
  6198. "files": [
  6199. "src/functions_include.php"
  6200. ],
  6201. "psr-4": {
  6202. "GuzzleHttp\\Psr7\\": "src/"
  6203. }
  6204. },
  6205. "notification-url": "https://packagist.org/downloads/",
  6206. "license": [
  6207. "MIT"
  6208. ],
  6209. "authors": [
  6210. {
  6211. "name": "Michael Dowling",
  6212. "email": "mtdowling@gmail.com",
  6213. "homepage": "https://github.com/mtdowling"
  6214. },
  6215. {
  6216. "name": "Tobias Schultze",
  6217. "homepage": "https://github.com/Tobion"
  6218. }
  6219. ],
  6220. "description": "PSR-7 message implementation that also provides common utility methods",
  6221. "keywords": [
  6222. "http",
  6223. "message",
  6224. "psr-7",
  6225. "request",
  6226. "response",
  6227. "stream",
  6228. "uri",
  6229. "url"
  6230. ],
  6231. "support": {
  6232. "issues": "https://github.com/guzzle/psr7/issues",
  6233. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  6234. },
  6235. "time": "2019-07-01T23:21:34+00:00"
  6236. },
  6237. {
  6238. "name": "kint-php/kint",
  6239. "version": "5.1.1",
  6240. "source": {
  6241. "type": "git",
  6242. "url": "https://github.com/kint-php/kint.git",
  6243. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6244. },
  6245. "dist": {
  6246. "type": "zip",
  6247. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6248. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6249. "shasum": ""
  6250. },
  6251. "require": {
  6252. "php": ">=7.1"
  6253. },
  6254. "require-dev": {
  6255. "friendsofphp/php-cs-fixer": "^3",
  6256. "phpspec/prophecy-phpunit": "^2",
  6257. "phpunit/phpunit": "^9",
  6258. "seld/phar-utils": "^1",
  6259. "symfony/finder": ">=4.0",
  6260. "vimeo/psalm": "^5"
  6261. },
  6262. "suggest": {
  6263. "kint-php/kint-helpers": "Provides extra helper functions",
  6264. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6265. },
  6266. "type": "library",
  6267. "autoload": {
  6268. "files": [
  6269. "init.php"
  6270. ],
  6271. "psr-4": {
  6272. "Kint\\": "src/"
  6273. }
  6274. },
  6275. "notification-url": "https://packagist.org/downloads/",
  6276. "license": [
  6277. "MIT"
  6278. ],
  6279. "authors": [
  6280. {
  6281. "name": "Jonathan Vollebregt",
  6282. "homepage": "https://github.com/jnvsor"
  6283. },
  6284. {
  6285. "name": "Contributors",
  6286. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6287. }
  6288. ],
  6289. "description": "Kint - debugging tool for PHP developers",
  6290. "homepage": "https://kint-php.github.io/kint/",
  6291. "keywords": [
  6292. "debug",
  6293. "kint",
  6294. "php"
  6295. ],
  6296. "support": {
  6297. "issues": "https://github.com/kint-php/kint/issues",
  6298. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6299. },
  6300. "time": "2024-04-26T14:20:09+00:00"
  6301. },
  6302. {
  6303. "name": "laminas/laminas-diactoros",
  6304. "version": "1.8.7p2",
  6305. "source": {
  6306. "type": "git",
  6307. "url": "https://github.com/laminas/laminas-diactoros.git",
  6308. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6309. },
  6310. "dist": {
  6311. "type": "zip",
  6312. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6313. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6314. "shasum": ""
  6315. },
  6316. "require": {
  6317. "laminas/laminas-zendframework-bridge": "^1.0",
  6318. "php": "^5.6 || ^7.0",
  6319. "psr/http-message": "^1.0"
  6320. },
  6321. "provide": {
  6322. "psr/http-message-implementation": "1.0"
  6323. },
  6324. "replace": {
  6325. "zendframework/zend-diactoros": "~1.8.7.0"
  6326. },
  6327. "require-dev": {
  6328. "ext-dom": "*",
  6329. "ext-libxml": "*",
  6330. "laminas/laminas-coding-standard": "~1.0",
  6331. "php-http/psr7-integration-tests": "dev-master",
  6332. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6333. },
  6334. "type": "library",
  6335. "extra": {
  6336. "branch-alias": {
  6337. "dev-release-1.8": "1.8.x-dev"
  6338. }
  6339. },
  6340. "autoload": {
  6341. "files": [
  6342. "src/functions/create_uploaded_file.php",
  6343. "src/functions/marshal_headers_from_sapi.php",
  6344. "src/functions/marshal_method_from_sapi.php",
  6345. "src/functions/marshal_protocol_version_from_sapi.php",
  6346. "src/functions/marshal_uri_from_sapi.php",
  6347. "src/functions/normalize_server.php",
  6348. "src/functions/normalize_uploaded_files.php",
  6349. "src/functions/parse_cookie_header.php",
  6350. "src/functions/create_uploaded_file.legacy.php",
  6351. "src/functions/marshal_headers_from_sapi.legacy.php",
  6352. "src/functions/marshal_method_from_sapi.legacy.php",
  6353. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6354. "src/functions/marshal_uri_from_sapi.legacy.php",
  6355. "src/functions/normalize_server.legacy.php",
  6356. "src/functions/normalize_uploaded_files.legacy.php",
  6357. "src/functions/parse_cookie_header.legacy.php"
  6358. ],
  6359. "psr-4": {
  6360. "Laminas\\Diactoros\\": "src/"
  6361. }
  6362. },
  6363. "notification-url": "https://packagist.org/downloads/",
  6364. "license": [
  6365. "BSD-3-Clause"
  6366. ],
  6367. "description": "PSR HTTP Message implementations",
  6368. "homepage": "https://laminas.dev",
  6369. "keywords": [
  6370. "http",
  6371. "laminas",
  6372. "psr",
  6373. "psr-7"
  6374. ],
  6375. "support": {
  6376. "chat": "https://laminas.dev/chat",
  6377. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6378. "forum": "https://discourse.laminas.dev",
  6379. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6380. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6381. "source": "https://github.com/laminas/laminas-diactoros"
  6382. },
  6383. "time": "2020-03-23T15:28:28+00:00"
  6384. },
  6385. {
  6386. "name": "laminas/laminas-escaper",
  6387. "version": "2.6.1",
  6388. "source": {
  6389. "type": "git",
  6390. "url": "https://github.com/laminas/laminas-escaper.git",
  6391. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6392. },
  6393. "dist": {
  6394. "type": "zip",
  6395. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6396. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6397. "shasum": ""
  6398. },
  6399. "require": {
  6400. "laminas/laminas-zendframework-bridge": "^1.0",
  6401. "php": "^5.6 || ^7.0"
  6402. },
  6403. "replace": {
  6404. "zendframework/zend-escaper": "self.version"
  6405. },
  6406. "require-dev": {
  6407. "laminas/laminas-coding-standard": "~1.0.0",
  6408. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6409. },
  6410. "type": "library",
  6411. "extra": {
  6412. "branch-alias": {
  6413. "dev-master": "2.6.x-dev",
  6414. "dev-develop": "2.7.x-dev"
  6415. }
  6416. },
  6417. "autoload": {
  6418. "psr-4": {
  6419. "Laminas\\Escaper\\": "src/"
  6420. }
  6421. },
  6422. "notification-url": "https://packagist.org/downloads/",
  6423. "license": [
  6424. "BSD-3-Clause"
  6425. ],
  6426. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6427. "homepage": "https://laminas.dev",
  6428. "keywords": [
  6429. "escaper",
  6430. "laminas"
  6431. ],
  6432. "support": {
  6433. "chat": "https://laminas.dev/chat",
  6434. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6435. "forum": "https://discourse.laminas.dev",
  6436. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6437. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6438. "source": "https://github.com/laminas/laminas-escaper"
  6439. },
  6440. "time": "2019-12-31T16:43:30+00:00"
  6441. },
  6442. {
  6443. "name": "laminas/laminas-feed",
  6444. "version": "2.12.2",
  6445. "source": {
  6446. "type": "git",
  6447. "url": "https://github.com/laminas/laminas-feed.git",
  6448. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6449. },
  6450. "dist": {
  6451. "type": "zip",
  6452. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6453. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6454. "shasum": ""
  6455. },
  6456. "require": {
  6457. "ext-dom": "*",
  6458. "ext-libxml": "*",
  6459. "laminas/laminas-escaper": "^2.5.2",
  6460. "laminas/laminas-stdlib": "^3.2.1",
  6461. "laminas/laminas-zendframework-bridge": "^1.0",
  6462. "php": "^5.6 || ^7.0"
  6463. },
  6464. "replace": {
  6465. "zendframework/zend-feed": "^2.12.0"
  6466. },
  6467. "require-dev": {
  6468. "laminas/laminas-cache": "^2.7.2",
  6469. "laminas/laminas-coding-standard": "~1.0.0",
  6470. "laminas/laminas-db": "^2.8.2",
  6471. "laminas/laminas-http": "^2.7",
  6472. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6473. "laminas/laminas-validator": "^2.10.1",
  6474. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6475. "psr/http-message": "^1.0.1"
  6476. },
  6477. "suggest": {
  6478. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6479. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6480. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6481. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6482. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6483. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6484. },
  6485. "type": "library",
  6486. "extra": {
  6487. "branch-alias": {
  6488. "dev-master": "2.12.x-dev",
  6489. "dev-develop": "2.13.x-dev"
  6490. }
  6491. },
  6492. "autoload": {
  6493. "psr-4": {
  6494. "Laminas\\Feed\\": "src/"
  6495. }
  6496. },
  6497. "notification-url": "https://packagist.org/downloads/",
  6498. "license": [
  6499. "BSD-3-Clause"
  6500. ],
  6501. "description": "provides functionality for consuming RSS and Atom feeds",
  6502. "homepage": "https://laminas.dev",
  6503. "keywords": [
  6504. "feed",
  6505. "laminas"
  6506. ],
  6507. "support": {
  6508. "chat": "https://laminas.dev/chat",
  6509. "docs": "https://docs.laminas.dev/laminas-feed/",
  6510. "forum": "https://discourse.laminas.dev",
  6511. "issues": "https://github.com/laminas/laminas-feed/issues",
  6512. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6513. "source": "https://github.com/laminas/laminas-feed"
  6514. },
  6515. "time": "2020-03-29T12:36:29+00:00"
  6516. },
  6517. {
  6518. "name": "laminas/laminas-servicemanager",
  6519. "version": "3.17.0",
  6520. "source": {
  6521. "type": "git",
  6522. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6523. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6524. },
  6525. "dist": {
  6526. "type": "zip",
  6527. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6528. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6529. "shasum": ""
  6530. },
  6531. "require": {
  6532. "laminas/laminas-stdlib": "^3.2.1",
  6533. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6534. "psr/container": "^1.0"
  6535. },
  6536. "conflict": {
  6537. "ext-psr": "*",
  6538. "laminas/laminas-code": "<3.3.1",
  6539. "zendframework/zend-code": "<3.3.1",
  6540. "zendframework/zend-servicemanager": "*"
  6541. },
  6542. "provide": {
  6543. "psr/container-implementation": "^1.0"
  6544. },
  6545. "replace": {
  6546. "container-interop/container-interop": "^1.2.0"
  6547. },
  6548. "require-dev": {
  6549. "composer/package-versions-deprecated": "^1.0",
  6550. "laminas/laminas-coding-standard": "~2.4.0",
  6551. "laminas/laminas-container-config-test": "^0.7",
  6552. "laminas/laminas-dependency-plugin": "^2.1.2",
  6553. "mikey179/vfsstream": "^1.6.10@alpha",
  6554. "ocramius/proxy-manager": "^2.11",
  6555. "phpbench/phpbench": "^1.1",
  6556. "phpspec/prophecy-phpunit": "^2.0",
  6557. "phpunit/phpunit": "^9.5.5",
  6558. "psalm/plugin-phpunit": "^0.17.0",
  6559. "vimeo/psalm": "^4.8"
  6560. },
  6561. "suggest": {
  6562. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6563. },
  6564. "bin": [
  6565. "bin/generate-deps-for-config-factory",
  6566. "bin/generate-factory-for-class"
  6567. ],
  6568. "type": "library",
  6569. "autoload": {
  6570. "files": [
  6571. "src/autoload.php"
  6572. ],
  6573. "psr-4": {
  6574. "Laminas\\ServiceManager\\": "src/"
  6575. }
  6576. },
  6577. "notification-url": "https://packagist.org/downloads/",
  6578. "license": [
  6579. "BSD-3-Clause"
  6580. ],
  6581. "description": "Factory-Driven Dependency Injection Container",
  6582. "homepage": "https://laminas.dev",
  6583. "keywords": [
  6584. "PSR-11",
  6585. "dependency-injection",
  6586. "di",
  6587. "dic",
  6588. "laminas",
  6589. "service-manager",
  6590. "servicemanager"
  6591. ],
  6592. "support": {
  6593. "chat": "https://laminas.dev/chat",
  6594. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6595. "forum": "https://discourse.laminas.dev",
  6596. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6597. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6598. "source": "https://github.com/laminas/laminas-servicemanager"
  6599. },
  6600. "funding": [
  6601. {
  6602. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6603. "type": "community_bridge"
  6604. }
  6605. ],
  6606. "time": "2022-09-22T11:33:46+00:00"
  6607. },
  6608. {
  6609. "name": "laminas/laminas-stdlib",
  6610. "version": "3.2.1",
  6611. "source": {
  6612. "type": "git",
  6613. "url": "https://github.com/laminas/laminas-stdlib.git",
  6614. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6615. },
  6616. "dist": {
  6617. "type": "zip",
  6618. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6619. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6620. "shasum": ""
  6621. },
  6622. "require": {
  6623. "laminas/laminas-zendframework-bridge": "^1.0",
  6624. "php": "^5.6 || ^7.0"
  6625. },
  6626. "replace": {
  6627. "zendframework/zend-stdlib": "self.version"
  6628. },
  6629. "require-dev": {
  6630. "laminas/laminas-coding-standard": "~1.0.0",
  6631. "phpbench/phpbench": "^0.13",
  6632. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6633. },
  6634. "type": "library",
  6635. "extra": {
  6636. "branch-alias": {
  6637. "dev-master": "3.2.x-dev",
  6638. "dev-develop": "3.3.x-dev"
  6639. }
  6640. },
  6641. "autoload": {
  6642. "psr-4": {
  6643. "Laminas\\Stdlib\\": "src/"
  6644. }
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "BSD-3-Clause"
  6649. ],
  6650. "description": "SPL extensions, array utilities, error handlers, and more",
  6651. "homepage": "https://laminas.dev",
  6652. "keywords": [
  6653. "laminas",
  6654. "stdlib"
  6655. ],
  6656. "support": {
  6657. "chat": "https://laminas.dev/chat",
  6658. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6659. "forum": "https://discourse.laminas.dev",
  6660. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6661. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6662. "source": "https://github.com/laminas/laminas-stdlib"
  6663. },
  6664. "time": "2019-12-31T17:51:15+00:00"
  6665. },
  6666. {
  6667. "name": "laminas/laminas-text",
  6668. "version": "2.8.1",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://github.com/laminas/laminas-text.git",
  6672. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6677. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6678. "shasum": ""
  6679. },
  6680. "require": {
  6681. "laminas/laminas-servicemanager": "^3.4",
  6682. "laminas/laminas-stdlib": "^3.1",
  6683. "laminas/laminas-zendframework-bridge": "^1.0",
  6684. "php": "^7.3 || ~8.0.0"
  6685. },
  6686. "replace": {
  6687. "zendframework/zend-text": "^2.7.1"
  6688. },
  6689. "require-dev": {
  6690. "laminas/laminas-coding-standard": "~1.0.0",
  6691. "laminas/laminas-config": "^3.4",
  6692. "phpunit/phpunit": "^9.3"
  6693. },
  6694. "type": "library",
  6695. "autoload": {
  6696. "psr-4": {
  6697. "Laminas\\Text\\": "src/"
  6698. }
  6699. },
  6700. "notification-url": "https://packagist.org/downloads/",
  6701. "license": [
  6702. "BSD-3-Clause"
  6703. ],
  6704. "description": "Create FIGlets and text-based tables",
  6705. "homepage": "https://laminas.dev",
  6706. "keywords": [
  6707. "laminas",
  6708. "text"
  6709. ],
  6710. "support": {
  6711. "chat": "https://laminas.dev/chat",
  6712. "docs": "https://docs.laminas.dev/laminas-text/",
  6713. "forum": "https://discourse.laminas.dev",
  6714. "issues": "https://github.com/laminas/laminas-text/issues",
  6715. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6716. "source": "https://github.com/laminas/laminas-text"
  6717. },
  6718. "funding": [
  6719. {
  6720. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6721. "type": "community_bridge"
  6722. }
  6723. ],
  6724. "time": "2021-02-17T21:24:58+00:00"
  6725. },
  6726. {
  6727. "name": "laminas/laminas-zendframework-bridge",
  6728. "version": "1.0.4",
  6729. "source": {
  6730. "type": "git",
  6731. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6732. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6733. },
  6734. "dist": {
  6735. "type": "zip",
  6736. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6737. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6738. "shasum": ""
  6739. },
  6740. "require": {
  6741. "php": "^5.6 || ^7.0"
  6742. },
  6743. "require-dev": {
  6744. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6745. "squizlabs/php_codesniffer": "^3.5"
  6746. },
  6747. "type": "library",
  6748. "extra": {
  6749. "branch-alias": {
  6750. "dev-master": "1.0.x-dev",
  6751. "dev-develop": "1.1.x-dev"
  6752. },
  6753. "laminas": {
  6754. "module": "Laminas\\ZendFrameworkBridge"
  6755. }
  6756. },
  6757. "autoload": {
  6758. "files": [
  6759. "src/autoload.php"
  6760. ],
  6761. "psr-4": {
  6762. "Laminas\\ZendFrameworkBridge\\": "src//"
  6763. }
  6764. },
  6765. "notification-url": "https://packagist.org/downloads/",
  6766. "license": [
  6767. "BSD-3-Clause"
  6768. ],
  6769. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6770. "keywords": [
  6771. "ZendFramework",
  6772. "autoloading",
  6773. "laminas",
  6774. "zf"
  6775. ],
  6776. "support": {
  6777. "forum": "https://discourse.laminas.dev/",
  6778. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6779. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6780. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6781. },
  6782. "funding": [
  6783. {
  6784. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6785. "type": "community_bridge"
  6786. }
  6787. ],
  6788. "abandoned": true,
  6789. "time": "2020-05-20T16:45:56+00:00"
  6790. },
  6791. {
  6792. "name": "league/container",
  6793. "version": "2.4.1",
  6794. "source": {
  6795. "type": "git",
  6796. "url": "https://github.com/thephpleague/container.git",
  6797. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6798. },
  6799. "dist": {
  6800. "type": "zip",
  6801. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6802. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6803. "shasum": ""
  6804. },
  6805. "require": {
  6806. "container-interop/container-interop": "^1.2",
  6807. "php": "^5.4.0 || ^7.0"
  6808. },
  6809. "provide": {
  6810. "container-interop/container-interop-implementation": "^1.2",
  6811. "psr/container-implementation": "^1.0"
  6812. },
  6813. "replace": {
  6814. "orno/di": "~2.0"
  6815. },
  6816. "require-dev": {
  6817. "phpunit/phpunit": "4.*"
  6818. },
  6819. "type": "library",
  6820. "extra": {
  6821. "branch-alias": {
  6822. "dev-2.x": "2.x-dev",
  6823. "dev-1.x": "1.x-dev"
  6824. }
  6825. },
  6826. "autoload": {
  6827. "psr-4": {
  6828. "League\\Container\\": "src"
  6829. }
  6830. },
  6831. "notification-url": "https://packagist.org/downloads/",
  6832. "license": [
  6833. "MIT"
  6834. ],
  6835. "authors": [
  6836. {
  6837. "name": "Phil Bennett",
  6838. "email": "philipobenito@gmail.com",
  6839. "homepage": "http://www.philipobenito.com",
  6840. "role": "Developer"
  6841. }
  6842. ],
  6843. "description": "A fast and intuitive dependency injection container.",
  6844. "homepage": "https://github.com/thephpleague/container",
  6845. "keywords": [
  6846. "container",
  6847. "dependency",
  6848. "di",
  6849. "injection",
  6850. "league",
  6851. "provider",
  6852. "service"
  6853. ],
  6854. "time": "2017-05-10T09:20:27+00:00"
  6855. },
  6856. {
  6857. "name": "masterminds/html5",
  6858. "version": "2.3.0",
  6859. "source": {
  6860. "type": "git",
  6861. "url": "https://github.com/Masterminds/html5-php.git",
  6862. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6863. },
  6864. "dist": {
  6865. "type": "zip",
  6866. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6867. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6868. "shasum": ""
  6869. },
  6870. "require": {
  6871. "ext-libxml": "*",
  6872. "php": ">=5.3.0"
  6873. },
  6874. "require-dev": {
  6875. "phpunit/phpunit": "4.*",
  6876. "sami/sami": "~2.0",
  6877. "satooshi/php-coveralls": "1.0.*"
  6878. },
  6879. "type": "library",
  6880. "extra": {
  6881. "branch-alias": {
  6882. "dev-master": "2.2-dev"
  6883. }
  6884. },
  6885. "autoload": {
  6886. "psr-4": {
  6887. "Masterminds\\": "src"
  6888. }
  6889. },
  6890. "notification-url": "https://packagist.org/downloads/",
  6891. "license": [
  6892. "MIT"
  6893. ],
  6894. "authors": [
  6895. {
  6896. "name": "Matt Butcher",
  6897. "email": "technosophos@gmail.com"
  6898. },
  6899. {
  6900. "name": "Asmir Mustafic",
  6901. "email": "goetas@gmail.com"
  6902. },
  6903. {
  6904. "name": "Matt Farina",
  6905. "email": "matt@mattfarina.com"
  6906. }
  6907. ],
  6908. "description": "An HTML5 parser and serializer.",
  6909. "homepage": "http://masterminds.github.io/html5-php",
  6910. "keywords": [
  6911. "HTML5",
  6912. "dom",
  6913. "html",
  6914. "parser",
  6915. "querypath",
  6916. "serializer",
  6917. "xml"
  6918. ],
  6919. "support": {
  6920. "issues": "https://github.com/Masterminds/html5-php/issues",
  6921. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6922. },
  6923. "time": "2017-09-04T12:26:28+00:00"
  6924. },
  6925. {
  6926. "name": "mathieuviossat/arraytotexttable",
  6927. "version": "v1.0.8",
  6928. "source": {
  6929. "type": "git",
  6930. "url": "https://github.com/viossat/arraytotexttable.git",
  6931. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6932. },
  6933. "dist": {
  6934. "type": "zip",
  6935. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6936. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6937. "shasum": ""
  6938. },
  6939. "require": {
  6940. "laminas/laminas-text": "^2.7",
  6941. "php": ">=5.3.0"
  6942. },
  6943. "type": "library",
  6944. "autoload": {
  6945. "psr-4": {
  6946. "MathieuViossat\\Util\\": "src/"
  6947. }
  6948. },
  6949. "notification-url": "https://packagist.org/downloads/",
  6950. "license": [
  6951. "MIT"
  6952. ],
  6953. "authors": [
  6954. {
  6955. "name": "Mathieu Viossat",
  6956. "email": "mathieu@viossat.fr",
  6957. "homepage": "https://viossat.fr"
  6958. }
  6959. ],
  6960. "description": "Display arrays in terminal",
  6961. "homepage": "https://github.com/viossat/arraytotexttable",
  6962. "keywords": [
  6963. "array",
  6964. "ascii",
  6965. "table",
  6966. "terminal",
  6967. "text",
  6968. "unicode"
  6969. ],
  6970. "support": {
  6971. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6972. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6973. },
  6974. "time": "2020-06-23T17:14:22+00:00"
  6975. },
  6976. {
  6977. "name": "mglaman/phpstan-drupal",
  6978. "version": "1.2.1",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6982. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6987. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6988. "shasum": ""
  6989. },
  6990. "require": {
  6991. "php": "^7.4 || ^8.0",
  6992. "phpstan/phpstan": "^1.10.1",
  6993. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6994. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6995. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6996. "webflo/drupal-finder": "^1.2"
  6997. },
  6998. "require-dev": {
  6999. "behat/mink": "^1.8",
  7000. "composer/installers": "^1.9",
  7001. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  7002. "drush/drush": "^9.6 || ^10.0 || ^11",
  7003. "phpstan/extension-installer": "^1.1",
  7004. "phpstan/phpstan-strict-rules": "^1.0",
  7005. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  7006. "slevomat/coding-standard": "^7.1",
  7007. "squizlabs/php_codesniffer": "^3.3",
  7008. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  7009. },
  7010. "suggest": {
  7011. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  7012. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  7013. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  7014. },
  7015. "type": "phpstan-extension",
  7016. "extra": {
  7017. "branch-alias": {
  7018. "dev-main": "1.0-dev"
  7019. },
  7020. "installer-paths": {
  7021. "tests/fixtures/drupal/core": [
  7022. "type:drupal-core"
  7023. ],
  7024. "tests/fixtures/drupal/libraries/{$name}": [
  7025. "type:drupal-library"
  7026. ],
  7027. "tests/fixtures/drupal/modules/contrib/{$name}": [
  7028. "type:drupal-module"
  7029. ],
  7030. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  7031. "type:drupal-profile"
  7032. ],
  7033. "tests/fixtures/drupal/themes/contrib/{$name}": [
  7034. "type:drupal-theme"
  7035. ]
  7036. },
  7037. "phpstan": {
  7038. "includes": [
  7039. "extension.neon",
  7040. "rules.neon"
  7041. ]
  7042. }
  7043. },
  7044. "autoload": {
  7045. "psr-4": {
  7046. "mglaman\\PHPStanDrupal\\": "src/"
  7047. }
  7048. },
  7049. "notification-url": "https://packagist.org/downloads/",
  7050. "license": [
  7051. "MIT"
  7052. ],
  7053. "authors": [
  7054. {
  7055. "name": "Matt Glaman",
  7056. "email": "nmd.matt@gmail.com"
  7057. }
  7058. ],
  7059. "description": "Drupal extension and rules for PHPStan",
  7060. "support": {
  7061. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  7062. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  7063. },
  7064. "funding": [
  7065. {
  7066. "url": "https://github.com/mglaman",
  7067. "type": "github"
  7068. },
  7069. {
  7070. "url": "https://opencollective.com/phpstan-drupal",
  7071. "type": "open_collective"
  7072. },
  7073. {
  7074. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  7075. "type": "tidelift"
  7076. }
  7077. ],
  7078. "time": "2023-11-03T13:17:28+00:00"
  7079. },
  7080. {
  7081. "name": "nikic/php-parser",
  7082. "version": "v4.4.0",
  7083. "source": {
  7084. "type": "git",
  7085. "url": "https://github.com/nikic/PHP-Parser.git",
  7086. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  7087. },
  7088. "dist": {
  7089. "type": "zip",
  7090. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7091. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7092. "shasum": ""
  7093. },
  7094. "require": {
  7095. "ext-tokenizer": "*",
  7096. "php": ">=7.0"
  7097. },
  7098. "require-dev": {
  7099. "ircmaxell/php-yacc": "0.0.5",
  7100. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7101. },
  7102. "bin": [
  7103. "bin/php-parse"
  7104. ],
  7105. "type": "library",
  7106. "extra": {
  7107. "branch-alias": {
  7108. "dev-master": "4.3-dev"
  7109. }
  7110. },
  7111. "autoload": {
  7112. "psr-4": {
  7113. "PhpParser\\": "lib/PhpParser"
  7114. }
  7115. },
  7116. "notification-url": "https://packagist.org/downloads/",
  7117. "license": [
  7118. "BSD-3-Clause"
  7119. ],
  7120. "authors": [
  7121. {
  7122. "name": "Nikita Popov"
  7123. }
  7124. ],
  7125. "description": "A PHP parser written in PHP",
  7126. "keywords": [
  7127. "parser",
  7128. "php"
  7129. ],
  7130. "time": "2020-04-10T16:34:50+00:00"
  7131. },
  7132. {
  7133. "name": "paragonie/random_compat",
  7134. "version": "v9.99.99",
  7135. "source": {
  7136. "type": "git",
  7137. "url": "https://github.com/paragonie/random_compat.git",
  7138. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7139. },
  7140. "dist": {
  7141. "type": "zip",
  7142. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7143. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7144. "shasum": ""
  7145. },
  7146. "require": {
  7147. "php": "^7"
  7148. },
  7149. "require-dev": {
  7150. "phpunit/phpunit": "4.*|5.*",
  7151. "vimeo/psalm": "^1"
  7152. },
  7153. "suggest": {
  7154. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7155. },
  7156. "type": "library",
  7157. "notification-url": "https://packagist.org/downloads/",
  7158. "license": [
  7159. "MIT"
  7160. ],
  7161. "authors": [
  7162. {
  7163. "name": "Paragon Initiative Enterprises",
  7164. "email": "security@paragonie.com",
  7165. "homepage": "https://paragonie.com"
  7166. }
  7167. ],
  7168. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7169. "keywords": [
  7170. "csprng",
  7171. "polyfill",
  7172. "pseudorandom",
  7173. "random"
  7174. ],
  7175. "support": {
  7176. "email": "info@paragonie.com",
  7177. "issues": "https://github.com/paragonie/random_compat/issues",
  7178. "source": "https://github.com/paragonie/random_compat"
  7179. },
  7180. "time": "2018-07-02T15:55:56+00:00"
  7181. },
  7182. {
  7183. "name": "pear/archive_tar",
  7184. "version": "1.4.14",
  7185. "source": {
  7186. "type": "git",
  7187. "url": "https://github.com/pear/Archive_Tar.git",
  7188. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7189. },
  7190. "dist": {
  7191. "type": "zip",
  7192. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7193. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7194. "shasum": ""
  7195. },
  7196. "require": {
  7197. "pear/pear-core-minimal": "^1.10.0alpha2",
  7198. "php": ">=5.2.0"
  7199. },
  7200. "require-dev": {
  7201. "phpunit/phpunit": "*"
  7202. },
  7203. "suggest": {
  7204. "ext-bz2": "Bz2 compression support.",
  7205. "ext-xz": "Lzma2 compression support.",
  7206. "ext-zlib": "Gzip compression support."
  7207. },
  7208. "type": "library",
  7209. "extra": {
  7210. "branch-alias": {
  7211. "dev-master": "1.4.x-dev"
  7212. }
  7213. },
  7214. "autoload": {
  7215. "psr-0": {
  7216. "Archive_Tar": ""
  7217. }
  7218. },
  7219. "notification-url": "https://packagist.org/downloads/",
  7220. "include-path": [
  7221. "./"
  7222. ],
  7223. "license": [
  7224. "BSD-3-Clause"
  7225. ],
  7226. "authors": [
  7227. {
  7228. "name": "Vincent Blavet",
  7229. "email": "vincent@phpconcept.net"
  7230. },
  7231. {
  7232. "name": "Greg Beaver",
  7233. "email": "greg@chiaraquartet.net"
  7234. },
  7235. {
  7236. "name": "Michiel Rook",
  7237. "email": "mrook@php.net"
  7238. }
  7239. ],
  7240. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7241. "homepage": "https://github.com/pear/Archive_Tar",
  7242. "keywords": [
  7243. "archive",
  7244. "tar"
  7245. ],
  7246. "support": {
  7247. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7248. "source": "https://github.com/pear/Archive_Tar"
  7249. },
  7250. "funding": [
  7251. {
  7252. "url": "https://github.com/mrook",
  7253. "type": "github"
  7254. },
  7255. {
  7256. "url": "https://www.patreon.com/michielrook",
  7257. "type": "patreon"
  7258. }
  7259. ],
  7260. "time": "2021-07-20T13:53:39+00:00"
  7261. },
  7262. {
  7263. "name": "pear/console_getopt",
  7264. "version": "v1.4.3",
  7265. "source": {
  7266. "type": "git",
  7267. "url": "https://github.com/pear/Console_Getopt.git",
  7268. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7269. },
  7270. "dist": {
  7271. "type": "zip",
  7272. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7273. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7274. "shasum": ""
  7275. },
  7276. "type": "library",
  7277. "autoload": {
  7278. "psr-0": {
  7279. "Console": "./"
  7280. }
  7281. },
  7282. "notification-url": "https://packagist.org/downloads/",
  7283. "include-path": [
  7284. "./"
  7285. ],
  7286. "license": [
  7287. "BSD-2-Clause"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "Andrei Zmievski",
  7292. "email": "andrei@php.net",
  7293. "role": "Lead"
  7294. },
  7295. {
  7296. "name": "Stig Bakken",
  7297. "email": "stig@php.net",
  7298. "role": "Developer"
  7299. },
  7300. {
  7301. "name": "Greg Beaver",
  7302. "email": "cellog@php.net",
  7303. "role": "Helper"
  7304. }
  7305. ],
  7306. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7307. "support": {
  7308. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7309. "source": "https://github.com/pear/Console_Getopt"
  7310. },
  7311. "time": "2019-11-20T18:27:48+00:00"
  7312. },
  7313. {
  7314. "name": "pear/pear-core-minimal",
  7315. "version": "v1.10.10",
  7316. "source": {
  7317. "type": "git",
  7318. "url": "https://github.com/pear/pear-core-minimal.git",
  7319. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7320. },
  7321. "dist": {
  7322. "type": "zip",
  7323. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7324. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7325. "shasum": ""
  7326. },
  7327. "require": {
  7328. "pear/console_getopt": "~1.4",
  7329. "pear/pear_exception": "~1.0"
  7330. },
  7331. "replace": {
  7332. "rsky/pear-core-min": "self.version"
  7333. },
  7334. "type": "library",
  7335. "autoload": {
  7336. "psr-0": {
  7337. "": "src/"
  7338. }
  7339. },
  7340. "notification-url": "https://packagist.org/downloads/",
  7341. "include-path": [
  7342. "src/"
  7343. ],
  7344. "license": [
  7345. "BSD-3-Clause"
  7346. ],
  7347. "authors": [
  7348. {
  7349. "name": "Christian Weiske",
  7350. "email": "cweiske@php.net",
  7351. "role": "Lead"
  7352. }
  7353. ],
  7354. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7355. "support": {
  7356. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7357. "source": "https://github.com/pear/pear-core-minimal"
  7358. },
  7359. "time": "2019-11-19T19:00:24+00:00"
  7360. },
  7361. {
  7362. "name": "pear/pear_exception",
  7363. "version": "v1.0.1",
  7364. "source": {
  7365. "type": "git",
  7366. "url": "https://github.com/pear/PEAR_Exception.git",
  7367. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7368. },
  7369. "dist": {
  7370. "type": "zip",
  7371. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7372. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7373. "shasum": ""
  7374. },
  7375. "require": {
  7376. "php": ">=4.4.0"
  7377. },
  7378. "require-dev": {
  7379. "phpunit/phpunit": "*"
  7380. },
  7381. "type": "class",
  7382. "extra": {
  7383. "branch-alias": {
  7384. "dev-master": "1.0.x-dev"
  7385. }
  7386. },
  7387. "autoload": {
  7388. "classmap": [
  7389. "PEAR/"
  7390. ]
  7391. },
  7392. "notification-url": "https://packagist.org/downloads/",
  7393. "include-path": [
  7394. "."
  7395. ],
  7396. "license": [
  7397. "BSD-2-Clause"
  7398. ],
  7399. "authors": [
  7400. {
  7401. "name": "Helgi Thormar",
  7402. "email": "dufuz@php.net"
  7403. },
  7404. {
  7405. "name": "Greg Beaver",
  7406. "email": "cellog@php.net"
  7407. }
  7408. ],
  7409. "description": "The PEAR Exception base class.",
  7410. "homepage": "https://github.com/pear/PEAR_Exception",
  7411. "keywords": [
  7412. "exception"
  7413. ],
  7414. "support": {
  7415. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7416. "source": "https://github.com/pear/PEAR_Exception"
  7417. },
  7418. "time": "2019-12-10T10:24:42+00:00"
  7419. },
  7420. {
  7421. "name": "phpstan/phpstan",
  7422. "version": "1.12.3",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/phpstan/phpstan.git",
  7426. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7431. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7432. "shasum": ""
  7433. },
  7434. "require": {
  7435. "php": "^7.2|^8.0"
  7436. },
  7437. "conflict": {
  7438. "phpstan/phpstan-shim": "*"
  7439. },
  7440. "bin": [
  7441. "phpstan",
  7442. "phpstan.phar"
  7443. ],
  7444. "type": "library",
  7445. "autoload": {
  7446. "files": [
  7447. "bootstrap.php"
  7448. ]
  7449. },
  7450. "notification-url": "https://packagist.org/downloads/",
  7451. "license": [
  7452. "MIT"
  7453. ],
  7454. "description": "PHPStan - PHP Static Analysis Tool",
  7455. "keywords": [
  7456. "dev",
  7457. "static analysis"
  7458. ],
  7459. "support": {
  7460. "docs": "https://phpstan.org/user-guide/getting-started",
  7461. "forum": "https://github.com/phpstan/phpstan/discussions",
  7462. "issues": "https://github.com/phpstan/phpstan/issues",
  7463. "security": "https://github.com/phpstan/phpstan/security/policy",
  7464. "source": "https://github.com/phpstan/phpstan-src"
  7465. },
  7466. "funding": [
  7467. {
  7468. "url": "https://github.com/ondrejmirtes",
  7469. "type": "github"
  7470. },
  7471. {
  7472. "url": "https://github.com/phpstan",
  7473. "type": "github"
  7474. }
  7475. ],
  7476. "time": "2024-09-09T08:10:35+00:00"
  7477. },
  7478. {
  7479. "name": "phpstan/phpstan-deprecation-rules",
  7480. "version": "1.2.1",
  7481. "source": {
  7482. "type": "git",
  7483. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7484. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7485. },
  7486. "dist": {
  7487. "type": "zip",
  7488. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7489. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7490. "shasum": ""
  7491. },
  7492. "require": {
  7493. "php": "^7.2 || ^8.0",
  7494. "phpstan/phpstan": "^1.12"
  7495. },
  7496. "require-dev": {
  7497. "php-parallel-lint/php-parallel-lint": "^1.2",
  7498. "phpstan/phpstan-phpunit": "^1.0",
  7499. "phpunit/phpunit": "^9.5"
  7500. },
  7501. "type": "phpstan-extension",
  7502. "extra": {
  7503. "phpstan": {
  7504. "includes": [
  7505. "rules.neon"
  7506. ]
  7507. }
  7508. },
  7509. "autoload": {
  7510. "psr-4": {
  7511. "PHPStan\\": "src/"
  7512. }
  7513. },
  7514. "notification-url": "https://packagist.org/downloads/",
  7515. "license": [
  7516. "MIT"
  7517. ],
  7518. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7519. "support": {
  7520. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7521. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7522. },
  7523. "time": "2024-09-11T15:52:35+00:00"
  7524. },
  7525. {
  7526. "name": "psr/container",
  7527. "version": "1.0.0",
  7528. "source": {
  7529. "type": "git",
  7530. "url": "https://github.com/php-fig/container.git",
  7531. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7532. },
  7533. "dist": {
  7534. "type": "zip",
  7535. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7536. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7537. "shasum": ""
  7538. },
  7539. "require": {
  7540. "php": ">=5.3.0"
  7541. },
  7542. "type": "library",
  7543. "extra": {
  7544. "branch-alias": {
  7545. "dev-master": "1.0.x-dev"
  7546. }
  7547. },
  7548. "autoload": {
  7549. "psr-4": {
  7550. "Psr\\Container\\": "src/"
  7551. }
  7552. },
  7553. "notification-url": "https://packagist.org/downloads/",
  7554. "license": [
  7555. "MIT"
  7556. ],
  7557. "authors": [
  7558. {
  7559. "name": "PHP-FIG",
  7560. "homepage": "http://www.php-fig.org/"
  7561. }
  7562. ],
  7563. "description": "Common Container Interface (PHP FIG PSR-11)",
  7564. "homepage": "https://github.com/php-fig/container",
  7565. "keywords": [
  7566. "PSR-11",
  7567. "container",
  7568. "container-interface",
  7569. "container-interop",
  7570. "psr"
  7571. ],
  7572. "support": {
  7573. "issues": "https://github.com/php-fig/container/issues",
  7574. "source": "https://github.com/php-fig/container/tree/master"
  7575. },
  7576. "time": "2017-02-14T16:28:37+00:00"
  7577. },
  7578. {
  7579. "name": "psr/http-message",
  7580. "version": "1.0.1",
  7581. "source": {
  7582. "type": "git",
  7583. "url": "https://github.com/php-fig/http-message.git",
  7584. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7585. },
  7586. "dist": {
  7587. "type": "zip",
  7588. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7589. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7590. "shasum": ""
  7591. },
  7592. "require": {
  7593. "php": ">=5.3.0"
  7594. },
  7595. "type": "library",
  7596. "extra": {
  7597. "branch-alias": {
  7598. "dev-master": "1.0.x-dev"
  7599. }
  7600. },
  7601. "autoload": {
  7602. "psr-4": {
  7603. "Psr\\Http\\Message\\": "src/"
  7604. }
  7605. },
  7606. "notification-url": "https://packagist.org/downloads/",
  7607. "license": [
  7608. "MIT"
  7609. ],
  7610. "authors": [
  7611. {
  7612. "name": "PHP-FIG",
  7613. "homepage": "http://www.php-fig.org/"
  7614. }
  7615. ],
  7616. "description": "Common interface for HTTP messages",
  7617. "homepage": "https://github.com/php-fig/http-message",
  7618. "keywords": [
  7619. "http",
  7620. "http-message",
  7621. "psr",
  7622. "psr-7",
  7623. "request",
  7624. "response"
  7625. ],
  7626. "support": {
  7627. "source": "https://github.com/php-fig/http-message/tree/master"
  7628. },
  7629. "time": "2016-08-06T14:39:51+00:00"
  7630. },
  7631. {
  7632. "name": "psr/log",
  7633. "version": "1.1.3",
  7634. "source": {
  7635. "type": "git",
  7636. "url": "https://github.com/php-fig/log.git",
  7637. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7638. },
  7639. "dist": {
  7640. "type": "zip",
  7641. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7642. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7643. "shasum": ""
  7644. },
  7645. "require": {
  7646. "php": ">=5.3.0"
  7647. },
  7648. "type": "library",
  7649. "extra": {
  7650. "branch-alias": {
  7651. "dev-master": "1.1.x-dev"
  7652. }
  7653. },
  7654. "autoload": {
  7655. "psr-4": {
  7656. "Psr\\Log\\": "Psr/Log/"
  7657. }
  7658. },
  7659. "notification-url": "https://packagist.org/downloads/",
  7660. "license": [
  7661. "MIT"
  7662. ],
  7663. "authors": [
  7664. {
  7665. "name": "PHP-FIG",
  7666. "homepage": "http://www.php-fig.org/"
  7667. }
  7668. ],
  7669. "description": "Common interface for logging libraries",
  7670. "homepage": "https://github.com/php-fig/log",
  7671. "keywords": [
  7672. "log",
  7673. "psr",
  7674. "psr-3"
  7675. ],
  7676. "support": {
  7677. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7678. },
  7679. "time": "2020-03-23T09:12:05+00:00"
  7680. },
  7681. {
  7682. "name": "psy/psysh",
  7683. "version": "v0.10.4",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/bobthecow/psysh.git",
  7687. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7692. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7693. "shasum": ""
  7694. },
  7695. "require": {
  7696. "dnoegel/php-xdg-base-dir": "0.1.*",
  7697. "ext-json": "*",
  7698. "ext-tokenizer": "*",
  7699. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7700. "php": "^8.0 || ^7.0 || ^5.5.9",
  7701. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7702. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7703. },
  7704. "require-dev": {
  7705. "bamarni/composer-bin-plugin": "^1.2",
  7706. "hoa/console": "3.17.*"
  7707. },
  7708. "suggest": {
  7709. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7710. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7711. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7712. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7713. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7714. },
  7715. "bin": [
  7716. "bin/psysh"
  7717. ],
  7718. "type": "library",
  7719. "extra": {
  7720. "branch-alias": {
  7721. "dev-master": "0.10.x-dev"
  7722. }
  7723. },
  7724. "autoload": {
  7725. "files": [
  7726. "src/functions.php"
  7727. ],
  7728. "psr-4": {
  7729. "Psy\\": "src/"
  7730. }
  7731. },
  7732. "notification-url": "https://packagist.org/downloads/",
  7733. "license": [
  7734. "MIT"
  7735. ],
  7736. "authors": [
  7737. {
  7738. "name": "Justin Hileman",
  7739. "email": "justin@justinhileman.info",
  7740. "homepage": "http://justinhileman.com"
  7741. }
  7742. ],
  7743. "description": "An interactive shell for modern PHP.",
  7744. "homepage": "http://psysh.org",
  7745. "keywords": [
  7746. "REPL",
  7747. "console",
  7748. "interactive",
  7749. "shell"
  7750. ],
  7751. "time": "2020-05-03T19:32:03+00:00"
  7752. },
  7753. {
  7754. "name": "ralouphie/getallheaders",
  7755. "version": "3.0.3",
  7756. "source": {
  7757. "type": "git",
  7758. "url": "https://github.com/ralouphie/getallheaders.git",
  7759. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7760. },
  7761. "dist": {
  7762. "type": "zip",
  7763. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7764. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7765. "shasum": ""
  7766. },
  7767. "require": {
  7768. "php": ">=5.6"
  7769. },
  7770. "require-dev": {
  7771. "php-coveralls/php-coveralls": "^2.1",
  7772. "phpunit/phpunit": "^5 || ^6.5"
  7773. },
  7774. "type": "library",
  7775. "autoload": {
  7776. "files": [
  7777. "src/getallheaders.php"
  7778. ]
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "MIT"
  7783. ],
  7784. "authors": [
  7785. {
  7786. "name": "Ralph Khattar",
  7787. "email": "ralph.khattar@gmail.com"
  7788. }
  7789. ],
  7790. "description": "A polyfill for getallheaders.",
  7791. "support": {
  7792. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7793. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7794. },
  7795. "time": "2019-03-08T08:55:37+00:00"
  7796. },
  7797. {
  7798. "name": "stack/builder",
  7799. "version": "v1.0.5",
  7800. "source": {
  7801. "type": "git",
  7802. "url": "https://github.com/stackphp/builder.git",
  7803. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7804. },
  7805. "dist": {
  7806. "type": "zip",
  7807. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7808. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7809. "shasum": ""
  7810. },
  7811. "require": {
  7812. "php": ">=5.3.0",
  7813. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7814. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7815. },
  7816. "require-dev": {
  7817. "silex/silex": "~1.0"
  7818. },
  7819. "type": "library",
  7820. "extra": {
  7821. "branch-alias": {
  7822. "dev-master": "1.0-dev"
  7823. }
  7824. },
  7825. "autoload": {
  7826. "psr-0": {
  7827. "Stack": "src"
  7828. }
  7829. },
  7830. "notification-url": "https://packagist.org/downloads/",
  7831. "license": [
  7832. "MIT"
  7833. ],
  7834. "authors": [
  7835. {
  7836. "name": "Igor Wiedler",
  7837. "email": "igor@wiedler.ch"
  7838. }
  7839. ],
  7840. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7841. "keywords": [
  7842. "stack"
  7843. ],
  7844. "support": {
  7845. "issues": "https://github.com/stackphp/builder/issues",
  7846. "source": "https://github.com/stackphp/builder/tree/master"
  7847. },
  7848. "abandoned": true,
  7849. "time": "2017-11-18T14:57:29+00:00"
  7850. },
  7851. {
  7852. "name": "symfony-cmf/routing",
  7853. "version": "1.4.1",
  7854. "source": {
  7855. "type": "git",
  7856. "url": "https://github.com/symfony-cmf/routing.git",
  7857. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7858. },
  7859. "dist": {
  7860. "type": "zip",
  7861. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7862. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7863. "shasum": ""
  7864. },
  7865. "require": {
  7866. "php": "^5.3.9|^7.0",
  7867. "psr/log": "1.*",
  7868. "symfony/http-kernel": "^2.2|3.*",
  7869. "symfony/routing": "^2.2|3.*"
  7870. },
  7871. "require-dev": {
  7872. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7873. "symfony-cmf/testing": "^1.3",
  7874. "symfony/config": "^2.2|3.*",
  7875. "symfony/dependency-injection": "^2.0.5|3.*",
  7876. "symfony/event-dispatcher": "^2.1|3.*"
  7877. },
  7878. "suggest": {
  7879. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7880. },
  7881. "type": "library",
  7882. "extra": {
  7883. "branch-alias": {
  7884. "dev-master": "1.4-dev"
  7885. }
  7886. },
  7887. "autoload": {
  7888. "psr-4": {
  7889. "Symfony\\Cmf\\Component\\Routing\\": ""
  7890. }
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "MIT"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Symfony CMF Community",
  7899. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7900. }
  7901. ],
  7902. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7903. "homepage": "http://cmf.symfony.com",
  7904. "keywords": [
  7905. "database",
  7906. "routing"
  7907. ],
  7908. "support": {
  7909. "issues": "https://github.com/symfony-cmf/routing/issues",
  7910. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7911. },
  7912. "time": "2017-05-09T08:10:41+00:00"
  7913. },
  7914. {
  7915. "name": "symfony/class-loader",
  7916. "version": "v3.4.41",
  7917. "source": {
  7918. "type": "git",
  7919. "url": "https://github.com/symfony/class-loader.git",
  7920. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7921. },
  7922. "dist": {
  7923. "type": "zip",
  7924. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7925. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7926. "shasum": ""
  7927. },
  7928. "require": {
  7929. "php": "^5.5.9|>=7.0.8"
  7930. },
  7931. "require-dev": {
  7932. "symfony/finder": "~2.8|~3.0|~4.0",
  7933. "symfony/polyfill-apcu": "~1.1"
  7934. },
  7935. "suggest": {
  7936. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7937. },
  7938. "type": "library",
  7939. "extra": {
  7940. "branch-alias": {
  7941. "dev-master": "3.4-dev"
  7942. }
  7943. },
  7944. "autoload": {
  7945. "psr-4": {
  7946. "Symfony\\Component\\ClassLoader\\": ""
  7947. },
  7948. "exclude-from-classmap": [
  7949. "/Tests/"
  7950. ]
  7951. },
  7952. "notification-url": "https://packagist.org/downloads/",
  7953. "license": [
  7954. "MIT"
  7955. ],
  7956. "authors": [
  7957. {
  7958. "name": "Fabien Potencier",
  7959. "email": "fabien@symfony.com"
  7960. },
  7961. {
  7962. "name": "Symfony Community",
  7963. "homepage": "https://symfony.com/contributors"
  7964. }
  7965. ],
  7966. "description": "Symfony ClassLoader Component",
  7967. "homepage": "https://symfony.com",
  7968. "support": {
  7969. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7970. },
  7971. "funding": [
  7972. {
  7973. "url": "https://symfony.com/sponsor",
  7974. "type": "custom"
  7975. },
  7976. {
  7977. "url": "https://github.com/fabpot",
  7978. "type": "github"
  7979. },
  7980. {
  7981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7982. "type": "tidelift"
  7983. }
  7984. ],
  7985. "abandoned": true,
  7986. "time": "2020-03-15T09:38:08+00:00"
  7987. },
  7988. {
  7989. "name": "symfony/console",
  7990. "version": "v3.4.41",
  7991. "source": {
  7992. "type": "git",
  7993. "url": "https://github.com/symfony/console.git",
  7994. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7995. },
  7996. "dist": {
  7997. "type": "zip",
  7998. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7999. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  8000. "shasum": ""
  8001. },
  8002. "require": {
  8003. "php": "^5.5.9|>=7.0.8",
  8004. "symfony/debug": "~2.8|~3.0|~4.0",
  8005. "symfony/polyfill-mbstring": "~1.0"
  8006. },
  8007. "conflict": {
  8008. "symfony/dependency-injection": "<3.4",
  8009. "symfony/process": "<3.3"
  8010. },
  8011. "provide": {
  8012. "psr/log-implementation": "1.0"
  8013. },
  8014. "require-dev": {
  8015. "psr/log": "~1.0",
  8016. "symfony/config": "~3.3|~4.0",
  8017. "symfony/dependency-injection": "~3.4|~4.0",
  8018. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8019. "symfony/lock": "~3.4|~4.0",
  8020. "symfony/process": "~3.3|~4.0"
  8021. },
  8022. "suggest": {
  8023. "psr/log": "For using the console logger",
  8024. "symfony/event-dispatcher": "",
  8025. "symfony/lock": "",
  8026. "symfony/process": ""
  8027. },
  8028. "type": "library",
  8029. "extra": {
  8030. "branch-alias": {
  8031. "dev-master": "3.4-dev"
  8032. }
  8033. },
  8034. "autoload": {
  8035. "psr-4": {
  8036. "Symfony\\Component\\Console\\": ""
  8037. },
  8038. "exclude-from-classmap": [
  8039. "/Tests/"
  8040. ]
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "MIT"
  8045. ],
  8046. "authors": [
  8047. {
  8048. "name": "Fabien Potencier",
  8049. "email": "fabien@symfony.com"
  8050. },
  8051. {
  8052. "name": "Symfony Community",
  8053. "homepage": "https://symfony.com/contributors"
  8054. }
  8055. ],
  8056. "description": "Symfony Console Component",
  8057. "homepage": "https://symfony.com",
  8058. "support": {
  8059. "source": "https://github.com/symfony/console/tree/v3.4.41"
  8060. },
  8061. "funding": [
  8062. {
  8063. "url": "https://symfony.com/sponsor",
  8064. "type": "custom"
  8065. },
  8066. {
  8067. "url": "https://github.com/fabpot",
  8068. "type": "github"
  8069. },
  8070. {
  8071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8072. "type": "tidelift"
  8073. }
  8074. ],
  8075. "time": "2020-05-30T18:58:05+00:00"
  8076. },
  8077. {
  8078. "name": "symfony/debug",
  8079. "version": "v3.4.41",
  8080. "source": {
  8081. "type": "git",
  8082. "url": "https://github.com/symfony/debug.git",
  8083. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  8084. },
  8085. "dist": {
  8086. "type": "zip",
  8087. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8088. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8089. "shasum": ""
  8090. },
  8091. "require": {
  8092. "php": "^5.5.9|>=7.0.8",
  8093. "psr/log": "~1.0"
  8094. },
  8095. "conflict": {
  8096. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8097. },
  8098. "require-dev": {
  8099. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8100. },
  8101. "type": "library",
  8102. "extra": {
  8103. "branch-alias": {
  8104. "dev-master": "3.4-dev"
  8105. }
  8106. },
  8107. "autoload": {
  8108. "psr-4": {
  8109. "Symfony\\Component\\Debug\\": ""
  8110. },
  8111. "exclude-from-classmap": [
  8112. "/Tests/"
  8113. ]
  8114. },
  8115. "notification-url": "https://packagist.org/downloads/",
  8116. "license": [
  8117. "MIT"
  8118. ],
  8119. "authors": [
  8120. {
  8121. "name": "Fabien Potencier",
  8122. "email": "fabien@symfony.com"
  8123. },
  8124. {
  8125. "name": "Symfony Community",
  8126. "homepage": "https://symfony.com/contributors"
  8127. }
  8128. ],
  8129. "description": "Symfony Debug Component",
  8130. "homepage": "https://symfony.com",
  8131. "support": {
  8132. "source": "https://github.com/symfony/debug/tree/3.4"
  8133. },
  8134. "funding": [
  8135. {
  8136. "url": "https://symfony.com/sponsor",
  8137. "type": "custom"
  8138. },
  8139. {
  8140. "url": "https://github.com/fabpot",
  8141. "type": "github"
  8142. },
  8143. {
  8144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8145. "type": "tidelift"
  8146. }
  8147. ],
  8148. "abandoned": "symfony/error-handler",
  8149. "time": "2020-05-22T18:25:20+00:00"
  8150. },
  8151. {
  8152. "name": "symfony/dependency-injection",
  8153. "version": "v3.4.41",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/symfony/dependency-injection.git",
  8157. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  8162. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  8163. "shasum": ""
  8164. },
  8165. "require": {
  8166. "php": "^5.5.9|>=7.0.8",
  8167. "psr/container": "^1.0"
  8168. },
  8169. "conflict": {
  8170. "symfony/config": "<3.3.7",
  8171. "symfony/finder": "<3.3",
  8172. "symfony/proxy-manager-bridge": "<3.4",
  8173. "symfony/yaml": "<3.4"
  8174. },
  8175. "provide": {
  8176. "psr/container-implementation": "1.0"
  8177. },
  8178. "require-dev": {
  8179. "symfony/config": "~3.3|~4.0",
  8180. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8181. "symfony/yaml": "~3.4|~4.0"
  8182. },
  8183. "suggest": {
  8184. "symfony/config": "",
  8185. "symfony/expression-language": "For using expressions in service container configuration",
  8186. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8187. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8188. "symfony/yaml": ""
  8189. },
  8190. "type": "library",
  8191. "extra": {
  8192. "branch-alias": {
  8193. "dev-master": "3.4-dev"
  8194. }
  8195. },
  8196. "autoload": {
  8197. "psr-4": {
  8198. "Symfony\\Component\\DependencyInjection\\": ""
  8199. },
  8200. "exclude-from-classmap": [
  8201. "/Tests/"
  8202. ]
  8203. },
  8204. "notification-url": "https://packagist.org/downloads/",
  8205. "license": [
  8206. "MIT"
  8207. ],
  8208. "authors": [
  8209. {
  8210. "name": "Fabien Potencier",
  8211. "email": "fabien@symfony.com"
  8212. },
  8213. {
  8214. "name": "Symfony Community",
  8215. "homepage": "https://symfony.com/contributors"
  8216. }
  8217. ],
  8218. "description": "Symfony DependencyInjection Component",
  8219. "homepage": "https://symfony.com",
  8220. "support": {
  8221. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  8222. },
  8223. "funding": [
  8224. {
  8225. "url": "https://symfony.com/sponsor",
  8226. "type": "custom"
  8227. },
  8228. {
  8229. "url": "https://github.com/fabpot",
  8230. "type": "github"
  8231. },
  8232. {
  8233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8234. "type": "tidelift"
  8235. }
  8236. ],
  8237. "time": "2020-05-30T21:06:01+00:00"
  8238. },
  8239. {
  8240. "name": "symfony/event-dispatcher",
  8241. "version": "v3.4.41",
  8242. "source": {
  8243. "type": "git",
  8244. "url": "https://github.com/symfony/event-dispatcher.git",
  8245. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  8246. },
  8247. "dist": {
  8248. "type": "zip",
  8249. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  8250. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  8251. "shasum": ""
  8252. },
  8253. "require": {
  8254. "php": "^5.5.9|>=7.0.8"
  8255. },
  8256. "conflict": {
  8257. "symfony/dependency-injection": "<3.3"
  8258. },
  8259. "require-dev": {
  8260. "psr/log": "~1.0",
  8261. "symfony/config": "~2.8|~3.0|~4.0",
  8262. "symfony/dependency-injection": "~3.3|~4.0",
  8263. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8264. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8265. },
  8266. "suggest": {
  8267. "symfony/dependency-injection": "",
  8268. "symfony/http-kernel": ""
  8269. },
  8270. "type": "library",
  8271. "extra": {
  8272. "branch-alias": {
  8273. "dev-master": "3.4-dev"
  8274. }
  8275. },
  8276. "autoload": {
  8277. "psr-4": {
  8278. "Symfony\\Component\\EventDispatcher\\": ""
  8279. },
  8280. "exclude-from-classmap": [
  8281. "/Tests/"
  8282. ]
  8283. },
  8284. "notification-url": "https://packagist.org/downloads/",
  8285. "license": [
  8286. "MIT"
  8287. ],
  8288. "authors": [
  8289. {
  8290. "name": "Fabien Potencier",
  8291. "email": "fabien@symfony.com"
  8292. },
  8293. {
  8294. "name": "Symfony Community",
  8295. "homepage": "https://symfony.com/contributors"
  8296. }
  8297. ],
  8298. "description": "Symfony EventDispatcher Component",
  8299. "homepage": "https://symfony.com",
  8300. "support": {
  8301. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8302. },
  8303. "funding": [
  8304. {
  8305. "url": "https://symfony.com/sponsor",
  8306. "type": "custom"
  8307. },
  8308. {
  8309. "url": "https://github.com/fabpot",
  8310. "type": "github"
  8311. },
  8312. {
  8313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8314. "type": "tidelift"
  8315. }
  8316. ],
  8317. "time": "2020-05-05T15:06:23+00:00"
  8318. },
  8319. {
  8320. "name": "symfony/filesystem",
  8321. "version": "v4.4.42",
  8322. "source": {
  8323. "type": "git",
  8324. "url": "https://github.com/symfony/filesystem.git",
  8325. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8326. },
  8327. "dist": {
  8328. "type": "zip",
  8329. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8330. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8331. "shasum": ""
  8332. },
  8333. "require": {
  8334. "php": ">=7.1.3",
  8335. "symfony/polyfill-ctype": "~1.8",
  8336. "symfony/polyfill-php80": "^1.16"
  8337. },
  8338. "type": "library",
  8339. "autoload": {
  8340. "psr-4": {
  8341. "Symfony\\Component\\Filesystem\\": ""
  8342. },
  8343. "exclude-from-classmap": [
  8344. "/Tests/"
  8345. ]
  8346. },
  8347. "notification-url": "https://packagist.org/downloads/",
  8348. "license": [
  8349. "MIT"
  8350. ],
  8351. "authors": [
  8352. {
  8353. "name": "Fabien Potencier",
  8354. "email": "fabien@symfony.com"
  8355. },
  8356. {
  8357. "name": "Symfony Community",
  8358. "homepage": "https://symfony.com/contributors"
  8359. }
  8360. ],
  8361. "description": "Provides basic utilities for the filesystem",
  8362. "homepage": "https://symfony.com",
  8363. "support": {
  8364. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8365. },
  8366. "funding": [
  8367. {
  8368. "url": "https://symfony.com/sponsor",
  8369. "type": "custom"
  8370. },
  8371. {
  8372. "url": "https://github.com/fabpot",
  8373. "type": "github"
  8374. },
  8375. {
  8376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8377. "type": "tidelift"
  8378. }
  8379. ],
  8380. "time": "2022-05-20T08:49:14+00:00"
  8381. },
  8382. {
  8383. "name": "symfony/finder",
  8384. "version": "v4.4.44",
  8385. "source": {
  8386. "type": "git",
  8387. "url": "https://github.com/symfony/finder.git",
  8388. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8389. },
  8390. "dist": {
  8391. "type": "zip",
  8392. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8393. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8394. "shasum": ""
  8395. },
  8396. "require": {
  8397. "php": ">=7.1.3",
  8398. "symfony/polyfill-php80": "^1.16"
  8399. },
  8400. "type": "library",
  8401. "autoload": {
  8402. "psr-4": {
  8403. "Symfony\\Component\\Finder\\": ""
  8404. },
  8405. "exclude-from-classmap": [
  8406. "/Tests/"
  8407. ]
  8408. },
  8409. "notification-url": "https://packagist.org/downloads/",
  8410. "license": [
  8411. "MIT"
  8412. ],
  8413. "authors": [
  8414. {
  8415. "name": "Fabien Potencier",
  8416. "email": "fabien@symfony.com"
  8417. },
  8418. {
  8419. "name": "Symfony Community",
  8420. "homepage": "https://symfony.com/contributors"
  8421. }
  8422. ],
  8423. "description": "Finds files and directories via an intuitive fluent interface",
  8424. "homepage": "https://symfony.com",
  8425. "support": {
  8426. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8427. },
  8428. "funding": [
  8429. {
  8430. "url": "https://symfony.com/sponsor",
  8431. "type": "custom"
  8432. },
  8433. {
  8434. "url": "https://github.com/fabpot",
  8435. "type": "github"
  8436. },
  8437. {
  8438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8439. "type": "tidelift"
  8440. }
  8441. ],
  8442. "time": "2022-07-29T07:35:46+00:00"
  8443. },
  8444. {
  8445. "name": "symfony/http-foundation",
  8446. "version": "v3.4.41",
  8447. "source": {
  8448. "type": "git",
  8449. "url": "https://github.com/symfony/http-foundation.git",
  8450. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8451. },
  8452. "dist": {
  8453. "type": "zip",
  8454. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8455. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8456. "shasum": ""
  8457. },
  8458. "require": {
  8459. "php": "^5.5.9|>=7.0.8",
  8460. "symfony/polyfill-mbstring": "~1.1",
  8461. "symfony/polyfill-php70": "~1.6"
  8462. },
  8463. "require-dev": {
  8464. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8465. },
  8466. "type": "library",
  8467. "extra": {
  8468. "branch-alias": {
  8469. "dev-master": "3.4-dev"
  8470. }
  8471. },
  8472. "autoload": {
  8473. "psr-4": {
  8474. "Symfony\\Component\\HttpFoundation\\": ""
  8475. },
  8476. "exclude-from-classmap": [
  8477. "/Tests/"
  8478. ]
  8479. },
  8480. "notification-url": "https://packagist.org/downloads/",
  8481. "license": [
  8482. "MIT"
  8483. ],
  8484. "authors": [
  8485. {
  8486. "name": "Fabien Potencier",
  8487. "email": "fabien@symfony.com"
  8488. },
  8489. {
  8490. "name": "Symfony Community",
  8491. "homepage": "https://symfony.com/contributors"
  8492. }
  8493. ],
  8494. "description": "Symfony HttpFoundation Component",
  8495. "homepage": "https://symfony.com",
  8496. "support": {
  8497. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8498. },
  8499. "funding": [
  8500. {
  8501. "url": "https://symfony.com/sponsor",
  8502. "type": "custom"
  8503. },
  8504. {
  8505. "url": "https://github.com/fabpot",
  8506. "type": "github"
  8507. },
  8508. {
  8509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8510. "type": "tidelift"
  8511. }
  8512. ],
  8513. "time": "2020-05-16T13:15:54+00:00"
  8514. },
  8515. {
  8516. "name": "symfony/http-kernel",
  8517. "version": "v3.4.44",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/symfony/http-kernel.git",
  8521. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8526. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8527. "shasum": ""
  8528. },
  8529. "require": {
  8530. "php": "^5.5.9|>=7.0.8",
  8531. "psr/log": "~1.0",
  8532. "symfony/debug": "^3.3.3|~4.0",
  8533. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8534. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8535. "symfony/polyfill-ctype": "~1.8",
  8536. "symfony/polyfill-php56": "~1.8"
  8537. },
  8538. "conflict": {
  8539. "symfony/config": "<2.8",
  8540. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8541. "symfony/var-dumper": "<3.3",
  8542. "twig/twig": "<1.34|<2.4,>=2"
  8543. },
  8544. "provide": {
  8545. "psr/log-implementation": "1.0"
  8546. },
  8547. "require-dev": {
  8548. "psr/cache": "~1.0",
  8549. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8550. "symfony/class-loader": "~2.8|~3.0",
  8551. "symfony/config": "~2.8|~3.0|~4.0",
  8552. "symfony/console": "~2.8|~3.0|~4.0",
  8553. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8554. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8555. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8556. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8557. "symfony/finder": "~2.8|~3.0|~4.0",
  8558. "symfony/process": "~2.8|~3.0|~4.0",
  8559. "symfony/routing": "~3.4|~4.0",
  8560. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8561. "symfony/templating": "~2.8|~3.0|~4.0",
  8562. "symfony/translation": "~2.8|~3.0|~4.0",
  8563. "symfony/var-dumper": "~3.3|~4.0"
  8564. },
  8565. "suggest": {
  8566. "symfony/browser-kit": "",
  8567. "symfony/config": "",
  8568. "symfony/console": "",
  8569. "symfony/dependency-injection": "",
  8570. "symfony/finder": "",
  8571. "symfony/var-dumper": ""
  8572. },
  8573. "type": "library",
  8574. "extra": {
  8575. "branch-alias": {
  8576. "dev-master": "3.4-dev"
  8577. }
  8578. },
  8579. "autoload": {
  8580. "psr-4": {
  8581. "Symfony\\Component\\HttpKernel\\": ""
  8582. },
  8583. "exclude-from-classmap": [
  8584. "/Tests/"
  8585. ]
  8586. },
  8587. "notification-url": "https://packagist.org/downloads/",
  8588. "license": [
  8589. "MIT"
  8590. ],
  8591. "authors": [
  8592. {
  8593. "name": "Fabien Potencier",
  8594. "email": "fabien@symfony.com"
  8595. },
  8596. {
  8597. "name": "Symfony Community",
  8598. "homepage": "https://symfony.com/contributors"
  8599. }
  8600. ],
  8601. "description": "Symfony HttpKernel Component",
  8602. "homepage": "https://symfony.com",
  8603. "support": {
  8604. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8605. },
  8606. "funding": [
  8607. {
  8608. "url": "https://symfony.com/sponsor",
  8609. "type": "custom"
  8610. },
  8611. {
  8612. "url": "https://github.com/fabpot",
  8613. "type": "github"
  8614. },
  8615. {
  8616. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8617. "type": "tidelift"
  8618. }
  8619. ],
  8620. "time": "2020-08-31T05:53:42+00:00"
  8621. },
  8622. {
  8623. "name": "symfony/polyfill-ctype",
  8624. "version": "v1.17.0",
  8625. "source": {
  8626. "type": "git",
  8627. "url": "https://github.com/symfony/polyfill-ctype.git",
  8628. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8629. },
  8630. "dist": {
  8631. "type": "zip",
  8632. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8633. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8634. "shasum": ""
  8635. },
  8636. "require": {
  8637. "php": ">=5.3.3"
  8638. },
  8639. "suggest": {
  8640. "ext-ctype": "For best performance"
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-master": "1.17-dev"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "files": [
  8650. "bootstrap.php"
  8651. ],
  8652. "psr-4": {
  8653. "Symfony\\Polyfill\\Ctype\\": ""
  8654. }
  8655. },
  8656. "notification-url": "https://packagist.org/downloads/",
  8657. "license": [
  8658. "MIT"
  8659. ],
  8660. "authors": [
  8661. {
  8662. "name": "Gert de Pagter",
  8663. "email": "BackEndTea@gmail.com"
  8664. },
  8665. {
  8666. "name": "Symfony Community",
  8667. "homepage": "https://symfony.com/contributors"
  8668. }
  8669. ],
  8670. "description": "Symfony polyfill for ctype functions",
  8671. "homepage": "https://symfony.com",
  8672. "keywords": [
  8673. "compatibility",
  8674. "ctype",
  8675. "polyfill",
  8676. "portable"
  8677. ],
  8678. "support": {
  8679. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8680. },
  8681. "funding": [
  8682. {
  8683. "url": "https://symfony.com/sponsor",
  8684. "type": "custom"
  8685. },
  8686. {
  8687. "url": "https://github.com/fabpot",
  8688. "type": "github"
  8689. },
  8690. {
  8691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8692. "type": "tidelift"
  8693. }
  8694. ],
  8695. "time": "2020-05-12T16:14:59+00:00"
  8696. },
  8697. {
  8698. "name": "symfony/polyfill-iconv",
  8699. "version": "v1.17.0",
  8700. "source": {
  8701. "type": "git",
  8702. "url": "https://github.com/symfony/polyfill-iconv.git",
  8703. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8704. },
  8705. "dist": {
  8706. "type": "zip",
  8707. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8708. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8709. "shasum": ""
  8710. },
  8711. "require": {
  8712. "php": ">=5.3.3"
  8713. },
  8714. "suggest": {
  8715. "ext-iconv": "For best performance"
  8716. },
  8717. "type": "library",
  8718. "extra": {
  8719. "branch-alias": {
  8720. "dev-master": "1.17-dev"
  8721. }
  8722. },
  8723. "autoload": {
  8724. "files": [
  8725. "bootstrap.php"
  8726. ],
  8727. "psr-4": {
  8728. "Symfony\\Polyfill\\Iconv\\": ""
  8729. }
  8730. },
  8731. "notification-url": "https://packagist.org/downloads/",
  8732. "license": [
  8733. "MIT"
  8734. ],
  8735. "authors": [
  8736. {
  8737. "name": "Nicolas Grekas",
  8738. "email": "p@tchwork.com"
  8739. },
  8740. {
  8741. "name": "Symfony Community",
  8742. "homepage": "https://symfony.com/contributors"
  8743. }
  8744. ],
  8745. "description": "Symfony polyfill for the Iconv extension",
  8746. "homepage": "https://symfony.com",
  8747. "keywords": [
  8748. "compatibility",
  8749. "iconv",
  8750. "polyfill",
  8751. "portable",
  8752. "shim"
  8753. ],
  8754. "support": {
  8755. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8756. },
  8757. "funding": [
  8758. {
  8759. "url": "https://symfony.com/sponsor",
  8760. "type": "custom"
  8761. },
  8762. {
  8763. "url": "https://github.com/fabpot",
  8764. "type": "github"
  8765. },
  8766. {
  8767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8768. "type": "tidelift"
  8769. }
  8770. ],
  8771. "time": "2020-05-12T16:47:27+00:00"
  8772. },
  8773. {
  8774. "name": "symfony/polyfill-intl-idn",
  8775. "version": "v1.17.0",
  8776. "source": {
  8777. "type": "git",
  8778. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8779. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8780. },
  8781. "dist": {
  8782. "type": "zip",
  8783. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8784. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8785. "shasum": ""
  8786. },
  8787. "require": {
  8788. "php": ">=5.3.3",
  8789. "symfony/polyfill-mbstring": "^1.3",
  8790. "symfony/polyfill-php72": "^1.10"
  8791. },
  8792. "suggest": {
  8793. "ext-intl": "For best performance"
  8794. },
  8795. "type": "library",
  8796. "extra": {
  8797. "branch-alias": {
  8798. "dev-master": "1.17-dev"
  8799. }
  8800. },
  8801. "autoload": {
  8802. "files": [
  8803. "bootstrap.php"
  8804. ],
  8805. "psr-4": {
  8806. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8807. }
  8808. },
  8809. "notification-url": "https://packagist.org/downloads/",
  8810. "license": [
  8811. "MIT"
  8812. ],
  8813. "authors": [
  8814. {
  8815. "name": "Laurent Bassin",
  8816. "email": "laurent@bassin.info"
  8817. },
  8818. {
  8819. "name": "Symfony Community",
  8820. "homepage": "https://symfony.com/contributors"
  8821. }
  8822. ],
  8823. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8824. "homepage": "https://symfony.com",
  8825. "keywords": [
  8826. "compatibility",
  8827. "idn",
  8828. "intl",
  8829. "polyfill",
  8830. "portable",
  8831. "shim"
  8832. ],
  8833. "support": {
  8834. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8835. },
  8836. "funding": [
  8837. {
  8838. "url": "https://symfony.com/sponsor",
  8839. "type": "custom"
  8840. },
  8841. {
  8842. "url": "https://github.com/fabpot",
  8843. "type": "github"
  8844. },
  8845. {
  8846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8847. "type": "tidelift"
  8848. }
  8849. ],
  8850. "time": "2020-05-12T16:47:27+00:00"
  8851. },
  8852. {
  8853. "name": "symfony/polyfill-mbstring",
  8854. "version": "v1.17.0",
  8855. "source": {
  8856. "type": "git",
  8857. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8858. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8859. },
  8860. "dist": {
  8861. "type": "zip",
  8862. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8863. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8864. "shasum": ""
  8865. },
  8866. "require": {
  8867. "php": ">=5.3.3"
  8868. },
  8869. "suggest": {
  8870. "ext-mbstring": "For best performance"
  8871. },
  8872. "type": "library",
  8873. "extra": {
  8874. "branch-alias": {
  8875. "dev-master": "1.17-dev"
  8876. }
  8877. },
  8878. "autoload": {
  8879. "files": [
  8880. "bootstrap.php"
  8881. ],
  8882. "psr-4": {
  8883. "Symfony\\Polyfill\\Mbstring\\": ""
  8884. }
  8885. },
  8886. "notification-url": "https://packagist.org/downloads/",
  8887. "license": [
  8888. "MIT"
  8889. ],
  8890. "authors": [
  8891. {
  8892. "name": "Nicolas Grekas",
  8893. "email": "p@tchwork.com"
  8894. },
  8895. {
  8896. "name": "Symfony Community",
  8897. "homepage": "https://symfony.com/contributors"
  8898. }
  8899. ],
  8900. "description": "Symfony polyfill for the Mbstring extension",
  8901. "homepage": "https://symfony.com",
  8902. "keywords": [
  8903. "compatibility",
  8904. "mbstring",
  8905. "polyfill",
  8906. "portable",
  8907. "shim"
  8908. ],
  8909. "support": {
  8910. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8911. },
  8912. "funding": [
  8913. {
  8914. "url": "https://symfony.com/sponsor",
  8915. "type": "custom"
  8916. },
  8917. {
  8918. "url": "https://github.com/fabpot",
  8919. "type": "github"
  8920. },
  8921. {
  8922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8923. "type": "tidelift"
  8924. }
  8925. ],
  8926. "time": "2020-05-12T16:47:27+00:00"
  8927. },
  8928. {
  8929. "name": "symfony/polyfill-php56",
  8930. "version": "v1.17.0",
  8931. "source": {
  8932. "type": "git",
  8933. "url": "https://github.com/symfony/polyfill-php56.git",
  8934. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8935. },
  8936. "dist": {
  8937. "type": "zip",
  8938. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8939. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8940. "shasum": ""
  8941. },
  8942. "require": {
  8943. "php": ">=5.3.3",
  8944. "symfony/polyfill-util": "~1.0"
  8945. },
  8946. "type": "library",
  8947. "extra": {
  8948. "branch-alias": {
  8949. "dev-master": "1.17-dev"
  8950. }
  8951. },
  8952. "autoload": {
  8953. "files": [
  8954. "bootstrap.php"
  8955. ],
  8956. "psr-4": {
  8957. "Symfony\\Polyfill\\Php56\\": ""
  8958. }
  8959. },
  8960. "notification-url": "https://packagist.org/downloads/",
  8961. "license": [
  8962. "MIT"
  8963. ],
  8964. "authors": [
  8965. {
  8966. "name": "Nicolas Grekas",
  8967. "email": "p@tchwork.com"
  8968. },
  8969. {
  8970. "name": "Symfony Community",
  8971. "homepage": "https://symfony.com/contributors"
  8972. }
  8973. ],
  8974. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8975. "homepage": "https://symfony.com",
  8976. "keywords": [
  8977. "compatibility",
  8978. "polyfill",
  8979. "portable",
  8980. "shim"
  8981. ],
  8982. "support": {
  8983. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8984. },
  8985. "funding": [
  8986. {
  8987. "url": "https://symfony.com/sponsor",
  8988. "type": "custom"
  8989. },
  8990. {
  8991. "url": "https://github.com/fabpot",
  8992. "type": "github"
  8993. },
  8994. {
  8995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8996. "type": "tidelift"
  8997. }
  8998. ],
  8999. "time": "2020-05-12T16:47:27+00:00"
  9000. },
  9001. {
  9002. "name": "symfony/polyfill-php70",
  9003. "version": "v1.17.0",
  9004. "source": {
  9005. "type": "git",
  9006. "url": "https://github.com/symfony/polyfill-php70.git",
  9007. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  9008. },
  9009. "dist": {
  9010. "type": "zip",
  9011. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  9012. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  9013. "shasum": ""
  9014. },
  9015. "require": {
  9016. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9017. "php": ">=5.3.3"
  9018. },
  9019. "type": "library",
  9020. "extra": {
  9021. "branch-alias": {
  9022. "dev-master": "1.17-dev"
  9023. }
  9024. },
  9025. "autoload": {
  9026. "files": [
  9027. "bootstrap.php"
  9028. ],
  9029. "psr-4": {
  9030. "Symfony\\Polyfill\\Php70\\": ""
  9031. },
  9032. "classmap": [
  9033. "Resources/stubs"
  9034. ]
  9035. },
  9036. "notification-url": "https://packagist.org/downloads/",
  9037. "license": [
  9038. "MIT"
  9039. ],
  9040. "authors": [
  9041. {
  9042. "name": "Nicolas Grekas",
  9043. "email": "p@tchwork.com"
  9044. },
  9045. {
  9046. "name": "Symfony Community",
  9047. "homepage": "https://symfony.com/contributors"
  9048. }
  9049. ],
  9050. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9051. "homepage": "https://symfony.com",
  9052. "keywords": [
  9053. "compatibility",
  9054. "polyfill",
  9055. "portable",
  9056. "shim"
  9057. ],
  9058. "support": {
  9059. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  9060. },
  9061. "funding": [
  9062. {
  9063. "url": "https://symfony.com/sponsor",
  9064. "type": "custom"
  9065. },
  9066. {
  9067. "url": "https://github.com/fabpot",
  9068. "type": "github"
  9069. },
  9070. {
  9071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9072. "type": "tidelift"
  9073. }
  9074. ],
  9075. "time": "2020-05-12T16:47:27+00:00"
  9076. },
  9077. {
  9078. "name": "symfony/polyfill-php72",
  9079. "version": "v1.17.0",
  9080. "source": {
  9081. "type": "git",
  9082. "url": "https://github.com/symfony/polyfill-php72.git",
  9083. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  9084. },
  9085. "dist": {
  9086. "type": "zip",
  9087. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  9088. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  9089. "shasum": ""
  9090. },
  9091. "require": {
  9092. "php": ">=5.3.3"
  9093. },
  9094. "type": "library",
  9095. "extra": {
  9096. "branch-alias": {
  9097. "dev-master": "1.17-dev"
  9098. }
  9099. },
  9100. "autoload": {
  9101. "files": [
  9102. "bootstrap.php"
  9103. ],
  9104. "psr-4": {
  9105. "Symfony\\Polyfill\\Php72\\": ""
  9106. }
  9107. },
  9108. "notification-url": "https://packagist.org/downloads/",
  9109. "license": [
  9110. "MIT"
  9111. ],
  9112. "authors": [
  9113. {
  9114. "name": "Nicolas Grekas",
  9115. "email": "p@tchwork.com"
  9116. },
  9117. {
  9118. "name": "Symfony Community",
  9119. "homepage": "https://symfony.com/contributors"
  9120. }
  9121. ],
  9122. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9123. "homepage": "https://symfony.com",
  9124. "keywords": [
  9125. "compatibility",
  9126. "polyfill",
  9127. "portable",
  9128. "shim"
  9129. ],
  9130. "support": {
  9131. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  9132. },
  9133. "funding": [
  9134. {
  9135. "url": "https://symfony.com/sponsor",
  9136. "type": "custom"
  9137. },
  9138. {
  9139. "url": "https://github.com/fabpot",
  9140. "type": "github"
  9141. },
  9142. {
  9143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9144. "type": "tidelift"
  9145. }
  9146. ],
  9147. "time": "2020-05-12T16:47:27+00:00"
  9148. },
  9149. {
  9150. "name": "symfony/polyfill-php80",
  9151. "version": "v1.31.0",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/symfony/polyfill-php80.git",
  9155. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9160. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9161. "shasum": ""
  9162. },
  9163. "require": {
  9164. "php": ">=7.2"
  9165. },
  9166. "type": "library",
  9167. "extra": {
  9168. "thanks": {
  9169. "name": "symfony/polyfill",
  9170. "url": "https://github.com/symfony/polyfill"
  9171. }
  9172. },
  9173. "autoload": {
  9174. "files": [
  9175. "bootstrap.php"
  9176. ],
  9177. "psr-4": {
  9178. "Symfony\\Polyfill\\Php80\\": ""
  9179. },
  9180. "classmap": [
  9181. "Resources/stubs"
  9182. ]
  9183. },
  9184. "notification-url": "https://packagist.org/downloads/",
  9185. "license": [
  9186. "MIT"
  9187. ],
  9188. "authors": [
  9189. {
  9190. "name": "Ion Bazan",
  9191. "email": "ion.bazan@gmail.com"
  9192. },
  9193. {
  9194. "name": "Nicolas Grekas",
  9195. "email": "p@tchwork.com"
  9196. },
  9197. {
  9198. "name": "Symfony Community",
  9199. "homepage": "https://symfony.com/contributors"
  9200. }
  9201. ],
  9202. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9203. "homepage": "https://symfony.com",
  9204. "keywords": [
  9205. "compatibility",
  9206. "polyfill",
  9207. "portable",
  9208. "shim"
  9209. ],
  9210. "support": {
  9211. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  9212. },
  9213. "funding": [
  9214. {
  9215. "url": "https://symfony.com/sponsor",
  9216. "type": "custom"
  9217. },
  9218. {
  9219. "url": "https://github.com/fabpot",
  9220. "type": "github"
  9221. },
  9222. {
  9223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9224. "type": "tidelift"
  9225. }
  9226. ],
  9227. "time": "2024-09-09T11:45:10+00:00"
  9228. },
  9229. {
  9230. "name": "symfony/polyfill-util",
  9231. "version": "v1.17.0",
  9232. "source": {
  9233. "type": "git",
  9234. "url": "https://github.com/symfony/polyfill-util.git",
  9235. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  9236. },
  9237. "dist": {
  9238. "type": "zip",
  9239. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9240. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9241. "shasum": ""
  9242. },
  9243. "require": {
  9244. "php": ">=5.3.3"
  9245. },
  9246. "type": "library",
  9247. "extra": {
  9248. "branch-alias": {
  9249. "dev-master": "1.17-dev"
  9250. }
  9251. },
  9252. "autoload": {
  9253. "psr-4": {
  9254. "Symfony\\Polyfill\\Util\\": ""
  9255. }
  9256. },
  9257. "notification-url": "https://packagist.org/downloads/",
  9258. "license": [
  9259. "MIT"
  9260. ],
  9261. "authors": [
  9262. {
  9263. "name": "Nicolas Grekas",
  9264. "email": "p@tchwork.com"
  9265. },
  9266. {
  9267. "name": "Symfony Community",
  9268. "homepage": "https://symfony.com/contributors"
  9269. }
  9270. ],
  9271. "description": "Symfony utilities for portability of PHP codes",
  9272. "homepage": "https://symfony.com",
  9273. "keywords": [
  9274. "compat",
  9275. "compatibility",
  9276. "polyfill",
  9277. "shim"
  9278. ],
  9279. "support": {
  9280. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9281. },
  9282. "funding": [
  9283. {
  9284. "url": "https://symfony.com/sponsor",
  9285. "type": "custom"
  9286. },
  9287. {
  9288. "url": "https://github.com/fabpot",
  9289. "type": "github"
  9290. },
  9291. {
  9292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9293. "type": "tidelift"
  9294. }
  9295. ],
  9296. "time": "2020-05-12T16:14:59+00:00"
  9297. },
  9298. {
  9299. "name": "symfony/process",
  9300. "version": "v3.4.41",
  9301. "source": {
  9302. "type": "git",
  9303. "url": "https://github.com/symfony/process.git",
  9304. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9305. },
  9306. "dist": {
  9307. "type": "zip",
  9308. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9309. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9310. "shasum": ""
  9311. },
  9312. "require": {
  9313. "php": "^5.5.9|>=7.0.8"
  9314. },
  9315. "type": "library",
  9316. "extra": {
  9317. "branch-alias": {
  9318. "dev-master": "3.4-dev"
  9319. }
  9320. },
  9321. "autoload": {
  9322. "psr-4": {
  9323. "Symfony\\Component\\Process\\": ""
  9324. },
  9325. "exclude-from-classmap": [
  9326. "/Tests/"
  9327. ]
  9328. },
  9329. "notification-url": "https://packagist.org/downloads/",
  9330. "license": [
  9331. "MIT"
  9332. ],
  9333. "authors": [
  9334. {
  9335. "name": "Fabien Potencier",
  9336. "email": "fabien@symfony.com"
  9337. },
  9338. {
  9339. "name": "Symfony Community",
  9340. "homepage": "https://symfony.com/contributors"
  9341. }
  9342. ],
  9343. "description": "Symfony Process Component",
  9344. "homepage": "https://symfony.com",
  9345. "support": {
  9346. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9347. },
  9348. "funding": [
  9349. {
  9350. "url": "https://symfony.com/sponsor",
  9351. "type": "custom"
  9352. },
  9353. {
  9354. "url": "https://github.com/fabpot",
  9355. "type": "github"
  9356. },
  9357. {
  9358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9359. "type": "tidelift"
  9360. }
  9361. ],
  9362. "time": "2020-05-23T17:05:51+00:00"
  9363. },
  9364. {
  9365. "name": "symfony/psr-http-message-bridge",
  9366. "version": "v1.1.2",
  9367. "source": {
  9368. "type": "git",
  9369. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9370. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9371. },
  9372. "dist": {
  9373. "type": "zip",
  9374. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9375. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9376. "shasum": ""
  9377. },
  9378. "require": {
  9379. "php": "^5.3.3 || ^7.0",
  9380. "psr/http-message": "^1.0",
  9381. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9382. },
  9383. "require-dev": {
  9384. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9385. },
  9386. "suggest": {
  9387. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9388. },
  9389. "type": "symfony-bridge",
  9390. "extra": {
  9391. "branch-alias": {
  9392. "dev-master": "1.1-dev"
  9393. }
  9394. },
  9395. "autoload": {
  9396. "psr-4": {
  9397. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9398. },
  9399. "exclude-from-classmap": [
  9400. "/Tests/"
  9401. ]
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "MIT"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Symfony Community",
  9410. "homepage": "http://symfony.com/contributors"
  9411. },
  9412. {
  9413. "name": "Fabien Potencier",
  9414. "email": "fabien@symfony.com"
  9415. }
  9416. ],
  9417. "description": "PSR HTTP message bridge",
  9418. "homepage": "http://symfony.com",
  9419. "keywords": [
  9420. "http",
  9421. "http-message",
  9422. "psr-17",
  9423. "psr-7"
  9424. ],
  9425. "support": {
  9426. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9427. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9428. },
  9429. "time": "2019-04-03T17:09:40+00:00"
  9430. },
  9431. {
  9432. "name": "symfony/routing",
  9433. "version": "v3.4.41",
  9434. "source": {
  9435. "type": "git",
  9436. "url": "https://github.com/symfony/routing.git",
  9437. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9438. },
  9439. "dist": {
  9440. "type": "zip",
  9441. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9442. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9443. "shasum": ""
  9444. },
  9445. "require": {
  9446. "php": "^5.5.9|>=7.0.8"
  9447. },
  9448. "conflict": {
  9449. "symfony/config": "<3.3.1",
  9450. "symfony/dependency-injection": "<3.3",
  9451. "symfony/yaml": "<3.4"
  9452. },
  9453. "require-dev": {
  9454. "doctrine/annotations": "~1.0",
  9455. "psr/log": "~1.0",
  9456. "symfony/config": "^3.3.1|~4.0",
  9457. "symfony/dependency-injection": "~3.3|~4.0",
  9458. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9459. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9460. "symfony/yaml": "~3.4|~4.0"
  9461. },
  9462. "suggest": {
  9463. "doctrine/annotations": "For using the annotation loader",
  9464. "symfony/config": "For using the all-in-one router or any loader",
  9465. "symfony/expression-language": "For using expression matching",
  9466. "symfony/http-foundation": "For using a Symfony Request object",
  9467. "symfony/yaml": "For using the YAML loader"
  9468. },
  9469. "type": "library",
  9470. "extra": {
  9471. "branch-alias": {
  9472. "dev-master": "3.4-dev"
  9473. }
  9474. },
  9475. "autoload": {
  9476. "psr-4": {
  9477. "Symfony\\Component\\Routing\\": ""
  9478. },
  9479. "exclude-from-classmap": [
  9480. "/Tests/"
  9481. ]
  9482. },
  9483. "notification-url": "https://packagist.org/downloads/",
  9484. "license": [
  9485. "MIT"
  9486. ],
  9487. "authors": [
  9488. {
  9489. "name": "Fabien Potencier",
  9490. "email": "fabien@symfony.com"
  9491. },
  9492. {
  9493. "name": "Symfony Community",
  9494. "homepage": "https://symfony.com/contributors"
  9495. }
  9496. ],
  9497. "description": "Symfony Routing Component",
  9498. "homepage": "https://symfony.com",
  9499. "keywords": [
  9500. "router",
  9501. "routing",
  9502. "uri",
  9503. "url"
  9504. ],
  9505. "support": {
  9506. "source": "https://github.com/symfony/routing/tree/3.4"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://symfony.com/sponsor",
  9511. "type": "custom"
  9512. },
  9513. {
  9514. "url": "https://github.com/fabpot",
  9515. "type": "github"
  9516. },
  9517. {
  9518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9519. "type": "tidelift"
  9520. }
  9521. ],
  9522. "time": "2020-05-30T19:50:06+00:00"
  9523. },
  9524. {
  9525. "name": "symfony/serializer",
  9526. "version": "v3.4.41",
  9527. "source": {
  9528. "type": "git",
  9529. "url": "https://github.com/symfony/serializer.git",
  9530. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9531. },
  9532. "dist": {
  9533. "type": "zip",
  9534. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9535. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9536. "shasum": ""
  9537. },
  9538. "require": {
  9539. "php": "^5.5.9|>=7.0.8",
  9540. "symfony/polyfill-ctype": "~1.8"
  9541. },
  9542. "conflict": {
  9543. "phpdocumentor/type-resolver": "<0.2.1",
  9544. "symfony/dependency-injection": "<3.2",
  9545. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9546. "symfony/property-info": "<3.1",
  9547. "symfony/yaml": "<3.4"
  9548. },
  9549. "require-dev": {
  9550. "doctrine/annotations": "~1.0",
  9551. "doctrine/cache": "~1.0",
  9552. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9553. "symfony/cache": "~3.1|~4.0",
  9554. "symfony/config": "~2.8|~3.0|~4.0",
  9555. "symfony/dependency-injection": "~3.2|~4.0",
  9556. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9557. "symfony/property-access": "~2.8|~3.0|~4.0",
  9558. "symfony/property-info": "^3.4.13|~4.0",
  9559. "symfony/yaml": "~3.4|~4.0"
  9560. },
  9561. "suggest": {
  9562. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9563. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9564. "psr/cache-implementation": "For using the metadata cache.",
  9565. "symfony/config": "For using the XML mapping loader.",
  9566. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9567. "symfony/property-access": "For using the ObjectNormalizer.",
  9568. "symfony/property-info": "To deserialize relations.",
  9569. "symfony/yaml": "For using the default YAML mapping loader."
  9570. },
  9571. "type": "library",
  9572. "extra": {
  9573. "branch-alias": {
  9574. "dev-master": "3.4-dev"
  9575. }
  9576. },
  9577. "autoload": {
  9578. "psr-4": {
  9579. "Symfony\\Component\\Serializer\\": ""
  9580. },
  9581. "exclude-from-classmap": [
  9582. "/Tests/"
  9583. ]
  9584. },
  9585. "notification-url": "https://packagist.org/downloads/",
  9586. "license": [
  9587. "MIT"
  9588. ],
  9589. "authors": [
  9590. {
  9591. "name": "Fabien Potencier",
  9592. "email": "fabien@symfony.com"
  9593. },
  9594. {
  9595. "name": "Symfony Community",
  9596. "homepage": "https://symfony.com/contributors"
  9597. }
  9598. ],
  9599. "description": "Symfony Serializer Component",
  9600. "homepage": "https://symfony.com",
  9601. "support": {
  9602. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9603. },
  9604. "funding": [
  9605. {
  9606. "url": "https://symfony.com/sponsor",
  9607. "type": "custom"
  9608. },
  9609. {
  9610. "url": "https://github.com/fabpot",
  9611. "type": "github"
  9612. },
  9613. {
  9614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9615. "type": "tidelift"
  9616. }
  9617. ],
  9618. "time": "2020-05-30T18:58:05+00:00"
  9619. },
  9620. {
  9621. "name": "symfony/translation",
  9622. "version": "v3.4.41",
  9623. "source": {
  9624. "type": "git",
  9625. "url": "https://github.com/symfony/translation.git",
  9626. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9627. },
  9628. "dist": {
  9629. "type": "zip",
  9630. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9631. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9632. "shasum": ""
  9633. },
  9634. "require": {
  9635. "php": "^5.5.9|>=7.0.8",
  9636. "symfony/polyfill-mbstring": "~1.0"
  9637. },
  9638. "conflict": {
  9639. "symfony/config": "<2.8",
  9640. "symfony/dependency-injection": "<3.4",
  9641. "symfony/yaml": "<3.4"
  9642. },
  9643. "require-dev": {
  9644. "psr/log": "~1.0",
  9645. "symfony/config": "~2.8|~3.0|~4.0",
  9646. "symfony/dependency-injection": "~3.4|~4.0",
  9647. "symfony/finder": "~2.8|~3.0|~4.0",
  9648. "symfony/http-kernel": "~3.4|~4.0",
  9649. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9650. "symfony/var-dumper": "~3.4|~4.0",
  9651. "symfony/yaml": "~3.4|~4.0"
  9652. },
  9653. "suggest": {
  9654. "psr/log-implementation": "To use logging capability in translator",
  9655. "symfony/config": "",
  9656. "symfony/yaml": ""
  9657. },
  9658. "type": "library",
  9659. "extra": {
  9660. "branch-alias": {
  9661. "dev-master": "3.4-dev"
  9662. }
  9663. },
  9664. "autoload": {
  9665. "psr-4": {
  9666. "Symfony\\Component\\Translation\\": ""
  9667. },
  9668. "exclude-from-classmap": [
  9669. "/Tests/"
  9670. ]
  9671. },
  9672. "notification-url": "https://packagist.org/downloads/",
  9673. "license": [
  9674. "MIT"
  9675. ],
  9676. "authors": [
  9677. {
  9678. "name": "Fabien Potencier",
  9679. "email": "fabien@symfony.com"
  9680. },
  9681. {
  9682. "name": "Symfony Community",
  9683. "homepage": "https://symfony.com/contributors"
  9684. }
  9685. ],
  9686. "description": "Symfony Translation Component",
  9687. "homepage": "https://symfony.com",
  9688. "support": {
  9689. "source": "https://github.com/symfony/translation/tree/3.4"
  9690. },
  9691. "funding": [
  9692. {
  9693. "url": "https://symfony.com/sponsor",
  9694. "type": "custom"
  9695. },
  9696. {
  9697. "url": "https://github.com/fabpot",
  9698. "type": "github"
  9699. },
  9700. {
  9701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9702. "type": "tidelift"
  9703. }
  9704. ],
  9705. "time": "2020-05-30T18:58:05+00:00"
  9706. },
  9707. {
  9708. "name": "symfony/validator",
  9709. "version": "v3.4.41",
  9710. "source": {
  9711. "type": "git",
  9712. "url": "https://github.com/symfony/validator.git",
  9713. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9714. },
  9715. "dist": {
  9716. "type": "zip",
  9717. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9718. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9719. "shasum": ""
  9720. },
  9721. "require": {
  9722. "php": "^5.5.9|>=7.0.8",
  9723. "symfony/polyfill-ctype": "~1.8",
  9724. "symfony/polyfill-mbstring": "~1.0",
  9725. "symfony/translation": "~2.8|~3.0|~4.0"
  9726. },
  9727. "conflict": {
  9728. "doctrine/lexer": "<1.0.2",
  9729. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9730. "symfony/dependency-injection": "<3.3",
  9731. "symfony/http-kernel": "<3.3.5",
  9732. "symfony/yaml": "<3.4"
  9733. },
  9734. "require-dev": {
  9735. "doctrine/annotations": "~1.7",
  9736. "doctrine/cache": "~1.0",
  9737. "egulias/email-validator": "^2.1.10",
  9738. "symfony/cache": "~3.1|~4.0",
  9739. "symfony/config": "~2.8|~3.0|~4.0",
  9740. "symfony/dependency-injection": "~3.3|~4.0",
  9741. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9742. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9743. "symfony/http-kernel": "^3.3.5|~4.0",
  9744. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9745. "symfony/property-access": "~2.8|~3.0|~4.0",
  9746. "symfony/var-dumper": "~3.3|~4.0",
  9747. "symfony/yaml": "~3.4|~4.0"
  9748. },
  9749. "suggest": {
  9750. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9751. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9752. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9753. "psr/cache-implementation": "For using the metadata cache.",
  9754. "symfony/config": "",
  9755. "symfony/expression-language": "For using the Expression validator",
  9756. "symfony/http-foundation": "",
  9757. "symfony/intl": "",
  9758. "symfony/property-access": "For accessing properties within comparison constraints",
  9759. "symfony/yaml": ""
  9760. },
  9761. "type": "library",
  9762. "extra": {
  9763. "branch-alias": {
  9764. "dev-master": "3.4-dev"
  9765. }
  9766. },
  9767. "autoload": {
  9768. "psr-4": {
  9769. "Symfony\\Component\\Validator\\": ""
  9770. },
  9771. "exclude-from-classmap": [
  9772. "/Tests/"
  9773. ]
  9774. },
  9775. "notification-url": "https://packagist.org/downloads/",
  9776. "license": [
  9777. "MIT"
  9778. ],
  9779. "authors": [
  9780. {
  9781. "name": "Fabien Potencier",
  9782. "email": "fabien@symfony.com"
  9783. },
  9784. {
  9785. "name": "Symfony Community",
  9786. "homepage": "https://symfony.com/contributors"
  9787. }
  9788. ],
  9789. "description": "Symfony Validator Component",
  9790. "homepage": "https://symfony.com",
  9791. "support": {
  9792. "source": "https://github.com/symfony/validator/tree/3.4"
  9793. },
  9794. "funding": [
  9795. {
  9796. "url": "https://symfony.com/sponsor",
  9797. "type": "custom"
  9798. },
  9799. {
  9800. "url": "https://github.com/fabpot",
  9801. "type": "github"
  9802. },
  9803. {
  9804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9805. "type": "tidelift"
  9806. }
  9807. ],
  9808. "time": "2020-05-30T18:43:38+00:00"
  9809. },
  9810. {
  9811. "name": "symfony/var-dumper",
  9812. "version": "v4.4.47",
  9813. "source": {
  9814. "type": "git",
  9815. "url": "https://github.com/symfony/var-dumper.git",
  9816. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9817. },
  9818. "dist": {
  9819. "type": "zip",
  9820. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9821. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9822. "shasum": ""
  9823. },
  9824. "require": {
  9825. "php": ">=7.1.3",
  9826. "symfony/polyfill-mbstring": "~1.0",
  9827. "symfony/polyfill-php72": "~1.5",
  9828. "symfony/polyfill-php80": "^1.16"
  9829. },
  9830. "conflict": {
  9831. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9832. "symfony/console": "<3.4"
  9833. },
  9834. "require-dev": {
  9835. "ext-iconv": "*",
  9836. "symfony/console": "^3.4|^4.0|^5.0",
  9837. "symfony/process": "^4.4|^5.0",
  9838. "twig/twig": "^1.43|^2.13|^3.0.4"
  9839. },
  9840. "suggest": {
  9841. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9842. "ext-intl": "To show region name in time zone dump",
  9843. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9844. },
  9845. "bin": [
  9846. "Resources/bin/var-dump-server"
  9847. ],
  9848. "type": "library",
  9849. "autoload": {
  9850. "files": [
  9851. "Resources/functions/dump.php"
  9852. ],
  9853. "psr-4": {
  9854. "Symfony\\Component\\VarDumper\\": ""
  9855. },
  9856. "exclude-from-classmap": [
  9857. "/Tests/"
  9858. ]
  9859. },
  9860. "notification-url": "https://packagist.org/downloads/",
  9861. "license": [
  9862. "MIT"
  9863. ],
  9864. "authors": [
  9865. {
  9866. "name": "Nicolas Grekas",
  9867. "email": "p@tchwork.com"
  9868. },
  9869. {
  9870. "name": "Symfony Community",
  9871. "homepage": "https://symfony.com/contributors"
  9872. }
  9873. ],
  9874. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9875. "homepage": "https://symfony.com",
  9876. "keywords": [
  9877. "debug",
  9878. "dump"
  9879. ],
  9880. "support": {
  9881. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9882. },
  9883. "funding": [
  9884. {
  9885. "url": "https://symfony.com/sponsor",
  9886. "type": "custom"
  9887. },
  9888. {
  9889. "url": "https://github.com/fabpot",
  9890. "type": "github"
  9891. },
  9892. {
  9893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9894. "type": "tidelift"
  9895. }
  9896. ],
  9897. "time": "2022-10-03T15:15:11+00:00"
  9898. },
  9899. {
  9900. "name": "symfony/yaml",
  9901. "version": "v3.4.41",
  9902. "source": {
  9903. "type": "git",
  9904. "url": "https://github.com/symfony/yaml.git",
  9905. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9906. },
  9907. "dist": {
  9908. "type": "zip",
  9909. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9910. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9911. "shasum": ""
  9912. },
  9913. "require": {
  9914. "php": "^5.5.9|>=7.0.8",
  9915. "symfony/polyfill-ctype": "~1.8"
  9916. },
  9917. "conflict": {
  9918. "symfony/console": "<3.4"
  9919. },
  9920. "require-dev": {
  9921. "symfony/console": "~3.4|~4.0"
  9922. },
  9923. "suggest": {
  9924. "symfony/console": "For validating YAML files using the lint command"
  9925. },
  9926. "type": "library",
  9927. "extra": {
  9928. "branch-alias": {
  9929. "dev-master": "3.4-dev"
  9930. }
  9931. },
  9932. "autoload": {
  9933. "psr-4": {
  9934. "Symfony\\Component\\Yaml\\": ""
  9935. },
  9936. "exclude-from-classmap": [
  9937. "/Tests/"
  9938. ]
  9939. },
  9940. "notification-url": "https://packagist.org/downloads/",
  9941. "license": [
  9942. "MIT"
  9943. ],
  9944. "authors": [
  9945. {
  9946. "name": "Fabien Potencier",
  9947. "email": "fabien@symfony.com"
  9948. },
  9949. {
  9950. "name": "Symfony Community",
  9951. "homepage": "https://symfony.com/contributors"
  9952. }
  9953. ],
  9954. "description": "Symfony Yaml Component",
  9955. "homepage": "https://symfony.com",
  9956. "support": {
  9957. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9958. },
  9959. "funding": [
  9960. {
  9961. "url": "https://symfony.com/sponsor",
  9962. "type": "custom"
  9963. },
  9964. {
  9965. "url": "https://github.com/fabpot",
  9966. "type": "github"
  9967. },
  9968. {
  9969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9970. "type": "tidelift"
  9971. }
  9972. ],
  9973. "time": "2020-05-11T07:51:54+00:00"
  9974. },
  9975. {
  9976. "name": "twig/twig",
  9977. "version": "v1.42.5",
  9978. "source": {
  9979. "type": "git",
  9980. "url": "https://github.com/twigphp/Twig.git",
  9981. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9982. },
  9983. "dist": {
  9984. "type": "zip",
  9985. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9986. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9987. "shasum": ""
  9988. },
  9989. "require": {
  9990. "php": ">=5.5.0",
  9991. "symfony/polyfill-ctype": "^1.8"
  9992. },
  9993. "require-dev": {
  9994. "psr/container": "^1.0",
  9995. "symfony/phpunit-bridge": "^4.4|^5.0"
  9996. },
  9997. "type": "library",
  9998. "extra": {
  9999. "branch-alias": {
  10000. "dev-master": "1.42-dev"
  10001. }
  10002. },
  10003. "autoload": {
  10004. "psr-0": {
  10005. "Twig_": "lib/"
  10006. },
  10007. "psr-4": {
  10008. "Twig\\": "src/"
  10009. }
  10010. },
  10011. "notification-url": "https://packagist.org/downloads/",
  10012. "license": [
  10013. "BSD-3-Clause"
  10014. ],
  10015. "authors": [
  10016. {
  10017. "name": "Fabien Potencier",
  10018. "email": "fabien@symfony.com",
  10019. "homepage": "http://fabien.potencier.org",
  10020. "role": "Lead Developer"
  10021. },
  10022. {
  10023. "name": "Twig Team",
  10024. "role": "Contributors"
  10025. },
  10026. {
  10027. "name": "Armin Ronacher",
  10028. "email": "armin.ronacher@active-4.com",
  10029. "role": "Project Founder"
  10030. }
  10031. ],
  10032. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10033. "homepage": "https://twig.symfony.com",
  10034. "keywords": [
  10035. "templating"
  10036. ],
  10037. "support": {
  10038. "issues": "https://github.com/twigphp/Twig/issues",
  10039. "source": "https://github.com/twigphp/Twig/tree/1.x"
  10040. },
  10041. "time": "2020-02-11T05:59:23+00:00"
  10042. },
  10043. {
  10044. "name": "typo3/phar-stream-wrapper",
  10045. "version": "v3.1.4",
  10046. "source": {
  10047. "type": "git",
  10048. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10049. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  10050. },
  10051. "dist": {
  10052. "type": "zip",
  10053. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  10054. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  10055. "shasum": ""
  10056. },
  10057. "require": {
  10058. "ext-json": "*",
  10059. "php": "^7.0"
  10060. },
  10061. "require-dev": {
  10062. "ext-xdebug": "*",
  10063. "phpunit/phpunit": "^6.5"
  10064. },
  10065. "suggest": {
  10066. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10067. },
  10068. "type": "library",
  10069. "extra": {
  10070. "branch-alias": {
  10071. "dev-master": "v3.x-dev"
  10072. }
  10073. },
  10074. "autoload": {
  10075. "psr-4": {
  10076. "TYPO3\\PharStreamWrapper\\": "src/"
  10077. }
  10078. },
  10079. "notification-url": "https://packagist.org/downloads/",
  10080. "license": [
  10081. "MIT"
  10082. ],
  10083. "description": "Interceptors for PHP's native phar:// stream handling",
  10084. "homepage": "https://typo3.org/",
  10085. "keywords": [
  10086. "phar",
  10087. "php",
  10088. "security",
  10089. "stream-wrapper"
  10090. ],
  10091. "support": {
  10092. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10093. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  10094. },
  10095. "time": "2019-12-10T11:53:27+00:00"
  10096. },
  10097. {
  10098. "name": "vlucas/phpdotenv",
  10099. "version": "v2.6.4",
  10100. "source": {
  10101. "type": "git",
  10102. "url": "https://github.com/vlucas/phpdotenv.git",
  10103. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  10104. },
  10105. "dist": {
  10106. "type": "zip",
  10107. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  10108. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  10109. "shasum": ""
  10110. },
  10111. "require": {
  10112. "php": "^5.3.9 || ^7.0 || ^8.0",
  10113. "symfony/polyfill-ctype": "^1.9"
  10114. },
  10115. "require-dev": {
  10116. "ext-filter": "*",
  10117. "ext-pcre": "*",
  10118. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10119. },
  10120. "suggest": {
  10121. "ext-filter": "Required to use the boolean validator.",
  10122. "ext-pcre": "Required to use most of the library."
  10123. },
  10124. "type": "library",
  10125. "extra": {
  10126. "branch-alias": {
  10127. "dev-master": "2.6-dev"
  10128. }
  10129. },
  10130. "autoload": {
  10131. "psr-4": {
  10132. "Dotenv\\": "src/"
  10133. }
  10134. },
  10135. "notification-url": "https://packagist.org/downloads/",
  10136. "license": [
  10137. "BSD-3-Clause"
  10138. ],
  10139. "authors": [
  10140. {
  10141. "name": "Graham Campbell",
  10142. "email": "graham@alt-three.com",
  10143. "homepage": "https://gjcampbell.co.uk/"
  10144. },
  10145. {
  10146. "name": "Vance Lucas",
  10147. "email": "vance@vancelucas.com",
  10148. "homepage": "https://vancelucas.com/"
  10149. }
  10150. ],
  10151. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10152. "keywords": [
  10153. "dotenv",
  10154. "env",
  10155. "environment"
  10156. ],
  10157. "time": "2020-05-02T13:38:00+00:00"
  10158. },
  10159. {
  10160. "name": "webflo/drupal-finder",
  10161. "version": "1.2.0",
  10162. "source": {
  10163. "type": "git",
  10164. "url": "https://github.com/webflo/drupal-finder.git",
  10165. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  10166. },
  10167. "dist": {
  10168. "type": "zip",
  10169. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10170. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10171. "shasum": ""
  10172. },
  10173. "require": {
  10174. "ext-json": "*"
  10175. },
  10176. "require-dev": {
  10177. "mikey179/vfsstream": "^1.6",
  10178. "phpunit/phpunit": "^4.8"
  10179. },
  10180. "type": "library",
  10181. "autoload": {
  10182. "classmap": [
  10183. "src/DrupalFinder.php"
  10184. ]
  10185. },
  10186. "notification-url": "https://packagist.org/downloads/",
  10187. "license": [
  10188. "GPL-2.0+"
  10189. ],
  10190. "authors": [
  10191. {
  10192. "name": "Florian Weber",
  10193. "email": "florian@webflo.org"
  10194. }
  10195. ],
  10196. "description": "Helper class to locate a Drupal installation from a given path.",
  10197. "time": "2019-08-02T08:06:18+00:00"
  10198. },
  10199. {
  10200. "name": "webmozart/assert",
  10201. "version": "1.11.0",
  10202. "source": {
  10203. "type": "git",
  10204. "url": "https://github.com/webmozarts/assert.git",
  10205. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10206. },
  10207. "dist": {
  10208. "type": "zip",
  10209. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10210. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10211. "shasum": ""
  10212. },
  10213. "require": {
  10214. "ext-ctype": "*",
  10215. "php": "^7.2 || ^8.0"
  10216. },
  10217. "conflict": {
  10218. "phpstan/phpstan": "<0.12.20",
  10219. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10220. },
  10221. "require-dev": {
  10222. "phpunit/phpunit": "^8.5.13"
  10223. },
  10224. "type": "library",
  10225. "extra": {
  10226. "branch-alias": {
  10227. "dev-master": "1.10-dev"
  10228. }
  10229. },
  10230. "autoload": {
  10231. "psr-4": {
  10232. "Webmozart\\Assert\\": "src/"
  10233. }
  10234. },
  10235. "notification-url": "https://packagist.org/downloads/",
  10236. "license": [
  10237. "MIT"
  10238. ],
  10239. "authors": [
  10240. {
  10241. "name": "Bernhard Schussek",
  10242. "email": "bschussek@gmail.com"
  10243. }
  10244. ],
  10245. "description": "Assertions to validate method input/output with nice error messages.",
  10246. "keywords": [
  10247. "assert",
  10248. "check",
  10249. "validate"
  10250. ],
  10251. "support": {
  10252. "issues": "https://github.com/webmozarts/assert/issues",
  10253. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10254. },
  10255. "time": "2022-06-03T18:03:27+00:00"
  10256. },
  10257. {
  10258. "name": "webmozart/path-util",
  10259. "version": "2.3.0",
  10260. "source": {
  10261. "type": "git",
  10262. "url": "https://github.com/webmozart/path-util.git",
  10263. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10264. },
  10265. "dist": {
  10266. "type": "zip",
  10267. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10268. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10269. "shasum": ""
  10270. },
  10271. "require": {
  10272. "php": ">=5.3.3",
  10273. "webmozart/assert": "~1.0"
  10274. },
  10275. "require-dev": {
  10276. "phpunit/phpunit": "^4.6",
  10277. "sebastian/version": "^1.0.1"
  10278. },
  10279. "type": "library",
  10280. "extra": {
  10281. "branch-alias": {
  10282. "dev-master": "2.3-dev"
  10283. }
  10284. },
  10285. "autoload": {
  10286. "psr-4": {
  10287. "Webmozart\\PathUtil\\": "src/"
  10288. }
  10289. },
  10290. "notification-url": "https://packagist.org/downloads/",
  10291. "license": [
  10292. "MIT"
  10293. ],
  10294. "authors": [
  10295. {
  10296. "name": "Bernhard Schussek",
  10297. "email": "bschussek@gmail.com"
  10298. }
  10299. ],
  10300. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10301. "time": "2015-12-17T08:42:14+00:00"
  10302. }
  10303. ],
  10304. "packages-dev": [],
  10305. "aliases": [],
  10306. "minimum-stability": "dev",
  10307. "stability-flags": {
  10308. "drupal/better_messages": 15,
  10309. "drupal/bulkdelete": 20,
  10310. "drupal/domain": 15,
  10311. "drupal/domain_menu_access": 15,
  10312. "drupal/filefield_sources": 15,
  10313. "drupal/filter_perms": 15,
  10314. "drupal/linkit": 10,
  10315. "drupal/maillog": 10,
  10316. "drupal/path_alias_xt": 20,
  10317. "drupal/synonyms": 15,
  10318. "drupal/toolbar_themes": 20
  10319. },
  10320. "prefer-stable": true,
  10321. "prefer-lowest": false,
  10322. "platform": {
  10323. "php": ">=5.6"
  10324. },
  10325. "platform-dev": [],
  10326. "plugin-api-version": "2.6.0"
  10327. }