composer.lock 394 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741
  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": "ac9d40d23b0f3ccbd293f41040e911e3",
  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.33.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  76. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  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. "conflict": {
  87. "drush/drush": "< 10.3.2"
  88. },
  89. "bin": [
  90. "bin/dcg"
  91. ],
  92. "type": "library",
  93. "extra": {
  94. "branch-alias": {
  95. "dev-master": "1.x-dev"
  96. }
  97. },
  98. "autoload": {
  99. "files": [
  100. "src/bootstrap.php"
  101. ],
  102. "psr-4": {
  103. "DrupalCodeGenerator\\": "src"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "GPL-2.0-or-later"
  109. ],
  110. "description": "Drupal code generator",
  111. "support": {
  112. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  113. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1"
  114. },
  115. "time": "2020-12-05T05:59:11+00:00"
  116. },
  117. {
  118. "name": "composer/installers",
  119. "version": "v1.12.0",
  120. "source": {
  121. "type": "git",
  122. "url": "https://github.com/composer/installers.git",
  123. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  124. },
  125. "dist": {
  126. "type": "zip",
  127. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  128. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  129. "shasum": ""
  130. },
  131. "require": {
  132. "composer-plugin-api": "^1.0 || ^2.0"
  133. },
  134. "replace": {
  135. "roundcube/plugin-installer": "*",
  136. "shama/baton": "*"
  137. },
  138. "require-dev": {
  139. "composer/composer": "1.6.* || ^2.0",
  140. "composer/semver": "^1 || ^3",
  141. "phpstan/phpstan": "^0.12.55",
  142. "phpstan/phpstan-phpunit": "^0.12.16",
  143. "symfony/phpunit-bridge": "^4.2 || ^5",
  144. "symfony/process": "^2.3"
  145. },
  146. "type": "composer-plugin",
  147. "extra": {
  148. "class": "Composer\\Installers\\Plugin",
  149. "branch-alias": {
  150. "dev-main": "1.x-dev"
  151. }
  152. },
  153. "autoload": {
  154. "psr-4": {
  155. "Composer\\Installers\\": "src/Composer/Installers"
  156. }
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "license": [
  160. "MIT"
  161. ],
  162. "authors": [
  163. {
  164. "name": "Kyle Robinson Young",
  165. "email": "kyle@dontkry.com",
  166. "homepage": "https://github.com/shama"
  167. }
  168. ],
  169. "description": "A multi-framework Composer library installer",
  170. "homepage": "https://composer.github.io/installers/",
  171. "keywords": [
  172. "Craft",
  173. "Dolibarr",
  174. "Eliasis",
  175. "Hurad",
  176. "ImageCMS",
  177. "Kanboard",
  178. "Lan Management System",
  179. "MODX Evo",
  180. "MantisBT",
  181. "Mautic",
  182. "Maya",
  183. "OXID",
  184. "Plentymarkets",
  185. "Porto",
  186. "RadPHP",
  187. "SMF",
  188. "Starbug",
  189. "Thelia",
  190. "Whmcs",
  191. "WolfCMS",
  192. "agl",
  193. "aimeos",
  194. "annotatecms",
  195. "attogram",
  196. "bitrix",
  197. "cakephp",
  198. "chef",
  199. "cockpit",
  200. "codeigniter",
  201. "concrete5",
  202. "croogo",
  203. "dokuwiki",
  204. "drupal",
  205. "eZ Platform",
  206. "elgg",
  207. "expressionengine",
  208. "fuelphp",
  209. "grav",
  210. "installer",
  211. "itop",
  212. "joomla",
  213. "known",
  214. "kohana",
  215. "laravel",
  216. "lavalite",
  217. "lithium",
  218. "magento",
  219. "majima",
  220. "mako",
  221. "mediawiki",
  222. "miaoxing",
  223. "modulework",
  224. "modx",
  225. "moodle",
  226. "osclass",
  227. "pantheon",
  228. "phpbb",
  229. "piwik",
  230. "ppi",
  231. "processwire",
  232. "puppet",
  233. "pxcms",
  234. "reindex",
  235. "roundcube",
  236. "shopware",
  237. "silverstripe",
  238. "sydes",
  239. "sylius",
  240. "symfony",
  241. "tastyigniter",
  242. "typo3",
  243. "wordpress",
  244. "yawik",
  245. "zend",
  246. "zikula"
  247. ],
  248. "support": {
  249. "issues": "https://github.com/composer/installers/issues",
  250. "source": "https://github.com/composer/installers/tree/v1.12.0"
  251. },
  252. "funding": [
  253. {
  254. "url": "https://packagist.com",
  255. "type": "custom"
  256. },
  257. {
  258. "url": "https://github.com/composer",
  259. "type": "github"
  260. },
  261. {
  262. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  263. "type": "tidelift"
  264. }
  265. ],
  266. "time": "2021-09-13T08:19:44+00:00"
  267. },
  268. {
  269. "name": "composer/semver",
  270. "version": "3.3.2",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/composer/semver.git",
  274. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  279. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  280. "shasum": ""
  281. },
  282. "require": {
  283. "php": "^5.3.2 || ^7.0 || ^8.0"
  284. },
  285. "require-dev": {
  286. "phpstan/phpstan": "^1.4",
  287. "symfony/phpunit-bridge": "^4.2 || ^5"
  288. },
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-main": "3.x-dev"
  293. }
  294. },
  295. "autoload": {
  296. "psr-4": {
  297. "Composer\\Semver\\": "src"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Nils Adermann",
  307. "email": "naderman@naderman.de",
  308. "homepage": "http://www.naderman.de"
  309. },
  310. {
  311. "name": "Jordi Boggiano",
  312. "email": "j.boggiano@seld.be",
  313. "homepage": "http://seld.be"
  314. },
  315. {
  316. "name": "Rob Bast",
  317. "email": "rob.bast@gmail.com",
  318. "homepage": "http://robbast.nl"
  319. }
  320. ],
  321. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  322. "keywords": [
  323. "semantic",
  324. "semver",
  325. "validation",
  326. "versioning"
  327. ],
  328. "support": {
  329. "irc": "irc://irc.freenode.org/composer",
  330. "issues": "https://github.com/composer/semver/issues",
  331. "source": "https://github.com/composer/semver/tree/3.3.2"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://packagist.com",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://github.com/composer",
  340. "type": "github"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2022-04-01T19:23:25+00:00"
  348. },
  349. {
  350. "name": "consolidation/annotated-command",
  351. "version": "2.12.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/consolidation/annotated-command.git",
  355. "reference": "2472a23610cba1d86dcb783a81a21259473b059e"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/2472a23610cba1d86dcb783a81a21259473b059e",
  360. "reference": "2472a23610cba1d86dcb783a81a21259473b059e",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "consolidation/output-formatters": "^3.5.1",
  365. "php": ">=5.4.5",
  366. "psr/log": "^1",
  367. "symfony/console": "^2.8|^3|^4",
  368. "symfony/event-dispatcher": "^2.5|^3|^4",
  369. "symfony/finder": "^2.5|^3|^4|^5"
  370. },
  371. "require-dev": {
  372. "g1a/composer-test-scenarios": "^3",
  373. "php-coveralls/php-coveralls": "^1",
  374. "phpunit/phpunit": "^6",
  375. "squizlabs/php_codesniffer": "^2.7"
  376. },
  377. "type": "library",
  378. "extra": {
  379. "scenarios": {
  380. "finder5": {
  381. "require": {
  382. "symfony/finder": "^5"
  383. },
  384. "config": {
  385. "platform": {
  386. "php": "7.2.5"
  387. }
  388. }
  389. },
  390. "symfony4": {
  391. "require": {
  392. "symfony/console": "^4.0"
  393. },
  394. "config": {
  395. "platform": {
  396. "php": "7.1.3"
  397. }
  398. }
  399. },
  400. "symfony2": {
  401. "require": {
  402. "symfony/console": "^2.8"
  403. },
  404. "require-dev": {
  405. "phpunit/phpunit": "^4.8.36"
  406. },
  407. "remove": [
  408. "php-coveralls/php-coveralls"
  409. ],
  410. "config": {
  411. "platform": {
  412. "php": "5.4.8"
  413. }
  414. },
  415. "scenario-options": {
  416. "create-lockfile": "false"
  417. }
  418. },
  419. "phpunit4": {
  420. "require-dev": {
  421. "phpunit/phpunit": "^4.8.36"
  422. },
  423. "remove": [
  424. "php-coveralls/php-coveralls"
  425. ],
  426. "config": {
  427. "platform": {
  428. "php": "5.4.8"
  429. }
  430. }
  431. }
  432. },
  433. "branch-alias": {
  434. "dev-master": "2.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Consolidation\\AnnotatedCommand\\": "src"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Greg Anderson",
  449. "email": "greg.1.anderson@greenknowe.org"
  450. }
  451. ],
  452. "description": "Initialize Symfony Console commands from annotated command class methods.",
  453. "support": {
  454. "issues": "https://github.com/consolidation/annotated-command/issues",
  455. "source": "https://github.com/consolidation/annotated-command/tree/2.12.2"
  456. },
  457. "time": "2022-01-03T00:23:44+00:00"
  458. },
  459. {
  460. "name": "consolidation/config",
  461. "version": "1.2.1",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/consolidation/config.git",
  465. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  470. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "dflydev/dot-access-data": "^1.1.0",
  475. "grasmash/expander": "^1",
  476. "php": ">=5.4.0"
  477. },
  478. "require-dev": {
  479. "g1a/composer-test-scenarios": "^3",
  480. "php-coveralls/php-coveralls": "^1",
  481. "phpunit/phpunit": "^5",
  482. "squizlabs/php_codesniffer": "2.*",
  483. "symfony/console": "^2.5|^3|^4",
  484. "symfony/yaml": "^2.8.11|^3|^4"
  485. },
  486. "suggest": {
  487. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "scenarios": {
  492. "symfony4": {
  493. "require-dev": {
  494. "symfony/console": "^4.0"
  495. },
  496. "config": {
  497. "platform": {
  498. "php": "7.1.3"
  499. }
  500. }
  501. },
  502. "symfony2": {
  503. "require-dev": {
  504. "symfony/console": "^2.8",
  505. "symfony/event-dispatcher": "^2.8",
  506. "phpunit/phpunit": "^4.8.36"
  507. },
  508. "remove": [
  509. "php-coveralls/php-coveralls"
  510. ],
  511. "config": {
  512. "platform": {
  513. "php": "5.4.8"
  514. }
  515. }
  516. }
  517. },
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Consolidation\\Config\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Greg Anderson",
  534. "email": "greg.1.anderson@greenknowe.org"
  535. }
  536. ],
  537. "description": "Provide configuration services for a commandline tool.",
  538. "support": {
  539. "issues": "https://github.com/consolidation/config/issues",
  540. "source": "https://github.com/consolidation/config/tree/master"
  541. },
  542. "time": "2019-03-03T19:37:04+00:00"
  543. },
  544. {
  545. "name": "consolidation/filter-via-dot-access-data",
  546. "version": "1.0.0",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  550. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  555. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "dflydev/dot-access-data": "^1.1.0",
  560. "php": ">=5.5.0"
  561. },
  562. "require-dev": {
  563. "consolidation/robo": "^1.2.3",
  564. "g1a/composer-test-scenarios": "^3",
  565. "knplabs/github-api": "^2.7",
  566. "php-coveralls/php-coveralls": "^1",
  567. "php-http/guzzle6-adapter": "^1.1",
  568. "phpunit/phpunit": "^5",
  569. "squizlabs/php_codesniffer": "^2.8",
  570. "symfony/console": "^2.8|^3|^4"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "scenarios": {
  575. "phpunit5": {
  576. "require-dev": {
  577. "phpunit/phpunit": "^5.7.27"
  578. },
  579. "remove": [
  580. "php-coveralls/php-coveralls"
  581. ],
  582. "config": {
  583. "platform": {
  584. "php": "5.6.33"
  585. }
  586. }
  587. }
  588. },
  589. "branch-alias": {
  590. "dev-master": "1.x-dev"
  591. }
  592. },
  593. "autoload": {
  594. "psr-4": {
  595. "Consolidation\\Filter\\": "src"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Greg Anderson",
  605. "email": "greg.1.anderson@greenknowe.org"
  606. }
  607. ],
  608. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  609. "support": {
  610. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  611. },
  612. "time": "2019-01-18T06:05:07+00:00"
  613. },
  614. {
  615. "name": "consolidation/log",
  616. "version": "1.1.1",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/consolidation/log.git",
  620. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  625. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  626. "shasum": ""
  627. },
  628. "require": {
  629. "php": ">=5.4.5",
  630. "psr/log": "^1.0",
  631. "symfony/console": "^2.8|^3|^4"
  632. },
  633. "require-dev": {
  634. "g1a/composer-test-scenarios": "^3",
  635. "php-coveralls/php-coveralls": "^1",
  636. "phpunit/phpunit": "^6",
  637. "squizlabs/php_codesniffer": "^2"
  638. },
  639. "type": "library",
  640. "extra": {
  641. "scenarios": {
  642. "symfony4": {
  643. "require": {
  644. "symfony/console": "^4.0"
  645. },
  646. "config": {
  647. "platform": {
  648. "php": "7.1.3"
  649. }
  650. }
  651. },
  652. "symfony2": {
  653. "require": {
  654. "symfony/console": "^2.8"
  655. },
  656. "require-dev": {
  657. "phpunit/phpunit": "^4.8.36"
  658. },
  659. "remove": [
  660. "php-coveralls/php-coveralls"
  661. ],
  662. "config": {
  663. "platform": {
  664. "php": "5.4.8"
  665. }
  666. }
  667. },
  668. "phpunit4": {
  669. "require-dev": {
  670. "phpunit/phpunit": "^4.8.36"
  671. },
  672. "remove": [
  673. "php-coveralls/php-coveralls"
  674. ],
  675. "config": {
  676. "platform": {
  677. "php": "5.4.8"
  678. }
  679. }
  680. }
  681. },
  682. "branch-alias": {
  683. "dev-master": "1.x-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "Consolidation\\Log\\": "src"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Greg Anderson",
  698. "email": "greg.1.anderson@greenknowe.org"
  699. }
  700. ],
  701. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  702. "support": {
  703. "issues": "https://github.com/consolidation/log/issues",
  704. "source": "https://github.com/consolidation/log/tree/master"
  705. },
  706. "time": "2019-01-01T17:30:51+00:00"
  707. },
  708. {
  709. "name": "consolidation/output-formatters",
  710. "version": "3.5.1",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/consolidation/output-formatters.git",
  714. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196",
  719. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196",
  720. "shasum": ""
  721. },
  722. "require": {
  723. "dflydev/dot-access-data": "^1.1.0",
  724. "php": ">=5.4.0",
  725. "symfony/console": "^2.8|^3|^4",
  726. "symfony/finder": "^2.5|^3|^4|^5"
  727. },
  728. "require-dev": {
  729. "g1a/composer-test-scenarios": "^3",
  730. "php-coveralls/php-coveralls": "^1",
  731. "phpunit/phpunit": "^5.7.27",
  732. "squizlabs/php_codesniffer": "^2.7",
  733. "symfony/var-dumper": "^2.8|^3|^4",
  734. "victorjonsson/markdowndocs": "^1.3"
  735. },
  736. "suggest": {
  737. "symfony/var-dumper": "For using the var_dump formatter"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "scenarios": {
  742. "finder5": {
  743. "require": {
  744. "symfony/finder": "^5"
  745. },
  746. "config": {
  747. "platform": {
  748. "php": "7.2.5"
  749. }
  750. }
  751. },
  752. "symfony4": {
  753. "require": {
  754. "symfony/console": "^4.0"
  755. },
  756. "require-dev": {
  757. "phpunit/phpunit": "^6"
  758. },
  759. "config": {
  760. "platform": {
  761. "php": "7.1.3"
  762. }
  763. }
  764. },
  765. "symfony3": {
  766. "require": {
  767. "symfony/console": "^3.4",
  768. "symfony/finder": "^3.4",
  769. "symfony/var-dumper": "^3.4"
  770. },
  771. "config": {
  772. "platform": {
  773. "php": "5.6.32"
  774. }
  775. }
  776. },
  777. "symfony2": {
  778. "require": {
  779. "symfony/console": "^2.8"
  780. },
  781. "require-dev": {
  782. "phpunit/phpunit": "^4.8.36"
  783. },
  784. "remove": [
  785. "php-coveralls/php-coveralls"
  786. ],
  787. "config": {
  788. "platform": {
  789. "php": "5.4.8"
  790. }
  791. },
  792. "scenario-options": {
  793. "create-lockfile": "false"
  794. }
  795. }
  796. },
  797. "branch-alias": {
  798. "dev-master": "3.x-dev"
  799. }
  800. },
  801. "autoload": {
  802. "psr-4": {
  803. "Consolidation\\OutputFormatters\\": "src"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Greg Anderson",
  813. "email": "greg.1.anderson@greenknowe.org"
  814. }
  815. ],
  816. "description": "Format text by applying transformations provided by plug-in formatters.",
  817. "support": {
  818. "issues": "https://github.com/consolidation/output-formatters/issues",
  819. "source": "https://github.com/consolidation/output-formatters/tree/3.5.1"
  820. },
  821. "time": "2020-10-11T04:15:32+00:00"
  822. },
  823. {
  824. "name": "consolidation/robo",
  825. "version": "1.5.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/consolidation/Robo.git",
  829. "reference": "12bf6b608057604a283e9e597edfed36ba071631"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/consolidation/Robo/zipball/12bf6b608057604a283e9e597edfed36ba071631",
  834. "reference": "12bf6b608057604a283e9e597edfed36ba071631",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "consolidation/annotated-command": "^2.12.1 || ^4.1",
  839. "consolidation/config": "^1.2.1",
  840. "consolidation/log": "^1.1.1 || ^2",
  841. "consolidation/output-formatters": "^3.5.1 || ^4.1",
  842. "consolidation/self-update": "^1.1.5 || ^2",
  843. "grasmash/yaml-expander": "^1.4",
  844. "league/container": "^2.4.1",
  845. "php": ">=5.5.0",
  846. "symfony/console": "^2.8 || ^3 || ^4",
  847. "symfony/event-dispatcher": "^2.5 || ^3 || ^4",
  848. "symfony/filesystem": "^2.5 || ^3 || ^4",
  849. "symfony/finder": "^2.5 || ^3 || ^4 || ^5",
  850. "symfony/process": "^2.5 || ^3 || ^4"
  851. },
  852. "replace": {
  853. "codegyre/robo": "< 1.0"
  854. },
  855. "require-dev": {
  856. "g1a/composer-test-scenarios": "^3",
  857. "natxet/cssmin": "3.0.4",
  858. "patchwork/jsqueeze": "^2",
  859. "pear/archive_tar": "^1.4.4",
  860. "php-coveralls/php-coveralls": "^1",
  861. "phpunit/phpunit": "^5.7.27",
  862. "squizlabs/php_codesniffer": "^3"
  863. },
  864. "suggest": {
  865. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  866. "natxet/CssMin": "For minifying CSS files in taskMinify",
  867. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  868. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  869. },
  870. "bin": [
  871. "robo"
  872. ],
  873. "type": "library",
  874. "extra": {
  875. "scenarios": {
  876. "finder5": {
  877. "require": {
  878. "symfony/finder": "^5"
  879. },
  880. "config": {
  881. "platform": {
  882. "php": "7.2.5"
  883. }
  884. }
  885. },
  886. "symfony4": {
  887. "require": {
  888. "symfony/console": "^4"
  889. },
  890. "config": {
  891. "platform": {
  892. "php": "7.1.3"
  893. }
  894. }
  895. },
  896. "symfony2": {
  897. "require": {
  898. "symfony/console": "^2.8"
  899. },
  900. "require-dev": {
  901. "phpunit/phpunit": "^4.8.36"
  902. },
  903. "remove": [
  904. "php-coveralls/php-coveralls"
  905. ],
  906. "config": {
  907. "platform": {
  908. "php": "5.5.9"
  909. }
  910. },
  911. "scenario-options": {
  912. "create-lockfile": "false"
  913. }
  914. }
  915. },
  916. "branch-alias": {
  917. "dev-master": "1.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Robo\\": "src"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Davert",
  932. "email": "davert.php@resend.cc"
  933. }
  934. ],
  935. "description": "Modern task runner",
  936. "support": {
  937. "issues": "https://github.com/consolidation/Robo/issues",
  938. "source": "https://github.com/consolidation/Robo/tree/1.5.0"
  939. },
  940. "time": "2021-10-08T03:51:31+00:00"
  941. },
  942. {
  943. "name": "consolidation/self-update",
  944. "version": "1.2.0",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/consolidation/self-update.git",
  948. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  953. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "php": ">=5.5.0",
  958. "symfony/console": "^2.8|^3|^4|^5",
  959. "symfony/filesystem": "^2.5|^3|^4|^5"
  960. },
  961. "bin": [
  962. "scripts/release"
  963. ],
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-4": {
  972. "SelfUpdate\\": "src"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Alexander Menk",
  982. "email": "menk@mestrona.net"
  983. },
  984. {
  985. "name": "Greg Anderson",
  986. "email": "greg.1.anderson@greenknowe.org"
  987. }
  988. ],
  989. "description": "Provides a self:update command for Symfony Console applications.",
  990. "support": {
  991. "issues": "https://github.com/consolidation/self-update/issues",
  992. "source": "https://github.com/consolidation/self-update/tree/1.2.0"
  993. },
  994. "time": "2020-04-13T02:49:20+00:00"
  995. },
  996. {
  997. "name": "consolidation/site-alias",
  998. "version": "3.1.7",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/consolidation/site-alias.git",
  1002. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7",
  1007. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "consolidation/config": "^1.2.1 || ^2",
  1012. "php": ">=5.5.0",
  1013. "symfony/filesystem": "^4.4 || ^5.4 || ^6",
  1014. "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6",
  1015. "webmozart/path-util": "^2.3"
  1016. },
  1017. "require-dev": {
  1018. "php-coveralls/php-coveralls": "^2.4.2",
  1019. "phpunit/phpunit": ">=7",
  1020. "squizlabs/php_codesniffer": "^3",
  1021. "symfony/var-dumper": "^4",
  1022. "yoast/phpunit-polyfills": "^0.2.0"
  1023. },
  1024. "type": "library",
  1025. "extra": {
  1026. "branch-alias": {
  1027. "dev-main": "3.x-dev"
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "Consolidation\\SiteAlias\\": "src"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Greg Anderson",
  1042. "email": "greg.1.anderson@greenknowe.org"
  1043. },
  1044. {
  1045. "name": "Moshe Weitzman",
  1046. "email": "weitzman@tejasa.com"
  1047. }
  1048. ],
  1049. "description": "Manage alias records for local and remote sites.",
  1050. "support": {
  1051. "issues": "https://github.com/consolidation/site-alias/issues",
  1052. "source": "https://github.com/consolidation/site-alias/tree/3.1.7"
  1053. },
  1054. "time": "2022-10-15T01:21:09+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/site-process",
  1058. "version": "4.2.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/site-process.git",
  1062. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1067. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/config": "^1.2.1 || ^2",
  1072. "consolidation/site-alias": "^3 || ^4",
  1073. "php": ">=7.1.3",
  1074. "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5",
  1075. "symfony/process": "^4.3.4 || ^5"
  1076. },
  1077. "require-dev": {
  1078. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1079. "squizlabs/php_codesniffer": "^3",
  1080. "yoast/phpunit-polyfills": "^0.2.0"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-main": "4.x-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "Consolidation\\SiteProcess\\": "src"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Greg Anderson",
  1100. "email": "greg.1.anderson@greenknowe.org"
  1101. },
  1102. {
  1103. "name": "Moshe Weitzman",
  1104. "email": "weitzman@tejasa.com"
  1105. }
  1106. ],
  1107. "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.",
  1108. "support": {
  1109. "issues": "https://github.com/consolidation/site-process/issues",
  1110. "source": "https://github.com/consolidation/site-process/tree/4.2.1"
  1111. },
  1112. "time": "2022-10-18T13:19:35+00:00"
  1113. },
  1114. {
  1115. "name": "cweagans/composer-patches",
  1116. "version": "1.7.3",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/cweagans/composer-patches.git",
  1120. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1125. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "composer-plugin-api": "^1.0 || ^2.0",
  1130. "php": ">=5.3.0"
  1131. },
  1132. "require-dev": {
  1133. "composer/composer": "~1.0 || ~2.0",
  1134. "phpunit/phpunit": "~4.6"
  1135. },
  1136. "type": "composer-plugin",
  1137. "extra": {
  1138. "class": "cweagans\\Composer\\Patches"
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "cweagans\\Composer\\": "src"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "BSD-3-Clause"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "Cameron Eagans",
  1152. "email": "me@cweagans.net"
  1153. }
  1154. ],
  1155. "description": "Provides a way to patch Composer packages.",
  1156. "support": {
  1157. "issues": "https://github.com/cweagans/composer-patches/issues",
  1158. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1159. },
  1160. "time": "2022-12-20T22:53:13+00:00"
  1161. },
  1162. {
  1163. "name": "dflydev/dot-access-data",
  1164. "version": "v1.1.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1168. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1173. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.3.2"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.0-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-0": {
  1187. "Dflydev\\DotAccessData": "src"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Dragonfly Development Inc.",
  1197. "email": "info@dflydev.com",
  1198. "homepage": "http://dflydev.com"
  1199. },
  1200. {
  1201. "name": "Beau Simensen",
  1202. "email": "beau@dflydev.com",
  1203. "homepage": "http://beausimensen.com"
  1204. },
  1205. {
  1206. "name": "Carlos Frutos",
  1207. "email": "carlos@kiwing.it",
  1208. "homepage": "https://github.com/cfrutos"
  1209. }
  1210. ],
  1211. "description": "Given a deep data structure, access data by dot notation.",
  1212. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1213. "keywords": [
  1214. "access",
  1215. "data",
  1216. "dot",
  1217. "notation"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1221. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1222. },
  1223. "time": "2017-01-20T21:14:22+00:00"
  1224. },
  1225. {
  1226. "name": "doctrine/annotations",
  1227. "version": "1.13.3",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/doctrine/annotations.git",
  1231. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1236. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "doctrine/lexer": "1.*",
  1241. "ext-tokenizer": "*",
  1242. "php": "^7.1 || ^8.0",
  1243. "psr/cache": "^1 || ^2 || ^3"
  1244. },
  1245. "require-dev": {
  1246. "doctrine/cache": "^1.11 || ^2.0",
  1247. "doctrine/coding-standard": "^6.0 || ^8.1",
  1248. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1249. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1250. "symfony/cache": "^4.4 || ^5.2",
  1251. "vimeo/psalm": "^4.10"
  1252. },
  1253. "type": "library",
  1254. "autoload": {
  1255. "psr-4": {
  1256. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Guilherme Blanco",
  1266. "email": "guilhermeblanco@gmail.com"
  1267. },
  1268. {
  1269. "name": "Roman Borschel",
  1270. "email": "roman@code-factory.org"
  1271. },
  1272. {
  1273. "name": "Benjamin Eberlei",
  1274. "email": "kontakt@beberlei.de"
  1275. },
  1276. {
  1277. "name": "Jonathan Wage",
  1278. "email": "jonwage@gmail.com"
  1279. },
  1280. {
  1281. "name": "Johannes Schmitt",
  1282. "email": "schmittjoh@gmail.com"
  1283. }
  1284. ],
  1285. "description": "Docblock Annotations Parser",
  1286. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1287. "keywords": [
  1288. "annotations",
  1289. "docblock",
  1290. "parser"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/doctrine/annotations/issues",
  1294. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1295. },
  1296. "time": "2022-07-02T10:48:51+00:00"
  1297. },
  1298. {
  1299. "name": "doctrine/common",
  1300. "version": "3.4.4",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/doctrine/common.git",
  1304. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1309. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "doctrine/persistence": "^2.0 || ^3.0",
  1314. "php": "^7.1 || ^8.0"
  1315. },
  1316. "require-dev": {
  1317. "doctrine/coding-standard": "^9.0 || ^10.0",
  1318. "doctrine/collections": "^1",
  1319. "phpstan/phpstan": "^1.4.1",
  1320. "phpstan/phpstan-phpunit": "^1",
  1321. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1322. "squizlabs/php_codesniffer": "^3.0",
  1323. "symfony/phpunit-bridge": "^6.1",
  1324. "vimeo/psalm": "^4.4"
  1325. },
  1326. "type": "library",
  1327. "autoload": {
  1328. "psr-4": {
  1329. "Doctrine\\Common\\": "src"
  1330. }
  1331. },
  1332. "notification-url": "https://packagist.org/downloads/",
  1333. "license": [
  1334. "MIT"
  1335. ],
  1336. "authors": [
  1337. {
  1338. "name": "Guilherme Blanco",
  1339. "email": "guilhermeblanco@gmail.com"
  1340. },
  1341. {
  1342. "name": "Roman Borschel",
  1343. "email": "roman@code-factory.org"
  1344. },
  1345. {
  1346. "name": "Benjamin Eberlei",
  1347. "email": "kontakt@beberlei.de"
  1348. },
  1349. {
  1350. "name": "Jonathan Wage",
  1351. "email": "jonwage@gmail.com"
  1352. },
  1353. {
  1354. "name": "Johannes Schmitt",
  1355. "email": "schmittjoh@gmail.com"
  1356. },
  1357. {
  1358. "name": "Marco Pivetta",
  1359. "email": "ocramius@gmail.com"
  1360. }
  1361. ],
  1362. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1363. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1364. "keywords": [
  1365. "common",
  1366. "doctrine",
  1367. "php"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/doctrine/common/issues",
  1371. "source": "https://github.com/doctrine/common/tree/3.4.4"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://www.doctrine-project.org/sponsorship.html",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://www.patreon.com/phpdoctrine",
  1380. "type": "patreon"
  1381. },
  1382. {
  1383. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1384. "type": "tidelift"
  1385. }
  1386. ],
  1387. "time": "2024-04-16T13:35:33+00:00"
  1388. },
  1389. {
  1390. "name": "doctrine/event-manager",
  1391. "version": "2.0.1",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/doctrine/event-manager.git",
  1395. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1400. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": "^8.1"
  1405. },
  1406. "conflict": {
  1407. "doctrine/common": "<2.9"
  1408. },
  1409. "require-dev": {
  1410. "doctrine/coding-standard": "^12",
  1411. "phpstan/phpstan": "^1.8.8",
  1412. "phpunit/phpunit": "^10.5",
  1413. "vimeo/psalm": "^5.24"
  1414. },
  1415. "type": "library",
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Doctrine\\Common\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Guilherme Blanco",
  1428. "email": "guilhermeblanco@gmail.com"
  1429. },
  1430. {
  1431. "name": "Roman Borschel",
  1432. "email": "roman@code-factory.org"
  1433. },
  1434. {
  1435. "name": "Benjamin Eberlei",
  1436. "email": "kontakt@beberlei.de"
  1437. },
  1438. {
  1439. "name": "Jonathan Wage",
  1440. "email": "jonwage@gmail.com"
  1441. },
  1442. {
  1443. "name": "Johannes Schmitt",
  1444. "email": "schmittjoh@gmail.com"
  1445. },
  1446. {
  1447. "name": "Marco Pivetta",
  1448. "email": "ocramius@gmail.com"
  1449. }
  1450. ],
  1451. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1452. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1453. "keywords": [
  1454. "event",
  1455. "event dispatcher",
  1456. "event manager",
  1457. "event system",
  1458. "events"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/doctrine/event-manager/issues",
  1462. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1463. },
  1464. "funding": [
  1465. {
  1466. "url": "https://www.doctrine-project.org/sponsorship.html",
  1467. "type": "custom"
  1468. },
  1469. {
  1470. "url": "https://www.patreon.com/phpdoctrine",
  1471. "type": "patreon"
  1472. },
  1473. {
  1474. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1475. "type": "tidelift"
  1476. }
  1477. ],
  1478. "time": "2024-05-22T20:47:39+00:00"
  1479. },
  1480. {
  1481. "name": "doctrine/lexer",
  1482. "version": "1.2.3",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/doctrine/lexer.git",
  1486. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1491. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1492. "shasum": ""
  1493. },
  1494. "require": {
  1495. "php": "^7.1 || ^8.0"
  1496. },
  1497. "require-dev": {
  1498. "doctrine/coding-standard": "^9.0",
  1499. "phpstan/phpstan": "^1.3",
  1500. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1501. "vimeo/psalm": "^4.11"
  1502. },
  1503. "type": "library",
  1504. "autoload": {
  1505. "psr-4": {
  1506. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1507. }
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "authors": [
  1514. {
  1515. "name": "Guilherme Blanco",
  1516. "email": "guilhermeblanco@gmail.com"
  1517. },
  1518. {
  1519. "name": "Roman Borschel",
  1520. "email": "roman@code-factory.org"
  1521. },
  1522. {
  1523. "name": "Johannes Schmitt",
  1524. "email": "schmittjoh@gmail.com"
  1525. }
  1526. ],
  1527. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1528. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1529. "keywords": [
  1530. "annotations",
  1531. "docblock",
  1532. "lexer",
  1533. "parser",
  1534. "php"
  1535. ],
  1536. "support": {
  1537. "issues": "https://github.com/doctrine/lexer/issues",
  1538. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1539. },
  1540. "funding": [
  1541. {
  1542. "url": "https://www.doctrine-project.org/sponsorship.html",
  1543. "type": "custom"
  1544. },
  1545. {
  1546. "url": "https://www.patreon.com/phpdoctrine",
  1547. "type": "patreon"
  1548. },
  1549. {
  1550. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1551. "type": "tidelift"
  1552. }
  1553. ],
  1554. "time": "2022-02-28T11:07:21+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/persistence",
  1558. "version": "3.3.3",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/persistence.git",
  1562. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1567. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "doctrine/event-manager": "^1 || ^2",
  1572. "php": "^7.2 || ^8.0",
  1573. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1574. },
  1575. "conflict": {
  1576. "doctrine/common": "<2.10"
  1577. },
  1578. "require-dev": {
  1579. "doctrine/coding-standard": "^12",
  1580. "doctrine/common": "^3.0",
  1581. "phpstan/phpstan": "1.11.1",
  1582. "phpstan/phpstan-phpunit": "^1",
  1583. "phpstan/phpstan-strict-rules": "^1.1",
  1584. "phpunit/phpunit": "^8.5 || ^9.5",
  1585. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1586. "vimeo/psalm": "4.30.0 || 5.24.0"
  1587. },
  1588. "type": "library",
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Doctrine\\Persistence\\": "src/Persistence"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Guilherme Blanco",
  1601. "email": "guilhermeblanco@gmail.com"
  1602. },
  1603. {
  1604. "name": "Roman Borschel",
  1605. "email": "roman@code-factory.org"
  1606. },
  1607. {
  1608. "name": "Benjamin Eberlei",
  1609. "email": "kontakt@beberlei.de"
  1610. },
  1611. {
  1612. "name": "Jonathan Wage",
  1613. "email": "jonwage@gmail.com"
  1614. },
  1615. {
  1616. "name": "Johannes Schmitt",
  1617. "email": "schmittjoh@gmail.com"
  1618. },
  1619. {
  1620. "name": "Marco Pivetta",
  1621. "email": "ocramius@gmail.com"
  1622. }
  1623. ],
  1624. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1625. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1626. "keywords": [
  1627. "mapper",
  1628. "object",
  1629. "odm",
  1630. "orm",
  1631. "persistence"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/doctrine/persistence/issues",
  1635. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1636. },
  1637. "funding": [
  1638. {
  1639. "url": "https://www.doctrine-project.org/sponsorship.html",
  1640. "type": "custom"
  1641. },
  1642. {
  1643. "url": "https://www.patreon.com/phpdoctrine",
  1644. "type": "patreon"
  1645. },
  1646. {
  1647. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1648. "type": "tidelift"
  1649. }
  1650. ],
  1651. "time": "2024-06-20T10:14:30+00:00"
  1652. },
  1653. {
  1654. "name": "doctrine/reflection",
  1655. "version": "1.2.4",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/doctrine/reflection.git",
  1659. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1664. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "doctrine/annotations": "^1.0 || ^2.0",
  1669. "ext-tokenizer": "*",
  1670. "php": "^7.1 || ^8.0"
  1671. },
  1672. "conflict": {
  1673. "doctrine/common": "<2.9"
  1674. },
  1675. "require-dev": {
  1676. "doctrine/coding-standard": "^9",
  1677. "doctrine/common": "^3.3",
  1678. "phpstan/phpstan": "^1.4.10",
  1679. "phpstan/phpstan-phpunit": "^1",
  1680. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  1681. },
  1682. "type": "library",
  1683. "autoload": {
  1684. "psr-4": {
  1685. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Guilherme Blanco",
  1695. "email": "guilhermeblanco@gmail.com"
  1696. },
  1697. {
  1698. "name": "Roman Borschel",
  1699. "email": "roman@code-factory.org"
  1700. },
  1701. {
  1702. "name": "Benjamin Eberlei",
  1703. "email": "kontakt@beberlei.de"
  1704. },
  1705. {
  1706. "name": "Jonathan Wage",
  1707. "email": "jonwage@gmail.com"
  1708. },
  1709. {
  1710. "name": "Johannes Schmitt",
  1711. "email": "schmittjoh@gmail.com"
  1712. },
  1713. {
  1714. "name": "Marco Pivetta",
  1715. "email": "ocramius@gmail.com"
  1716. }
  1717. ],
  1718. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  1719. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1720. "keywords": [
  1721. "reflection",
  1722. "static"
  1723. ],
  1724. "support": {
  1725. "issues": "https://github.com/doctrine/reflection/issues",
  1726. "source": "https://github.com/doctrine/reflection/tree/1.2.4"
  1727. },
  1728. "abandoned": "roave/better-reflection",
  1729. "time": "2023-07-27T18:11:59+00:00"
  1730. },
  1731. {
  1732. "name": "drupal/addtoany",
  1733. "version": "2.0.5",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://git.drupalcode.org/project/addtoany.git",
  1737. "reference": "2.0.5"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.5.zip",
  1742. "reference": "2.0.5",
  1743. "shasum": "b3b26968548c1605a641b12ff25d03edc8497df6"
  1744. },
  1745. "require": {
  1746. "drupal/core": "^9.4 || ^10.0"
  1747. },
  1748. "type": "drupal-module",
  1749. "extra": {
  1750. "drupal": {
  1751. "version": "2.0.5",
  1752. "datestamp": "1698825601",
  1753. "security-coverage": {
  1754. "status": "covered",
  1755. "message": "Covered by Drupal's security advisory policy"
  1756. }
  1757. }
  1758. },
  1759. "notification-url": "https://packages.drupal.org/8/downloads",
  1760. "license": [
  1761. "GPL-2.0-or-later"
  1762. ],
  1763. "authors": [
  1764. {
  1765. "name": "AddToAny",
  1766. "homepage": "https://www.drupal.org/user/2640913"
  1767. },
  1768. {
  1769. "name": "micropat",
  1770. "homepage": "https://www.drupal.org/user/260224"
  1771. }
  1772. ],
  1773. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1774. "homepage": "https://www.drupal.org/project/addtoany",
  1775. "keywords": [
  1776. "Drupal"
  1777. ],
  1778. "support": {
  1779. "source": "https://git.drupalcode.org/project/addtoany",
  1780. "issues": "https://www.drupal.org/project/issues/addtoany"
  1781. }
  1782. },
  1783. {
  1784. "name": "drupal/admin_toolbar",
  1785. "version": "3.5.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1789. "reference": "3.5.0"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.0.zip",
  1794. "reference": "3.5.0",
  1795. "shasum": "099e8d4dc98e1d551b4f9cffdc39599eb8ad04e8"
  1796. },
  1797. "require": {
  1798. "drupal/core": "^9.5 || ^10 || ^11"
  1799. },
  1800. "require-dev": {
  1801. "drupal/admin_toolbar_tools": "*"
  1802. },
  1803. "type": "drupal-module",
  1804. "extra": {
  1805. "drupal": {
  1806. "version": "3.5.0",
  1807. "datestamp": "1722639094",
  1808. "security-coverage": {
  1809. "status": "covered",
  1810. "message": "Covered by Drupal's security advisory policy"
  1811. }
  1812. }
  1813. },
  1814. "notification-url": "https://packages.drupal.org/8/downloads",
  1815. "license": [
  1816. "GPL-2.0-or-later"
  1817. ],
  1818. "authors": [
  1819. {
  1820. "name": "Wilfrid Roze (eme)",
  1821. "homepage": "https://www.drupal.org/u/eme",
  1822. "role": "Maintainer"
  1823. },
  1824. {
  1825. "name": "Romain Jarraud (romainj)",
  1826. "homepage": "https://www.drupal.org/u/romainj",
  1827. "role": "Maintainer"
  1828. },
  1829. {
  1830. "name": "Adrian Cid Almaguer (adriancid)",
  1831. "homepage": "https://www.drupal.org/u/adriancid",
  1832. "email": "adriancid@gmail.com",
  1833. "role": "Maintainer"
  1834. },
  1835. {
  1836. "name": "Mohamed Anis Taktak (matio89)",
  1837. "homepage": "https://www.drupal.org/u/matio89",
  1838. "role": "Maintainer"
  1839. },
  1840. {
  1841. "name": "japerry",
  1842. "homepage": "https://www.drupal.org/user/45640"
  1843. },
  1844. {
  1845. "name": "matio89",
  1846. "homepage": "https://www.drupal.org/user/2320090"
  1847. },
  1848. {
  1849. "name": "musa.thomas",
  1850. "homepage": "https://www.drupal.org/user/1213824"
  1851. },
  1852. {
  1853. "name": "romainj",
  1854. "homepage": "https://www.drupal.org/user/370706"
  1855. }
  1856. ],
  1857. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1858. "homepage": "http://drupal.org/project/admin_toolbar",
  1859. "keywords": [
  1860. "Drupal",
  1861. "Toolbar"
  1862. ],
  1863. "support": {
  1864. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1865. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1866. }
  1867. },
  1868. {
  1869. "name": "drupal/adminimal_theme",
  1870. "version": "1.7.0",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1874. "reference": "8.x-1.7"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1879. "reference": "8.x-1.7",
  1880. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1881. },
  1882. "require": {
  1883. "drupal/core": "^9.3 || ^10",
  1884. "drupal/seven": "~1.0"
  1885. },
  1886. "type": "drupal-theme",
  1887. "extra": {
  1888. "drupal": {
  1889. "version": "8.x-1.7",
  1890. "datestamp": "1691504486",
  1891. "security-coverage": {
  1892. "status": "covered",
  1893. "message": "Covered by Drupal's security advisory policy"
  1894. }
  1895. }
  1896. },
  1897. "notification-url": "https://packages.drupal.org/8/downloads",
  1898. "license": [
  1899. "GPL-2.0+"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "ANDiTKO",
  1904. "homepage": "https://www.drupal.org/user/1428124"
  1905. },
  1906. {
  1907. "name": "andrey.troeglazov",
  1908. "homepage": "https://www.drupal.org/user/3145389"
  1909. },
  1910. {
  1911. "name": "realityloop",
  1912. "homepage": "https://www.drupal.org/user/139189"
  1913. },
  1914. {
  1915. "name": "rjjakes",
  1916. "homepage": "https://www.drupal.org/user/3457245"
  1917. }
  1918. ],
  1919. "description": "Drupal administration theme with modern minimalist design.",
  1920. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1921. "support": {
  1922. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1923. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1924. }
  1925. },
  1926. {
  1927. "name": "drupal/audiofield",
  1928. "version": "1.13.0",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://git.drupalcode.org/project/audiofield.git",
  1932. "reference": "8.x-1.13"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1937. "reference": "8.x-1.13",
  1938. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1939. },
  1940. "require": {
  1941. "drupal/core": "^8 || ^9 || ^10"
  1942. },
  1943. "type": "drupal-module",
  1944. "extra": {
  1945. "drupal": {
  1946. "version": "8.x-1.13",
  1947. "datestamp": "1681143245",
  1948. "security-coverage": {
  1949. "status": "covered",
  1950. "message": "Covered by Drupal's security advisory policy"
  1951. }
  1952. },
  1953. "drush": {
  1954. "services": {
  1955. "drush.services.yml": "^9"
  1956. }
  1957. }
  1958. },
  1959. "notification-url": "https://packages.drupal.org/8/downloads",
  1960. "license": [
  1961. "GPL-2.0-or-later"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "Daniel Moberly",
  1966. "homepage": "https://www.drupal.org/u/danielmoberly",
  1967. "role": "Maintainer"
  1968. },
  1969. {
  1970. "name": "tamerzg",
  1971. "homepage": "https://www.drupal.org/user/464564"
  1972. }
  1973. ],
  1974. "description": "AudioField Module",
  1975. "homepage": "https://www.drupal.org/project/audiofield",
  1976. "support": {
  1977. "source": "https://git.drupalcode.org/project/audiofield",
  1978. "issues": "https://www.drupal.org/project/issues/audiofield"
  1979. }
  1980. },
  1981. {
  1982. "name": "drupal/autologout",
  1983. "version": "1.5.0",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://git.drupalcode.org/project/autologout.git",
  1987. "reference": "8.x-1.5"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.5.zip",
  1992. "reference": "8.x-1.5",
  1993. "shasum": "1beb693f56eb119624dd270ee789db00eb1ce288"
  1994. },
  1995. "require": {
  1996. "drupal/core": "^9.2 || ^10 || ^11",
  1997. "drupal/js_cookie": "^1.0"
  1998. },
  1999. "type": "drupal-module",
  2000. "extra": {
  2001. "drupal": {
  2002. "version": "8.x-1.5",
  2003. "datestamp": "1716413630",
  2004. "security-coverage": {
  2005. "status": "covered",
  2006. "message": "Covered by Drupal's security advisory policy"
  2007. }
  2008. }
  2009. },
  2010. "notification-url": "https://packages.drupal.org/8/downloads",
  2011. "license": [
  2012. "GPL-2.0-or-later"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "ajits",
  2017. "homepage": "https://www.drupal.org/user/981944"
  2018. },
  2019. {
  2020. "name": "AjK",
  2021. "homepage": "https://www.drupal.org/user/39030"
  2022. },
  2023. {
  2024. "name": "boshtian",
  2025. "homepage": "https://www.drupal.org/user/1773456"
  2026. },
  2027. {
  2028. "name": "dandrews",
  2029. "homepage": "https://www.drupal.org/user/2014490"
  2030. },
  2031. {
  2032. "name": "darksnow",
  2033. "homepage": "https://www.drupal.org/user/391915"
  2034. },
  2035. {
  2036. "name": "japerry",
  2037. "homepage": "https://www.drupal.org/user/45640"
  2038. },
  2039. {
  2040. "name": "johnennew",
  2041. "homepage": "https://www.drupal.org/user/1150042"
  2042. },
  2043. {
  2044. "name": "jrglasgow",
  2045. "homepage": "https://www.drupal.org/user/36590"
  2046. },
  2047. {
  2048. "name": "kmasood",
  2049. "homepage": "https://www.drupal.org/user/1262860"
  2050. },
  2051. {
  2052. "name": "levelos",
  2053. "homepage": "https://www.drupal.org/user/54135"
  2054. },
  2055. {
  2056. "name": "prabeen.giri",
  2057. "homepage": "https://www.drupal.org/user/913078"
  2058. },
  2059. {
  2060. "name": "scott_earnest",
  2061. "homepage": "https://www.drupal.org/user/416158"
  2062. },
  2063. {
  2064. "name": "str8",
  2065. "homepage": "https://www.drupal.org/user/2865063"
  2066. }
  2067. ],
  2068. "description": "Adds automated timed logout.",
  2069. "homepage": "http://drupal.org/project/autologout",
  2070. "support": {
  2071. "source": "https://git.drupalcode.org/project/autologout",
  2072. "issues": "https://www.drupal.org/project/issues/autologout"
  2073. }
  2074. },
  2075. {
  2076. "name": "drupal/basic",
  2077. "version": "3.0.0-alpha2",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://git.drupalcode.org/project/basic.git",
  2081. "reference": "3.0.0-alpha2"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  2086. "reference": "3.0.0-alpha2",
  2087. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  2088. },
  2089. "require": {
  2090. "drupal/core": "^9.3 || ^10"
  2091. },
  2092. "type": "drupal-theme",
  2093. "extra": {
  2094. "drupal": {
  2095. "version": "3.0.0-alpha2",
  2096. "datestamp": "1674980765",
  2097. "security-coverage": {
  2098. "status": "not-covered",
  2099. "message": "Alpha releases are not covered by Drupal security advisories."
  2100. }
  2101. }
  2102. },
  2103. "notification-url": "https://packages.drupal.org/8/downloads",
  2104. "license": [
  2105. "GPL-2.0+"
  2106. ],
  2107. "authors": [
  2108. {
  2109. "name": "Steve Krueger",
  2110. "homepage": "http://thejibe.com",
  2111. "email": "steve@thejibe.com",
  2112. "role": "Maintainer"
  2113. },
  2114. {
  2115. "name": "Joël Pittet",
  2116. "homepage": "https://www.drupal.org/u/joelpittet",
  2117. "email": "joel@pittet.ca",
  2118. "role": "Maintainer"
  2119. },
  2120. {
  2121. "name": "Leah Wagner",
  2122. "homepage": "http://thejibe.com",
  2123. "email": "leah@thejibe.com",
  2124. "role": "Maintainer"
  2125. },
  2126. {
  2127. "name": "Catherine Winters",
  2128. "homepage": "http://www.catherinewinters.com",
  2129. "email": "catherine@catherinewinters.com",
  2130. "role": "Maintainer"
  2131. },
  2132. {
  2133. "name": "Johannes Schmidt",
  2134. "homepage": "http://2tabs.com",
  2135. "email": "mail@2tabs.com",
  2136. "role": "Maintainer"
  2137. },
  2138. {
  2139. "name": "Chuck Kosman",
  2140. "homepage": "http://thejibe.com",
  2141. "email": "chuck@thejibe.com",
  2142. "role": "Maintainer"
  2143. },
  2144. {
  2145. "name": "SteveK",
  2146. "homepage": "https://www.drupal.org/user/111656"
  2147. }
  2148. ],
  2149. "description": "HTML5, SASS, Responsive grid starter theme.",
  2150. "homepage": "http://drupal.org/project/basic",
  2151. "support": {
  2152. "source": "http://cgit.drupalcode.org/basic",
  2153. "issues": "https://www.drupal.org/project/issues/basic",
  2154. "irc": "irc://irc.freenode.org/drupal-contribute"
  2155. }
  2156. },
  2157. {
  2158. "name": "drupal/bulkdelete",
  2159. "version": "dev-1.x",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2163. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2164. },
  2165. "require": {
  2166. "drupal/core": "^8.7.7 || ^9 || ^10"
  2167. },
  2168. "type": "drupal-module",
  2169. "extra": {
  2170. "branch-alias": {
  2171. "dev-1.x": "1.x-dev"
  2172. },
  2173. "drupal": {
  2174. "version": "8.x-1.x-dev",
  2175. "datestamp": "1655322426",
  2176. "security-coverage": {
  2177. "status": "not-covered",
  2178. "message": "Dev releases are not covered by Drupal security advisories."
  2179. }
  2180. }
  2181. },
  2182. "notification-url": "https://packages.drupal.org/8/downloads",
  2183. "license": [
  2184. "GPL-2.0-or-later"
  2185. ],
  2186. "authors": [
  2187. {
  2188. "name": "Kars-T",
  2189. "homepage": "https://www.drupal.org/user/224499"
  2190. },
  2191. {
  2192. "name": "Rahul Seth",
  2193. "homepage": "https://www.drupal.org/user/2694359"
  2194. },
  2195. {
  2196. "name": "adriancid",
  2197. "homepage": "https://www.drupal.org/user/1962106"
  2198. },
  2199. {
  2200. "name": "robertDouglass",
  2201. "homepage": "https://www.drupal.org/user/5449"
  2202. }
  2203. ],
  2204. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2205. "homepage": "https://www.drupal.org/project/bulkdelete",
  2206. "support": {
  2207. "source": "https://git.drupalcode.org/project/bulkdelete"
  2208. }
  2209. },
  2210. {
  2211. "name": "drupal/classy",
  2212. "version": "1.0.2",
  2213. "source": {
  2214. "type": "git",
  2215. "url": "https://git.drupalcode.org/project/classy.git",
  2216. "reference": "1.0.2"
  2217. },
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip",
  2221. "reference": "1.0.2",
  2222. "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06"
  2223. },
  2224. "require": {
  2225. "drupal/core": "^9 || ^10",
  2226. "drupal/stable": "^2.0.0"
  2227. },
  2228. "type": "drupal-theme",
  2229. "extra": {
  2230. "drupal": {
  2231. "version": "1.0.2",
  2232. "datestamp": "1663949784",
  2233. "security-coverage": {
  2234. "status": "covered",
  2235. "message": "Covered by Drupal's security advisory policy"
  2236. }
  2237. }
  2238. },
  2239. "notification-url": "https://packages.drupal.org/8/downloads",
  2240. "license": [
  2241. "GPL-2.0-or-later"
  2242. ],
  2243. "authors": [
  2244. {
  2245. "name": "bnjmnm",
  2246. "homepage": "https://www.drupal.org/user/2369194"
  2247. },
  2248. {
  2249. "name": "davidhernandez",
  2250. "homepage": "https://www.drupal.org/user/274559"
  2251. },
  2252. {
  2253. "name": "lauriii",
  2254. "homepage": "https://www.drupal.org/user/1078742"
  2255. }
  2256. ],
  2257. "description": "The Classy base theme from Drupal 8/9 moved to contrib",
  2258. "homepage": "https://drupal.org/project/classy",
  2259. "support": {
  2260. "source": "https://git.drupalcode.org/project/classy",
  2261. "issues": "https://drupal.org/project/issues/classy"
  2262. }
  2263. },
  2264. {
  2265. "name": "drupal/color_field",
  2266. "version": "3.0.1",
  2267. "source": {
  2268. "type": "git",
  2269. "url": "https://git.drupalcode.org/project/color_field.git",
  2270. "reference": "3.0.1"
  2271. },
  2272. "dist": {
  2273. "type": "zip",
  2274. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  2275. "reference": "3.0.1",
  2276. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  2277. },
  2278. "require": {
  2279. "drupal/core": "^9 || ^10 || ^11"
  2280. },
  2281. "require-dev": {
  2282. "drupal/core-recommended": "^9 || ^10",
  2283. "drupal/feeds": "^3.0@beta",
  2284. "drupal/token": "~1.3"
  2285. },
  2286. "suggest": {
  2287. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2288. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2289. },
  2290. "type": "drupal-module",
  2291. "extra": {
  2292. "drupal": {
  2293. "version": "3.0.1",
  2294. "datestamp": "1717506868",
  2295. "security-coverage": {
  2296. "status": "covered",
  2297. "message": "Covered by Drupal's security advisory policy"
  2298. }
  2299. }
  2300. },
  2301. "notification-url": "https://packages.drupal.org/8/downloads",
  2302. "license": [
  2303. "GPL-2.0-or-later"
  2304. ],
  2305. "authors": [
  2306. {
  2307. "name": "targoo",
  2308. "homepage": "https://www.drupal.org/user/431910",
  2309. "role": "Maintainer"
  2310. },
  2311. {
  2312. "name": "Nick Wilde",
  2313. "homepage": "https://www.drupal.org/user/nickwilde",
  2314. "role": "Maintainer"
  2315. },
  2316. {
  2317. "name": "targoo",
  2318. "homepage": "https://www.drupal.org/user/431910"
  2319. }
  2320. ],
  2321. "description": "Provides a color field type to store the color value and opacity",
  2322. "homepage": "https://www.drupal.org/project/color_field",
  2323. "support": {
  2324. "source": "https://git.drupalcode.org/project/color_field",
  2325. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2326. }
  2327. },
  2328. {
  2329. "name": "drupal/composer_deploy",
  2330. "version": "1.7.0",
  2331. "source": {
  2332. "type": "git",
  2333. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  2334. "reference": "8.x-1.7"
  2335. },
  2336. "dist": {
  2337. "type": "zip",
  2338. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.7.zip",
  2339. "reference": "8.x-1.7",
  2340. "shasum": "545cb7d83c701fb68f4d95522f24d7270332ce8a"
  2341. },
  2342. "require": {
  2343. "drupal/core": "^8.8 || ^9 || ^10",
  2344. "webflo/drupal-finder": "^1.2"
  2345. },
  2346. "type": "drupal-module",
  2347. "extra": {
  2348. "drupal": {
  2349. "version": "8.x-1.7",
  2350. "datestamp": "1660818349",
  2351. "security-coverage": {
  2352. "status": "covered",
  2353. "message": "Covered by Drupal's security advisory policy"
  2354. }
  2355. }
  2356. },
  2357. "notification-url": "https://packages.drupal.org/8/downloads",
  2358. "license": [
  2359. "GPL-2.0+"
  2360. ],
  2361. "authors": [
  2362. {
  2363. "name": "jhedstrom",
  2364. "homepage": "https://www.drupal.org/user/208732"
  2365. },
  2366. {
  2367. "name": "joelpittet",
  2368. "homepage": "https://www.drupal.org/user/160302"
  2369. },
  2370. {
  2371. "name": "nerdstein",
  2372. "homepage": "https://www.drupal.org/user/1557710"
  2373. },
  2374. {
  2375. "name": "webflo",
  2376. "homepage": "https://www.drupal.org/user/254778"
  2377. }
  2378. ],
  2379. "description": "Provide version number from composers lockfile.",
  2380. "homepage": "https://www.drupal.org/project/composer_deploy",
  2381. "support": {
  2382. "source": "https://git.drupalcode.org/project/composer_deploy"
  2383. }
  2384. },
  2385. {
  2386. "name": "drupal/config_devel",
  2387. "version": "1.9.0",
  2388. "source": {
  2389. "type": "git",
  2390. "url": "https://git.drupalcode.org/project/config_devel.git",
  2391. "reference": "8.x-1.9"
  2392. },
  2393. "dist": {
  2394. "type": "zip",
  2395. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.9.zip",
  2396. "reference": "8.x-1.9",
  2397. "shasum": "a9cb90575ec854b8d8adb4633a0ddc47c490ca87"
  2398. },
  2399. "require": {
  2400. "drupal/core": "^9.3 || ^10"
  2401. },
  2402. "type": "drupal-module",
  2403. "extra": {
  2404. "drupal": {
  2405. "version": "8.x-1.9",
  2406. "datestamp": "1678264813",
  2407. "security-coverage": {
  2408. "status": "covered",
  2409. "message": "Covered by Drupal's security advisory policy"
  2410. }
  2411. }
  2412. },
  2413. "notification-url": "https://packages.drupal.org/8/downloads",
  2414. "license": [
  2415. "GPL-2.0+"
  2416. ],
  2417. "authors": [
  2418. {
  2419. "name": "alexpott",
  2420. "homepage": "https://www.drupal.org/user/157725"
  2421. },
  2422. {
  2423. "name": "benjy",
  2424. "homepage": "https://www.drupal.org/user/1852732"
  2425. },
  2426. {
  2427. "name": "chx",
  2428. "homepage": "https://www.drupal.org/user/9446"
  2429. },
  2430. {
  2431. "name": "joachim",
  2432. "homepage": "https://www.drupal.org/user/107701"
  2433. },
  2434. {
  2435. "name": "vijaycs85",
  2436. "homepage": "https://www.drupal.org/user/93488"
  2437. }
  2438. ],
  2439. "description": "Helps developers work with configuration.",
  2440. "homepage": "https://www.drupal.org/project/config_devel",
  2441. "support": {
  2442. "source": "https://git.drupalcode.org/project/config_devel"
  2443. }
  2444. },
  2445. {
  2446. "name": "drupal/config_filter",
  2447. "version": "1.12.0",
  2448. "source": {
  2449. "type": "git",
  2450. "url": "https://git.drupalcode.org/project/config_filter.git",
  2451. "reference": "8.x-1.12"
  2452. },
  2453. "dist": {
  2454. "type": "zip",
  2455. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2456. "reference": "8.x-1.12",
  2457. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2458. },
  2459. "require": {
  2460. "drupal/core": "^8.8 || ^9 || ^10"
  2461. },
  2462. "suggest": {
  2463. "drupal/config_split": "Split site configuration for different environments."
  2464. },
  2465. "type": "drupal-module",
  2466. "extra": {
  2467. "drupal": {
  2468. "version": "8.x-1.12",
  2469. "datestamp": "1698308496",
  2470. "security-coverage": {
  2471. "status": "covered",
  2472. "message": "Covered by Drupal's security advisory policy"
  2473. }
  2474. }
  2475. },
  2476. "notification-url": "https://packages.drupal.org/8/downloads",
  2477. "license": [
  2478. "GPL-2.0-or-later"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Fabian Bircher",
  2483. "homepage": "https://www.drupal.org/u/bircher",
  2484. "email": "opensource@fabianbircher.com",
  2485. "role": "Maintainer"
  2486. },
  2487. {
  2488. "name": "Nuvole Web",
  2489. "homepage": "http://nuvole.org",
  2490. "email": "info@nuvole.org",
  2491. "role": "Maintainer"
  2492. },
  2493. {
  2494. "name": "pescetti",
  2495. "homepage": "https://www.drupal.org/user/436244"
  2496. }
  2497. ],
  2498. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2499. "homepage": "https://www.drupal.org/project/config_filter",
  2500. "keywords": [
  2501. "Drupal",
  2502. "configuration",
  2503. "configuration management"
  2504. ],
  2505. "support": {
  2506. "source": "https://git.drupalcode.org/project/config_filter",
  2507. "issues": "https://www.drupal.org/project/issues/config_filter",
  2508. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2509. }
  2510. },
  2511. {
  2512. "name": "drupal/config_ignore",
  2513. "version": "3.3.0",
  2514. "source": {
  2515. "type": "git",
  2516. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2517. "reference": "8.x-3.3"
  2518. },
  2519. "dist": {
  2520. "type": "zip",
  2521. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2522. "reference": "8.x-3.3",
  2523. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2524. },
  2525. "require": {
  2526. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2527. },
  2528. "require-dev": {
  2529. "drupal/config_filter": "^1.8||^2.2",
  2530. "drush/drush": "^10 || ^11 || ^12"
  2531. },
  2532. "type": "drupal-module",
  2533. "extra": {
  2534. "drupal": {
  2535. "version": "8.x-3.3",
  2536. "datestamp": "1713299496",
  2537. "security-coverage": {
  2538. "status": "covered",
  2539. "message": "Covered by Drupal's security advisory policy"
  2540. }
  2541. }
  2542. },
  2543. "notification-url": "https://packages.drupal.org/8/downloads",
  2544. "license": [
  2545. "GPL-2.0-or-later"
  2546. ],
  2547. "authors": [
  2548. {
  2549. "name": "Tommy Lynge Jørgensen",
  2550. "homepage": "https://www.drupal.org/u/tlyngej",
  2551. "email": "tlyngej@gmail.com",
  2552. "role": "Maintainer"
  2553. },
  2554. {
  2555. "name": "Fabian Bircher",
  2556. "homepage": "https://www.drupal.org/u/bircher",
  2557. "role": "Maintainer"
  2558. },
  2559. {
  2560. "name": "tlyngej",
  2561. "homepage": "https://www.drupal.org/user/413139"
  2562. }
  2563. ],
  2564. "description": "Ignore certain configuration during import and export.",
  2565. "homepage": "http://drupal.org/project/config_ignore",
  2566. "support": {
  2567. "source": "https://git.drupalcode.org/project/config_ignore",
  2568. "issues": "http://drupal.org/project/config_ignore"
  2569. }
  2570. },
  2571. {
  2572. "name": "drupal/config_update",
  2573. "version": "2.0.0-alpha4",
  2574. "source": {
  2575. "type": "git",
  2576. "url": "https://git.drupalcode.org/project/config_update.git",
  2577. "reference": "2.0.0-alpha4"
  2578. },
  2579. "dist": {
  2580. "type": "zip",
  2581. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2582. "reference": "2.0.0-alpha4",
  2583. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2584. },
  2585. "require": {
  2586. "drupal/core": "^9.4 || ^10 || ^11"
  2587. },
  2588. "type": "drupal-module",
  2589. "extra": {
  2590. "drupal": {
  2591. "version": "2.0.0-alpha4",
  2592. "datestamp": "1724596931",
  2593. "security-coverage": {
  2594. "status": "not-covered",
  2595. "message": "Alpha releases are not covered by Drupal security advisories."
  2596. }
  2597. }
  2598. },
  2599. "notification-url": "https://packages.drupal.org/8/downloads",
  2600. "license": [
  2601. "GPL-2.0-or-later"
  2602. ],
  2603. "authors": [
  2604. {
  2605. "name": "codebymikey",
  2606. "homepage": "https://www.drupal.org/user/3573206"
  2607. },
  2608. {
  2609. "name": "pasqualle",
  2610. "homepage": "https://www.drupal.org/user/80733"
  2611. },
  2612. {
  2613. "name": "vishalkhode",
  2614. "homepage": "https://www.drupal.org/user/2439156"
  2615. }
  2616. ],
  2617. "description": "Provides basic revert and update functionality for other modules.",
  2618. "homepage": "https://www.drupal.org/project/config_update",
  2619. "support": {
  2620. "source": "https://git.drupalcode.org/project/config_update"
  2621. }
  2622. },
  2623. {
  2624. "name": "drupal/context",
  2625. "version": "5.0.0-rc1",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://git.drupalcode.org/project/context.git",
  2629. "reference": "5.0.0-rc1"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2634. "reference": "5.0.0-rc1",
  2635. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2636. },
  2637. "require": {
  2638. "drupal/core": "^9.3 || ^10"
  2639. },
  2640. "type": "drupal-module",
  2641. "extra": {
  2642. "drupal": {
  2643. "version": "5.0.0-rc1",
  2644. "datestamp": "1677054769",
  2645. "security-coverage": {
  2646. "status": "not-covered",
  2647. "message": "RC releases are not covered by Drupal security advisories."
  2648. }
  2649. }
  2650. },
  2651. "notification-url": "https://packages.drupal.org/8/downloads",
  2652. "license": [
  2653. "MIT"
  2654. ],
  2655. "authors": [
  2656. {
  2657. "name": "Christoffer Palm",
  2658. "homepage": "http://www.oddhill.se/",
  2659. "email": "christoffer.palm@oddhill.se",
  2660. "role": "Developer"
  2661. },
  2662. {
  2663. "name": "boshtian",
  2664. "homepage": "https://www.drupal.org/user/1773456"
  2665. },
  2666. {
  2667. "name": "colan",
  2668. "homepage": "https://www.drupal.org/user/58704"
  2669. },
  2670. {
  2671. "name": "emanaton",
  2672. "homepage": "https://www.drupal.org/user/120853"
  2673. },
  2674. {
  2675. "name": "febbraro",
  2676. "homepage": "https://www.drupal.org/user/43670"
  2677. },
  2678. {
  2679. "name": "fizk",
  2680. "homepage": "https://www.drupal.org/user/473174"
  2681. },
  2682. {
  2683. "name": "hass",
  2684. "homepage": "https://www.drupal.org/user/85918"
  2685. },
  2686. {
  2687. "name": "hefox",
  2688. "homepage": "https://www.drupal.org/user/426416"
  2689. },
  2690. {
  2691. "name": "jmiccolis",
  2692. "homepage": "https://www.drupal.org/user/31731"
  2693. },
  2694. {
  2695. "name": "Kristen Pol",
  2696. "homepage": "https://www.drupal.org/user/8389"
  2697. },
  2698. {
  2699. "name": "nedjo",
  2700. "homepage": "https://www.drupal.org/user/4481"
  2701. },
  2702. {
  2703. "name": "NormySan",
  2704. "homepage": "https://www.drupal.org/user/112352"
  2705. },
  2706. {
  2707. "name": "patricksettle",
  2708. "homepage": "https://www.drupal.org/user/26618"
  2709. },
  2710. {
  2711. "name": "paulocs",
  2712. "homepage": "https://www.drupal.org/user/3640109"
  2713. },
  2714. {
  2715. "name": "Steven Jones",
  2716. "homepage": "https://www.drupal.org/user/99644"
  2717. },
  2718. {
  2719. "name": "tekante",
  2720. "homepage": "https://www.drupal.org/user/640024"
  2721. },
  2722. {
  2723. "name": "yhahn",
  2724. "homepage": "https://www.drupal.org/user/264833"
  2725. }
  2726. ],
  2727. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2728. "homepage": "https://github.com/oddhill/context",
  2729. "keywords": [
  2730. "Drupal",
  2731. "block",
  2732. "conditions",
  2733. "context",
  2734. "visibility"
  2735. ],
  2736. "support": {
  2737. "source": "https://github.com/oddhill/context",
  2738. "issues": "https://github.com/oddhill/context/issues",
  2739. "docs": "https://github.com/oddhill/context"
  2740. }
  2741. },
  2742. {
  2743. "name": "drupal/core",
  2744. "version": "9.5.11",
  2745. "source": {
  2746. "type": "git",
  2747. "url": "https://github.com/drupal/core.git",
  2748. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19"
  2749. },
  2750. "dist": {
  2751. "type": "zip",
  2752. "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19",
  2753. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19",
  2754. "shasum": ""
  2755. },
  2756. "require": {
  2757. "asm89/stack-cors": "^1.3",
  2758. "composer/semver": "^3.3",
  2759. "doctrine/annotations": "^1.13",
  2760. "doctrine/reflection": "^1.2",
  2761. "egulias/email-validator": "^2.1.22|^3.2",
  2762. "ext-date": "*",
  2763. "ext-dom": "*",
  2764. "ext-filter": "*",
  2765. "ext-gd": "*",
  2766. "ext-hash": "*",
  2767. "ext-json": "*",
  2768. "ext-pcre": "*",
  2769. "ext-pdo": "*",
  2770. "ext-session": "*",
  2771. "ext-simplexml": "*",
  2772. "ext-spl": "*",
  2773. "ext-tokenizer": "*",
  2774. "ext-xml": "*",
  2775. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  2776. "laminas/laminas-feed": "^2.17",
  2777. "longwave/laminas-diactoros": "^2.14",
  2778. "masterminds/html5": "^2.7",
  2779. "pear/archive_tar": "^1.4.14",
  2780. "php": ">=7.3.0",
  2781. "psr/log": "^1.1",
  2782. "stack/builder": "^1.0",
  2783. "symfony-cmf/routing": "^2.3",
  2784. "symfony/console": "^4.4",
  2785. "symfony/dependency-injection": "^4.4",
  2786. "symfony/event-dispatcher": "^4.4",
  2787. "symfony/http-foundation": "^4.4.7",
  2788. "symfony/http-kernel": "^4.4",
  2789. "symfony/mime": "^5.4",
  2790. "symfony/polyfill-iconv": "^1.26",
  2791. "symfony/polyfill-php80": "^1.26",
  2792. "symfony/process": "^4.4",
  2793. "symfony/psr-http-message-bridge": "^2.1",
  2794. "symfony/routing": "^4.4",
  2795. "symfony/serializer": "^4.4",
  2796. "symfony/translation": "^4.4",
  2797. "symfony/validator": "^4.4",
  2798. "symfony/yaml": "^4.4.19",
  2799. "twig/twig": "^2.15.3",
  2800. "typo3/phar-stream-wrapper": "^3.1.3"
  2801. },
  2802. "conflict": {
  2803. "drush/drush": "<8.1.10",
  2804. "symfony/http-foundation": "4.4.42"
  2805. },
  2806. "replace": {
  2807. "drupal/core-annotation": "self.version",
  2808. "drupal/core-assertion": "self.version",
  2809. "drupal/core-bridge": "self.version",
  2810. "drupal/core-class-finder": "self.version",
  2811. "drupal/core-datetime": "self.version",
  2812. "drupal/core-dependency-injection": "self.version",
  2813. "drupal/core-diff": "self.version",
  2814. "drupal/core-discovery": "self.version",
  2815. "drupal/core-event-dispatcher": "self.version",
  2816. "drupal/core-file-cache": "self.version",
  2817. "drupal/core-file-security": "self.version",
  2818. "drupal/core-filesystem": "self.version",
  2819. "drupal/core-front-matter": "self.version",
  2820. "drupal/core-gettext": "self.version",
  2821. "drupal/core-graph": "self.version",
  2822. "drupal/core-http-foundation": "self.version",
  2823. "drupal/core-php-storage": "self.version",
  2824. "drupal/core-plugin": "self.version",
  2825. "drupal/core-proxy-builder": "self.version",
  2826. "drupal/core-render": "self.version",
  2827. "drupal/core-serialization": "self.version",
  2828. "drupal/core-transliteration": "self.version",
  2829. "drupal/core-utility": "self.version",
  2830. "drupal/core-uuid": "self.version",
  2831. "drupal/core-version": "self.version"
  2832. },
  2833. "type": "drupal-core",
  2834. "extra": {
  2835. "drupal-scaffold": {
  2836. "file-mapping": {
  2837. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2838. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2839. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2840. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2841. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2842. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2843. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2844. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2845. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2846. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2847. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2848. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2849. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2850. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2851. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2852. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2853. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2854. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2855. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2856. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2857. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2858. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2859. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2860. }
  2861. }
  2862. },
  2863. "autoload": {
  2864. "files": [
  2865. "includes/bootstrap.inc",
  2866. "includes/guzzle_php81_shim.php"
  2867. ],
  2868. "psr-4": {
  2869. "Drupal\\Core\\": "lib/Drupal/Core",
  2870. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2871. "Drupal\\Component\\": "lib/Drupal/Component"
  2872. },
  2873. "classmap": [
  2874. "lib/Drupal.php",
  2875. "lib/Drupal/Component/DependencyInjection/Container.php",
  2876. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2877. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2878. "lib/Drupal/Component/Utility/Timer.php",
  2879. "lib/Drupal/Component/Utility/Unicode.php",
  2880. "lib/Drupal/Core/Cache/Cache.php",
  2881. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2882. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2883. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2884. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2885. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2886. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2887. "lib/Drupal/Core/Database/Connection.php",
  2888. "lib/Drupal/Core/Database/Database.php",
  2889. "lib/Drupal/Core/Database/Statement.php",
  2890. "lib/Drupal/Core/Database/StatementInterface.php",
  2891. "lib/Drupal/Core/DependencyInjection/Container.php",
  2892. "lib/Drupal/Core/DrupalKernel.php",
  2893. "lib/Drupal/Core/DrupalKernelInterface.php",
  2894. "lib/Drupal/Core/Http/InputBag.php",
  2895. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2896. "lib/Drupal/Core/Site/Settings.php"
  2897. ]
  2898. },
  2899. "notification-url": "https://packagist.org/downloads/",
  2900. "license": [
  2901. "GPL-2.0-or-later"
  2902. ],
  2903. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2904. "support": {
  2905. "source": "https://github.com/drupal/core/tree/9.5.11"
  2906. },
  2907. "time": "2023-09-19T17:58:28+00:00"
  2908. },
  2909. {
  2910. "name": "drupal/core-composer-scaffold",
  2911. "version": "9.5.11",
  2912. "source": {
  2913. "type": "git",
  2914. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2915. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7"
  2916. },
  2917. "dist": {
  2918. "type": "zip",
  2919. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2920. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2921. "shasum": ""
  2922. },
  2923. "require": {
  2924. "composer-plugin-api": "^1 || ^2",
  2925. "php": ">=7.3.0"
  2926. },
  2927. "conflict": {
  2928. "drupal-composer/drupal-scaffold": "*"
  2929. },
  2930. "require-dev": {
  2931. "composer/composer": "^1.8@stable"
  2932. },
  2933. "type": "composer-plugin",
  2934. "extra": {
  2935. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2936. "branch-alias": {
  2937. "dev-master": "1.0.x-dev"
  2938. }
  2939. },
  2940. "autoload": {
  2941. "psr-4": {
  2942. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2943. }
  2944. },
  2945. "notification-url": "https://packagist.org/downloads/",
  2946. "license": [
  2947. "GPL-2.0-or-later"
  2948. ],
  2949. "description": "A flexible Composer project scaffold builder.",
  2950. "homepage": "https://www.drupal.org/project/drupal",
  2951. "keywords": [
  2952. "drupal"
  2953. ],
  2954. "support": {
  2955. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11"
  2956. },
  2957. "time": "2023-04-30T16:17:33+00:00"
  2958. },
  2959. {
  2960. "name": "drupal/core-project-message",
  2961. "version": "9.5.11",
  2962. "source": {
  2963. "type": "git",
  2964. "url": "https://github.com/drupal/core-project-message.git",
  2965. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c"
  2966. },
  2967. "dist": {
  2968. "type": "zip",
  2969. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/5dfa0b75a057caf6542be67f61e7531c737db48c",
  2970. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c",
  2971. "shasum": ""
  2972. },
  2973. "require": {
  2974. "composer-plugin-api": "^1.1 || ^2",
  2975. "php": ">=7.3.0"
  2976. },
  2977. "type": "composer-plugin",
  2978. "extra": {
  2979. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "GPL-2.0-or-later"
  2989. ],
  2990. "description": "Adds a message after Composer installation.",
  2991. "homepage": "https://www.drupal.org/project/drupal",
  2992. "keywords": [
  2993. "drupal"
  2994. ],
  2995. "support": {
  2996. "source": "https://github.com/drupal/core-project-message/tree/9.5.11"
  2997. },
  2998. "time": "2022-02-24T17:40:53+00:00"
  2999. },
  3000. {
  3001. "name": "drupal/core-recommended",
  3002. "version": "9.5.11",
  3003. "source": {
  3004. "type": "git",
  3005. "url": "https://github.com/drupal/core-recommended.git",
  3006. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f"
  3007. },
  3008. "dist": {
  3009. "type": "zip",
  3010. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f",
  3011. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f",
  3012. "shasum": ""
  3013. },
  3014. "require": {
  3015. "asm89/stack-cors": "~1.3.0",
  3016. "composer/semver": "~3.3.2",
  3017. "doctrine/annotations": "~1.13.3",
  3018. "doctrine/lexer": "~1.2.3",
  3019. "doctrine/reflection": "~1.2.3",
  3020. "drupal/core": "9.5.11",
  3021. "egulias/email-validator": "~3.2.1",
  3022. "guzzlehttp/guzzle": "~6.5.8",
  3023. "guzzlehttp/promises": "~1.5.2",
  3024. "guzzlehttp/psr7": "~1.9.1",
  3025. "longwave/laminas-diactoros": "~2.14.2",
  3026. "masterminds/html5": "~2.7.6",
  3027. "pear/archive_tar": "~1.4.14",
  3028. "pear/console_getopt": "~v1.4.3",
  3029. "pear/pear-core-minimal": "~v1.10.11",
  3030. "pear/pear_exception": "~v1.0.2",
  3031. "psr/cache": "~1.0.1",
  3032. "psr/container": "~1.1.1",
  3033. "psr/http-factory": "~1.0.1",
  3034. "psr/http-message": "~1.0.1",
  3035. "psr/log": "~1.1.4",
  3036. "ralouphie/getallheaders": "~3.0.3",
  3037. "stack/builder": "~v1.0.6",
  3038. "symfony-cmf/routing": "~2.3.4",
  3039. "symfony/console": "~v4.4.49",
  3040. "symfony/debug": "~v4.4.44",
  3041. "symfony/dependency-injection": "~v4.4.49",
  3042. "symfony/deprecation-contracts": "~v2.5.2",
  3043. "symfony/error-handler": "~v4.4.44",
  3044. "symfony/event-dispatcher": "~v4.4.44",
  3045. "symfony/event-dispatcher-contracts": "~v1.1.13",
  3046. "symfony/http-client-contracts": "~v2.5.2",
  3047. "symfony/http-foundation": "~v4.4.49",
  3048. "symfony/http-kernel": "~v4.4.50",
  3049. "symfony/mime": "~v5.4.13",
  3050. "symfony/polyfill-ctype": "~v1.27.0",
  3051. "symfony/polyfill-iconv": "~v1.27.0",
  3052. "symfony/polyfill-intl-idn": "~v1.27.0",
  3053. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3054. "symfony/polyfill-mbstring": "~v1.27.0",
  3055. "symfony/polyfill-php80": "~v1.27.0",
  3056. "symfony/process": "~v4.4.44",
  3057. "symfony/psr-http-message-bridge": "~v2.1.4",
  3058. "symfony/routing": "~v4.4.44",
  3059. "symfony/serializer": "~v4.4.47",
  3060. "symfony/service-contracts": "~v2.5.2",
  3061. "symfony/translation": "~v4.4.47",
  3062. "symfony/translation-contracts": "~v2.5.2",
  3063. "symfony/validator": "~v4.4.48",
  3064. "symfony/var-dumper": "~v5.4.19",
  3065. "symfony/yaml": "~v4.4.45",
  3066. "twig/twig": "~v2.15.4",
  3067. "typo3/phar-stream-wrapper": "~v3.1.7"
  3068. },
  3069. "conflict": {
  3070. "webflo/drupal-core-strict": "*"
  3071. },
  3072. "type": "metapackage",
  3073. "notification-url": "https://packagist.org/downloads/",
  3074. "license": [
  3075. "GPL-2.0-or-later"
  3076. ],
  3077. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3078. "support": {
  3079. "source": "https://github.com/drupal/core-recommended/tree/9.5.11"
  3080. },
  3081. "time": "2023-09-19T17:58:28+00:00"
  3082. },
  3083. {
  3084. "name": "drupal/ctools",
  3085. "version": "4.1.0",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://git.drupalcode.org/project/ctools.git",
  3089. "reference": "4.1.0"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3094. "reference": "4.1.0",
  3095. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3096. },
  3097. "require": {
  3098. "drupal/core": "^9.5 || ^10 || ^11"
  3099. },
  3100. "type": "drupal-module",
  3101. "extra": {
  3102. "drupal": {
  3103. "version": "4.1.0",
  3104. "datestamp": "1718144949",
  3105. "security-coverage": {
  3106. "status": "covered",
  3107. "message": "Covered by Drupal's security advisory policy"
  3108. }
  3109. },
  3110. "branch-alias": {
  3111. "dev-8.x-3.x": "3.x-dev"
  3112. }
  3113. },
  3114. "notification-url": "https://packages.drupal.org/8/downloads",
  3115. "license": [
  3116. "GPL-2.0-or-later"
  3117. ],
  3118. "authors": [
  3119. {
  3120. "name": "Kris Vanderwater (EclipseGc)",
  3121. "homepage": "https://www.drupal.org/u/eclipsegc",
  3122. "role": "Maintainer"
  3123. },
  3124. {
  3125. "name": "Jakob Perry (japerry)",
  3126. "homepage": "https://www.drupal.org/u/japerry",
  3127. "role": "Maintainer"
  3128. },
  3129. {
  3130. "name": "Tim Plunkett (tim.plunkett)",
  3131. "homepage": "https://www.drupal.org/u/timplunkett",
  3132. "role": "Maintainer"
  3133. },
  3134. {
  3135. "name": "James Gilliland (neclimdul)",
  3136. "homepage": "https://www.drupal.org/u/neclimdul",
  3137. "role": "Maintainer"
  3138. },
  3139. {
  3140. "name": "Daniel Wehner (dawehner)",
  3141. "homepage": "https://www.drupal.org/u/dawehner",
  3142. "role": "Maintainer"
  3143. },
  3144. {
  3145. "name": "joelpittet",
  3146. "homepage": "https://www.drupal.org/user/160302"
  3147. },
  3148. {
  3149. "name": "merlinofchaos",
  3150. "homepage": "https://www.drupal.org/user/26979"
  3151. },
  3152. {
  3153. "name": "neclimdul",
  3154. "homepage": "https://www.drupal.org/user/48673"
  3155. },
  3156. {
  3157. "name": "sdboyer",
  3158. "homepage": "https://www.drupal.org/user/146719"
  3159. },
  3160. {
  3161. "name": "sun",
  3162. "homepage": "https://www.drupal.org/user/54136"
  3163. },
  3164. {
  3165. "name": "tim.plunkett",
  3166. "homepage": "https://www.drupal.org/user/241634"
  3167. }
  3168. ],
  3169. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3170. "homepage": "https://www.drupal.org/project/ctools",
  3171. "support": {
  3172. "source": "https://git.drupalcode.org/project/ctools",
  3173. "issues": "https://www.drupal.org/project/issues/ctools"
  3174. }
  3175. },
  3176. {
  3177. "name": "drupal/date_range_formatter",
  3178. "version": "4.0.2",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3182. "reference": "4.0.2"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3187. "reference": "4.0.2",
  3188. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3189. },
  3190. "require": {
  3191. "drupal/core": "^8 || ^9 || ^10"
  3192. },
  3193. "type": "drupal-module",
  3194. "extra": {
  3195. "drupal": {
  3196. "version": "4.0.2",
  3197. "datestamp": "1703156621",
  3198. "security-coverage": {
  3199. "status": "covered",
  3200. "message": "Covered by Drupal's security advisory policy"
  3201. }
  3202. }
  3203. },
  3204. "notification-url": "https://packages.drupal.org/8/downloads",
  3205. "license": [
  3206. "GPL-2.0-or-later"
  3207. ],
  3208. "authors": [
  3209. {
  3210. "name": "maximpodorov",
  3211. "homepage": "https://www.drupal.org/user/515310"
  3212. },
  3213. {
  3214. "name": "sudishth",
  3215. "homepage": "https://www.drupal.org/user/1440562"
  3216. }
  3217. ],
  3218. "description": "Formats date ranges.",
  3219. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3220. "support": {
  3221. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3222. }
  3223. },
  3224. {
  3225. "name": "drupal/devel",
  3226. "version": "5.1.2",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://git.drupalcode.org/project/devel.git",
  3230. "reference": "5.1.2"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3235. "reference": "5.1.2",
  3236. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3237. },
  3238. "require": {
  3239. "doctrine/common": "^2.7 || ^3.4",
  3240. "drupal/core": "^9 || ^10",
  3241. "php": ">=7.4",
  3242. "symfony/var-dumper": "^4 || ^5 || ^6"
  3243. },
  3244. "conflict": {
  3245. "kint-php/kint": "<3"
  3246. },
  3247. "require-dev": {
  3248. "drush/drush": "^11"
  3249. },
  3250. "suggest": {
  3251. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3252. },
  3253. "type": "drupal-module",
  3254. "extra": {
  3255. "drupal": {
  3256. "version": "5.1.2",
  3257. "datestamp": "1686161028",
  3258. "security-coverage": {
  3259. "status": "covered",
  3260. "message": "Covered by Drupal's security advisory policy"
  3261. }
  3262. },
  3263. "drush": {
  3264. "services": {
  3265. "drush.services.yml": "^9 || ^10 || ^11"
  3266. }
  3267. }
  3268. },
  3269. "notification-url": "https://packages.drupal.org/8/downloads",
  3270. "license": [
  3271. "GPL-2.0-or-later"
  3272. ],
  3273. "authors": [
  3274. {
  3275. "name": "moshe weitzman",
  3276. "homepage": "https://www.drupal.org/user/23"
  3277. }
  3278. ],
  3279. "description": "Various blocks, pages, and functions for developers.",
  3280. "homepage": "https://www.drupal.org/project/devel",
  3281. "support": {
  3282. "source": "https://gitlab.com/drupalspoons/devel",
  3283. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3284. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3285. }
  3286. },
  3287. {
  3288. "name": "drupal/domain",
  3289. "version": "2.0.0-beta1",
  3290. "source": {
  3291. "type": "git",
  3292. "url": "https://git.drupalcode.org/project/domain.git",
  3293. "reference": "2.0.0-beta1"
  3294. },
  3295. "dist": {
  3296. "type": "zip",
  3297. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  3298. "reference": "2.0.0-beta1",
  3299. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  3300. },
  3301. "require": {
  3302. "drupal/core": "^9 || ^10"
  3303. },
  3304. "require-dev": {
  3305. "drupal/domain_access": "*",
  3306. "drupal/domain_config": "*"
  3307. },
  3308. "type": "drupal-module",
  3309. "extra": {
  3310. "drupal": {
  3311. "version": "2.0.0-beta1",
  3312. "datestamp": "1686067462",
  3313. "security-coverage": {
  3314. "status": "not-covered",
  3315. "message": "Beta releases are not covered by Drupal security advisories."
  3316. }
  3317. }
  3318. },
  3319. "notification-url": "https://packages.drupal.org/8/downloads",
  3320. "license": [
  3321. "GPL-2.0-or-later"
  3322. ],
  3323. "authors": [
  3324. {
  3325. "name": "agentrickard",
  3326. "homepage": "https://www.drupal.org/user/20975"
  3327. },
  3328. {
  3329. "name": "nonsie",
  3330. "homepage": "https://www.drupal.org/user/29899"
  3331. },
  3332. {
  3333. "name": "webflo",
  3334. "homepage": "https://www.drupal.org/user/254778"
  3335. }
  3336. ],
  3337. "description": "Creates domain records within a Drupal installation.",
  3338. "homepage": "https://www.drupal.org/project/domain",
  3339. "support": {
  3340. "source": "https://git.drupalcode.org/project/domain"
  3341. }
  3342. },
  3343. {
  3344. "name": "drupal/domain_config",
  3345. "version": "1.0.0-beta8",
  3346. "require": {
  3347. "drupal/core": "^8 || ^9",
  3348. "drupal/domain": "*"
  3349. },
  3350. "type": "metapackage",
  3351. "extra": {
  3352. "drupal": {
  3353. "version": "8.x-1.0-beta8",
  3354. "datestamp": "1677511311",
  3355. "security-coverage": {
  3356. "status": "not-covered",
  3357. "message": "Beta releases are not covered by Drupal security advisories."
  3358. }
  3359. }
  3360. },
  3361. "notification-url": "https://packages.drupal.org/8/downloads",
  3362. "license": [
  3363. "GPL-2.0-or-later"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "agentrickard",
  3368. "homepage": "https://www.drupal.org/user/20975"
  3369. },
  3370. {
  3371. "name": "nonsie",
  3372. "homepage": "https://www.drupal.org/user/29899"
  3373. },
  3374. {
  3375. "name": "webflo",
  3376. "homepage": "https://www.drupal.org/user/254778"
  3377. }
  3378. ],
  3379. "description": "Allows domain specific configuration.",
  3380. "homepage": "https://www.drupal.org/project/domain",
  3381. "support": {
  3382. "source": "https://git.drupalcode.org/project/domain"
  3383. }
  3384. },
  3385. {
  3386. "name": "drupal/domain_site_settings",
  3387. "version": "1.6.0",
  3388. "source": {
  3389. "type": "git",
  3390. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3391. "reference": "8.x-1.6"
  3392. },
  3393. "dist": {
  3394. "type": "zip",
  3395. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3396. "reference": "8.x-1.6",
  3397. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3398. },
  3399. "require": {
  3400. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3401. "drupal/domain": "^1.0 || ^2.0",
  3402. "drupal/domain_config": "*"
  3403. },
  3404. "type": "drupal-module",
  3405. "extra": {
  3406. "drupal": {
  3407. "version": "8.x-1.6",
  3408. "datestamp": "1726238712",
  3409. "security-coverage": {
  3410. "status": "covered",
  3411. "message": "Covered by Drupal's security advisory policy"
  3412. }
  3413. }
  3414. },
  3415. "notification-url": "https://packages.drupal.org/8/downloads",
  3416. "license": [
  3417. "GPL-2.0+"
  3418. ],
  3419. "authors": [
  3420. {
  3421. "name": "aloknarwaria",
  3422. "homepage": "https://www.drupal.org/user/906640"
  3423. },
  3424. {
  3425. "name": "jeroent",
  3426. "homepage": "https://www.drupal.org/user/2228934"
  3427. },
  3428. {
  3429. "name": "malaynayak",
  3430. "homepage": "https://www.drupal.org/user/3529755"
  3431. }
  3432. ],
  3433. "description": "Basic Site Setting for Domains.",
  3434. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3435. "keywords": [
  3436. "Drupal"
  3437. ],
  3438. "support": {
  3439. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3440. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3441. }
  3442. },
  3443. {
  3444. "name": "drupal/email_registration",
  3445. "version": "1.4.0",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://git.drupalcode.org/project/email_registration.git",
  3449. "reference": "8.x-1.4"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3454. "reference": "8.x-1.4",
  3455. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3456. },
  3457. "require": {
  3458. "drupal/core": "^9.1 || ^10"
  3459. },
  3460. "conflict": {
  3461. "drupal/commerce": "<2.12"
  3462. },
  3463. "require-dev": {
  3464. "drupal/commerce": "^2.0",
  3465. "drupal/token": "*"
  3466. },
  3467. "type": "drupal-module",
  3468. "extra": {
  3469. "drupal": {
  3470. "version": "8.x-1.4",
  3471. "datestamp": "1700548925",
  3472. "security-coverage": {
  3473. "status": "covered",
  3474. "message": "Covered by Drupal's security advisory policy"
  3475. }
  3476. }
  3477. },
  3478. "notification-url": "https://packages.drupal.org/8/downloads",
  3479. "license": [
  3480. "GPL-2.0-or-later"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "Greg Knaddison (greggles)",
  3485. "homepage": "https://www.drupal.org/u/greggles",
  3486. "role": "Maintainer"
  3487. },
  3488. {
  3489. "name": "Andrey Postnikov (andypost)",
  3490. "homepage": "https://www.drupal.org/u/andypost",
  3491. "role": "Maintainer"
  3492. },
  3493. {
  3494. "name": "Chris Herberte",
  3495. "homepage": "https://www.drupal.org/u/chris-herberte",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "Moshe Weitzman (moshe weitzman)",
  3500. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3501. "role": "Maintainer"
  3502. },
  3503. {
  3504. "name": "Grevil",
  3505. "homepage": "https://www.drupal.org/user/3668491"
  3506. },
  3507. {
  3508. "name": "moshe weitzman",
  3509. "homepage": "https://www.drupal.org/user/23"
  3510. }
  3511. ],
  3512. "description": "Allows users to register with an email address as their username.",
  3513. "homepage": "https://www.drupal.org/project/email_registration",
  3514. "support": {
  3515. "source": "https://git.drupalcode.org/project/email_registration",
  3516. "issues": "http://drupal.org/project/issues/email_registration"
  3517. }
  3518. },
  3519. {
  3520. "name": "drupal/entity",
  3521. "version": "1.4.0",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://git.drupalcode.org/project/entity.git",
  3525. "reference": "8.x-1.4"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3530. "reference": "8.x-1.4",
  3531. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3532. },
  3533. "require": {
  3534. "drupal/core": "^9.2|^10.0"
  3535. },
  3536. "type": "drupal-module",
  3537. "extra": {
  3538. "drupal": {
  3539. "version": "8.x-1.4",
  3540. "datestamp": "1661898023",
  3541. "security-coverage": {
  3542. "status": "covered",
  3543. "message": "Covered by Drupal's security advisory policy"
  3544. }
  3545. }
  3546. },
  3547. "notification-url": "https://packages.drupal.org/8/downloads",
  3548. "license": [
  3549. "GPL-2.0-or-later"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "berdir",
  3554. "homepage": "https://www.drupal.org/user/214652"
  3555. },
  3556. {
  3557. "name": "bojanz",
  3558. "homepage": "https://www.drupal.org/user/86106"
  3559. },
  3560. {
  3561. "name": "dawehner",
  3562. "homepage": "https://www.drupal.org/user/99340"
  3563. },
  3564. {
  3565. "name": "dixon_",
  3566. "homepage": "https://www.drupal.org/user/239911"
  3567. },
  3568. {
  3569. "name": "fago",
  3570. "homepage": "https://www.drupal.org/user/16747"
  3571. },
  3572. {
  3573. "name": "mglaman",
  3574. "homepage": "https://www.drupal.org/user/2416470"
  3575. },
  3576. {
  3577. "name": "TR",
  3578. "homepage": "https://www.drupal.org/user/202830"
  3579. }
  3580. ],
  3581. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3582. "homepage": "https://www.drupal.org/project/entity",
  3583. "support": {
  3584. "source": "https://git.drupalcode.org/project/entity",
  3585. "issues": "https://www.drupal.org/project/issues/entity"
  3586. }
  3587. },
  3588. {
  3589. "name": "drupal/field_group",
  3590. "version": "3.6.0",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://git.drupalcode.org/project/field_group.git",
  3594. "reference": "8.x-3.6"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3599. "reference": "8.x-3.6",
  3600. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3601. },
  3602. "require": {
  3603. "drupal/core": "^9.2 || ^10 || ^11"
  3604. },
  3605. "require-dev": {
  3606. "drupal/jquery_ui_accordion": "*"
  3607. },
  3608. "type": "drupal-module",
  3609. "extra": {
  3610. "drupal": {
  3611. "version": "8.x-3.6",
  3612. "datestamp": "1722672510",
  3613. "security-coverage": {
  3614. "status": "covered",
  3615. "message": "Covered by Drupal's security advisory policy"
  3616. }
  3617. }
  3618. },
  3619. "notification-url": "https://packages.drupal.org/8/downloads",
  3620. "license": [
  3621. "GPL-2.0-or-later"
  3622. ],
  3623. "authors": [
  3624. {
  3625. "name": "anybody",
  3626. "homepage": "https://www.drupal.org/user/291091"
  3627. },
  3628. {
  3629. "name": "grevil",
  3630. "homepage": "https://www.drupal.org/user/3668491"
  3631. },
  3632. {
  3633. "name": "hydra",
  3634. "homepage": "https://www.drupal.org/user/647364"
  3635. },
  3636. {
  3637. "name": "joevagyok",
  3638. "homepage": "https://www.drupal.org/user/2876343"
  3639. },
  3640. {
  3641. "name": "jyve",
  3642. "homepage": "https://www.drupal.org/user/591438"
  3643. },
  3644. {
  3645. "name": "nils.destoop",
  3646. "homepage": "https://www.drupal.org/user/361625"
  3647. },
  3648. {
  3649. "name": "Stalski",
  3650. "homepage": "https://www.drupal.org/user/322618"
  3651. },
  3652. {
  3653. "name": "swentel",
  3654. "homepage": "https://www.drupal.org/user/107403"
  3655. }
  3656. ],
  3657. "description": "Provides the field_group module.",
  3658. "homepage": "https://www.drupal.org/project/field_group",
  3659. "support": {
  3660. "source": "https://git.drupalcode.org/project/field_group",
  3661. "issues": "https://www.drupal.org/project/issues/field_group"
  3662. }
  3663. },
  3664. {
  3665. "name": "drupal/filefield_sources",
  3666. "version": "dev-2.0.x",
  3667. "source": {
  3668. "type": "git",
  3669. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3670. "reference": "3905bb005c2f96f7391abcd91004a81f13e83477"
  3671. },
  3672. "require": {
  3673. "drupal/core": "^9.2.0 | ^10"
  3674. },
  3675. "require-dev": {
  3676. "drupal/imce": "^3.0"
  3677. },
  3678. "type": "drupal-module",
  3679. "extra": {
  3680. "branch-alias": {
  3681. "dev-2.0.x": "2.0.x-dev"
  3682. },
  3683. "drupal": {
  3684. "version": "2.0.x-dev",
  3685. "datestamp": "1714083250",
  3686. "security-coverage": {
  3687. "status": "not-covered",
  3688. "message": "Dev releases are not covered by Drupal security advisories."
  3689. }
  3690. }
  3691. },
  3692. "notification-url": "https://packages.drupal.org/8/downloads",
  3693. "license": [
  3694. "GPL-2.0-or-later"
  3695. ],
  3696. "authors": [
  3697. {
  3698. "name": "Nate Lampton (quicksketch)",
  3699. "homepage": "https://www.drupal.org/u/quicksketch",
  3700. "role": "Maintainer"
  3701. },
  3702. {
  3703. "name": "Andrey Khromyshev (profak)",
  3704. "homepage": "https://www.drupal.org/u/profak",
  3705. "role": "Maintainer"
  3706. },
  3707. {
  3708. "name": "David Valdez (gnuget)",
  3709. "homepage": "https://www.drupal.org/u/gnuget",
  3710. "role": "Maintainer"
  3711. },
  3712. {
  3713. "name": "quicksketch",
  3714. "homepage": "https://www.drupal.org/user/35821"
  3715. }
  3716. ],
  3717. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3718. "homepage": "https://www.drupal.org/project/filefield_sources",
  3719. "support": {
  3720. "source": "https://git.drupalcode.org/project/filefield_sources",
  3721. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3722. "irc": "irc://irc.freenode.org/drupal-contribute"
  3723. }
  3724. },
  3725. {
  3726. "name": "drupal/filter_perms",
  3727. "version": "2.0.1",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3731. "reference": "2.0.1"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.1.zip",
  3736. "reference": "2.0.1",
  3737. "shasum": "76949486b0a730c1fdfd9a8d773a3a96d2e0de7b"
  3738. },
  3739. "require": {
  3740. "drupal/core": "^9.0 || ^10.0 || ^11"
  3741. },
  3742. "type": "drupal-module",
  3743. "extra": {
  3744. "drupal": {
  3745. "version": "2.0.1",
  3746. "datestamp": "1722444219",
  3747. "security-coverage": {
  3748. "status": "covered",
  3749. "message": "Covered by Drupal's security advisory policy"
  3750. }
  3751. }
  3752. },
  3753. "notification-url": "https://packages.drupal.org/8/downloads",
  3754. "license": [
  3755. "GPL-2.0+"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "cYu",
  3760. "homepage": "https://www.drupal.org/user/202205"
  3761. },
  3762. {
  3763. "name": "deekayen",
  3764. "homepage": "https://www.drupal.org/user/972"
  3765. },
  3766. {
  3767. "name": "ivavictoria",
  3768. "homepage": "https://www.drupal.org/user/3061533"
  3769. },
  3770. {
  3771. "name": "justcaldwell",
  3772. "homepage": "https://www.drupal.org/user/290069"
  3773. },
  3774. {
  3775. "name": "mgbellaire",
  3776. "homepage": "https://www.drupal.org/user/1831932"
  3777. },
  3778. {
  3779. "name": "willzyx",
  3780. "homepage": "https://www.drupal.org/user/1043862"
  3781. }
  3782. ],
  3783. "description": "Provides role and module filters to simplify the user permissions page.",
  3784. "homepage": "https://www.drupal.org/project/filter_perms",
  3785. "support": {
  3786. "source": "http://cgit.drupalcode.org/filter_perms",
  3787. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3788. }
  3789. },
  3790. {
  3791. "name": "drupal/honeypot",
  3792. "version": "2.1.4",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://git.drupalcode.org/project/honeypot.git",
  3796. "reference": "2.1.4"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.4.zip",
  3801. "reference": "2.1.4",
  3802. "shasum": "adf76c3520c0e458177dbe6d638aa2d6ae40a95b"
  3803. },
  3804. "require": {
  3805. "drupal/core": "^9.2 || ^10"
  3806. },
  3807. "require-dev": {
  3808. "drupal/rules": "^3.x-dev"
  3809. },
  3810. "type": "drupal-module",
  3811. "extra": {
  3812. "drupal": {
  3813. "version": "2.1.4",
  3814. "datestamp": "1723489062",
  3815. "security-coverage": {
  3816. "status": "covered",
  3817. "message": "Covered by Drupal's security advisory policy"
  3818. }
  3819. }
  3820. },
  3821. "notification-url": "https://packages.drupal.org/8/downloads",
  3822. "license": [
  3823. "GPL-2.0-or-later"
  3824. ],
  3825. "authors": [
  3826. {
  3827. "name": "Jeff Geerling",
  3828. "homepage": "https://www.drupal.org/user/389011",
  3829. "email": "geerlingguy@mac.com"
  3830. },
  3831. {
  3832. "name": "Manuel Garcia",
  3833. "homepage": "https://www.drupal.org/user/213194"
  3834. },
  3835. {
  3836. "name": "tr",
  3837. "homepage": "https://www.drupal.org/user/202830"
  3838. },
  3839. {
  3840. "name": "vijaycs85",
  3841. "homepage": "https://www.drupal.org/user/93488"
  3842. }
  3843. ],
  3844. "description": "Mitigates spam form submissions using the honeypot method.",
  3845. "homepage": "https://www.drupal.org/project/honeypot",
  3846. "keywords": [
  3847. "deterrent",
  3848. "form",
  3849. "honeypot",
  3850. "honeytrap",
  3851. "php",
  3852. "spam"
  3853. ],
  3854. "support": {
  3855. "source": "https://git.drupalcode.org/project/honeypot",
  3856. "issues": "https://www.drupal.org/project/issues/honeypot"
  3857. }
  3858. },
  3859. {
  3860. "name": "drupal/jquery_ui",
  3861. "version": "1.7.0",
  3862. "source": {
  3863. "type": "git",
  3864. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3865. "reference": "8.x-1.7"
  3866. },
  3867. "dist": {
  3868. "type": "zip",
  3869. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3870. "reference": "8.x-1.7",
  3871. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3872. },
  3873. "require": {
  3874. "drupal/core": "^9.2 || ^10 || ^11"
  3875. },
  3876. "type": "drupal-module",
  3877. "extra": {
  3878. "drupal": {
  3879. "version": "8.x-1.7",
  3880. "datestamp": "1717002098",
  3881. "security-coverage": {
  3882. "status": "covered",
  3883. "message": "Covered by Drupal's security advisory policy"
  3884. }
  3885. }
  3886. },
  3887. "notification-url": "https://packages.drupal.org/8/downloads",
  3888. "license": [
  3889. "GPL-2.0-or-later"
  3890. ],
  3891. "authors": [
  3892. {
  3893. "name": "bnjmnm",
  3894. "homepage": "https://www.drupal.org/user/2369194"
  3895. },
  3896. {
  3897. "name": "jjeff",
  3898. "homepage": "https://www.drupal.org/user/17190"
  3899. },
  3900. {
  3901. "name": "lauriii",
  3902. "homepage": "https://www.drupal.org/user/1078742"
  3903. },
  3904. {
  3905. "name": "litwol",
  3906. "homepage": "https://www.drupal.org/user/78134"
  3907. },
  3908. {
  3909. "name": "mfb",
  3910. "homepage": "https://www.drupal.org/user/12302"
  3911. },
  3912. {
  3913. "name": "mfer",
  3914. "homepage": "https://www.drupal.org/user/25701"
  3915. },
  3916. {
  3917. "name": "mikelutz",
  3918. "homepage": "https://www.drupal.org/user/2972409"
  3919. },
  3920. {
  3921. "name": "nod_",
  3922. "homepage": "https://www.drupal.org/user/598310"
  3923. },
  3924. {
  3925. "name": "phenaproxima",
  3926. "homepage": "https://www.drupal.org/user/205645"
  3927. },
  3928. {
  3929. "name": "RobLoach",
  3930. "homepage": "https://www.drupal.org/user/61114"
  3931. },
  3932. {
  3933. "name": "sun",
  3934. "homepage": "https://www.drupal.org/user/54136"
  3935. },
  3936. {
  3937. "name": "webchick",
  3938. "homepage": "https://www.drupal.org/user/24967"
  3939. },
  3940. {
  3941. "name": "Wim Leers",
  3942. "homepage": "https://www.drupal.org/user/99777"
  3943. },
  3944. {
  3945. "name": "zrpnr",
  3946. "homepage": "https://www.drupal.org/user/1448368"
  3947. }
  3948. ],
  3949. "description": "Provides jQuery UI library.",
  3950. "homepage": "https://www.drupal.org/project/jquery_ui",
  3951. "support": {
  3952. "source": "https://git.drupalcode.org/project/jquery_ui"
  3953. }
  3954. },
  3955. {
  3956. "name": "drupal/jquery_ui_draggable",
  3957. "version": "2.1.0",
  3958. "source": {
  3959. "type": "git",
  3960. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3961. "reference": "2.1.0"
  3962. },
  3963. "dist": {
  3964. "type": "zip",
  3965. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3966. "reference": "2.1.0",
  3967. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3968. },
  3969. "require": {
  3970. "drupal/core": "^9.2 || ^10 || ^11",
  3971. "drupal/jquery_ui": "^1.7"
  3972. },
  3973. "type": "drupal-module",
  3974. "extra": {
  3975. "drupal": {
  3976. "version": "2.1.0",
  3977. "datestamp": "1717015492",
  3978. "security-coverage": {
  3979. "status": "covered",
  3980. "message": "Covered by Drupal's security advisory policy"
  3981. }
  3982. }
  3983. },
  3984. "notification-url": "https://packages.drupal.org/8/downloads",
  3985. "license": [
  3986. "GPL-2.0-or-later"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "bnjmnm",
  3991. "homepage": "https://www.drupal.org/user/2369194"
  3992. },
  3993. {
  3994. "name": "lauriii",
  3995. "homepage": "https://www.drupal.org/user/1078742"
  3996. },
  3997. {
  3998. "name": "zrpnr",
  3999. "homepage": "https://www.drupal.org/user/1448368"
  4000. }
  4001. ],
  4002. "description": "Provides jQuery UI Draggable library.",
  4003. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4004. "support": {
  4005. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4006. }
  4007. },
  4008. {
  4009. "name": "drupal/jquery_ui_droppable",
  4010. "version": "2.1.0",
  4011. "source": {
  4012. "type": "git",
  4013. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4014. "reference": "2.1.0"
  4015. },
  4016. "dist": {
  4017. "type": "zip",
  4018. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  4019. "reference": "2.1.0",
  4020. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  4021. },
  4022. "require": {
  4023. "drupal/core": "^9.2 || ^10 || ^11",
  4024. "drupal/jquery_ui": "^1.7",
  4025. "drupal/jquery_ui_draggable": "^2.1"
  4026. },
  4027. "type": "drupal-module",
  4028. "extra": {
  4029. "drupal": {
  4030. "version": "2.1.0",
  4031. "datestamp": "1717031391",
  4032. "security-coverage": {
  4033. "status": "covered",
  4034. "message": "Covered by Drupal's security advisory policy"
  4035. }
  4036. }
  4037. },
  4038. "notification-url": "https://packages.drupal.org/8/downloads",
  4039. "license": [
  4040. "GPL-2.0-or-later"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "bnjmnm",
  4045. "homepage": "https://www.drupal.org/user/2369194"
  4046. },
  4047. {
  4048. "name": "lauriii",
  4049. "homepage": "https://www.drupal.org/user/1078742"
  4050. },
  4051. {
  4052. "name": "zrpnr",
  4053. "homepage": "https://www.drupal.org/user/1448368"
  4054. }
  4055. ],
  4056. "description": "Provides jQuery UI Droppable library.",
  4057. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4058. "support": {
  4059. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4060. }
  4061. },
  4062. {
  4063. "name": "drupal/jquery_ui_sortable",
  4064. "version": "2.0.1",
  4065. "source": {
  4066. "type": "git",
  4067. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4068. "reference": "2.0.1"
  4069. },
  4070. "dist": {
  4071. "type": "zip",
  4072. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  4073. "reference": "2.0.1",
  4074. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  4075. },
  4076. "require": {
  4077. "drupal/core": "^9.2 || ^10",
  4078. "drupal/jquery_ui": "^1.5"
  4079. },
  4080. "type": "drupal-module",
  4081. "extra": {
  4082. "drupal": {
  4083. "version": "2.0.1",
  4084. "datestamp": "1694604335",
  4085. "security-coverage": {
  4086. "status": "covered",
  4087. "message": "Covered by Drupal's security advisory policy"
  4088. }
  4089. }
  4090. },
  4091. "notification-url": "https://packages.drupal.org/8/downloads",
  4092. "license": [
  4093. "GPL-2.0-or-later"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "bnjmnm",
  4098. "homepage": "https://www.drupal.org/user/2369194"
  4099. },
  4100. {
  4101. "name": "lauriii",
  4102. "homepage": "https://www.drupal.org/user/1078742"
  4103. },
  4104. {
  4105. "name": "zrpnr",
  4106. "homepage": "https://www.drupal.org/user/1448368"
  4107. }
  4108. ],
  4109. "description": "Provides jQuery UI Sortable library.",
  4110. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4111. "support": {
  4112. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4113. }
  4114. },
  4115. {
  4116. "name": "drupal/js_cookie",
  4117. "version": "1.0.1",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://git.drupalcode.org/project/js_cookie.git",
  4121. "reference": "1.0.1"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  4126. "reference": "1.0.1",
  4127. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  4128. },
  4129. "require": {
  4130. "drupal/core": "^9 || ^10 || ^11"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "drupal": {
  4135. "version": "1.0.1",
  4136. "datestamp": "1693951097",
  4137. "security-coverage": {
  4138. "status": "covered",
  4139. "message": "Covered by Drupal's security advisory policy"
  4140. }
  4141. }
  4142. },
  4143. "notification-url": "https://packages.drupal.org/8/downloads",
  4144. "license": [
  4145. "GPL-2.0-or-later"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Dave Reid",
  4150. "homepage": "https://www.drupal.org/user/53892"
  4151. }
  4152. ],
  4153. "description": "Provides the js-cookie library as a dependency.",
  4154. "homepage": "https://www.drupal.org/project/js_cookie",
  4155. "support": {
  4156. "source": "https://git.drupalcode.org/project/js_cookie"
  4157. }
  4158. },
  4159. {
  4160. "name": "drupal/linkit",
  4161. "version": "6.0.2",
  4162. "source": {
  4163. "type": "git",
  4164. "url": "https://git.drupalcode.org/project/linkit.git",
  4165. "reference": "6.0.2"
  4166. },
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.2.zip",
  4170. "reference": "6.0.2",
  4171. "shasum": "b7d965d122403c0d1cd8b891db3ea56004026804"
  4172. },
  4173. "require": {
  4174. "drupal/core": "^9.4 || ^10.0.0"
  4175. },
  4176. "conflict": {
  4177. "drupal/core": ">=10.1"
  4178. },
  4179. "require-dev": {
  4180. "drupal/ckeditor": "*",
  4181. "drupal/imce": "*"
  4182. },
  4183. "type": "drupal-module",
  4184. "extra": {
  4185. "drupal": {
  4186. "version": "6.0.2",
  4187. "datestamp": "1696865395",
  4188. "security-coverage": {
  4189. "status": "covered",
  4190. "message": "Covered by Drupal's security advisory policy"
  4191. }
  4192. }
  4193. },
  4194. "notification-url": "https://packages.drupal.org/8/downloads",
  4195. "license": [
  4196. "GPL-2.0-or-later"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Emil Stjerneman",
  4201. "homepage": "https://stjerneman.com",
  4202. "email": "emil@stjerneman.com",
  4203. "role": "Maintainer"
  4204. },
  4205. {
  4206. "name": "johnwebdev",
  4207. "homepage": "https://www.drupal.org/user/3331569"
  4208. },
  4209. {
  4210. "name": "mark_fullmer",
  4211. "homepage": "https://www.drupal.org/user/2612816"
  4212. }
  4213. ],
  4214. "description": "Linkit - Enriched linking experience",
  4215. "homepage": "http://drupal.org/project/linkit",
  4216. "support": {
  4217. "source": "http://cgit.drupalcode.org/linkit",
  4218. "issues": "http://drupal.org/project/linkit"
  4219. }
  4220. },
  4221. {
  4222. "name": "drupal/login_emailusername",
  4223. "version": "2.1.0",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4227. "reference": "2.1.0"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4232. "reference": "2.1.0",
  4233. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4234. },
  4235. "require": {
  4236. "drupal/core": "^8.8 || ^9 || ^10"
  4237. },
  4238. "type": "drupal-module",
  4239. "extra": {
  4240. "drupal": {
  4241. "version": "2.1.0",
  4242. "datestamp": "1677072401",
  4243. "security-coverage": {
  4244. "status": "covered",
  4245. "message": "Covered by Drupal's security advisory policy"
  4246. }
  4247. },
  4248. "branch-alias": {
  4249. "dev-8.x-1.x": "8.1.x-dev"
  4250. }
  4251. },
  4252. "notification-url": "https://packages.drupal.org/8/downloads",
  4253. "license": [
  4254. "GPL-2.0-or-later"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "See contributors",
  4259. "homepage": "https://www.drupal.org/node/2820429/committers",
  4260. "role": "contributor"
  4261. },
  4262. {
  4263. "name": "rjjakes",
  4264. "homepage": "https://www.drupal.org/user/3457245"
  4265. },
  4266. {
  4267. "name": "VladimirAus",
  4268. "homepage": "https://www.drupal.org/user/673120"
  4269. }
  4270. ],
  4271. "description": "Login with the email as username.",
  4272. "homepage": "https://drupal.org/project/login_emailusername",
  4273. "support": {
  4274. "source": "https://git.drupalcode.org/project/login_emailusername",
  4275. "issues": "https://drupal.org/project/issues/login_emailusername"
  4276. }
  4277. },
  4278. {
  4279. "name": "drupal/maillog",
  4280. "version": "1.1.0",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://git.drupalcode.org/project/maillog.git",
  4284. "reference": "8.x-1.1"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.1.zip",
  4289. "reference": "8.x-1.1",
  4290. "shasum": "50199b2b37325f4a167a82ec2d1de366cda6f898"
  4291. },
  4292. "require": {
  4293. "drupal/core": "^9 || ^10"
  4294. },
  4295. "type": "drupal-module",
  4296. "extra": {
  4297. "drupal": {
  4298. "version": "8.x-1.1",
  4299. "datestamp": "1685616898",
  4300. "security-coverage": {
  4301. "status": "covered",
  4302. "message": "Covered by Drupal's security advisory policy"
  4303. }
  4304. }
  4305. },
  4306. "notification-url": "https://packages.drupal.org/8/downloads",
  4307. "license": [
  4308. "GPL-2.0-or-later"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "berdir",
  4313. "homepage": "https://www.drupal.org/user/214652"
  4314. },
  4315. {
  4316. "name": "damienmckenna",
  4317. "homepage": "https://www.drupal.org/user/108450"
  4318. },
  4319. {
  4320. "name": "miro_dietiker",
  4321. "homepage": "https://www.drupal.org/user/227761"
  4322. },
  4323. {
  4324. "name": "pluess",
  4325. "homepage": "https://www.drupal.org/user/84659"
  4326. }
  4327. ],
  4328. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4329. "homepage": "https://www.drupal.org/project/maillog",
  4330. "support": {
  4331. "source": "https://git.drupalcode.org/project/maillog"
  4332. }
  4333. },
  4334. {
  4335. "name": "drupal/menu_admin_per_menu",
  4336. "version": "1.5.0",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4340. "reference": "8.x-1.5"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  4345. "reference": "8.x-1.5",
  4346. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  4347. },
  4348. "require": {
  4349. "drupal/core": "^9 || ^10"
  4350. },
  4351. "type": "drupal-module",
  4352. "extra": {
  4353. "drupal": {
  4354. "version": "8.x-1.5",
  4355. "datestamp": "1660918821",
  4356. "security-coverage": {
  4357. "status": "covered",
  4358. "message": "Covered by Drupal's security advisory policy"
  4359. }
  4360. }
  4361. },
  4362. "notification-url": "https://packages.drupal.org/8/downloads",
  4363. "license": [
  4364. "GPL-2.0-or-later"
  4365. ],
  4366. "authors": [
  4367. {
  4368. "name": "anrikun",
  4369. "homepage": "https://www.drupal.org/user/410199"
  4370. },
  4371. {
  4372. "name": "jeroent",
  4373. "homepage": "https://www.drupal.org/user/2228934"
  4374. },
  4375. {
  4376. "name": "jonas139",
  4377. "homepage": "https://www.drupal.org/user/2873401"
  4378. },
  4379. {
  4380. "name": "mkdok",
  4381. "homepage": "https://www.drupal.org/user/3308753"
  4382. }
  4383. ],
  4384. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4385. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4386. "support": {
  4387. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4388. }
  4389. },
  4390. {
  4391. "name": "drupal/metatag",
  4392. "version": "2.0.2",
  4393. "source": {
  4394. "type": "git",
  4395. "url": "https://git.drupalcode.org/project/metatag.git",
  4396. "reference": "2.0.2"
  4397. },
  4398. "dist": {
  4399. "type": "zip",
  4400. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4401. "reference": "2.0.2",
  4402. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4403. },
  4404. "require": {
  4405. "drupal/core": "^9.4 || ^10 || ^11",
  4406. "drupal/token": "^1.0",
  4407. "php": ">=8.0"
  4408. },
  4409. "require-dev": {
  4410. "drupal/hal": "^1 || ^2 || ^9",
  4411. "drupal/metatag_dc": "*",
  4412. "drupal/metatag_open_graph": "*",
  4413. "drupal/page_manager": "^4.0",
  4414. "drupal/redirect": "^1.0",
  4415. "ergebnis/composer-normalize": "*",
  4416. "mpyw/phpunit-patch-serializable-comparison": "*"
  4417. },
  4418. "type": "drupal-module",
  4419. "extra": {
  4420. "drupal": {
  4421. "version": "2.0.2",
  4422. "datestamp": "1722869772",
  4423. "security-coverage": {
  4424. "status": "covered",
  4425. "message": "Covered by Drupal's security advisory policy"
  4426. }
  4427. },
  4428. "composer-normalize": {
  4429. "indent-size": 2,
  4430. "indent-style": "space"
  4431. }
  4432. },
  4433. "notification-url": "https://packages.drupal.org/8/downloads",
  4434. "license": [
  4435. "GPL-2.0-or-later"
  4436. ],
  4437. "authors": [
  4438. {
  4439. "name": "See contributors",
  4440. "homepage": "https://www.drupal.org/node/640498/committers",
  4441. "role": "Developer"
  4442. },
  4443. {
  4444. "name": "dave reid",
  4445. "homepage": "https://www.drupal.org/user/53892"
  4446. }
  4447. ],
  4448. "description": "Manage meta tags for all entities.",
  4449. "homepage": "https://www.drupal.org/project/metatag",
  4450. "keywords": [
  4451. "Drupal",
  4452. "seo"
  4453. ],
  4454. "support": {
  4455. "source": "https://git.drupalcode.org/project/metatag",
  4456. "issues": "https://www.drupal.org/project/issues/metatag",
  4457. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4458. }
  4459. },
  4460. {
  4461. "name": "drupal/pathauto",
  4462. "version": "1.13.0",
  4463. "source": {
  4464. "type": "git",
  4465. "url": "https://git.drupalcode.org/project/pathauto.git",
  4466. "reference": "8.x-1.13"
  4467. },
  4468. "dist": {
  4469. "type": "zip",
  4470. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4471. "reference": "8.x-1.13",
  4472. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4473. },
  4474. "require": {
  4475. "drupal/core": "^9.4 || ^10 || ^11",
  4476. "drupal/ctools": "*",
  4477. "drupal/token": "*"
  4478. },
  4479. "require-dev": {
  4480. "drupal/forum": "*"
  4481. },
  4482. "suggest": {
  4483. "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."
  4484. },
  4485. "type": "drupal-module",
  4486. "extra": {
  4487. "drupal": {
  4488. "version": "8.x-1.13",
  4489. "datestamp": "1722507672",
  4490. "security-coverage": {
  4491. "status": "covered",
  4492. "message": "Covered by Drupal's security advisory policy"
  4493. }
  4494. },
  4495. "drush": {
  4496. "services": {
  4497. "drush.services.yml": "^9 || ^10"
  4498. }
  4499. }
  4500. },
  4501. "notification-url": "https://packages.drupal.org/8/downloads",
  4502. "license": [
  4503. "GPL-2.0-or-later"
  4504. ],
  4505. "authors": [
  4506. {
  4507. "name": "Berdir",
  4508. "homepage": "https://www.drupal.org/user/214652"
  4509. },
  4510. {
  4511. "name": "Dave Reid",
  4512. "homepage": "https://www.drupal.org/user/53892"
  4513. },
  4514. {
  4515. "name": "Freso",
  4516. "homepage": "https://www.drupal.org/user/27504"
  4517. },
  4518. {
  4519. "name": "greggles",
  4520. "homepage": "https://www.drupal.org/user/36762"
  4521. }
  4522. ],
  4523. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4524. "homepage": "https://www.drupal.org/project/pathauto",
  4525. "support": {
  4526. "source": "https://cgit.drupalcode.org/pathauto",
  4527. "issues": "https://www.drupal.org/project/issues/pathauto",
  4528. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4529. }
  4530. },
  4531. {
  4532. "name": "drupal/profile",
  4533. "version": "1.4.0",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://git.drupalcode.org/project/profile.git",
  4537. "reference": "8.x-1.4"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4542. "reference": "8.x-1.4",
  4543. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4544. },
  4545. "require": {
  4546. "drupal/core": "^8.9 || ^9 || ^10",
  4547. "drupal/entity": "^1.0-rc2"
  4548. },
  4549. "require-dev": {
  4550. "drupal/token": "^1.7"
  4551. },
  4552. "type": "drupal-module",
  4553. "extra": {
  4554. "drupal": {
  4555. "version": "8.x-1.4",
  4556. "datestamp": "1652430373",
  4557. "security-coverage": {
  4558. "status": "covered",
  4559. "message": "Covered by Drupal's security advisory policy"
  4560. }
  4561. }
  4562. },
  4563. "notification-url": "https://packages.drupal.org/8/downloads",
  4564. "license": [
  4565. "GPL-2.0-or-later"
  4566. ],
  4567. "authors": [
  4568. {
  4569. "name": "bojanz",
  4570. "homepage": "https://www.drupal.org/user/86106"
  4571. },
  4572. {
  4573. "name": "daggerhart",
  4574. "homepage": "https://www.drupal.org/user/167806"
  4575. },
  4576. {
  4577. "name": "fago",
  4578. "homepage": "https://www.drupal.org/user/16747"
  4579. },
  4580. {
  4581. "name": "jsacksick",
  4582. "homepage": "https://www.drupal.org/user/972218"
  4583. },
  4584. {
  4585. "name": "mglaman",
  4586. "homepage": "https://www.drupal.org/user/2416470"
  4587. },
  4588. {
  4589. "name": "pcambra",
  4590. "homepage": "https://www.drupal.org/user/122101"
  4591. }
  4592. ],
  4593. "description": "Provides configurable user profiles.",
  4594. "homepage": "http://drupal.org/project/profile",
  4595. "support": {
  4596. "source": "https://git.drupalcode.org/project/profile"
  4597. }
  4598. },
  4599. {
  4600. "name": "drupal/redirect",
  4601. "version": "1.10.0",
  4602. "source": {
  4603. "type": "git",
  4604. "url": "https://git.drupalcode.org/project/redirect.git",
  4605. "reference": "8.x-1.10"
  4606. },
  4607. "dist": {
  4608. "type": "zip",
  4609. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4610. "reference": "8.x-1.10",
  4611. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4612. },
  4613. "require": {
  4614. "drupal/core": "^9.2 || ^10 || ^11"
  4615. },
  4616. "type": "drupal-module",
  4617. "extra": {
  4618. "drupal": {
  4619. "version": "8.x-1.10",
  4620. "datestamp": "1723277641",
  4621. "security-coverage": {
  4622. "status": "covered",
  4623. "message": "Covered by Drupal's security advisory policy"
  4624. }
  4625. }
  4626. },
  4627. "notification-url": "https://packages.drupal.org/8/downloads",
  4628. "license": [
  4629. "GPL-2.0-or-later"
  4630. ],
  4631. "authors": [
  4632. {
  4633. "name": "Berdir",
  4634. "homepage": "https://www.drupal.org/user/214652"
  4635. },
  4636. {
  4637. "name": "dave reid",
  4638. "homepage": "https://www.drupal.org/user/53892"
  4639. },
  4640. {
  4641. "name": "Kristen Pol",
  4642. "homepage": "https://www.drupal.org/user/8389"
  4643. },
  4644. {
  4645. "name": "pifagor",
  4646. "homepage": "https://www.drupal.org/user/2375692"
  4647. }
  4648. ],
  4649. "description": "Allows users to redirect from old URLs to new URLs.",
  4650. "homepage": "https://www.drupal.org/project/redirect",
  4651. "support": {
  4652. "source": "https://git.drupalcode.org/project/redirect"
  4653. }
  4654. },
  4655. {
  4656. "name": "drupal/redis",
  4657. "version": "1.8.0",
  4658. "source": {
  4659. "type": "git",
  4660. "url": "https://git.drupalcode.org/project/redis.git",
  4661. "reference": "8.x-1.8"
  4662. },
  4663. "dist": {
  4664. "type": "zip",
  4665. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4666. "reference": "8.x-1.8",
  4667. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4668. },
  4669. "require": {
  4670. "drupal/core": "^9.3 || ^10 || ^11"
  4671. },
  4672. "suggest": {
  4673. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4674. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4675. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4676. },
  4677. "type": "drupal-module",
  4678. "extra": {
  4679. "drupal": {
  4680. "version": "8.x-1.8",
  4681. "datestamp": "1723934771",
  4682. "security-coverage": {
  4683. "status": "covered",
  4684. "message": "Covered by Drupal's security advisory policy"
  4685. }
  4686. }
  4687. },
  4688. "autoload": {
  4689. "psr-4": {
  4690. "Drupal\\redis\\": "src"
  4691. }
  4692. },
  4693. "notification-url": "https://packages.drupal.org/8/downloads",
  4694. "license": [
  4695. "GPL-2.0-or-later"
  4696. ],
  4697. "authors": [
  4698. {
  4699. "name": "berdir",
  4700. "homepage": "https://www.drupal.org/user/214652"
  4701. },
  4702. {
  4703. "name": "greg.1.anderson",
  4704. "homepage": "https://www.drupal.org/user/438598"
  4705. },
  4706. {
  4707. "name": "kporras07",
  4708. "homepage": "https://www.drupal.org/user/1349780"
  4709. },
  4710. {
  4711. "name": "pounard",
  4712. "homepage": "https://www.drupal.org/user/240164"
  4713. }
  4714. ],
  4715. "description": "Integration of Drupal with the Redis key-value store.",
  4716. "homepage": "https://www.drupal.org/project/redis",
  4717. "support": {
  4718. "source": "https://git.drupalcode.org/project/redis"
  4719. }
  4720. },
  4721. {
  4722. "name": "drupal/restui",
  4723. "version": "1.21.0",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://git.drupalcode.org/project/restui.git",
  4727. "reference": "8.x-1.21"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4732. "reference": "8.x-1.21",
  4733. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4734. },
  4735. "require": {
  4736. "drupal/core": "^8.7.7 || ^9 || ^10"
  4737. },
  4738. "type": "drupal-module",
  4739. "extra": {
  4740. "drupal": {
  4741. "version": "8.x-1.21",
  4742. "datestamp": "1659086914",
  4743. "security-coverage": {
  4744. "status": "covered",
  4745. "message": "Covered by Drupal's security advisory policy"
  4746. }
  4747. }
  4748. },
  4749. "notification-url": "https://packages.drupal.org/8/downloads",
  4750. "license": [
  4751. "GPL-2.0-or-later"
  4752. ],
  4753. "authors": [
  4754. {
  4755. "name": "-enzo-",
  4756. "homepage": "https://www.drupal.org/user/294937"
  4757. },
  4758. {
  4759. "name": "clemens.tolboom",
  4760. "homepage": "https://www.drupal.org/user/125814"
  4761. },
  4762. {
  4763. "name": "juampynr",
  4764. "homepage": "https://www.drupal.org/user/682736"
  4765. },
  4766. {
  4767. "name": "kamkejj",
  4768. "homepage": "https://www.drupal.org/user/81043"
  4769. },
  4770. {
  4771. "name": "vipin.mittal18",
  4772. "homepage": "https://www.drupal.org/user/319716"
  4773. }
  4774. ],
  4775. "description": "Provides a user interface to manage REST resources.",
  4776. "homepage": "https://www.drupal.org/project/restui",
  4777. "support": {
  4778. "source": "https://git.drupalcode.org/project/restui"
  4779. }
  4780. },
  4781. {
  4782. "name": "drupal/search_api",
  4783. "version": "1.30.0",
  4784. "source": {
  4785. "type": "git",
  4786. "url": "https://git.drupalcode.org/project/search_api.git",
  4787. "reference": "8.x-1.30"
  4788. },
  4789. "dist": {
  4790. "type": "zip",
  4791. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  4792. "reference": "8.x-1.30",
  4793. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  4794. },
  4795. "require": {
  4796. "drupal/core": "^9.3 || ^10.0"
  4797. },
  4798. "conflict": {
  4799. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4800. },
  4801. "require-dev": {
  4802. "drupal/language_fallback_fix": "@dev",
  4803. "drupal/search_api_autocomplete": "@dev",
  4804. "drupal/search_api_db": "*"
  4805. },
  4806. "suggest": {
  4807. "drupal/facets": "Adds the ability to create faceted searches.",
  4808. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4809. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4810. },
  4811. "type": "drupal-module",
  4812. "extra": {
  4813. "drupal": {
  4814. "version": "8.x-1.30",
  4815. "datestamp": "1700925904",
  4816. "security-coverage": {
  4817. "status": "covered",
  4818. "message": "Covered by Drupal's security advisory policy"
  4819. }
  4820. },
  4821. "drush": {
  4822. "services": {
  4823. "drush.services.yml": "^9 || ^10 || ^11"
  4824. }
  4825. }
  4826. },
  4827. "notification-url": "https://packages.drupal.org/8/downloads",
  4828. "license": [
  4829. "GPL-2.0-or-later"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "Thomas Seidl",
  4834. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4835. },
  4836. {
  4837. "name": "Nick Veenhof",
  4838. "homepage": "https://www.drupal.org/u/nick_vh"
  4839. },
  4840. {
  4841. "name": "See other contributors",
  4842. "homepage": "https://www.drupal.org/node/790418/committers"
  4843. }
  4844. ],
  4845. "description": "Provides a generic framework for modules offering search capabilities.",
  4846. "homepage": "https://www.drupal.org/project/search_api",
  4847. "support": {
  4848. "source": "https://git.drupalcode.org/project/search_api",
  4849. "issues": "https://www.drupal.org/project/issues/search_api",
  4850. "irc": "irc://irc.freenode.org/drupal-search-api"
  4851. }
  4852. },
  4853. {
  4854. "name": "drupal/seven",
  4855. "version": "1.0.0",
  4856. "source": {
  4857. "type": "git",
  4858. "url": "https://git.drupalcode.org/project/seven.git",
  4859. "reference": "1.0.0"
  4860. },
  4861. "dist": {
  4862. "type": "zip",
  4863. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4864. "reference": "1.0.0",
  4865. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4866. },
  4867. "require": {
  4868. "drupal/core": "^9 || ^10"
  4869. },
  4870. "type": "drupal-theme",
  4871. "extra": {
  4872. "drupal": {
  4873. "version": "1.0.0",
  4874. "datestamp": "1683652106",
  4875. "security-coverage": {
  4876. "status": "covered",
  4877. "message": "Covered by Drupal's security advisory policy"
  4878. }
  4879. }
  4880. },
  4881. "notification-url": "https://packages.drupal.org/8/downloads",
  4882. "license": [
  4883. "GPL-2.0-or-later"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "bnjmnm",
  4888. "homepage": "https://www.drupal.org/user/2369194"
  4889. },
  4890. {
  4891. "name": "lauriii",
  4892. "homepage": "https://www.drupal.org/user/1078742"
  4893. },
  4894. {
  4895. "name": "mcrittenden",
  4896. "homepage": "https://www.drupal.org/user/420631"
  4897. },
  4898. {
  4899. "name": "mrfelton",
  4900. "homepage": "https://www.drupal.org/user/305669"
  4901. },
  4902. {
  4903. "name": "TravisCarden",
  4904. "homepage": "https://www.drupal.org/user/236758"
  4905. }
  4906. ],
  4907. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4908. "homepage": "https://www.drupal.org/project/seven",
  4909. "support": {
  4910. "source": "https://git.drupalcode.org/project/seven"
  4911. }
  4912. },
  4913. {
  4914. "name": "drupal/simple_sitemap",
  4915. "version": "4.1.9",
  4916. "source": {
  4917. "type": "git",
  4918. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4919. "reference": "4.1.9"
  4920. },
  4921. "dist": {
  4922. "type": "zip",
  4923. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.1.9.zip",
  4924. "reference": "4.1.9",
  4925. "shasum": "d86d90408b334cd7470ea631e3be5acca2103377"
  4926. },
  4927. "require": {
  4928. "drupal/core": "^9.3 || ^10",
  4929. "ext-xmlwriter": "*"
  4930. },
  4931. "type": "drupal-module",
  4932. "extra": {
  4933. "drupal": {
  4934. "version": "4.1.9",
  4935. "datestamp": "1712441608",
  4936. "security-coverage": {
  4937. "status": "covered",
  4938. "message": "Covered by Drupal's security advisory policy"
  4939. }
  4940. },
  4941. "drush": {
  4942. "services": {
  4943. "drush.services.yml": ">=9"
  4944. }
  4945. }
  4946. },
  4947. "notification-url": "https://packages.drupal.org/8/downloads",
  4948. "license": [
  4949. "GPL-2.0-or-later"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "Pawel Ginalski (gbyte)",
  4954. "homepage": "https://www.drupal.org/u/gbyte",
  4955. "email": "contact@gbyte.dev",
  4956. "role": "Maintainer"
  4957. },
  4958. {
  4959. "name": "walkingdexter",
  4960. "homepage": "https://www.drupal.org/user/3251330"
  4961. }
  4962. ],
  4963. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4964. "homepage": "https://drupal.org/project/simple_sitemap",
  4965. "support": {
  4966. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4967. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4968. }
  4969. },
  4970. {
  4971. "name": "drupal/stable",
  4972. "version": "2.0.1",
  4973. "source": {
  4974. "type": "git",
  4975. "url": "https://git.drupalcode.org/project/stable.git",
  4976. "reference": "2.0.1"
  4977. },
  4978. "dist": {
  4979. "type": "zip",
  4980. "url": "https://ftp.drupal.org/files/projects/stable-2.0.1.zip",
  4981. "reference": "2.0.1",
  4982. "shasum": "5da92926e7ce9e08795f62594d70ee7187a888a9"
  4983. },
  4984. "require": {
  4985. "drupal/core": "^9 || ^10"
  4986. },
  4987. "type": "drupal-theme",
  4988. "extra": {
  4989. "drupal": {
  4990. "version": "2.0.1",
  4991. "datestamp": "1721132952",
  4992. "security-coverage": {
  4993. "status": "covered",
  4994. "message": "Covered by Drupal's security advisory policy"
  4995. }
  4996. }
  4997. },
  4998. "notification-url": "https://packages.drupal.org/8/downloads",
  4999. "license": [
  5000. "GPL-2.0-or-later"
  5001. ],
  5002. "authors": [
  5003. {
  5004. "name": "bnjmnm",
  5005. "homepage": "https://www.drupal.org/user/2369194"
  5006. },
  5007. {
  5008. "name": "lauriii",
  5009. "homepage": "https://www.drupal.org/user/1078742"
  5010. },
  5011. {
  5012. "name": "Rajeshreeputra",
  5013. "homepage": "https://www.drupal.org/user/3418561"
  5014. },
  5015. {
  5016. "name": "star-szr",
  5017. "homepage": "https://www.drupal.org/user/1167326"
  5018. }
  5019. ],
  5020. "description": "A base theme using Drupal 8.0.0's core markup and CSS.",
  5021. "homepage": "https://www.drupal.org/project/stable",
  5022. "support": {
  5023. "source": "https://git.drupalcode.org/project/stable"
  5024. }
  5025. },
  5026. {
  5027. "name": "drupal/synonyms",
  5028. "version": "2.1.4",
  5029. "source": {
  5030. "type": "git",
  5031. "url": "https://git.drupalcode.org/project/synonyms.git",
  5032. "reference": "2.1.4"
  5033. },
  5034. "dist": {
  5035. "type": "zip",
  5036. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  5037. "reference": "2.1.4",
  5038. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  5039. },
  5040. "require": {
  5041. "drupal/core": "^9 || ^10 || ^11"
  5042. },
  5043. "require-dev": {
  5044. "drupal/synonyms_list_field": "*"
  5045. },
  5046. "type": "drupal-module",
  5047. "extra": {
  5048. "drupal": {
  5049. "version": "2.1.4",
  5050. "datestamp": "1723069842",
  5051. "security-coverage": {
  5052. "status": "covered",
  5053. "message": "Covered by Drupal's security advisory policy"
  5054. }
  5055. }
  5056. },
  5057. "notification-url": "https://packages.drupal.org/8/downloads",
  5058. "license": [
  5059. "GPL-2.0-or-later"
  5060. ],
  5061. "authors": [
  5062. {
  5063. "name": "Bojan Zivanovic",
  5064. "homepage": "https://www.drupal.org/u/bojanz",
  5065. "role": "Author and D5, D6 and D7 versions developer."
  5066. },
  5067. {
  5068. "name": "Alex Trosenko",
  5069. "homepage": "https://www.drupal.org/u/bucefal91",
  5070. "role": "D7 and D8 versions developer."
  5071. },
  5072. {
  5073. "name": "Duro Arezina",
  5074. "homepage": "https://www.drupal.org/u/devad",
  5075. "role": "D8+ versions maintenance"
  5076. },
  5077. {
  5078. "name": "See other contributors",
  5079. "homepage": "https://www.drupal.org/node/148775/committers"
  5080. }
  5081. ],
  5082. "description": "Provides synonyms feature for all entities.",
  5083. "homepage": "https://www.drupal.org/project/synonyms",
  5084. "support": {
  5085. "source": "https://git.drupalcode.org/project/synonyms",
  5086. "issues": "https://www.drupal.org/project/issues/synonyms"
  5087. }
  5088. },
  5089. {
  5090. "name": "drupal/token",
  5091. "version": "1.15.0",
  5092. "source": {
  5093. "type": "git",
  5094. "url": "https://git.drupalcode.org/project/token.git",
  5095. "reference": "8.x-1.15"
  5096. },
  5097. "dist": {
  5098. "type": "zip",
  5099. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  5100. "reference": "8.x-1.15",
  5101. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  5102. },
  5103. "require": {
  5104. "drupal/core": "^9.2 || ^10 || ^11"
  5105. },
  5106. "require-dev": {
  5107. "drupal/book": "*"
  5108. },
  5109. "type": "drupal-module",
  5110. "extra": {
  5111. "drupal": {
  5112. "version": "8.x-1.15",
  5113. "datestamp": "1722206211",
  5114. "security-coverage": {
  5115. "status": "covered",
  5116. "message": "Covered by Drupal's security advisory policy"
  5117. }
  5118. },
  5119. "drush": {
  5120. "services": {
  5121. "drush.services.yml": ">=9"
  5122. }
  5123. }
  5124. },
  5125. "notification-url": "https://packages.drupal.org/8/downloads",
  5126. "license": [
  5127. "GPL-2.0-or-later"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "Berdir",
  5132. "homepage": "https://www.drupal.org/user/214652"
  5133. },
  5134. {
  5135. "name": "Dave Reid",
  5136. "homepage": "https://www.drupal.org/user/53892"
  5137. },
  5138. {
  5139. "name": "eaton",
  5140. "homepage": "https://www.drupal.org/user/16496"
  5141. },
  5142. {
  5143. "name": "fago",
  5144. "homepage": "https://www.drupal.org/user/16747"
  5145. },
  5146. {
  5147. "name": "greggles",
  5148. "homepage": "https://www.drupal.org/user/36762"
  5149. },
  5150. {
  5151. "name": "mikeryan",
  5152. "homepage": "https://www.drupal.org/user/4420"
  5153. }
  5154. ],
  5155. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5156. "homepage": "https://www.drupal.org/project/token",
  5157. "support": {
  5158. "source": "https://git.drupalcode.org/project/token"
  5159. }
  5160. },
  5161. {
  5162. "name": "drupal/translation_views",
  5163. "version": "1.0.0-alpha11",
  5164. "source": {
  5165. "type": "git",
  5166. "url": "https://git.drupalcode.org/project/translation_views.git",
  5167. "reference": "8.x-1.0-alpha11"
  5168. },
  5169. "dist": {
  5170. "type": "zip",
  5171. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5172. "reference": "8.x-1.0-alpha11",
  5173. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5174. },
  5175. "require": {
  5176. "drupal/core": "^8.8 || ^9 || ^10"
  5177. },
  5178. "require-dev": {
  5179. "drupal/translators_content": "^1.0@alpha"
  5180. },
  5181. "type": "drupal-module",
  5182. "extra": {
  5183. "drupal": {
  5184. "version": "8.x-1.0-alpha11",
  5185. "datestamp": "1679660668",
  5186. "security-coverage": {
  5187. "status": "not-covered",
  5188. "message": "Project has not opted into security advisory coverage!"
  5189. }
  5190. }
  5191. },
  5192. "notification-url": "https://packages.drupal.org/8/downloads",
  5193. "license": [
  5194. "GPL-2.0-or-later"
  5195. ],
  5196. "authors": [
  5197. {
  5198. "name": "matsbla",
  5199. "homepage": "https://www.drupal.org/user/2325394"
  5200. },
  5201. {
  5202. "name": "vlad.dancer",
  5203. "homepage": "https://www.drupal.org/user/903844"
  5204. }
  5205. ],
  5206. "description": "Create customized lists and queries of translations from your database.",
  5207. "homepage": "https://www.drupal.org/project/translation_views",
  5208. "support": {
  5209. "source": "https://git.drupalcode.org/project/translation_views"
  5210. }
  5211. },
  5212. {
  5213. "name": "drupal/upgrade_status",
  5214. "version": "3.19.0",
  5215. "source": {
  5216. "type": "git",
  5217. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5218. "reference": "8.x-3.19"
  5219. },
  5220. "dist": {
  5221. "type": "zip",
  5222. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5223. "reference": "8.x-3.19",
  5224. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5225. },
  5226. "require": {
  5227. "drupal/core": "^8 || ^9",
  5228. "mathieuviossat/arraytotexttable": "~1.0.0",
  5229. "mglaman/phpstan-drupal": "^1.0.0",
  5230. "nikic/php-parser": "^4.0.0",
  5231. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5232. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5233. "webflo/drupal-finder": "^1.2"
  5234. },
  5235. "type": "drupal-module",
  5236. "extra": {
  5237. "drupal": {
  5238. "version": "8.x-3.19",
  5239. "datestamp": "1678815320",
  5240. "security-coverage": {
  5241. "status": "covered",
  5242. "message": "Covered by Drupal's security advisory policy"
  5243. }
  5244. },
  5245. "drush": {
  5246. "services": {
  5247. "drush.services.yml": "^9 || ^10"
  5248. }
  5249. }
  5250. },
  5251. "notification-url": "https://packages.drupal.org/8/downloads",
  5252. "license": [
  5253. "GPL-2.0-or-later"
  5254. ],
  5255. "authors": [
  5256. {
  5257. "name": "Gábor Hojtsy",
  5258. "homepage": "https://www.drupal.org/user/4166"
  5259. }
  5260. ],
  5261. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5262. "homepage": "http://drupal.org/project/upgrade_status",
  5263. "support": {
  5264. "source": "https://git.drupalcode.org/project/upgrade_status"
  5265. }
  5266. },
  5267. {
  5268. "name": "drupal/views_bulk_edit",
  5269. "version": "2.9.0",
  5270. "source": {
  5271. "type": "git",
  5272. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5273. "reference": "8.x-2.9"
  5274. },
  5275. "dist": {
  5276. "type": "zip",
  5277. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  5278. "reference": "8.x-2.9",
  5279. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  5280. },
  5281. "require": {
  5282. "drupal/core": "^9.4 || ^10"
  5283. },
  5284. "require-dev": {
  5285. "drupal/views_bulk_operations": "~4.2.4"
  5286. },
  5287. "suggest": {
  5288. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5289. },
  5290. "type": "drupal-module",
  5291. "extra": {
  5292. "drupal": {
  5293. "version": "8.x-2.9",
  5294. "datestamp": "1690222256",
  5295. "security-coverage": {
  5296. "status": "covered",
  5297. "message": "Covered by Drupal's security advisory policy"
  5298. }
  5299. }
  5300. },
  5301. "notification-url": "https://packages.drupal.org/8/downloads",
  5302. "license": [
  5303. "GPL-2.0+"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Marcin Grabias",
  5308. "homepage": "https://www.drupal.org/u/graber"
  5309. },
  5310. {
  5311. "name": "benjy",
  5312. "homepage": "https://www.drupal.org/user/1852732"
  5313. },
  5314. {
  5315. "name": "graber",
  5316. "homepage": "https://www.drupal.org/user/1599440"
  5317. },
  5318. {
  5319. "name": "grevil",
  5320. "homepage": "https://www.drupal.org/user/3668491"
  5321. },
  5322. {
  5323. "name": "joseph.olstad",
  5324. "homepage": "https://www.drupal.org/user/1321830"
  5325. }
  5326. ],
  5327. "description": "Allows bulk edition of entity field values.",
  5328. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5329. "support": {
  5330. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5331. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5332. }
  5333. },
  5334. {
  5335. "name": "drupal/views_bulk_operations",
  5336. "version": "4.2.7",
  5337. "source": {
  5338. "type": "git",
  5339. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5340. "reference": "4.2.7"
  5341. },
  5342. "dist": {
  5343. "type": "zip",
  5344. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.7.zip",
  5345. "reference": "4.2.7",
  5346. "shasum": "25c9fa531ac49664a361fdd2202eec0a6e53bc61"
  5347. },
  5348. "require": {
  5349. "drupal/core": "^9.4 || ^10 || ^11",
  5350. "php": ">=7.4.0"
  5351. },
  5352. "require-dev": {
  5353. "drush/drush": "^12"
  5354. },
  5355. "suggest": {
  5356. "drush/drush": "^11 || ^12"
  5357. },
  5358. "type": "drupal-module",
  5359. "extra": {
  5360. "drupal": {
  5361. "version": "4.2.7",
  5362. "datestamp": "1717665214",
  5363. "security-coverage": {
  5364. "status": "covered",
  5365. "message": "Covered by Drupal's security advisory policy"
  5366. }
  5367. },
  5368. "drush": {
  5369. "services": {
  5370. "drush.services.yml": "^10 || ^11"
  5371. }
  5372. }
  5373. },
  5374. "notification-url": "https://packages.drupal.org/8/downloads",
  5375. "license": [
  5376. "GPL-2.0-or-later"
  5377. ],
  5378. "authors": [
  5379. {
  5380. "name": "Marcin Grabias",
  5381. "homepage": "https://www.drupal.org/u/graber"
  5382. },
  5383. {
  5384. "name": "Graber",
  5385. "homepage": "https://www.drupal.org/user/1599440"
  5386. },
  5387. {
  5388. "name": "joelpittet",
  5389. "homepage": "https://www.drupal.org/user/160302"
  5390. }
  5391. ],
  5392. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5393. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5394. "support": {
  5395. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5396. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5397. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5398. }
  5399. },
  5400. {
  5401. "name": "drupal/workflow",
  5402. "version": "1.8.0",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://git.drupalcode.org/project/workflow.git",
  5406. "reference": "8.x-1.8"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5411. "reference": "8.x-1.8",
  5412. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5413. },
  5414. "require": {
  5415. "drupal/core": ">=8.8"
  5416. },
  5417. "type": "drupal-module",
  5418. "extra": {
  5419. "drupal": {
  5420. "version": "8.x-1.8",
  5421. "datestamp": "1717579628",
  5422. "security-coverage": {
  5423. "status": "covered",
  5424. "message": "Covered by Drupal's security advisory policy"
  5425. }
  5426. }
  5427. },
  5428. "notification-url": "https://packages.drupal.org/8/downloads",
  5429. "license": [
  5430. "GPL-2.0-or-later"
  5431. ],
  5432. "authors": [
  5433. {
  5434. "name": "Bastlynn",
  5435. "homepage": "https://www.drupal.org/user/275249"
  5436. },
  5437. {
  5438. "name": "eaton",
  5439. "homepage": "https://www.drupal.org/user/16496"
  5440. },
  5441. {
  5442. "name": "Heine",
  5443. "homepage": "https://www.drupal.org/user/17943"
  5444. },
  5445. {
  5446. "name": "JacobSingh",
  5447. "homepage": "https://www.drupal.org/user/68912"
  5448. },
  5449. {
  5450. "name": "johnv",
  5451. "homepage": "https://www.drupal.org/user/591042"
  5452. },
  5453. {
  5454. "name": "jvandyk",
  5455. "homepage": "https://www.drupal.org/user/2375"
  5456. },
  5457. {
  5458. "name": "mfredrickson",
  5459. "homepage": "https://www.drupal.org/user/31994"
  5460. },
  5461. {
  5462. "name": "NancyDru",
  5463. "homepage": "https://www.drupal.org/user/101412"
  5464. },
  5465. {
  5466. "name": "q0rban",
  5467. "homepage": "https://www.drupal.org/user/31022"
  5468. }
  5469. ],
  5470. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5471. "homepage": "https://www.drupal.org/project/workflow",
  5472. "support": {
  5473. "source": "https://git.drupalcode.org/project/workflow"
  5474. }
  5475. },
  5476. {
  5477. "name": "drush/drush",
  5478. "version": "10.6.2",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://github.com/drush-ops/drush.git",
  5482. "reference": "0a570a16ec63259eb71195aba5feab532318b337"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337",
  5487. "reference": "0a570a16ec63259eb71195aba5feab532318b337",
  5488. "shasum": ""
  5489. },
  5490. "require": {
  5491. "chi-teck/drupal-code-generator": "^1.32.1",
  5492. "composer/semver": "^1.4 || ^3",
  5493. "consolidation/config": "^1.2",
  5494. "consolidation/filter-via-dot-access-data": "^1",
  5495. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  5496. "consolidation/site-alias": "^3.0.0@stable",
  5497. "consolidation/site-process": "^2.1 || ^4",
  5498. "enlightn/security-checker": "^1",
  5499. "ext-dom": "*",
  5500. "grasmash/yaml-expander": "^1.1.1",
  5501. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5502. "league/container": "^2.5 || ^3.4",
  5503. "php": ">=7.1.3",
  5504. "psr/log": "~1.0",
  5505. "psy/psysh": ">=0.6 <0.11",
  5506. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5507. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5508. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5509. "symfony/yaml": "^3.4 || ^4.0",
  5510. "webflo/drupal-finder": "^1.2",
  5511. "webmozart/path-util": "^2.1.0"
  5512. },
  5513. "conflict": {
  5514. "drupal/migrate_run": "*",
  5515. "drupal/migrate_tools": "<= 5"
  5516. },
  5517. "require-dev": {
  5518. "composer/installers": "^1.7",
  5519. "cweagans/composer-patches": "~1.0",
  5520. "david-garcia/phpwhois": "4.3.0",
  5521. "drupal/alinks": "1.0.0",
  5522. "drupal/core-recommended": "^8.8",
  5523. "phpunit/phpunit": ">=7.5.20",
  5524. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5525. "vlucas/phpdotenv": "^2.4",
  5526. "yoast/phpunit-polyfills": "^0.2.0"
  5527. },
  5528. "bin": [
  5529. "drush"
  5530. ],
  5531. "type": "library",
  5532. "extra": {
  5533. "installer-paths": {
  5534. "sut/core": [
  5535. "type:drupal-core"
  5536. ],
  5537. "sut/libraries/{$name}": [
  5538. "type:drupal-library"
  5539. ],
  5540. "sut/modules/unish/{$name}": [
  5541. "drupal/devel"
  5542. ],
  5543. "sut/themes/unish/{$name}": [
  5544. "drupal/empty_theme"
  5545. ],
  5546. "sut/modules/contrib/{$name}": [
  5547. "type:drupal-module"
  5548. ],
  5549. "sut/profiles/contrib/{$name}": [
  5550. "type:drupal-profile"
  5551. ],
  5552. "sut/themes/contrib/{$name}": [
  5553. "type:drupal-theme"
  5554. ],
  5555. "sut/drush/contrib/{$name}": [
  5556. "type:drupal-drush"
  5557. ]
  5558. }
  5559. },
  5560. "autoload": {
  5561. "psr-4": {
  5562. "Drush\\": "src/",
  5563. "Drush\\Internal\\": "src/internal-forks"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "GPL-2.0-or-later"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Moshe Weitzman",
  5573. "email": "weitzman@tejasa.com"
  5574. },
  5575. {
  5576. "name": "Owen Barton",
  5577. "email": "drupal@owenbarton.com"
  5578. },
  5579. {
  5580. "name": "Greg Anderson",
  5581. "email": "greg.1.anderson@greenknowe.org"
  5582. },
  5583. {
  5584. "name": "Jonathan Araña Cruz",
  5585. "email": "jonhattan@faita.net"
  5586. },
  5587. {
  5588. "name": "Jonathan Hedstrom",
  5589. "email": "jhedstrom@gmail.com"
  5590. },
  5591. {
  5592. "name": "Christopher Gervais",
  5593. "email": "chris@ergonlogic.com"
  5594. },
  5595. {
  5596. "name": "Dave Reid",
  5597. "email": "dave@davereid.net"
  5598. },
  5599. {
  5600. "name": "Damian Lee",
  5601. "email": "damiankloip@googlemail.com"
  5602. }
  5603. ],
  5604. "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.",
  5605. "homepage": "http://www.drush.org",
  5606. "support": {
  5607. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5608. "irc": "irc://irc.freenode.org/drush",
  5609. "issues": "https://github.com/drush-ops/drush/issues",
  5610. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5611. "source": "https://github.com/drush-ops/drush/tree/10.6.2"
  5612. },
  5613. "funding": [
  5614. {
  5615. "url": "https://github.com/weitzman",
  5616. "type": "github"
  5617. }
  5618. ],
  5619. "time": "2021-12-15T17:09:54+00:00"
  5620. },
  5621. {
  5622. "name": "egulias/email-validator",
  5623. "version": "3.2.6",
  5624. "source": {
  5625. "type": "git",
  5626. "url": "https://github.com/egulias/EmailValidator.git",
  5627. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  5628. },
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5632. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5633. "shasum": ""
  5634. },
  5635. "require": {
  5636. "doctrine/lexer": "^1.2|^2",
  5637. "php": ">=7.2",
  5638. "symfony/polyfill-intl-idn": "^1.15"
  5639. },
  5640. "require-dev": {
  5641. "phpunit/phpunit": "^8.5.8|^9.3.3",
  5642. "vimeo/psalm": "^4"
  5643. },
  5644. "suggest": {
  5645. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5646. },
  5647. "type": "library",
  5648. "extra": {
  5649. "branch-alias": {
  5650. "dev-master": "3.0.x-dev"
  5651. }
  5652. },
  5653. "autoload": {
  5654. "psr-4": {
  5655. "Egulias\\EmailValidator\\": "src"
  5656. }
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Eduardo Gulias Davis"
  5665. }
  5666. ],
  5667. "description": "A library for validating emails against several RFCs",
  5668. "homepage": "https://github.com/egulias/EmailValidator",
  5669. "keywords": [
  5670. "email",
  5671. "emailvalidation",
  5672. "emailvalidator",
  5673. "validation",
  5674. "validator"
  5675. ],
  5676. "support": {
  5677. "issues": "https://github.com/egulias/EmailValidator/issues",
  5678. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  5679. },
  5680. "funding": [
  5681. {
  5682. "url": "https://github.com/egulias",
  5683. "type": "github"
  5684. }
  5685. ],
  5686. "time": "2023-06-01T07:04:22+00:00"
  5687. },
  5688. {
  5689. "name": "enlightn/security-checker",
  5690. "version": "v1.11.0",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://github.com/enlightn/security-checker.git",
  5694. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2"
  5695. },
  5696. "dist": {
  5697. "type": "zip",
  5698. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5699. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5700. "shasum": ""
  5701. },
  5702. "require": {
  5703. "ext-json": "*",
  5704. "guzzlehttp/guzzle": "^6.3|^7.0",
  5705. "php": ">=5.6",
  5706. "symfony/console": "^3.4|^4|^5|^6|^7",
  5707. "symfony/finder": "^3|^4|^5|^6|^7",
  5708. "symfony/process": "^3.4|^4|^5|^6|^7",
  5709. "symfony/yaml": "^3.4|^4|^5|^6|^7"
  5710. },
  5711. "require-dev": {
  5712. "ext-zip": "*",
  5713. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  5714. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  5715. },
  5716. "bin": [
  5717. "security-checker"
  5718. ],
  5719. "type": "library",
  5720. "autoload": {
  5721. "psr-4": {
  5722. "Enlightn\\SecurityChecker\\": "src"
  5723. }
  5724. },
  5725. "notification-url": "https://packagist.org/downloads/",
  5726. "license": [
  5727. "MIT"
  5728. ],
  5729. "authors": [
  5730. {
  5731. "name": "Paras Malhotra",
  5732. "email": "paras@laravel-enlightn.com"
  5733. },
  5734. {
  5735. "name": "Miguel Piedrafita",
  5736. "email": "soy@miguelpiedrafita.com"
  5737. }
  5738. ],
  5739. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  5740. "keywords": [
  5741. "package",
  5742. "php",
  5743. "scanner",
  5744. "security",
  5745. "security advisories",
  5746. "vulnerability scanner"
  5747. ],
  5748. "support": {
  5749. "issues": "https://github.com/enlightn/security-checker/issues",
  5750. "source": "https://github.com/enlightn/security-checker/tree/v1.11.0"
  5751. },
  5752. "time": "2023-11-17T07:53:29+00:00"
  5753. },
  5754. {
  5755. "name": "grasmash/expander",
  5756. "version": "1.0.0",
  5757. "source": {
  5758. "type": "git",
  5759. "url": "https://github.com/grasmash/expander.git",
  5760. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5761. },
  5762. "dist": {
  5763. "type": "zip",
  5764. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5765. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5766. "shasum": ""
  5767. },
  5768. "require": {
  5769. "dflydev/dot-access-data": "^1.1.0",
  5770. "php": ">=5.4"
  5771. },
  5772. "require-dev": {
  5773. "greg-1-anderson/composer-test-scenarios": "^1",
  5774. "phpunit/phpunit": "^4|^5.5.4",
  5775. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5776. "squizlabs/php_codesniffer": "^2.7"
  5777. },
  5778. "type": "library",
  5779. "extra": {
  5780. "branch-alias": {
  5781. "dev-master": "1.x-dev"
  5782. }
  5783. },
  5784. "autoload": {
  5785. "psr-4": {
  5786. "Grasmash\\Expander\\": "src/"
  5787. }
  5788. },
  5789. "notification-url": "https://packagist.org/downloads/",
  5790. "license": [
  5791. "MIT"
  5792. ],
  5793. "authors": [
  5794. {
  5795. "name": "Matthew Grasmick"
  5796. }
  5797. ],
  5798. "description": "Expands internal property references in PHP arrays file.",
  5799. "support": {
  5800. "issues": "https://github.com/grasmash/expander/issues",
  5801. "source": "https://github.com/grasmash/expander/tree/master"
  5802. },
  5803. "time": "2017-12-21T22:14:55+00:00"
  5804. },
  5805. {
  5806. "name": "grasmash/yaml-expander",
  5807. "version": "1.4.0",
  5808. "source": {
  5809. "type": "git",
  5810. "url": "https://github.com/grasmash/yaml-expander.git",
  5811. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5812. },
  5813. "dist": {
  5814. "type": "zip",
  5815. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5816. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5817. "shasum": ""
  5818. },
  5819. "require": {
  5820. "dflydev/dot-access-data": "^1.1.0",
  5821. "php": ">=5.4",
  5822. "symfony/yaml": "^2.8.11|^3|^4"
  5823. },
  5824. "require-dev": {
  5825. "greg-1-anderson/composer-test-scenarios": "^1",
  5826. "phpunit/phpunit": "^4.8|^5.5.4",
  5827. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5828. "squizlabs/php_codesniffer": "^2.7"
  5829. },
  5830. "type": "library",
  5831. "extra": {
  5832. "branch-alias": {
  5833. "dev-master": "1.x-dev"
  5834. }
  5835. },
  5836. "autoload": {
  5837. "psr-4": {
  5838. "Grasmash\\YamlExpander\\": "src/"
  5839. }
  5840. },
  5841. "notification-url": "https://packagist.org/downloads/",
  5842. "license": [
  5843. "MIT"
  5844. ],
  5845. "authors": [
  5846. {
  5847. "name": "Matthew Grasmick"
  5848. }
  5849. ],
  5850. "description": "Expands internal property references in a yaml file.",
  5851. "support": {
  5852. "issues": "https://github.com/grasmash/yaml-expander/issues",
  5853. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  5854. },
  5855. "time": "2017-12-16T16:06:03+00:00"
  5856. },
  5857. {
  5858. "name": "guzzlehttp/guzzle",
  5859. "version": "6.5.8",
  5860. "source": {
  5861. "type": "git",
  5862. "url": "https://github.com/guzzle/guzzle.git",
  5863. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  5864. },
  5865. "dist": {
  5866. "type": "zip",
  5867. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  5868. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  5869. "shasum": ""
  5870. },
  5871. "require": {
  5872. "ext-json": "*",
  5873. "guzzlehttp/promises": "^1.0",
  5874. "guzzlehttp/psr7": "^1.9",
  5875. "php": ">=5.5",
  5876. "symfony/polyfill-intl-idn": "^1.17"
  5877. },
  5878. "require-dev": {
  5879. "ext-curl": "*",
  5880. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5881. "psr/log": "^1.1"
  5882. },
  5883. "suggest": {
  5884. "psr/log": "Required for using the Log middleware"
  5885. },
  5886. "type": "library",
  5887. "extra": {
  5888. "branch-alias": {
  5889. "dev-master": "6.5-dev"
  5890. }
  5891. },
  5892. "autoload": {
  5893. "files": [
  5894. "src/functions_include.php"
  5895. ],
  5896. "psr-4": {
  5897. "GuzzleHttp\\": "src/"
  5898. }
  5899. },
  5900. "notification-url": "https://packagist.org/downloads/",
  5901. "license": [
  5902. "MIT"
  5903. ],
  5904. "authors": [
  5905. {
  5906. "name": "Graham Campbell",
  5907. "email": "hello@gjcampbell.co.uk",
  5908. "homepage": "https://github.com/GrahamCampbell"
  5909. },
  5910. {
  5911. "name": "Michael Dowling",
  5912. "email": "mtdowling@gmail.com",
  5913. "homepage": "https://github.com/mtdowling"
  5914. },
  5915. {
  5916. "name": "Jeremy Lindblom",
  5917. "email": "jeremeamia@gmail.com",
  5918. "homepage": "https://github.com/jeremeamia"
  5919. },
  5920. {
  5921. "name": "George Mponos",
  5922. "email": "gmponos@gmail.com",
  5923. "homepage": "https://github.com/gmponos"
  5924. },
  5925. {
  5926. "name": "Tobias Nyholm",
  5927. "email": "tobias.nyholm@gmail.com",
  5928. "homepage": "https://github.com/Nyholm"
  5929. },
  5930. {
  5931. "name": "Márk Sági-Kazár",
  5932. "email": "mark.sagikazar@gmail.com",
  5933. "homepage": "https://github.com/sagikazarmark"
  5934. },
  5935. {
  5936. "name": "Tobias Schultze",
  5937. "email": "webmaster@tubo-world.de",
  5938. "homepage": "https://github.com/Tobion"
  5939. }
  5940. ],
  5941. "description": "Guzzle is a PHP HTTP client library",
  5942. "homepage": "http://guzzlephp.org/",
  5943. "keywords": [
  5944. "client",
  5945. "curl",
  5946. "framework",
  5947. "http",
  5948. "http client",
  5949. "rest",
  5950. "web service"
  5951. ],
  5952. "support": {
  5953. "issues": "https://github.com/guzzle/guzzle/issues",
  5954. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  5955. },
  5956. "funding": [
  5957. {
  5958. "url": "https://github.com/GrahamCampbell",
  5959. "type": "github"
  5960. },
  5961. {
  5962. "url": "https://github.com/Nyholm",
  5963. "type": "github"
  5964. },
  5965. {
  5966. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5967. "type": "tidelift"
  5968. }
  5969. ],
  5970. "time": "2022-06-20T22:16:07+00:00"
  5971. },
  5972. {
  5973. "name": "guzzlehttp/promises",
  5974. "version": "1.5.3",
  5975. "source": {
  5976. "type": "git",
  5977. "url": "https://github.com/guzzle/promises.git",
  5978. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  5979. },
  5980. "dist": {
  5981. "type": "zip",
  5982. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5983. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5984. "shasum": ""
  5985. },
  5986. "require": {
  5987. "php": ">=5.5"
  5988. },
  5989. "require-dev": {
  5990. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  5991. },
  5992. "type": "library",
  5993. "autoload": {
  5994. "files": [
  5995. "src/functions_include.php"
  5996. ],
  5997. "psr-4": {
  5998. "GuzzleHttp\\Promise\\": "src/"
  5999. }
  6000. },
  6001. "notification-url": "https://packagist.org/downloads/",
  6002. "license": [
  6003. "MIT"
  6004. ],
  6005. "authors": [
  6006. {
  6007. "name": "Graham Campbell",
  6008. "email": "hello@gjcampbell.co.uk",
  6009. "homepage": "https://github.com/GrahamCampbell"
  6010. },
  6011. {
  6012. "name": "Michael Dowling",
  6013. "email": "mtdowling@gmail.com",
  6014. "homepage": "https://github.com/mtdowling"
  6015. },
  6016. {
  6017. "name": "Tobias Nyholm",
  6018. "email": "tobias.nyholm@gmail.com",
  6019. "homepage": "https://github.com/Nyholm"
  6020. },
  6021. {
  6022. "name": "Tobias Schultze",
  6023. "email": "webmaster@tubo-world.de",
  6024. "homepage": "https://github.com/Tobion"
  6025. }
  6026. ],
  6027. "description": "Guzzle promises library",
  6028. "keywords": [
  6029. "promise"
  6030. ],
  6031. "support": {
  6032. "issues": "https://github.com/guzzle/promises/issues",
  6033. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  6034. },
  6035. "funding": [
  6036. {
  6037. "url": "https://github.com/GrahamCampbell",
  6038. "type": "github"
  6039. },
  6040. {
  6041. "url": "https://github.com/Nyholm",
  6042. "type": "github"
  6043. },
  6044. {
  6045. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  6046. "type": "tidelift"
  6047. }
  6048. ],
  6049. "time": "2023-05-21T12:31:43+00:00"
  6050. },
  6051. {
  6052. "name": "guzzlehttp/psr7",
  6053. "version": "1.9.1",
  6054. "source": {
  6055. "type": "git",
  6056. "url": "https://github.com/guzzle/psr7.git",
  6057. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  6058. },
  6059. "dist": {
  6060. "type": "zip",
  6061. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  6062. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  6063. "shasum": ""
  6064. },
  6065. "require": {
  6066. "php": ">=5.4.0",
  6067. "psr/http-message": "~1.0",
  6068. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6069. },
  6070. "provide": {
  6071. "psr/http-message-implementation": "1.0"
  6072. },
  6073. "require-dev": {
  6074. "ext-zlib": "*",
  6075. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  6076. },
  6077. "suggest": {
  6078. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  6079. },
  6080. "type": "library",
  6081. "autoload": {
  6082. "files": [
  6083. "src/functions_include.php"
  6084. ],
  6085. "psr-4": {
  6086. "GuzzleHttp\\Psr7\\": "src/"
  6087. }
  6088. },
  6089. "notification-url": "https://packagist.org/downloads/",
  6090. "license": [
  6091. "MIT"
  6092. ],
  6093. "authors": [
  6094. {
  6095. "name": "Graham Campbell",
  6096. "email": "hello@gjcampbell.co.uk",
  6097. "homepage": "https://github.com/GrahamCampbell"
  6098. },
  6099. {
  6100. "name": "Michael Dowling",
  6101. "email": "mtdowling@gmail.com",
  6102. "homepage": "https://github.com/mtdowling"
  6103. },
  6104. {
  6105. "name": "George Mponos",
  6106. "email": "gmponos@gmail.com",
  6107. "homepage": "https://github.com/gmponos"
  6108. },
  6109. {
  6110. "name": "Tobias Nyholm",
  6111. "email": "tobias.nyholm@gmail.com",
  6112. "homepage": "https://github.com/Nyholm"
  6113. },
  6114. {
  6115. "name": "Márk Sági-Kazár",
  6116. "email": "mark.sagikazar@gmail.com",
  6117. "homepage": "https://github.com/sagikazarmark"
  6118. },
  6119. {
  6120. "name": "Tobias Schultze",
  6121. "email": "webmaster@tubo-world.de",
  6122. "homepage": "https://github.com/Tobion"
  6123. }
  6124. ],
  6125. "description": "PSR-7 message implementation that also provides common utility methods",
  6126. "keywords": [
  6127. "http",
  6128. "message",
  6129. "psr-7",
  6130. "request",
  6131. "response",
  6132. "stream",
  6133. "uri",
  6134. "url"
  6135. ],
  6136. "support": {
  6137. "issues": "https://github.com/guzzle/psr7/issues",
  6138. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  6139. },
  6140. "funding": [
  6141. {
  6142. "url": "https://github.com/GrahamCampbell",
  6143. "type": "github"
  6144. },
  6145. {
  6146. "url": "https://github.com/Nyholm",
  6147. "type": "github"
  6148. },
  6149. {
  6150. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  6151. "type": "tidelift"
  6152. }
  6153. ],
  6154. "time": "2023-04-17T16:00:37+00:00"
  6155. },
  6156. {
  6157. "name": "kint-php/kint",
  6158. "version": "5.1.1",
  6159. "source": {
  6160. "type": "git",
  6161. "url": "https://github.com/kint-php/kint.git",
  6162. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6163. },
  6164. "dist": {
  6165. "type": "zip",
  6166. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6167. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6168. "shasum": ""
  6169. },
  6170. "require": {
  6171. "php": ">=7.1"
  6172. },
  6173. "require-dev": {
  6174. "friendsofphp/php-cs-fixer": "^3",
  6175. "phpspec/prophecy-phpunit": "^2",
  6176. "phpunit/phpunit": "^9",
  6177. "seld/phar-utils": "^1",
  6178. "symfony/finder": ">=4.0",
  6179. "vimeo/psalm": "^5"
  6180. },
  6181. "suggest": {
  6182. "kint-php/kint-helpers": "Provides extra helper functions",
  6183. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6184. },
  6185. "type": "library",
  6186. "autoload": {
  6187. "files": [
  6188. "init.php"
  6189. ],
  6190. "psr-4": {
  6191. "Kint\\": "src/"
  6192. }
  6193. },
  6194. "notification-url": "https://packagist.org/downloads/",
  6195. "license": [
  6196. "MIT"
  6197. ],
  6198. "authors": [
  6199. {
  6200. "name": "Jonathan Vollebregt",
  6201. "homepage": "https://github.com/jnvsor"
  6202. },
  6203. {
  6204. "name": "Contributors",
  6205. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6206. }
  6207. ],
  6208. "description": "Kint - debugging tool for PHP developers",
  6209. "homepage": "https://kint-php.github.io/kint/",
  6210. "keywords": [
  6211. "debug",
  6212. "kint",
  6213. "php"
  6214. ],
  6215. "support": {
  6216. "issues": "https://github.com/kint-php/kint/issues",
  6217. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6218. },
  6219. "time": "2024-04-26T14:20:09+00:00"
  6220. },
  6221. {
  6222. "name": "laminas/laminas-escaper",
  6223. "version": "2.13.0",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/laminas/laminas-escaper.git",
  6227. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6232. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "ext-ctype": "*",
  6237. "ext-mbstring": "*",
  6238. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6239. },
  6240. "conflict": {
  6241. "zendframework/zend-escaper": "*"
  6242. },
  6243. "require-dev": {
  6244. "infection/infection": "^0.27.0",
  6245. "laminas/laminas-coding-standard": "~2.5.0",
  6246. "maglnet/composer-require-checker": "^3.8.0",
  6247. "phpunit/phpunit": "^9.6.7",
  6248. "psalm/plugin-phpunit": "^0.18.4",
  6249. "vimeo/psalm": "^5.9"
  6250. },
  6251. "type": "library",
  6252. "autoload": {
  6253. "psr-4": {
  6254. "Laminas\\Escaper\\": "src/"
  6255. }
  6256. },
  6257. "notification-url": "https://packagist.org/downloads/",
  6258. "license": [
  6259. "BSD-3-Clause"
  6260. ],
  6261. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6262. "homepage": "https://laminas.dev",
  6263. "keywords": [
  6264. "escaper",
  6265. "laminas"
  6266. ],
  6267. "support": {
  6268. "chat": "https://laminas.dev/chat",
  6269. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6270. "forum": "https://discourse.laminas.dev",
  6271. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6272. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6273. "source": "https://github.com/laminas/laminas-escaper"
  6274. },
  6275. "funding": [
  6276. {
  6277. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6278. "type": "community_bridge"
  6279. }
  6280. ],
  6281. "time": "2023-10-10T08:35:13+00:00"
  6282. },
  6283. {
  6284. "name": "laminas/laminas-feed",
  6285. "version": "2.22.0",
  6286. "source": {
  6287. "type": "git",
  6288. "url": "https://github.com/laminas/laminas-feed.git",
  6289. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141"
  6290. },
  6291. "dist": {
  6292. "type": "zip",
  6293. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/669792b819fca7274698147ad7a2ecc1b0a9b141",
  6294. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141",
  6295. "shasum": ""
  6296. },
  6297. "require": {
  6298. "ext-dom": "*",
  6299. "ext-libxml": "*",
  6300. "laminas/laminas-escaper": "^2.9",
  6301. "laminas/laminas-stdlib": "^3.6",
  6302. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6303. },
  6304. "conflict": {
  6305. "laminas/laminas-servicemanager": "<3.3",
  6306. "zendframework/zend-feed": "*"
  6307. },
  6308. "require-dev": {
  6309. "laminas/laminas-cache": "^2.13.2 || ^3.11",
  6310. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2",
  6311. "laminas/laminas-coding-standard": "~2.5.0",
  6312. "laminas/laminas-db": "^2.18",
  6313. "laminas/laminas-http": "^2.18",
  6314. "laminas/laminas-servicemanager": "^3.21.0",
  6315. "laminas/laminas-validator": "^2.38",
  6316. "phpunit/phpunit": "^10.3.1",
  6317. "psalm/plugin-phpunit": "^0.18.4",
  6318. "psr/http-message": "^2.0",
  6319. "vimeo/psalm": "^5.14.1"
  6320. },
  6321. "suggest": {
  6322. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6323. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6324. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6325. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6326. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6327. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6328. },
  6329. "type": "library",
  6330. "autoload": {
  6331. "psr-4": {
  6332. "Laminas\\Feed\\": "src/"
  6333. }
  6334. },
  6335. "notification-url": "https://packagist.org/downloads/",
  6336. "license": [
  6337. "BSD-3-Clause"
  6338. ],
  6339. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  6340. "homepage": "https://laminas.dev",
  6341. "keywords": [
  6342. "atom",
  6343. "feed",
  6344. "laminas",
  6345. "rss"
  6346. ],
  6347. "support": {
  6348. "chat": "https://laminas.dev/chat",
  6349. "docs": "https://docs.laminas.dev/laminas-feed/",
  6350. "forum": "https://discourse.laminas.dev",
  6351. "issues": "https://github.com/laminas/laminas-feed/issues",
  6352. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6353. "source": "https://github.com/laminas/laminas-feed"
  6354. },
  6355. "funding": [
  6356. {
  6357. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6358. "type": "community_bridge"
  6359. }
  6360. ],
  6361. "time": "2023-10-11T20:16:37+00:00"
  6362. },
  6363. {
  6364. "name": "laminas/laminas-servicemanager",
  6365. "version": "3.22.1",
  6366. "source": {
  6367. "type": "git",
  6368. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6369. "reference": "de98d297d4743956a0558a6d71616979ff779328"
  6370. },
  6371. "dist": {
  6372. "type": "zip",
  6373. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/de98d297d4743956a0558a6d71616979ff779328",
  6374. "reference": "de98d297d4743956a0558a6d71616979ff779328",
  6375. "shasum": ""
  6376. },
  6377. "require": {
  6378. "laminas/laminas-stdlib": "^3.17",
  6379. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  6380. "psr/container": "^1.0"
  6381. },
  6382. "conflict": {
  6383. "ext-psr": "*",
  6384. "laminas/laminas-code": "<4.10.0",
  6385. "zendframework/zend-code": "<3.3.1",
  6386. "zendframework/zend-servicemanager": "*"
  6387. },
  6388. "provide": {
  6389. "psr/container-implementation": "^1.0"
  6390. },
  6391. "replace": {
  6392. "container-interop/container-interop": "^1.2.0"
  6393. },
  6394. "require-dev": {
  6395. "composer/package-versions-deprecated": "^1.11.99.5",
  6396. "friendsofphp/proxy-manager-lts": "^1.0.14",
  6397. "laminas/laminas-code": "^4.10.0",
  6398. "laminas/laminas-coding-standard": "~2.5.0",
  6399. "laminas/laminas-container-config-test": "^0.8",
  6400. "mikey179/vfsstream": "^1.6.11",
  6401. "phpbench/phpbench": "^1.2.9",
  6402. "phpunit/phpunit": "^10.4",
  6403. "psalm/plugin-phpunit": "^0.18.4",
  6404. "vimeo/psalm": "^5.8.0"
  6405. },
  6406. "suggest": {
  6407. "friendsofphp/proxy-manager-lts": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6408. },
  6409. "bin": [
  6410. "bin/generate-deps-for-config-factory",
  6411. "bin/generate-factory-for-class"
  6412. ],
  6413. "type": "library",
  6414. "autoload": {
  6415. "files": [
  6416. "src/autoload.php"
  6417. ],
  6418. "psr-4": {
  6419. "Laminas\\ServiceManager\\": "src/"
  6420. }
  6421. },
  6422. "notification-url": "https://packagist.org/downloads/",
  6423. "license": [
  6424. "BSD-3-Clause"
  6425. ],
  6426. "description": "Factory-Driven Dependency Injection Container",
  6427. "homepage": "https://laminas.dev",
  6428. "keywords": [
  6429. "PSR-11",
  6430. "dependency-injection",
  6431. "di",
  6432. "dic",
  6433. "laminas",
  6434. "service-manager",
  6435. "servicemanager"
  6436. ],
  6437. "support": {
  6438. "chat": "https://laminas.dev/chat",
  6439. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6440. "forum": "https://discourse.laminas.dev",
  6441. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6442. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6443. "source": "https://github.com/laminas/laminas-servicemanager"
  6444. },
  6445. "funding": [
  6446. {
  6447. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6448. "type": "community_bridge"
  6449. }
  6450. ],
  6451. "time": "2023-10-24T11:19:47+00:00"
  6452. },
  6453. {
  6454. "name": "laminas/laminas-stdlib",
  6455. "version": "3.19.0",
  6456. "source": {
  6457. "type": "git",
  6458. "url": "https://github.com/laminas/laminas-stdlib.git",
  6459. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  6460. },
  6461. "dist": {
  6462. "type": "zip",
  6463. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  6464. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  6465. "shasum": ""
  6466. },
  6467. "require": {
  6468. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6469. },
  6470. "conflict": {
  6471. "zendframework/zend-stdlib": "*"
  6472. },
  6473. "require-dev": {
  6474. "laminas/laminas-coding-standard": "^2.5",
  6475. "phpbench/phpbench": "^1.2.15",
  6476. "phpunit/phpunit": "^10.5.8",
  6477. "psalm/plugin-phpunit": "^0.18.4",
  6478. "vimeo/psalm": "^5.20.0"
  6479. },
  6480. "type": "library",
  6481. "autoload": {
  6482. "psr-4": {
  6483. "Laminas\\Stdlib\\": "src/"
  6484. }
  6485. },
  6486. "notification-url": "https://packagist.org/downloads/",
  6487. "license": [
  6488. "BSD-3-Clause"
  6489. ],
  6490. "description": "SPL extensions, array utilities, error handlers, and more",
  6491. "homepage": "https://laminas.dev",
  6492. "keywords": [
  6493. "laminas",
  6494. "stdlib"
  6495. ],
  6496. "support": {
  6497. "chat": "https://laminas.dev/chat",
  6498. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6499. "forum": "https://discourse.laminas.dev",
  6500. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6501. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6502. "source": "https://github.com/laminas/laminas-stdlib"
  6503. },
  6504. "funding": [
  6505. {
  6506. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6507. "type": "community_bridge"
  6508. }
  6509. ],
  6510. "time": "2024-01-19T12:39:49+00:00"
  6511. },
  6512. {
  6513. "name": "laminas/laminas-text",
  6514. "version": "2.11.0",
  6515. "source": {
  6516. "type": "git",
  6517. "url": "https://github.com/laminas/laminas-text.git",
  6518. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7"
  6519. },
  6520. "dist": {
  6521. "type": "zip",
  6522. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6523. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6524. "shasum": ""
  6525. },
  6526. "require": {
  6527. "laminas/laminas-servicemanager": "^3.22.0",
  6528. "laminas/laminas-stdlib": "^3.7.1",
  6529. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6530. },
  6531. "conflict": {
  6532. "zendframework/zend-text": "*"
  6533. },
  6534. "require-dev": {
  6535. "laminas/laminas-coding-standard": "~2.5.0",
  6536. "phpunit/phpunit": "^9.5",
  6537. "psalm/plugin-phpunit": "^0.18.4",
  6538. "vimeo/psalm": "^5.1"
  6539. },
  6540. "type": "library",
  6541. "autoload": {
  6542. "psr-4": {
  6543. "Laminas\\Text\\": "src/"
  6544. }
  6545. },
  6546. "notification-url": "https://packagist.org/downloads/",
  6547. "license": [
  6548. "BSD-3-Clause"
  6549. ],
  6550. "description": "Create FIGlets and text-based tables",
  6551. "homepage": "https://laminas.dev",
  6552. "keywords": [
  6553. "laminas",
  6554. "text"
  6555. ],
  6556. "support": {
  6557. "chat": "https://laminas.dev/chat",
  6558. "docs": "https://docs.laminas.dev/laminas-text/",
  6559. "forum": "https://discourse.laminas.dev",
  6560. "issues": "https://github.com/laminas/laminas-text/issues",
  6561. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6562. "source": "https://github.com/laminas/laminas-text"
  6563. },
  6564. "funding": [
  6565. {
  6566. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6567. "type": "community_bridge"
  6568. }
  6569. ],
  6570. "time": "2023-11-07T16:45:45+00:00"
  6571. },
  6572. {
  6573. "name": "league/container",
  6574. "version": "2.5.0",
  6575. "source": {
  6576. "type": "git",
  6577. "url": "https://github.com/thephpleague/container.git",
  6578. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6579. },
  6580. "dist": {
  6581. "type": "zip",
  6582. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6583. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6584. "shasum": ""
  6585. },
  6586. "require": {
  6587. "container-interop/container-interop": "^1.2",
  6588. "php": "^5.4 || ^7.0 || ^8.0"
  6589. },
  6590. "provide": {
  6591. "container-interop/container-interop-implementation": "^1.2",
  6592. "psr/container-implementation": "^1.0"
  6593. },
  6594. "replace": {
  6595. "orno/di": "~2.0"
  6596. },
  6597. "require-dev": {
  6598. "phpunit/phpunit": "^4.8.36",
  6599. "scrutinizer/ocular": "^1.3",
  6600. "squizlabs/php_codesniffer": "^3.5"
  6601. },
  6602. "type": "library",
  6603. "extra": {
  6604. "branch-alias": {
  6605. "dev-2.x": "2.x-dev",
  6606. "dev-1.x": "1.x-dev"
  6607. }
  6608. },
  6609. "autoload": {
  6610. "psr-4": {
  6611. "League\\Container\\": "src"
  6612. }
  6613. },
  6614. "notification-url": "https://packagist.org/downloads/",
  6615. "license": [
  6616. "MIT"
  6617. ],
  6618. "authors": [
  6619. {
  6620. "name": "Phil Bennett",
  6621. "email": "philipobenito@gmail.com",
  6622. "homepage": "http://www.philipobenito.com",
  6623. "role": "Developer"
  6624. }
  6625. ],
  6626. "description": "A fast and intuitive dependency injection container.",
  6627. "homepage": "https://github.com/thephpleague/container",
  6628. "keywords": [
  6629. "container",
  6630. "dependency",
  6631. "di",
  6632. "injection",
  6633. "league",
  6634. "provider",
  6635. "service"
  6636. ],
  6637. "support": {
  6638. "issues": "https://github.com/thephpleague/container/issues",
  6639. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6640. },
  6641. "funding": [
  6642. {
  6643. "url": "https://github.com/philipobenito",
  6644. "type": "github"
  6645. }
  6646. ],
  6647. "time": "2021-02-22T09:20:06+00:00"
  6648. },
  6649. {
  6650. "name": "longwave/laminas-diactoros",
  6651. "version": "2.14.3",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://github.com/longwave/laminas-diactoros.git",
  6655. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6660. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6661. "shasum": ""
  6662. },
  6663. "require": {
  6664. "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  6665. "psr/http-factory": "^1.0",
  6666. "psr/http-message": "^1.0"
  6667. },
  6668. "conflict": {
  6669. "phpspec/prophecy": "<1.9.0",
  6670. "zendframework/zend-diactoros": "*"
  6671. },
  6672. "provide": {
  6673. "psr/http-factory-implementation": "1.0",
  6674. "psr/http-message-implementation": "1.0"
  6675. },
  6676. "replace": {
  6677. "laminas/laminas-diactoros": "2.18.1"
  6678. },
  6679. "require-dev": {
  6680. "ext-curl": "*",
  6681. "ext-dom": "*",
  6682. "ext-gd": "*",
  6683. "ext-libxml": "*",
  6684. "http-interop/http-factory-tests": "^0.9.0",
  6685. "laminas/laminas-coding-standard": "~2.3.0",
  6686. "php-http/psr7-integration-tests": "^1.1.1",
  6687. "phpspec/prophecy-phpunit": "^2.0",
  6688. "phpunit/phpunit": "^9.5",
  6689. "psalm/plugin-phpunit": "^0.17.0",
  6690. "vimeo/psalm": "^4.24.0"
  6691. },
  6692. "type": "library",
  6693. "extra": {
  6694. "laminas": {
  6695. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  6696. "module": "Laminas\\Diactoros"
  6697. }
  6698. },
  6699. "autoload": {
  6700. "files": [
  6701. "src/functions/create_uploaded_file.php",
  6702. "src/functions/marshal_headers_from_sapi.php",
  6703. "src/functions/marshal_method_from_sapi.php",
  6704. "src/functions/marshal_protocol_version_from_sapi.php",
  6705. "src/functions/marshal_uri_from_sapi.php",
  6706. "src/functions/normalize_server.php",
  6707. "src/functions/normalize_uploaded_files.php",
  6708. "src/functions/parse_cookie_header.php",
  6709. "src/functions/create_uploaded_file.legacy.php",
  6710. "src/functions/marshal_headers_from_sapi.legacy.php",
  6711. "src/functions/marshal_method_from_sapi.legacy.php",
  6712. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6713. "src/functions/marshal_uri_from_sapi.legacy.php",
  6714. "src/functions/normalize_server.legacy.php",
  6715. "src/functions/normalize_uploaded_files.legacy.php",
  6716. "src/functions/parse_cookie_header.legacy.php"
  6717. ],
  6718. "psr-4": {
  6719. "Laminas\\Diactoros\\": "src/"
  6720. }
  6721. },
  6722. "notification-url": "https://packagist.org/downloads/",
  6723. "license": [
  6724. "BSD-3-Clause"
  6725. ],
  6726. "description": "PSR HTTP Message implementations",
  6727. "homepage": "https://laminas.dev",
  6728. "keywords": [
  6729. "http",
  6730. "laminas",
  6731. "psr",
  6732. "psr-17",
  6733. "psr-7"
  6734. ],
  6735. "support": {
  6736. "chat": "https://laminas.dev/chat",
  6737. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6738. "forum": "https://discourse.laminas.dev",
  6739. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6740. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6741. "source": "https://github.com/laminas/laminas-diactoros"
  6742. },
  6743. "time": "2024-09-11T14:26:18+00:00"
  6744. },
  6745. {
  6746. "name": "masterminds/html5",
  6747. "version": "2.7.6",
  6748. "source": {
  6749. "type": "git",
  6750. "url": "https://github.com/Masterminds/html5-php.git",
  6751. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  6752. },
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  6756. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  6757. "shasum": ""
  6758. },
  6759. "require": {
  6760. "ext-ctype": "*",
  6761. "ext-dom": "*",
  6762. "ext-libxml": "*",
  6763. "php": ">=5.3.0"
  6764. },
  6765. "require-dev": {
  6766. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  6767. },
  6768. "type": "library",
  6769. "extra": {
  6770. "branch-alias": {
  6771. "dev-master": "2.7-dev"
  6772. }
  6773. },
  6774. "autoload": {
  6775. "psr-4": {
  6776. "Masterminds\\": "src"
  6777. }
  6778. },
  6779. "notification-url": "https://packagist.org/downloads/",
  6780. "license": [
  6781. "MIT"
  6782. ],
  6783. "authors": [
  6784. {
  6785. "name": "Matt Butcher",
  6786. "email": "technosophos@gmail.com"
  6787. },
  6788. {
  6789. "name": "Matt Farina",
  6790. "email": "matt@mattfarina.com"
  6791. },
  6792. {
  6793. "name": "Asmir Mustafic",
  6794. "email": "goetas@gmail.com"
  6795. }
  6796. ],
  6797. "description": "An HTML5 parser and serializer.",
  6798. "homepage": "http://masterminds.github.io/html5-php",
  6799. "keywords": [
  6800. "HTML5",
  6801. "dom",
  6802. "html",
  6803. "parser",
  6804. "querypath",
  6805. "serializer",
  6806. "xml"
  6807. ],
  6808. "support": {
  6809. "issues": "https://github.com/Masterminds/html5-php/issues",
  6810. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  6811. },
  6812. "time": "2022-08-18T16:18:26+00:00"
  6813. },
  6814. {
  6815. "name": "mathieuviossat/arraytotexttable",
  6816. "version": "v1.0.11",
  6817. "source": {
  6818. "type": "git",
  6819. "url": "https://github.com/viossat/arraytotexttable.git",
  6820. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8"
  6821. },
  6822. "dist": {
  6823. "type": "zip",
  6824. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/069561a0895fb69ea1939fcd09262ccea081cbb8",
  6825. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8",
  6826. "shasum": ""
  6827. },
  6828. "require": {
  6829. "laminas/laminas-text": "^2.10",
  6830. "php": ">=8.0.0"
  6831. },
  6832. "type": "library",
  6833. "autoload": {
  6834. "psr-4": {
  6835. "MathieuViossat\\Util\\": "src/"
  6836. }
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "MIT"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Mathieu Viossat",
  6845. "email": "mathieu@viossat.fr",
  6846. "homepage": "https://viossat.fr"
  6847. }
  6848. ],
  6849. "description": "Display arrays in terminal",
  6850. "homepage": "https://github.com/viossat/arraytotexttable",
  6851. "keywords": [
  6852. "array",
  6853. "ascii",
  6854. "table",
  6855. "terminal",
  6856. "text",
  6857. "unicode"
  6858. ],
  6859. "support": {
  6860. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6861. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.11"
  6862. },
  6863. "time": "2024-02-13T17:19:01+00:00"
  6864. },
  6865. {
  6866. "name": "mglaman/phpstan-drupal",
  6867. "version": "1.2.12",
  6868. "source": {
  6869. "type": "git",
  6870. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6871. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6872. },
  6873. "dist": {
  6874. "type": "zip",
  6875. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6876. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6877. "shasum": ""
  6878. },
  6879. "require": {
  6880. "php": "^8.1",
  6881. "phpstan/phpstan": "^1.10.56",
  6882. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6883. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6884. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6885. "webflo/drupal-finder": "^1.2"
  6886. },
  6887. "require-dev": {
  6888. "behat/mink": "^1.8",
  6889. "composer/installers": "^1.9",
  6890. "drupal/core-recommended": "^10",
  6891. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6892. "phpstan/extension-installer": "^1.1",
  6893. "phpstan/phpstan-strict-rules": "^1.0",
  6894. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6895. "slevomat/coding-standard": "^7.1",
  6896. "squizlabs/php_codesniffer": "^3.3",
  6897. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6898. },
  6899. "suggest": {
  6900. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6901. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6902. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6903. },
  6904. "type": "phpstan-extension",
  6905. "extra": {
  6906. "branch-alias": {
  6907. "dev-main": "1.0-dev"
  6908. },
  6909. "installer-paths": {
  6910. "tests/fixtures/drupal/core": [
  6911. "type:drupal-core"
  6912. ],
  6913. "tests/fixtures/drupal/libraries/{$name}": [
  6914. "type:drupal-library"
  6915. ],
  6916. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6917. "type:drupal-module"
  6918. ],
  6919. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6920. "type:drupal-profile"
  6921. ],
  6922. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6923. "type:drupal-theme"
  6924. ]
  6925. },
  6926. "phpstan": {
  6927. "includes": [
  6928. "extension.neon",
  6929. "rules.neon"
  6930. ]
  6931. }
  6932. },
  6933. "autoload": {
  6934. "psr-4": {
  6935. "mglaman\\PHPStanDrupal\\": "src/"
  6936. }
  6937. },
  6938. "notification-url": "https://packagist.org/downloads/",
  6939. "license": [
  6940. "MIT"
  6941. ],
  6942. "authors": [
  6943. {
  6944. "name": "Matt Glaman",
  6945. "email": "nmd.matt@gmail.com"
  6946. }
  6947. ],
  6948. "description": "Drupal extension and rules for PHPStan",
  6949. "support": {
  6950. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6951. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6952. },
  6953. "funding": [
  6954. {
  6955. "url": "https://github.com/mglaman",
  6956. "type": "github"
  6957. },
  6958. {
  6959. "url": "https://opencollective.com/phpstan-drupal",
  6960. "type": "open_collective"
  6961. },
  6962. {
  6963. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6964. "type": "tidelift"
  6965. }
  6966. ],
  6967. "time": "2024-08-07T21:15:21+00:00"
  6968. },
  6969. {
  6970. "name": "nikic/php-parser",
  6971. "version": "v4.19.1",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://github.com/nikic/PHP-Parser.git",
  6975. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  6980. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  6981. "shasum": ""
  6982. },
  6983. "require": {
  6984. "ext-tokenizer": "*",
  6985. "php": ">=7.1"
  6986. },
  6987. "require-dev": {
  6988. "ircmaxell/php-yacc": "^0.0.7",
  6989. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6990. },
  6991. "bin": [
  6992. "bin/php-parse"
  6993. ],
  6994. "type": "library",
  6995. "extra": {
  6996. "branch-alias": {
  6997. "dev-master": "4.9-dev"
  6998. }
  6999. },
  7000. "autoload": {
  7001. "psr-4": {
  7002. "PhpParser\\": "lib/PhpParser"
  7003. }
  7004. },
  7005. "notification-url": "https://packagist.org/downloads/",
  7006. "license": [
  7007. "BSD-3-Clause"
  7008. ],
  7009. "authors": [
  7010. {
  7011. "name": "Nikita Popov"
  7012. }
  7013. ],
  7014. "description": "A PHP parser written in PHP",
  7015. "keywords": [
  7016. "parser",
  7017. "php"
  7018. ],
  7019. "support": {
  7020. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7021. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  7022. },
  7023. "time": "2024-03-17T08:10:35+00:00"
  7024. },
  7025. {
  7026. "name": "pear/archive_tar",
  7027. "version": "1.4.14",
  7028. "source": {
  7029. "type": "git",
  7030. "url": "https://github.com/pear/Archive_Tar.git",
  7031. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7032. },
  7033. "dist": {
  7034. "type": "zip",
  7035. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7036. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7037. "shasum": ""
  7038. },
  7039. "require": {
  7040. "pear/pear-core-minimal": "^1.10.0alpha2",
  7041. "php": ">=5.2.0"
  7042. },
  7043. "require-dev": {
  7044. "phpunit/phpunit": "*"
  7045. },
  7046. "suggest": {
  7047. "ext-bz2": "Bz2 compression support.",
  7048. "ext-xz": "Lzma2 compression support.",
  7049. "ext-zlib": "Gzip compression support."
  7050. },
  7051. "type": "library",
  7052. "extra": {
  7053. "branch-alias": {
  7054. "dev-master": "1.4.x-dev"
  7055. }
  7056. },
  7057. "autoload": {
  7058. "psr-0": {
  7059. "Archive_Tar": ""
  7060. }
  7061. },
  7062. "notification-url": "https://packagist.org/downloads/",
  7063. "include-path": [
  7064. "./"
  7065. ],
  7066. "license": [
  7067. "BSD-3-Clause"
  7068. ],
  7069. "authors": [
  7070. {
  7071. "name": "Vincent Blavet",
  7072. "email": "vincent@phpconcept.net"
  7073. },
  7074. {
  7075. "name": "Greg Beaver",
  7076. "email": "greg@chiaraquartet.net"
  7077. },
  7078. {
  7079. "name": "Michiel Rook",
  7080. "email": "mrook@php.net"
  7081. }
  7082. ],
  7083. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7084. "homepage": "https://github.com/pear/Archive_Tar",
  7085. "keywords": [
  7086. "archive",
  7087. "tar"
  7088. ],
  7089. "support": {
  7090. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7091. "source": "https://github.com/pear/Archive_Tar"
  7092. },
  7093. "funding": [
  7094. {
  7095. "url": "https://github.com/mrook",
  7096. "type": "github"
  7097. },
  7098. {
  7099. "url": "https://www.patreon.com/michielrook",
  7100. "type": "patreon"
  7101. }
  7102. ],
  7103. "time": "2021-07-20T13:53:39+00:00"
  7104. },
  7105. {
  7106. "name": "pear/console_getopt",
  7107. "version": "v1.4.3",
  7108. "source": {
  7109. "type": "git",
  7110. "url": "https://github.com/pear/Console_Getopt.git",
  7111. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7112. },
  7113. "dist": {
  7114. "type": "zip",
  7115. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7116. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7117. "shasum": ""
  7118. },
  7119. "type": "library",
  7120. "autoload": {
  7121. "psr-0": {
  7122. "Console": "./"
  7123. }
  7124. },
  7125. "notification-url": "https://packagist.org/downloads/",
  7126. "include-path": [
  7127. "./"
  7128. ],
  7129. "license": [
  7130. "BSD-2-Clause"
  7131. ],
  7132. "authors": [
  7133. {
  7134. "name": "Andrei Zmievski",
  7135. "email": "andrei@php.net",
  7136. "role": "Lead"
  7137. },
  7138. {
  7139. "name": "Stig Bakken",
  7140. "email": "stig@php.net",
  7141. "role": "Developer"
  7142. },
  7143. {
  7144. "name": "Greg Beaver",
  7145. "email": "cellog@php.net",
  7146. "role": "Helper"
  7147. }
  7148. ],
  7149. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7150. "support": {
  7151. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7152. "source": "https://github.com/pear/Console_Getopt"
  7153. },
  7154. "time": "2019-11-20T18:27:48+00:00"
  7155. },
  7156. {
  7157. "name": "pear/pear-core-minimal",
  7158. "version": "v1.10.15",
  7159. "source": {
  7160. "type": "git",
  7161. "url": "https://github.com/pear/pear-core-minimal.git",
  7162. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  7163. },
  7164. "dist": {
  7165. "type": "zip",
  7166. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  7167. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  7168. "shasum": ""
  7169. },
  7170. "require": {
  7171. "pear/console_getopt": "~1.4",
  7172. "pear/pear_exception": "~1.0",
  7173. "php": ">=5.4"
  7174. },
  7175. "replace": {
  7176. "rsky/pear-core-min": "self.version"
  7177. },
  7178. "type": "library",
  7179. "autoload": {
  7180. "classmap": [
  7181. "src/"
  7182. ]
  7183. },
  7184. "notification-url": "https://packagist.org/downloads/",
  7185. "include-path": [
  7186. "src/"
  7187. ],
  7188. "license": [
  7189. "BSD-3-Clause"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Christian Weiske",
  7194. "email": "cweiske@php.net",
  7195. "role": "Lead"
  7196. }
  7197. ],
  7198. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7199. "support": {
  7200. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7201. "source": "https://github.com/pear/pear-core-minimal"
  7202. },
  7203. "time": "2024-03-16T18:41:45+00:00"
  7204. },
  7205. {
  7206. "name": "pear/pear_exception",
  7207. "version": "v1.0.2",
  7208. "source": {
  7209. "type": "git",
  7210. "url": "https://github.com/pear/PEAR_Exception.git",
  7211. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7212. },
  7213. "dist": {
  7214. "type": "zip",
  7215. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7216. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7217. "shasum": ""
  7218. },
  7219. "require": {
  7220. "php": ">=5.2.0"
  7221. },
  7222. "require-dev": {
  7223. "phpunit/phpunit": "<9"
  7224. },
  7225. "type": "class",
  7226. "extra": {
  7227. "branch-alias": {
  7228. "dev-master": "1.0.x-dev"
  7229. }
  7230. },
  7231. "autoload": {
  7232. "classmap": [
  7233. "PEAR/"
  7234. ]
  7235. },
  7236. "notification-url": "https://packagist.org/downloads/",
  7237. "include-path": [
  7238. "."
  7239. ],
  7240. "license": [
  7241. "BSD-2-Clause"
  7242. ],
  7243. "authors": [
  7244. {
  7245. "name": "Helgi Thormar",
  7246. "email": "dufuz@php.net"
  7247. },
  7248. {
  7249. "name": "Greg Beaver",
  7250. "email": "cellog@php.net"
  7251. }
  7252. ],
  7253. "description": "The PEAR Exception base class.",
  7254. "homepage": "https://github.com/pear/PEAR_Exception",
  7255. "keywords": [
  7256. "exception"
  7257. ],
  7258. "support": {
  7259. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7260. "source": "https://github.com/pear/PEAR_Exception"
  7261. },
  7262. "time": "2021-03-21T15:43:46+00:00"
  7263. },
  7264. {
  7265. "name": "phpstan/phpstan",
  7266. "version": "1.12.3",
  7267. "source": {
  7268. "type": "git",
  7269. "url": "https://github.com/phpstan/phpstan.git",
  7270. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7271. },
  7272. "dist": {
  7273. "type": "zip",
  7274. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7275. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7276. "shasum": ""
  7277. },
  7278. "require": {
  7279. "php": "^7.2|^8.0"
  7280. },
  7281. "conflict": {
  7282. "phpstan/phpstan-shim": "*"
  7283. },
  7284. "bin": [
  7285. "phpstan",
  7286. "phpstan.phar"
  7287. ],
  7288. "type": "library",
  7289. "autoload": {
  7290. "files": [
  7291. "bootstrap.php"
  7292. ]
  7293. },
  7294. "notification-url": "https://packagist.org/downloads/",
  7295. "license": [
  7296. "MIT"
  7297. ],
  7298. "description": "PHPStan - PHP Static Analysis Tool",
  7299. "keywords": [
  7300. "dev",
  7301. "static analysis"
  7302. ],
  7303. "support": {
  7304. "docs": "https://phpstan.org/user-guide/getting-started",
  7305. "forum": "https://github.com/phpstan/phpstan/discussions",
  7306. "issues": "https://github.com/phpstan/phpstan/issues",
  7307. "security": "https://github.com/phpstan/phpstan/security/policy",
  7308. "source": "https://github.com/phpstan/phpstan-src"
  7309. },
  7310. "funding": [
  7311. {
  7312. "url": "https://github.com/ondrejmirtes",
  7313. "type": "github"
  7314. },
  7315. {
  7316. "url": "https://github.com/phpstan",
  7317. "type": "github"
  7318. }
  7319. ],
  7320. "time": "2024-09-09T08:10:35+00:00"
  7321. },
  7322. {
  7323. "name": "phpstan/phpstan-deprecation-rules",
  7324. "version": "1.2.1",
  7325. "source": {
  7326. "type": "git",
  7327. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7328. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7329. },
  7330. "dist": {
  7331. "type": "zip",
  7332. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7333. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7334. "shasum": ""
  7335. },
  7336. "require": {
  7337. "php": "^7.2 || ^8.0",
  7338. "phpstan/phpstan": "^1.12"
  7339. },
  7340. "require-dev": {
  7341. "php-parallel-lint/php-parallel-lint": "^1.2",
  7342. "phpstan/phpstan-phpunit": "^1.0",
  7343. "phpunit/phpunit": "^9.5"
  7344. },
  7345. "type": "phpstan-extension",
  7346. "extra": {
  7347. "phpstan": {
  7348. "includes": [
  7349. "rules.neon"
  7350. ]
  7351. }
  7352. },
  7353. "autoload": {
  7354. "psr-4": {
  7355. "PHPStan\\": "src/"
  7356. }
  7357. },
  7358. "notification-url": "https://packagist.org/downloads/",
  7359. "license": [
  7360. "MIT"
  7361. ],
  7362. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7363. "support": {
  7364. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7365. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7366. },
  7367. "time": "2024-09-11T15:52:35+00:00"
  7368. },
  7369. {
  7370. "name": "psr/cache",
  7371. "version": "1.0.1",
  7372. "source": {
  7373. "type": "git",
  7374. "url": "https://github.com/php-fig/cache.git",
  7375. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  7376. },
  7377. "dist": {
  7378. "type": "zip",
  7379. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  7380. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  7381. "shasum": ""
  7382. },
  7383. "require": {
  7384. "php": ">=5.3.0"
  7385. },
  7386. "type": "library",
  7387. "extra": {
  7388. "branch-alias": {
  7389. "dev-master": "1.0.x-dev"
  7390. }
  7391. },
  7392. "autoload": {
  7393. "psr-4": {
  7394. "Psr\\Cache\\": "src/"
  7395. }
  7396. },
  7397. "notification-url": "https://packagist.org/downloads/",
  7398. "license": [
  7399. "MIT"
  7400. ],
  7401. "authors": [
  7402. {
  7403. "name": "PHP-FIG",
  7404. "homepage": "http://www.php-fig.org/"
  7405. }
  7406. ],
  7407. "description": "Common interface for caching libraries",
  7408. "keywords": [
  7409. "cache",
  7410. "psr",
  7411. "psr-6"
  7412. ],
  7413. "support": {
  7414. "source": "https://github.com/php-fig/cache/tree/master"
  7415. },
  7416. "time": "2016-08-06T20:24:11+00:00"
  7417. },
  7418. {
  7419. "name": "psr/container",
  7420. "version": "1.1.2",
  7421. "source": {
  7422. "type": "git",
  7423. "url": "https://github.com/php-fig/container.git",
  7424. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  7425. },
  7426. "dist": {
  7427. "type": "zip",
  7428. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  7429. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  7430. "shasum": ""
  7431. },
  7432. "require": {
  7433. "php": ">=7.4.0"
  7434. },
  7435. "type": "library",
  7436. "autoload": {
  7437. "psr-4": {
  7438. "Psr\\Container\\": "src/"
  7439. }
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "MIT"
  7444. ],
  7445. "authors": [
  7446. {
  7447. "name": "PHP-FIG",
  7448. "homepage": "https://www.php-fig.org/"
  7449. }
  7450. ],
  7451. "description": "Common Container Interface (PHP FIG PSR-11)",
  7452. "homepage": "https://github.com/php-fig/container",
  7453. "keywords": [
  7454. "PSR-11",
  7455. "container",
  7456. "container-interface",
  7457. "container-interop",
  7458. "psr"
  7459. ],
  7460. "support": {
  7461. "issues": "https://github.com/php-fig/container/issues",
  7462. "source": "https://github.com/php-fig/container/tree/1.1.2"
  7463. },
  7464. "time": "2021-11-05T16:50:12+00:00"
  7465. },
  7466. {
  7467. "name": "psr/http-factory",
  7468. "version": "1.0.2",
  7469. "source": {
  7470. "type": "git",
  7471. "url": "https://github.com/php-fig/http-factory.git",
  7472. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7473. },
  7474. "dist": {
  7475. "type": "zip",
  7476. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7477. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7478. "shasum": ""
  7479. },
  7480. "require": {
  7481. "php": ">=7.0.0",
  7482. "psr/http-message": "^1.0 || ^2.0"
  7483. },
  7484. "type": "library",
  7485. "extra": {
  7486. "branch-alias": {
  7487. "dev-master": "1.0.x-dev"
  7488. }
  7489. },
  7490. "autoload": {
  7491. "psr-4": {
  7492. "Psr\\Http\\Message\\": "src/"
  7493. }
  7494. },
  7495. "notification-url": "https://packagist.org/downloads/",
  7496. "license": [
  7497. "MIT"
  7498. ],
  7499. "authors": [
  7500. {
  7501. "name": "PHP-FIG",
  7502. "homepage": "https://www.php-fig.org/"
  7503. }
  7504. ],
  7505. "description": "Common interfaces for PSR-7 HTTP message factories",
  7506. "keywords": [
  7507. "factory",
  7508. "http",
  7509. "message",
  7510. "psr",
  7511. "psr-17",
  7512. "psr-7",
  7513. "request",
  7514. "response"
  7515. ],
  7516. "support": {
  7517. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7518. },
  7519. "time": "2023-04-10T20:10:41+00:00"
  7520. },
  7521. {
  7522. "name": "psr/http-message",
  7523. "version": "1.0.1",
  7524. "source": {
  7525. "type": "git",
  7526. "url": "https://github.com/php-fig/http-message.git",
  7527. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7528. },
  7529. "dist": {
  7530. "type": "zip",
  7531. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7532. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7533. "shasum": ""
  7534. },
  7535. "require": {
  7536. "php": ">=5.3.0"
  7537. },
  7538. "type": "library",
  7539. "extra": {
  7540. "branch-alias": {
  7541. "dev-master": "1.0.x-dev"
  7542. }
  7543. },
  7544. "autoload": {
  7545. "psr-4": {
  7546. "Psr\\Http\\Message\\": "src/"
  7547. }
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "PHP-FIG",
  7556. "homepage": "http://www.php-fig.org/"
  7557. }
  7558. ],
  7559. "description": "Common interface for HTTP messages",
  7560. "homepage": "https://github.com/php-fig/http-message",
  7561. "keywords": [
  7562. "http",
  7563. "http-message",
  7564. "psr",
  7565. "psr-7",
  7566. "request",
  7567. "response"
  7568. ],
  7569. "support": {
  7570. "source": "https://github.com/php-fig/http-message/tree/master"
  7571. },
  7572. "time": "2016-08-06T14:39:51+00:00"
  7573. },
  7574. {
  7575. "name": "psr/log",
  7576. "version": "1.1.4",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://github.com/php-fig/log.git",
  7580. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  7585. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  7586. "shasum": ""
  7587. },
  7588. "require": {
  7589. "php": ">=5.3.0"
  7590. },
  7591. "type": "library",
  7592. "extra": {
  7593. "branch-alias": {
  7594. "dev-master": "1.1.x-dev"
  7595. }
  7596. },
  7597. "autoload": {
  7598. "psr-4": {
  7599. "Psr\\Log\\": "Psr/Log/"
  7600. }
  7601. },
  7602. "notification-url": "https://packagist.org/downloads/",
  7603. "license": [
  7604. "MIT"
  7605. ],
  7606. "authors": [
  7607. {
  7608. "name": "PHP-FIG",
  7609. "homepage": "https://www.php-fig.org/"
  7610. }
  7611. ],
  7612. "description": "Common interface for logging libraries",
  7613. "homepage": "https://github.com/php-fig/log",
  7614. "keywords": [
  7615. "log",
  7616. "psr",
  7617. "psr-3"
  7618. ],
  7619. "support": {
  7620. "source": "https://github.com/php-fig/log/tree/1.1.4"
  7621. },
  7622. "time": "2021-05-03T11:20:27+00:00"
  7623. },
  7624. {
  7625. "name": "psy/psysh",
  7626. "version": "v0.10.12",
  7627. "source": {
  7628. "type": "git",
  7629. "url": "https://github.com/bobthecow/psysh.git",
  7630. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  7631. },
  7632. "dist": {
  7633. "type": "zip",
  7634. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7635. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7636. "shasum": ""
  7637. },
  7638. "require": {
  7639. "ext-json": "*",
  7640. "ext-tokenizer": "*",
  7641. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7642. "php": "^8.0 || ^7.0 || ^5.5.9",
  7643. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7644. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7645. },
  7646. "require-dev": {
  7647. "bamarni/composer-bin-plugin": "^1.2",
  7648. "hoa/console": "3.17.*"
  7649. },
  7650. "suggest": {
  7651. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7652. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7653. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7654. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7655. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7656. },
  7657. "bin": [
  7658. "bin/psysh"
  7659. ],
  7660. "type": "library",
  7661. "extra": {
  7662. "branch-alias": {
  7663. "dev-main": "0.10.x-dev"
  7664. }
  7665. },
  7666. "autoload": {
  7667. "files": [
  7668. "src/functions.php"
  7669. ],
  7670. "psr-4": {
  7671. "Psy\\": "src/"
  7672. }
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "MIT"
  7677. ],
  7678. "authors": [
  7679. {
  7680. "name": "Justin Hileman",
  7681. "email": "justin@justinhileman.info",
  7682. "homepage": "http://justinhileman.com"
  7683. }
  7684. ],
  7685. "description": "An interactive shell for modern PHP.",
  7686. "homepage": "http://psysh.org",
  7687. "keywords": [
  7688. "REPL",
  7689. "console",
  7690. "interactive",
  7691. "shell"
  7692. ],
  7693. "support": {
  7694. "issues": "https://github.com/bobthecow/psysh/issues",
  7695. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  7696. },
  7697. "time": "2021-11-30T14:05:36+00:00"
  7698. },
  7699. {
  7700. "name": "ralouphie/getallheaders",
  7701. "version": "3.0.3",
  7702. "source": {
  7703. "type": "git",
  7704. "url": "https://github.com/ralouphie/getallheaders.git",
  7705. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7706. },
  7707. "dist": {
  7708. "type": "zip",
  7709. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7710. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7711. "shasum": ""
  7712. },
  7713. "require": {
  7714. "php": ">=5.6"
  7715. },
  7716. "require-dev": {
  7717. "php-coveralls/php-coveralls": "^2.1",
  7718. "phpunit/phpunit": "^5 || ^6.5"
  7719. },
  7720. "type": "library",
  7721. "autoload": {
  7722. "files": [
  7723. "src/getallheaders.php"
  7724. ]
  7725. },
  7726. "notification-url": "https://packagist.org/downloads/",
  7727. "license": [
  7728. "MIT"
  7729. ],
  7730. "authors": [
  7731. {
  7732. "name": "Ralph Khattar",
  7733. "email": "ralph.khattar@gmail.com"
  7734. }
  7735. ],
  7736. "description": "A polyfill for getallheaders.",
  7737. "support": {
  7738. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7739. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7740. },
  7741. "time": "2019-03-08T08:55:37+00:00"
  7742. },
  7743. {
  7744. "name": "stack/builder",
  7745. "version": "v1.0.6",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://github.com/stackphp/builder.git",
  7749. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7754. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7755. "shasum": ""
  7756. },
  7757. "require": {
  7758. "php": ">=7.2.0",
  7759. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  7760. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  7761. },
  7762. "require-dev": {
  7763. "phpunit/phpunit": "~8.0",
  7764. "symfony/routing": "^5.0"
  7765. },
  7766. "type": "library",
  7767. "extra": {
  7768. "branch-alias": {
  7769. "dev-master": "1.0-dev"
  7770. }
  7771. },
  7772. "autoload": {
  7773. "psr-0": {
  7774. "Stack": "src"
  7775. }
  7776. },
  7777. "notification-url": "https://packagist.org/downloads/",
  7778. "license": [
  7779. "MIT"
  7780. ],
  7781. "authors": [
  7782. {
  7783. "name": "Igor Wiedler",
  7784. "email": "igor@wiedler.ch"
  7785. }
  7786. ],
  7787. "description": "Builder for stack middleware based on HttpKernelInterface.",
  7788. "keywords": [
  7789. "stack"
  7790. ],
  7791. "support": {
  7792. "issues": "https://github.com/stackphp/builder/issues",
  7793. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  7794. },
  7795. "abandoned": true,
  7796. "time": "2020-01-30T12:17:27+00:00"
  7797. },
  7798. {
  7799. "name": "symfony-cmf/routing",
  7800. "version": "2.3.4",
  7801. "source": {
  7802. "type": "git",
  7803. "url": "https://github.com/symfony-cmf/Routing.git",
  7804. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  7805. },
  7806. "dist": {
  7807. "type": "zip",
  7808. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7809. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7810. "shasum": ""
  7811. },
  7812. "require": {
  7813. "php": "^7.2 || ^8.0",
  7814. "psr/log": "^1.0 || ^2.0 || ^3.0",
  7815. "symfony/http-kernel": "^4.4 || ^5.0",
  7816. "symfony/routing": "^4.4 || ^5.0"
  7817. },
  7818. "require-dev": {
  7819. "symfony-cmf/testing": "^3@dev",
  7820. "symfony/config": "^4.4 || ^5.0",
  7821. "symfony/dependency-injection": "^4.4 || ^5.0",
  7822. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7823. "symfony/phpunit-bridge": "^5.0"
  7824. },
  7825. "suggest": {
  7826. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  7827. },
  7828. "type": "library",
  7829. "extra": {
  7830. "branch-alias": {
  7831. "dev-master": "2.x-dev"
  7832. }
  7833. },
  7834. "autoload": {
  7835. "psr-4": {
  7836. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  7837. }
  7838. },
  7839. "notification-url": "https://packagist.org/downloads/",
  7840. "license": [
  7841. "MIT"
  7842. ],
  7843. "authors": [
  7844. {
  7845. "name": "Symfony CMF Community",
  7846. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7847. }
  7848. ],
  7849. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  7850. "homepage": "http://cmf.symfony.com",
  7851. "keywords": [
  7852. "database",
  7853. "routing"
  7854. ],
  7855. "support": {
  7856. "issues": "https://github.com/symfony-cmf/Routing/issues",
  7857. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  7858. },
  7859. "time": "2021-11-08T16:33:10+00:00"
  7860. },
  7861. {
  7862. "name": "symfony/console",
  7863. "version": "v4.4.49",
  7864. "source": {
  7865. "type": "git",
  7866. "url": "https://github.com/symfony/console.git",
  7867. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  7868. },
  7869. "dist": {
  7870. "type": "zip",
  7871. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7872. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7873. "shasum": ""
  7874. },
  7875. "require": {
  7876. "php": ">=7.1.3",
  7877. "symfony/polyfill-mbstring": "~1.0",
  7878. "symfony/polyfill-php73": "^1.8",
  7879. "symfony/polyfill-php80": "^1.16",
  7880. "symfony/service-contracts": "^1.1|^2"
  7881. },
  7882. "conflict": {
  7883. "psr/log": ">=3",
  7884. "symfony/dependency-injection": "<3.4",
  7885. "symfony/event-dispatcher": "<4.3|>=5",
  7886. "symfony/lock": "<4.4",
  7887. "symfony/process": "<3.3"
  7888. },
  7889. "provide": {
  7890. "psr/log-implementation": "1.0|2.0"
  7891. },
  7892. "require-dev": {
  7893. "psr/log": "^1|^2",
  7894. "symfony/config": "^3.4|^4.0|^5.0",
  7895. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7896. "symfony/event-dispatcher": "^4.3",
  7897. "symfony/lock": "^4.4|^5.0",
  7898. "symfony/process": "^3.4|^4.0|^5.0",
  7899. "symfony/var-dumper": "^4.3|^5.0"
  7900. },
  7901. "suggest": {
  7902. "psr/log": "For using the console logger",
  7903. "symfony/event-dispatcher": "",
  7904. "symfony/lock": "",
  7905. "symfony/process": ""
  7906. },
  7907. "type": "library",
  7908. "autoload": {
  7909. "psr-4": {
  7910. "Symfony\\Component\\Console\\": ""
  7911. },
  7912. "exclude-from-classmap": [
  7913. "/Tests/"
  7914. ]
  7915. },
  7916. "notification-url": "https://packagist.org/downloads/",
  7917. "license": [
  7918. "MIT"
  7919. ],
  7920. "authors": [
  7921. {
  7922. "name": "Fabien Potencier",
  7923. "email": "fabien@symfony.com"
  7924. },
  7925. {
  7926. "name": "Symfony Community",
  7927. "homepage": "https://symfony.com/contributors"
  7928. }
  7929. ],
  7930. "description": "Eases the creation of beautiful and testable command line interfaces",
  7931. "homepage": "https://symfony.com",
  7932. "support": {
  7933. "source": "https://github.com/symfony/console/tree/v4.4.49"
  7934. },
  7935. "funding": [
  7936. {
  7937. "url": "https://symfony.com/sponsor",
  7938. "type": "custom"
  7939. },
  7940. {
  7941. "url": "https://github.com/fabpot",
  7942. "type": "github"
  7943. },
  7944. {
  7945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7946. "type": "tidelift"
  7947. }
  7948. ],
  7949. "time": "2022-11-05T17:10:16+00:00"
  7950. },
  7951. {
  7952. "name": "symfony/debug",
  7953. "version": "v4.4.44",
  7954. "source": {
  7955. "type": "git",
  7956. "url": "https://github.com/symfony/debug.git",
  7957. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  7958. },
  7959. "dist": {
  7960. "type": "zip",
  7961. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  7962. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  7963. "shasum": ""
  7964. },
  7965. "require": {
  7966. "php": ">=7.1.3",
  7967. "psr/log": "^1|^2|^3"
  7968. },
  7969. "conflict": {
  7970. "symfony/http-kernel": "<3.4"
  7971. },
  7972. "require-dev": {
  7973. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  7974. },
  7975. "type": "library",
  7976. "autoload": {
  7977. "psr-4": {
  7978. "Symfony\\Component\\Debug\\": ""
  7979. },
  7980. "exclude-from-classmap": [
  7981. "/Tests/"
  7982. ]
  7983. },
  7984. "notification-url": "https://packagist.org/downloads/",
  7985. "license": [
  7986. "MIT"
  7987. ],
  7988. "authors": [
  7989. {
  7990. "name": "Fabien Potencier",
  7991. "email": "fabien@symfony.com"
  7992. },
  7993. {
  7994. "name": "Symfony Community",
  7995. "homepage": "https://symfony.com/contributors"
  7996. }
  7997. ],
  7998. "description": "Provides tools to ease debugging PHP code",
  7999. "homepage": "https://symfony.com",
  8000. "support": {
  8001. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  8002. },
  8003. "funding": [
  8004. {
  8005. "url": "https://symfony.com/sponsor",
  8006. "type": "custom"
  8007. },
  8008. {
  8009. "url": "https://github.com/fabpot",
  8010. "type": "github"
  8011. },
  8012. {
  8013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8014. "type": "tidelift"
  8015. }
  8016. ],
  8017. "abandoned": "symfony/error-handler",
  8018. "time": "2022-07-28T16:29:46+00:00"
  8019. },
  8020. {
  8021. "name": "symfony/dependency-injection",
  8022. "version": "v4.4.49",
  8023. "source": {
  8024. "type": "git",
  8025. "url": "https://github.com/symfony/dependency-injection.git",
  8026. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734"
  8027. },
  8028. "dist": {
  8029. "type": "zip",
  8030. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  8031. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  8032. "shasum": ""
  8033. },
  8034. "require": {
  8035. "php": ">=7.1.3",
  8036. "psr/container": "^1.0",
  8037. "symfony/polyfill-php80": "^1.16",
  8038. "symfony/service-contracts": "^1.1.6|^2"
  8039. },
  8040. "conflict": {
  8041. "symfony/config": "<4.3|>=5.0",
  8042. "symfony/finder": "<3.4",
  8043. "symfony/proxy-manager-bridge": "<3.4",
  8044. "symfony/yaml": "<4.4.26"
  8045. },
  8046. "provide": {
  8047. "psr/container-implementation": "1.0",
  8048. "symfony/service-implementation": "1.0|2.0"
  8049. },
  8050. "require-dev": {
  8051. "symfony/config": "^4.3",
  8052. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8053. "symfony/yaml": "^4.4.26|^5.0"
  8054. },
  8055. "suggest": {
  8056. "symfony/config": "",
  8057. "symfony/expression-language": "For using expressions in service container configuration",
  8058. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8059. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8060. "symfony/yaml": ""
  8061. },
  8062. "type": "library",
  8063. "autoload": {
  8064. "psr-4": {
  8065. "Symfony\\Component\\DependencyInjection\\": ""
  8066. },
  8067. "exclude-from-classmap": [
  8068. "/Tests/"
  8069. ]
  8070. },
  8071. "notification-url": "https://packagist.org/downloads/",
  8072. "license": [
  8073. "MIT"
  8074. ],
  8075. "authors": [
  8076. {
  8077. "name": "Fabien Potencier",
  8078. "email": "fabien@symfony.com"
  8079. },
  8080. {
  8081. "name": "Symfony Community",
  8082. "homepage": "https://symfony.com/contributors"
  8083. }
  8084. ],
  8085. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  8086. "homepage": "https://symfony.com",
  8087. "support": {
  8088. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49"
  8089. },
  8090. "funding": [
  8091. {
  8092. "url": "https://symfony.com/sponsor",
  8093. "type": "custom"
  8094. },
  8095. {
  8096. "url": "https://github.com/fabpot",
  8097. "type": "github"
  8098. },
  8099. {
  8100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8101. "type": "tidelift"
  8102. }
  8103. ],
  8104. "time": "2022-11-16T16:18:09+00:00"
  8105. },
  8106. {
  8107. "name": "symfony/deprecation-contracts",
  8108. "version": "v2.5.3",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/symfony/deprecation-contracts.git",
  8112. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  8117. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  8118. "shasum": ""
  8119. },
  8120. "require": {
  8121. "php": ">=7.1"
  8122. },
  8123. "type": "library",
  8124. "extra": {
  8125. "branch-alias": {
  8126. "dev-main": "2.5-dev"
  8127. },
  8128. "thanks": {
  8129. "name": "symfony/contracts",
  8130. "url": "https://github.com/symfony/contracts"
  8131. }
  8132. },
  8133. "autoload": {
  8134. "files": [
  8135. "function.php"
  8136. ]
  8137. },
  8138. "notification-url": "https://packagist.org/downloads/",
  8139. "license": [
  8140. "MIT"
  8141. ],
  8142. "authors": [
  8143. {
  8144. "name": "Nicolas Grekas",
  8145. "email": "p@tchwork.com"
  8146. },
  8147. {
  8148. "name": "Symfony Community",
  8149. "homepage": "https://symfony.com/contributors"
  8150. }
  8151. ],
  8152. "description": "A generic function and convention to trigger deprecation notices",
  8153. "homepage": "https://symfony.com",
  8154. "support": {
  8155. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  8156. },
  8157. "funding": [
  8158. {
  8159. "url": "https://symfony.com/sponsor",
  8160. "type": "custom"
  8161. },
  8162. {
  8163. "url": "https://github.com/fabpot",
  8164. "type": "github"
  8165. },
  8166. {
  8167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8168. "type": "tidelift"
  8169. }
  8170. ],
  8171. "time": "2023-01-24T14:02:46+00:00"
  8172. },
  8173. {
  8174. "name": "symfony/error-handler",
  8175. "version": "v4.4.44",
  8176. "source": {
  8177. "type": "git",
  8178. "url": "https://github.com/symfony/error-handler.git",
  8179. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  8180. },
  8181. "dist": {
  8182. "type": "zip",
  8183. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  8184. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  8185. "shasum": ""
  8186. },
  8187. "require": {
  8188. "php": ">=7.1.3",
  8189. "psr/log": "^1|^2|^3",
  8190. "symfony/debug": "^4.4.5",
  8191. "symfony/var-dumper": "^4.4|^5.0"
  8192. },
  8193. "require-dev": {
  8194. "symfony/http-kernel": "^4.4|^5.0",
  8195. "symfony/serializer": "^4.4|^5.0"
  8196. },
  8197. "type": "library",
  8198. "autoload": {
  8199. "psr-4": {
  8200. "Symfony\\Component\\ErrorHandler\\": ""
  8201. },
  8202. "exclude-from-classmap": [
  8203. "/Tests/"
  8204. ]
  8205. },
  8206. "notification-url": "https://packagist.org/downloads/",
  8207. "license": [
  8208. "MIT"
  8209. ],
  8210. "authors": [
  8211. {
  8212. "name": "Fabien Potencier",
  8213. "email": "fabien@symfony.com"
  8214. },
  8215. {
  8216. "name": "Symfony Community",
  8217. "homepage": "https://symfony.com/contributors"
  8218. }
  8219. ],
  8220. "description": "Provides tools to manage errors and ease debugging PHP code",
  8221. "homepage": "https://symfony.com",
  8222. "support": {
  8223. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  8224. },
  8225. "funding": [
  8226. {
  8227. "url": "https://symfony.com/sponsor",
  8228. "type": "custom"
  8229. },
  8230. {
  8231. "url": "https://github.com/fabpot",
  8232. "type": "github"
  8233. },
  8234. {
  8235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8236. "type": "tidelift"
  8237. }
  8238. ],
  8239. "time": "2022-07-28T16:29:46+00:00"
  8240. },
  8241. {
  8242. "name": "symfony/event-dispatcher",
  8243. "version": "v4.4.44",
  8244. "source": {
  8245. "type": "git",
  8246. "url": "https://github.com/symfony/event-dispatcher.git",
  8247. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  8248. },
  8249. "dist": {
  8250. "type": "zip",
  8251. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8252. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8253. "shasum": ""
  8254. },
  8255. "require": {
  8256. "php": ">=7.1.3",
  8257. "symfony/event-dispatcher-contracts": "^1.1",
  8258. "symfony/polyfill-php80": "^1.16"
  8259. },
  8260. "conflict": {
  8261. "symfony/dependency-injection": "<3.4"
  8262. },
  8263. "provide": {
  8264. "psr/event-dispatcher-implementation": "1.0",
  8265. "symfony/event-dispatcher-implementation": "1.1"
  8266. },
  8267. "require-dev": {
  8268. "psr/log": "^1|^2|^3",
  8269. "symfony/config": "^3.4|^4.0|^5.0",
  8270. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8271. "symfony/error-handler": "~3.4|~4.4",
  8272. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8273. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8274. "symfony/service-contracts": "^1.1|^2",
  8275. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  8276. },
  8277. "suggest": {
  8278. "symfony/dependency-injection": "",
  8279. "symfony/http-kernel": ""
  8280. },
  8281. "type": "library",
  8282. "autoload": {
  8283. "psr-4": {
  8284. "Symfony\\Component\\EventDispatcher\\": ""
  8285. },
  8286. "exclude-from-classmap": [
  8287. "/Tests/"
  8288. ]
  8289. },
  8290. "notification-url": "https://packagist.org/downloads/",
  8291. "license": [
  8292. "MIT"
  8293. ],
  8294. "authors": [
  8295. {
  8296. "name": "Fabien Potencier",
  8297. "email": "fabien@symfony.com"
  8298. },
  8299. {
  8300. "name": "Symfony Community",
  8301. "homepage": "https://symfony.com/contributors"
  8302. }
  8303. ],
  8304. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8305. "homepage": "https://symfony.com",
  8306. "support": {
  8307. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  8308. },
  8309. "funding": [
  8310. {
  8311. "url": "https://symfony.com/sponsor",
  8312. "type": "custom"
  8313. },
  8314. {
  8315. "url": "https://github.com/fabpot",
  8316. "type": "github"
  8317. },
  8318. {
  8319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8320. "type": "tidelift"
  8321. }
  8322. ],
  8323. "time": "2022-07-20T09:59:04+00:00"
  8324. },
  8325. {
  8326. "name": "symfony/event-dispatcher-contracts",
  8327. "version": "v1.1.13",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8331. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8336. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "php": ">=7.1.3"
  8341. },
  8342. "suggest": {
  8343. "psr/event-dispatcher": "",
  8344. "symfony/event-dispatcher-implementation": ""
  8345. },
  8346. "type": "library",
  8347. "extra": {
  8348. "branch-alias": {
  8349. "dev-main": "1.1-dev"
  8350. },
  8351. "thanks": {
  8352. "name": "symfony/contracts",
  8353. "url": "https://github.com/symfony/contracts"
  8354. }
  8355. },
  8356. "autoload": {
  8357. "psr-4": {
  8358. "Symfony\\Contracts\\EventDispatcher\\": ""
  8359. }
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "MIT"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Nicolas Grekas",
  8368. "email": "p@tchwork.com"
  8369. },
  8370. {
  8371. "name": "Symfony Community",
  8372. "homepage": "https://symfony.com/contributors"
  8373. }
  8374. ],
  8375. "description": "Generic abstractions related to dispatching event",
  8376. "homepage": "https://symfony.com",
  8377. "keywords": [
  8378. "abstractions",
  8379. "contracts",
  8380. "decoupling",
  8381. "interfaces",
  8382. "interoperability",
  8383. "standards"
  8384. ],
  8385. "support": {
  8386. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  8387. },
  8388. "funding": [
  8389. {
  8390. "url": "https://symfony.com/sponsor",
  8391. "type": "custom"
  8392. },
  8393. {
  8394. "url": "https://github.com/fabpot",
  8395. "type": "github"
  8396. },
  8397. {
  8398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8399. "type": "tidelift"
  8400. }
  8401. ],
  8402. "time": "2022-01-02T09:41:36+00:00"
  8403. },
  8404. {
  8405. "name": "symfony/filesystem",
  8406. "version": "v4.4.42",
  8407. "source": {
  8408. "type": "git",
  8409. "url": "https://github.com/symfony/filesystem.git",
  8410. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8411. },
  8412. "dist": {
  8413. "type": "zip",
  8414. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8415. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8416. "shasum": ""
  8417. },
  8418. "require": {
  8419. "php": ">=7.1.3",
  8420. "symfony/polyfill-ctype": "~1.8",
  8421. "symfony/polyfill-php80": "^1.16"
  8422. },
  8423. "type": "library",
  8424. "autoload": {
  8425. "psr-4": {
  8426. "Symfony\\Component\\Filesystem\\": ""
  8427. },
  8428. "exclude-from-classmap": [
  8429. "/Tests/"
  8430. ]
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Fabien Potencier",
  8439. "email": "fabien@symfony.com"
  8440. },
  8441. {
  8442. "name": "Symfony Community",
  8443. "homepage": "https://symfony.com/contributors"
  8444. }
  8445. ],
  8446. "description": "Provides basic utilities for the filesystem",
  8447. "homepage": "https://symfony.com",
  8448. "support": {
  8449. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8450. },
  8451. "funding": [
  8452. {
  8453. "url": "https://symfony.com/sponsor",
  8454. "type": "custom"
  8455. },
  8456. {
  8457. "url": "https://github.com/fabpot",
  8458. "type": "github"
  8459. },
  8460. {
  8461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8462. "type": "tidelift"
  8463. }
  8464. ],
  8465. "time": "2022-05-20T08:49:14+00:00"
  8466. },
  8467. {
  8468. "name": "symfony/finder",
  8469. "version": "v5.4.43",
  8470. "source": {
  8471. "type": "git",
  8472. "url": "https://github.com/symfony/finder.git",
  8473. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  8474. },
  8475. "dist": {
  8476. "type": "zip",
  8477. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  8478. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  8479. "shasum": ""
  8480. },
  8481. "require": {
  8482. "php": ">=7.2.5",
  8483. "symfony/deprecation-contracts": "^2.1|^3",
  8484. "symfony/polyfill-php80": "^1.16"
  8485. },
  8486. "type": "library",
  8487. "autoload": {
  8488. "psr-4": {
  8489. "Symfony\\Component\\Finder\\": ""
  8490. },
  8491. "exclude-from-classmap": [
  8492. "/Tests/"
  8493. ]
  8494. },
  8495. "notification-url": "https://packagist.org/downloads/",
  8496. "license": [
  8497. "MIT"
  8498. ],
  8499. "authors": [
  8500. {
  8501. "name": "Fabien Potencier",
  8502. "email": "fabien@symfony.com"
  8503. },
  8504. {
  8505. "name": "Symfony Community",
  8506. "homepage": "https://symfony.com/contributors"
  8507. }
  8508. ],
  8509. "description": "Finds files and directories via an intuitive fluent interface",
  8510. "homepage": "https://symfony.com",
  8511. "support": {
  8512. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  8513. },
  8514. "funding": [
  8515. {
  8516. "url": "https://symfony.com/sponsor",
  8517. "type": "custom"
  8518. },
  8519. {
  8520. "url": "https://github.com/fabpot",
  8521. "type": "github"
  8522. },
  8523. {
  8524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8525. "type": "tidelift"
  8526. }
  8527. ],
  8528. "time": "2024-08-13T14:03:51+00:00"
  8529. },
  8530. {
  8531. "name": "symfony/http-client-contracts",
  8532. "version": "v2.5.3",
  8533. "source": {
  8534. "type": "git",
  8535. "url": "https://github.com/symfony/http-client-contracts.git",
  8536. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  8537. },
  8538. "dist": {
  8539. "type": "zip",
  8540. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8541. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8542. "shasum": ""
  8543. },
  8544. "require": {
  8545. "php": ">=7.2.5"
  8546. },
  8547. "suggest": {
  8548. "symfony/http-client-implementation": ""
  8549. },
  8550. "type": "library",
  8551. "extra": {
  8552. "branch-alias": {
  8553. "dev-main": "2.5-dev"
  8554. },
  8555. "thanks": {
  8556. "name": "symfony/contracts",
  8557. "url": "https://github.com/symfony/contracts"
  8558. }
  8559. },
  8560. "autoload": {
  8561. "psr-4": {
  8562. "Symfony\\Contracts\\HttpClient\\": ""
  8563. }
  8564. },
  8565. "notification-url": "https://packagist.org/downloads/",
  8566. "license": [
  8567. "MIT"
  8568. ],
  8569. "authors": [
  8570. {
  8571. "name": "Nicolas Grekas",
  8572. "email": "p@tchwork.com"
  8573. },
  8574. {
  8575. "name": "Symfony Community",
  8576. "homepage": "https://symfony.com/contributors"
  8577. }
  8578. ],
  8579. "description": "Generic abstractions related to HTTP clients",
  8580. "homepage": "https://symfony.com",
  8581. "keywords": [
  8582. "abstractions",
  8583. "contracts",
  8584. "decoupling",
  8585. "interfaces",
  8586. "interoperability",
  8587. "standards"
  8588. ],
  8589. "support": {
  8590. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  8591. },
  8592. "funding": [
  8593. {
  8594. "url": "https://symfony.com/sponsor",
  8595. "type": "custom"
  8596. },
  8597. {
  8598. "url": "https://github.com/fabpot",
  8599. "type": "github"
  8600. },
  8601. {
  8602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8603. "type": "tidelift"
  8604. }
  8605. ],
  8606. "time": "2024-03-26T19:42:53+00:00"
  8607. },
  8608. {
  8609. "name": "symfony/http-foundation",
  8610. "version": "v4.4.49",
  8611. "source": {
  8612. "type": "git",
  8613. "url": "https://github.com/symfony/http-foundation.git",
  8614. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  8615. },
  8616. "dist": {
  8617. "type": "zip",
  8618. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  8619. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  8620. "shasum": ""
  8621. },
  8622. "require": {
  8623. "php": ">=7.1.3",
  8624. "symfony/mime": "^4.3|^5.0",
  8625. "symfony/polyfill-mbstring": "~1.1",
  8626. "symfony/polyfill-php80": "^1.16"
  8627. },
  8628. "require-dev": {
  8629. "predis/predis": "~1.0",
  8630. "symfony/expression-language": "^3.4|^4.0|^5.0"
  8631. },
  8632. "type": "library",
  8633. "autoload": {
  8634. "psr-4": {
  8635. "Symfony\\Component\\HttpFoundation\\": ""
  8636. },
  8637. "exclude-from-classmap": [
  8638. "/Tests/"
  8639. ]
  8640. },
  8641. "notification-url": "https://packagist.org/downloads/",
  8642. "license": [
  8643. "MIT"
  8644. ],
  8645. "authors": [
  8646. {
  8647. "name": "Fabien Potencier",
  8648. "email": "fabien@symfony.com"
  8649. },
  8650. {
  8651. "name": "Symfony Community",
  8652. "homepage": "https://symfony.com/contributors"
  8653. }
  8654. ],
  8655. "description": "Defines an object-oriented layer for the HTTP specification",
  8656. "homepage": "https://symfony.com",
  8657. "support": {
  8658. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  8659. },
  8660. "funding": [
  8661. {
  8662. "url": "https://symfony.com/sponsor",
  8663. "type": "custom"
  8664. },
  8665. {
  8666. "url": "https://github.com/fabpot",
  8667. "type": "github"
  8668. },
  8669. {
  8670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8671. "type": "tidelift"
  8672. }
  8673. ],
  8674. "time": "2022-11-04T16:17:57+00:00"
  8675. },
  8676. {
  8677. "name": "symfony/http-kernel",
  8678. "version": "v4.4.51",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/symfony/http-kernel.git",
  8682. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8687. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8688. "shasum": ""
  8689. },
  8690. "require": {
  8691. "php": ">=7.1.3",
  8692. "psr/log": "^1|^2",
  8693. "symfony/error-handler": "^4.4",
  8694. "symfony/event-dispatcher": "^4.4",
  8695. "symfony/http-client-contracts": "^1.1|^2",
  8696. "symfony/http-foundation": "^4.4.30|^5.3.7",
  8697. "symfony/polyfill-ctype": "^1.8",
  8698. "symfony/polyfill-php73": "^1.9",
  8699. "symfony/polyfill-php80": "^1.16"
  8700. },
  8701. "conflict": {
  8702. "symfony/browser-kit": "<4.3",
  8703. "symfony/config": "<3.4",
  8704. "symfony/console": ">=5",
  8705. "symfony/dependency-injection": "<4.3",
  8706. "symfony/translation": "<4.2",
  8707. "twig/twig": "<1.43|<2.13,>=2"
  8708. },
  8709. "provide": {
  8710. "psr/log-implementation": "1.0|2.0"
  8711. },
  8712. "require-dev": {
  8713. "psr/cache": "^1.0|^2.0|^3.0",
  8714. "symfony/browser-kit": "^4.3|^5.0",
  8715. "symfony/config": "^3.4|^4.0|^5.0",
  8716. "symfony/console": "^3.4|^4.0",
  8717. "symfony/css-selector": "^3.4|^4.0|^5.0",
  8718. "symfony/dependency-injection": "^4.3|^5.0",
  8719. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  8720. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8721. "symfony/finder": "^3.4|^4.0|^5.0",
  8722. "symfony/process": "^3.4|^4.0|^5.0",
  8723. "symfony/routing": "^3.4|^4.0|^5.0",
  8724. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  8725. "symfony/templating": "^3.4|^4.0|^5.0",
  8726. "symfony/translation": "^4.2|^5.0",
  8727. "symfony/translation-contracts": "^1.1|^2",
  8728. "twig/twig": "^1.43|^2.13|^3.0.4"
  8729. },
  8730. "suggest": {
  8731. "symfony/browser-kit": "",
  8732. "symfony/config": "",
  8733. "symfony/console": "",
  8734. "symfony/dependency-injection": ""
  8735. },
  8736. "type": "library",
  8737. "autoload": {
  8738. "psr-4": {
  8739. "Symfony\\Component\\HttpKernel\\": ""
  8740. },
  8741. "exclude-from-classmap": [
  8742. "/Tests/"
  8743. ]
  8744. },
  8745. "notification-url": "https://packagist.org/downloads/",
  8746. "license": [
  8747. "MIT"
  8748. ],
  8749. "authors": [
  8750. {
  8751. "name": "Fabien Potencier",
  8752. "email": "fabien@symfony.com"
  8753. },
  8754. {
  8755. "name": "Symfony Community",
  8756. "homepage": "https://symfony.com/contributors"
  8757. }
  8758. ],
  8759. "description": "Provides a structured process for converting a Request into a Response",
  8760. "homepage": "https://symfony.com",
  8761. "support": {
  8762. "source": "https://github.com/symfony/http-kernel/tree/v4.4.51"
  8763. },
  8764. "funding": [
  8765. {
  8766. "url": "https://symfony.com/sponsor",
  8767. "type": "custom"
  8768. },
  8769. {
  8770. "url": "https://github.com/fabpot",
  8771. "type": "github"
  8772. },
  8773. {
  8774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8775. "type": "tidelift"
  8776. }
  8777. ],
  8778. "time": "2023-11-10T13:31:29+00:00"
  8779. },
  8780. {
  8781. "name": "symfony/mime",
  8782. "version": "v5.4.13",
  8783. "source": {
  8784. "type": "git",
  8785. "url": "https://github.com/symfony/mime.git",
  8786. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  8787. },
  8788. "dist": {
  8789. "type": "zip",
  8790. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8791. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8792. "shasum": ""
  8793. },
  8794. "require": {
  8795. "php": ">=7.2.5",
  8796. "symfony/deprecation-contracts": "^2.1|^3",
  8797. "symfony/polyfill-intl-idn": "^1.10",
  8798. "symfony/polyfill-mbstring": "^1.0",
  8799. "symfony/polyfill-php80": "^1.16"
  8800. },
  8801. "conflict": {
  8802. "egulias/email-validator": "~3.0.0",
  8803. "phpdocumentor/reflection-docblock": "<3.2.2",
  8804. "phpdocumentor/type-resolver": "<1.4.0",
  8805. "symfony/mailer": "<4.4"
  8806. },
  8807. "require-dev": {
  8808. "egulias/email-validator": "^2.1.10|^3.1",
  8809. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8810. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8811. "symfony/property-access": "^4.4|^5.1|^6.0",
  8812. "symfony/property-info": "^4.4|^5.1|^6.0",
  8813. "symfony/serializer": "^5.2|^6.0"
  8814. },
  8815. "type": "library",
  8816. "autoload": {
  8817. "psr-4": {
  8818. "Symfony\\Component\\Mime\\": ""
  8819. },
  8820. "exclude-from-classmap": [
  8821. "/Tests/"
  8822. ]
  8823. },
  8824. "notification-url": "https://packagist.org/downloads/",
  8825. "license": [
  8826. "MIT"
  8827. ],
  8828. "authors": [
  8829. {
  8830. "name": "Fabien Potencier",
  8831. "email": "fabien@symfony.com"
  8832. },
  8833. {
  8834. "name": "Symfony Community",
  8835. "homepage": "https://symfony.com/contributors"
  8836. }
  8837. ],
  8838. "description": "Allows manipulating MIME messages",
  8839. "homepage": "https://symfony.com",
  8840. "keywords": [
  8841. "mime",
  8842. "mime-type"
  8843. ],
  8844. "support": {
  8845. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  8846. },
  8847. "funding": [
  8848. {
  8849. "url": "https://symfony.com/sponsor",
  8850. "type": "custom"
  8851. },
  8852. {
  8853. "url": "https://github.com/fabpot",
  8854. "type": "github"
  8855. },
  8856. {
  8857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8858. "type": "tidelift"
  8859. }
  8860. ],
  8861. "time": "2022-09-01T18:18:29+00:00"
  8862. },
  8863. {
  8864. "name": "symfony/polyfill-ctype",
  8865. "version": "v1.27.0",
  8866. "source": {
  8867. "type": "git",
  8868. "url": "https://github.com/symfony/polyfill-ctype.git",
  8869. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  8870. },
  8871. "dist": {
  8872. "type": "zip",
  8873. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  8874. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  8875. "shasum": ""
  8876. },
  8877. "require": {
  8878. "php": ">=7.1"
  8879. },
  8880. "provide": {
  8881. "ext-ctype": "*"
  8882. },
  8883. "suggest": {
  8884. "ext-ctype": "For best performance"
  8885. },
  8886. "type": "library",
  8887. "extra": {
  8888. "branch-alias": {
  8889. "dev-main": "1.27-dev"
  8890. },
  8891. "thanks": {
  8892. "name": "symfony/polyfill",
  8893. "url": "https://github.com/symfony/polyfill"
  8894. }
  8895. },
  8896. "autoload": {
  8897. "files": [
  8898. "bootstrap.php"
  8899. ],
  8900. "psr-4": {
  8901. "Symfony\\Polyfill\\Ctype\\": ""
  8902. }
  8903. },
  8904. "notification-url": "https://packagist.org/downloads/",
  8905. "license": [
  8906. "MIT"
  8907. ],
  8908. "authors": [
  8909. {
  8910. "name": "Gert de Pagter",
  8911. "email": "BackEndTea@gmail.com"
  8912. },
  8913. {
  8914. "name": "Symfony Community",
  8915. "homepage": "https://symfony.com/contributors"
  8916. }
  8917. ],
  8918. "description": "Symfony polyfill for ctype functions",
  8919. "homepage": "https://symfony.com",
  8920. "keywords": [
  8921. "compatibility",
  8922. "ctype",
  8923. "polyfill",
  8924. "portable"
  8925. ],
  8926. "support": {
  8927. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  8928. },
  8929. "funding": [
  8930. {
  8931. "url": "https://symfony.com/sponsor",
  8932. "type": "custom"
  8933. },
  8934. {
  8935. "url": "https://github.com/fabpot",
  8936. "type": "github"
  8937. },
  8938. {
  8939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8940. "type": "tidelift"
  8941. }
  8942. ],
  8943. "time": "2022-11-03T14:55:06+00:00"
  8944. },
  8945. {
  8946. "name": "symfony/polyfill-iconv",
  8947. "version": "v1.27.0",
  8948. "source": {
  8949. "type": "git",
  8950. "url": "https://github.com/symfony/polyfill-iconv.git",
  8951. "reference": "927013f3aac555983a5059aada98e1907d842695"
  8952. },
  8953. "dist": {
  8954. "type": "zip",
  8955. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  8956. "reference": "927013f3aac555983a5059aada98e1907d842695",
  8957. "shasum": ""
  8958. },
  8959. "require": {
  8960. "php": ">=7.1"
  8961. },
  8962. "provide": {
  8963. "ext-iconv": "*"
  8964. },
  8965. "suggest": {
  8966. "ext-iconv": "For best performance"
  8967. },
  8968. "type": "library",
  8969. "extra": {
  8970. "branch-alias": {
  8971. "dev-main": "1.27-dev"
  8972. },
  8973. "thanks": {
  8974. "name": "symfony/polyfill",
  8975. "url": "https://github.com/symfony/polyfill"
  8976. }
  8977. },
  8978. "autoload": {
  8979. "files": [
  8980. "bootstrap.php"
  8981. ],
  8982. "psr-4": {
  8983. "Symfony\\Polyfill\\Iconv\\": ""
  8984. }
  8985. },
  8986. "notification-url": "https://packagist.org/downloads/",
  8987. "license": [
  8988. "MIT"
  8989. ],
  8990. "authors": [
  8991. {
  8992. "name": "Nicolas Grekas",
  8993. "email": "p@tchwork.com"
  8994. },
  8995. {
  8996. "name": "Symfony Community",
  8997. "homepage": "https://symfony.com/contributors"
  8998. }
  8999. ],
  9000. "description": "Symfony polyfill for the Iconv extension",
  9001. "homepage": "https://symfony.com",
  9002. "keywords": [
  9003. "compatibility",
  9004. "iconv",
  9005. "polyfill",
  9006. "portable",
  9007. "shim"
  9008. ],
  9009. "support": {
  9010. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  9011. },
  9012. "funding": [
  9013. {
  9014. "url": "https://symfony.com/sponsor",
  9015. "type": "custom"
  9016. },
  9017. {
  9018. "url": "https://github.com/fabpot",
  9019. "type": "github"
  9020. },
  9021. {
  9022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9023. "type": "tidelift"
  9024. }
  9025. ],
  9026. "time": "2022-11-03T14:55:06+00:00"
  9027. },
  9028. {
  9029. "name": "symfony/polyfill-intl-idn",
  9030. "version": "v1.27.0",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  9034. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  9039. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  9040. "shasum": ""
  9041. },
  9042. "require": {
  9043. "php": ">=7.1",
  9044. "symfony/polyfill-intl-normalizer": "^1.10",
  9045. "symfony/polyfill-php72": "^1.10"
  9046. },
  9047. "suggest": {
  9048. "ext-intl": "For best performance"
  9049. },
  9050. "type": "library",
  9051. "extra": {
  9052. "branch-alias": {
  9053. "dev-main": "1.27-dev"
  9054. },
  9055. "thanks": {
  9056. "name": "symfony/polyfill",
  9057. "url": "https://github.com/symfony/polyfill"
  9058. }
  9059. },
  9060. "autoload": {
  9061. "files": [
  9062. "bootstrap.php"
  9063. ],
  9064. "psr-4": {
  9065. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9066. }
  9067. },
  9068. "notification-url": "https://packagist.org/downloads/",
  9069. "license": [
  9070. "MIT"
  9071. ],
  9072. "authors": [
  9073. {
  9074. "name": "Laurent Bassin",
  9075. "email": "laurent@bassin.info"
  9076. },
  9077. {
  9078. "name": "Trevor Rowbotham",
  9079. "email": "trevor.rowbotham@pm.me"
  9080. },
  9081. {
  9082. "name": "Symfony Community",
  9083. "homepage": "https://symfony.com/contributors"
  9084. }
  9085. ],
  9086. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9087. "homepage": "https://symfony.com",
  9088. "keywords": [
  9089. "compatibility",
  9090. "idn",
  9091. "intl",
  9092. "polyfill",
  9093. "portable",
  9094. "shim"
  9095. ],
  9096. "support": {
  9097. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  9098. },
  9099. "funding": [
  9100. {
  9101. "url": "https://symfony.com/sponsor",
  9102. "type": "custom"
  9103. },
  9104. {
  9105. "url": "https://github.com/fabpot",
  9106. "type": "github"
  9107. },
  9108. {
  9109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9110. "type": "tidelift"
  9111. }
  9112. ],
  9113. "time": "2022-11-03T14:55:06+00:00"
  9114. },
  9115. {
  9116. "name": "symfony/polyfill-intl-normalizer",
  9117. "version": "v1.27.0",
  9118. "source": {
  9119. "type": "git",
  9120. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9121. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9122. },
  9123. "dist": {
  9124. "type": "zip",
  9125. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9126. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9127. "shasum": ""
  9128. },
  9129. "require": {
  9130. "php": ">=7.1"
  9131. },
  9132. "suggest": {
  9133. "ext-intl": "For best performance"
  9134. },
  9135. "type": "library",
  9136. "extra": {
  9137. "branch-alias": {
  9138. "dev-main": "1.27-dev"
  9139. },
  9140. "thanks": {
  9141. "name": "symfony/polyfill",
  9142. "url": "https://github.com/symfony/polyfill"
  9143. }
  9144. },
  9145. "autoload": {
  9146. "files": [
  9147. "bootstrap.php"
  9148. ],
  9149. "psr-4": {
  9150. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9151. },
  9152. "classmap": [
  9153. "Resources/stubs"
  9154. ]
  9155. },
  9156. "notification-url": "https://packagist.org/downloads/",
  9157. "license": [
  9158. "MIT"
  9159. ],
  9160. "authors": [
  9161. {
  9162. "name": "Nicolas Grekas",
  9163. "email": "p@tchwork.com"
  9164. },
  9165. {
  9166. "name": "Symfony Community",
  9167. "homepage": "https://symfony.com/contributors"
  9168. }
  9169. ],
  9170. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9171. "homepage": "https://symfony.com",
  9172. "keywords": [
  9173. "compatibility",
  9174. "intl",
  9175. "normalizer",
  9176. "polyfill",
  9177. "portable",
  9178. "shim"
  9179. ],
  9180. "support": {
  9181. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9182. },
  9183. "funding": [
  9184. {
  9185. "url": "https://symfony.com/sponsor",
  9186. "type": "custom"
  9187. },
  9188. {
  9189. "url": "https://github.com/fabpot",
  9190. "type": "github"
  9191. },
  9192. {
  9193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9194. "type": "tidelift"
  9195. }
  9196. ],
  9197. "time": "2022-11-03T14:55:06+00:00"
  9198. },
  9199. {
  9200. "name": "symfony/polyfill-mbstring",
  9201. "version": "v1.27.0",
  9202. "source": {
  9203. "type": "git",
  9204. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9205. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9206. },
  9207. "dist": {
  9208. "type": "zip",
  9209. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9210. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9211. "shasum": ""
  9212. },
  9213. "require": {
  9214. "php": ">=7.1"
  9215. },
  9216. "provide": {
  9217. "ext-mbstring": "*"
  9218. },
  9219. "suggest": {
  9220. "ext-mbstring": "For best performance"
  9221. },
  9222. "type": "library",
  9223. "extra": {
  9224. "branch-alias": {
  9225. "dev-main": "1.27-dev"
  9226. },
  9227. "thanks": {
  9228. "name": "symfony/polyfill",
  9229. "url": "https://github.com/symfony/polyfill"
  9230. }
  9231. },
  9232. "autoload": {
  9233. "files": [
  9234. "bootstrap.php"
  9235. ],
  9236. "psr-4": {
  9237. "Symfony\\Polyfill\\Mbstring\\": ""
  9238. }
  9239. },
  9240. "notification-url": "https://packagist.org/downloads/",
  9241. "license": [
  9242. "MIT"
  9243. ],
  9244. "authors": [
  9245. {
  9246. "name": "Nicolas Grekas",
  9247. "email": "p@tchwork.com"
  9248. },
  9249. {
  9250. "name": "Symfony Community",
  9251. "homepage": "https://symfony.com/contributors"
  9252. }
  9253. ],
  9254. "description": "Symfony polyfill for the Mbstring extension",
  9255. "homepage": "https://symfony.com",
  9256. "keywords": [
  9257. "compatibility",
  9258. "mbstring",
  9259. "polyfill",
  9260. "portable",
  9261. "shim"
  9262. ],
  9263. "support": {
  9264. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  9265. },
  9266. "funding": [
  9267. {
  9268. "url": "https://symfony.com/sponsor",
  9269. "type": "custom"
  9270. },
  9271. {
  9272. "url": "https://github.com/fabpot",
  9273. "type": "github"
  9274. },
  9275. {
  9276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9277. "type": "tidelift"
  9278. }
  9279. ],
  9280. "time": "2022-11-03T14:55:06+00:00"
  9281. },
  9282. {
  9283. "name": "symfony/polyfill-php72",
  9284. "version": "v1.31.0",
  9285. "source": {
  9286. "type": "git",
  9287. "url": "https://github.com/symfony/polyfill-php72.git",
  9288. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  9289. },
  9290. "dist": {
  9291. "type": "zip",
  9292. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9293. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9294. "shasum": ""
  9295. },
  9296. "require": {
  9297. "php": ">=7.2"
  9298. },
  9299. "type": "metapackage",
  9300. "extra": {
  9301. "thanks": {
  9302. "name": "symfony/polyfill",
  9303. "url": "https://github.com/symfony/polyfill"
  9304. }
  9305. },
  9306. "notification-url": "https://packagist.org/downloads/",
  9307. "license": [
  9308. "MIT"
  9309. ],
  9310. "authors": [
  9311. {
  9312. "name": "Nicolas Grekas",
  9313. "email": "p@tchwork.com"
  9314. },
  9315. {
  9316. "name": "Symfony Community",
  9317. "homepage": "https://symfony.com/contributors"
  9318. }
  9319. ],
  9320. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9321. "homepage": "https://symfony.com",
  9322. "keywords": [
  9323. "compatibility",
  9324. "polyfill",
  9325. "portable",
  9326. "shim"
  9327. ],
  9328. "support": {
  9329. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  9330. },
  9331. "funding": [
  9332. {
  9333. "url": "https://symfony.com/sponsor",
  9334. "type": "custom"
  9335. },
  9336. {
  9337. "url": "https://github.com/fabpot",
  9338. "type": "github"
  9339. },
  9340. {
  9341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9342. "type": "tidelift"
  9343. }
  9344. ],
  9345. "time": "2024-09-09T11:45:10+00:00"
  9346. },
  9347. {
  9348. "name": "symfony/polyfill-php73",
  9349. "version": "v1.31.0",
  9350. "source": {
  9351. "type": "git",
  9352. "url": "https://github.com/symfony/polyfill-php73.git",
  9353. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  9354. },
  9355. "dist": {
  9356. "type": "zip",
  9357. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9358. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9359. "shasum": ""
  9360. },
  9361. "require": {
  9362. "php": ">=7.2"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "thanks": {
  9367. "name": "symfony/polyfill",
  9368. "url": "https://github.com/symfony/polyfill"
  9369. }
  9370. },
  9371. "autoload": {
  9372. "files": [
  9373. "bootstrap.php"
  9374. ],
  9375. "psr-4": {
  9376. "Symfony\\Polyfill\\Php73\\": ""
  9377. },
  9378. "classmap": [
  9379. "Resources/stubs"
  9380. ]
  9381. },
  9382. "notification-url": "https://packagist.org/downloads/",
  9383. "license": [
  9384. "MIT"
  9385. ],
  9386. "authors": [
  9387. {
  9388. "name": "Nicolas Grekas",
  9389. "email": "p@tchwork.com"
  9390. },
  9391. {
  9392. "name": "Symfony Community",
  9393. "homepage": "https://symfony.com/contributors"
  9394. }
  9395. ],
  9396. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9397. "homepage": "https://symfony.com",
  9398. "keywords": [
  9399. "compatibility",
  9400. "polyfill",
  9401. "portable",
  9402. "shim"
  9403. ],
  9404. "support": {
  9405. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  9406. },
  9407. "funding": [
  9408. {
  9409. "url": "https://symfony.com/sponsor",
  9410. "type": "custom"
  9411. },
  9412. {
  9413. "url": "https://github.com/fabpot",
  9414. "type": "github"
  9415. },
  9416. {
  9417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9418. "type": "tidelift"
  9419. }
  9420. ],
  9421. "time": "2024-09-09T11:45:10+00:00"
  9422. },
  9423. {
  9424. "name": "symfony/polyfill-php80",
  9425. "version": "v1.27.0",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/symfony/polyfill-php80.git",
  9429. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9434. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9435. "shasum": ""
  9436. },
  9437. "require": {
  9438. "php": ">=7.1"
  9439. },
  9440. "type": "library",
  9441. "extra": {
  9442. "branch-alias": {
  9443. "dev-main": "1.27-dev"
  9444. },
  9445. "thanks": {
  9446. "name": "symfony/polyfill",
  9447. "url": "https://github.com/symfony/polyfill"
  9448. }
  9449. },
  9450. "autoload": {
  9451. "files": [
  9452. "bootstrap.php"
  9453. ],
  9454. "psr-4": {
  9455. "Symfony\\Polyfill\\Php80\\": ""
  9456. },
  9457. "classmap": [
  9458. "Resources/stubs"
  9459. ]
  9460. },
  9461. "notification-url": "https://packagist.org/downloads/",
  9462. "license": [
  9463. "MIT"
  9464. ],
  9465. "authors": [
  9466. {
  9467. "name": "Ion Bazan",
  9468. "email": "ion.bazan@gmail.com"
  9469. },
  9470. {
  9471. "name": "Nicolas Grekas",
  9472. "email": "p@tchwork.com"
  9473. },
  9474. {
  9475. "name": "Symfony Community",
  9476. "homepage": "https://symfony.com/contributors"
  9477. }
  9478. ],
  9479. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9480. "homepage": "https://symfony.com",
  9481. "keywords": [
  9482. "compatibility",
  9483. "polyfill",
  9484. "portable",
  9485. "shim"
  9486. ],
  9487. "support": {
  9488. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  9489. },
  9490. "funding": [
  9491. {
  9492. "url": "https://symfony.com/sponsor",
  9493. "type": "custom"
  9494. },
  9495. {
  9496. "url": "https://github.com/fabpot",
  9497. "type": "github"
  9498. },
  9499. {
  9500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9501. "type": "tidelift"
  9502. }
  9503. ],
  9504. "time": "2022-11-03T14:55:06+00:00"
  9505. },
  9506. {
  9507. "name": "symfony/process",
  9508. "version": "v4.4.44",
  9509. "source": {
  9510. "type": "git",
  9511. "url": "https://github.com/symfony/process.git",
  9512. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  9513. },
  9514. "dist": {
  9515. "type": "zip",
  9516. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9517. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9518. "shasum": ""
  9519. },
  9520. "require": {
  9521. "php": ">=7.1.3",
  9522. "symfony/polyfill-php80": "^1.16"
  9523. },
  9524. "type": "library",
  9525. "autoload": {
  9526. "psr-4": {
  9527. "Symfony\\Component\\Process\\": ""
  9528. },
  9529. "exclude-from-classmap": [
  9530. "/Tests/"
  9531. ]
  9532. },
  9533. "notification-url": "https://packagist.org/downloads/",
  9534. "license": [
  9535. "MIT"
  9536. ],
  9537. "authors": [
  9538. {
  9539. "name": "Fabien Potencier",
  9540. "email": "fabien@symfony.com"
  9541. },
  9542. {
  9543. "name": "Symfony Community",
  9544. "homepage": "https://symfony.com/contributors"
  9545. }
  9546. ],
  9547. "description": "Executes commands in sub-processes",
  9548. "homepage": "https://symfony.com",
  9549. "support": {
  9550. "source": "https://github.com/symfony/process/tree/v4.4.44"
  9551. },
  9552. "funding": [
  9553. {
  9554. "url": "https://symfony.com/sponsor",
  9555. "type": "custom"
  9556. },
  9557. {
  9558. "url": "https://github.com/fabpot",
  9559. "type": "github"
  9560. },
  9561. {
  9562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9563. "type": "tidelift"
  9564. }
  9565. ],
  9566. "time": "2022-06-27T13:16:42+00:00"
  9567. },
  9568. {
  9569. "name": "symfony/psr-http-message-bridge",
  9570. "version": "v2.1.4",
  9571. "source": {
  9572. "type": "git",
  9573. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9574. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  9575. },
  9576. "dist": {
  9577. "type": "zip",
  9578. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  9579. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  9580. "shasum": ""
  9581. },
  9582. "require": {
  9583. "php": ">=7.1",
  9584. "psr/http-message": "^1.0",
  9585. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9586. },
  9587. "require-dev": {
  9588. "nyholm/psr7": "^1.1",
  9589. "psr/log": "^1.1 || ^2 || ^3",
  9590. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9591. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9592. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9593. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9594. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9595. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9596. },
  9597. "suggest": {
  9598. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9599. },
  9600. "type": "symfony-bridge",
  9601. "extra": {
  9602. "branch-alias": {
  9603. "dev-main": "2.1-dev"
  9604. }
  9605. },
  9606. "autoload": {
  9607. "psr-4": {
  9608. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9609. },
  9610. "exclude-from-classmap": [
  9611. "/Tests/"
  9612. ]
  9613. },
  9614. "notification-url": "https://packagist.org/downloads/",
  9615. "license": [
  9616. "MIT"
  9617. ],
  9618. "authors": [
  9619. {
  9620. "name": "Fabien Potencier",
  9621. "email": "fabien@symfony.com"
  9622. },
  9623. {
  9624. "name": "Symfony Community",
  9625. "homepage": "http://symfony.com/contributors"
  9626. }
  9627. ],
  9628. "description": "PSR HTTP message bridge",
  9629. "homepage": "http://symfony.com",
  9630. "keywords": [
  9631. "http",
  9632. "http-message",
  9633. "psr-17",
  9634. "psr-7"
  9635. ],
  9636. "support": {
  9637. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9638. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  9639. },
  9640. "funding": [
  9641. {
  9642. "url": "https://symfony.com/sponsor",
  9643. "type": "custom"
  9644. },
  9645. {
  9646. "url": "https://github.com/fabpot",
  9647. "type": "github"
  9648. },
  9649. {
  9650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9651. "type": "tidelift"
  9652. }
  9653. ],
  9654. "time": "2022-11-28T22:46:34+00:00"
  9655. },
  9656. {
  9657. "name": "symfony/routing",
  9658. "version": "v4.4.44",
  9659. "source": {
  9660. "type": "git",
  9661. "url": "https://github.com/symfony/routing.git",
  9662. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  9663. },
  9664. "dist": {
  9665. "type": "zip",
  9666. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9667. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9668. "shasum": ""
  9669. },
  9670. "require": {
  9671. "php": ">=7.1.3",
  9672. "symfony/polyfill-php80": "^1.16"
  9673. },
  9674. "conflict": {
  9675. "symfony/config": "<4.2",
  9676. "symfony/dependency-injection": "<3.4",
  9677. "symfony/yaml": "<3.4"
  9678. },
  9679. "require-dev": {
  9680. "doctrine/annotations": "^1.10.4",
  9681. "psr/log": "^1|^2|^3",
  9682. "symfony/config": "^4.2|^5.0",
  9683. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9684. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9685. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9686. "symfony/yaml": "^3.4|^4.0|^5.0"
  9687. },
  9688. "suggest": {
  9689. "doctrine/annotations": "For using the annotation loader",
  9690. "symfony/config": "For using the all-in-one router or any loader",
  9691. "symfony/expression-language": "For using expression matching",
  9692. "symfony/http-foundation": "For using a Symfony Request object",
  9693. "symfony/yaml": "For using the YAML loader"
  9694. },
  9695. "type": "library",
  9696. "autoload": {
  9697. "psr-4": {
  9698. "Symfony\\Component\\Routing\\": ""
  9699. },
  9700. "exclude-from-classmap": [
  9701. "/Tests/"
  9702. ]
  9703. },
  9704. "notification-url": "https://packagist.org/downloads/",
  9705. "license": [
  9706. "MIT"
  9707. ],
  9708. "authors": [
  9709. {
  9710. "name": "Fabien Potencier",
  9711. "email": "fabien@symfony.com"
  9712. },
  9713. {
  9714. "name": "Symfony Community",
  9715. "homepage": "https://symfony.com/contributors"
  9716. }
  9717. ],
  9718. "description": "Maps an HTTP request to a set of configuration variables",
  9719. "homepage": "https://symfony.com",
  9720. "keywords": [
  9721. "router",
  9722. "routing",
  9723. "uri",
  9724. "url"
  9725. ],
  9726. "support": {
  9727. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  9728. },
  9729. "funding": [
  9730. {
  9731. "url": "https://symfony.com/sponsor",
  9732. "type": "custom"
  9733. },
  9734. {
  9735. "url": "https://github.com/fabpot",
  9736. "type": "github"
  9737. },
  9738. {
  9739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9740. "type": "tidelift"
  9741. }
  9742. ],
  9743. "time": "2022-07-20T09:59:04+00:00"
  9744. },
  9745. {
  9746. "name": "symfony/serializer",
  9747. "version": "v4.4.47",
  9748. "source": {
  9749. "type": "git",
  9750. "url": "https://github.com/symfony/serializer.git",
  9751. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d"
  9752. },
  9753. "dist": {
  9754. "type": "zip",
  9755. "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d",
  9756. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d",
  9757. "shasum": ""
  9758. },
  9759. "require": {
  9760. "php": ">=7.1.3",
  9761. "symfony/polyfill-ctype": "~1.8",
  9762. "symfony/polyfill-php80": "^1.16"
  9763. },
  9764. "conflict": {
  9765. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  9766. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  9767. "symfony/dependency-injection": "<3.4",
  9768. "symfony/property-access": "<3.4",
  9769. "symfony/property-info": "<3.4",
  9770. "symfony/yaml": "<3.4"
  9771. },
  9772. "require-dev": {
  9773. "doctrine/annotations": "^1.10.4",
  9774. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9775. "symfony/cache": "^3.4|^4.0|^5.0",
  9776. "symfony/config": "^3.4|^4.0|^5.0",
  9777. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9778. "symfony/error-handler": "^4.4|^5.0",
  9779. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9780. "symfony/mime": "^4.4|^5.0",
  9781. "symfony/property-access": "^4.4.36|^5.3.13",
  9782. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  9783. "symfony/validator": "^3.4|^4.0|^5.0",
  9784. "symfony/yaml": "^3.4|^4.0|^5.0"
  9785. },
  9786. "suggest": {
  9787. "doctrine/annotations": "For using the annotation mapping.",
  9788. "psr/cache-implementation": "For using the metadata cache.",
  9789. "symfony/config": "For using the XML mapping loader.",
  9790. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9791. "symfony/property-access": "For using the ObjectNormalizer.",
  9792. "symfony/property-info": "To deserialize relations.",
  9793. "symfony/yaml": "For using the default YAML mapping loader."
  9794. },
  9795. "type": "library",
  9796. "autoload": {
  9797. "psr-4": {
  9798. "Symfony\\Component\\Serializer\\": ""
  9799. },
  9800. "exclude-from-classmap": [
  9801. "/Tests/"
  9802. ]
  9803. },
  9804. "notification-url": "https://packagist.org/downloads/",
  9805. "license": [
  9806. "MIT"
  9807. ],
  9808. "authors": [
  9809. {
  9810. "name": "Fabien Potencier",
  9811. "email": "fabien@symfony.com"
  9812. },
  9813. {
  9814. "name": "Symfony Community",
  9815. "homepage": "https://symfony.com/contributors"
  9816. }
  9817. ],
  9818. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9819. "homepage": "https://symfony.com",
  9820. "support": {
  9821. "source": "https://github.com/symfony/serializer/tree/v4.4.47"
  9822. },
  9823. "funding": [
  9824. {
  9825. "url": "https://symfony.com/sponsor",
  9826. "type": "custom"
  9827. },
  9828. {
  9829. "url": "https://github.com/fabpot",
  9830. "type": "github"
  9831. },
  9832. {
  9833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9834. "type": "tidelift"
  9835. }
  9836. ],
  9837. "time": "2022-09-19T08:38:33+00:00"
  9838. },
  9839. {
  9840. "name": "symfony/service-contracts",
  9841. "version": "v2.5.3",
  9842. "source": {
  9843. "type": "git",
  9844. "url": "https://github.com/symfony/service-contracts.git",
  9845. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  9846. },
  9847. "dist": {
  9848. "type": "zip",
  9849. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9850. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9851. "shasum": ""
  9852. },
  9853. "require": {
  9854. "php": ">=7.2.5",
  9855. "psr/container": "^1.1",
  9856. "symfony/deprecation-contracts": "^2.1|^3"
  9857. },
  9858. "conflict": {
  9859. "ext-psr": "<1.1|>=2"
  9860. },
  9861. "suggest": {
  9862. "symfony/service-implementation": ""
  9863. },
  9864. "type": "library",
  9865. "extra": {
  9866. "branch-alias": {
  9867. "dev-main": "2.5-dev"
  9868. },
  9869. "thanks": {
  9870. "name": "symfony/contracts",
  9871. "url": "https://github.com/symfony/contracts"
  9872. }
  9873. },
  9874. "autoload": {
  9875. "psr-4": {
  9876. "Symfony\\Contracts\\Service\\": ""
  9877. }
  9878. },
  9879. "notification-url": "https://packagist.org/downloads/",
  9880. "license": [
  9881. "MIT"
  9882. ],
  9883. "authors": [
  9884. {
  9885. "name": "Nicolas Grekas",
  9886. "email": "p@tchwork.com"
  9887. },
  9888. {
  9889. "name": "Symfony Community",
  9890. "homepage": "https://symfony.com/contributors"
  9891. }
  9892. ],
  9893. "description": "Generic abstractions related to writing services",
  9894. "homepage": "https://symfony.com",
  9895. "keywords": [
  9896. "abstractions",
  9897. "contracts",
  9898. "decoupling",
  9899. "interfaces",
  9900. "interoperability",
  9901. "standards"
  9902. ],
  9903. "support": {
  9904. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  9905. },
  9906. "funding": [
  9907. {
  9908. "url": "https://symfony.com/sponsor",
  9909. "type": "custom"
  9910. },
  9911. {
  9912. "url": "https://github.com/fabpot",
  9913. "type": "github"
  9914. },
  9915. {
  9916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9917. "type": "tidelift"
  9918. }
  9919. ],
  9920. "time": "2023-04-21T15:04:16+00:00"
  9921. },
  9922. {
  9923. "name": "symfony/translation",
  9924. "version": "v4.4.47",
  9925. "source": {
  9926. "type": "git",
  9927. "url": "https://github.com/symfony/translation.git",
  9928. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  9929. },
  9930. "dist": {
  9931. "type": "zip",
  9932. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9933. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9934. "shasum": ""
  9935. },
  9936. "require": {
  9937. "php": ">=7.1.3",
  9938. "symfony/polyfill-mbstring": "~1.0",
  9939. "symfony/polyfill-php80": "^1.16",
  9940. "symfony/translation-contracts": "^1.1.6|^2"
  9941. },
  9942. "conflict": {
  9943. "symfony/config": "<3.4",
  9944. "symfony/dependency-injection": "<3.4",
  9945. "symfony/http-kernel": "<4.4",
  9946. "symfony/yaml": "<3.4"
  9947. },
  9948. "provide": {
  9949. "symfony/translation-implementation": "1.0|2.0"
  9950. },
  9951. "require-dev": {
  9952. "psr/log": "^1|^2|^3",
  9953. "symfony/config": "^3.4|^4.0|^5.0",
  9954. "symfony/console": "^3.4|^4.0|^5.0",
  9955. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9956. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  9957. "symfony/http-kernel": "^4.4",
  9958. "symfony/intl": "^3.4|^4.0|^5.0",
  9959. "symfony/service-contracts": "^1.1.2|^2",
  9960. "symfony/yaml": "^3.4|^4.0|^5.0"
  9961. },
  9962. "suggest": {
  9963. "psr/log-implementation": "To use logging capability in translator",
  9964. "symfony/config": "",
  9965. "symfony/yaml": ""
  9966. },
  9967. "type": "library",
  9968. "autoload": {
  9969. "psr-4": {
  9970. "Symfony\\Component\\Translation\\": ""
  9971. },
  9972. "exclude-from-classmap": [
  9973. "/Tests/"
  9974. ]
  9975. },
  9976. "notification-url": "https://packagist.org/downloads/",
  9977. "license": [
  9978. "MIT"
  9979. ],
  9980. "authors": [
  9981. {
  9982. "name": "Fabien Potencier",
  9983. "email": "fabien@symfony.com"
  9984. },
  9985. {
  9986. "name": "Symfony Community",
  9987. "homepage": "https://symfony.com/contributors"
  9988. }
  9989. ],
  9990. "description": "Provides tools to internationalize your application",
  9991. "homepage": "https://symfony.com",
  9992. "support": {
  9993. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  9994. },
  9995. "funding": [
  9996. {
  9997. "url": "https://symfony.com/sponsor",
  9998. "type": "custom"
  9999. },
  10000. {
  10001. "url": "https://github.com/fabpot",
  10002. "type": "github"
  10003. },
  10004. {
  10005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10006. "type": "tidelift"
  10007. }
  10008. ],
  10009. "time": "2022-10-03T15:15:11+00:00"
  10010. },
  10011. {
  10012. "name": "symfony/translation-contracts",
  10013. "version": "v2.5.3",
  10014. "source": {
  10015. "type": "git",
  10016. "url": "https://github.com/symfony/translation-contracts.git",
  10017. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  10018. },
  10019. "dist": {
  10020. "type": "zip",
  10021. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  10022. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  10023. "shasum": ""
  10024. },
  10025. "require": {
  10026. "php": ">=7.2.5"
  10027. },
  10028. "suggest": {
  10029. "symfony/translation-implementation": ""
  10030. },
  10031. "type": "library",
  10032. "extra": {
  10033. "branch-alias": {
  10034. "dev-main": "2.5-dev"
  10035. },
  10036. "thanks": {
  10037. "name": "symfony/contracts",
  10038. "url": "https://github.com/symfony/contracts"
  10039. }
  10040. },
  10041. "autoload": {
  10042. "psr-4": {
  10043. "Symfony\\Contracts\\Translation\\": ""
  10044. }
  10045. },
  10046. "notification-url": "https://packagist.org/downloads/",
  10047. "license": [
  10048. "MIT"
  10049. ],
  10050. "authors": [
  10051. {
  10052. "name": "Nicolas Grekas",
  10053. "email": "p@tchwork.com"
  10054. },
  10055. {
  10056. "name": "Symfony Community",
  10057. "homepage": "https://symfony.com/contributors"
  10058. }
  10059. ],
  10060. "description": "Generic abstractions related to translation",
  10061. "homepage": "https://symfony.com",
  10062. "keywords": [
  10063. "abstractions",
  10064. "contracts",
  10065. "decoupling",
  10066. "interfaces",
  10067. "interoperability",
  10068. "standards"
  10069. ],
  10070. "support": {
  10071. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  10072. },
  10073. "funding": [
  10074. {
  10075. "url": "https://symfony.com/sponsor",
  10076. "type": "custom"
  10077. },
  10078. {
  10079. "url": "https://github.com/fabpot",
  10080. "type": "github"
  10081. },
  10082. {
  10083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10084. "type": "tidelift"
  10085. }
  10086. ],
  10087. "time": "2024-01-23T13:51:25+00:00"
  10088. },
  10089. {
  10090. "name": "symfony/validator",
  10091. "version": "v4.4.48",
  10092. "source": {
  10093. "type": "git",
  10094. "url": "https://github.com/symfony/validator.git",
  10095. "reference": "54781a4c41efbd283b779110bf8ae7f263737775"
  10096. },
  10097. "dist": {
  10098. "type": "zip",
  10099. "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775",
  10100. "reference": "54781a4c41efbd283b779110bf8ae7f263737775",
  10101. "shasum": ""
  10102. },
  10103. "require": {
  10104. "php": ">=7.1.3",
  10105. "symfony/polyfill-ctype": "~1.8",
  10106. "symfony/polyfill-mbstring": "~1.0",
  10107. "symfony/polyfill-php80": "^1.16",
  10108. "symfony/translation-contracts": "^1.1|^2"
  10109. },
  10110. "conflict": {
  10111. "doctrine/lexer": "<1.1",
  10112. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10113. "symfony/dependency-injection": "<3.4",
  10114. "symfony/http-kernel": "<4.4",
  10115. "symfony/intl": "<4.3",
  10116. "symfony/translation": ">=5.0",
  10117. "symfony/yaml": "<3.4"
  10118. },
  10119. "require-dev": {
  10120. "doctrine/annotations": "^1.10.4",
  10121. "doctrine/cache": "^1.0|^2.0",
  10122. "egulias/email-validator": "^2.1.10|^3",
  10123. "symfony/cache": "^3.4|^4.0|^5.0",
  10124. "symfony/config": "^3.4|^4.0|^5.0",
  10125. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10126. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10127. "symfony/http-client": "^4.3|^5.0",
  10128. "symfony/http-foundation": "^4.1|^5.0",
  10129. "symfony/http-kernel": "^4.4",
  10130. "symfony/intl": "^4.3|^5.0",
  10131. "symfony/mime": "^4.4|^5.0",
  10132. "symfony/property-access": "^3.4|^4.0|^5.0",
  10133. "symfony/property-info": "^3.4|^4.0|^5.0",
  10134. "symfony/translation": "^4.2",
  10135. "symfony/yaml": "^3.4|^4.0|^5.0"
  10136. },
  10137. "suggest": {
  10138. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10139. "doctrine/cache": "For using the default cached annotation reader.",
  10140. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10141. "psr/cache-implementation": "For using the mapping cache.",
  10142. "symfony/config": "",
  10143. "symfony/expression-language": "For using the Expression validator",
  10144. "symfony/http-foundation": "",
  10145. "symfony/intl": "",
  10146. "symfony/property-access": "For accessing properties within comparison constraints",
  10147. "symfony/property-info": "To automatically add NotNull and Type constraints",
  10148. "symfony/translation": "For translating validation errors.",
  10149. "symfony/yaml": ""
  10150. },
  10151. "type": "library",
  10152. "autoload": {
  10153. "psr-4": {
  10154. "Symfony\\Component\\Validator\\": ""
  10155. },
  10156. "exclude-from-classmap": [
  10157. "/Tests/"
  10158. ]
  10159. },
  10160. "notification-url": "https://packagist.org/downloads/",
  10161. "license": [
  10162. "MIT"
  10163. ],
  10164. "authors": [
  10165. {
  10166. "name": "Fabien Potencier",
  10167. "email": "fabien@symfony.com"
  10168. },
  10169. {
  10170. "name": "Symfony Community",
  10171. "homepage": "https://symfony.com/contributors"
  10172. }
  10173. ],
  10174. "description": "Provides tools to validate values",
  10175. "homepage": "https://symfony.com",
  10176. "support": {
  10177. "source": "https://github.com/symfony/validator/tree/v4.4.48"
  10178. },
  10179. "funding": [
  10180. {
  10181. "url": "https://symfony.com/sponsor",
  10182. "type": "custom"
  10183. },
  10184. {
  10185. "url": "https://github.com/fabpot",
  10186. "type": "github"
  10187. },
  10188. {
  10189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10190. "type": "tidelift"
  10191. }
  10192. ],
  10193. "time": "2022-10-25T13:54:11+00:00"
  10194. },
  10195. {
  10196. "name": "symfony/var-dumper",
  10197. "version": "v5.4.43",
  10198. "source": {
  10199. "type": "git",
  10200. "url": "https://github.com/symfony/var-dumper.git",
  10201. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef"
  10202. },
  10203. "dist": {
  10204. "type": "zip",
  10205. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef",
  10206. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef",
  10207. "shasum": ""
  10208. },
  10209. "require": {
  10210. "php": ">=7.2.5",
  10211. "symfony/polyfill-mbstring": "~1.0",
  10212. "symfony/polyfill-php80": "^1.16"
  10213. },
  10214. "conflict": {
  10215. "symfony/console": "<4.4"
  10216. },
  10217. "require-dev": {
  10218. "ext-iconv": "*",
  10219. "symfony/console": "^4.4|^5.0|^6.0",
  10220. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  10221. "symfony/process": "^4.4|^5.0|^6.0",
  10222. "symfony/uid": "^5.1|^6.0",
  10223. "twig/twig": "^2.13|^3.0.4"
  10224. },
  10225. "suggest": {
  10226. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10227. "ext-intl": "To show region name in time zone dump",
  10228. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10229. },
  10230. "bin": [
  10231. "Resources/bin/var-dump-server"
  10232. ],
  10233. "type": "library",
  10234. "autoload": {
  10235. "files": [
  10236. "Resources/functions/dump.php"
  10237. ],
  10238. "psr-4": {
  10239. "Symfony\\Component\\VarDumper\\": ""
  10240. },
  10241. "exclude-from-classmap": [
  10242. "/Tests/"
  10243. ]
  10244. },
  10245. "notification-url": "https://packagist.org/downloads/",
  10246. "license": [
  10247. "MIT"
  10248. ],
  10249. "authors": [
  10250. {
  10251. "name": "Nicolas Grekas",
  10252. "email": "p@tchwork.com"
  10253. },
  10254. {
  10255. "name": "Symfony Community",
  10256. "homepage": "https://symfony.com/contributors"
  10257. }
  10258. ],
  10259. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10260. "homepage": "https://symfony.com",
  10261. "keywords": [
  10262. "debug",
  10263. "dump"
  10264. ],
  10265. "support": {
  10266. "source": "https://github.com/symfony/var-dumper/tree/v5.4.43"
  10267. },
  10268. "funding": [
  10269. {
  10270. "url": "https://symfony.com/sponsor",
  10271. "type": "custom"
  10272. },
  10273. {
  10274. "url": "https://github.com/fabpot",
  10275. "type": "github"
  10276. },
  10277. {
  10278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10279. "type": "tidelift"
  10280. }
  10281. ],
  10282. "time": "2024-08-30T16:01:46+00:00"
  10283. },
  10284. {
  10285. "name": "symfony/yaml",
  10286. "version": "v4.4.45",
  10287. "source": {
  10288. "type": "git",
  10289. "url": "https://github.com/symfony/yaml.git",
  10290. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  10291. },
  10292. "dist": {
  10293. "type": "zip",
  10294. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10295. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10296. "shasum": ""
  10297. },
  10298. "require": {
  10299. "php": ">=7.1.3",
  10300. "symfony/polyfill-ctype": "~1.8"
  10301. },
  10302. "conflict": {
  10303. "symfony/console": "<3.4"
  10304. },
  10305. "require-dev": {
  10306. "symfony/console": "^3.4|^4.0|^5.0"
  10307. },
  10308. "suggest": {
  10309. "symfony/console": "For validating YAML files using the lint command"
  10310. },
  10311. "type": "library",
  10312. "autoload": {
  10313. "psr-4": {
  10314. "Symfony\\Component\\Yaml\\": ""
  10315. },
  10316. "exclude-from-classmap": [
  10317. "/Tests/"
  10318. ]
  10319. },
  10320. "notification-url": "https://packagist.org/downloads/",
  10321. "license": [
  10322. "MIT"
  10323. ],
  10324. "authors": [
  10325. {
  10326. "name": "Fabien Potencier",
  10327. "email": "fabien@symfony.com"
  10328. },
  10329. {
  10330. "name": "Symfony Community",
  10331. "homepage": "https://symfony.com/contributors"
  10332. }
  10333. ],
  10334. "description": "Loads and dumps YAML files",
  10335. "homepage": "https://symfony.com",
  10336. "support": {
  10337. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  10338. },
  10339. "funding": [
  10340. {
  10341. "url": "https://symfony.com/sponsor",
  10342. "type": "custom"
  10343. },
  10344. {
  10345. "url": "https://github.com/fabpot",
  10346. "type": "github"
  10347. },
  10348. {
  10349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10350. "type": "tidelift"
  10351. }
  10352. ],
  10353. "time": "2022-08-02T15:47:23+00:00"
  10354. },
  10355. {
  10356. "name": "twig/twig",
  10357. "version": "v2.15.6",
  10358. "source": {
  10359. "type": "git",
  10360. "url": "https://github.com/twigphp/Twig.git",
  10361. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d"
  10362. },
  10363. "dist": {
  10364. "type": "zip",
  10365. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ad637405a828601a56f32ccab9a85541c4b66c9d",
  10366. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d",
  10367. "shasum": ""
  10368. },
  10369. "require": {
  10370. "php": ">=7.1.3",
  10371. "symfony/polyfill-ctype": "^1.8",
  10372. "symfony/polyfill-mbstring": "^1.3",
  10373. "symfony/polyfill-php72": "^1.8"
  10374. },
  10375. "require-dev": {
  10376. "psr/container": "^1.0",
  10377. "symfony/phpunit-bridge": "^5.4.9|^6.3"
  10378. },
  10379. "type": "library",
  10380. "extra": {
  10381. "branch-alias": {
  10382. "dev-master": "2.15-dev"
  10383. }
  10384. },
  10385. "autoload": {
  10386. "psr-0": {
  10387. "Twig_": "lib/"
  10388. },
  10389. "psr-4": {
  10390. "Twig\\": "src/"
  10391. }
  10392. },
  10393. "notification-url": "https://packagist.org/downloads/",
  10394. "license": [
  10395. "BSD-3-Clause"
  10396. ],
  10397. "authors": [
  10398. {
  10399. "name": "Fabien Potencier",
  10400. "email": "fabien@symfony.com",
  10401. "homepage": "http://fabien.potencier.org",
  10402. "role": "Lead Developer"
  10403. },
  10404. {
  10405. "name": "Twig Team",
  10406. "role": "Contributors"
  10407. },
  10408. {
  10409. "name": "Armin Ronacher",
  10410. "email": "armin.ronacher@active-4.com",
  10411. "role": "Project Founder"
  10412. }
  10413. ],
  10414. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10415. "homepage": "https://twig.symfony.com",
  10416. "keywords": [
  10417. "templating"
  10418. ],
  10419. "support": {
  10420. "issues": "https://github.com/twigphp/Twig/issues",
  10421. "source": "https://github.com/twigphp/Twig/tree/v2.15.6"
  10422. },
  10423. "funding": [
  10424. {
  10425. "url": "https://github.com/fabpot",
  10426. "type": "github"
  10427. },
  10428. {
  10429. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10430. "type": "tidelift"
  10431. }
  10432. ],
  10433. "time": "2023-11-21T17:34:48+00:00"
  10434. },
  10435. {
  10436. "name": "typo3/phar-stream-wrapper",
  10437. "version": "v3.1.7",
  10438. "source": {
  10439. "type": "git",
  10440. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10441. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  10442. },
  10443. "dist": {
  10444. "type": "zip",
  10445. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10446. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10447. "shasum": ""
  10448. },
  10449. "require": {
  10450. "ext-json": "*",
  10451. "php": "^7.0 || ^8.0"
  10452. },
  10453. "require-dev": {
  10454. "ext-xdebug": "*",
  10455. "phpspec/prophecy": "^1.10",
  10456. "symfony/phpunit-bridge": "^5.1"
  10457. },
  10458. "suggest": {
  10459. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10460. },
  10461. "type": "library",
  10462. "extra": {
  10463. "branch-alias": {
  10464. "dev-master": "v3.x-dev"
  10465. }
  10466. },
  10467. "autoload": {
  10468. "psr-4": {
  10469. "TYPO3\\PharStreamWrapper\\": "src/"
  10470. }
  10471. },
  10472. "notification-url": "https://packagist.org/downloads/",
  10473. "license": [
  10474. "MIT"
  10475. ],
  10476. "description": "Interceptors for PHP's native phar:// stream handling",
  10477. "homepage": "https://typo3.org/",
  10478. "keywords": [
  10479. "phar",
  10480. "php",
  10481. "security",
  10482. "stream-wrapper"
  10483. ],
  10484. "support": {
  10485. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10486. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  10487. },
  10488. "time": "2021-09-20T19:19:13+00:00"
  10489. },
  10490. {
  10491. "name": "vlucas/phpdotenv",
  10492. "version": "v2.6.9",
  10493. "source": {
  10494. "type": "git",
  10495. "url": "https://github.com/vlucas/phpdotenv.git",
  10496. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10497. },
  10498. "dist": {
  10499. "type": "zip",
  10500. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10501. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10502. "shasum": ""
  10503. },
  10504. "require": {
  10505. "php": "^5.3.9 || ^7.0 || ^8.0",
  10506. "symfony/polyfill-ctype": "^1.17"
  10507. },
  10508. "require-dev": {
  10509. "ext-filter": "*",
  10510. "ext-pcre": "*",
  10511. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10512. },
  10513. "suggest": {
  10514. "ext-filter": "Required to use the boolean validator.",
  10515. "ext-pcre": "Required to use most of the library."
  10516. },
  10517. "type": "library",
  10518. "extra": {
  10519. "branch-alias": {
  10520. "dev-master": "2.6-dev"
  10521. }
  10522. },
  10523. "autoload": {
  10524. "psr-4": {
  10525. "Dotenv\\": "src/"
  10526. }
  10527. },
  10528. "notification-url": "https://packagist.org/downloads/",
  10529. "license": [
  10530. "BSD-3-Clause"
  10531. ],
  10532. "authors": [
  10533. {
  10534. "name": "Graham Campbell",
  10535. "email": "hello@gjcampbell.co.uk",
  10536. "homepage": "https://github.com/GrahamCampbell"
  10537. },
  10538. {
  10539. "name": "Vance Lucas",
  10540. "email": "vance@vancelucas.com",
  10541. "homepage": "https://github.com/vlucas"
  10542. }
  10543. ],
  10544. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10545. "keywords": [
  10546. "dotenv",
  10547. "env",
  10548. "environment"
  10549. ],
  10550. "support": {
  10551. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10552. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10553. },
  10554. "funding": [
  10555. {
  10556. "url": "https://github.com/GrahamCampbell",
  10557. "type": "github"
  10558. },
  10559. {
  10560. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10561. "type": "tidelift"
  10562. }
  10563. ],
  10564. "time": "2021-12-12T22:59:22+00:00"
  10565. },
  10566. {
  10567. "name": "webflo/drupal-finder",
  10568. "version": "1.3.1",
  10569. "source": {
  10570. "type": "git",
  10571. "url": "https://github.com/webflo/drupal-finder.git",
  10572. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10573. },
  10574. "dist": {
  10575. "type": "zip",
  10576. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10577. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10578. "shasum": ""
  10579. },
  10580. "require": {
  10581. "composer-runtime-api": "^2.2",
  10582. "php": ">=8.1"
  10583. },
  10584. "require-dev": {
  10585. "mikey179/vfsstream": "^1.6",
  10586. "phpunit/phpunit": "^10.4",
  10587. "symfony/process": "^6.4"
  10588. },
  10589. "type": "library",
  10590. "autoload": {
  10591. "psr-4": {
  10592. "DrupalFinder\\": "src/"
  10593. }
  10594. },
  10595. "notification-url": "https://packagist.org/downloads/",
  10596. "license": [
  10597. "GPL-2.0-or-later"
  10598. ],
  10599. "authors": [
  10600. {
  10601. "name": "Florian Weber",
  10602. "email": "florian@webflo.org"
  10603. }
  10604. ],
  10605. "description": "Helper class to locate a Drupal installation.",
  10606. "support": {
  10607. "issues": "https://github.com/webflo/drupal-finder/issues",
  10608. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10609. },
  10610. "time": "2024-06-28T13:45:36+00:00"
  10611. },
  10612. {
  10613. "name": "webmozart/assert",
  10614. "version": "1.11.0",
  10615. "source": {
  10616. "type": "git",
  10617. "url": "https://github.com/webmozarts/assert.git",
  10618. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10619. },
  10620. "dist": {
  10621. "type": "zip",
  10622. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10623. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10624. "shasum": ""
  10625. },
  10626. "require": {
  10627. "ext-ctype": "*",
  10628. "php": "^7.2 || ^8.0"
  10629. },
  10630. "conflict": {
  10631. "phpstan/phpstan": "<0.12.20",
  10632. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10633. },
  10634. "require-dev": {
  10635. "phpunit/phpunit": "^8.5.13"
  10636. },
  10637. "type": "library",
  10638. "extra": {
  10639. "branch-alias": {
  10640. "dev-master": "1.10-dev"
  10641. }
  10642. },
  10643. "autoload": {
  10644. "psr-4": {
  10645. "Webmozart\\Assert\\": "src/"
  10646. }
  10647. },
  10648. "notification-url": "https://packagist.org/downloads/",
  10649. "license": [
  10650. "MIT"
  10651. ],
  10652. "authors": [
  10653. {
  10654. "name": "Bernhard Schussek",
  10655. "email": "bschussek@gmail.com"
  10656. }
  10657. ],
  10658. "description": "Assertions to validate method input/output with nice error messages.",
  10659. "keywords": [
  10660. "assert",
  10661. "check",
  10662. "validate"
  10663. ],
  10664. "support": {
  10665. "issues": "https://github.com/webmozarts/assert/issues",
  10666. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10667. },
  10668. "time": "2022-06-03T18:03:27+00:00"
  10669. },
  10670. {
  10671. "name": "webmozart/path-util",
  10672. "version": "2.3.0",
  10673. "source": {
  10674. "type": "git",
  10675. "url": "https://github.com/webmozart/path-util.git",
  10676. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10677. },
  10678. "dist": {
  10679. "type": "zip",
  10680. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10681. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10682. "shasum": ""
  10683. },
  10684. "require": {
  10685. "php": ">=5.3.3",
  10686. "webmozart/assert": "~1.0"
  10687. },
  10688. "require-dev": {
  10689. "phpunit/phpunit": "^4.6",
  10690. "sebastian/version": "^1.0.1"
  10691. },
  10692. "type": "library",
  10693. "extra": {
  10694. "branch-alias": {
  10695. "dev-master": "2.3-dev"
  10696. }
  10697. },
  10698. "autoload": {
  10699. "psr-4": {
  10700. "Webmozart\\PathUtil\\": "src/"
  10701. }
  10702. },
  10703. "notification-url": "https://packagist.org/downloads/",
  10704. "license": [
  10705. "MIT"
  10706. ],
  10707. "authors": [
  10708. {
  10709. "name": "Bernhard Schussek",
  10710. "email": "bschussek@gmail.com"
  10711. }
  10712. ],
  10713. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10714. "support": {
  10715. "issues": "https://github.com/webmozart/path-util/issues",
  10716. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10717. },
  10718. "abandoned": "symfony/filesystem",
  10719. "time": "2015-12-17T08:42:14+00:00"
  10720. }
  10721. ],
  10722. "packages-dev": [],
  10723. "aliases": [],
  10724. "minimum-stability": "dev",
  10725. "stability-flags": {
  10726. "drupal/basic": 15,
  10727. "drupal/bulkdelete": 20,
  10728. "drupal/config_update": 15,
  10729. "drupal/context": 5,
  10730. "drupal/domain": 10,
  10731. "drupal/filefield_sources": 20,
  10732. "drupal/linkit": 10
  10733. },
  10734. "prefer-stable": true,
  10735. "prefer-lowest": false,
  10736. "platform": {
  10737. "php": ">=5.6"
  10738. },
  10739. "platform-dev": [],
  10740. "plugin-api-version": "2.6.0"
  10741. }