composer.lock 402 KB

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