composer.lock 369 KB

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