composer.lock 417 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770
  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. <<<<<<< HEAD
  8. "content-hash": "239ee8acadf3c91412a44beeca7f9a96",
  9. =======
  10. <<<<<<< HEAD
  11. "content-hash": "239ee8acadf3c91412a44beeca7f9a96",
  12. =======
  13. "content-hash": "18f0eba83d85f976fd255237eb85f674",
  14. >>>>>>> 32a7466ce932df46b3fc3cf9b1ac8f32b18dfed2
  15. >>>>>>> collector_1106_fr
  16. "packages": [
  17. {
  18. "name": "carbonphp/carbon-doctrine-types",
  19. "version": "3.2.0",
  20. "source": {
  21. "type": "git",
  22. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  23. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  24. },
  25. "dist": {
  26. "type": "zip",
  27. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  28. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  29. "shasum": ""
  30. },
  31. "require": {
  32. "php": "^8.1"
  33. },
  34. "conflict": {
  35. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  36. },
  37. "require-dev": {
  38. "doctrine/dbal": "^4.0.0",
  39. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  40. "phpunit/phpunit": "^10.3"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "MIT"
  51. ],
  52. "authors": [
  53. {
  54. "name": "KyleKatarn",
  55. "email": "kylekatarnls@gmail.com"
  56. }
  57. ],
  58. "description": "Types to use Carbon in Doctrine",
  59. "keywords": [
  60. "carbon",
  61. "date",
  62. "datetime",
  63. "doctrine",
  64. "time"
  65. ],
  66. "support": {
  67. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  68. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  69. },
  70. "funding": [
  71. {
  72. "url": "https://github.com/kylekatarnls",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://opencollective.com/Carbon",
  77. "type": "open_collective"
  78. },
  79. {
  80. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  81. "type": "tidelift"
  82. }
  83. ],
  84. "time": "2024-02-09T16:56:22+00:00"
  85. },
  86. {
  87. "name": "doctrine/annotations",
  88. "version": "2.0.2",
  89. "source": {
  90. "type": "git",
  91. "url": "https://github.com/doctrine/annotations.git",
  92. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  93. },
  94. "dist": {
  95. "type": "zip",
  96. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  97. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  98. "shasum": ""
  99. },
  100. "require": {
  101. "doctrine/lexer": "^2 || ^3",
  102. "ext-tokenizer": "*",
  103. "php": "^7.2 || ^8.0",
  104. "psr/cache": "^1 || ^2 || ^3"
  105. },
  106. "require-dev": {
  107. "doctrine/cache": "^2.0",
  108. "doctrine/coding-standard": "^10",
  109. "phpstan/phpstan": "^1.10.28",
  110. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  111. "symfony/cache": "^5.4 || ^6.4 || ^7",
  112. "vimeo/psalm": "^4.30 || ^5.14"
  113. },
  114. "suggest": {
  115. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  116. },
  117. "type": "library",
  118. "autoload": {
  119. "psr-4": {
  120. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Guilherme Blanco",
  130. "email": "guilhermeblanco@gmail.com"
  131. },
  132. {
  133. "name": "Roman Borschel",
  134. "email": "roman@code-factory.org"
  135. },
  136. {
  137. "name": "Benjamin Eberlei",
  138. "email": "kontakt@beberlei.de"
  139. },
  140. {
  141. "name": "Jonathan Wage",
  142. "email": "jonwage@gmail.com"
  143. },
  144. {
  145. "name": "Johannes Schmitt",
  146. "email": "schmittjoh@gmail.com"
  147. }
  148. ],
  149. "description": "Docblock Annotations Parser",
  150. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  151. "keywords": [
  152. "annotations",
  153. "docblock",
  154. "parser"
  155. ],
  156. "support": {
  157. "issues": "https://github.com/doctrine/annotations/issues",
  158. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  159. },
  160. "time": "2024-09-05T10:17:24+00:00"
  161. },
  162. {
  163. "name": "doctrine/inflector",
  164. "version": "2.0.10",
  165. "source": {
  166. "type": "git",
  167. "url": "https://github.com/doctrine/inflector.git",
  168. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  169. },
  170. "dist": {
  171. "type": "zip",
  172. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  173. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  174. "shasum": ""
  175. },
  176. "require": {
  177. "php": "^7.2 || ^8.0"
  178. },
  179. "require-dev": {
  180. "doctrine/coding-standard": "^11.0",
  181. "phpstan/phpstan": "^1.8",
  182. "phpstan/phpstan-phpunit": "^1.1",
  183. "phpstan/phpstan-strict-rules": "^1.3",
  184. "phpunit/phpunit": "^8.5 || ^9.5",
  185. "vimeo/psalm": "^4.25 || ^5.4"
  186. },
  187. "type": "library",
  188. "autoload": {
  189. "psr-4": {
  190. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Guilherme Blanco",
  200. "email": "guilhermeblanco@gmail.com"
  201. },
  202. {
  203. "name": "Roman Borschel",
  204. "email": "roman@code-factory.org"
  205. },
  206. {
  207. "name": "Benjamin Eberlei",
  208. "email": "kontakt@beberlei.de"
  209. },
  210. {
  211. "name": "Jonathan Wage",
  212. "email": "jonwage@gmail.com"
  213. },
  214. {
  215. "name": "Johannes Schmitt",
  216. "email": "schmittjoh@gmail.com"
  217. }
  218. ],
  219. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  220. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  221. "keywords": [
  222. "inflection",
  223. "inflector",
  224. "lowercase",
  225. "manipulation",
  226. "php",
  227. "plural",
  228. "singular",
  229. "strings",
  230. "uppercase",
  231. "words"
  232. ],
  233. "support": {
  234. "issues": "https://github.com/doctrine/inflector/issues",
  235. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  236. },
  237. "funding": [
  238. {
  239. "url": "https://www.doctrine-project.org/sponsorship.html",
  240. "type": "custom"
  241. },
  242. {
  243. "url": "https://www.patreon.com/phpdoctrine",
  244. "type": "patreon"
  245. },
  246. {
  247. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  248. "type": "tidelift"
  249. }
  250. ],
  251. "time": "2024-02-18T20:23:39+00:00"
  252. },
  253. {
  254. "name": "doctrine/instantiator",
  255. "version": "1.5.0",
  256. "source": {
  257. "type": "git",
  258. "url": "https://github.com/doctrine/instantiator.git",
  259. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  260. },
  261. "dist": {
  262. "type": "zip",
  263. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  264. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  265. "shasum": ""
  266. },
  267. "require": {
  268. "php": "^7.1 || ^8.0"
  269. },
  270. "require-dev": {
  271. "doctrine/coding-standard": "^9 || ^11",
  272. "ext-pdo": "*",
  273. "ext-phar": "*",
  274. "phpbench/phpbench": "^0.16 || ^1",
  275. "phpstan/phpstan": "^1.4",
  276. "phpstan/phpstan-phpunit": "^1",
  277. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  278. "vimeo/psalm": "^4.30 || ^5.4"
  279. },
  280. "type": "library",
  281. "autoload": {
  282. "psr-4": {
  283. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  284. }
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "MIT"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Marco Pivetta",
  293. "email": "ocramius@gmail.com",
  294. "homepage": "https://ocramius.github.io/"
  295. }
  296. ],
  297. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  298. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  299. "keywords": [
  300. "constructor",
  301. "instantiate"
  302. ],
  303. "support": {
  304. "issues": "https://github.com/doctrine/instantiator/issues",
  305. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  306. },
  307. "funding": [
  308. {
  309. "url": "https://www.doctrine-project.org/sponsorship.html",
  310. "type": "custom"
  311. },
  312. {
  313. "url": "https://www.patreon.com/phpdoctrine",
  314. "type": "patreon"
  315. },
  316. {
  317. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  318. "type": "tidelift"
  319. }
  320. ],
  321. "time": "2022-12-30T00:15:36+00:00"
  322. },
  323. {
  324. "name": "doctrine/lexer",
  325. "version": "3.0.1",
  326. "source": {
  327. "type": "git",
  328. "url": "https://github.com/doctrine/lexer.git",
  329. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  330. },
  331. "dist": {
  332. "type": "zip",
  333. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  334. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  335. "shasum": ""
  336. },
  337. "require": {
  338. "php": "^8.1"
  339. },
  340. "require-dev": {
  341. "doctrine/coding-standard": "^12",
  342. "phpstan/phpstan": "^1.10",
  343. "phpunit/phpunit": "^10.5",
  344. "psalm/plugin-phpunit": "^0.18.3",
  345. "vimeo/psalm": "^5.21"
  346. },
  347. "type": "library",
  348. "autoload": {
  349. "psr-4": {
  350. "Doctrine\\Common\\Lexer\\": "src"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "MIT"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Guilherme Blanco",
  360. "email": "guilhermeblanco@gmail.com"
  361. },
  362. {
  363. "name": "Roman Borschel",
  364. "email": "roman@code-factory.org"
  365. },
  366. {
  367. "name": "Johannes Schmitt",
  368. "email": "schmittjoh@gmail.com"
  369. }
  370. ],
  371. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  372. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  373. "keywords": [
  374. "annotations",
  375. "docblock",
  376. "lexer",
  377. "parser",
  378. "php"
  379. ],
  380. "support": {
  381. "issues": "https://github.com/doctrine/lexer/issues",
  382. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  383. },
  384. "funding": [
  385. {
  386. "url": "https://www.doctrine-project.org/sponsorship.html",
  387. "type": "custom"
  388. },
  389. {
  390. "url": "https://www.patreon.com/phpdoctrine",
  391. "type": "patreon"
  392. },
  393. {
  394. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  395. "type": "tidelift"
  396. }
  397. ],
  398. "time": "2024-02-05T11:56:58+00:00"
  399. },
  400. {
  401. "name": "fig/http-message-util",
  402. "version": "1.1.5",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/php-fig/http-message-util.git",
  406. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  411. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  412. "shasum": ""
  413. },
  414. "require": {
  415. "php": "^5.3 || ^7.0 || ^8.0"
  416. },
  417. "suggest": {
  418. "psr/http-message": "The package containing the PSR-7 interfaces"
  419. },
  420. "type": "library",
  421. "extra": {
  422. "branch-alias": {
  423. "dev-master": "1.1.x-dev"
  424. }
  425. },
  426. "autoload": {
  427. "psr-4": {
  428. "Fig\\Http\\Message\\": "src/"
  429. }
  430. },
  431. "notification-url": "https://packagist.org/downloads/",
  432. "license": [
  433. "MIT"
  434. ],
  435. "authors": [
  436. {
  437. "name": "PHP-FIG",
  438. "homepage": "https://www.php-fig.org/"
  439. }
  440. ],
  441. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  442. "keywords": [
  443. "http",
  444. "http-message",
  445. "psr",
  446. "psr-7",
  447. "request",
  448. "response"
  449. ],
  450. "support": {
  451. "issues": "https://github.com/php-fig/http-message-util/issues",
  452. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  453. },
  454. "time": "2020-11-24T22:02:12+00:00"
  455. },
  456. {
  457. "name": "graham-campbell/result-type",
  458. "version": "v1.1.3",
  459. "source": {
  460. "type": "git",
  461. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  462. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  463. },
  464. "dist": {
  465. "type": "zip",
  466. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  467. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  468. "shasum": ""
  469. },
  470. "require": {
  471. "php": "^7.2.5 || ^8.0",
  472. "phpoption/phpoption": "^1.9.3"
  473. },
  474. "require-dev": {
  475. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  476. },
  477. "type": "library",
  478. "autoload": {
  479. "psr-4": {
  480. "GrahamCampbell\\ResultType\\": "src/"
  481. }
  482. },
  483. "notification-url": "https://packagist.org/downloads/",
  484. "license": [
  485. "MIT"
  486. ],
  487. "authors": [
  488. {
  489. "name": "Graham Campbell",
  490. "email": "hello@gjcampbell.co.uk",
  491. "homepage": "https://github.com/GrahamCampbell"
  492. }
  493. ],
  494. "description": "An Implementation Of The Result Type",
  495. "keywords": [
  496. "Graham Campbell",
  497. "GrahamCampbell",
  498. "Result Type",
  499. "Result-Type",
  500. "result"
  501. ],
  502. "support": {
  503. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  504. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  505. },
  506. "funding": [
  507. {
  508. "url": "https://github.com/GrahamCampbell",
  509. "type": "github"
  510. },
  511. {
  512. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  513. "type": "tidelift"
  514. }
  515. ],
  516. "time": "2024-07-20T21:45:45+00:00"
  517. },
  518. {
  519. "name": "guzzlehttp/guzzle",
  520. "version": "7.9.2",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/guzzle/guzzle.git",
  524. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  529. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "ext-json": "*",
  534. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  535. "guzzlehttp/psr7": "^2.7.0",
  536. "php": "^7.2.5 || ^8.0",
  537. "psr/http-client": "^1.0",
  538. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  539. },
  540. "provide": {
  541. "psr/http-client-implementation": "1.0"
  542. },
  543. "require-dev": {
  544. "bamarni/composer-bin-plugin": "^1.8.2",
  545. "ext-curl": "*",
  546. "guzzle/client-integration-tests": "3.0.2",
  547. "php-http/message-factory": "^1.1",
  548. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  549. "psr/log": "^1.1 || ^2.0 || ^3.0"
  550. },
  551. "suggest": {
  552. "ext-curl": "Required for CURL handler support",
  553. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  554. "psr/log": "Required for using the Log middleware"
  555. },
  556. "type": "library",
  557. "extra": {
  558. "bamarni-bin": {
  559. "bin-links": true,
  560. "forward-command": false
  561. }
  562. },
  563. "autoload": {
  564. "files": [
  565. "src/functions_include.php"
  566. ],
  567. "psr-4": {
  568. "GuzzleHttp\\": "src/"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Graham Campbell",
  578. "email": "hello@gjcampbell.co.uk",
  579. "homepage": "https://github.com/GrahamCampbell"
  580. },
  581. {
  582. "name": "Michael Dowling",
  583. "email": "mtdowling@gmail.com",
  584. "homepage": "https://github.com/mtdowling"
  585. },
  586. {
  587. "name": "Jeremy Lindblom",
  588. "email": "jeremeamia@gmail.com",
  589. "homepage": "https://github.com/jeremeamia"
  590. },
  591. {
  592. "name": "George Mponos",
  593. "email": "gmponos@gmail.com",
  594. "homepage": "https://github.com/gmponos"
  595. },
  596. {
  597. "name": "Tobias Nyholm",
  598. "email": "tobias.nyholm@gmail.com",
  599. "homepage": "https://github.com/Nyholm"
  600. },
  601. {
  602. "name": "Márk Sági-Kazár",
  603. "email": "mark.sagikazar@gmail.com",
  604. "homepage": "https://github.com/sagikazarmark"
  605. },
  606. {
  607. "name": "Tobias Schultze",
  608. "email": "webmaster@tubo-world.de",
  609. "homepage": "https://github.com/Tobion"
  610. }
  611. ],
  612. "description": "Guzzle is a PHP HTTP client library",
  613. "keywords": [
  614. "client",
  615. "curl",
  616. "framework",
  617. "http",
  618. "http client",
  619. "psr-18",
  620. "psr-7",
  621. "rest",
  622. "web service"
  623. ],
  624. "support": {
  625. "issues": "https://github.com/guzzle/guzzle/issues",
  626. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  627. },
  628. "funding": [
  629. {
  630. "url": "https://github.com/GrahamCampbell",
  631. "type": "github"
  632. },
  633. {
  634. "url": "https://github.com/Nyholm",
  635. "type": "github"
  636. },
  637. {
  638. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  639. "type": "tidelift"
  640. }
  641. ],
  642. "time": "2024-07-24T11:22:20+00:00"
  643. },
  644. {
  645. "name": "guzzlehttp/promises",
  646. "version": "2.0.4",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/guzzle/promises.git",
  650. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  655. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  656. "shasum": ""
  657. },
  658. "require": {
  659. "php": "^7.2.5 || ^8.0"
  660. },
  661. "require-dev": {
  662. "bamarni/composer-bin-plugin": "^1.8.2",
  663. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  664. },
  665. "type": "library",
  666. "extra": {
  667. "bamarni-bin": {
  668. "bin-links": true,
  669. "forward-command": false
  670. }
  671. },
  672. "autoload": {
  673. "psr-4": {
  674. "GuzzleHttp\\Promise\\": "src/"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Graham Campbell",
  684. "email": "hello@gjcampbell.co.uk",
  685. "homepage": "https://github.com/GrahamCampbell"
  686. },
  687. {
  688. "name": "Michael Dowling",
  689. "email": "mtdowling@gmail.com",
  690. "homepage": "https://github.com/mtdowling"
  691. },
  692. {
  693. "name": "Tobias Nyholm",
  694. "email": "tobias.nyholm@gmail.com",
  695. "homepage": "https://github.com/Nyholm"
  696. },
  697. {
  698. "name": "Tobias Schultze",
  699. "email": "webmaster@tubo-world.de",
  700. "homepage": "https://github.com/Tobion"
  701. }
  702. ],
  703. "description": "Guzzle promises library",
  704. "keywords": [
  705. "promise"
  706. ],
  707. "support": {
  708. "issues": "https://github.com/guzzle/promises/issues",
  709. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  710. },
  711. "funding": [
  712. {
  713. "url": "https://github.com/GrahamCampbell",
  714. "type": "github"
  715. },
  716. {
  717. "url": "https://github.com/Nyholm",
  718. "type": "github"
  719. },
  720. {
  721. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  722. "type": "tidelift"
  723. }
  724. ],
  725. "time": "2024-10-17T10:06:22+00:00"
  726. },
  727. {
  728. "name": "guzzlehttp/psr7",
  729. "version": "2.7.0",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/guzzle/psr7.git",
  733. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  738. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  739. "shasum": ""
  740. },
  741. "require": {
  742. "php": "^7.2.5 || ^8.0",
  743. "psr/http-factory": "^1.0",
  744. "psr/http-message": "^1.1 || ^2.0",
  745. "ralouphie/getallheaders": "^3.0"
  746. },
  747. "provide": {
  748. "psr/http-factory-implementation": "1.0",
  749. "psr/http-message-implementation": "1.0"
  750. },
  751. "require-dev": {
  752. "bamarni/composer-bin-plugin": "^1.8.2",
  753. "http-interop/http-factory-tests": "0.9.0",
  754. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  755. },
  756. "suggest": {
  757. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  758. },
  759. "type": "library",
  760. "extra": {
  761. "bamarni-bin": {
  762. "bin-links": true,
  763. "forward-command": false
  764. }
  765. },
  766. "autoload": {
  767. "psr-4": {
  768. "GuzzleHttp\\Psr7\\": "src/"
  769. }
  770. },
  771. "notification-url": "https://packagist.org/downloads/",
  772. "license": [
  773. "MIT"
  774. ],
  775. "authors": [
  776. {
  777. "name": "Graham Campbell",
  778. "email": "hello@gjcampbell.co.uk",
  779. "homepage": "https://github.com/GrahamCampbell"
  780. },
  781. {
  782. "name": "Michael Dowling",
  783. "email": "mtdowling@gmail.com",
  784. "homepage": "https://github.com/mtdowling"
  785. },
  786. {
  787. "name": "George Mponos",
  788. "email": "gmponos@gmail.com",
  789. "homepage": "https://github.com/gmponos"
  790. },
  791. {
  792. "name": "Tobias Nyholm",
  793. "email": "tobias.nyholm@gmail.com",
  794. "homepage": "https://github.com/Nyholm"
  795. },
  796. {
  797. "name": "Márk Sági-Kazár",
  798. "email": "mark.sagikazar@gmail.com",
  799. "homepage": "https://github.com/sagikazarmark"
  800. },
  801. {
  802. "name": "Tobias Schultze",
  803. "email": "webmaster@tubo-world.de",
  804. "homepage": "https://github.com/Tobion"
  805. },
  806. {
  807. "name": "Márk Sági-Kazár",
  808. "email": "mark.sagikazar@gmail.com",
  809. "homepage": "https://sagikazarmark.hu"
  810. }
  811. ],
  812. "description": "PSR-7 message implementation that also provides common utility methods",
  813. "keywords": [
  814. "http",
  815. "message",
  816. "psr-7",
  817. "request",
  818. "response",
  819. "stream",
  820. "uri",
  821. "url"
  822. ],
  823. "support": {
  824. "issues": "https://github.com/guzzle/psr7/issues",
  825. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  826. },
  827. "funding": [
  828. {
  829. "url": "https://github.com/GrahamCampbell",
  830. "type": "github"
  831. },
  832. {
  833. "url": "https://github.com/Nyholm",
  834. "type": "github"
  835. },
  836. {
  837. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  838. "type": "tidelift"
  839. }
  840. ],
  841. "time": "2024-07-18T11:15:46+00:00"
  842. },
  843. {
  844. "name": "hyperf/amqp",
  845. "version": "v3.1.42",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/hyperf/amqp.git",
  849. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  854. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  855. "shasum": ""
  856. },
  857. "require": {
  858. "doctrine/instantiator": "^1.2.0",
  859. "hyperf/codec": "~3.1.0",
  860. "hyperf/contract": "~3.1.0",
  861. "hyperf/coroutine": "~3.1.0",
  862. "hyperf/pool": "~3.1.0",
  863. "hyperf/process": "~3.1.0",
  864. "hyperf/support": "~3.1.0",
  865. "hyperf/utils": "~3.1.0",
  866. "php": ">=8.1",
  867. "php-amqplib/php-amqplib": "^3.5",
  868. "psr/container": "^1.0 || ^2.0",
  869. "psr/event-dispatcher": "^1.0",
  870. "psr/log": "^1.0 || ^2.0 || ^3.0"
  871. },
  872. "suggest": {
  873. "hyperf/di": "Required to use annotations.",
  874. "hyperf/event": "Declare queue and start consumers automatically."
  875. },
  876. "type": "library",
  877. "extra": {
  878. "branch-alias": {
  879. "dev-master": "3.1-dev"
  880. },
  881. "hyperf": {
  882. "config": "Hyperf\\Amqp\\ConfigProvider"
  883. }
  884. },
  885. "autoload": {
  886. "psr-4": {
  887. "Hyperf\\Amqp\\": "src/"
  888. }
  889. },
  890. "notification-url": "https://packagist.org/downloads/",
  891. "license": [
  892. "MIT"
  893. ],
  894. "description": "A amqplib for hyperf.",
  895. "homepage": "https://hyperf.io",
  896. "keywords": [
  897. "AMQP",
  898. "hyperf",
  899. "php"
  900. ],
  901. "support": {
  902. "docs": "https://hyperf.wiki",
  903. "issues": "https://github.com/hyperf/hyperf/issues",
  904. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  905. "source": "https://github.com/hyperf/hyperf"
  906. },
  907. "funding": [
  908. {
  909. "url": "https://hyperf.wiki/#/zh-cn/donate",
  910. "type": "custom"
  911. },
  912. {
  913. "url": "https://opencollective.com/hyperf",
  914. "type": "open_collective"
  915. }
  916. ],
  917. "time": "2024-09-25T02:54:12+00:00"
  918. },
  919. {
  920. "name": "hyperf/async-queue",
  921. "version": "v3.1.42",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/hyperf/async-queue.git",
  925. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  930. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  931. "shasum": ""
  932. },
  933. "require": {
  934. "hyperf/codec": "~3.1.0",
  935. "hyperf/collection": "~3.1.0",
  936. "hyperf/command": "~3.1.0",
  937. "hyperf/contract": "~3.1.0",
  938. "hyperf/support": "~3.1.0",
  939. "hyperf/utils": "~3.1.0",
  940. "php": ">=8.1",
  941. "psr/container": "^1.0 || ^2.0",
  942. "psr/event-dispatcher": "^1.0"
  943. },
  944. "suggest": {
  945. "hyperf/di": "Required to use annotations.",
  946. "hyperf/event": "Required to dispatch a event.",
  947. "hyperf/logger": "Required to use QueueHandleListener.",
  948. "hyperf/process": "Auto register the consumer process for server."
  949. },
  950. "type": "library",
  951. "extra": {
  952. "branch-alias": {
  953. "dev-master": "3.1-dev"
  954. },
  955. "hyperf": {
  956. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  957. }
  958. },
  959. "autoload": {
  960. "files": [
  961. "src/Functions.php"
  962. ],
  963. "psr-4": {
  964. "Hyperf\\AsyncQueue\\": "src/"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "description": "A async queue component for hyperf.",
  972. "homepage": "https://hyperf.io",
  973. "keywords": [
  974. "async-queue",
  975. "hyperf",
  976. "php"
  977. ],
  978. "support": {
  979. "docs": "https://hyperf.wiki",
  980. "issues": "https://github.com/hyperf/hyperf/issues",
  981. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  982. "source": "https://github.com/hyperf/hyperf"
  983. },
  984. "funding": [
  985. {
  986. "url": "https://hyperf.wiki/#/zh-cn/donate",
  987. "type": "custom"
  988. },
  989. {
  990. "url": "https://opencollective.com/hyperf",
  991. "type": "open_collective"
  992. }
  993. ],
  994. "time": "2024-09-25T02:54:12+00:00"
  995. },
  996. {
  997. "name": "hyperf/cache",
  998. "version": "v3.1.43",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/hyperf/cache.git",
  1002. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1007. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "hyperf/codec": "~3.1.0",
  1012. "hyperf/collection": "~3.1.0",
  1013. "hyperf/contract": "~3.1.0",
  1014. "hyperf/support": "~3.1.0",
  1015. "hyperf/utils": "~3.1.0",
  1016. "php": ">=8.1",
  1017. "psr/container": "^1.0 || ^2.0",
  1018. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1019. },
  1020. "suggest": {
  1021. "hyperf/di": "Use cache annotations.",
  1022. "hyperf/event": "Use listener to delete annotation cache."
  1023. },
  1024. "type": "library",
  1025. "extra": {
  1026. "branch-alias": {
  1027. "dev-master": "3.1-dev"
  1028. },
  1029. "hyperf": {
  1030. "config": "Hyperf\\Cache\\ConfigProvider"
  1031. }
  1032. },
  1033. "autoload": {
  1034. "psr-4": {
  1035. "Hyperf\\Cache\\": "src/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "description": "A cache component for hyperf.",
  1043. "homepage": "https://hyperf.io",
  1044. "keywords": [
  1045. "cache",
  1046. "hyperf",
  1047. "php"
  1048. ],
  1049. "support": {
  1050. "docs": "https://hyperf.wiki",
  1051. "issues": "https://github.com/hyperf/hyperf/issues",
  1052. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1053. "source": "https://github.com/hyperf/hyperf"
  1054. },
  1055. "funding": [
  1056. {
  1057. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1058. "type": "custom"
  1059. },
  1060. {
  1061. "url": "https://opencollective.com/hyperf",
  1062. "type": "open_collective"
  1063. }
  1064. ],
  1065. "time": "2024-10-09T10:22:39+00:00"
  1066. },
  1067. {
  1068. "name": "hyperf/code-parser",
  1069. "version": "v3.1.42",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/hyperf/code-parser.git",
  1073. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1078. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1079. "shasum": ""
  1080. },
  1081. "require": {
  1082. "hyperf/collection": "~3.1.0",
  1083. "hyperf/stringable": "~3.1.0",
  1084. "hyperf/support": "~3.1.0",
  1085. "php": ">=8.1"
  1086. },
  1087. "suggest": {
  1088. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1089. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1090. },
  1091. "type": "library",
  1092. "extra": {
  1093. "branch-alias": {
  1094. "dev-master": "3.1-dev"
  1095. }
  1096. },
  1097. "autoload": {
  1098. "psr-4": {
  1099. "Hyperf\\CodeParser\\": "src/"
  1100. }
  1101. },
  1102. "notification-url": "https://packagist.org/downloads/",
  1103. "license": [
  1104. "MIT"
  1105. ],
  1106. "description": "A code parser component for Hyperf.",
  1107. "homepage": "https://hyperf.io",
  1108. "keywords": [
  1109. "code-parser",
  1110. "hyperf",
  1111. "php",
  1112. "swoole"
  1113. ],
  1114. "support": {
  1115. "docs": "https://hyperf.wiki",
  1116. "issues": "https://github.com/hyperf/hyperf/issues",
  1117. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1118. "source": "https://github.com/hyperf/hyperf"
  1119. },
  1120. "funding": [
  1121. {
  1122. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1123. "type": "custom"
  1124. },
  1125. {
  1126. "url": "https://opencollective.com/hyperf",
  1127. "type": "open_collective"
  1128. }
  1129. ],
  1130. "time": "2024-09-25T02:54:12+00:00"
  1131. },
  1132. {
  1133. "name": "hyperf/codec",
  1134. "version": "v3.1.42",
  1135. "source": {
  1136. "type": "git",
  1137. "url": "https://github.com/hyperf/codec.git",
  1138. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1139. },
  1140. "dist": {
  1141. "type": "zip",
  1142. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1143. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1144. "shasum": ""
  1145. },
  1146. "require": {
  1147. "ext-json": "*",
  1148. "ext-xml": "*",
  1149. "hyperf/contract": "~3.1.0",
  1150. "php": ">=8.1"
  1151. },
  1152. "suggest": {
  1153. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "3.1-dev"
  1159. }
  1160. },
  1161. "autoload": {
  1162. "psr-4": {
  1163. "Hyperf\\Codec\\": "src/"
  1164. }
  1165. },
  1166. "notification-url": "https://packagist.org/downloads/",
  1167. "license": [
  1168. "MIT"
  1169. ],
  1170. "description": "A codec component for Hyperf.",
  1171. "homepage": "https://hyperf.io",
  1172. "keywords": [
  1173. "codec",
  1174. "hyperf",
  1175. "php",
  1176. "swoole"
  1177. ],
  1178. "support": {
  1179. "docs": "https://hyperf.wiki",
  1180. "issues": "https://github.com/hyperf/hyperf/issues",
  1181. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1182. "source": "https://github.com/hyperf/hyperf"
  1183. },
  1184. "funding": [
  1185. {
  1186. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1187. "type": "custom"
  1188. },
  1189. {
  1190. "url": "https://opencollective.com/hyperf",
  1191. "type": "open_collective"
  1192. }
  1193. ],
  1194. "time": "2024-09-25T02:54:12+00:00"
  1195. },
  1196. {
  1197. "name": "hyperf/collection",
  1198. "version": "v3.1.47",
  1199. "source": {
  1200. "type": "git",
  1201. "url": "https://github.com/hyperf/collection.git",
  1202. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1203. },
  1204. "dist": {
  1205. "type": "zip",
  1206. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1207. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1208. "shasum": ""
  1209. },
  1210. "require": {
  1211. "hyperf/conditionable": "~3.1.0",
  1212. "hyperf/contract": "~3.1.0",
  1213. "hyperf/macroable": "~3.1.0",
  1214. "hyperf/stringable": "~3.1.0",
  1215. "php": ">=8.1"
  1216. },
  1217. "type": "library",
  1218. "extra": {
  1219. "branch-alias": {
  1220. "dev-master": "3.1-dev"
  1221. }
  1222. },
  1223. "autoload": {
  1224. "files": [
  1225. "src/Functions.php"
  1226. ],
  1227. "psr-4": {
  1228. "Hyperf\\Collection\\": "src/"
  1229. }
  1230. },
  1231. "notification-url": "https://packagist.org/downloads/",
  1232. "license": [
  1233. "MIT"
  1234. ],
  1235. "description": "Hyperf Collection package which come from illuminate/collections",
  1236. "homepage": "https://hyperf.io",
  1237. "keywords": [
  1238. "collection",
  1239. "hyperf",
  1240. "php",
  1241. "swoole"
  1242. ],
  1243. "support": {
  1244. "docs": "https://hyperf.wiki",
  1245. "issues": "https://github.com/hyperf/hyperf/issues",
  1246. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1247. "source": "https://github.com/hyperf/hyperf"
  1248. },
  1249. "funding": [
  1250. {
  1251. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1252. "type": "custom"
  1253. },
  1254. {
  1255. "url": "https://opencollective.com/hyperf",
  1256. "type": "open_collective"
  1257. }
  1258. ],
  1259. "time": "2024-11-28T01:51:55+00:00"
  1260. },
  1261. {
  1262. "name": "hyperf/command",
  1263. "version": "v3.1.42",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/hyperf/command.git",
  1267. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1272. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "hyperf/collection": "~3.1.0",
  1277. "hyperf/context": "~3.1.0",
  1278. "hyperf/contract": "~3.1.0",
  1279. "hyperf/coroutine": "~3.1.0",
  1280. "hyperf/di": "~3.1.0",
  1281. "hyperf/stringable": "~3.1.0",
  1282. "hyperf/support": "~3.1.0",
  1283. "hyperf/tappable": "~3.1.0",
  1284. "php": ">=8.1",
  1285. "psr/event-dispatcher": "^1.0",
  1286. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1287. },
  1288. "suggest": {
  1289. "hyperf/di": "Required to use annotations.",
  1290. "hyperf/event": "Required to use listeners."
  1291. },
  1292. "type": "library",
  1293. "extra": {
  1294. "branch-alias": {
  1295. "dev-master": "3.1-dev"
  1296. },
  1297. "hyperf": {
  1298. "config": "Hyperf\\Command\\ConfigProvider"
  1299. }
  1300. },
  1301. "autoload": {
  1302. "psr-4": {
  1303. "Hyperf\\Command\\": "src/"
  1304. }
  1305. },
  1306. "notification-url": "https://packagist.org/downloads/",
  1307. "license": [
  1308. "MIT"
  1309. ],
  1310. "description": "Command for hyperf",
  1311. "keywords": [
  1312. "command",
  1313. "php",
  1314. "swoole"
  1315. ],
  1316. "support": {
  1317. "issues": "https://github.com/hyperf/command/issues",
  1318. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1319. },
  1320. "funding": [
  1321. {
  1322. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1323. "type": "custom"
  1324. },
  1325. {
  1326. "url": "https://opencollective.com/hyperf",
  1327. "type": "open_collective"
  1328. }
  1329. ],
  1330. "time": "2024-09-25T02:54:12+00:00"
  1331. },
  1332. {
  1333. "name": "hyperf/conditionable",
  1334. "version": "v3.1.42",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/hyperf/conditionable.git",
  1338. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1343. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1344. "shasum": ""
  1345. },
  1346. "require": {
  1347. "php": ">=8.1"
  1348. },
  1349. "type": "library",
  1350. "extra": {
  1351. "branch-alias": {
  1352. "dev-master": "3.1-dev"
  1353. }
  1354. },
  1355. "autoload": {
  1356. "psr-4": {
  1357. "Hyperf\\Conditionable\\": "src/"
  1358. }
  1359. },
  1360. "notification-url": "https://packagist.org/downloads/",
  1361. "license": [
  1362. "MIT"
  1363. ],
  1364. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1365. "homepage": "https://hyperf.io",
  1366. "keywords": [
  1367. "conditionable",
  1368. "hyperf",
  1369. "php",
  1370. "swoole"
  1371. ],
  1372. "support": {
  1373. "docs": "https://hyperf.wiki",
  1374. "issues": "https://github.com/hyperf/hyperf/issues",
  1375. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1376. "source": "https://github.com/hyperf/hyperf"
  1377. },
  1378. "funding": [
  1379. {
  1380. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1381. "type": "custom"
  1382. },
  1383. {
  1384. "url": "https://opencollective.com/hyperf",
  1385. "type": "open_collective"
  1386. }
  1387. ],
  1388. "time": "2024-09-25T02:54:12+00:00"
  1389. },
  1390. {
  1391. "name": "hyperf/config",
  1392. "version": "v3.1.42",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/hyperf/config.git",
  1396. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1401. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "hyperf/collection": "~3.1.0",
  1406. "hyperf/contract": "~3.1.0",
  1407. "hyperf/support": "~3.1.0",
  1408. "php": ">=8.1",
  1409. "psr/container": "^1.0 || ^2.0",
  1410. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1411. },
  1412. "suggest": {
  1413. "hyperf/context": "Required to use config()",
  1414. "hyperf/di": "Allows using @Value annotation",
  1415. "hyperf/event": "Allows using @Value annotation",
  1416. "hyperf/framework": "Allows using @Value annotation",
  1417. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1418. },
  1419. "type": "library",
  1420. "extra": {
  1421. "branch-alias": {
  1422. "dev-master": "3.1-dev"
  1423. },
  1424. "hyperf": {
  1425. "config": "Hyperf\\Config\\ConfigProvider"
  1426. }
  1427. },
  1428. "autoload": {
  1429. "files": [
  1430. "./src/Functions.php"
  1431. ],
  1432. "psr-4": {
  1433. "Hyperf\\Config\\": "src/"
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "MIT"
  1439. ],
  1440. "description": "An independent component that provides configuration container.",
  1441. "homepage": "https://hyperf.io",
  1442. "keywords": [
  1443. "config",
  1444. "configuration",
  1445. "hyperf",
  1446. "php",
  1447. "swoole"
  1448. ],
  1449. "support": {
  1450. "docs": "https://hyperf.wiki",
  1451. "issues": "https://github.com/hyperf/hyperf/issues",
  1452. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1453. "source": "https://github.com/hyperf/hyperf"
  1454. },
  1455. "funding": [
  1456. {
  1457. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1458. "type": "custom"
  1459. },
  1460. {
  1461. "url": "https://opencollective.com/hyperf",
  1462. "type": "open_collective"
  1463. }
  1464. ],
  1465. "time": "2024-09-25T02:54:12+00:00"
  1466. },
  1467. {
  1468. "name": "hyperf/config-center",
  1469. "version": "v3.1.42",
  1470. "source": {
  1471. "type": "git",
  1472. "url": "https://github.com/hyperf/config-center.git",
  1473. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1474. },
  1475. "dist": {
  1476. "type": "zip",
  1477. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1478. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1479. "shasum": ""
  1480. },
  1481. "require": {
  1482. "hyperf/support": "~3.1.0",
  1483. "php": ">=8.1"
  1484. },
  1485. "suggest": {
  1486. "hyperf/process": "^2.1"
  1487. },
  1488. "type": "library",
  1489. "extra": {
  1490. "branch-alias": {
  1491. "dev-master": "3.1-dev"
  1492. },
  1493. "hyperf": {
  1494. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1495. }
  1496. },
  1497. "autoload": {
  1498. "psr-4": {
  1499. "Hyperf\\ConfigCenter\\": "src/"
  1500. }
  1501. },
  1502. "notification-url": "https://packagist.org/downloads/",
  1503. "license": [
  1504. "MIT"
  1505. ],
  1506. "description": "The abstraction component of config center",
  1507. "homepage": "https://hyperf.io",
  1508. "keywords": [
  1509. "config-center",
  1510. "hyperf",
  1511. "php"
  1512. ],
  1513. "support": {
  1514. "docs": "https://hyperf.wiki",
  1515. "issues": "https://github.com/hyperf/hyperf/issues",
  1516. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1517. "source": "https://github.com/hyperf/hyperf"
  1518. },
  1519. "funding": [
  1520. {
  1521. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1522. "type": "custom"
  1523. },
  1524. {
  1525. "url": "https://opencollective.com/hyperf",
  1526. "type": "open_collective"
  1527. }
  1528. ],
  1529. "time": "2024-09-25T02:54:12+00:00"
  1530. },
  1531. {
  1532. "name": "hyperf/config-nacos",
  1533. "version": "v3.1.42",
  1534. "source": {
  1535. "type": "git",
  1536. "url": "https://github.com/hyperf/config-nacos.git",
  1537. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1538. },
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1542. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1543. "shasum": ""
  1544. },
  1545. "require": {
  1546. "hyperf/codec": "~3.1.0",
  1547. "hyperf/config-center": "~3.1.0",
  1548. "hyperf/contract": "~3.1.0",
  1549. "hyperf/guzzle": "~3.1.0",
  1550. "hyperf/nacos": "~3.1.0",
  1551. "hyperf/support": "~3.1.0",
  1552. "hyperf/utils": "~3.1.0",
  1553. "jetbrains/phpstorm-attributes": "^1.0",
  1554. "php": ">=8.1"
  1555. },
  1556. "suggest": {
  1557. "ext-json": "*",
  1558. "ext-simplexml": "*",
  1559. "ext-yaml": "*",
  1560. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1561. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1562. "hyperf/process": "Required to use processes. (~2.2.0)"
  1563. },
  1564. "type": "library",
  1565. "extra": {
  1566. "branch-alias": {
  1567. "dev-master": "3.1-dev"
  1568. },
  1569. "hyperf": {
  1570. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1571. }
  1572. },
  1573. "autoload": {
  1574. "psr-4": {
  1575. "Hyperf\\ConfigNacos\\": "src/"
  1576. }
  1577. },
  1578. "notification-url": "https://packagist.org/downloads/",
  1579. "license": [
  1580. "MIT"
  1581. ],
  1582. "description": "A nacos adapter for config center component.",
  1583. "homepage": "https://hyperf.io",
  1584. "keywords": [
  1585. "hyperf",
  1586. "nacos",
  1587. "php",
  1588. "swoole"
  1589. ],
  1590. "support": {
  1591. "docs": "https://hyperf.wiki",
  1592. "issues": "https://github.com/hyperf/hyperf/issues",
  1593. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1594. "source": "https://github.com/hyperf/hyperf"
  1595. },
  1596. "funding": [
  1597. {
  1598. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1599. "type": "custom"
  1600. },
  1601. {
  1602. "url": "https://opencollective.com/hyperf",
  1603. "type": "open_collective"
  1604. }
  1605. ],
  1606. "time": "2024-09-25T02:54:12+00:00"
  1607. },
  1608. {
  1609. "name": "hyperf/constants",
  1610. "version": "v3.1.42",
  1611. "source": {
  1612. "type": "git",
  1613. "url": "https://github.com/hyperf/constants.git",
  1614. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1615. },
  1616. "dist": {
  1617. "type": "zip",
  1618. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1619. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1620. "shasum": ""
  1621. },
  1622. "require": {
  1623. "hyperf/di": "~3.1.0",
  1624. "hyperf/support": "~3.1.0",
  1625. "hyperf/utils": "~3.1.0",
  1626. "php": ">=8.1"
  1627. },
  1628. "suggest": {
  1629. "hyperf/translation": "Required to use translation."
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "branch-alias": {
  1634. "dev-master": "3.1-dev"
  1635. },
  1636. "hyperf": {
  1637. "config": "Hyperf\\Constants\\ConfigProvider"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-4": {
  1642. "Hyperf\\Constants\\": "src/"
  1643. }
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "description": "A constants component for hyperf.",
  1650. "homepage": "https://hyperf.io",
  1651. "keywords": [
  1652. "constants",
  1653. "hyperf",
  1654. "php"
  1655. ],
  1656. "support": {
  1657. "docs": "https://hyperf.wiki",
  1658. "issues": "https://github.com/hyperf/hyperf/issues",
  1659. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1660. "source": "https://github.com/hyperf/hyperf"
  1661. },
  1662. "funding": [
  1663. {
  1664. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1665. "type": "custom"
  1666. },
  1667. {
  1668. "url": "https://opencollective.com/hyperf",
  1669. "type": "open_collective"
  1670. }
  1671. ],
  1672. "time": "2024-09-25T02:54:12+00:00"
  1673. },
  1674. {
  1675. "name": "hyperf/consul",
  1676. "version": "v3.1.42",
  1677. "source": {
  1678. "type": "git",
  1679. "url": "https://github.com/hyperf/consul.git",
  1680. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1681. },
  1682. "dist": {
  1683. "type": "zip",
  1684. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1685. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1686. "shasum": ""
  1687. },
  1688. "require": {
  1689. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1690. "php": ">=8.1"
  1691. },
  1692. "type": "library",
  1693. "extra": {
  1694. "branch-alias": {
  1695. "dev-master": "3.1-dev"
  1696. },
  1697. "hyperf": {
  1698. "config": "Hyperf\\Consul\\ConfigProvider"
  1699. }
  1700. },
  1701. "autoload": {
  1702. "psr-4": {
  1703. "Hyperf\\Consul\\": "src/"
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "MIT"
  1709. ],
  1710. "description": "A Consul Client for Hyperf.",
  1711. "homepage": "https://hyperf.io",
  1712. "keywords": [
  1713. "consul",
  1714. "consul-client",
  1715. "hyperf",
  1716. "php",
  1717. "swoole"
  1718. ],
  1719. "support": {
  1720. "docs": "https://hyperf.wiki",
  1721. "issues": "https://github.com/hyperf/hyperf/issues",
  1722. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1723. "source": "https://github.com/hyperf/hyperf"
  1724. },
  1725. "funding": [
  1726. {
  1727. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1728. "type": "custom"
  1729. },
  1730. {
  1731. "url": "https://opencollective.com/hyperf",
  1732. "type": "open_collective"
  1733. }
  1734. ],
  1735. "time": "2024-09-25T02:54:12+00:00"
  1736. },
  1737. {
  1738. "name": "hyperf/context",
  1739. "version": "v3.1.42",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/hyperf/context.git",
  1743. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1748. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1749. "shasum": ""
  1750. },
  1751. "require": {
  1752. "hyperf/engine": "^2.0",
  1753. "php": ">=8.1"
  1754. },
  1755. "suggest": {
  1756. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1757. },
  1758. "type": "library",
  1759. "extra": {
  1760. "branch-alias": {
  1761. "dev-master": "3.1-dev"
  1762. }
  1763. },
  1764. "autoload": {
  1765. "psr-4": {
  1766. "Hyperf\\Context\\": "src/"
  1767. }
  1768. },
  1769. "notification-url": "https://packagist.org/downloads/",
  1770. "license": [
  1771. "MIT"
  1772. ],
  1773. "description": "A coroutine/application context library.",
  1774. "homepage": "https://hyperf.io",
  1775. "keywords": [
  1776. "Context",
  1777. "hyperf",
  1778. "php",
  1779. "swoole"
  1780. ],
  1781. "support": {
  1782. "docs": "https://hyperf.wiki",
  1783. "issues": "https://github.com/hyperf/hyperf/issues",
  1784. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1785. "source": "https://github.com/hyperf/hyperf"
  1786. },
  1787. "funding": [
  1788. {
  1789. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1790. "type": "custom"
  1791. },
  1792. {
  1793. "url": "https://opencollective.com/hyperf",
  1794. "type": "open_collective"
  1795. }
  1796. ],
  1797. "time": "2024-09-25T02:54:12+00:00"
  1798. },
  1799. {
  1800. "name": "hyperf/contract",
  1801. "version": "v3.1.42",
  1802. "source": {
  1803. "type": "git",
  1804. "url": "https://github.com/hyperf/contract.git",
  1805. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1806. },
  1807. "dist": {
  1808. "type": "zip",
  1809. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1810. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1811. "shasum": ""
  1812. },
  1813. "require": {
  1814. "php": ">=8.1"
  1815. },
  1816. "type": "library",
  1817. "extra": {
  1818. "branch-alias": {
  1819. "dev-master": "3.1-dev"
  1820. }
  1821. },
  1822. "autoload": {
  1823. "psr-4": {
  1824. "Hyperf\\Contract\\": "src/"
  1825. }
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "MIT"
  1830. ],
  1831. "description": "The contracts of Hyperf.",
  1832. "homepage": "https://hyperf.io",
  1833. "keywords": [
  1834. "hyperf",
  1835. "php",
  1836. "swoole"
  1837. ],
  1838. "support": {
  1839. "docs": "https://hyperf.wiki",
  1840. "issues": "https://github.com/hyperf/hyperf/issues",
  1841. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1842. "source": "https://github.com/hyperf/hyperf"
  1843. },
  1844. "funding": [
  1845. {
  1846. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1847. "type": "custom"
  1848. },
  1849. {
  1850. "url": "https://opencollective.com/hyperf",
  1851. "type": "open_collective"
  1852. }
  1853. ],
  1854. "time": "2024-09-25T02:54:12+00:00"
  1855. },
  1856. {
  1857. "name": "hyperf/coordinator",
  1858. "version": "v3.1.42",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/hyperf/coordinator.git",
  1862. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1867. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "hyperf/engine": "^2.0",
  1872. "php": ">=8.1"
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "3.1-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "files": [
  1882. "src/Functions.php"
  1883. ],
  1884. "psr-4": {
  1885. "Hyperf\\Coordinator\\": "src/"
  1886. }
  1887. },
  1888. "notification-url": "https://packagist.org/downloads/",
  1889. "license": [
  1890. "MIT"
  1891. ],
  1892. "description": "Hyperf Coordinator",
  1893. "homepage": "https://hyperf.io",
  1894. "keywords": [
  1895. "Coordinator",
  1896. "hyperf",
  1897. "php",
  1898. "swoole"
  1899. ],
  1900. "support": {
  1901. "docs": "https://hyperf.wiki",
  1902. "issues": "https://github.com/hyperf/hyperf/issues",
  1903. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1904. "source": "https://github.com/hyperf/hyperf"
  1905. },
  1906. "funding": [
  1907. {
  1908. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1909. "type": "custom"
  1910. },
  1911. {
  1912. "url": "https://opencollective.com/hyperf",
  1913. "type": "open_collective"
  1914. }
  1915. ],
  1916. "time": "2024-09-25T02:54:12+00:00"
  1917. },
  1918. {
  1919. "name": "hyperf/coroutine",
  1920. "version": "v3.1.42",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/hyperf/coroutine.git",
  1924. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1929. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "hyperf/context": "~3.1.0",
  1934. "hyperf/contract": "~3.1.0",
  1935. "hyperf/engine": "^2.0",
  1936. "php": ">=8.1"
  1937. },
  1938. "type": "library",
  1939. "extra": {
  1940. "branch-alias": {
  1941. "dev-master": "3.1-dev"
  1942. }
  1943. },
  1944. "autoload": {
  1945. "files": [
  1946. "src/Functions.php"
  1947. ],
  1948. "psr-4": {
  1949. "Hyperf\\Coroutine\\": "src/"
  1950. }
  1951. },
  1952. "notification-url": "https://packagist.org/downloads/",
  1953. "license": [
  1954. "MIT"
  1955. ],
  1956. "description": "Hyperf Coroutine",
  1957. "homepage": "https://hyperf.io",
  1958. "keywords": [
  1959. "coroutine",
  1960. "hyperf",
  1961. "php",
  1962. "swoole"
  1963. ],
  1964. "support": {
  1965. "docs": "https://hyperf.wiki",
  1966. "issues": "https://github.com/hyperf/hyperf/issues",
  1967. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1968. "source": "https://github.com/hyperf/hyperf"
  1969. },
  1970. "funding": [
  1971. {
  1972. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1973. "type": "custom"
  1974. },
  1975. {
  1976. "url": "https://opencollective.com/hyperf",
  1977. "type": "open_collective"
  1978. }
  1979. ],
  1980. "time": "2024-09-25T02:54:12+00:00"
  1981. },
  1982. {
  1983. "name": "hyperf/database",
  1984. "version": "v3.1.47",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/hyperf/database.git",
  1988. "reference": "a53d2616486e0a77923542bb5cc363e207e5003d"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/hyperf/database/zipball/a53d2616486e0a77923542bb5cc363e207e5003d",
  1993. "reference": "a53d2616486e0a77923542bb5cc363e207e5003d",
  1994. "shasum": ""
  1995. },
  1996. "require": {
  1997. "hyperf/code-parser": "~3.1.0",
  1998. "hyperf/collection": "~3.1.23",
  1999. "hyperf/conditionable": "~3.1.0",
  2000. "hyperf/macroable": "~3.1.0",
  2001. "hyperf/support": "~3.1.0",
  2002. "hyperf/tappable": "~3.1.0",
  2003. "hyperf/utils": "~3.1.0",
  2004. "nesbot/carbon": "^2.0",
  2005. "php": ">=8.1",
  2006. "psr/container": "^1.0 || ^2.0",
  2007. "psr/event-dispatcher": "^1.0"
  2008. },
  2009. "suggest": {
  2010. "doctrine/dbal": "Required to rename columns (^3.0).",
  2011. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2012. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2013. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2014. },
  2015. "type": "library",
  2016. "extra": {
  2017. "branch-alias": {
  2018. "dev-master": "3.1-dev"
  2019. }
  2020. },
  2021. "autoload": {
  2022. "psr-4": {
  2023. "Hyperf\\Database\\": "src/"
  2024. }
  2025. },
  2026. "notification-url": "https://packagist.org/downloads/",
  2027. "license": [
  2028. "MIT"
  2029. ],
  2030. "description": "A flexible database library.",
  2031. "homepage": "https://hyperf.io",
  2032. "keywords": [
  2033. "database",
  2034. "hyperf",
  2035. "php"
  2036. ],
  2037. "support": {
  2038. "docs": "https://hyperf.wiki",
  2039. "issues": "https://github.com/hyperf/hyperf/issues",
  2040. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2041. "source": "https://github.com/hyperf/hyperf"
  2042. },
  2043. "funding": [
  2044. {
  2045. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2046. "type": "custom"
  2047. },
  2048. {
  2049. "url": "https://opencollective.com/hyperf",
  2050. "type": "open_collective"
  2051. }
  2052. ],
  2053. "time": "2024-11-28T01:51:55+00:00"
  2054. },
  2055. {
  2056. "name": "hyperf/db-connection",
  2057. "version": "v3.1.44",
  2058. "source": {
  2059. "type": "git",
  2060. "url": "https://github.com/hyperf/db-connection.git",
  2061. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2062. },
  2063. "dist": {
  2064. "type": "zip",
  2065. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2066. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2067. "shasum": ""
  2068. },
  2069. "require": {
  2070. "hyperf/database": "~3.1.0",
  2071. "hyperf/di": "~3.1.0",
  2072. "hyperf/framework": "~3.1.0",
  2073. "hyperf/model-listener": "~3.1.0",
  2074. "hyperf/pool": "~3.1.0",
  2075. "hyperf/support": "~3.1.0",
  2076. "hyperf/utils": "~3.1.0",
  2077. "php": ">=8.1",
  2078. "psr/container": "^1.0 || ^2.0"
  2079. },
  2080. "type": "library",
  2081. "extra": {
  2082. "branch-alias": {
  2083. "dev-master": "3.1-dev"
  2084. },
  2085. "hyperf": {
  2086. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2087. }
  2088. },
  2089. "autoload": {
  2090. "psr-4": {
  2091. "Hyperf\\DbConnection\\": "src/"
  2092. }
  2093. },
  2094. "notification-url": "https://packagist.org/downloads/",
  2095. "license": [
  2096. "MIT"
  2097. ],
  2098. "description": "A hyperf db connection handler for hyperf/database.",
  2099. "homepage": "https://hyperf.io",
  2100. "keywords": [
  2101. "Connection",
  2102. "database",
  2103. "hyperf",
  2104. "php"
  2105. ],
  2106. "support": {
  2107. "docs": "https://hyperf.wiki",
  2108. "issues": "https://github.com/hyperf/hyperf/issues",
  2109. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2110. "source": "https://github.com/hyperf/hyperf"
  2111. },
  2112. "funding": [
  2113. {
  2114. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2115. "type": "custom"
  2116. },
  2117. {
  2118. "url": "https://opencollective.com/hyperf",
  2119. "type": "open_collective"
  2120. }
  2121. ],
  2122. "time": "2024-10-11T08:58:16+00:00"
  2123. },
  2124. {
  2125. "name": "hyperf/di",
  2126. "version": "v3.1.42",
  2127. "source": {
  2128. "type": "git",
  2129. "url": "https://github.com/hyperf/di.git",
  2130. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2131. },
  2132. "dist": {
  2133. "type": "zip",
  2134. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2135. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2136. "shasum": ""
  2137. },
  2138. "require": {
  2139. "doctrine/instantiator": "^1.0",
  2140. "hyperf/code-parser": "~3.1.0",
  2141. "hyperf/pipeline": "~3.1.0",
  2142. "hyperf/stdlib": "~3.1.0",
  2143. "hyperf/support": "~3.1.0",
  2144. "nikic/php-parser": "^4.1",
  2145. "php": ">=8.1",
  2146. "php-di/phpdoc-reader": "^2.2",
  2147. "psr/container": "^1.0 || ^2.0",
  2148. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2149. "vlucas/phpdotenv": "^5.0"
  2150. },
  2151. "suggest": {
  2152. "ext-pcntl": "Required to scan annotations.",
  2153. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2154. },
  2155. "type": "library",
  2156. "extra": {
  2157. "branch-alias": {
  2158. "dev-master": "3.1-dev"
  2159. },
  2160. "hyperf": {
  2161. "config": "Hyperf\\Di\\ConfigProvider"
  2162. }
  2163. },
  2164. "autoload": {
  2165. "psr-4": {
  2166. "Hyperf\\Di\\": "src/"
  2167. }
  2168. },
  2169. "notification-url": "https://packagist.org/downloads/",
  2170. "license": [
  2171. "MIT"
  2172. ],
  2173. "description": "A DI for Hyperf.",
  2174. "homepage": "https://hyperf.io",
  2175. "keywords": [
  2176. "annotation",
  2177. "di",
  2178. "hyperf",
  2179. "php",
  2180. "swoole"
  2181. ],
  2182. "support": {
  2183. "docs": "https://hyperf.wiki",
  2184. "issues": "https://github.com/hyperf/hyperf/issues",
  2185. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2186. "source": "https://github.com/hyperf/hyperf"
  2187. },
  2188. "funding": [
  2189. {
  2190. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2191. "type": "custom"
  2192. },
  2193. {
  2194. "url": "https://opencollective.com/hyperf",
  2195. "type": "open_collective"
  2196. }
  2197. ],
  2198. "time": "2024-09-25T02:54:12+00:00"
  2199. },
  2200. {
  2201. "name": "hyperf/dispatcher",
  2202. "version": "v3.1.42",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://github.com/hyperf/dispatcher.git",
  2206. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2211. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2212. "shasum": ""
  2213. },
  2214. "require": {
  2215. "hyperf/contract": "~3.1.0",
  2216. "php": ">=8.1",
  2217. "psr/container": "^1.0 || ^2.0",
  2218. "psr/http-message": "^1.0 || ^2.0",
  2219. "psr/http-server-middleware": "^1.0"
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "3.1-dev"
  2225. },
  2226. "hyperf": {
  2227. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2228. }
  2229. },
  2230. "autoload": {
  2231. "psr-4": {
  2232. "Hyperf\\Dispatcher\\": "src/"
  2233. }
  2234. },
  2235. "notification-url": "https://packagist.org/downloads/",
  2236. "license": [
  2237. "MIT"
  2238. ],
  2239. "description": "A HTTP Server for Hyperf.",
  2240. "homepage": "https://hyperf.io",
  2241. "keywords": [
  2242. "dispatcher",
  2243. "filter",
  2244. "hyperf",
  2245. "middleware",
  2246. "php",
  2247. "swoole"
  2248. ],
  2249. "support": {
  2250. "docs": "https://hyperf.wiki",
  2251. "issues": "https://github.com/hyperf/hyperf/issues",
  2252. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2253. "source": "https://github.com/hyperf/hyperf"
  2254. },
  2255. "funding": [
  2256. {
  2257. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2258. "type": "custom"
  2259. },
  2260. {
  2261. "url": "https://opencollective.com/hyperf",
  2262. "type": "open_collective"
  2263. }
  2264. ],
  2265. "time": "2024-09-25T02:54:12+00:00"
  2266. },
  2267. {
  2268. "name": "hyperf/engine",
  2269. "version": "v2.12.0",
  2270. "source": {
  2271. "type": "git",
  2272. "url": "https://github.com/hyperf/engine.git",
  2273. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a"
  2274. },
  2275. "dist": {
  2276. "type": "zip",
  2277. "url": "https://api.github.com/repos/hyperf/engine/zipball/f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2278. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2279. "shasum": ""
  2280. },
  2281. "require": {
  2282. "hyperf/engine-contract": "~1.11.0",
  2283. "php": ">=8.0"
  2284. },
  2285. "conflict": {
  2286. "ext-swoole": "<5.0"
  2287. },
  2288. "require-dev": {
  2289. "friendsofphp/php-cs-fixer": "^3.0",
  2290. "hyperf/guzzle": "^3.0",
  2291. "hyperf/http-message": "^3.0",
  2292. "mockery/mockery": "^1.5",
  2293. "phpstan/phpstan": "^1.0",
  2294. "phpunit/phpunit": "^9.4",
  2295. "swoole/ide-helper": "5.*"
  2296. },
  2297. "suggest": {
  2298. "ext-sockets": "*",
  2299. "ext-swoole": ">=5.0",
  2300. "hyperf/http-message": "Required to use ResponseEmitter.",
  2301. "psr/http-message": "Required to use WebSocket Frame."
  2302. },
  2303. "type": "library",
  2304. "extra": {
  2305. "branch-alias": {
  2306. "dev-master": "2.12-dev"
  2307. },
  2308. "hyperf": {
  2309. "config": "Hyperf\\Engine\\ConfigProvider"
  2310. }
  2311. },
  2312. "autoload": {
  2313. "files": [
  2314. "src/Functions.php"
  2315. ],
  2316. "psr-4": {
  2317. "Hyperf\\Engine\\": "src/"
  2318. }
  2319. },
  2320. "notification-url": "https://packagist.org/downloads/",
  2321. "license": [
  2322. "MIT"
  2323. ],
  2324. "description": "Coroutine engine provided by swoole.",
  2325. "keywords": [
  2326. "engine",
  2327. "hyperf",
  2328. "php",
  2329. "swoole"
  2330. ],
  2331. "support": {
  2332. "issues": "https://github.com/hyperf/engine/issues",
  2333. "source": "https://github.com/hyperf/engine/tree/v2.12.0"
  2334. },
  2335. "funding": [
  2336. {
  2337. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2338. "type": "custom"
  2339. },
  2340. {
  2341. "url": "https://opencollective.com/hyperf",
  2342. "type": "open_collective"
  2343. }
  2344. ],
  2345. "time": "2024-11-19T04:32:29+00:00"
  2346. },
  2347. {
  2348. "name": "hyperf/engine-contract",
  2349. "version": "v1.11.0",
  2350. "source": {
  2351. "type": "git",
  2352. "url": "https://github.com/hyperf/engine-contract.git",
  2353. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2354. },
  2355. "dist": {
  2356. "type": "zip",
  2357. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2358. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2359. "shasum": ""
  2360. },
  2361. "require": {
  2362. "php": ">=8.0"
  2363. },
  2364. "require-dev": {
  2365. "friendsofphp/php-cs-fixer": "^3.0",
  2366. "mockery/mockery": "^1.0",
  2367. "phpstan/phpstan": "^1.0",
  2368. "phpunit/phpunit": ">=7.0",
  2369. "psr/http-message": "^1.0",
  2370. "swoole/ide-helper": "^4.5"
  2371. },
  2372. "suggest": {
  2373. "psr/http-message": "Required to use WebSocket Frame."
  2374. },
  2375. "type": "library",
  2376. "extra": {
  2377. "branch-alias": {
  2378. "dev-master": "1.9-dev"
  2379. }
  2380. },
  2381. "autoload": {
  2382. "psr-4": {
  2383. "Hyperf\\Engine\\Contract\\": "src/"
  2384. }
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "MIT"
  2389. ],
  2390. "description": "Contract for Coroutine Engine",
  2391. "keywords": [
  2392. "contract",
  2393. "coroutine",
  2394. "engine",
  2395. "hyperf",
  2396. "php"
  2397. ],
  2398. "support": {
  2399. "issues": "https://github.com/hyperf/engine-contract/issues",
  2400. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2401. },
  2402. "funding": [
  2403. {
  2404. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2405. "type": "custom"
  2406. },
  2407. {
  2408. "url": "https://opencollective.com/hyperf",
  2409. "type": "open_collective"
  2410. }
  2411. ],
  2412. "time": "2024-11-19T04:15:31+00:00"
  2413. },
  2414. {
  2415. "name": "hyperf/event",
  2416. "version": "v3.1.42",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/hyperf/event.git",
  2420. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2425. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2426. "shasum": ""
  2427. },
  2428. "require": {
  2429. "hyperf/contract": "~3.1.0",
  2430. "hyperf/stdlib": "~3.1.0",
  2431. "php": ">=8.1",
  2432. "psr/event-dispatcher": "^1.0"
  2433. },
  2434. "suggest": {
  2435. "hyperf/di": "Required to use annotatioins."
  2436. },
  2437. "type": "library",
  2438. "extra": {
  2439. "branch-alias": {
  2440. "dev-master": "3.1-dev"
  2441. },
  2442. "hyperf": {
  2443. "config": "Hyperf\\Event\\ConfigProvider"
  2444. }
  2445. },
  2446. "autoload": {
  2447. "psr-4": {
  2448. "Hyperf\\Event\\": "src/"
  2449. }
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "MIT"
  2454. ],
  2455. "description": "an event manager that implements PSR-14.",
  2456. "homepage": "https://hyperf.io",
  2457. "keywords": [
  2458. "event",
  2459. "hyperf",
  2460. "php",
  2461. "swoole"
  2462. ],
  2463. "support": {
  2464. "docs": "https://hyperf.wiki",
  2465. "issues": "https://github.com/hyperf/hyperf/issues",
  2466. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2467. "source": "https://github.com/hyperf/hyperf"
  2468. },
  2469. "funding": [
  2470. {
  2471. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2472. "type": "custom"
  2473. },
  2474. {
  2475. "url": "https://opencollective.com/hyperf",
  2476. "type": "open_collective"
  2477. }
  2478. ],
  2479. "time": "2024-09-25T02:54:12+00:00"
  2480. },
  2481. {
  2482. "name": "hyperf/exception-handler",
  2483. "version": "v3.1.42",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/hyperf/exception-handler.git",
  2487. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2492. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "hyperf/context": "~3.1.0",
  2497. "hyperf/contract": "~3.1.0",
  2498. "hyperf/dispatcher": "~3.1.0",
  2499. "hyperf/http-message": "~3.1.0",
  2500. "hyperf/stdlib": "~3.1.0",
  2501. "hyperf/support": "~3.1.0",
  2502. "php": ">=8.1",
  2503. "psr/container": "^1.0 || ^2.0",
  2504. "psr/http-message": "^1.0 || ^2.0",
  2505. "swow/psr7-plus": "^1.0"
  2506. },
  2507. "suggest": {
  2508. "hyperf/di": "Required to use #[ExceptionHandler]",
  2509. "hyperf/event": "Required to use listeners",
  2510. "hyperf/framework": "Required to use listeners",
  2511. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2512. },
  2513. "type": "library",
  2514. "extra": {
  2515. "branch-alias": {
  2516. "dev-master": "3.1-dev"
  2517. },
  2518. "hyperf": {
  2519. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2520. }
  2521. },
  2522. "autoload": {
  2523. "psr-4": {
  2524. "Hyperf\\ExceptionHandler\\": "src/"
  2525. }
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "description": "Exception handler for hyperf",
  2532. "homepage": "https://hyperf.io",
  2533. "keywords": [
  2534. "exception-handler",
  2535. "php",
  2536. "swoole"
  2537. ],
  2538. "support": {
  2539. "docs": "https://hyperf.wiki",
  2540. "issues": "https://github.com/hyperf/hyperf/issues",
  2541. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2542. "source": "https://github.com/hyperf/hyperf"
  2543. },
  2544. "funding": [
  2545. {
  2546. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2547. "type": "custom"
  2548. },
  2549. {
  2550. "url": "https://opencollective.com/hyperf",
  2551. "type": "open_collective"
  2552. }
  2553. ],
  2554. "time": "2024-09-25T02:54:12+00:00"
  2555. },
  2556. {
  2557. "name": "hyperf/framework",
  2558. "version": "v3.1.42",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/hyperf/framework.git",
  2562. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2567. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2568. "shasum": ""
  2569. },
  2570. "require": {
  2571. "fig/http-message-util": "^1.1.2",
  2572. "hyperf/contract": "~3.1.0",
  2573. "hyperf/coordinator": "~3.1.0",
  2574. "hyperf/coroutine": "~3.1.0",
  2575. "php": ">=8.1",
  2576. "psr/container": "^1.0 || ^2.0",
  2577. "psr/event-dispatcher": "^1.0",
  2578. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2579. },
  2580. "suggest": {
  2581. "ext-swoole": "Required to use swoole engine.",
  2582. "hyperf/command": "Required to use Command annotation.",
  2583. "hyperf/di": "Required to use Command annotation.",
  2584. "hyperf/dispatcher": "Required to use BootApplication event.",
  2585. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2586. },
  2587. "type": "library",
  2588. "extra": {
  2589. "branch-alias": {
  2590. "dev-master": "3.1-dev"
  2591. },
  2592. "hyperf": {
  2593. "config": "Hyperf\\Framework\\ConfigProvider"
  2594. }
  2595. },
  2596. "autoload": {
  2597. "psr-4": {
  2598. "Hyperf\\Framework\\": "src/"
  2599. }
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "MIT"
  2604. ],
  2605. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2606. "homepage": "https://hyperf.io",
  2607. "keywords": [
  2608. "Microservice",
  2609. "framework",
  2610. "hyperf",
  2611. "middleware",
  2612. "php",
  2613. "swoole"
  2614. ],
  2615. "support": {
  2616. "docs": "https://hyperf.wiki",
  2617. "issues": "https://github.com/hyperf/hyperf/issues",
  2618. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2619. "source": "https://github.com/hyperf/hyperf"
  2620. },
  2621. "funding": [
  2622. {
  2623. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2624. "type": "custom"
  2625. },
  2626. {
  2627. "url": "https://opencollective.com/hyperf",
  2628. "type": "open_collective"
  2629. }
  2630. ],
  2631. "time": "2024-09-25T02:54:12+00:00"
  2632. },
  2633. {
  2634. "name": "hyperf/guzzle",
  2635. "version": "v3.1.42",
  2636. "source": {
  2637. "type": "git",
  2638. "url": "https://github.com/hyperf/guzzle.git",
  2639. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2640. },
  2641. "dist": {
  2642. "type": "zip",
  2643. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2644. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2645. "shasum": ""
  2646. },
  2647. "require": {
  2648. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2649. "php": ">=8.1",
  2650. "psr/container": "^1.0 || ^2.0",
  2651. "psr/http-message": "^1.0 || ^2.0"
  2652. },
  2653. "suggest": {
  2654. "ext-curl": "Required for CURL handler support",
  2655. "hyperf/pool": "Required to use pool handler."
  2656. },
  2657. "type": "library",
  2658. "extra": {
  2659. "branch-alias": {
  2660. "dev-master": "3.1-dev"
  2661. },
  2662. "hyperf": {
  2663. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2664. }
  2665. },
  2666. "autoload": {
  2667. "psr-4": {
  2668. "Hyperf\\Guzzle\\": "src/"
  2669. }
  2670. },
  2671. "notification-url": "https://packagist.org/downloads/",
  2672. "license": [
  2673. "MIT"
  2674. ],
  2675. "description": "Swoole coroutine handler for guzzle",
  2676. "keywords": [
  2677. "Guzzle",
  2678. "handler",
  2679. "php",
  2680. "swoole"
  2681. ],
  2682. "support": {
  2683. "issues": "https://github.com/hyperf/guzzle/issues",
  2684. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2685. },
  2686. "funding": [
  2687. {
  2688. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2689. "type": "custom"
  2690. },
  2691. {
  2692. "url": "https://opencollective.com/hyperf",
  2693. "type": "open_collective"
  2694. }
  2695. ],
  2696. "time": "2024-09-25T02:54:12+00:00"
  2697. },
  2698. {
  2699. "name": "hyperf/http-message",
  2700. "version": "v3.1.47",
  2701. "source": {
  2702. "type": "git",
  2703. "url": "https://github.com/hyperf/http-message.git",
  2704. "reference": "53a7caa616ee7a196d2974348b1acbf75305bf7e"
  2705. },
  2706. "dist": {
  2707. "type": "zip",
  2708. "url": "https://api.github.com/repos/hyperf/http-message/zipball/53a7caa616ee7a196d2974348b1acbf75305bf7e",
  2709. "reference": "53a7caa616ee7a196d2974348b1acbf75305bf7e",
  2710. "shasum": ""
  2711. },
  2712. "require": {
  2713. "hyperf/codec": "~3.1.0",
  2714. "hyperf/engine": "^2.11",
  2715. "hyperf/support": "~3.1.0",
  2716. "laminas/laminas-mime": "^2.7",
  2717. "php": ">=8.1",
  2718. "psr/http-message": "^1.0 || ^2.0",
  2719. "swow/psr7-plus": "^1.0"
  2720. },
  2721. "suggest": {
  2722. "psr/container": "Required to replace RequestParserInterface."
  2723. },
  2724. "type": "library",
  2725. "extra": {
  2726. "hyperf": {
  2727. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2728. },
  2729. "branch-alias": {
  2730. "dev-master": "3.1-dev"
  2731. }
  2732. },
  2733. "autoload": {
  2734. "psr-4": {
  2735. "Hyperf\\HttpMessage\\": "src/"
  2736. }
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "MIT"
  2741. ],
  2742. "description": "microservice framework base on swoole",
  2743. "keywords": [
  2744. "http-message",
  2745. "hyperf",
  2746. "php",
  2747. "swoole"
  2748. ],
  2749. "support": {
  2750. "issues": "https://github.com/hyperf/http-message/issues",
  2751. "source": "https://github.com/hyperf/http-message/tree/v3.1.47"
  2752. },
  2753. "funding": [
  2754. {
  2755. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2756. "type": "custom"
  2757. },
  2758. {
  2759. "url": "https://opencollective.com/hyperf",
  2760. "type": "open_collective"
  2761. }
  2762. ],
  2763. "time": "2024-11-28T02:09:19+00:00"
  2764. },
  2765. {
  2766. "name": "hyperf/http-server",
  2767. "version": "v3.1.42",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://github.com/hyperf/http-server.git",
  2771. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2776. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2777. "shasum": ""
  2778. },
  2779. "require": {
  2780. "hyperf/codec": "~3.1.0",
  2781. "hyperf/collection": "~3.1.0",
  2782. "hyperf/context": "~3.1.0",
  2783. "hyperf/contract": "~3.1.0",
  2784. "hyperf/coroutine": "~3.1.0",
  2785. "hyperf/dispatcher": "~3.1.0",
  2786. "hyperf/event": "~3.1.0",
  2787. "hyperf/exception-handler": "~3.1.0",
  2788. "hyperf/http-message": "~3.1.0",
  2789. "hyperf/macroable": "~3.1.0",
  2790. "hyperf/serializer": "~3.1.0",
  2791. "hyperf/server": "~3.1.0",
  2792. "hyperf/stdlib": "~3.1.0",
  2793. "hyperf/support": "~3.1.0",
  2794. "nikic/fast-route": "^1.3",
  2795. "php": ">=8.1",
  2796. "psr/container": "^1.0 || ^2.0",
  2797. "swow/psr7-plus": "^1.0"
  2798. },
  2799. "suggest": {
  2800. "hyperf/di": "Required to use annotations."
  2801. },
  2802. "type": "library",
  2803. "extra": {
  2804. "branch-alias": {
  2805. "dev-master": "3.1-dev"
  2806. },
  2807. "hyperf": {
  2808. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2809. }
  2810. },
  2811. "autoload": {
  2812. "psr-4": {
  2813. "Hyperf\\HttpServer\\": "src/"
  2814. }
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "description": "A HTTP Server for Hyperf.",
  2821. "homepage": "https://hyperf.io",
  2822. "keywords": [
  2823. "http",
  2824. "http-server",
  2825. "hyperf",
  2826. "php",
  2827. "swoole"
  2828. ],
  2829. "support": {
  2830. "docs": "https://hyperf.wiki",
  2831. "issues": "https://github.com/hyperf/hyperf/issues",
  2832. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2833. "source": "https://github.com/hyperf/hyperf"
  2834. },
  2835. "funding": [
  2836. {
  2837. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2838. "type": "custom"
  2839. },
  2840. {
  2841. "url": "https://opencollective.com/hyperf",
  2842. "type": "open_collective"
  2843. }
  2844. ],
  2845. "time": "2024-09-25T02:54:12+00:00"
  2846. },
  2847. {
  2848. "name": "hyperf/json-rpc",
  2849. "version": "v3.1.47",
  2850. "source": {
  2851. "type": "git",
  2852. "url": "https://github.com/hyperf/json-rpc.git",
  2853. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2854. },
  2855. "dist": {
  2856. "type": "zip",
  2857. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2858. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2859. "shasum": ""
  2860. },
  2861. "require": {
  2862. "hyperf/codec": "~3.1.0",
  2863. "hyperf/context": "~3.1.0",
  2864. "hyperf/contract": "~3.1.0",
  2865. "hyperf/engine": "^2.0",
  2866. "hyperf/http-message": "~3.1.0",
  2867. "hyperf/load-balancer": "~3.1.0",
  2868. "hyperf/rpc": "~3.1.0",
  2869. "hyperf/serializer": "~3.1.0",
  2870. "hyperf/support": "~3.1.0",
  2871. "hyperf/utils": "~3.1.0",
  2872. "php": ">=8.1",
  2873. "psr/container": "^1.0 || ^2.0",
  2874. "swow/psr7-plus": "^1.0"
  2875. },
  2876. "suggest": {
  2877. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2878. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2879. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2880. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2881. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "hyperf": {
  2886. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2887. },
  2888. "branch-alias": {
  2889. "dev-master": "3.1-dev"
  2890. }
  2891. },
  2892. "autoload": {
  2893. "psr-4": {
  2894. "Hyperf\\JsonRpc\\": "src/"
  2895. }
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2902. "homepage": "https://hyperf.io",
  2903. "keywords": [
  2904. "hyperf",
  2905. "json-rpc",
  2906. "php",
  2907. "swoole"
  2908. ],
  2909. "support": {
  2910. "docs": "https://hyperf.wiki",
  2911. "issues": "https://github.com/hyperf/hyperf/issues",
  2912. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2913. "source": "https://github.com/hyperf/hyperf"
  2914. },
  2915. "funding": [
  2916. {
  2917. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2918. "type": "custom"
  2919. },
  2920. {
  2921. "url": "https://opencollective.com/hyperf",
  2922. "type": "open_collective"
  2923. }
  2924. ],
  2925. "time": "2024-11-28T01:51:55+00:00"
  2926. },
  2927. {
  2928. "name": "hyperf/load-balancer",
  2929. "version": "v3.1.42",
  2930. "source": {
  2931. "type": "git",
  2932. "url": "https://github.com/hyperf/load-balancer.git",
  2933. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2934. },
  2935. "dist": {
  2936. "type": "zip",
  2937. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2938. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2939. "shasum": ""
  2940. },
  2941. "require": {
  2942. "hyperf/coordinator": "~3.1.0",
  2943. "hyperf/coroutine": "~3.1.0",
  2944. "markrogoyski/math-php": "^2.0",
  2945. "php": ">=8.1",
  2946. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2947. },
  2948. "type": "library",
  2949. "extra": {
  2950. "branch-alias": {
  2951. "dev-master": "3.1-dev"
  2952. },
  2953. "hyperf": {
  2954. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2955. }
  2956. },
  2957. "autoload": {
  2958. "psr-4": {
  2959. "Hyperf\\LoadBalancer\\": "src/"
  2960. }
  2961. },
  2962. "notification-url": "https://packagist.org/downloads/",
  2963. "license": [
  2964. "MIT"
  2965. ],
  2966. "description": "A load balancer library for Hyperf.",
  2967. "homepage": "https://hyperf.io",
  2968. "keywords": [
  2969. "hyperf",
  2970. "load-balancer",
  2971. "php",
  2972. "swoole"
  2973. ],
  2974. "support": {
  2975. "docs": "https://hyperf.wiki",
  2976. "issues": "https://github.com/hyperf/hyperf/issues",
  2977. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2978. "source": "https://github.com/hyperf/hyperf"
  2979. },
  2980. "funding": [
  2981. {
  2982. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2983. "type": "custom"
  2984. },
  2985. {
  2986. "url": "https://opencollective.com/hyperf",
  2987. "type": "open_collective"
  2988. }
  2989. ],
  2990. "time": "2024-09-25T02:54:12+00:00"
  2991. },
  2992. {
  2993. "name": "hyperf/logger",
  2994. "version": "v3.1.42",
  2995. "source": {
  2996. "type": "git",
  2997. "url": "https://github.com/hyperf/logger.git",
  2998. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2999. },
  3000. "dist": {
  3001. "type": "zip",
  3002. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3003. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3004. "shasum": ""
  3005. },
  3006. "require": {
  3007. "hyperf/contract": "~3.1.0",
  3008. "hyperf/support": "~3.1.0",
  3009. "hyperf/utils": "~3.1.0",
  3010. "monolog/monolog": "^2.7 || ^3.1",
  3011. "php": ">=8.1",
  3012. "psr/container": "^1.0 || ^2.0",
  3013. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3014. },
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "3.1-dev"
  3019. },
  3020. "hyperf": {
  3021. "config": "Hyperf\\Logger\\ConfigProvider"
  3022. }
  3023. },
  3024. "autoload": {
  3025. "psr-4": {
  3026. "Hyperf\\Logger\\": "src/"
  3027. }
  3028. },
  3029. "notification-url": "https://packagist.org/downloads/",
  3030. "license": [
  3031. "MIT"
  3032. ],
  3033. "description": "A logger component for hyperf.",
  3034. "homepage": "https://hyperf.io",
  3035. "keywords": [
  3036. "hyperf",
  3037. "logger",
  3038. "php"
  3039. ],
  3040. "support": {
  3041. "docs": "https://hyperf.wiki",
  3042. "issues": "https://github.com/hyperf/hyperf/issues",
  3043. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3044. "source": "https://github.com/hyperf/hyperf"
  3045. },
  3046. "funding": [
  3047. {
  3048. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3049. "type": "custom"
  3050. },
  3051. {
  3052. "url": "https://opencollective.com/hyperf",
  3053. "type": "open_collective"
  3054. }
  3055. ],
  3056. "time": "2024-09-25T02:54:12+00:00"
  3057. },
  3058. {
  3059. "name": "hyperf/macroable",
  3060. "version": "v3.1.42",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://github.com/hyperf/macroable.git",
  3064. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3069. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3070. "shasum": ""
  3071. },
  3072. "require": {
  3073. "php": ">=8.1"
  3074. },
  3075. "type": "library",
  3076. "extra": {
  3077. "branch-alias": {
  3078. "dev-master": "3.1-dev"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "Hyperf\\Macroable\\": "src/"
  3084. }
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3091. "homepage": "https://hyperf.io",
  3092. "keywords": [
  3093. "hyperf",
  3094. "macroable",
  3095. "php",
  3096. "swoole"
  3097. ],
  3098. "support": {
  3099. "docs": "https://hyperf.wiki",
  3100. "issues": "https://github.com/hyperf/hyperf/issues",
  3101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3102. "source": "https://github.com/hyperf/hyperf"
  3103. },
  3104. "funding": [
  3105. {
  3106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3107. "type": "custom"
  3108. },
  3109. {
  3110. "url": "https://opencollective.com/hyperf",
  3111. "type": "open_collective"
  3112. }
  3113. ],
  3114. "time": "2024-09-25T02:54:12+00:00"
  3115. },
  3116. {
  3117. "name": "hyperf/memory",
  3118. "version": "v3.1.42",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/hyperf/memory.git",
  3122. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3127. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "php": ">=8.1"
  3132. },
  3133. "type": "library",
  3134. "extra": {
  3135. "branch-alias": {
  3136. "dev-master": "3.1-dev"
  3137. },
  3138. "hyperf": {
  3139. "config": "Hyperf\\Memory\\ConfigProvider"
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Hyperf\\Memory\\": "src/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "description": "An independent component that use to operate and manage memory.",
  3152. "homepage": "https://hyperf.io",
  3153. "keywords": [
  3154. "hyperf",
  3155. "memory",
  3156. "php",
  3157. "swoole"
  3158. ],
  3159. "support": {
  3160. "docs": "https://hyperf.wiki",
  3161. "issues": "https://github.com/hyperf/hyperf/issues",
  3162. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3163. "source": "https://github.com/hyperf/hyperf"
  3164. },
  3165. "funding": [
  3166. {
  3167. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3168. "type": "custom"
  3169. },
  3170. {
  3171. "url": "https://opencollective.com/hyperf",
  3172. "type": "open_collective"
  3173. }
  3174. ],
  3175. "time": "2024-09-25T02:54:12+00:00"
  3176. },
  3177. {
  3178. "name": "hyperf/model-listener",
  3179. "version": "v3.1.42",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://github.com/hyperf/model-listener.git",
  3183. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3188. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3189. "shasum": ""
  3190. },
  3191. "require": {
  3192. "hyperf/contract": "~3.1.0",
  3193. "hyperf/database": "~3.1.0",
  3194. "hyperf/di": "~3.1.0",
  3195. "hyperf/event": "~3.1.0",
  3196. "hyperf/support": "~3.1.0",
  3197. "hyperf/utils": "~3.1.0",
  3198. "php": ">=8.1",
  3199. "psr/container": "^1.0 || ^2.0"
  3200. },
  3201. "type": "library",
  3202. "extra": {
  3203. "branch-alias": {
  3204. "dev-master": "3.1-dev"
  3205. },
  3206. "hyperf": {
  3207. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3208. }
  3209. },
  3210. "autoload": {
  3211. "psr-4": {
  3212. "Hyperf\\ModelListener\\": "src/"
  3213. }
  3214. },
  3215. "notification-url": "https://packagist.org/downloads/",
  3216. "license": [
  3217. "MIT"
  3218. ],
  3219. "description": "A model listener for Hyperf.",
  3220. "homepage": "https://hyperf.io",
  3221. "keywords": [
  3222. "hyperf",
  3223. "model-listener",
  3224. "php",
  3225. "swoole"
  3226. ],
  3227. "support": {
  3228. "docs": "https://hyperf.wiki",
  3229. "issues": "https://github.com/hyperf/hyperf/issues",
  3230. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3231. "source": "https://github.com/hyperf/hyperf"
  3232. },
  3233. "funding": [
  3234. {
  3235. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3236. "type": "custom"
  3237. },
  3238. {
  3239. "url": "https://opencollective.com/hyperf",
  3240. "type": "open_collective"
  3241. }
  3242. ],
  3243. "time": "2024-09-25T02:54:12+00:00"
  3244. },
  3245. {
  3246. "name": "hyperf/nacos",
  3247. "version": "v3.1.42",
  3248. "source": {
  3249. "type": "git",
  3250. "url": "https://github.com/hyperf/nacos.git",
  3251. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3252. },
  3253. "dist": {
  3254. "type": "zip",
  3255. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3256. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3257. "shasum": ""
  3258. },
  3259. "require": {
  3260. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3261. "hyperf/codec": "~3.1.0",
  3262. "hyperf/contract": "~3.1.0",
  3263. "hyperf/support": "~3.1.0",
  3264. "hyperf/utils": "~3.1.0",
  3265. "jetbrains/phpstorm-attributes": "^1.0",
  3266. "php": ">=8.1"
  3267. },
  3268. "type": "library",
  3269. "extra": {
  3270. "branch-alias": {
  3271. "dev-master": "3.1-dev"
  3272. },
  3273. "hyperf": {
  3274. "config": "Hyperf\\Nacos\\ConfigProvider"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "psr-4": {
  3279. "Hyperf\\Nacos\\": "src/"
  3280. }
  3281. },
  3282. "notification-url": "https://packagist.org/downloads/",
  3283. "license": [
  3284. "MIT"
  3285. ],
  3286. "description": "Nacos SDK",
  3287. "keywords": [
  3288. "hyperf",
  3289. "nacos",
  3290. "php"
  3291. ],
  3292. "support": {
  3293. "issues": "https://github.com/hyperf/nacos/issues",
  3294. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3295. },
  3296. "funding": [
  3297. {
  3298. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3299. "type": "custom"
  3300. },
  3301. {
  3302. "url": "https://opencollective.com/hyperf",
  3303. "type": "open_collective"
  3304. }
  3305. ],
  3306. "time": "2024-09-25T02:54:12+00:00"
  3307. },
  3308. {
  3309. "name": "hyperf/pipeline",
  3310. "version": "v3.1.42",
  3311. "source": {
  3312. "type": "git",
  3313. "url": "https://github.com/hyperf/pipeline.git",
  3314. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3315. },
  3316. "dist": {
  3317. "type": "zip",
  3318. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3319. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3320. "shasum": ""
  3321. },
  3322. "require": {
  3323. "php": ">=8.1",
  3324. "psr/container": "^1.0 || ^2.0"
  3325. },
  3326. "type": "library",
  3327. "extra": {
  3328. "branch-alias": {
  3329. "dev-master": "3.1-dev"
  3330. }
  3331. },
  3332. "autoload": {
  3333. "psr-4": {
  3334. "Hyperf\\Pipeline\\": "src/"
  3335. }
  3336. },
  3337. "notification-url": "https://packagist.org/downloads/",
  3338. "license": [
  3339. "MIT"
  3340. ],
  3341. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3342. "homepage": "https://hyperf.io",
  3343. "keywords": [
  3344. "hyperf",
  3345. "php",
  3346. "pipeline",
  3347. "swoole"
  3348. ],
  3349. "support": {
  3350. "docs": "https://hyperf.wiki",
  3351. "issues": "https://github.com/hyperf/hyperf/issues",
  3352. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3353. "source": "https://github.com/hyperf/hyperf"
  3354. },
  3355. "funding": [
  3356. {
  3357. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3358. "type": "custom"
  3359. },
  3360. {
  3361. "url": "https://opencollective.com/hyperf",
  3362. "type": "open_collective"
  3363. }
  3364. ],
  3365. "time": "2024-09-25T02:54:12+00:00"
  3366. },
  3367. {
  3368. "name": "hyperf/pool",
  3369. "version": "v3.1.42",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/hyperf/pool.git",
  3373. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3378. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3379. "shasum": ""
  3380. },
  3381. "require": {
  3382. "hyperf/contract": "~3.1.0",
  3383. "hyperf/support": "~3.1.0",
  3384. "hyperf/utils": "~3.1.0",
  3385. "php": ">=8.1",
  3386. "psr/container": "^1.0 || ^2.0"
  3387. },
  3388. "suggest": {
  3389. "psr/event-dispatcher": "Required to use events."
  3390. },
  3391. "type": "library",
  3392. "extra": {
  3393. "branch-alias": {
  3394. "dev-master": "3.1-dev"
  3395. },
  3396. "hyperf": {
  3397. "config": "Hyperf\\Pool\\ConfigProvider"
  3398. }
  3399. },
  3400. "autoload": {
  3401. "psr-4": {
  3402. "Hyperf\\Pool\\": "src/"
  3403. }
  3404. },
  3405. "notification-url": "https://packagist.org/downloads/",
  3406. "license": [
  3407. "MIT"
  3408. ],
  3409. "description": "An independent universal connection pool component.",
  3410. "homepage": "https://hyperf.io",
  3411. "keywords": [
  3412. "connection-pool",
  3413. "hyperf",
  3414. "php",
  3415. "swoole"
  3416. ],
  3417. "support": {
  3418. "docs": "https://hyperf.wiki",
  3419. "issues": "https://github.com/hyperf/hyperf/issues",
  3420. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3421. "source": "https://github.com/hyperf/hyperf"
  3422. },
  3423. "funding": [
  3424. {
  3425. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3426. "type": "custom"
  3427. },
  3428. {
  3429. "url": "https://opencollective.com/hyperf",
  3430. "type": "open_collective"
  3431. }
  3432. ],
  3433. "time": "2024-09-25T02:54:12+00:00"
  3434. },
  3435. {
  3436. "name": "hyperf/process",
  3437. "version": "v3.1.42",
  3438. "source": {
  3439. "type": "git",
  3440. "url": "https://github.com/hyperf/process.git",
  3441. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3442. },
  3443. "dist": {
  3444. "type": "zip",
  3445. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3446. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3447. "shasum": ""
  3448. },
  3449. "require": {
  3450. "hyperf/contract": "~3.1.0",
  3451. "hyperf/support": "~3.1.0",
  3452. "hyperf/utils": "~3.1.0",
  3453. "php": ">=8.1",
  3454. "psr/container": "^1.0 || ^2.0",
  3455. "psr/event-dispatcher": "^1.0"
  3456. },
  3457. "suggest": {
  3458. "hyperf/di": "Required to use annotations.",
  3459. "hyperf/event": "Required to dump the message before and after process.",
  3460. "hyperf/framework": "Required to use BootProcessListener."
  3461. },
  3462. "type": "library",
  3463. "extra": {
  3464. "hyperf": {
  3465. "config": "Hyperf\\Process\\ConfigProvider"
  3466. },
  3467. "branch-alias": {
  3468. "dev-master": "3.1-dev"
  3469. }
  3470. },
  3471. "autoload": {
  3472. "psr-4": {
  3473. "Hyperf\\Process\\": "src/"
  3474. }
  3475. },
  3476. "notification-url": "https://packagist.org/downloads/",
  3477. "license": [
  3478. "MIT"
  3479. ],
  3480. "description": "A process component for hyperf.",
  3481. "homepage": "https://hyperf.io",
  3482. "keywords": [
  3483. "hyperf",
  3484. "php",
  3485. "process"
  3486. ],
  3487. "support": {
  3488. "docs": "https://hyperf.wiki",
  3489. "issues": "https://github.com/hyperf/hyperf/issues",
  3490. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3491. "source": "https://github.com/hyperf/hyperf"
  3492. },
  3493. "funding": [
  3494. {
  3495. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3496. "type": "custom"
  3497. },
  3498. {
  3499. "url": "https://opencollective.com/hyperf",
  3500. "type": "open_collective"
  3501. }
  3502. ],
  3503. "time": "2024-09-25T02:54:12+00:00"
  3504. },
  3505. {
  3506. "name": "hyperf/redis",
  3507. "version": "v3.1.42",
  3508. "source": {
  3509. "type": "git",
  3510. "url": "https://github.com/hyperf/redis.git",
  3511. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3512. },
  3513. "dist": {
  3514. "type": "zip",
  3515. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3516. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3517. "shasum": ""
  3518. },
  3519. "require": {
  3520. "ext-redis": "^5.0 || ^6.0",
  3521. "hyperf/contract": "~3.1.0",
  3522. "hyperf/pool": "~3.1.0",
  3523. "hyperf/support": "~3.1.0",
  3524. "hyperf/tappable": "~3.1.0",
  3525. "hyperf/utils": "~3.1.0",
  3526. "php": ">=8.1",
  3527. "psr/container": "^1.0 || ^2.0"
  3528. },
  3529. "suggest": {
  3530. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3531. "hyperf/di": "Create the RedisPool via dependency injection."
  3532. },
  3533. "type": "library",
  3534. "extra": {
  3535. "branch-alias": {
  3536. "dev-master": "3.1-dev"
  3537. },
  3538. "hyperf": {
  3539. "config": "Hyperf\\Redis\\ConfigProvider"
  3540. }
  3541. },
  3542. "autoload": {
  3543. "psr-4": {
  3544. "Hyperf\\Redis\\": "src/"
  3545. }
  3546. },
  3547. "notification-url": "https://packagist.org/downloads/",
  3548. "license": [
  3549. "MIT"
  3550. ],
  3551. "description": "A redis component for hyperf.",
  3552. "homepage": "https://hyperf.io",
  3553. "keywords": [
  3554. "hyperf",
  3555. "php",
  3556. "pool",
  3557. "redis"
  3558. ],
  3559. "support": {
  3560. "docs": "https://hyperf.wiki",
  3561. "issues": "https://github.com/hyperf/hyperf/issues",
  3562. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3563. "source": "https://github.com/hyperf/hyperf"
  3564. },
  3565. "funding": [
  3566. {
  3567. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3568. "type": "custom"
  3569. },
  3570. {
  3571. "url": "https://opencollective.com/hyperf",
  3572. "type": "open_collective"
  3573. }
  3574. ],
  3575. "time": "2024-09-25T02:54:12+00:00"
  3576. },
  3577. {
  3578. "name": "hyperf/rpc",
  3579. "version": "v3.1.42",
  3580. "source": {
  3581. "type": "git",
  3582. "url": "https://github.com/hyperf/rpc.git",
  3583. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3584. },
  3585. "dist": {
  3586. "type": "zip",
  3587. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3588. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3589. "shasum": ""
  3590. },
  3591. "require": {
  3592. "hyperf/codec": "~3.1.0",
  3593. "hyperf/contract": "~3.1.0",
  3594. "hyperf/support": "~3.1.0",
  3595. "jetbrains/phpstorm-attributes": "^1.0",
  3596. "php": ">=8.1"
  3597. },
  3598. "type": "library",
  3599. "extra": {
  3600. "branch-alias": {
  3601. "dev-master": "3.1-dev"
  3602. },
  3603. "hyperf": []
  3604. },
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Hyperf\\Rpc\\": "src/"
  3608. }
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "description": "A rpc basic library for Hyperf.",
  3615. "homepage": "https://hyperf.io",
  3616. "keywords": [
  3617. "hyperf",
  3618. "php",
  3619. "rpc",
  3620. "swoole"
  3621. ],
  3622. "support": {
  3623. "docs": "https://hyperf.wiki",
  3624. "issues": "https://github.com/hyperf/hyperf/issues",
  3625. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3626. "source": "https://github.com/hyperf/hyperf"
  3627. },
  3628. "funding": [
  3629. {
  3630. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3631. "type": "custom"
  3632. },
  3633. {
  3634. "url": "https://opencollective.com/hyperf",
  3635. "type": "open_collective"
  3636. }
  3637. ],
  3638. "time": "2024-09-25T02:54:12+00:00"
  3639. },
  3640. {
  3641. "name": "hyperf/rpc-server",
  3642. "version": "v3.1.42",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/hyperf/rpc-server.git",
  3646. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3651. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "hyperf/http-server": "~3.1.0",
  3656. "hyperf/rpc": "~3.1.0",
  3657. "php": ">=8.1"
  3658. },
  3659. "suggest": {
  3660. "hyperf/di": "Required to use annotations."
  3661. },
  3662. "type": "library",
  3663. "extra": {
  3664. "branch-alias": {
  3665. "dev-master": "3.1-dev"
  3666. },
  3667. "hyperf": {
  3668. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3669. }
  3670. },
  3671. "autoload": {
  3672. "psr-4": {
  3673. "Hyperf\\RpcServer\\": "src/"
  3674. }
  3675. },
  3676. "notification-url": "https://packagist.org/downloads/",
  3677. "license": [
  3678. "MIT"
  3679. ],
  3680. "description": "An abstract rpc server component for Hyperf.",
  3681. "homepage": "https://hyperf.io",
  3682. "keywords": [
  3683. "hyperf",
  3684. "php",
  3685. "rpc",
  3686. "rpc-server",
  3687. "swoole"
  3688. ],
  3689. "support": {
  3690. "docs": "https://hyperf.wiki",
  3691. "issues": "https://github.com/hyperf/hyperf/issues",
  3692. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3693. "source": "https://github.com/hyperf/hyperf"
  3694. },
  3695. "funding": [
  3696. {
  3697. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3698. "type": "custom"
  3699. },
  3700. {
  3701. "url": "https://opencollective.com/hyperf",
  3702. "type": "open_collective"
  3703. }
  3704. ],
  3705. "time": "2024-09-25T02:54:12+00:00"
  3706. },
  3707. {
  3708. "name": "hyperf/serializer",
  3709. "version": "v3.1.42",
  3710. "source": {
  3711. "type": "git",
  3712. "url": "https://github.com/hyperf/serializer.git",
  3713. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3714. },
  3715. "dist": {
  3716. "type": "zip",
  3717. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3718. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3719. "shasum": ""
  3720. },
  3721. "require": {
  3722. "hyperf/contract": "~3.1.0",
  3723. "php": ">=8.1"
  3724. },
  3725. "suggest": {
  3726. "hyperf/di": "Required to use ExceptionNormalizer",
  3727. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3728. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3729. },
  3730. "type": "library",
  3731. "extra": {
  3732. "branch-alias": {
  3733. "dev-master": "3.1-dev"
  3734. },
  3735. "hyperf": {
  3736. "config": "Hyperf\\Serializer\\ConfigProvider"
  3737. }
  3738. },
  3739. "autoload": {
  3740. "psr-4": {
  3741. "Hyperf\\Serializer\\": "src/"
  3742. }
  3743. },
  3744. "notification-url": "https://packagist.org/downloads/",
  3745. "license": [
  3746. "MIT"
  3747. ],
  3748. "description": "A serializer component for Hyperf.",
  3749. "homepage": "https://hyperf.io",
  3750. "keywords": [
  3751. "hyperf",
  3752. "php",
  3753. "swoole",
  3754. "tappable"
  3755. ],
  3756. "support": {
  3757. "docs": "https://hyperf.wiki",
  3758. "issues": "https://github.com/hyperf/hyperf/issues",
  3759. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3760. "source": "https://github.com/hyperf/hyperf"
  3761. },
  3762. "funding": [
  3763. {
  3764. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3765. "type": "custom"
  3766. },
  3767. {
  3768. "url": "https://opencollective.com/hyperf",
  3769. "type": "open_collective"
  3770. }
  3771. ],
  3772. "time": "2024-09-25T02:54:12+00:00"
  3773. },
  3774. {
  3775. "name": "hyperf/server",
  3776. "version": "v3.1.42",
  3777. "source": {
  3778. "type": "git",
  3779. "url": "https://github.com/hyperf/server.git",
  3780. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3781. },
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3785. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3786. "shasum": ""
  3787. },
  3788. "require": {
  3789. "hyperf/contract": "~3.1.0",
  3790. "hyperf/coordinator": "~3.1.0",
  3791. "hyperf/engine": "^2.8",
  3792. "hyperf/support": "~3.1.0",
  3793. "hyperf/tappable": "~3.1.0",
  3794. "php": ">=8.1",
  3795. "psr/container": "^1.0 || ^2.0",
  3796. "psr/event-dispatcher": "^1.0",
  3797. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3798. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3799. },
  3800. "suggest": {
  3801. "hyperf/event": "Dump the info after server start.",
  3802. "hyperf/framework": "Dump the info after server start."
  3803. },
  3804. "type": "library",
  3805. "extra": {
  3806. "branch-alias": {
  3807. "dev-master": "3.1-dev"
  3808. },
  3809. "hyperf": {
  3810. "config": "Hyperf\\Server\\ConfigProvider"
  3811. }
  3812. },
  3813. "autoload": {
  3814. "psr-4": {
  3815. "Hyperf\\Server\\": "src/"
  3816. }
  3817. },
  3818. "notification-url": "https://packagist.org/downloads/",
  3819. "license": [
  3820. "MIT"
  3821. ],
  3822. "description": "A base server library for Hyperf.",
  3823. "homepage": "https://hyperf.io",
  3824. "keywords": [
  3825. "hyperf",
  3826. "php",
  3827. "server",
  3828. "swoole"
  3829. ],
  3830. "support": {
  3831. "docs": "https://hyperf.wiki",
  3832. "issues": "https://github.com/hyperf/hyperf/issues",
  3833. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3834. "source": "https://github.com/hyperf/hyperf"
  3835. },
  3836. "funding": [
  3837. {
  3838. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3839. "type": "custom"
  3840. },
  3841. {
  3842. "url": "https://opencollective.com/hyperf",
  3843. "type": "open_collective"
  3844. }
  3845. ],
  3846. "time": "2024-09-25T02:54:12+00:00"
  3847. },
  3848. {
  3849. "name": "hyperf/service-governance",
  3850. "version": "v3.1.42",
  3851. "source": {
  3852. "type": "git",
  3853. "url": "https://github.com/hyperf/service-governance.git",
  3854. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3855. },
  3856. "dist": {
  3857. "type": "zip",
  3858. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3859. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3860. "shasum": ""
  3861. },
  3862. "require": {
  3863. "hyperf/contract": "~3.1.0",
  3864. "hyperf/support": "~3.1.0",
  3865. "jetbrains/phpstorm-attributes": "^1.0",
  3866. "php": ">=8.1"
  3867. },
  3868. "suggest": {
  3869. "hyperf/event": "Required to use RegisterServiceListener.",
  3870. "hyperf/framework": "Required to use RegisterServiceListener.",
  3871. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3872. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3873. },
  3874. "type": "library",
  3875. "extra": {
  3876. "branch-alias": {
  3877. "dev-master": "3.1-dev"
  3878. },
  3879. "hyperf": {
  3880. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3881. }
  3882. },
  3883. "autoload": {
  3884. "psr-4": {
  3885. "Hyperf\\ServiceGovernance\\": "src/"
  3886. }
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "MIT"
  3891. ],
  3892. "description": "A service governance component for Hyperf.",
  3893. "homepage": "https://hyperf.io",
  3894. "keywords": [
  3895. "hyperf",
  3896. "php",
  3897. "service-governance",
  3898. "swoole"
  3899. ],
  3900. "support": {
  3901. "docs": "https://hyperf.wiki",
  3902. "issues": "https://github.com/hyperf/hyperf/issues",
  3903. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3904. "source": "https://github.com/hyperf/hyperf"
  3905. },
  3906. "funding": [
  3907. {
  3908. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3909. "type": "custom"
  3910. },
  3911. {
  3912. "url": "https://opencollective.com/hyperf",
  3913. "type": "open_collective"
  3914. }
  3915. ],
  3916. "time": "2024-09-25T02:54:12+00:00"
  3917. },
  3918. {
  3919. "name": "hyperf/service-governance-consul",
  3920. "version": "v3.1.42",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://github.com/hyperf/service-governance-consul.git",
  3924. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  3929. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  3930. "shasum": ""
  3931. },
  3932. "require": {
  3933. "hyperf/consul": "~3.1.0",
  3934. "hyperf/contract": "~3.1.0",
  3935. "hyperf/service-governance": "~3.1.0",
  3936. "hyperf/support": "~3.1.0",
  3937. "hyperf/utils": "~3.1.0",
  3938. "php": ">=8.1"
  3939. },
  3940. "type": "library",
  3941. "extra": {
  3942. "branch-alias": {
  3943. "dev-master": "3.1-dev"
  3944. },
  3945. "hyperf": {
  3946. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3947. }
  3948. },
  3949. "autoload": {
  3950. "psr-4": {
  3951. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3952. }
  3953. },
  3954. "notification-url": "https://packagist.org/downloads/",
  3955. "license": [
  3956. "MIT"
  3957. ],
  3958. "description": "A consul adapter for service governance.",
  3959. "homepage": "https://hyperf.io",
  3960. "keywords": [
  3961. "consul-adapter",
  3962. "hyperf",
  3963. "php",
  3964. "service-governance",
  3965. "swoole"
  3966. ],
  3967. "support": {
  3968. "docs": "https://hyperf.wiki",
  3969. "issues": "https://github.com/hyperf/hyperf/issues",
  3970. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3971. "source": "https://github.com/hyperf/hyperf"
  3972. },
  3973. "funding": [
  3974. {
  3975. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3976. "type": "custom"
  3977. },
  3978. {
  3979. "url": "https://opencollective.com/hyperf",
  3980. "type": "open_collective"
  3981. }
  3982. ],
  3983. "time": "2024-09-25T02:54:12+00:00"
  3984. },
  3985. {
  3986. "name": "hyperf/service-governance-nacos",
  3987. "version": "v3.1.42",
  3988. "source": {
  3989. "type": "git",
  3990. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3991. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  3992. },
  3993. "dist": {
  3994. "type": "zip",
  3995. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  3996. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  3997. "shasum": ""
  3998. },
  3999. "require": {
  4000. "hyperf/codec": "~3.1.0",
  4001. "hyperf/contract": "~3.1.0",
  4002. "hyperf/nacos": "~3.1.0",
  4003. "hyperf/service-governance": "~3.1.0",
  4004. "hyperf/support": "~3.1.0",
  4005. "hyperf/utils": "~3.1.0",
  4006. "php": ">=8.1"
  4007. },
  4008. "type": "library",
  4009. "extra": {
  4010. "branch-alias": {
  4011. "dev-master": "3.1-dev"
  4012. },
  4013. "hyperf": {
  4014. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4015. }
  4016. },
  4017. "autoload": {
  4018. "psr-4": {
  4019. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4020. }
  4021. },
  4022. "notification-url": "https://packagist.org/downloads/",
  4023. "license": [
  4024. "MIT"
  4025. ],
  4026. "description": "A nacos adapter for service governance.",
  4027. "homepage": "https://hyperf.io",
  4028. "keywords": [
  4029. "hyperf",
  4030. "nacos-adapter",
  4031. "php",
  4032. "service-governance",
  4033. "swoole"
  4034. ],
  4035. "support": {
  4036. "docs": "https://hyperf.wiki",
  4037. "issues": "https://github.com/hyperf/hyperf/issues",
  4038. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4039. "source": "https://github.com/hyperf/hyperf"
  4040. },
  4041. "funding": [
  4042. {
  4043. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4044. "type": "custom"
  4045. },
  4046. {
  4047. "url": "https://opencollective.com/hyperf",
  4048. "type": "open_collective"
  4049. }
  4050. ],
  4051. "time": "2024-09-25T02:54:12+00:00"
  4052. },
  4053. {
  4054. "name": "hyperf/stdlib",
  4055. "version": "v3.1.42",
  4056. "source": {
  4057. "type": "git",
  4058. "url": "https://github.com/hyperf/stdlib.git",
  4059. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4060. },
  4061. "dist": {
  4062. "type": "zip",
  4063. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4064. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4065. "shasum": ""
  4066. },
  4067. "require": {
  4068. "php": ">=8.1"
  4069. },
  4070. "type": "library",
  4071. "extra": {
  4072. "branch-alias": {
  4073. "dev-master": "3.1-dev"
  4074. }
  4075. },
  4076. "autoload": {
  4077. "psr-4": {
  4078. "Hyperf\\Stdlib\\": "src/"
  4079. }
  4080. },
  4081. "notification-url": "https://packagist.org/downloads/",
  4082. "license": [
  4083. "MIT"
  4084. ],
  4085. "description": "A stdlib component for Hyperf.",
  4086. "homepage": "https://hyperf.io",
  4087. "keywords": [
  4088. "hyperf",
  4089. "php",
  4090. "stdlib",
  4091. "swoole"
  4092. ],
  4093. "support": {
  4094. "docs": "https://hyperf.wiki",
  4095. "issues": "https://github.com/hyperf/hyperf/issues",
  4096. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4097. "source": "https://github.com/hyperf/hyperf"
  4098. },
  4099. "funding": [
  4100. {
  4101. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4102. "type": "custom"
  4103. },
  4104. {
  4105. "url": "https://opencollective.com/hyperf",
  4106. "type": "open_collective"
  4107. }
  4108. ],
  4109. "time": "2024-09-25T02:54:12+00:00"
  4110. },
  4111. {
  4112. "name": "hyperf/stringable",
  4113. "version": "v3.1.43",
  4114. "source": {
  4115. "type": "git",
  4116. "url": "https://github.com/hyperf/stringable.git",
  4117. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4118. },
  4119. "dist": {
  4120. "type": "zip",
  4121. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4122. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4123. "shasum": ""
  4124. },
  4125. "require": {
  4126. "ext-mbstring": "*",
  4127. "hyperf/collection": "~3.1.0",
  4128. "hyperf/conditionable": "~3.1.0",
  4129. "hyperf/macroable": "~3.1.0",
  4130. "hyperf/tappable": "~3.1.0",
  4131. "php": ">=8.1"
  4132. },
  4133. "suggest": {
  4134. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4135. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4136. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4137. },
  4138. "type": "library",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-master": "3.1-dev"
  4142. }
  4143. },
  4144. "autoload": {
  4145. "files": [
  4146. "src/Functions.php"
  4147. ],
  4148. "psr-4": {
  4149. "Hyperf\\Stringable\\": "src/"
  4150. }
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "MIT"
  4155. ],
  4156. "description": "Hyperf Stringable package which come from illuminate/support",
  4157. "homepage": "https://hyperf.io",
  4158. "keywords": [
  4159. "hyperf",
  4160. "php",
  4161. "stringable",
  4162. "swoole"
  4163. ],
  4164. "support": {
  4165. "docs": "https://hyperf.wiki",
  4166. "issues": "https://github.com/hyperf/hyperf/issues",
  4167. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4168. "source": "https://github.com/hyperf/hyperf"
  4169. },
  4170. "funding": [
  4171. {
  4172. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4173. "type": "custom"
  4174. },
  4175. {
  4176. "url": "https://opencollective.com/hyperf",
  4177. "type": "open_collective"
  4178. }
  4179. ],
  4180. "time": "2024-10-09T02:28:40+00:00"
  4181. },
  4182. {
  4183. "name": "hyperf/support",
  4184. "version": "v3.1.47",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://github.com/hyperf/support.git",
  4188. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4193. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4194. "shasum": ""
  4195. },
  4196. "require": {
  4197. "hyperf/collection": "~3.1.0",
  4198. "hyperf/context": "~3.1.0",
  4199. "hyperf/contract": "~3.1.0",
  4200. "hyperf/coroutine": "~3.1.0",
  4201. "hyperf/macroable": "~3.1.0",
  4202. "hyperf/stringable": "~3.1.0",
  4203. "php": ">=8.1"
  4204. },
  4205. "suggest": {
  4206. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4207. },
  4208. "type": "library",
  4209. "extra": {
  4210. "branch-alias": {
  4211. "dev-master": "3.1-dev"
  4212. }
  4213. },
  4214. "autoload": {
  4215. "files": [
  4216. "src/Functions.php"
  4217. ],
  4218. "psr-4": {
  4219. "Hyperf\\Support\\": "src/"
  4220. }
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "MIT"
  4225. ],
  4226. "description": "A support component for Hyperf.",
  4227. "homepage": "https://hyperf.io",
  4228. "keywords": [
  4229. "hyperf",
  4230. "php",
  4231. "support",
  4232. "swoole"
  4233. ],
  4234. "support": {
  4235. "docs": "https://hyperf.wiki",
  4236. "issues": "https://github.com/hyperf/hyperf/issues",
  4237. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4238. "source": "https://github.com/hyperf/hyperf"
  4239. },
  4240. "funding": [
  4241. {
  4242. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4243. "type": "custom"
  4244. },
  4245. {
  4246. "url": "https://opencollective.com/hyperf",
  4247. "type": "open_collective"
  4248. }
  4249. ],
  4250. "time": "2024-11-28T01:51:55+00:00"
  4251. },
  4252. {
  4253. "name": "hyperf/tappable",
  4254. "version": "v3.1.42",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/hyperf/tappable.git",
  4258. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4263. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4264. "shasum": ""
  4265. },
  4266. "require": {
  4267. "php": ">=8.1"
  4268. },
  4269. "type": "library",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-master": "3.1-dev"
  4273. }
  4274. },
  4275. "autoload": {
  4276. "files": [
  4277. "src/Functions.php"
  4278. ],
  4279. "psr-4": {
  4280. "Hyperf\\Tappable\\": "src/"
  4281. }
  4282. },
  4283. "notification-url": "https://packagist.org/downloads/",
  4284. "license": [
  4285. "MIT"
  4286. ],
  4287. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4288. "homepage": "https://hyperf.io",
  4289. "keywords": [
  4290. "hyperf",
  4291. "php",
  4292. "swoole",
  4293. "tappable"
  4294. ],
  4295. "support": {
  4296. "docs": "https://hyperf.wiki",
  4297. "issues": "https://github.com/hyperf/hyperf/issues",
  4298. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4299. "source": "https://github.com/hyperf/hyperf"
  4300. },
  4301. "funding": [
  4302. {
  4303. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4304. "type": "custom"
  4305. },
  4306. {
  4307. "url": "https://opencollective.com/hyperf",
  4308. "type": "open_collective"
  4309. }
  4310. ],
  4311. "time": "2024-09-25T02:54:12+00:00"
  4312. },
  4313. {
  4314. "name": "hyperf/utils",
  4315. "version": "v3.1.42",
  4316. "source": {
  4317. "type": "git",
  4318. "url": "https://github.com/hyperf/utils.git",
  4319. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4320. },
  4321. "dist": {
  4322. "type": "zip",
  4323. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4324. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4325. "shasum": ""
  4326. },
  4327. "require": {
  4328. "doctrine/inflector": "^2.0",
  4329. "hyperf/code-parser": "~3.1.0",
  4330. "hyperf/codec": "~3.1.0",
  4331. "hyperf/collection": "~3.1.0",
  4332. "hyperf/context": "~3.1.0",
  4333. "hyperf/contract": "~3.1.0",
  4334. "hyperf/coordinator": "~3.1.0",
  4335. "hyperf/coroutine": "~3.1.0",
  4336. "hyperf/engine": "^2.0",
  4337. "hyperf/macroable": "~3.1.0",
  4338. "hyperf/serializer": "~3.1.0",
  4339. "hyperf/stringable": "~3.1.0",
  4340. "hyperf/support": "~3.1.0",
  4341. "php": ">=8.1"
  4342. },
  4343. "type": "library",
  4344. "extra": {
  4345. "branch-alias": {
  4346. "dev-master": "3.1-dev"
  4347. }
  4348. },
  4349. "notification-url": "https://packagist.org/downloads/",
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "description": "A tools package that could help developer solved the problem quickly.",
  4354. "homepage": "https://hyperf.io",
  4355. "keywords": [
  4356. "hyperf",
  4357. "php",
  4358. "swoole",
  4359. "utils"
  4360. ],
  4361. "support": {
  4362. "docs": "https://hyperf.wiki",
  4363. "issues": "https://github.com/hyperf/hyperf/issues",
  4364. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4365. "source": "https://github.com/hyperf/hyperf"
  4366. },
  4367. "funding": [
  4368. {
  4369. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4370. "type": "custom"
  4371. },
  4372. {
  4373. "url": "https://opencollective.com/hyperf",
  4374. "type": "open_collective"
  4375. }
  4376. ],
  4377. "time": "2024-09-25T02:54:12+00:00"
  4378. },
  4379. {
  4380. <<<<<<< HEAD
  4381. "name": "jaeger/g-http",
  4382. "version": "V2.0.1",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://github.com/jae-jae/GHttp.git",
  4386. "reference": "29cb537c57f230980ca10622de190f04831e35e6"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/29cb537c57f230980ca10622de190f04831e35e6",
  4391. "reference": "29cb537c57f230980ca10622de190f04831e35e6",
  4392. "shasum": ""
  4393. },
  4394. "require": {
  4395. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  4396. "php": ">=8.1",
  4397. "symfony/cache": "^6.4 || ^7.0"
  4398. },
  4399. "require-dev": {
  4400. "predis/predis": "^2.2"
  4401. },
  4402. "type": "library",
  4403. "autoload": {
  4404. "psr-4": {
  4405. "Jaeger\\": "src"
  4406. }
  4407. },
  4408. "notification-url": "https://packagist.org/downloads/",
  4409. "license": [
  4410. "MIT"
  4411. ],
  4412. "authors": [
  4413. {
  4414. "name": "Jaeger",
  4415. "email": "JaegerCode@gmail.com"
  4416. }
  4417. ],
  4418. "description": "Simple Http client base on GuzzleHttp",
  4419. "support": {
  4420. "issues": "https://github.com/jae-jae/GHttp/issues",
  4421. "source": "https://github.com/jae-jae/GHttp/tree/V2.0.1"
  4422. },
  4423. "time": "2024-06-14T08:13:32+00:00"
  4424. },
  4425. {
  4426. "name": "jaeger/phpquery-single",
  4427. "version": "1.1.1",
  4428. "source": {
  4429. "type": "git",
  4430. "url": "https://github.com/jae-jae/phpQuery-single.git",
  4431. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  4432. },
  4433. "dist": {
  4434. "type": "zip",
  4435. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  4436. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  4437. "shasum": ""
  4438. },
  4439. "require": {
  4440. "php": ">=5.3.0"
  4441. },
  4442. "type": "library",
  4443. "autoload": {
  4444. "classmap": [
  4445. "phpQuery.php"
  4446. ]
  4447. },
  4448. "notification-url": "https://packagist.org/downloads/",
  4449. "license": [
  4450. "MIT"
  4451. ],
  4452. "authors": [
  4453. {
  4454. "name": "Tobiasz Cudnik",
  4455. "email": "tobiasz.cudnik@gmail.com",
  4456. "homepage": "https://github.com/TobiaszCudnik",
  4457. "role": "Developer"
  4458. },
  4459. {
  4460. "name": "Jaeger",
  4461. "role": "Packager"
  4462. }
  4463. ],
  4464. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  4465. "homepage": "http://code.google.com/p/phpquery/",
  4466. "support": {
  4467. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  4468. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  4469. },
  4470. "time": "2022-03-26T15:01:16+00:00"
  4471. },
  4472. {
  4473. "name": "jaeger/querylist",
  4474. "version": "V4.4.5",
  4475. "source": {
  4476. "type": "git",
  4477. "url": "https://github.com/jae-jae/QueryList.git",
  4478. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2"
  4479. },
  4480. "dist": {
  4481. "type": "zip",
  4482. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4483. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4484. "shasum": ""
  4485. },
  4486. "require": {
  4487. "ext-dom": "*",
  4488. "jaeger/g-http": "^2.0",
  4489. "jaeger/phpquery-single": "^1",
  4490. "php": ">=8.1",
  4491. "symfony/var-dumper": ">3.4"
  4492. },
  4493. "require-dev": {
  4494. "phpunit/phpunit": "^8.5"
  4495. },
  4496. "type": "library",
  4497. "autoload": {
  4498. "files": [
  4499. "src/Collect/Support/helpers.php",
  4500. "src/Collect/Support/alias.php"
  4501. ],
  4502. "psr-4": {
  4503. "QL\\": "src"
  4504. }
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "MIT"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "Jaeger",
  4513. "email": "JaegerCode@gmail.com"
  4514. }
  4515. ],
  4516. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  4517. "homepage": "http://querylist.cc",
  4518. "keywords": [
  4519. "QueryList",
  4520. "phpQuery",
  4521. "spider"
  4522. ],
  4523. "support": {
  4524. "issues": "https://github.com/jae-jae/QueryList/issues",
  4525. "source": "https://github.com/jae-jae/QueryList/tree/V4.4.5"
  4526. },
  4527. "funding": [
  4528. {
  4529. "url": "https://opencollective.com/querylist",
  4530. "type": "open_collective"
  4531. }
  4532. ],
  4533. "time": "2024-07-16T07:11:08+00:00"
  4534. },
  4535. {
  4536. "name": "jetbrains/phpstorm-attributes",
  4537. "version": "1.1",
  4538. =======
  4539. <<<<<<< HEAD
  4540. "name": "jaeger/g-http",
  4541. "version": "V2.0.1",
  4542. >>>>>>> collector_1106_fr
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://github.com/jae-jae/GHttp.git",
  4546. "reference": "29cb537c57f230980ca10622de190f04831e35e6"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/29cb537c57f230980ca10622de190f04831e35e6",
  4551. "reference": "29cb537c57f230980ca10622de190f04831e35e6",
  4552. "shasum": ""
  4553. },
  4554. "require": {
  4555. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  4556. "php": ">=8.1",
  4557. "symfony/cache": "^6.4 || ^7.0"
  4558. },
  4559. "require-dev": {
  4560. "predis/predis": "^2.2"
  4561. },
  4562. "type": "library",
  4563. "autoload": {
  4564. "psr-4": {
  4565. "Jaeger\\": "src"
  4566. }
  4567. },
  4568. "notification-url": "https://packagist.org/downloads/",
  4569. "license": [
  4570. "MIT"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "Jaeger",
  4575. "email": "JaegerCode@gmail.com"
  4576. }
  4577. ],
  4578. "description": "Simple Http client base on GuzzleHttp",
  4579. "support": {
  4580. "issues": "https://github.com/jae-jae/GHttp/issues",
  4581. "source": "https://github.com/jae-jae/GHttp/tree/V2.0.1"
  4582. },
  4583. "time": "2024-06-14T08:13:32+00:00"
  4584. },
  4585. {
  4586. "name": "jaeger/phpquery-single",
  4587. "version": "1.1.1",
  4588. "source": {
  4589. "type": "git",
  4590. "url": "https://github.com/jae-jae/phpQuery-single.git",
  4591. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  4592. },
  4593. "dist": {
  4594. "type": "zip",
  4595. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  4596. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  4597. "shasum": ""
  4598. },
  4599. "require": {
  4600. "php": ">=5.3.0"
  4601. },
  4602. "type": "library",
  4603. "autoload": {
  4604. "classmap": [
  4605. "phpQuery.php"
  4606. ]
  4607. },
  4608. "notification-url": "https://packagist.org/downloads/",
  4609. "license": [
  4610. "MIT"
  4611. ],
  4612. "authors": [
  4613. {
  4614. "name": "Tobiasz Cudnik",
  4615. "email": "tobiasz.cudnik@gmail.com",
  4616. "homepage": "https://github.com/TobiaszCudnik",
  4617. "role": "Developer"
  4618. },
  4619. {
  4620. "name": "Jaeger",
  4621. "role": "Packager"
  4622. }
  4623. ],
  4624. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  4625. "homepage": "http://code.google.com/p/phpquery/",
  4626. "support": {
  4627. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  4628. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  4629. },
  4630. "time": "2022-03-26T15:01:16+00:00"
  4631. },
  4632. {
  4633. "name": "jaeger/querylist",
  4634. "version": "V4.4.5",
  4635. "source": {
  4636. "type": "git",
  4637. "url": "https://github.com/jae-jae/QueryList.git",
  4638. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2"
  4639. },
  4640. "dist": {
  4641. "type": "zip",
  4642. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4643. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4644. "shasum": ""
  4645. },
  4646. "require": {
  4647. "ext-dom": "*",
  4648. "jaeger/g-http": "^2.0",
  4649. "jaeger/phpquery-single": "^1",
  4650. "php": ">=8.1",
  4651. "symfony/var-dumper": ">3.4"
  4652. },
  4653. "require-dev": {
  4654. "phpunit/phpunit": "^8.5"
  4655. },
  4656. "type": "library",
  4657. "autoload": {
  4658. "files": [
  4659. "src/Collect/Support/helpers.php",
  4660. "src/Collect/Support/alias.php"
  4661. ],
  4662. "psr-4": {
  4663. "QL\\": "src"
  4664. }
  4665. },
  4666. "notification-url": "https://packagist.org/downloads/",
  4667. "license": [
  4668. "MIT"
  4669. ],
  4670. "authors": [
  4671. {
  4672. "name": "Jaeger",
  4673. "email": "JaegerCode@gmail.com"
  4674. }
  4675. ],
  4676. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  4677. "homepage": "http://querylist.cc",
  4678. "keywords": [
  4679. "QueryList",
  4680. "phpQuery",
  4681. "spider"
  4682. ],
  4683. "support": {
  4684. "issues": "https://github.com/jae-jae/QueryList/issues",
  4685. "source": "https://github.com/jae-jae/QueryList/tree/V4.4.5"
  4686. },
  4687. "funding": [
  4688. {
  4689. "url": "https://opencollective.com/querylist",
  4690. "type": "open_collective"
  4691. }
  4692. ],
  4693. "time": "2024-07-16T07:11:08+00:00"
  4694. },
  4695. {
  4696. "name": "jetbrains/phpstorm-attributes",
  4697. "version": "1.2",
  4698. "source": {
  4699. "type": "git",
  4700. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4701. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4702. },
  4703. "dist": {
  4704. "type": "zip",
  4705. =======
  4706. "name": "jetbrains/phpstorm-attributes",
  4707. "version": "1.2",
  4708. "source": {
  4709. "type": "git",
  4710. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4711. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4712. },
  4713. "dist": {
  4714. "type": "zip",
  4715. >>>>>>> 32a7466ce932df46b3fc3cf9b1ac8f32b18dfed2
  4716. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4717. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4718. "shasum": ""
  4719. },
  4720. "type": "library",
  4721. "autoload": {
  4722. "psr-4": {
  4723. "JetBrains\\PhpStorm\\": "src/"
  4724. }
  4725. },
  4726. "notification-url": "https://packagist.org/downloads/",
  4727. "license": [
  4728. "Apache-2.0"
  4729. ],
  4730. "authors": [
  4731. {
  4732. "name": "JetBrains",
  4733. "homepage": "https://www.jetbrains.com"
  4734. }
  4735. ],
  4736. "description": "PhpStorm specific attributes",
  4737. "keywords": [
  4738. "attributes",
  4739. "jetbrains",
  4740. "phpstorm"
  4741. ],
  4742. "support": {
  4743. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4744. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4745. },
  4746. "time": "2024-10-11T10:46:19+00:00"
  4747. },
  4748. {
  4749. "name": "laminas/laminas-mime",
  4750. "version": "2.12.0",
  4751. "source": {
  4752. "type": "git",
  4753. "url": "https://github.com/laminas/laminas-mime.git",
  4754. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4755. },
  4756. "dist": {
  4757. "type": "zip",
  4758. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4759. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4760. "shasum": ""
  4761. },
  4762. "require": {
  4763. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4764. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4765. },
  4766. "conflict": {
  4767. "zendframework/zend-mime": "*"
  4768. },
  4769. "require-dev": {
  4770. "laminas/laminas-coding-standard": "~2.4.0",
  4771. "laminas/laminas-mail": "^2.19.0",
  4772. "phpunit/phpunit": "~9.5.25"
  4773. },
  4774. "suggest": {
  4775. "laminas/laminas-mail": "Laminas\\Mail component"
  4776. },
  4777. "type": "library",
  4778. "autoload": {
  4779. "psr-4": {
  4780. "Laminas\\Mime\\": "src/"
  4781. }
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "BSD-3-Clause"
  4786. ],
  4787. "description": "Create and parse MIME messages and parts",
  4788. "homepage": "https://laminas.dev",
  4789. "keywords": [
  4790. "laminas",
  4791. "mime"
  4792. ],
  4793. "support": {
  4794. "chat": "https://laminas.dev/chat",
  4795. "docs": "https://docs.laminas.dev/laminas-mime/",
  4796. "forum": "https://discourse.laminas.dev",
  4797. "issues": "https://github.com/laminas/laminas-mime/issues",
  4798. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4799. "source": "https://github.com/laminas/laminas-mime"
  4800. },
  4801. "funding": [
  4802. {
  4803. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4804. "type": "community_bridge"
  4805. }
  4806. ],
  4807. "abandoned": "symfony/mime",
  4808. "time": "2023-11-02T16:47:19+00:00"
  4809. },
  4810. {
  4811. "name": "laminas/laminas-stdlib",
  4812. "version": "3.20.0",
  4813. "source": {
  4814. "type": "git",
  4815. "url": "https://github.com/laminas/laminas-stdlib.git",
  4816. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4817. },
  4818. "dist": {
  4819. "type": "zip",
  4820. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4821. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4822. "shasum": ""
  4823. },
  4824. "require": {
  4825. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4826. },
  4827. "conflict": {
  4828. "zendframework/zend-stdlib": "*"
  4829. },
  4830. "require-dev": {
  4831. "laminas/laminas-coding-standard": "^3.0",
  4832. "phpbench/phpbench": "^1.3.1",
  4833. "phpunit/phpunit": "^10.5.38",
  4834. "psalm/plugin-phpunit": "^0.19.0",
  4835. "vimeo/psalm": "^5.26.1"
  4836. },
  4837. "type": "library",
  4838. "autoload": {
  4839. "psr-4": {
  4840. "Laminas\\Stdlib\\": "src/"
  4841. }
  4842. },
  4843. "notification-url": "https://packagist.org/downloads/",
  4844. "license": [
  4845. "BSD-3-Clause"
  4846. ],
  4847. "description": "SPL extensions, array utilities, error handlers, and more",
  4848. "homepage": "https://laminas.dev",
  4849. "keywords": [
  4850. "laminas",
  4851. "stdlib"
  4852. ],
  4853. "support": {
  4854. "chat": "https://laminas.dev/chat",
  4855. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4856. "forum": "https://discourse.laminas.dev",
  4857. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4858. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4859. "source": "https://github.com/laminas/laminas-stdlib"
  4860. },
  4861. "funding": [
  4862. {
  4863. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4864. "type": "community_bridge"
  4865. }
  4866. ],
  4867. "time": "2024-10-29T13:46:07+00:00"
  4868. },
  4869. {
  4870. "name": "markrogoyski/math-php",
  4871. "version": "v2.10.0",
  4872. "source": {
  4873. "type": "git",
  4874. "url": "https://github.com/markrogoyski/math-php.git",
  4875. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4876. },
  4877. "dist": {
  4878. "type": "zip",
  4879. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4880. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4881. "shasum": ""
  4882. },
  4883. "require": {
  4884. "ext-json": "*",
  4885. "php": ">=7.2.0"
  4886. },
  4887. "require-dev": {
  4888. "php-coveralls/php-coveralls": "^2.0",
  4889. "php-parallel-lint/php-parallel-lint": "^1.2",
  4890. "phploc/phploc": "*",
  4891. "phpmd/phpmd": "^2.6",
  4892. "phpstan/phpstan": "^1.10",
  4893. "phpunit/phpunit": "^8.5",
  4894. "squizlabs/php_codesniffer": "3.*"
  4895. },
  4896. "type": "library",
  4897. "autoload": {
  4898. "psr-4": {
  4899. "MathPHP\\": "src/"
  4900. }
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "MIT"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Mark Rogoyski",
  4909. "email": "mark@rogoyski.com",
  4910. "homepage": "https://github.com/markrogoyski",
  4911. "role": "Lead developer"
  4912. },
  4913. {
  4914. "name": "Kevin Nowaczyk",
  4915. "homepage": "https://github.com/Beakerboy",
  4916. "role": "Developer"
  4917. },
  4918. {
  4919. "name": "MathPHP Community of Contributors",
  4920. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4921. }
  4922. ],
  4923. "description": "Math Library for PHP. Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra",
  4924. "homepage": "https://github.com/markrogoyski/math-php/",
  4925. "keywords": [
  4926. "algebra",
  4927. "combinatorics",
  4928. "distributions",
  4929. "linear algebra",
  4930. "math",
  4931. "mathematics",
  4932. "matrix",
  4933. "numerical analysis",
  4934. "probability",
  4935. "regressions",
  4936. "statistics"
  4937. ],
  4938. "support": {
  4939. "issues": "https://github.com/markrogoyski/math-php/issues",
  4940. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4941. },
  4942. "time": "2024-04-17T00:09:51+00:00"
  4943. },
  4944. {
  4945. "name": "monolog/monolog",
  4946. "version": "3.8.0",
  4947. "source": {
  4948. "type": "git",
  4949. "url": "https://github.com/Seldaek/monolog.git",
  4950. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  4951. },
  4952. "dist": {
  4953. "type": "zip",
  4954. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  4955. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  4956. "shasum": ""
  4957. },
  4958. "require": {
  4959. "php": ">=8.1",
  4960. "psr/log": "^2.0 || ^3.0"
  4961. },
  4962. "provide": {
  4963. "psr/log-implementation": "3.0.0"
  4964. },
  4965. "require-dev": {
  4966. "aws/aws-sdk-php": "^3.0",
  4967. "doctrine/couchdb": "~1.0@dev",
  4968. "elasticsearch/elasticsearch": "^7 || ^8",
  4969. "ext-json": "*",
  4970. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4971. "guzzlehttp/guzzle": "^7.4.5",
  4972. "guzzlehttp/psr7": "^2.2",
  4973. "mongodb/mongodb": "^1.8",
  4974. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4975. "php-console/php-console": "^3.1.8",
  4976. "phpstan/phpstan": "^2",
  4977. "phpstan/phpstan-deprecation-rules": "^2",
  4978. "phpstan/phpstan-strict-rules": "^2",
  4979. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4980. "predis/predis": "^1.1 || ^2",
  4981. "rollbar/rollbar": "^4.0",
  4982. "ruflin/elastica": "^7 || ^8",
  4983. "symfony/mailer": "^5.4 || ^6",
  4984. "symfony/mime": "^5.4 || ^6"
  4985. },
  4986. "suggest": {
  4987. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4988. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4989. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4990. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4991. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4992. "ext-mbstring": "Allow to work properly with unicode symbols",
  4993. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4994. "ext-openssl": "Required to send log messages using SSL",
  4995. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4996. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4997. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4998. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4999. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5000. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5001. },
  5002. "type": "library",
  5003. "extra": {
  5004. "branch-alias": {
  5005. "dev-main": "3.x-dev"
  5006. }
  5007. },
  5008. "autoload": {
  5009. "psr-4": {
  5010. "Monolog\\": "src/Monolog"
  5011. }
  5012. },
  5013. "notification-url": "https://packagist.org/downloads/",
  5014. "license": [
  5015. "MIT"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "Jordi Boggiano",
  5020. "email": "j.boggiano@seld.be",
  5021. "homepage": "https://seld.be"
  5022. }
  5023. ],
  5024. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5025. "homepage": "https://github.com/Seldaek/monolog",
  5026. "keywords": [
  5027. "log",
  5028. "logging",
  5029. "psr-3"
  5030. ],
  5031. "support": {
  5032. "issues": "https://github.com/Seldaek/monolog/issues",
  5033. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  5034. },
  5035. "funding": [
  5036. {
  5037. "url": "https://github.com/Seldaek",
  5038. "type": "github"
  5039. },
  5040. {
  5041. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5042. "type": "tidelift"
  5043. }
  5044. ],
  5045. "time": "2024-11-12T13:57:08+00:00"
  5046. },
  5047. {
  5048. "name": "nesbot/carbon",
  5049. "version": "2.72.5",
  5050. "source": {
  5051. "type": "git",
  5052. "url": "https://github.com/briannesbitt/Carbon.git",
  5053. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5054. },
  5055. "dist": {
  5056. "type": "zip",
  5057. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5058. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5059. "shasum": ""
  5060. },
  5061. "require": {
  5062. "carbonphp/carbon-doctrine-types": "*",
  5063. "ext-json": "*",
  5064. "php": "^7.1.8 || ^8.0",
  5065. "psr/clock": "^1.0",
  5066. "symfony/polyfill-mbstring": "^1.0",
  5067. "symfony/polyfill-php80": "^1.16",
  5068. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5069. },
  5070. "provide": {
  5071. "psr/clock-implementation": "1.0"
  5072. },
  5073. "require-dev": {
  5074. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5075. "doctrine/orm": "^2.7 || ^3.0",
  5076. "friendsofphp/php-cs-fixer": "^3.0",
  5077. "kylekatarnls/multi-tester": "^2.0",
  5078. "ondrejmirtes/better-reflection": "*",
  5079. "phpmd/phpmd": "^2.9",
  5080. "phpstan/extension-installer": "^1.0",
  5081. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5082. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5083. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5084. "squizlabs/php_codesniffer": "^3.4"
  5085. },
  5086. "bin": [
  5087. "bin/carbon"
  5088. ],
  5089. "type": "library",
  5090. "extra": {
  5091. "branch-alias": {
  5092. "dev-master": "3.x-dev",
  5093. "dev-2.x": "2.x-dev"
  5094. },
  5095. "laravel": {
  5096. "providers": [
  5097. "Carbon\\Laravel\\ServiceProvider"
  5098. ]
  5099. },
  5100. "phpstan": {
  5101. "includes": [
  5102. "extension.neon"
  5103. ]
  5104. }
  5105. },
  5106. "autoload": {
  5107. "psr-4": {
  5108. "Carbon\\": "src/Carbon/"
  5109. }
  5110. },
  5111. "notification-url": "https://packagist.org/downloads/",
  5112. "license": [
  5113. "MIT"
  5114. ],
  5115. "authors": [
  5116. {
  5117. "name": "Brian Nesbitt",
  5118. "email": "brian@nesbot.com",
  5119. "homepage": "https://markido.com"
  5120. },
  5121. {
  5122. "name": "kylekatarnls",
  5123. "homepage": "https://github.com/kylekatarnls"
  5124. }
  5125. ],
  5126. "description": "An API extension for DateTime that supports 281 different languages.",
  5127. "homepage": "https://carbon.nesbot.com",
  5128. "keywords": [
  5129. "date",
  5130. "datetime",
  5131. "time"
  5132. ],
  5133. "support": {
  5134. "docs": "https://carbon.nesbot.com/docs",
  5135. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5136. "source": "https://github.com/briannesbitt/Carbon"
  5137. },
  5138. "funding": [
  5139. {
  5140. "url": "https://github.com/sponsors/kylekatarnls",
  5141. "type": "github"
  5142. },
  5143. {
  5144. "url": "https://opencollective.com/Carbon#sponsor",
  5145. "type": "opencollective"
  5146. },
  5147. {
  5148. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5149. "type": "tidelift"
  5150. }
  5151. ],
  5152. "time": "2024-06-03T19:18:41+00:00"
  5153. },
  5154. {
  5155. "name": "nikic/fast-route",
  5156. "version": "v1.3.0",
  5157. "source": {
  5158. "type": "git",
  5159. "url": "https://github.com/nikic/FastRoute.git",
  5160. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5161. },
  5162. "dist": {
  5163. "type": "zip",
  5164. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5165. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5166. "shasum": ""
  5167. },
  5168. "require": {
  5169. "php": ">=5.4.0"
  5170. },
  5171. "require-dev": {
  5172. "phpunit/phpunit": "^4.8.35|~5.7"
  5173. },
  5174. "type": "library",
  5175. "autoload": {
  5176. "files": [
  5177. "src/functions.php"
  5178. ],
  5179. "psr-4": {
  5180. "FastRoute\\": "src/"
  5181. }
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "BSD-3-Clause"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Nikita Popov",
  5190. "email": "nikic@php.net"
  5191. }
  5192. ],
  5193. "description": "Fast request router for PHP",
  5194. "keywords": [
  5195. "router",
  5196. "routing"
  5197. ],
  5198. "support": {
  5199. "issues": "https://github.com/nikic/FastRoute/issues",
  5200. "source": "https://github.com/nikic/FastRoute/tree/master"
  5201. },
  5202. "time": "2018-02-13T20:26:39+00:00"
  5203. },
  5204. {
  5205. "name": "nikic/php-parser",
  5206. "version": "v4.19.4",
  5207. "source": {
  5208. "type": "git",
  5209. "url": "https://github.com/nikic/PHP-Parser.git",
  5210. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5211. },
  5212. "dist": {
  5213. "type": "zip",
  5214. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5215. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5216. "shasum": ""
  5217. },
  5218. "require": {
  5219. "ext-tokenizer": "*",
  5220. "php": ">=7.1"
  5221. },
  5222. "require-dev": {
  5223. "ircmaxell/php-yacc": "^0.0.7",
  5224. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5225. },
  5226. "bin": [
  5227. "bin/php-parse"
  5228. ],
  5229. "type": "library",
  5230. "extra": {
  5231. "branch-alias": {
  5232. "dev-master": "4.9-dev"
  5233. }
  5234. },
  5235. "autoload": {
  5236. "psr-4": {
  5237. "PhpParser\\": "lib/PhpParser"
  5238. }
  5239. },
  5240. "notification-url": "https://packagist.org/downloads/",
  5241. "license": [
  5242. "BSD-3-Clause"
  5243. ],
  5244. "authors": [
  5245. {
  5246. "name": "Nikita Popov"
  5247. }
  5248. ],
  5249. "description": "A PHP parser written in PHP",
  5250. "keywords": [
  5251. "parser",
  5252. "php"
  5253. ],
  5254. "support": {
  5255. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5256. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5257. },
  5258. "time": "2024-09-29T15:01:53+00:00"
  5259. },
  5260. {
  5261. "name": "paragonie/constant_time_encoding",
  5262. "version": "v3.0.0",
  5263. "source": {
  5264. "type": "git",
  5265. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5266. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5267. },
  5268. "dist": {
  5269. "type": "zip",
  5270. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5271. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5272. "shasum": ""
  5273. },
  5274. "require": {
  5275. "php": "^8"
  5276. },
  5277. "require-dev": {
  5278. "phpunit/phpunit": "^9",
  5279. "vimeo/psalm": "^4|^5"
  5280. },
  5281. "type": "library",
  5282. "autoload": {
  5283. "psr-4": {
  5284. "ParagonIE\\ConstantTime\\": "src/"
  5285. }
  5286. },
  5287. "notification-url": "https://packagist.org/downloads/",
  5288. "license": [
  5289. "MIT"
  5290. ],
  5291. "authors": [
  5292. {
  5293. "name": "Paragon Initiative Enterprises",
  5294. "email": "security@paragonie.com",
  5295. "homepage": "https://paragonie.com",
  5296. "role": "Maintainer"
  5297. },
  5298. {
  5299. "name": "Steve 'Sc00bz' Thomas",
  5300. "email": "steve@tobtu.com",
  5301. "homepage": "https://www.tobtu.com",
  5302. "role": "Original Developer"
  5303. }
  5304. ],
  5305. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5306. "keywords": [
  5307. "base16",
  5308. "base32",
  5309. "base32_decode",
  5310. "base32_encode",
  5311. "base64",
  5312. "base64_decode",
  5313. "base64_encode",
  5314. "bin2hex",
  5315. "encoding",
  5316. "hex",
  5317. "hex2bin",
  5318. "rfc4648"
  5319. ],
  5320. "support": {
  5321. "email": "info@paragonie.com",
  5322. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5323. "source": "https://github.com/paragonie/constant_time_encoding"
  5324. },
  5325. "time": "2024-05-08T12:36:18+00:00"
  5326. },
  5327. {
  5328. "name": "paragonie/random_compat",
  5329. "version": "v9.99.100",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://github.com/paragonie/random_compat.git",
  5333. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5338. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5339. "shasum": ""
  5340. },
  5341. "require": {
  5342. "php": ">= 7"
  5343. },
  5344. "require-dev": {
  5345. "phpunit/phpunit": "4.*|5.*",
  5346. "vimeo/psalm": "^1"
  5347. },
  5348. "suggest": {
  5349. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5350. },
  5351. "type": "library",
  5352. "notification-url": "https://packagist.org/downloads/",
  5353. "license": [
  5354. "MIT"
  5355. ],
  5356. "authors": [
  5357. {
  5358. "name": "Paragon Initiative Enterprises",
  5359. "email": "security@paragonie.com",
  5360. "homepage": "https://paragonie.com"
  5361. }
  5362. ],
  5363. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5364. "keywords": [
  5365. "csprng",
  5366. "polyfill",
  5367. "pseudorandom",
  5368. "random"
  5369. ],
  5370. "support": {
  5371. "email": "info@paragonie.com",
  5372. "issues": "https://github.com/paragonie/random_compat/issues",
  5373. "source": "https://github.com/paragonie/random_compat"
  5374. },
  5375. "time": "2020-10-15T08:29:30+00:00"
  5376. },
  5377. {
  5378. "name": "php-amqplib/php-amqplib",
  5379. "version": "v3.7.2",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5383. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5388. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5389. "shasum": ""
  5390. },
  5391. "require": {
  5392. "ext-mbstring": "*",
  5393. "ext-sockets": "*",
  5394. "php": "^7.2||^8.0",
  5395. "phpseclib/phpseclib": "^2.0|^3.0"
  5396. },
  5397. "conflict": {
  5398. "php": "7.4.0 - 7.4.1"
  5399. },
  5400. "replace": {
  5401. "videlalvaro/php-amqplib": "self.version"
  5402. },
  5403. "require-dev": {
  5404. "ext-curl": "*",
  5405. "nategood/httpful": "^0.2.20",
  5406. "phpunit/phpunit": "^7.5|^9.5",
  5407. "squizlabs/php_codesniffer": "^3.6"
  5408. },
  5409. "type": "library",
  5410. "extra": {
  5411. "branch-alias": {
  5412. "dev-master": "3.0-dev"
  5413. }
  5414. },
  5415. "autoload": {
  5416. "psr-4": {
  5417. "PhpAmqpLib\\": "PhpAmqpLib/"
  5418. }
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "LGPL-2.1-or-later"
  5423. ],
  5424. "authors": [
  5425. {
  5426. "name": "Alvaro Videla",
  5427. "role": "Original Maintainer"
  5428. },
  5429. {
  5430. "name": "Raúl Araya",
  5431. "email": "nubeiro@gmail.com",
  5432. "role": "Maintainer"
  5433. },
  5434. {
  5435. "name": "Luke Bakken",
  5436. "email": "luke@bakken.io",
  5437. "role": "Maintainer"
  5438. },
  5439. {
  5440. "name": "Ramūnas Dronga",
  5441. "email": "github@ramuno.lt",
  5442. "role": "Maintainer"
  5443. }
  5444. ],
  5445. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5446. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5447. "keywords": [
  5448. "message",
  5449. "queue",
  5450. "rabbitmq"
  5451. ],
  5452. "support": {
  5453. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5454. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5455. },
  5456. "time": "2024-11-21T09:21:41+00:00"
  5457. },
  5458. {
  5459. "name": "php-di/phpdoc-reader",
  5460. "version": "2.2.1",
  5461. "source": {
  5462. "type": "git",
  5463. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5464. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5465. },
  5466. "dist": {
  5467. "type": "zip",
  5468. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5469. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5470. "shasum": ""
  5471. },
  5472. "require": {
  5473. "php": ">=7.2.0"
  5474. },
  5475. "require-dev": {
  5476. "mnapoli/hard-mode": "~0.3.0",
  5477. "phpunit/phpunit": "^8.5|^9.0"
  5478. },
  5479. "type": "library",
  5480. "autoload": {
  5481. "psr-4": {
  5482. "PhpDocReader\\": "src/PhpDocReader"
  5483. }
  5484. },
  5485. "notification-url": "https://packagist.org/downloads/",
  5486. "license": [
  5487. "MIT"
  5488. ],
  5489. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5490. "keywords": [
  5491. "phpdoc",
  5492. "reflection"
  5493. ],
  5494. "support": {
  5495. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5496. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5497. },
  5498. "time": "2020-10-12T12:39:22+00:00"
  5499. },
  5500. {
  5501. "name": "phpoption/phpoption",
  5502. "version": "1.9.3",
  5503. "source": {
  5504. "type": "git",
  5505. "url": "https://github.com/schmittjoh/php-option.git",
  5506. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5507. },
  5508. "dist": {
  5509. "type": "zip",
  5510. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5511. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5512. "shasum": ""
  5513. },
  5514. "require": {
  5515. "php": "^7.2.5 || ^8.0"
  5516. },
  5517. "require-dev": {
  5518. "bamarni/composer-bin-plugin": "^1.8.2",
  5519. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5520. },
  5521. "type": "library",
  5522. "extra": {
  5523. "bamarni-bin": {
  5524. "bin-links": true,
  5525. "forward-command": false
  5526. },
  5527. "branch-alias": {
  5528. "dev-master": "1.9-dev"
  5529. }
  5530. },
  5531. "autoload": {
  5532. "psr-4": {
  5533. "PhpOption\\": "src/PhpOption/"
  5534. }
  5535. },
  5536. "notification-url": "https://packagist.org/downloads/",
  5537. "license": [
  5538. "Apache-2.0"
  5539. ],
  5540. "authors": [
  5541. {
  5542. "name": "Johannes M. Schmitt",
  5543. "email": "schmittjoh@gmail.com",
  5544. "homepage": "https://github.com/schmittjoh"
  5545. },
  5546. {
  5547. "name": "Graham Campbell",
  5548. "email": "hello@gjcampbell.co.uk",
  5549. "homepage": "https://github.com/GrahamCampbell"
  5550. }
  5551. ],
  5552. "description": "Option Type for PHP",
  5553. "keywords": [
  5554. "language",
  5555. "option",
  5556. "php",
  5557. "type"
  5558. ],
  5559. "support": {
  5560. "issues": "https://github.com/schmittjoh/php-option/issues",
  5561. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5562. },
  5563. "funding": [
  5564. {
  5565. "url": "https://github.com/GrahamCampbell",
  5566. "type": "github"
  5567. },
  5568. {
  5569. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5570. "type": "tidelift"
  5571. }
  5572. ],
  5573. "time": "2024-07-20T21:41:07+00:00"
  5574. },
  5575. {
  5576. "name": "phpseclib/phpseclib",
  5577. "version": "3.0.42",
  5578. "source": {
  5579. "type": "git",
  5580. "url": "https://github.com/phpseclib/phpseclib.git",
  5581. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5582. },
  5583. "dist": {
  5584. "type": "zip",
  5585. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5586. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5587. "shasum": ""
  5588. },
  5589. "require": {
  5590. "paragonie/constant_time_encoding": "^1|^2|^3",
  5591. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5592. "php": ">=5.6.1"
  5593. },
  5594. "require-dev": {
  5595. "phpunit/phpunit": "*"
  5596. },
  5597. "suggest": {
  5598. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5599. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5600. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5601. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5602. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5603. },
  5604. "type": "library",
  5605. "autoload": {
  5606. "files": [
  5607. "phpseclib/bootstrap.php"
  5608. ],
  5609. "psr-4": {
  5610. "phpseclib3\\": "phpseclib/"
  5611. }
  5612. },
  5613. "notification-url": "https://packagist.org/downloads/",
  5614. "license": [
  5615. "MIT"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Jim Wigginton",
  5620. "email": "terrafrost@php.net",
  5621. "role": "Lead Developer"
  5622. },
  5623. {
  5624. "name": "Patrick Monnerat",
  5625. "email": "pm@datasphere.ch",
  5626. "role": "Developer"
  5627. },
  5628. {
  5629. "name": "Andreas Fischer",
  5630. "email": "bantu@phpbb.com",
  5631. "role": "Developer"
  5632. },
  5633. {
  5634. "name": "Hans-Jürgen Petrich",
  5635. "email": "petrich@tronic-media.com",
  5636. "role": "Developer"
  5637. },
  5638. {
  5639. "name": "Graham Campbell",
  5640. "email": "graham@alt-three.com",
  5641. "role": "Developer"
  5642. }
  5643. ],
  5644. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5645. "homepage": "http://phpseclib.sourceforge.net",
  5646. "keywords": [
  5647. "BigInteger",
  5648. "aes",
  5649. "asn.1",
  5650. "asn1",
  5651. "blowfish",
  5652. "crypto",
  5653. "cryptography",
  5654. "encryption",
  5655. "rsa",
  5656. "security",
  5657. "sftp",
  5658. "signature",
  5659. "signing",
  5660. "ssh",
  5661. "twofish",
  5662. "x.509",
  5663. "x509"
  5664. ],
  5665. "support": {
  5666. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5667. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  5668. },
  5669. "funding": [
  5670. {
  5671. "url": "https://github.com/terrafrost",
  5672. "type": "github"
  5673. },
  5674. {
  5675. "url": "https://www.patreon.com/phpseclib",
  5676. "type": "patreon"
  5677. },
  5678. {
  5679. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5680. "type": "tidelift"
  5681. }
  5682. ],
  5683. "time": "2024-09-16T03:06:04+00:00"
  5684. },
  5685. {
  5686. "name": "psr/cache",
  5687. "version": "3.0.0",
  5688. "source": {
  5689. "type": "git",
  5690. "url": "https://github.com/php-fig/cache.git",
  5691. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5692. },
  5693. "dist": {
  5694. "type": "zip",
  5695. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5696. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5697. "shasum": ""
  5698. },
  5699. "require": {
  5700. "php": ">=8.0.0"
  5701. },
  5702. "type": "library",
  5703. "extra": {
  5704. "branch-alias": {
  5705. "dev-master": "1.0.x-dev"
  5706. }
  5707. },
  5708. "autoload": {
  5709. "psr-4": {
  5710. "Psr\\Cache\\": "src/"
  5711. }
  5712. },
  5713. "notification-url": "https://packagist.org/downloads/",
  5714. "license": [
  5715. "MIT"
  5716. ],
  5717. "authors": [
  5718. {
  5719. "name": "PHP-FIG",
  5720. "homepage": "https://www.php-fig.org/"
  5721. }
  5722. ],
  5723. "description": "Common interface for caching libraries",
  5724. "keywords": [
  5725. "cache",
  5726. "psr",
  5727. "psr-6"
  5728. ],
  5729. "support": {
  5730. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5731. },
  5732. "time": "2021-02-03T23:26:27+00:00"
  5733. },
  5734. {
  5735. "name": "psr/clock",
  5736. "version": "1.0.0",
  5737. "source": {
  5738. "type": "git",
  5739. "url": "https://github.com/php-fig/clock.git",
  5740. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5741. },
  5742. "dist": {
  5743. "type": "zip",
  5744. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5745. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5746. "shasum": ""
  5747. },
  5748. "require": {
  5749. "php": "^7.0 || ^8.0"
  5750. },
  5751. "type": "library",
  5752. "autoload": {
  5753. "psr-4": {
  5754. "Psr\\Clock\\": "src/"
  5755. }
  5756. },
  5757. "notification-url": "https://packagist.org/downloads/",
  5758. "license": [
  5759. "MIT"
  5760. ],
  5761. "authors": [
  5762. {
  5763. "name": "PHP-FIG",
  5764. "homepage": "https://www.php-fig.org/"
  5765. }
  5766. ],
  5767. "description": "Common interface for reading the clock.",
  5768. "homepage": "https://github.com/php-fig/clock",
  5769. "keywords": [
  5770. "clock",
  5771. "now",
  5772. "psr",
  5773. "psr-20",
  5774. "time"
  5775. ],
  5776. "support": {
  5777. "issues": "https://github.com/php-fig/clock/issues",
  5778. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5779. },
  5780. "time": "2022-11-25T14:36:26+00:00"
  5781. },
  5782. {
  5783. "name": "psr/container",
  5784. "version": "2.0.2",
  5785. "source": {
  5786. "type": "git",
  5787. "url": "https://github.com/php-fig/container.git",
  5788. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5789. },
  5790. "dist": {
  5791. "type": "zip",
  5792. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5793. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5794. "shasum": ""
  5795. },
  5796. "require": {
  5797. "php": ">=7.4.0"
  5798. },
  5799. "type": "library",
  5800. "extra": {
  5801. "branch-alias": {
  5802. "dev-master": "2.0.x-dev"
  5803. }
  5804. },
  5805. "autoload": {
  5806. "psr-4": {
  5807. "Psr\\Container\\": "src/"
  5808. }
  5809. },
  5810. "notification-url": "https://packagist.org/downloads/",
  5811. "license": [
  5812. "MIT"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "PHP-FIG",
  5817. "homepage": "https://www.php-fig.org/"
  5818. }
  5819. ],
  5820. "description": "Common Container Interface (PHP FIG PSR-11)",
  5821. "homepage": "https://github.com/php-fig/container",
  5822. "keywords": [
  5823. "PSR-11",
  5824. "container",
  5825. "container-interface",
  5826. "container-interop",
  5827. "psr"
  5828. ],
  5829. "support": {
  5830. "issues": "https://github.com/php-fig/container/issues",
  5831. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5832. },
  5833. "time": "2021-11-05T16:47:00+00:00"
  5834. },
  5835. {
  5836. "name": "psr/event-dispatcher",
  5837. "version": "1.0.0",
  5838. "source": {
  5839. "type": "git",
  5840. "url": "https://github.com/php-fig/event-dispatcher.git",
  5841. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5842. },
  5843. "dist": {
  5844. "type": "zip",
  5845. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5846. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5847. "shasum": ""
  5848. },
  5849. "require": {
  5850. "php": ">=7.2.0"
  5851. },
  5852. "type": "library",
  5853. "extra": {
  5854. "branch-alias": {
  5855. "dev-master": "1.0.x-dev"
  5856. }
  5857. },
  5858. "autoload": {
  5859. "psr-4": {
  5860. "Psr\\EventDispatcher\\": "src/"
  5861. }
  5862. },
  5863. "notification-url": "https://packagist.org/downloads/",
  5864. "license": [
  5865. "MIT"
  5866. ],
  5867. "authors": [
  5868. {
  5869. "name": "PHP-FIG",
  5870. "homepage": "http://www.php-fig.org/"
  5871. }
  5872. ],
  5873. "description": "Standard interfaces for event handling.",
  5874. "keywords": [
  5875. "events",
  5876. "psr",
  5877. "psr-14"
  5878. ],
  5879. "support": {
  5880. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5881. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5882. },
  5883. "time": "2019-01-08T18:20:26+00:00"
  5884. },
  5885. {
  5886. "name": "psr/http-client",
  5887. "version": "1.0.3",
  5888. "source": {
  5889. "type": "git",
  5890. "url": "https://github.com/php-fig/http-client.git",
  5891. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5892. },
  5893. "dist": {
  5894. "type": "zip",
  5895. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5896. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5897. "shasum": ""
  5898. },
  5899. "require": {
  5900. "php": "^7.0 || ^8.0",
  5901. "psr/http-message": "^1.0 || ^2.0"
  5902. },
  5903. "type": "library",
  5904. "extra": {
  5905. "branch-alias": {
  5906. "dev-master": "1.0.x-dev"
  5907. }
  5908. },
  5909. "autoload": {
  5910. "psr-4": {
  5911. "Psr\\Http\\Client\\": "src/"
  5912. }
  5913. },
  5914. "notification-url": "https://packagist.org/downloads/",
  5915. "license": [
  5916. "MIT"
  5917. ],
  5918. "authors": [
  5919. {
  5920. "name": "PHP-FIG",
  5921. "homepage": "https://www.php-fig.org/"
  5922. }
  5923. ],
  5924. "description": "Common interface for HTTP clients",
  5925. "homepage": "https://github.com/php-fig/http-client",
  5926. "keywords": [
  5927. "http",
  5928. "http-client",
  5929. "psr",
  5930. "psr-18"
  5931. ],
  5932. "support": {
  5933. "source": "https://github.com/php-fig/http-client"
  5934. },
  5935. "time": "2023-09-23T14:17:50+00:00"
  5936. },
  5937. {
  5938. "name": "psr/http-factory",
  5939. "version": "1.1.0",
  5940. "source": {
  5941. "type": "git",
  5942. "url": "https://github.com/php-fig/http-factory.git",
  5943. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5944. },
  5945. "dist": {
  5946. "type": "zip",
  5947. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5948. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5949. "shasum": ""
  5950. },
  5951. "require": {
  5952. "php": ">=7.1",
  5953. "psr/http-message": "^1.0 || ^2.0"
  5954. },
  5955. "type": "library",
  5956. "extra": {
  5957. "branch-alias": {
  5958. "dev-master": "1.0.x-dev"
  5959. }
  5960. },
  5961. "autoload": {
  5962. "psr-4": {
  5963. "Psr\\Http\\Message\\": "src/"
  5964. }
  5965. },
  5966. "notification-url": "https://packagist.org/downloads/",
  5967. "license": [
  5968. "MIT"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "PHP-FIG",
  5973. "homepage": "https://www.php-fig.org/"
  5974. }
  5975. ],
  5976. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5977. "keywords": [
  5978. "factory",
  5979. "http",
  5980. "message",
  5981. "psr",
  5982. "psr-17",
  5983. "psr-7",
  5984. "request",
  5985. "response"
  5986. ],
  5987. "support": {
  5988. "source": "https://github.com/php-fig/http-factory"
  5989. },
  5990. "time": "2024-04-15T12:06:14+00:00"
  5991. },
  5992. {
  5993. "name": "psr/http-message",
  5994. "version": "2.0",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/php-fig/http-message.git",
  5998. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6003. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6004. "shasum": ""
  6005. },
  6006. "require": {
  6007. "php": "^7.2 || ^8.0"
  6008. },
  6009. "type": "library",
  6010. "extra": {
  6011. "branch-alias": {
  6012. "dev-master": "2.0.x-dev"
  6013. }
  6014. },
  6015. "autoload": {
  6016. "psr-4": {
  6017. "Psr\\Http\\Message\\": "src/"
  6018. }
  6019. },
  6020. "notification-url": "https://packagist.org/downloads/",
  6021. "license": [
  6022. "MIT"
  6023. ],
  6024. "authors": [
  6025. {
  6026. "name": "PHP-FIG",
  6027. "homepage": "https://www.php-fig.org/"
  6028. }
  6029. ],
  6030. "description": "Common interface for HTTP messages",
  6031. "homepage": "https://github.com/php-fig/http-message",
  6032. "keywords": [
  6033. "http",
  6034. "http-message",
  6035. "psr",
  6036. "psr-7",
  6037. "request",
  6038. "response"
  6039. ],
  6040. "support": {
  6041. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6042. },
  6043. "time": "2023-04-04T09:54:51+00:00"
  6044. },
  6045. {
  6046. "name": "psr/http-server-handler",
  6047. "version": "1.0.2",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/php-fig/http-server-handler.git",
  6051. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6056. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6057. "shasum": ""
  6058. },
  6059. "require": {
  6060. "php": ">=7.0",
  6061. "psr/http-message": "^1.0 || ^2.0"
  6062. },
  6063. "type": "library",
  6064. "extra": {
  6065. "branch-alias": {
  6066. "dev-master": "1.0.x-dev"
  6067. }
  6068. },
  6069. "autoload": {
  6070. "psr-4": {
  6071. "Psr\\Http\\Server\\": "src/"
  6072. }
  6073. },
  6074. "notification-url": "https://packagist.org/downloads/",
  6075. "license": [
  6076. "MIT"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "PHP-FIG",
  6081. "homepage": "https://www.php-fig.org/"
  6082. }
  6083. ],
  6084. "description": "Common interface for HTTP server-side request handler",
  6085. "keywords": [
  6086. "handler",
  6087. "http",
  6088. "http-interop",
  6089. "psr",
  6090. "psr-15",
  6091. "psr-7",
  6092. "request",
  6093. "response",
  6094. "server"
  6095. ],
  6096. "support": {
  6097. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6098. },
  6099. "time": "2023-04-10T20:06:20+00:00"
  6100. },
  6101. {
  6102. "name": "psr/http-server-middleware",
  6103. "version": "1.0.2",
  6104. "source": {
  6105. "type": "git",
  6106. "url": "https://github.com/php-fig/http-server-middleware.git",
  6107. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6108. },
  6109. "dist": {
  6110. "type": "zip",
  6111. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6112. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6113. "shasum": ""
  6114. },
  6115. "require": {
  6116. "php": ">=7.0",
  6117. "psr/http-message": "^1.0 || ^2.0",
  6118. "psr/http-server-handler": "^1.0"
  6119. },
  6120. "type": "library",
  6121. "extra": {
  6122. "branch-alias": {
  6123. "dev-master": "1.0.x-dev"
  6124. }
  6125. },
  6126. "autoload": {
  6127. "psr-4": {
  6128. "Psr\\Http\\Server\\": "src/"
  6129. }
  6130. },
  6131. "notification-url": "https://packagist.org/downloads/",
  6132. "license": [
  6133. "MIT"
  6134. ],
  6135. "authors": [
  6136. {
  6137. "name": "PHP-FIG",
  6138. "homepage": "https://www.php-fig.org/"
  6139. }
  6140. ],
  6141. "description": "Common interface for HTTP server-side middleware",
  6142. "keywords": [
  6143. "http",
  6144. "http-interop",
  6145. "middleware",
  6146. "psr",
  6147. "psr-15",
  6148. "psr-7",
  6149. "request",
  6150. "response"
  6151. ],
  6152. "support": {
  6153. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6154. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6155. },
  6156. "time": "2023-04-11T06:14:47+00:00"
  6157. },
  6158. {
  6159. "name": "psr/log",
  6160. "version": "3.0.2",
  6161. "source": {
  6162. "type": "git",
  6163. "url": "https://github.com/php-fig/log.git",
  6164. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6165. },
  6166. "dist": {
  6167. "type": "zip",
  6168. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6169. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6170. "shasum": ""
  6171. },
  6172. "require": {
  6173. "php": ">=8.0.0"
  6174. },
  6175. "type": "library",
  6176. "extra": {
  6177. "branch-alias": {
  6178. "dev-master": "3.x-dev"
  6179. }
  6180. },
  6181. "autoload": {
  6182. "psr-4": {
  6183. "Psr\\Log\\": "src"
  6184. }
  6185. },
  6186. "notification-url": "https://packagist.org/downloads/",
  6187. "license": [
  6188. "MIT"
  6189. ],
  6190. "authors": [
  6191. {
  6192. "name": "PHP-FIG",
  6193. "homepage": "https://www.php-fig.org/"
  6194. }
  6195. ],
  6196. "description": "Common interface for logging libraries",
  6197. "homepage": "https://github.com/php-fig/log",
  6198. "keywords": [
  6199. "log",
  6200. "psr",
  6201. "psr-3"
  6202. ],
  6203. "support": {
  6204. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6205. },
  6206. "time": "2024-09-11T13:17:53+00:00"
  6207. },
  6208. {
  6209. "name": "psr/simple-cache",
  6210. "version": "3.0.0",
  6211. "source": {
  6212. "type": "git",
  6213. "url": "https://github.com/php-fig/simple-cache.git",
  6214. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6215. },
  6216. "dist": {
  6217. "type": "zip",
  6218. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6219. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6220. "shasum": ""
  6221. },
  6222. "require": {
  6223. "php": ">=8.0.0"
  6224. },
  6225. "type": "library",
  6226. "extra": {
  6227. "branch-alias": {
  6228. "dev-master": "3.0.x-dev"
  6229. }
  6230. },
  6231. "autoload": {
  6232. "psr-4": {
  6233. "Psr\\SimpleCache\\": "src/"
  6234. }
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "PHP-FIG",
  6243. "homepage": "https://www.php-fig.org/"
  6244. }
  6245. ],
  6246. "description": "Common interfaces for simple caching",
  6247. "keywords": [
  6248. "cache",
  6249. "caching",
  6250. "psr",
  6251. "psr-16",
  6252. "simple-cache"
  6253. ],
  6254. "support": {
  6255. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6256. },
  6257. "time": "2021-10-29T13:26:27+00:00"
  6258. },
  6259. {
  6260. "name": "ralouphie/getallheaders",
  6261. "version": "3.0.3",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/ralouphie/getallheaders.git",
  6265. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6270. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": ">=5.6"
  6275. },
  6276. "require-dev": {
  6277. "php-coveralls/php-coveralls": "^2.1",
  6278. "phpunit/phpunit": "^5 || ^6.5"
  6279. },
  6280. "type": "library",
  6281. "autoload": {
  6282. "files": [
  6283. "src/getallheaders.php"
  6284. ]
  6285. },
  6286. "notification-url": "https://packagist.org/downloads/",
  6287. "license": [
  6288. "MIT"
  6289. ],
  6290. "authors": [
  6291. {
  6292. "name": "Ralph Khattar",
  6293. "email": "ralph.khattar@gmail.com"
  6294. }
  6295. ],
  6296. "description": "A polyfill for getallheaders.",
  6297. "support": {
  6298. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6299. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6300. },
  6301. "time": "2019-03-08T08:55:37+00:00"
  6302. },
  6303. {
  6304. "name": "swow/psr7-plus",
  6305. "version": "v1.1.2",
  6306. "source": {
  6307. "type": "git",
  6308. "url": "https://github.com/swow/psr7-plus.git",
  6309. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6310. },
  6311. "dist": {
  6312. "type": "zip",
  6313. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6314. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6315. "shasum": ""
  6316. },
  6317. "require": {
  6318. "php": ">=8.0",
  6319. "psr/http-client": "^1.0",
  6320. "psr/http-factory": "^1.0",
  6321. "psr/http-message": "^1.1|^2.0"
  6322. },
  6323. "type": "library",
  6324. "autoload": {
  6325. "psr-4": {
  6326. "Swow\\Psr7\\Message\\": "src/Message/"
  6327. }
  6328. },
  6329. "notification-url": "https://packagist.org/downloads/",
  6330. "license": [
  6331. "Apache-2.0"
  6332. ],
  6333. "authors": [
  6334. {
  6335. "name": "twose",
  6336. "email": "twosee@php.net"
  6337. }
  6338. ],
  6339. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6340. "keywords": [
  6341. "http",
  6342. "psr17",
  6343. "psr7",
  6344. "swow",
  6345. "websocket"
  6346. ],
  6347. "support": {
  6348. "issues": "https://github.com/swow/swow",
  6349. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6350. },
  6351. "time": "2023-06-15T09:18:11+00:00"
  6352. },
  6353. {
  6354. <<<<<<< HEAD
  6355. "name": "symfony/cache",
  6356. "version": "v6.4.14",
  6357. "source": {
  6358. "type": "git",
  6359. "url": "https://github.com/symfony/cache.git",
  6360. "reference": "36fb8aa88833708e9f29014b6f15fac051a8b613"
  6361. },
  6362. "dist": {
  6363. "type": "zip",
  6364. "url": "https://api.github.com/repos/symfony/cache/zipball/36fb8aa88833708e9f29014b6f15fac051a8b613",
  6365. "reference": "36fb8aa88833708e9f29014b6f15fac051a8b613",
  6366. "shasum": ""
  6367. },
  6368. "require": {
  6369. "php": ">=8.1",
  6370. "psr/cache": "^2.0|^3.0",
  6371. "psr/log": "^1.1|^2|^3",
  6372. "symfony/cache-contracts": "^2.5|^3",
  6373. "symfony/service-contracts": "^2.5|^3",
  6374. "symfony/var-exporter": "^6.3.6|^7.0"
  6375. },
  6376. "conflict": {
  6377. "doctrine/dbal": "<2.13.1",
  6378. "symfony/dependency-injection": "<5.4",
  6379. "symfony/http-kernel": "<5.4",
  6380. "symfony/var-dumper": "<5.4"
  6381. },
  6382. "provide": {
  6383. "psr/cache-implementation": "2.0|3.0",
  6384. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  6385. "symfony/cache-implementation": "1.1|2.0|3.0"
  6386. },
  6387. "require-dev": {
  6388. "cache/integration-tests": "dev-master",
  6389. "doctrine/dbal": "^2.13.1|^3|^4",
  6390. "predis/predis": "^1.1|^2.0",
  6391. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6392. "symfony/config": "^5.4|^6.0|^7.0",
  6393. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6394. "symfony/filesystem": "^5.4|^6.0|^7.0",
  6395. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6396. "symfony/messenger": "^5.4|^6.0|^7.0",
  6397. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6398. },
  6399. "type": "library",
  6400. "autoload": {
  6401. "psr-4": {
  6402. "Symfony\\Component\\Cache\\": ""
  6403. },
  6404. "classmap": [
  6405. "Traits/ValueWrapper.php"
  6406. ],
  6407. "exclude-from-classmap": [
  6408. "/Tests/"
  6409. ]
  6410. },
  6411. "notification-url": "https://packagist.org/downloads/",
  6412. "license": [
  6413. "MIT"
  6414. ],
  6415. "authors": [
  6416. {
  6417. "name": "Nicolas Grekas",
  6418. "email": "p@tchwork.com"
  6419. },
  6420. {
  6421. "name": "Symfony Community",
  6422. "homepage": "https://symfony.com/contributors"
  6423. }
  6424. ],
  6425. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6426. "homepage": "https://symfony.com",
  6427. "keywords": [
  6428. "caching",
  6429. "psr6"
  6430. ],
  6431. "support": {
  6432. "source": "https://github.com/symfony/cache/tree/v6.4.14"
  6433. },
  6434. "funding": [
  6435. {
  6436. "url": "https://symfony.com/sponsor",
  6437. "type": "custom"
  6438. },
  6439. {
  6440. "url": "https://github.com/fabpot",
  6441. "type": "github"
  6442. },
  6443. {
  6444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6445. "type": "tidelift"
  6446. }
  6447. ],
  6448. "time": "2024-11-05T15:34:40+00:00"
  6449. },
  6450. {
  6451. "name": "symfony/cache-contracts",
  6452. "version": "v3.5.0",
  6453. "source": {
  6454. "type": "git",
  6455. "url": "https://github.com/symfony/cache-contracts.git",
  6456. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  6457. },
  6458. "dist": {
  6459. "type": "zip",
  6460. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  6461. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  6462. "shasum": ""
  6463. },
  6464. "require": {
  6465. "php": ">=8.1",
  6466. "psr/cache": "^3.0"
  6467. },
  6468. "type": "library",
  6469. "extra": {
  6470. "branch-alias": {
  6471. "dev-main": "3.5-dev"
  6472. },
  6473. "thanks": {
  6474. "name": "symfony/contracts",
  6475. "url": "https://github.com/symfony/contracts"
  6476. }
  6477. },
  6478. "autoload": {
  6479. "psr-4": {
  6480. "Symfony\\Contracts\\Cache\\": ""
  6481. }
  6482. },
  6483. "notification-url": "https://packagist.org/downloads/",
  6484. "license": [
  6485. "MIT"
  6486. ],
  6487. "authors": [
  6488. {
  6489. "name": "Nicolas Grekas",
  6490. "email": "p@tchwork.com"
  6491. },
  6492. {
  6493. "name": "Symfony Community",
  6494. "homepage": "https://symfony.com/contributors"
  6495. }
  6496. ],
  6497. "description": "Generic abstractions related to caching",
  6498. "homepage": "https://symfony.com",
  6499. "keywords": [
  6500. "abstractions",
  6501. "contracts",
  6502. "decoupling",
  6503. "interfaces",
  6504. "interoperability",
  6505. "standards"
  6506. ],
  6507. "support": {
  6508. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  6509. },
  6510. "funding": [
  6511. {
  6512. "url": "https://symfony.com/sponsor",
  6513. "type": "custom"
  6514. },
  6515. {
  6516. "url": "https://github.com/fabpot",
  6517. "type": "github"
  6518. },
  6519. {
  6520. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6521. "type": "tidelift"
  6522. }
  6523. ],
  6524. "time": "2024-04-18T09:32:20+00:00"
  6525. },
  6526. {
  6527. "name": "symfony/console",
  6528. "version": "v6.4.14",
  6529. =======
  6530. <<<<<<< HEAD
  6531. "name": "symfony/cache",
  6532. "version": "v6.4.16",
  6533. >>>>>>> collector_1106_fr
  6534. "source": {
  6535. "type": "git",
  6536. "url": "https://github.com/symfony/cache.git",
  6537. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae"
  6538. },
  6539. "dist": {
  6540. "type": "zip",
  6541. "url": "https://api.github.com/repos/symfony/cache/zipball/70d60e9a3603108563010f8592dff15a6f15dfae",
  6542. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae",
  6543. "shasum": ""
  6544. },
  6545. "require": {
  6546. "php": ">=8.1",
  6547. "psr/cache": "^2.0|^3.0",
  6548. "psr/log": "^1.1|^2|^3",
  6549. "symfony/cache-contracts": "^2.5|^3",
  6550. "symfony/service-contracts": "^2.5|^3",
  6551. "symfony/var-exporter": "^6.3.6|^7.0"
  6552. },
  6553. "conflict": {
  6554. "doctrine/dbal": "<2.13.1",
  6555. "symfony/dependency-injection": "<5.4",
  6556. "symfony/http-kernel": "<5.4",
  6557. "symfony/var-dumper": "<5.4"
  6558. },
  6559. "provide": {
  6560. "psr/cache-implementation": "2.0|3.0",
  6561. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  6562. "symfony/cache-implementation": "1.1|2.0|3.0"
  6563. },
  6564. "require-dev": {
  6565. "cache/integration-tests": "dev-master",
  6566. "doctrine/dbal": "^2.13.1|^3|^4",
  6567. "predis/predis": "^1.1|^2.0",
  6568. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6569. "symfony/config": "^5.4|^6.0|^7.0",
  6570. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6571. "symfony/filesystem": "^5.4|^6.0|^7.0",
  6572. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6573. "symfony/messenger": "^5.4|^6.0|^7.0",
  6574. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6575. },
  6576. "type": "library",
  6577. "autoload": {
  6578. "psr-4": {
  6579. "Symfony\\Component\\Cache\\": ""
  6580. },
  6581. "classmap": [
  6582. "Traits/ValueWrapper.php"
  6583. ],
  6584. "exclude-from-classmap": [
  6585. "/Tests/"
  6586. ]
  6587. },
  6588. "notification-url": "https://packagist.org/downloads/",
  6589. "license": [
  6590. "MIT"
  6591. ],
  6592. "authors": [
  6593. {
  6594. "name": "Nicolas Grekas",
  6595. "email": "p@tchwork.com"
  6596. },
  6597. {
  6598. "name": "Symfony Community",
  6599. "homepage": "https://symfony.com/contributors"
  6600. }
  6601. ],
  6602. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6603. "homepage": "https://symfony.com",
  6604. "keywords": [
  6605. "caching",
  6606. "psr6"
  6607. ],
  6608. "support": {
  6609. "source": "https://github.com/symfony/cache/tree/v6.4.16"
  6610. },
  6611. "funding": [
  6612. {
  6613. "url": "https://symfony.com/sponsor",
  6614. "type": "custom"
  6615. },
  6616. {
  6617. "url": "https://github.com/fabpot",
  6618. "type": "github"
  6619. },
  6620. {
  6621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6622. "type": "tidelift"
  6623. }
  6624. ],
  6625. "time": "2024-11-20T10:10:54+00:00"
  6626. },
  6627. {
  6628. "name": "symfony/cache-contracts",
  6629. "version": "v3.5.1",
  6630. "source": {
  6631. "type": "git",
  6632. "url": "https://github.com/symfony/cache-contracts.git",
  6633. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
  6634. },
  6635. "dist": {
  6636. "type": "zip",
  6637. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  6638. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  6639. "shasum": ""
  6640. },
  6641. "require": {
  6642. "php": ">=8.1",
  6643. "psr/cache": "^3.0"
  6644. },
  6645. "type": "library",
  6646. "extra": {
  6647. "branch-alias": {
  6648. "dev-main": "3.5-dev"
  6649. },
  6650. "thanks": {
  6651. "name": "symfony/contracts",
  6652. "url": "https://github.com/symfony/contracts"
  6653. }
  6654. },
  6655. "autoload": {
  6656. "psr-4": {
  6657. "Symfony\\Contracts\\Cache\\": ""
  6658. }
  6659. },
  6660. "notification-url": "https://packagist.org/downloads/",
  6661. "license": [
  6662. "MIT"
  6663. ],
  6664. "authors": [
  6665. {
  6666. "name": "Nicolas Grekas",
  6667. "email": "p@tchwork.com"
  6668. },
  6669. {
  6670. "name": "Symfony Community",
  6671. "homepage": "https://symfony.com/contributors"
  6672. }
  6673. ],
  6674. "description": "Generic abstractions related to caching",
  6675. "homepage": "https://symfony.com",
  6676. "keywords": [
  6677. "abstractions",
  6678. "contracts",
  6679. "decoupling",
  6680. "interfaces",
  6681. "interoperability",
  6682. "standards"
  6683. ],
  6684. "support": {
  6685. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
  6686. },
  6687. "funding": [
  6688. {
  6689. "url": "https://symfony.com/sponsor",
  6690. "type": "custom"
  6691. },
  6692. {
  6693. "url": "https://github.com/fabpot",
  6694. "type": "github"
  6695. },
  6696. {
  6697. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6698. "type": "tidelift"
  6699. }
  6700. ],
  6701. "time": "2024-09-25T14:20:29+00:00"
  6702. },
  6703. {
  6704. "name": "symfony/console",
  6705. "version": "v6.4.15",
  6706. "source": {
  6707. "type": "git",
  6708. "url": "https://github.com/symfony/console.git",
  6709. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6710. },
  6711. "dist": {
  6712. "type": "zip",
  6713. =======
  6714. "name": "symfony/console",
  6715. "version": "v6.4.15",
  6716. "source": {
  6717. "type": "git",
  6718. "url": "https://github.com/symfony/console.git",
  6719. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6720. },
  6721. "dist": {
  6722. "type": "zip",
  6723. >>>>>>> 32a7466ce932df46b3fc3cf9b1ac8f32b18dfed2
  6724. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6725. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6726. "shasum": ""
  6727. },
  6728. "require": {
  6729. "php": ">=8.1",
  6730. "symfony/deprecation-contracts": "^2.5|^3",
  6731. "symfony/polyfill-mbstring": "~1.0",
  6732. "symfony/service-contracts": "^2.5|^3",
  6733. "symfony/string": "^5.4|^6.0|^7.0"
  6734. },
  6735. "conflict": {
  6736. "symfony/dependency-injection": "<5.4",
  6737. "symfony/dotenv": "<5.4",
  6738. "symfony/event-dispatcher": "<5.4",
  6739. "symfony/lock": "<5.4",
  6740. "symfony/process": "<5.4"
  6741. },
  6742. "provide": {
  6743. "psr/log-implementation": "1.0|2.0|3.0"
  6744. },
  6745. "require-dev": {
  6746. "psr/log": "^1|^2|^3",
  6747. "symfony/config": "^5.4|^6.0|^7.0",
  6748. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6749. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6750. "symfony/http-foundation": "^6.4|^7.0",
  6751. "symfony/http-kernel": "^6.4|^7.0",
  6752. "symfony/lock": "^5.4|^6.0|^7.0",
  6753. "symfony/messenger": "^5.4|^6.0|^7.0",
  6754. "symfony/process": "^5.4|^6.0|^7.0",
  6755. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6756. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6757. },
  6758. "type": "library",
  6759. "autoload": {
  6760. "psr-4": {
  6761. "Symfony\\Component\\Console\\": ""
  6762. },
  6763. "exclude-from-classmap": [
  6764. "/Tests/"
  6765. ]
  6766. },
  6767. "notification-url": "https://packagist.org/downloads/",
  6768. "license": [
  6769. "MIT"
  6770. ],
  6771. "authors": [
  6772. {
  6773. "name": "Fabien Potencier",
  6774. "email": "fabien@symfony.com"
  6775. },
  6776. {
  6777. "name": "Symfony Community",
  6778. "homepage": "https://symfony.com/contributors"
  6779. }
  6780. ],
  6781. "description": "Eases the creation of beautiful and testable command line interfaces",
  6782. "homepage": "https://symfony.com",
  6783. "keywords": [
  6784. "cli",
  6785. "command-line",
  6786. "console",
  6787. "terminal"
  6788. ],
  6789. "support": {
  6790. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6791. },
  6792. "funding": [
  6793. {
  6794. "url": "https://symfony.com/sponsor",
  6795. "type": "custom"
  6796. },
  6797. {
  6798. "url": "https://github.com/fabpot",
  6799. "type": "github"
  6800. },
  6801. {
  6802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6803. "type": "tidelift"
  6804. }
  6805. ],
  6806. "time": "2024-11-06T14:19:14+00:00"
  6807. },
  6808. {
  6809. "name": "symfony/deprecation-contracts",
  6810. "version": "v3.5.1",
  6811. "source": {
  6812. "type": "git",
  6813. "url": "https://github.com/symfony/deprecation-contracts.git",
  6814. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6815. },
  6816. "dist": {
  6817. "type": "zip",
  6818. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6819. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6820. "shasum": ""
  6821. },
  6822. "require": {
  6823. "php": ">=8.1"
  6824. },
  6825. "type": "library",
  6826. "extra": {
  6827. "branch-alias": {
  6828. "dev-main": "3.5-dev"
  6829. },
  6830. "thanks": {
  6831. "name": "symfony/contracts",
  6832. "url": "https://github.com/symfony/contracts"
  6833. }
  6834. },
  6835. "autoload": {
  6836. "files": [
  6837. "function.php"
  6838. ]
  6839. },
  6840. "notification-url": "https://packagist.org/downloads/",
  6841. "license": [
  6842. "MIT"
  6843. ],
  6844. "authors": [
  6845. {
  6846. "name": "Nicolas Grekas",
  6847. "email": "p@tchwork.com"
  6848. },
  6849. {
  6850. "name": "Symfony Community",
  6851. "homepage": "https://symfony.com/contributors"
  6852. }
  6853. ],
  6854. "description": "A generic function and convention to trigger deprecation notices",
  6855. "homepage": "https://symfony.com",
  6856. "support": {
  6857. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6858. },
  6859. "funding": [
  6860. {
  6861. "url": "https://symfony.com/sponsor",
  6862. "type": "custom"
  6863. },
  6864. {
  6865. "url": "https://github.com/fabpot",
  6866. "type": "github"
  6867. },
  6868. {
  6869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6870. "type": "tidelift"
  6871. }
  6872. ],
  6873. "time": "2024-09-25T14:20:29+00:00"
  6874. },
  6875. {
  6876. "name": "symfony/finder",
  6877. "version": "v6.4.13",
  6878. "source": {
  6879. "type": "git",
  6880. "url": "https://github.com/symfony/finder.git",
  6881. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6882. },
  6883. "dist": {
  6884. "type": "zip",
  6885. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6886. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6887. "shasum": ""
  6888. },
  6889. "require": {
  6890. "php": ">=8.1"
  6891. },
  6892. "require-dev": {
  6893. "symfony/filesystem": "^6.0|^7.0"
  6894. },
  6895. "type": "library",
  6896. "autoload": {
  6897. "psr-4": {
  6898. "Symfony\\Component\\Finder\\": ""
  6899. },
  6900. "exclude-from-classmap": [
  6901. "/Tests/"
  6902. ]
  6903. },
  6904. "notification-url": "https://packagist.org/downloads/",
  6905. "license": [
  6906. "MIT"
  6907. ],
  6908. "authors": [
  6909. {
  6910. "name": "Fabien Potencier",
  6911. "email": "fabien@symfony.com"
  6912. },
  6913. {
  6914. "name": "Symfony Community",
  6915. "homepage": "https://symfony.com/contributors"
  6916. }
  6917. ],
  6918. "description": "Finds files and directories via an intuitive fluent interface",
  6919. "homepage": "https://symfony.com",
  6920. "support": {
  6921. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  6922. },
  6923. "funding": [
  6924. {
  6925. "url": "https://symfony.com/sponsor",
  6926. "type": "custom"
  6927. },
  6928. {
  6929. "url": "https://github.com/fabpot",
  6930. "type": "github"
  6931. },
  6932. {
  6933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6934. "type": "tidelift"
  6935. }
  6936. ],
  6937. "time": "2024-10-01T08:30:56+00:00"
  6938. },
  6939. {
  6940. "name": "symfony/polyfill-ctype",
  6941. "version": "v1.31.0",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/symfony/polyfill-ctype.git",
  6945. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6950. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "php": ">=7.2"
  6955. },
  6956. "provide": {
  6957. "ext-ctype": "*"
  6958. },
  6959. "suggest": {
  6960. "ext-ctype": "For best performance"
  6961. },
  6962. "type": "library",
  6963. "extra": {
  6964. "thanks": {
  6965. "name": "symfony/polyfill",
  6966. "url": "https://github.com/symfony/polyfill"
  6967. }
  6968. },
  6969. "autoload": {
  6970. "files": [
  6971. "bootstrap.php"
  6972. ],
  6973. "psr-4": {
  6974. "Symfony\\Polyfill\\Ctype\\": ""
  6975. }
  6976. },
  6977. "notification-url": "https://packagist.org/downloads/",
  6978. "license": [
  6979. "MIT"
  6980. ],
  6981. "authors": [
  6982. {
  6983. "name": "Gert de Pagter",
  6984. "email": "BackEndTea@gmail.com"
  6985. },
  6986. {
  6987. "name": "Symfony Community",
  6988. "homepage": "https://symfony.com/contributors"
  6989. }
  6990. ],
  6991. "description": "Symfony polyfill for ctype functions",
  6992. "homepage": "https://symfony.com",
  6993. "keywords": [
  6994. "compatibility",
  6995. "ctype",
  6996. "polyfill",
  6997. "portable"
  6998. ],
  6999. "support": {
  7000. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7001. },
  7002. "funding": [
  7003. {
  7004. "url": "https://symfony.com/sponsor",
  7005. "type": "custom"
  7006. },
  7007. {
  7008. "url": "https://github.com/fabpot",
  7009. "type": "github"
  7010. },
  7011. {
  7012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7013. "type": "tidelift"
  7014. }
  7015. ],
  7016. "time": "2024-09-09T11:45:10+00:00"
  7017. },
  7018. {
  7019. "name": "symfony/polyfill-intl-grapheme",
  7020. "version": "v1.31.0",
  7021. "source": {
  7022. "type": "git",
  7023. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7024. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7025. },
  7026. "dist": {
  7027. "type": "zip",
  7028. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7029. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7030. "shasum": ""
  7031. },
  7032. "require": {
  7033. "php": ">=7.2"
  7034. },
  7035. "suggest": {
  7036. "ext-intl": "For best performance"
  7037. },
  7038. "type": "library",
  7039. "extra": {
  7040. "thanks": {
  7041. "name": "symfony/polyfill",
  7042. "url": "https://github.com/symfony/polyfill"
  7043. }
  7044. },
  7045. "autoload": {
  7046. "files": [
  7047. "bootstrap.php"
  7048. ],
  7049. "psr-4": {
  7050. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7051. }
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "MIT"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Nicolas Grekas",
  7060. "email": "p@tchwork.com"
  7061. },
  7062. {
  7063. "name": "Symfony Community",
  7064. "homepage": "https://symfony.com/contributors"
  7065. }
  7066. ],
  7067. "description": "Symfony polyfill for intl's grapheme_* functions",
  7068. "homepage": "https://symfony.com",
  7069. "keywords": [
  7070. "compatibility",
  7071. "grapheme",
  7072. "intl",
  7073. "polyfill",
  7074. "portable",
  7075. "shim"
  7076. ],
  7077. "support": {
  7078. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7079. },
  7080. "funding": [
  7081. {
  7082. "url": "https://symfony.com/sponsor",
  7083. "type": "custom"
  7084. },
  7085. {
  7086. "url": "https://github.com/fabpot",
  7087. "type": "github"
  7088. },
  7089. {
  7090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7091. "type": "tidelift"
  7092. }
  7093. ],
  7094. "time": "2024-09-09T11:45:10+00:00"
  7095. },
  7096. {
  7097. "name": "symfony/polyfill-intl-normalizer",
  7098. "version": "v1.31.0",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7102. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7107. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7108. "shasum": ""
  7109. },
  7110. "require": {
  7111. "php": ">=7.2"
  7112. },
  7113. "suggest": {
  7114. "ext-intl": "For best performance"
  7115. },
  7116. "type": "library",
  7117. "extra": {
  7118. "thanks": {
  7119. "name": "symfony/polyfill",
  7120. "url": "https://github.com/symfony/polyfill"
  7121. }
  7122. },
  7123. "autoload": {
  7124. "files": [
  7125. "bootstrap.php"
  7126. ],
  7127. "psr-4": {
  7128. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7129. },
  7130. "classmap": [
  7131. "Resources/stubs"
  7132. ]
  7133. },
  7134. "notification-url": "https://packagist.org/downloads/",
  7135. "license": [
  7136. "MIT"
  7137. ],
  7138. "authors": [
  7139. {
  7140. "name": "Nicolas Grekas",
  7141. "email": "p@tchwork.com"
  7142. },
  7143. {
  7144. "name": "Symfony Community",
  7145. "homepage": "https://symfony.com/contributors"
  7146. }
  7147. ],
  7148. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7149. "homepage": "https://symfony.com",
  7150. "keywords": [
  7151. "compatibility",
  7152. "intl",
  7153. "normalizer",
  7154. "polyfill",
  7155. "portable",
  7156. "shim"
  7157. ],
  7158. "support": {
  7159. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7160. },
  7161. "funding": [
  7162. {
  7163. "url": "https://symfony.com/sponsor",
  7164. "type": "custom"
  7165. },
  7166. {
  7167. "url": "https://github.com/fabpot",
  7168. "type": "github"
  7169. },
  7170. {
  7171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7172. "type": "tidelift"
  7173. }
  7174. ],
  7175. "time": "2024-09-09T11:45:10+00:00"
  7176. },
  7177. {
  7178. "name": "symfony/polyfill-mbstring",
  7179. "version": "v1.31.0",
  7180. "source": {
  7181. "type": "git",
  7182. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7183. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7184. },
  7185. "dist": {
  7186. "type": "zip",
  7187. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7188. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7189. "shasum": ""
  7190. },
  7191. "require": {
  7192. "php": ">=7.2"
  7193. },
  7194. "provide": {
  7195. "ext-mbstring": "*"
  7196. },
  7197. "suggest": {
  7198. "ext-mbstring": "For best performance"
  7199. },
  7200. "type": "library",
  7201. "extra": {
  7202. "thanks": {
  7203. "name": "symfony/polyfill",
  7204. "url": "https://github.com/symfony/polyfill"
  7205. }
  7206. },
  7207. "autoload": {
  7208. "files": [
  7209. "bootstrap.php"
  7210. ],
  7211. "psr-4": {
  7212. "Symfony\\Polyfill\\Mbstring\\": ""
  7213. }
  7214. },
  7215. "notification-url": "https://packagist.org/downloads/",
  7216. "license": [
  7217. "MIT"
  7218. ],
  7219. "authors": [
  7220. {
  7221. "name": "Nicolas Grekas",
  7222. "email": "p@tchwork.com"
  7223. },
  7224. {
  7225. "name": "Symfony Community",
  7226. "homepage": "https://symfony.com/contributors"
  7227. }
  7228. ],
  7229. "description": "Symfony polyfill for the Mbstring extension",
  7230. "homepage": "https://symfony.com",
  7231. "keywords": [
  7232. "compatibility",
  7233. "mbstring",
  7234. "polyfill",
  7235. "portable",
  7236. "shim"
  7237. ],
  7238. "support": {
  7239. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7240. },
  7241. "funding": [
  7242. {
  7243. "url": "https://symfony.com/sponsor",
  7244. "type": "custom"
  7245. },
  7246. {
  7247. "url": "https://github.com/fabpot",
  7248. "type": "github"
  7249. },
  7250. {
  7251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7252. "type": "tidelift"
  7253. }
  7254. ],
  7255. "time": "2024-09-09T11:45:10+00:00"
  7256. },
  7257. {
  7258. "name": "symfony/polyfill-php80",
  7259. "version": "v1.31.0",
  7260. "source": {
  7261. "type": "git",
  7262. "url": "https://github.com/symfony/polyfill-php80.git",
  7263. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7264. },
  7265. "dist": {
  7266. "type": "zip",
  7267. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7268. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7269. "shasum": ""
  7270. },
  7271. "require": {
  7272. "php": ">=7.2"
  7273. },
  7274. "type": "library",
  7275. "extra": {
  7276. "thanks": {
  7277. "name": "symfony/polyfill",
  7278. "url": "https://github.com/symfony/polyfill"
  7279. }
  7280. },
  7281. "autoload": {
  7282. "files": [
  7283. "bootstrap.php"
  7284. ],
  7285. "psr-4": {
  7286. "Symfony\\Polyfill\\Php80\\": ""
  7287. },
  7288. "classmap": [
  7289. "Resources/stubs"
  7290. ]
  7291. },
  7292. "notification-url": "https://packagist.org/downloads/",
  7293. "license": [
  7294. "MIT"
  7295. ],
  7296. "authors": [
  7297. {
  7298. "name": "Ion Bazan",
  7299. "email": "ion.bazan@gmail.com"
  7300. },
  7301. {
  7302. "name": "Nicolas Grekas",
  7303. "email": "p@tchwork.com"
  7304. },
  7305. {
  7306. "name": "Symfony Community",
  7307. "homepage": "https://symfony.com/contributors"
  7308. }
  7309. ],
  7310. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7311. "homepage": "https://symfony.com",
  7312. "keywords": [
  7313. "compatibility",
  7314. "polyfill",
  7315. "portable",
  7316. "shim"
  7317. ],
  7318. "support": {
  7319. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7320. },
  7321. "funding": [
  7322. {
  7323. "url": "https://symfony.com/sponsor",
  7324. "type": "custom"
  7325. },
  7326. {
  7327. "url": "https://github.com/fabpot",
  7328. "type": "github"
  7329. },
  7330. {
  7331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7332. "type": "tidelift"
  7333. }
  7334. ],
  7335. "time": "2024-09-09T11:45:10+00:00"
  7336. },
  7337. {
  7338. "name": "symfony/service-contracts",
  7339. "version": "v3.5.1",
  7340. "source": {
  7341. "type": "git",
  7342. "url": "https://github.com/symfony/service-contracts.git",
  7343. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7344. },
  7345. "dist": {
  7346. "type": "zip",
  7347. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7348. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7349. "shasum": ""
  7350. },
  7351. "require": {
  7352. "php": ">=8.1",
  7353. "psr/container": "^1.1|^2.0",
  7354. "symfony/deprecation-contracts": "^2.5|^3"
  7355. },
  7356. "conflict": {
  7357. "ext-psr": "<1.1|>=2"
  7358. },
  7359. "type": "library",
  7360. "extra": {
  7361. "branch-alias": {
  7362. "dev-main": "3.5-dev"
  7363. },
  7364. "thanks": {
  7365. "name": "symfony/contracts",
  7366. "url": "https://github.com/symfony/contracts"
  7367. }
  7368. },
  7369. "autoload": {
  7370. "psr-4": {
  7371. "Symfony\\Contracts\\Service\\": ""
  7372. },
  7373. "exclude-from-classmap": [
  7374. "/Test/"
  7375. ]
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "MIT"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Nicolas Grekas",
  7384. "email": "p@tchwork.com"
  7385. },
  7386. {
  7387. "name": "Symfony Community",
  7388. "homepage": "https://symfony.com/contributors"
  7389. }
  7390. ],
  7391. "description": "Generic abstractions related to writing services",
  7392. "homepage": "https://symfony.com",
  7393. "keywords": [
  7394. "abstractions",
  7395. "contracts",
  7396. "decoupling",
  7397. "interfaces",
  7398. "interoperability",
  7399. "standards"
  7400. ],
  7401. "support": {
  7402. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7403. },
  7404. "funding": [
  7405. {
  7406. "url": "https://symfony.com/sponsor",
  7407. "type": "custom"
  7408. },
  7409. {
  7410. "url": "https://github.com/fabpot",
  7411. "type": "github"
  7412. },
  7413. {
  7414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7415. "type": "tidelift"
  7416. }
  7417. ],
  7418. "time": "2024-09-25T14:20:29+00:00"
  7419. },
  7420. {
  7421. "name": "symfony/string",
  7422. "version": "v6.4.15",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/symfony/string.git",
  7426. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7431. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7432. "shasum": ""
  7433. },
  7434. "require": {
  7435. "php": ">=8.1",
  7436. "symfony/polyfill-ctype": "~1.8",
  7437. "symfony/polyfill-intl-grapheme": "~1.0",
  7438. "symfony/polyfill-intl-normalizer": "~1.0",
  7439. "symfony/polyfill-mbstring": "~1.0"
  7440. },
  7441. "conflict": {
  7442. "symfony/translation-contracts": "<2.5"
  7443. },
  7444. "require-dev": {
  7445. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7446. "symfony/http-client": "^5.4|^6.0|^7.0",
  7447. "symfony/intl": "^6.2|^7.0",
  7448. "symfony/translation-contracts": "^2.5|^3.0",
  7449. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7450. },
  7451. "type": "library",
  7452. "autoload": {
  7453. "files": [
  7454. "Resources/functions.php"
  7455. ],
  7456. "psr-4": {
  7457. "Symfony\\Component\\String\\": ""
  7458. },
  7459. "exclude-from-classmap": [
  7460. "/Tests/"
  7461. ]
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "MIT"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Nicolas Grekas",
  7470. "email": "p@tchwork.com"
  7471. },
  7472. {
  7473. "name": "Symfony Community",
  7474. "homepage": "https://symfony.com/contributors"
  7475. }
  7476. ],
  7477. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7478. "homepage": "https://symfony.com",
  7479. "keywords": [
  7480. "grapheme",
  7481. "i18n",
  7482. "string",
  7483. "unicode",
  7484. "utf-8",
  7485. "utf8"
  7486. ],
  7487. "support": {
  7488. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7489. },
  7490. "funding": [
  7491. {
  7492. "url": "https://symfony.com/sponsor",
  7493. "type": "custom"
  7494. },
  7495. {
  7496. "url": "https://github.com/fabpot",
  7497. "type": "github"
  7498. },
  7499. {
  7500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7501. "type": "tidelift"
  7502. }
  7503. ],
  7504. "time": "2024-11-13T13:31:12+00:00"
  7505. },
  7506. {
  7507. "name": "symfony/translation",
  7508. "version": "v6.4.13",
  7509. "source": {
  7510. "type": "git",
  7511. "url": "https://github.com/symfony/translation.git",
  7512. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7513. },
  7514. "dist": {
  7515. "type": "zip",
  7516. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7517. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7518. "shasum": ""
  7519. },
  7520. "require": {
  7521. "php": ">=8.1",
  7522. "symfony/deprecation-contracts": "^2.5|^3",
  7523. "symfony/polyfill-mbstring": "~1.0",
  7524. "symfony/translation-contracts": "^2.5|^3.0"
  7525. },
  7526. "conflict": {
  7527. "symfony/config": "<5.4",
  7528. "symfony/console": "<5.4",
  7529. "symfony/dependency-injection": "<5.4",
  7530. "symfony/http-client-contracts": "<2.5",
  7531. "symfony/http-kernel": "<5.4",
  7532. "symfony/service-contracts": "<2.5",
  7533. "symfony/twig-bundle": "<5.4",
  7534. "symfony/yaml": "<5.4"
  7535. },
  7536. "provide": {
  7537. "symfony/translation-implementation": "2.3|3.0"
  7538. },
  7539. "require-dev": {
  7540. "nikic/php-parser": "^4.18|^5.0",
  7541. "psr/log": "^1|^2|^3",
  7542. "symfony/config": "^5.4|^6.0|^7.0",
  7543. "symfony/console": "^5.4|^6.0|^7.0",
  7544. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7545. "symfony/finder": "^5.4|^6.0|^7.0",
  7546. "symfony/http-client-contracts": "^2.5|^3.0",
  7547. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7548. "symfony/intl": "^5.4|^6.0|^7.0",
  7549. "symfony/polyfill-intl-icu": "^1.21",
  7550. "symfony/routing": "^5.4|^6.0|^7.0",
  7551. "symfony/service-contracts": "^2.5|^3",
  7552. "symfony/yaml": "^5.4|^6.0|^7.0"
  7553. },
  7554. "type": "library",
  7555. "autoload": {
  7556. "files": [
  7557. "Resources/functions.php"
  7558. ],
  7559. "psr-4": {
  7560. "Symfony\\Component\\Translation\\": ""
  7561. },
  7562. "exclude-from-classmap": [
  7563. "/Tests/"
  7564. ]
  7565. },
  7566. "notification-url": "https://packagist.org/downloads/",
  7567. "license": [
  7568. "MIT"
  7569. ],
  7570. "authors": [
  7571. {
  7572. "name": "Fabien Potencier",
  7573. "email": "fabien@symfony.com"
  7574. },
  7575. {
  7576. "name": "Symfony Community",
  7577. "homepage": "https://symfony.com/contributors"
  7578. }
  7579. ],
  7580. "description": "Provides tools to internationalize your application",
  7581. "homepage": "https://symfony.com",
  7582. "support": {
  7583. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7584. },
  7585. "funding": [
  7586. {
  7587. "url": "https://symfony.com/sponsor",
  7588. "type": "custom"
  7589. },
  7590. {
  7591. "url": "https://github.com/fabpot",
  7592. "type": "github"
  7593. },
  7594. {
  7595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7596. "type": "tidelift"
  7597. }
  7598. ],
  7599. "time": "2024-09-27T18:14:25+00:00"
  7600. },
  7601. {
  7602. "name": "symfony/translation-contracts",
  7603. "version": "v3.5.1",
  7604. "source": {
  7605. "type": "git",
  7606. "url": "https://github.com/symfony/translation-contracts.git",
  7607. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7608. },
  7609. "dist": {
  7610. "type": "zip",
  7611. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7612. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7613. "shasum": ""
  7614. },
  7615. "require": {
  7616. "php": ">=8.1"
  7617. },
  7618. "type": "library",
  7619. "extra": {
  7620. "branch-alias": {
  7621. "dev-main": "3.5-dev"
  7622. },
  7623. "thanks": {
  7624. "name": "symfony/contracts",
  7625. "url": "https://github.com/symfony/contracts"
  7626. }
  7627. },
  7628. "autoload": {
  7629. "psr-4": {
  7630. "Symfony\\Contracts\\Translation\\": ""
  7631. },
  7632. "exclude-from-classmap": [
  7633. "/Test/"
  7634. ]
  7635. },
  7636. "notification-url": "https://packagist.org/downloads/",
  7637. "license": [
  7638. "MIT"
  7639. ],
  7640. "authors": [
  7641. {
  7642. "name": "Nicolas Grekas",
  7643. "email": "p@tchwork.com"
  7644. },
  7645. {
  7646. "name": "Symfony Community",
  7647. "homepage": "https://symfony.com/contributors"
  7648. }
  7649. ],
  7650. "description": "Generic abstractions related to translation",
  7651. "homepage": "https://symfony.com",
  7652. "keywords": [
  7653. "abstractions",
  7654. "contracts",
  7655. "decoupling",
  7656. "interfaces",
  7657. "interoperability",
  7658. "standards"
  7659. ],
  7660. "support": {
  7661. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7662. },
  7663. "funding": [
  7664. {
  7665. "url": "https://symfony.com/sponsor",
  7666. "type": "custom"
  7667. },
  7668. {
  7669. "url": "https://github.com/fabpot",
  7670. "type": "github"
  7671. },
  7672. {
  7673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7674. "type": "tidelift"
  7675. }
  7676. ],
  7677. "time": "2024-09-25T14:20:29+00:00"
  7678. <<<<<<< HEAD
  7679. },
  7680. {
  7681. "name": "symfony/var-dumper",
  7682. "version": "v6.4.15",
  7683. "source": {
  7684. "type": "git",
  7685. "url": "https://github.com/symfony/var-dumper.git",
  7686. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80"
  7687. },
  7688. "dist": {
  7689. "type": "zip",
  7690. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7691. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7692. "shasum": ""
  7693. },
  7694. "require": {
  7695. "php": ">=8.1",
  7696. "symfony/deprecation-contracts": "^2.5|^3",
  7697. "symfony/polyfill-mbstring": "~1.0"
  7698. },
  7699. "conflict": {
  7700. "symfony/console": "<5.4"
  7701. },
  7702. "require-dev": {
  7703. "ext-iconv": "*",
  7704. "symfony/console": "^5.4|^6.0|^7.0",
  7705. "symfony/error-handler": "^6.3|^7.0",
  7706. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7707. "symfony/process": "^5.4|^6.0|^7.0",
  7708. "symfony/uid": "^5.4|^6.0|^7.0",
  7709. "twig/twig": "^2.13|^3.0.4"
  7710. },
  7711. "bin": [
  7712. "Resources/bin/var-dump-server"
  7713. ],
  7714. "type": "library",
  7715. "autoload": {
  7716. "files": [
  7717. "Resources/functions/dump.php"
  7718. ],
  7719. "psr-4": {
  7720. "Symfony\\Component\\VarDumper\\": ""
  7721. },
  7722. "exclude-from-classmap": [
  7723. "/Tests/"
  7724. ]
  7725. },
  7726. "notification-url": "https://packagist.org/downloads/",
  7727. "license": [
  7728. "MIT"
  7729. ],
  7730. "authors": [
  7731. {
  7732. "name": "Nicolas Grekas",
  7733. "email": "p@tchwork.com"
  7734. },
  7735. {
  7736. "name": "Symfony Community",
  7737. "homepage": "https://symfony.com/contributors"
  7738. }
  7739. ],
  7740. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7741. "homepage": "https://symfony.com",
  7742. "keywords": [
  7743. "debug",
  7744. "dump"
  7745. ],
  7746. "support": {
  7747. "source": "https://github.com/symfony/var-dumper/tree/v6.4.15"
  7748. },
  7749. "funding": [
  7750. {
  7751. "url": "https://symfony.com/sponsor",
  7752. "type": "custom"
  7753. },
  7754. {
  7755. "url": "https://github.com/fabpot",
  7756. "type": "github"
  7757. },
  7758. {
  7759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7760. "type": "tidelift"
  7761. }
  7762. ],
  7763. "time": "2024-11-08T15:28:48+00:00"
  7764. },
  7765. {
  7766. "name": "symfony/var-exporter",
  7767. "version": "v6.4.13",
  7768. "source": {
  7769. "type": "git",
  7770. "url": "https://github.com/symfony/var-exporter.git",
  7771. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  7772. },
  7773. "dist": {
  7774. "type": "zip",
  7775. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  7776. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  7777. "shasum": ""
  7778. },
  7779. "require": {
  7780. "php": ">=8.1",
  7781. "symfony/deprecation-contracts": "^2.5|^3"
  7782. },
  7783. "require-dev": {
  7784. "symfony/property-access": "^6.4|^7.0",
  7785. "symfony/serializer": "^6.4|^7.0",
  7786. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7787. },
  7788. "type": "library",
  7789. "autoload": {
  7790. "psr-4": {
  7791. "Symfony\\Component\\VarExporter\\": ""
  7792. },
  7793. "exclude-from-classmap": [
  7794. "/Tests/"
  7795. ]
  7796. },
  7797. "notification-url": "https://packagist.org/downloads/",
  7798. "license": [
  7799. "MIT"
  7800. ],
  7801. "authors": [
  7802. {
  7803. "name": "Nicolas Grekas",
  7804. "email": "p@tchwork.com"
  7805. },
  7806. {
  7807. "name": "Symfony Community",
  7808. "homepage": "https://symfony.com/contributors"
  7809. }
  7810. ],
  7811. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7812. "homepage": "https://symfony.com",
  7813. "keywords": [
  7814. "clone",
  7815. "construct",
  7816. "export",
  7817. "hydrate",
  7818. "instantiate",
  7819. "lazy-loading",
  7820. "proxy",
  7821. "serialize"
  7822. ],
  7823. "support": {
  7824. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7825. },
  7826. "funding": [
  7827. {
  7828. "url": "https://symfony.com/sponsor",
  7829. "type": "custom"
  7830. },
  7831. {
  7832. "url": "https://github.com/fabpot",
  7833. "type": "github"
  7834. },
  7835. {
  7836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7837. "type": "tidelift"
  7838. }
  7839. ],
  7840. "time": "2024-09-25T14:18:03+00:00"
  7841. =======
  7842. >>>>>>> 32a7466ce932df46b3fc3cf9b1ac8f32b18dfed2
  7843. },
  7844. {
  7845. "name": "symfony/var-dumper",
  7846. "version": "v6.4.14",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/symfony/var-dumper.git",
  7850. "reference": "93c09246038178717a9c14b809ea8151ffcf7091"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/93c09246038178717a9c14b809ea8151ffcf7091",
  7855. "reference": "93c09246038178717a9c14b809ea8151ffcf7091",
  7856. "shasum": ""
  7857. },
  7858. "require": {
  7859. "php": ">=8.1",
  7860. "symfony/deprecation-contracts": "^2.5|^3",
  7861. "symfony/polyfill-mbstring": "~1.0"
  7862. },
  7863. "conflict": {
  7864. "symfony/console": "<5.4"
  7865. },
  7866. "require-dev": {
  7867. "ext-iconv": "*",
  7868. "symfony/console": "^5.4|^6.0|^7.0",
  7869. "symfony/error-handler": "^6.3|^7.0",
  7870. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7871. "symfony/process": "^5.4|^6.0|^7.0",
  7872. "symfony/uid": "^5.4|^6.0|^7.0",
  7873. "twig/twig": "^2.13|^3.0.4"
  7874. },
  7875. "bin": [
  7876. "Resources/bin/var-dump-server"
  7877. ],
  7878. "type": "library",
  7879. "autoload": {
  7880. "files": [
  7881. "Resources/functions/dump.php"
  7882. ],
  7883. "psr-4": {
  7884. "Symfony\\Component\\VarDumper\\": ""
  7885. },
  7886. "exclude-from-classmap": [
  7887. "/Tests/"
  7888. ]
  7889. },
  7890. "notification-url": "https://packagist.org/downloads/",
  7891. "license": [
  7892. "MIT"
  7893. ],
  7894. "authors": [
  7895. {
  7896. "name": "Nicolas Grekas",
  7897. "email": "p@tchwork.com"
  7898. },
  7899. {
  7900. "name": "Symfony Community",
  7901. "homepage": "https://symfony.com/contributors"
  7902. }
  7903. ],
  7904. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7905. "homepage": "https://symfony.com",
  7906. "keywords": [
  7907. "debug",
  7908. "dump"
  7909. ],
  7910. "support": {
  7911. "source": "https://github.com/symfony/var-dumper/tree/v6.4.14"
  7912. },
  7913. "funding": [
  7914. {
  7915. "url": "https://symfony.com/sponsor",
  7916. "type": "custom"
  7917. },
  7918. {
  7919. "url": "https://github.com/fabpot",
  7920. "type": "github"
  7921. },
  7922. {
  7923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7924. "type": "tidelift"
  7925. }
  7926. ],
  7927. "time": "2024-11-05T15:34:40+00:00"
  7928. },
  7929. {
  7930. "name": "symfony/var-exporter",
  7931. "version": "v6.4.13",
  7932. "source": {
  7933. "type": "git",
  7934. "url": "https://github.com/symfony/var-exporter.git",
  7935. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  7936. },
  7937. "dist": {
  7938. "type": "zip",
  7939. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  7940. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  7941. "shasum": ""
  7942. },
  7943. "require": {
  7944. "php": ">=8.1",
  7945. "symfony/deprecation-contracts": "^2.5|^3"
  7946. },
  7947. "require-dev": {
  7948. "symfony/property-access": "^6.4|^7.0",
  7949. "symfony/serializer": "^6.4|^7.0",
  7950. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7951. },
  7952. "type": "library",
  7953. "autoload": {
  7954. "psr-4": {
  7955. "Symfony\\Component\\VarExporter\\": ""
  7956. },
  7957. "exclude-from-classmap": [
  7958. "/Tests/"
  7959. ]
  7960. },
  7961. "notification-url": "https://packagist.org/downloads/",
  7962. "license": [
  7963. "MIT"
  7964. ],
  7965. "authors": [
  7966. {
  7967. "name": "Nicolas Grekas",
  7968. "email": "p@tchwork.com"
  7969. },
  7970. {
  7971. "name": "Symfony Community",
  7972. "homepage": "https://symfony.com/contributors"
  7973. }
  7974. ],
  7975. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7976. "homepage": "https://symfony.com",
  7977. "keywords": [
  7978. "clone",
  7979. "construct",
  7980. "export",
  7981. "hydrate",
  7982. "instantiate",
  7983. "lazy-loading",
  7984. "proxy",
  7985. "serialize"
  7986. ],
  7987. "support": {
  7988. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7989. },
  7990. "funding": [
  7991. {
  7992. "url": "https://symfony.com/sponsor",
  7993. "type": "custom"
  7994. },
  7995. {
  7996. "url": "https://github.com/fabpot",
  7997. "type": "github"
  7998. },
  7999. {
  8000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8001. "type": "tidelift"
  8002. }
  8003. ],
  8004. "time": "2024-09-25T14:18:03+00:00"
  8005. },
  8006. {
  8007. "name": "vlucas/phpdotenv",
  8008. "version": "v5.6.1",
  8009. "source": {
  8010. "type": "git",
  8011. "url": "https://github.com/vlucas/phpdotenv.git",
  8012. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8013. },
  8014. "dist": {
  8015. "type": "zip",
  8016. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8017. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8018. "shasum": ""
  8019. },
  8020. "require": {
  8021. "ext-pcre": "*",
  8022. "graham-campbell/result-type": "^1.1.3",
  8023. "php": "^7.2.5 || ^8.0",
  8024. "phpoption/phpoption": "^1.9.3",
  8025. "symfony/polyfill-ctype": "^1.24",
  8026. "symfony/polyfill-mbstring": "^1.24",
  8027. "symfony/polyfill-php80": "^1.24"
  8028. },
  8029. "require-dev": {
  8030. "bamarni/composer-bin-plugin": "^1.8.2",
  8031. "ext-filter": "*",
  8032. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8033. },
  8034. "suggest": {
  8035. "ext-filter": "Required to use the boolean validator."
  8036. },
  8037. "type": "library",
  8038. "extra": {
  8039. "bamarni-bin": {
  8040. "bin-links": true,
  8041. "forward-command": false
  8042. },
  8043. "branch-alias": {
  8044. "dev-master": "5.6-dev"
  8045. }
  8046. },
  8047. "autoload": {
  8048. "psr-4": {
  8049. "Dotenv\\": "src/"
  8050. }
  8051. },
  8052. "notification-url": "https://packagist.org/downloads/",
  8053. "license": [
  8054. "BSD-3-Clause"
  8055. ],
  8056. "authors": [
  8057. {
  8058. "name": "Graham Campbell",
  8059. "email": "hello@gjcampbell.co.uk",
  8060. "homepage": "https://github.com/GrahamCampbell"
  8061. },
  8062. {
  8063. "name": "Vance Lucas",
  8064. "email": "vance@vancelucas.com",
  8065. "homepage": "https://github.com/vlucas"
  8066. }
  8067. ],
  8068. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8069. "keywords": [
  8070. "dotenv",
  8071. "env",
  8072. "environment"
  8073. ],
  8074. "support": {
  8075. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8076. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8077. },
  8078. "funding": [
  8079. {
  8080. "url": "https://github.com/GrahamCampbell",
  8081. "type": "github"
  8082. },
  8083. {
  8084. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8085. "type": "tidelift"
  8086. }
  8087. ],
  8088. "time": "2024-07-20T21:52:34+00:00"
  8089. }
  8090. ],
  8091. "packages-dev": [
  8092. {
  8093. "name": "clue/ndjson-react",
  8094. "version": "v1.3.0",
  8095. "source": {
  8096. "type": "git",
  8097. "url": "https://github.com/clue/reactphp-ndjson.git",
  8098. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8099. },
  8100. "dist": {
  8101. "type": "zip",
  8102. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8103. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8104. "shasum": ""
  8105. },
  8106. "require": {
  8107. "php": ">=5.3",
  8108. "react/stream": "^1.2"
  8109. },
  8110. "require-dev": {
  8111. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8112. "react/event-loop": "^1.2"
  8113. },
  8114. "type": "library",
  8115. "autoload": {
  8116. "psr-4": {
  8117. "Clue\\React\\NDJson\\": "src/"
  8118. }
  8119. },
  8120. "notification-url": "https://packagist.org/downloads/",
  8121. "license": [
  8122. "MIT"
  8123. ],
  8124. "authors": [
  8125. {
  8126. "name": "Christian Lück",
  8127. "email": "christian@clue.engineering"
  8128. }
  8129. ],
  8130. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8131. "homepage": "https://github.com/clue/reactphp-ndjson",
  8132. "keywords": [
  8133. "NDJSON",
  8134. "json",
  8135. "jsonlines",
  8136. "newline",
  8137. "reactphp",
  8138. "streaming"
  8139. ],
  8140. "support": {
  8141. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8142. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8143. },
  8144. "funding": [
  8145. {
  8146. "url": "https://clue.engineering/support",
  8147. "type": "custom"
  8148. },
  8149. {
  8150. "url": "https://github.com/clue",
  8151. "type": "github"
  8152. }
  8153. ],
  8154. "time": "2022-12-23T10:58:28+00:00"
  8155. },
  8156. {
  8157. "name": "composer/pcre",
  8158. "version": "3.3.2",
  8159. "source": {
  8160. "type": "git",
  8161. "url": "https://github.com/composer/pcre.git",
  8162. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8163. },
  8164. "dist": {
  8165. "type": "zip",
  8166. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8167. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8168. "shasum": ""
  8169. },
  8170. "require": {
  8171. "php": "^7.4 || ^8.0"
  8172. },
  8173. "conflict": {
  8174. "phpstan/phpstan": "<1.11.10"
  8175. },
  8176. "require-dev": {
  8177. "phpstan/phpstan": "^1.12 || ^2",
  8178. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8179. "phpunit/phpunit": "^8 || ^9"
  8180. },
  8181. "type": "library",
  8182. "extra": {
  8183. "branch-alias": {
  8184. "dev-main": "3.x-dev"
  8185. },
  8186. "phpstan": {
  8187. "includes": [
  8188. "extension.neon"
  8189. ]
  8190. }
  8191. },
  8192. "autoload": {
  8193. "psr-4": {
  8194. "Composer\\Pcre\\": "src"
  8195. }
  8196. },
  8197. "notification-url": "https://packagist.org/downloads/",
  8198. "license": [
  8199. "MIT"
  8200. ],
  8201. "authors": [
  8202. {
  8203. "name": "Jordi Boggiano",
  8204. "email": "j.boggiano@seld.be",
  8205. "homepage": "http://seld.be"
  8206. }
  8207. ],
  8208. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8209. "keywords": [
  8210. "PCRE",
  8211. "preg",
  8212. "regex",
  8213. "regular expression"
  8214. ],
  8215. "support": {
  8216. "issues": "https://github.com/composer/pcre/issues",
  8217. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8218. },
  8219. "funding": [
  8220. {
  8221. "url": "https://packagist.com",
  8222. "type": "custom"
  8223. },
  8224. {
  8225. "url": "https://github.com/composer",
  8226. "type": "github"
  8227. },
  8228. {
  8229. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8230. "type": "tidelift"
  8231. }
  8232. ],
  8233. "time": "2024-11-12T16:29:46+00:00"
  8234. },
  8235. {
  8236. "name": "composer/semver",
  8237. "version": "3.4.3",
  8238. "source": {
  8239. "type": "git",
  8240. "url": "https://github.com/composer/semver.git",
  8241. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8242. },
  8243. "dist": {
  8244. "type": "zip",
  8245. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8246. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8247. "shasum": ""
  8248. },
  8249. "require": {
  8250. "php": "^5.3.2 || ^7.0 || ^8.0"
  8251. },
  8252. "require-dev": {
  8253. "phpstan/phpstan": "^1.11",
  8254. "symfony/phpunit-bridge": "^3 || ^7"
  8255. },
  8256. "type": "library",
  8257. "extra": {
  8258. "branch-alias": {
  8259. "dev-main": "3.x-dev"
  8260. }
  8261. },
  8262. "autoload": {
  8263. "psr-4": {
  8264. "Composer\\Semver\\": "src"
  8265. }
  8266. },
  8267. "notification-url": "https://packagist.org/downloads/",
  8268. "license": [
  8269. "MIT"
  8270. ],
  8271. "authors": [
  8272. {
  8273. "name": "Nils Adermann",
  8274. "email": "naderman@naderman.de",
  8275. "homepage": "http://www.naderman.de"
  8276. },
  8277. {
  8278. "name": "Jordi Boggiano",
  8279. "email": "j.boggiano@seld.be",
  8280. "homepage": "http://seld.be"
  8281. },
  8282. {
  8283. "name": "Rob Bast",
  8284. "email": "rob.bast@gmail.com",
  8285. "homepage": "http://robbast.nl"
  8286. }
  8287. ],
  8288. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8289. "keywords": [
  8290. "semantic",
  8291. "semver",
  8292. "validation",
  8293. "versioning"
  8294. ],
  8295. "support": {
  8296. "irc": "ircs://irc.libera.chat:6697/composer",
  8297. "issues": "https://github.com/composer/semver/issues",
  8298. "source": "https://github.com/composer/semver/tree/3.4.3"
  8299. },
  8300. "funding": [
  8301. {
  8302. "url": "https://packagist.com",
  8303. "type": "custom"
  8304. },
  8305. {
  8306. "url": "https://github.com/composer",
  8307. "type": "github"
  8308. },
  8309. {
  8310. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8311. "type": "tidelift"
  8312. }
  8313. ],
  8314. "time": "2024-09-19T14:15:21+00:00"
  8315. },
  8316. {
  8317. "name": "composer/xdebug-handler",
  8318. "version": "3.0.5",
  8319. "source": {
  8320. "type": "git",
  8321. "url": "https://github.com/composer/xdebug-handler.git",
  8322. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8323. },
  8324. "dist": {
  8325. "type": "zip",
  8326. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8327. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8328. "shasum": ""
  8329. },
  8330. "require": {
  8331. "composer/pcre": "^1 || ^2 || ^3",
  8332. "php": "^7.2.5 || ^8.0",
  8333. "psr/log": "^1 || ^2 || ^3"
  8334. },
  8335. "require-dev": {
  8336. "phpstan/phpstan": "^1.0",
  8337. "phpstan/phpstan-strict-rules": "^1.1",
  8338. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8339. },
  8340. "type": "library",
  8341. "autoload": {
  8342. "psr-4": {
  8343. "Composer\\XdebugHandler\\": "src"
  8344. }
  8345. },
  8346. "notification-url": "https://packagist.org/downloads/",
  8347. "license": [
  8348. "MIT"
  8349. ],
  8350. "authors": [
  8351. {
  8352. "name": "John Stevenson",
  8353. "email": "john-stevenson@blueyonder.co.uk"
  8354. }
  8355. ],
  8356. "description": "Restarts a process without Xdebug.",
  8357. "keywords": [
  8358. "Xdebug",
  8359. "performance"
  8360. ],
  8361. "support": {
  8362. "irc": "ircs://irc.libera.chat:6697/composer",
  8363. "issues": "https://github.com/composer/xdebug-handler/issues",
  8364. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8365. },
  8366. "funding": [
  8367. {
  8368. "url": "https://packagist.com",
  8369. "type": "custom"
  8370. },
  8371. {
  8372. "url": "https://github.com/composer",
  8373. "type": "github"
  8374. },
  8375. {
  8376. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8377. "type": "tidelift"
  8378. }
  8379. ],
  8380. "time": "2024-05-06T16:37:16+00:00"
  8381. },
  8382. {
  8383. "name": "evenement/evenement",
  8384. "version": "v3.0.2",
  8385. "source": {
  8386. "type": "git",
  8387. "url": "https://github.com/igorw/evenement.git",
  8388. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8389. },
  8390. "dist": {
  8391. "type": "zip",
  8392. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8393. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8394. "shasum": ""
  8395. },
  8396. "require": {
  8397. "php": ">=7.0"
  8398. },
  8399. "require-dev": {
  8400. "phpunit/phpunit": "^9 || ^6"
  8401. },
  8402. "type": "library",
  8403. "autoload": {
  8404. "psr-4": {
  8405. "Evenement\\": "src/"
  8406. }
  8407. },
  8408. "notification-url": "https://packagist.org/downloads/",
  8409. "license": [
  8410. "MIT"
  8411. ],
  8412. "authors": [
  8413. {
  8414. "name": "Igor Wiedler",
  8415. "email": "igor@wiedler.ch"
  8416. }
  8417. ],
  8418. "description": "Événement is a very simple event dispatching library for PHP",
  8419. "keywords": [
  8420. "event-dispatcher",
  8421. "event-emitter"
  8422. ],
  8423. "support": {
  8424. "issues": "https://github.com/igorw/evenement/issues",
  8425. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8426. },
  8427. "time": "2023-08-08T05:53:35+00:00"
  8428. },
  8429. {
  8430. "name": "fidry/cpu-core-counter",
  8431. "version": "1.2.0",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8435. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8440. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8441. "shasum": ""
  8442. },
  8443. "require": {
  8444. "php": "^7.2 || ^8.0"
  8445. },
  8446. "require-dev": {
  8447. "fidry/makefile": "^0.2.0",
  8448. "fidry/php-cs-fixer-config": "^1.1.2",
  8449. "phpstan/extension-installer": "^1.2.0",
  8450. "phpstan/phpstan": "^1.9.2",
  8451. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8452. "phpstan/phpstan-phpunit": "^1.2.2",
  8453. "phpstan/phpstan-strict-rules": "^1.4.4",
  8454. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8455. "webmozarts/strict-phpunit": "^7.5"
  8456. },
  8457. "type": "library",
  8458. "autoload": {
  8459. "psr-4": {
  8460. "Fidry\\CpuCoreCounter\\": "src/"
  8461. }
  8462. },
  8463. "notification-url": "https://packagist.org/downloads/",
  8464. "license": [
  8465. "MIT"
  8466. ],
  8467. "authors": [
  8468. {
  8469. "name": "Théo FIDRY",
  8470. "email": "theo.fidry@gmail.com"
  8471. }
  8472. ],
  8473. "description": "Tiny utility to get the number of CPU cores.",
  8474. "keywords": [
  8475. "CPU",
  8476. "core"
  8477. ],
  8478. "support": {
  8479. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8480. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8481. },
  8482. "funding": [
  8483. {
  8484. "url": "https://github.com/theofidry",
  8485. "type": "github"
  8486. }
  8487. ],
  8488. "time": "2024-08-06T10:04:20+00:00"
  8489. },
  8490. {
  8491. "name": "friendsofphp/php-cs-fixer",
  8492. "version": "v3.65.0",
  8493. "source": {
  8494. "type": "git",
  8495. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8496. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  8497. },
  8498. "dist": {
  8499. "type": "zip",
  8500. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8501. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8502. "shasum": ""
  8503. },
  8504. "require": {
  8505. "clue/ndjson-react": "^1.0",
  8506. "composer/semver": "^3.4",
  8507. "composer/xdebug-handler": "^3.0.3",
  8508. "ext-filter": "*",
  8509. "ext-json": "*",
  8510. "ext-tokenizer": "*",
  8511. "fidry/cpu-core-counter": "^1.2",
  8512. "php": "^7.4 || ^8.0",
  8513. "react/child-process": "^0.6.5",
  8514. "react/event-loop": "^1.0",
  8515. "react/promise": "^2.0 || ^3.0",
  8516. "react/socket": "^1.0",
  8517. "react/stream": "^1.0",
  8518. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8519. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8520. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8521. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8522. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8523. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8524. "symfony/polyfill-mbstring": "^1.28",
  8525. "symfony/polyfill-php80": "^1.28",
  8526. "symfony/polyfill-php81": "^1.28",
  8527. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8528. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8529. },
  8530. "require-dev": {
  8531. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8532. "infection/infection": "^0.29.8",
  8533. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8534. "keradus/cli-executor": "^2.1",
  8535. "mikey179/vfsstream": "^1.6.12",
  8536. "php-coveralls/php-coveralls": "^2.7",
  8537. "php-cs-fixer/accessible-object": "^1.1",
  8538. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8539. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8540. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  8541. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  8542. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  8543. },
  8544. "suggest": {
  8545. "ext-dom": "For handling output formats in XML",
  8546. "ext-mbstring": "For handling non-UTF8 characters."
  8547. },
  8548. "bin": [
  8549. "php-cs-fixer"
  8550. ],
  8551. "type": "application",
  8552. "autoload": {
  8553. "psr-4": {
  8554. "PhpCsFixer\\": "src/"
  8555. },
  8556. "exclude-from-classmap": [
  8557. "src/Fixer/Internal/*"
  8558. ]
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "MIT"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Fabien Potencier",
  8567. "email": "fabien@symfony.com"
  8568. },
  8569. {
  8570. "name": "Dariusz Rumiński",
  8571. "email": "dariusz.ruminski@gmail.com"
  8572. }
  8573. ],
  8574. "description": "A tool to automatically fix PHP code style",
  8575. "keywords": [
  8576. "Static code analysis",
  8577. "fixer",
  8578. "standards",
  8579. "static analysis"
  8580. ],
  8581. "support": {
  8582. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8583. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  8584. },
  8585. "funding": [
  8586. {
  8587. "url": "https://github.com/keradus",
  8588. "type": "github"
  8589. }
  8590. ],
  8591. "time": "2024-11-25T00:39:24+00:00"
  8592. },
  8593. {
  8594. "name": "hamcrest/hamcrest-php",
  8595. "version": "v2.0.1",
  8596. "source": {
  8597. "type": "git",
  8598. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8599. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8600. },
  8601. "dist": {
  8602. "type": "zip",
  8603. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8604. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8605. "shasum": ""
  8606. },
  8607. "require": {
  8608. "php": "^5.3|^7.0|^8.0"
  8609. },
  8610. "replace": {
  8611. "cordoval/hamcrest-php": "*",
  8612. "davedevelopment/hamcrest-php": "*",
  8613. "kodova/hamcrest-php": "*"
  8614. },
  8615. "require-dev": {
  8616. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8617. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8618. },
  8619. "type": "library",
  8620. "extra": {
  8621. "branch-alias": {
  8622. "dev-master": "2.1-dev"
  8623. }
  8624. },
  8625. "autoload": {
  8626. "classmap": [
  8627. "hamcrest"
  8628. ]
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "BSD-3-Clause"
  8633. ],
  8634. "description": "This is the PHP port of Hamcrest Matchers",
  8635. "keywords": [
  8636. "test"
  8637. ],
  8638. "support": {
  8639. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8640. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8641. },
  8642. "time": "2020-07-09T08:09:16+00:00"
  8643. },
  8644. {
  8645. "name": "hyperf/devtool",
  8646. "version": "v3.1.42",
  8647. "source": {
  8648. "type": "git",
  8649. "url": "https://github.com/hyperf/devtool.git",
  8650. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8651. },
  8652. "dist": {
  8653. "type": "zip",
  8654. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8655. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8656. "shasum": ""
  8657. },
  8658. "require": {
  8659. "hyperf/code-parser": "~3.1.0",
  8660. "hyperf/command": "~3.1.0",
  8661. "hyperf/contract": "~3.1.0",
  8662. "hyperf/di": "~3.1.0",
  8663. "hyperf/support": "~3.1.0",
  8664. "hyperf/utils": "~3.1.0",
  8665. "php": ">=8.1"
  8666. },
  8667. "type": "library",
  8668. "extra": {
  8669. "branch-alias": {
  8670. "dev-master": "3.1-dev"
  8671. },
  8672. "hyperf": {
  8673. "config": "Hyperf\\Devtool\\ConfigProvider"
  8674. }
  8675. },
  8676. "autoload": {
  8677. "psr-4": {
  8678. "Hyperf\\Devtool\\": "src/"
  8679. }
  8680. },
  8681. "notification-url": "https://packagist.org/downloads/",
  8682. "license": [
  8683. "MIT"
  8684. ],
  8685. "description": "A Devtool for Hyperf.",
  8686. "homepage": "https://hyperf.io",
  8687. "keywords": [
  8688. "dev",
  8689. "devtool",
  8690. "hyperf",
  8691. "php",
  8692. "swoole"
  8693. ],
  8694. "support": {
  8695. "docs": "https://hyperf.wiki",
  8696. "issues": "https://github.com/hyperf/hyperf/issues",
  8697. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8698. "source": "https://github.com/hyperf/hyperf"
  8699. },
  8700. "funding": [
  8701. {
  8702. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8703. "type": "custom"
  8704. },
  8705. {
  8706. "url": "https://opencollective.com/hyperf",
  8707. "type": "open_collective"
  8708. }
  8709. ],
  8710. "time": "2024-09-25T02:54:12+00:00"
  8711. },
  8712. {
  8713. "name": "hyperf/testing",
  8714. "version": "v3.1.46",
  8715. "source": {
  8716. "type": "git",
  8717. "url": "https://github.com/hyperf/testing.git",
  8718. "reference": "d703d287817c577acfee0cec108dc2f4217ac9fa"
  8719. },
  8720. "dist": {
  8721. "type": "zip",
  8722. "url": "https://api.github.com/repos/hyperf/testing/zipball/d703d287817c577acfee0cec108dc2f4217ac9fa",
  8723. "reference": "d703d287817c577acfee0cec108dc2f4217ac9fa",
  8724. "shasum": ""
  8725. },
  8726. "require": {
  8727. "hyperf/codec": "~3.1.0",
  8728. "hyperf/collection": "~3.1.0",
  8729. "hyperf/contract": "~3.1.0",
  8730. "hyperf/coroutine": "~3.1.0",
  8731. "hyperf/http-message": "~3.1.0",
  8732. "hyperf/http-server": "~3.1.0",
  8733. "hyperf/support": "~3.1.0",
  8734. "hyperf/utils": "~3.1.0",
  8735. "php": ">=8.1",
  8736. "phpunit/phpunit": "^10.0",
  8737. "psr/container": "^1.0 || ^2.0",
  8738. "symfony/http-foundation": "^5.4 || ^6.0"
  8739. },
  8740. "suggest": {
  8741. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8742. },
  8743. "bin": [
  8744. "co-phpunit"
  8745. ],
  8746. "type": "library",
  8747. "extra": {
  8748. "branch-alias": {
  8749. "dev-master": "3.1-dev"
  8750. }
  8751. },
  8752. "autoload": {
  8753. "psr-4": {
  8754. "Hyperf\\Testing\\": "src/"
  8755. }
  8756. },
  8757. "notification-url": "https://packagist.org/downloads/",
  8758. "license": [
  8759. "MIT"
  8760. ],
  8761. "description": "Testing for hyperf",
  8762. "keywords": [
  8763. "dev",
  8764. "php",
  8765. "swoole",
  8766. "testing"
  8767. ],
  8768. "support": {
  8769. "source": "https://github.com/hyperf/testing/tree/v3.1.46"
  8770. },
  8771. "funding": [
  8772. {
  8773. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8774. "type": "custom"
  8775. },
  8776. {
  8777. "url": "https://opencollective.com/hyperf",
  8778. "type": "open_collective"
  8779. }
  8780. ],
  8781. "time": "2024-11-20T07:42:54+00:00"
  8782. },
  8783. {
  8784. "name": "hyperf/watcher",
  8785. "version": "v3.1.43",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/hyperf/watcher.git",
  8789. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8794. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "ext-posix": "*",
  8799. "hyperf/codec": "~3.1.0",
  8800. "hyperf/command": "~3.1.0",
  8801. "hyperf/di": "~3.1.0",
  8802. "hyperf/framework": "~3.1.0",
  8803. "hyperf/support": "~3.1.0",
  8804. "php": ">=8.1"
  8805. },
  8806. "type": "library",
  8807. "extra": {
  8808. "branch-alias": {
  8809. "dev-master": "3.1-dev"
  8810. },
  8811. "hyperf": {
  8812. "config": "Hyperf\\Watcher\\ConfigProvider"
  8813. }
  8814. },
  8815. "autoload": {
  8816. "files": [
  8817. "src/Functions.php"
  8818. ],
  8819. "psr-4": {
  8820. "Hyperf\\Watcher\\": "src/"
  8821. }
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "MIT"
  8826. ],
  8827. "description": "Hot reload watcher for Hyperf",
  8828. "keywords": [
  8829. "dev",
  8830. "hyperf",
  8831. "php"
  8832. ],
  8833. "support": {
  8834. "issues": "https://github.com/hyperf/watcher/issues",
  8835. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8836. },
  8837. "funding": [
  8838. {
  8839. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8840. "type": "custom"
  8841. },
  8842. {
  8843. "url": "https://opencollective.com/hyperf",
  8844. "type": "open_collective"
  8845. }
  8846. ],
  8847. "time": "2024-10-06T12:33:12+00:00"
  8848. },
  8849. {
  8850. "name": "mockery/mockery",
  8851. "version": "1.6.12",
  8852. "source": {
  8853. "type": "git",
  8854. "url": "https://github.com/mockery/mockery.git",
  8855. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8856. },
  8857. "dist": {
  8858. "type": "zip",
  8859. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8860. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8861. "shasum": ""
  8862. },
  8863. "require": {
  8864. "hamcrest/hamcrest-php": "^2.0.1",
  8865. "lib-pcre": ">=7.0",
  8866. "php": ">=7.3"
  8867. },
  8868. "conflict": {
  8869. "phpunit/phpunit": "<8.0"
  8870. },
  8871. "require-dev": {
  8872. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8873. "symplify/easy-coding-standard": "^12.1.14"
  8874. },
  8875. "type": "library",
  8876. "autoload": {
  8877. "files": [
  8878. "library/helpers.php",
  8879. "library/Mockery.php"
  8880. ],
  8881. "psr-4": {
  8882. "Mockery\\": "library/Mockery"
  8883. }
  8884. },
  8885. "notification-url": "https://packagist.org/downloads/",
  8886. "license": [
  8887. "BSD-3-Clause"
  8888. ],
  8889. "authors": [
  8890. {
  8891. "name": "Pádraic Brady",
  8892. "email": "padraic.brady@gmail.com",
  8893. "homepage": "https://github.com/padraic",
  8894. "role": "Author"
  8895. },
  8896. {
  8897. "name": "Dave Marshall",
  8898. "email": "dave.marshall@atstsolutions.co.uk",
  8899. "homepage": "https://davedevelopment.co.uk",
  8900. "role": "Developer"
  8901. },
  8902. {
  8903. "name": "Nathanael Esayeas",
  8904. "email": "nathanael.esayeas@protonmail.com",
  8905. "homepage": "https://github.com/ghostwriter",
  8906. "role": "Lead Developer"
  8907. }
  8908. ],
  8909. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8910. "homepage": "https://github.com/mockery/mockery",
  8911. "keywords": [
  8912. "BDD",
  8913. "TDD",
  8914. "library",
  8915. "mock",
  8916. "mock objects",
  8917. "mockery",
  8918. "stub",
  8919. "test",
  8920. "test double",
  8921. "testing"
  8922. ],
  8923. "support": {
  8924. "docs": "https://docs.mockery.io/",
  8925. "issues": "https://github.com/mockery/mockery/issues",
  8926. "rss": "https://github.com/mockery/mockery/releases.atom",
  8927. "security": "https://github.com/mockery/mockery/security/advisories",
  8928. "source": "https://github.com/mockery/mockery"
  8929. },
  8930. "time": "2024-05-16T03:13:13+00:00"
  8931. },
  8932. {
  8933. "name": "myclabs/deep-copy",
  8934. "version": "1.12.1",
  8935. "source": {
  8936. "type": "git",
  8937. "url": "https://github.com/myclabs/DeepCopy.git",
  8938. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8939. },
  8940. "dist": {
  8941. "type": "zip",
  8942. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8943. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8944. "shasum": ""
  8945. },
  8946. "require": {
  8947. "php": "^7.1 || ^8.0"
  8948. },
  8949. "conflict": {
  8950. "doctrine/collections": "<1.6.8",
  8951. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8952. },
  8953. "require-dev": {
  8954. "doctrine/collections": "^1.6.8",
  8955. "doctrine/common": "^2.13.3 || ^3.2.2",
  8956. "phpspec/prophecy": "^1.10",
  8957. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8958. },
  8959. "type": "library",
  8960. "autoload": {
  8961. "files": [
  8962. "src/DeepCopy/deep_copy.php"
  8963. ],
  8964. "psr-4": {
  8965. "DeepCopy\\": "src/DeepCopy/"
  8966. }
  8967. },
  8968. "notification-url": "https://packagist.org/downloads/",
  8969. "license": [
  8970. "MIT"
  8971. ],
  8972. "description": "Create deep copies (clones) of your objects",
  8973. "keywords": [
  8974. "clone",
  8975. "copy",
  8976. "duplicate",
  8977. "object",
  8978. "object graph"
  8979. ],
  8980. "support": {
  8981. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8982. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8983. },
  8984. "funding": [
  8985. {
  8986. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8987. "type": "tidelift"
  8988. }
  8989. ],
  8990. "time": "2024-11-08T17:47:46+00:00"
  8991. },
  8992. {
  8993. "name": "phar-io/manifest",
  8994. "version": "2.0.4",
  8995. "source": {
  8996. "type": "git",
  8997. "url": "https://github.com/phar-io/manifest.git",
  8998. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8999. },
  9000. "dist": {
  9001. "type": "zip",
  9002. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9003. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9004. "shasum": ""
  9005. },
  9006. "require": {
  9007. "ext-dom": "*",
  9008. "ext-libxml": "*",
  9009. "ext-phar": "*",
  9010. "ext-xmlwriter": "*",
  9011. "phar-io/version": "^3.0.1",
  9012. "php": "^7.2 || ^8.0"
  9013. },
  9014. "type": "library",
  9015. "extra": {
  9016. "branch-alias": {
  9017. "dev-master": "2.0.x-dev"
  9018. }
  9019. },
  9020. "autoload": {
  9021. "classmap": [
  9022. "src/"
  9023. ]
  9024. },
  9025. "notification-url": "https://packagist.org/downloads/",
  9026. "license": [
  9027. "BSD-3-Clause"
  9028. ],
  9029. "authors": [
  9030. {
  9031. "name": "Arne Blankerts",
  9032. "email": "arne@blankerts.de",
  9033. "role": "Developer"
  9034. },
  9035. {
  9036. "name": "Sebastian Heuer",
  9037. "email": "sebastian@phpeople.de",
  9038. "role": "Developer"
  9039. },
  9040. {
  9041. "name": "Sebastian Bergmann",
  9042. "email": "sebastian@phpunit.de",
  9043. "role": "Developer"
  9044. }
  9045. ],
  9046. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9047. "support": {
  9048. "issues": "https://github.com/phar-io/manifest/issues",
  9049. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9050. },
  9051. "funding": [
  9052. {
  9053. "url": "https://github.com/theseer",
  9054. "type": "github"
  9055. }
  9056. ],
  9057. "time": "2024-03-03T12:33:53+00:00"
  9058. },
  9059. {
  9060. "name": "phar-io/version",
  9061. "version": "3.2.1",
  9062. "source": {
  9063. "type": "git",
  9064. "url": "https://github.com/phar-io/version.git",
  9065. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9066. },
  9067. "dist": {
  9068. "type": "zip",
  9069. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9070. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9071. "shasum": ""
  9072. },
  9073. "require": {
  9074. "php": "^7.2 || ^8.0"
  9075. },
  9076. "type": "library",
  9077. "autoload": {
  9078. "classmap": [
  9079. "src/"
  9080. ]
  9081. },
  9082. "notification-url": "https://packagist.org/downloads/",
  9083. "license": [
  9084. "BSD-3-Clause"
  9085. ],
  9086. "authors": [
  9087. {
  9088. "name": "Arne Blankerts",
  9089. "email": "arne@blankerts.de",
  9090. "role": "Developer"
  9091. },
  9092. {
  9093. "name": "Sebastian Heuer",
  9094. "email": "sebastian@phpeople.de",
  9095. "role": "Developer"
  9096. },
  9097. {
  9098. "name": "Sebastian Bergmann",
  9099. "email": "sebastian@phpunit.de",
  9100. "role": "Developer"
  9101. }
  9102. ],
  9103. "description": "Library for handling version information and constraints",
  9104. "support": {
  9105. "issues": "https://github.com/phar-io/version/issues",
  9106. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9107. },
  9108. "time": "2022-02-21T01:04:05+00:00"
  9109. },
  9110. {
  9111. "name": "phpstan/phpstan",
  9112. "version": "1.12.12",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/phpstan/phpstan.git",
  9116. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  9121. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  9122. "shasum": ""
  9123. },
  9124. "require": {
  9125. "php": "^7.2|^8.0"
  9126. },
  9127. "conflict": {
  9128. "phpstan/phpstan-shim": "*"
  9129. },
  9130. "bin": [
  9131. "phpstan",
  9132. "phpstan.phar"
  9133. ],
  9134. "type": "library",
  9135. "autoload": {
  9136. "files": [
  9137. "bootstrap.php"
  9138. ]
  9139. },
  9140. "notification-url": "https://packagist.org/downloads/",
  9141. "license": [
  9142. "MIT"
  9143. ],
  9144. "description": "PHPStan - PHP Static Analysis Tool",
  9145. "keywords": [
  9146. "dev",
  9147. "static analysis"
  9148. ],
  9149. "support": {
  9150. "docs": "https://phpstan.org/user-guide/getting-started",
  9151. "forum": "https://github.com/phpstan/phpstan/discussions",
  9152. "issues": "https://github.com/phpstan/phpstan/issues",
  9153. "security": "https://github.com/phpstan/phpstan/security/policy",
  9154. "source": "https://github.com/phpstan/phpstan-src"
  9155. },
  9156. "funding": [
  9157. {
  9158. "url": "https://github.com/ondrejmirtes",
  9159. "type": "github"
  9160. },
  9161. {
  9162. "url": "https://github.com/phpstan",
  9163. "type": "github"
  9164. }
  9165. ],
  9166. "time": "2024-11-28T22:13:23+00:00"
  9167. },
  9168. {
  9169. "name": "phpunit/php-code-coverage",
  9170. "version": "10.1.16",
  9171. "source": {
  9172. "type": "git",
  9173. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9174. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9175. },
  9176. "dist": {
  9177. "type": "zip",
  9178. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9179. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9180. "shasum": ""
  9181. },
  9182. "require": {
  9183. "ext-dom": "*",
  9184. "ext-libxml": "*",
  9185. "ext-xmlwriter": "*",
  9186. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9187. "php": ">=8.1",
  9188. "phpunit/php-file-iterator": "^4.1.0",
  9189. "phpunit/php-text-template": "^3.0.1",
  9190. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9191. "sebastian/complexity": "^3.2.0",
  9192. "sebastian/environment": "^6.1.0",
  9193. "sebastian/lines-of-code": "^2.0.2",
  9194. "sebastian/version": "^4.0.1",
  9195. "theseer/tokenizer": "^1.2.3"
  9196. },
  9197. "require-dev": {
  9198. "phpunit/phpunit": "^10.1"
  9199. },
  9200. "suggest": {
  9201. "ext-pcov": "PHP extension that provides line coverage",
  9202. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9203. },
  9204. "type": "library",
  9205. "extra": {
  9206. "branch-alias": {
  9207. "dev-main": "10.1.x-dev"
  9208. }
  9209. },
  9210. "autoload": {
  9211. "classmap": [
  9212. "src/"
  9213. ]
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "BSD-3-Clause"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Sebastian Bergmann",
  9222. "email": "sebastian@phpunit.de",
  9223. "role": "lead"
  9224. }
  9225. ],
  9226. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9227. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9228. "keywords": [
  9229. "coverage",
  9230. "testing",
  9231. "xunit"
  9232. ],
  9233. "support": {
  9234. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9235. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9236. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9237. },
  9238. "funding": [
  9239. {
  9240. "url": "https://github.com/sebastianbergmann",
  9241. "type": "github"
  9242. }
  9243. ],
  9244. "time": "2024-08-22T04:31:57+00:00"
  9245. },
  9246. {
  9247. "name": "phpunit/php-file-iterator",
  9248. "version": "4.1.0",
  9249. "source": {
  9250. "type": "git",
  9251. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9252. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9253. },
  9254. "dist": {
  9255. "type": "zip",
  9256. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9257. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9258. "shasum": ""
  9259. },
  9260. "require": {
  9261. "php": ">=8.1"
  9262. },
  9263. "require-dev": {
  9264. "phpunit/phpunit": "^10.0"
  9265. },
  9266. "type": "library",
  9267. "extra": {
  9268. "branch-alias": {
  9269. "dev-main": "4.0-dev"
  9270. }
  9271. },
  9272. "autoload": {
  9273. "classmap": [
  9274. "src/"
  9275. ]
  9276. },
  9277. "notification-url": "https://packagist.org/downloads/",
  9278. "license": [
  9279. "BSD-3-Clause"
  9280. ],
  9281. "authors": [
  9282. {
  9283. "name": "Sebastian Bergmann",
  9284. "email": "sebastian@phpunit.de",
  9285. "role": "lead"
  9286. }
  9287. ],
  9288. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9289. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9290. "keywords": [
  9291. "filesystem",
  9292. "iterator"
  9293. ],
  9294. "support": {
  9295. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9296. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9297. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9298. },
  9299. "funding": [
  9300. {
  9301. "url": "https://github.com/sebastianbergmann",
  9302. "type": "github"
  9303. }
  9304. ],
  9305. "time": "2023-08-31T06:24:48+00:00"
  9306. },
  9307. {
  9308. "name": "phpunit/php-invoker",
  9309. "version": "4.0.0",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9313. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9318. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9319. "shasum": ""
  9320. },
  9321. "require": {
  9322. "php": ">=8.1"
  9323. },
  9324. "require-dev": {
  9325. "ext-pcntl": "*",
  9326. "phpunit/phpunit": "^10.0"
  9327. },
  9328. "suggest": {
  9329. "ext-pcntl": "*"
  9330. },
  9331. "type": "library",
  9332. "extra": {
  9333. "branch-alias": {
  9334. "dev-main": "4.0-dev"
  9335. }
  9336. },
  9337. "autoload": {
  9338. "classmap": [
  9339. "src/"
  9340. ]
  9341. },
  9342. "notification-url": "https://packagist.org/downloads/",
  9343. "license": [
  9344. "BSD-3-Clause"
  9345. ],
  9346. "authors": [
  9347. {
  9348. "name": "Sebastian Bergmann",
  9349. "email": "sebastian@phpunit.de",
  9350. "role": "lead"
  9351. }
  9352. ],
  9353. "description": "Invoke callables with a timeout",
  9354. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9355. "keywords": [
  9356. "process"
  9357. ],
  9358. "support": {
  9359. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9360. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9361. },
  9362. "funding": [
  9363. {
  9364. "url": "https://github.com/sebastianbergmann",
  9365. "type": "github"
  9366. }
  9367. ],
  9368. "time": "2023-02-03T06:56:09+00:00"
  9369. },
  9370. {
  9371. "name": "phpunit/php-text-template",
  9372. "version": "3.0.1",
  9373. "source": {
  9374. "type": "git",
  9375. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9376. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9377. },
  9378. "dist": {
  9379. "type": "zip",
  9380. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9381. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9382. "shasum": ""
  9383. },
  9384. "require": {
  9385. "php": ">=8.1"
  9386. },
  9387. "require-dev": {
  9388. "phpunit/phpunit": "^10.0"
  9389. },
  9390. "type": "library",
  9391. "extra": {
  9392. "branch-alias": {
  9393. "dev-main": "3.0-dev"
  9394. }
  9395. },
  9396. "autoload": {
  9397. "classmap": [
  9398. "src/"
  9399. ]
  9400. },
  9401. "notification-url": "https://packagist.org/downloads/",
  9402. "license": [
  9403. "BSD-3-Clause"
  9404. ],
  9405. "authors": [
  9406. {
  9407. "name": "Sebastian Bergmann",
  9408. "email": "sebastian@phpunit.de",
  9409. "role": "lead"
  9410. }
  9411. ],
  9412. "description": "Simple template engine.",
  9413. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9414. "keywords": [
  9415. "template"
  9416. ],
  9417. "support": {
  9418. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9419. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9420. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9421. },
  9422. "funding": [
  9423. {
  9424. "url": "https://github.com/sebastianbergmann",
  9425. "type": "github"
  9426. }
  9427. ],
  9428. "time": "2023-08-31T14:07:24+00:00"
  9429. },
  9430. {
  9431. "name": "phpunit/php-timer",
  9432. "version": "6.0.0",
  9433. "source": {
  9434. "type": "git",
  9435. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9436. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9437. },
  9438. "dist": {
  9439. "type": "zip",
  9440. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9441. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9442. "shasum": ""
  9443. },
  9444. "require": {
  9445. "php": ">=8.1"
  9446. },
  9447. "require-dev": {
  9448. "phpunit/phpunit": "^10.0"
  9449. },
  9450. "type": "library",
  9451. "extra": {
  9452. "branch-alias": {
  9453. "dev-main": "6.0-dev"
  9454. }
  9455. },
  9456. "autoload": {
  9457. "classmap": [
  9458. "src/"
  9459. ]
  9460. },
  9461. "notification-url": "https://packagist.org/downloads/",
  9462. "license": [
  9463. "BSD-3-Clause"
  9464. ],
  9465. "authors": [
  9466. {
  9467. "name": "Sebastian Bergmann",
  9468. "email": "sebastian@phpunit.de",
  9469. "role": "lead"
  9470. }
  9471. ],
  9472. "description": "Utility class for timing",
  9473. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9474. "keywords": [
  9475. "timer"
  9476. ],
  9477. "support": {
  9478. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9479. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9480. },
  9481. "funding": [
  9482. {
  9483. "url": "https://github.com/sebastianbergmann",
  9484. "type": "github"
  9485. }
  9486. ],
  9487. "time": "2023-02-03T06:57:52+00:00"
  9488. },
  9489. {
  9490. "name": "phpunit/phpunit",
  9491. "version": "10.5.38",
  9492. "source": {
  9493. "type": "git",
  9494. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9495. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  9496. },
  9497. "dist": {
  9498. "type": "zip",
  9499. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9500. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9501. "shasum": ""
  9502. },
  9503. "require": {
  9504. "ext-dom": "*",
  9505. "ext-json": "*",
  9506. "ext-libxml": "*",
  9507. "ext-mbstring": "*",
  9508. "ext-xml": "*",
  9509. "ext-xmlwriter": "*",
  9510. "myclabs/deep-copy": "^1.12.0",
  9511. "phar-io/manifest": "^2.0.4",
  9512. "phar-io/version": "^3.2.1",
  9513. "php": ">=8.1",
  9514. "phpunit/php-code-coverage": "^10.1.16",
  9515. "phpunit/php-file-iterator": "^4.1.0",
  9516. "phpunit/php-invoker": "^4.0.0",
  9517. "phpunit/php-text-template": "^3.0.1",
  9518. "phpunit/php-timer": "^6.0.0",
  9519. "sebastian/cli-parser": "^2.0.1",
  9520. "sebastian/code-unit": "^2.0.0",
  9521. "sebastian/comparator": "^5.0.3",
  9522. "sebastian/diff": "^5.1.1",
  9523. "sebastian/environment": "^6.1.0",
  9524. "sebastian/exporter": "^5.1.2",
  9525. "sebastian/global-state": "^6.0.2",
  9526. "sebastian/object-enumerator": "^5.0.0",
  9527. "sebastian/recursion-context": "^5.0.0",
  9528. "sebastian/type": "^4.0.0",
  9529. "sebastian/version": "^4.0.1"
  9530. },
  9531. "suggest": {
  9532. "ext-soap": "To be able to generate mocks based on WSDL files"
  9533. },
  9534. "bin": [
  9535. "phpunit"
  9536. ],
  9537. "type": "library",
  9538. "extra": {
  9539. "branch-alias": {
  9540. "dev-main": "10.5-dev"
  9541. }
  9542. },
  9543. "autoload": {
  9544. "files": [
  9545. "src/Framework/Assert/Functions.php"
  9546. ],
  9547. "classmap": [
  9548. "src/"
  9549. ]
  9550. },
  9551. "notification-url": "https://packagist.org/downloads/",
  9552. "license": [
  9553. "BSD-3-Clause"
  9554. ],
  9555. "authors": [
  9556. {
  9557. "name": "Sebastian Bergmann",
  9558. "email": "sebastian@phpunit.de",
  9559. "role": "lead"
  9560. }
  9561. ],
  9562. "description": "The PHP Unit Testing framework.",
  9563. "homepage": "https://phpunit.de/",
  9564. "keywords": [
  9565. "phpunit",
  9566. "testing",
  9567. "xunit"
  9568. ],
  9569. "support": {
  9570. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9571. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9572. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9573. },
  9574. "funding": [
  9575. {
  9576. "url": "https://phpunit.de/sponsors.html",
  9577. "type": "custom"
  9578. },
  9579. {
  9580. "url": "https://github.com/sebastianbergmann",
  9581. "type": "github"
  9582. },
  9583. {
  9584. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9585. "type": "tidelift"
  9586. }
  9587. ],
  9588. "time": "2024-10-28T13:06:21+00:00"
  9589. },
  9590. {
  9591. "name": "react/cache",
  9592. "version": "v1.2.0",
  9593. "source": {
  9594. "type": "git",
  9595. "url": "https://github.com/reactphp/cache.git",
  9596. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9597. },
  9598. "dist": {
  9599. "type": "zip",
  9600. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9601. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9602. "shasum": ""
  9603. },
  9604. "require": {
  9605. "php": ">=5.3.0",
  9606. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9607. },
  9608. "require-dev": {
  9609. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9610. },
  9611. "type": "library",
  9612. "autoload": {
  9613. "psr-4": {
  9614. "React\\Cache\\": "src/"
  9615. }
  9616. },
  9617. "notification-url": "https://packagist.org/downloads/",
  9618. "license": [
  9619. "MIT"
  9620. ],
  9621. "authors": [
  9622. {
  9623. "name": "Christian Lück",
  9624. "email": "christian@clue.engineering",
  9625. "homepage": "https://clue.engineering/"
  9626. },
  9627. {
  9628. "name": "Cees-Jan Kiewiet",
  9629. "email": "reactphp@ceesjankiewiet.nl",
  9630. "homepage": "https://wyrihaximus.net/"
  9631. },
  9632. {
  9633. "name": "Jan Sorgalla",
  9634. "email": "jsorgalla@gmail.com",
  9635. "homepage": "https://sorgalla.com/"
  9636. },
  9637. {
  9638. "name": "Chris Boden",
  9639. "email": "cboden@gmail.com",
  9640. "homepage": "https://cboden.dev/"
  9641. }
  9642. ],
  9643. "description": "Async, Promise-based cache interface for ReactPHP",
  9644. "keywords": [
  9645. "cache",
  9646. "caching",
  9647. "promise",
  9648. "reactphp"
  9649. ],
  9650. "support": {
  9651. "issues": "https://github.com/reactphp/cache/issues",
  9652. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9653. },
  9654. "funding": [
  9655. {
  9656. "url": "https://opencollective.com/reactphp",
  9657. "type": "open_collective"
  9658. }
  9659. ],
  9660. "time": "2022-11-30T15:59:55+00:00"
  9661. },
  9662. {
  9663. "name": "react/child-process",
  9664. "version": "v0.6.5",
  9665. "source": {
  9666. "type": "git",
  9667. "url": "https://github.com/reactphp/child-process.git",
  9668. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9669. },
  9670. "dist": {
  9671. "type": "zip",
  9672. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9673. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9674. "shasum": ""
  9675. },
  9676. "require": {
  9677. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9678. "php": ">=5.3.0",
  9679. "react/event-loop": "^1.2",
  9680. "react/stream": "^1.2"
  9681. },
  9682. "require-dev": {
  9683. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9684. "react/socket": "^1.8",
  9685. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9686. },
  9687. "type": "library",
  9688. "autoload": {
  9689. "psr-4": {
  9690. "React\\ChildProcess\\": "src"
  9691. }
  9692. },
  9693. "notification-url": "https://packagist.org/downloads/",
  9694. "license": [
  9695. "MIT"
  9696. ],
  9697. "authors": [
  9698. {
  9699. "name": "Christian Lück",
  9700. "email": "christian@clue.engineering",
  9701. "homepage": "https://clue.engineering/"
  9702. },
  9703. {
  9704. "name": "Cees-Jan Kiewiet",
  9705. "email": "reactphp@ceesjankiewiet.nl",
  9706. "homepage": "https://wyrihaximus.net/"
  9707. },
  9708. {
  9709. "name": "Jan Sorgalla",
  9710. "email": "jsorgalla@gmail.com",
  9711. "homepage": "https://sorgalla.com/"
  9712. },
  9713. {
  9714. "name": "Chris Boden",
  9715. "email": "cboden@gmail.com",
  9716. "homepage": "https://cboden.dev/"
  9717. }
  9718. ],
  9719. "description": "Event-driven library for executing child processes with ReactPHP.",
  9720. "keywords": [
  9721. "event-driven",
  9722. "process",
  9723. "reactphp"
  9724. ],
  9725. "support": {
  9726. "issues": "https://github.com/reactphp/child-process/issues",
  9727. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9728. },
  9729. "funding": [
  9730. {
  9731. "url": "https://github.com/WyriHaximus",
  9732. "type": "github"
  9733. },
  9734. {
  9735. "url": "https://github.com/clue",
  9736. "type": "github"
  9737. }
  9738. ],
  9739. "time": "2022-09-16T13:41:56+00:00"
  9740. },
  9741. {
  9742. "name": "react/dns",
  9743. "version": "v1.13.0",
  9744. "source": {
  9745. "type": "git",
  9746. "url": "https://github.com/reactphp/dns.git",
  9747. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9748. },
  9749. "dist": {
  9750. "type": "zip",
  9751. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9752. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9753. "shasum": ""
  9754. },
  9755. "require": {
  9756. "php": ">=5.3.0",
  9757. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9758. "react/event-loop": "^1.2",
  9759. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9760. },
  9761. "require-dev": {
  9762. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9763. "react/async": "^4.3 || ^3 || ^2",
  9764. "react/promise-timer": "^1.11"
  9765. },
  9766. "type": "library",
  9767. "autoload": {
  9768. "psr-4": {
  9769. "React\\Dns\\": "src/"
  9770. }
  9771. },
  9772. "notification-url": "https://packagist.org/downloads/",
  9773. "license": [
  9774. "MIT"
  9775. ],
  9776. "authors": [
  9777. {
  9778. "name": "Christian Lück",
  9779. "email": "christian@clue.engineering",
  9780. "homepage": "https://clue.engineering/"
  9781. },
  9782. {
  9783. "name": "Cees-Jan Kiewiet",
  9784. "email": "reactphp@ceesjankiewiet.nl",
  9785. "homepage": "https://wyrihaximus.net/"
  9786. },
  9787. {
  9788. "name": "Jan Sorgalla",
  9789. "email": "jsorgalla@gmail.com",
  9790. "homepage": "https://sorgalla.com/"
  9791. },
  9792. {
  9793. "name": "Chris Boden",
  9794. "email": "cboden@gmail.com",
  9795. "homepage": "https://cboden.dev/"
  9796. }
  9797. ],
  9798. "description": "Async DNS resolver for ReactPHP",
  9799. "keywords": [
  9800. "async",
  9801. "dns",
  9802. "dns-resolver",
  9803. "reactphp"
  9804. ],
  9805. "support": {
  9806. "issues": "https://github.com/reactphp/dns/issues",
  9807. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9808. },
  9809. "funding": [
  9810. {
  9811. "url": "https://opencollective.com/reactphp",
  9812. "type": "open_collective"
  9813. }
  9814. ],
  9815. "time": "2024-06-13T14:18:03+00:00"
  9816. },
  9817. {
  9818. "name": "react/event-loop",
  9819. "version": "v1.5.0",
  9820. "source": {
  9821. "type": "git",
  9822. "url": "https://github.com/reactphp/event-loop.git",
  9823. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9824. },
  9825. "dist": {
  9826. "type": "zip",
  9827. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9828. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9829. "shasum": ""
  9830. },
  9831. "require": {
  9832. "php": ">=5.3.0"
  9833. },
  9834. "require-dev": {
  9835. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9836. },
  9837. "suggest": {
  9838. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9839. },
  9840. "type": "library",
  9841. "autoload": {
  9842. "psr-4": {
  9843. "React\\EventLoop\\": "src/"
  9844. }
  9845. },
  9846. "notification-url": "https://packagist.org/downloads/",
  9847. "license": [
  9848. "MIT"
  9849. ],
  9850. "authors": [
  9851. {
  9852. "name": "Christian Lück",
  9853. "email": "christian@clue.engineering",
  9854. "homepage": "https://clue.engineering/"
  9855. },
  9856. {
  9857. "name": "Cees-Jan Kiewiet",
  9858. "email": "reactphp@ceesjankiewiet.nl",
  9859. "homepage": "https://wyrihaximus.net/"
  9860. },
  9861. {
  9862. "name": "Jan Sorgalla",
  9863. "email": "jsorgalla@gmail.com",
  9864. "homepage": "https://sorgalla.com/"
  9865. },
  9866. {
  9867. "name": "Chris Boden",
  9868. "email": "cboden@gmail.com",
  9869. "homepage": "https://cboden.dev/"
  9870. }
  9871. ],
  9872. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9873. "keywords": [
  9874. "asynchronous",
  9875. "event-loop"
  9876. ],
  9877. "support": {
  9878. "issues": "https://github.com/reactphp/event-loop/issues",
  9879. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9880. },
  9881. "funding": [
  9882. {
  9883. "url": "https://opencollective.com/reactphp",
  9884. "type": "open_collective"
  9885. }
  9886. ],
  9887. "time": "2023-11-13T13:48:05+00:00"
  9888. },
  9889. {
  9890. "name": "react/promise",
  9891. "version": "v3.2.0",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/reactphp/promise.git",
  9895. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9900. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9901. "shasum": ""
  9902. },
  9903. "require": {
  9904. "php": ">=7.1.0"
  9905. },
  9906. "require-dev": {
  9907. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9908. "phpunit/phpunit": "^9.6 || ^7.5"
  9909. },
  9910. "type": "library",
  9911. "autoload": {
  9912. "files": [
  9913. "src/functions_include.php"
  9914. ],
  9915. "psr-4": {
  9916. "React\\Promise\\": "src/"
  9917. }
  9918. },
  9919. "notification-url": "https://packagist.org/downloads/",
  9920. "license": [
  9921. "MIT"
  9922. ],
  9923. "authors": [
  9924. {
  9925. "name": "Jan Sorgalla",
  9926. "email": "jsorgalla@gmail.com",
  9927. "homepage": "https://sorgalla.com/"
  9928. },
  9929. {
  9930. "name": "Christian Lück",
  9931. "email": "christian@clue.engineering",
  9932. "homepage": "https://clue.engineering/"
  9933. },
  9934. {
  9935. "name": "Cees-Jan Kiewiet",
  9936. "email": "reactphp@ceesjankiewiet.nl",
  9937. "homepage": "https://wyrihaximus.net/"
  9938. },
  9939. {
  9940. "name": "Chris Boden",
  9941. "email": "cboden@gmail.com",
  9942. "homepage": "https://cboden.dev/"
  9943. }
  9944. ],
  9945. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9946. "keywords": [
  9947. "promise",
  9948. "promises"
  9949. ],
  9950. "support": {
  9951. "issues": "https://github.com/reactphp/promise/issues",
  9952. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9953. },
  9954. "funding": [
  9955. {
  9956. "url": "https://opencollective.com/reactphp",
  9957. "type": "open_collective"
  9958. }
  9959. ],
  9960. "time": "2024-05-24T10:39:05+00:00"
  9961. },
  9962. {
  9963. "name": "react/socket",
  9964. "version": "v1.16.0",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/reactphp/socket.git",
  9968. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9973. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9974. "shasum": ""
  9975. },
  9976. "require": {
  9977. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9978. "php": ">=5.3.0",
  9979. "react/dns": "^1.13",
  9980. "react/event-loop": "^1.2",
  9981. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9982. "react/stream": "^1.4"
  9983. },
  9984. "require-dev": {
  9985. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9986. "react/async": "^4.3 || ^3.3 || ^2",
  9987. "react/promise-stream": "^1.4",
  9988. "react/promise-timer": "^1.11"
  9989. },
  9990. "type": "library",
  9991. "autoload": {
  9992. "psr-4": {
  9993. "React\\Socket\\": "src/"
  9994. }
  9995. },
  9996. "notification-url": "https://packagist.org/downloads/",
  9997. "license": [
  9998. "MIT"
  9999. ],
  10000. "authors": [
  10001. {
  10002. "name": "Christian Lück",
  10003. "email": "christian@clue.engineering",
  10004. "homepage": "https://clue.engineering/"
  10005. },
  10006. {
  10007. "name": "Cees-Jan Kiewiet",
  10008. "email": "reactphp@ceesjankiewiet.nl",
  10009. "homepage": "https://wyrihaximus.net/"
  10010. },
  10011. {
  10012. "name": "Jan Sorgalla",
  10013. "email": "jsorgalla@gmail.com",
  10014. "homepage": "https://sorgalla.com/"
  10015. },
  10016. {
  10017. "name": "Chris Boden",
  10018. "email": "cboden@gmail.com",
  10019. "homepage": "https://cboden.dev/"
  10020. }
  10021. ],
  10022. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10023. "keywords": [
  10024. "Connection",
  10025. "Socket",
  10026. "async",
  10027. "reactphp",
  10028. "stream"
  10029. ],
  10030. "support": {
  10031. "issues": "https://github.com/reactphp/socket/issues",
  10032. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  10033. },
  10034. "funding": [
  10035. {
  10036. "url": "https://opencollective.com/reactphp",
  10037. "type": "open_collective"
  10038. }
  10039. ],
  10040. "time": "2024-07-26T10:38:09+00:00"
  10041. },
  10042. {
  10043. "name": "react/stream",
  10044. "version": "v1.4.0",
  10045. "source": {
  10046. "type": "git",
  10047. "url": "https://github.com/reactphp/stream.git",
  10048. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10049. },
  10050. "dist": {
  10051. "type": "zip",
  10052. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10053. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10054. "shasum": ""
  10055. },
  10056. "require": {
  10057. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10058. "php": ">=5.3.8",
  10059. "react/event-loop": "^1.2"
  10060. },
  10061. "require-dev": {
  10062. "clue/stream-filter": "~1.2",
  10063. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10064. },
  10065. "type": "library",
  10066. "autoload": {
  10067. "psr-4": {
  10068. "React\\Stream\\": "src/"
  10069. }
  10070. },
  10071. "notification-url": "https://packagist.org/downloads/",
  10072. "license": [
  10073. "MIT"
  10074. ],
  10075. "authors": [
  10076. {
  10077. "name": "Christian Lück",
  10078. "email": "christian@clue.engineering",
  10079. "homepage": "https://clue.engineering/"
  10080. },
  10081. {
  10082. "name": "Cees-Jan Kiewiet",
  10083. "email": "reactphp@ceesjankiewiet.nl",
  10084. "homepage": "https://wyrihaximus.net/"
  10085. },
  10086. {
  10087. "name": "Jan Sorgalla",
  10088. "email": "jsorgalla@gmail.com",
  10089. "homepage": "https://sorgalla.com/"
  10090. },
  10091. {
  10092. "name": "Chris Boden",
  10093. "email": "cboden@gmail.com",
  10094. "homepage": "https://cboden.dev/"
  10095. }
  10096. ],
  10097. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10098. "keywords": [
  10099. "event-driven",
  10100. "io",
  10101. "non-blocking",
  10102. "pipe",
  10103. "reactphp",
  10104. "readable",
  10105. "stream",
  10106. "writable"
  10107. ],
  10108. "support": {
  10109. "issues": "https://github.com/reactphp/stream/issues",
  10110. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10111. },
  10112. "funding": [
  10113. {
  10114. "url": "https://opencollective.com/reactphp",
  10115. "type": "open_collective"
  10116. }
  10117. ],
  10118. "time": "2024-06-11T12:45:25+00:00"
  10119. },
  10120. {
  10121. "name": "sebastian/cli-parser",
  10122. "version": "2.0.1",
  10123. "source": {
  10124. "type": "git",
  10125. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10126. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10127. },
  10128. "dist": {
  10129. "type": "zip",
  10130. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10131. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10132. "shasum": ""
  10133. },
  10134. "require": {
  10135. "php": ">=8.1"
  10136. },
  10137. "require-dev": {
  10138. "phpunit/phpunit": "^10.0"
  10139. },
  10140. "type": "library",
  10141. "extra": {
  10142. "branch-alias": {
  10143. "dev-main": "2.0-dev"
  10144. }
  10145. },
  10146. "autoload": {
  10147. "classmap": [
  10148. "src/"
  10149. ]
  10150. },
  10151. "notification-url": "https://packagist.org/downloads/",
  10152. "license": [
  10153. "BSD-3-Clause"
  10154. ],
  10155. "authors": [
  10156. {
  10157. "name": "Sebastian Bergmann",
  10158. "email": "sebastian@phpunit.de",
  10159. "role": "lead"
  10160. }
  10161. ],
  10162. "description": "Library for parsing CLI options",
  10163. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10164. "support": {
  10165. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10166. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10167. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10168. },
  10169. "funding": [
  10170. {
  10171. "url": "https://github.com/sebastianbergmann",
  10172. "type": "github"
  10173. }
  10174. ],
  10175. "time": "2024-03-02T07:12:49+00:00"
  10176. },
  10177. {
  10178. "name": "sebastian/code-unit",
  10179. "version": "2.0.0",
  10180. "source": {
  10181. "type": "git",
  10182. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10183. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10184. },
  10185. "dist": {
  10186. "type": "zip",
  10187. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10188. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10189. "shasum": ""
  10190. },
  10191. "require": {
  10192. "php": ">=8.1"
  10193. },
  10194. "require-dev": {
  10195. "phpunit/phpunit": "^10.0"
  10196. },
  10197. "type": "library",
  10198. "extra": {
  10199. "branch-alias": {
  10200. "dev-main": "2.0-dev"
  10201. }
  10202. },
  10203. "autoload": {
  10204. "classmap": [
  10205. "src/"
  10206. ]
  10207. },
  10208. "notification-url": "https://packagist.org/downloads/",
  10209. "license": [
  10210. "BSD-3-Clause"
  10211. ],
  10212. "authors": [
  10213. {
  10214. "name": "Sebastian Bergmann",
  10215. "email": "sebastian@phpunit.de",
  10216. "role": "lead"
  10217. }
  10218. ],
  10219. "description": "Collection of value objects that represent the PHP code units",
  10220. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10221. "support": {
  10222. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10223. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10224. },
  10225. "funding": [
  10226. {
  10227. "url": "https://github.com/sebastianbergmann",
  10228. "type": "github"
  10229. }
  10230. ],
  10231. "time": "2023-02-03T06:58:43+00:00"
  10232. },
  10233. {
  10234. "name": "sebastian/code-unit-reverse-lookup",
  10235. "version": "3.0.0",
  10236. "source": {
  10237. "type": "git",
  10238. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10239. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10240. },
  10241. "dist": {
  10242. "type": "zip",
  10243. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10244. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10245. "shasum": ""
  10246. },
  10247. "require": {
  10248. "php": ">=8.1"
  10249. },
  10250. "require-dev": {
  10251. "phpunit/phpunit": "^10.0"
  10252. },
  10253. "type": "library",
  10254. "extra": {
  10255. "branch-alias": {
  10256. "dev-main": "3.0-dev"
  10257. }
  10258. },
  10259. "autoload": {
  10260. "classmap": [
  10261. "src/"
  10262. ]
  10263. },
  10264. "notification-url": "https://packagist.org/downloads/",
  10265. "license": [
  10266. "BSD-3-Clause"
  10267. ],
  10268. "authors": [
  10269. {
  10270. "name": "Sebastian Bergmann",
  10271. "email": "sebastian@phpunit.de"
  10272. }
  10273. ],
  10274. "description": "Looks up which function or method a line of code belongs to",
  10275. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10276. "support": {
  10277. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10278. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10279. },
  10280. "funding": [
  10281. {
  10282. "url": "https://github.com/sebastianbergmann",
  10283. "type": "github"
  10284. }
  10285. ],
  10286. "time": "2023-02-03T06:59:15+00:00"
  10287. },
  10288. {
  10289. "name": "sebastian/comparator",
  10290. "version": "5.0.3",
  10291. "source": {
  10292. "type": "git",
  10293. "url": "https://github.com/sebastianbergmann/comparator.git",
  10294. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10295. },
  10296. "dist": {
  10297. "type": "zip",
  10298. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10299. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10300. "shasum": ""
  10301. },
  10302. "require": {
  10303. "ext-dom": "*",
  10304. "ext-mbstring": "*",
  10305. "php": ">=8.1",
  10306. "sebastian/diff": "^5.0",
  10307. "sebastian/exporter": "^5.0"
  10308. },
  10309. "require-dev": {
  10310. "phpunit/phpunit": "^10.5"
  10311. },
  10312. "type": "library",
  10313. "extra": {
  10314. "branch-alias": {
  10315. "dev-main": "5.0-dev"
  10316. }
  10317. },
  10318. "autoload": {
  10319. "classmap": [
  10320. "src/"
  10321. ]
  10322. },
  10323. "notification-url": "https://packagist.org/downloads/",
  10324. "license": [
  10325. "BSD-3-Clause"
  10326. ],
  10327. "authors": [
  10328. {
  10329. "name": "Sebastian Bergmann",
  10330. "email": "sebastian@phpunit.de"
  10331. },
  10332. {
  10333. "name": "Jeff Welch",
  10334. "email": "whatthejeff@gmail.com"
  10335. },
  10336. {
  10337. "name": "Volker Dusch",
  10338. "email": "github@wallbash.com"
  10339. },
  10340. {
  10341. "name": "Bernhard Schussek",
  10342. "email": "bschussek@2bepublished.at"
  10343. }
  10344. ],
  10345. "description": "Provides the functionality to compare PHP values for equality",
  10346. "homepage": "https://github.com/sebastianbergmann/comparator",
  10347. "keywords": [
  10348. "comparator",
  10349. "compare",
  10350. "equality"
  10351. ],
  10352. "support": {
  10353. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10354. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10355. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10356. },
  10357. "funding": [
  10358. {
  10359. "url": "https://github.com/sebastianbergmann",
  10360. "type": "github"
  10361. }
  10362. ],
  10363. "time": "2024-10-18T14:56:07+00:00"
  10364. },
  10365. {
  10366. "name": "sebastian/complexity",
  10367. "version": "3.2.0",
  10368. "source": {
  10369. "type": "git",
  10370. "url": "https://github.com/sebastianbergmann/complexity.git",
  10371. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10372. },
  10373. "dist": {
  10374. "type": "zip",
  10375. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10376. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10377. "shasum": ""
  10378. },
  10379. "require": {
  10380. "nikic/php-parser": "^4.18 || ^5.0",
  10381. "php": ">=8.1"
  10382. },
  10383. "require-dev": {
  10384. "phpunit/phpunit": "^10.0"
  10385. },
  10386. "type": "library",
  10387. "extra": {
  10388. "branch-alias": {
  10389. "dev-main": "3.2-dev"
  10390. }
  10391. },
  10392. "autoload": {
  10393. "classmap": [
  10394. "src/"
  10395. ]
  10396. },
  10397. "notification-url": "https://packagist.org/downloads/",
  10398. "license": [
  10399. "BSD-3-Clause"
  10400. ],
  10401. "authors": [
  10402. {
  10403. "name": "Sebastian Bergmann",
  10404. "email": "sebastian@phpunit.de",
  10405. "role": "lead"
  10406. }
  10407. ],
  10408. "description": "Library for calculating the complexity of PHP code units",
  10409. "homepage": "https://github.com/sebastianbergmann/complexity",
  10410. "support": {
  10411. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10412. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10413. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10414. },
  10415. "funding": [
  10416. {
  10417. "url": "https://github.com/sebastianbergmann",
  10418. "type": "github"
  10419. }
  10420. ],
  10421. "time": "2023-12-21T08:37:17+00:00"
  10422. },
  10423. {
  10424. "name": "sebastian/diff",
  10425. "version": "5.1.1",
  10426. "source": {
  10427. "type": "git",
  10428. "url": "https://github.com/sebastianbergmann/diff.git",
  10429. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10430. },
  10431. "dist": {
  10432. "type": "zip",
  10433. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10434. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10435. "shasum": ""
  10436. },
  10437. "require": {
  10438. "php": ">=8.1"
  10439. },
  10440. "require-dev": {
  10441. "phpunit/phpunit": "^10.0",
  10442. "symfony/process": "^6.4"
  10443. },
  10444. "type": "library",
  10445. "extra": {
  10446. "branch-alias": {
  10447. "dev-main": "5.1-dev"
  10448. }
  10449. },
  10450. "autoload": {
  10451. "classmap": [
  10452. "src/"
  10453. ]
  10454. },
  10455. "notification-url": "https://packagist.org/downloads/",
  10456. "license": [
  10457. "BSD-3-Clause"
  10458. ],
  10459. "authors": [
  10460. {
  10461. "name": "Sebastian Bergmann",
  10462. "email": "sebastian@phpunit.de"
  10463. },
  10464. {
  10465. "name": "Kore Nordmann",
  10466. "email": "mail@kore-nordmann.de"
  10467. }
  10468. ],
  10469. "description": "Diff implementation",
  10470. "homepage": "https://github.com/sebastianbergmann/diff",
  10471. "keywords": [
  10472. "diff",
  10473. "udiff",
  10474. "unidiff",
  10475. "unified diff"
  10476. ],
  10477. "support": {
  10478. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10479. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10480. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://github.com/sebastianbergmann",
  10485. "type": "github"
  10486. }
  10487. ],
  10488. "time": "2024-03-02T07:15:17+00:00"
  10489. },
  10490. {
  10491. "name": "sebastian/environment",
  10492. "version": "6.1.0",
  10493. "source": {
  10494. "type": "git",
  10495. "url": "https://github.com/sebastianbergmann/environment.git",
  10496. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10497. },
  10498. "dist": {
  10499. "type": "zip",
  10500. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10501. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10502. "shasum": ""
  10503. },
  10504. "require": {
  10505. "php": ">=8.1"
  10506. },
  10507. "require-dev": {
  10508. "phpunit/phpunit": "^10.0"
  10509. },
  10510. "suggest": {
  10511. "ext-posix": "*"
  10512. },
  10513. "type": "library",
  10514. "extra": {
  10515. "branch-alias": {
  10516. "dev-main": "6.1-dev"
  10517. }
  10518. },
  10519. "autoload": {
  10520. "classmap": [
  10521. "src/"
  10522. ]
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "BSD-3-Clause"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "Sebastian Bergmann",
  10531. "email": "sebastian@phpunit.de"
  10532. }
  10533. ],
  10534. "description": "Provides functionality to handle HHVM/PHP environments",
  10535. "homepage": "https://github.com/sebastianbergmann/environment",
  10536. "keywords": [
  10537. "Xdebug",
  10538. "environment",
  10539. "hhvm"
  10540. ],
  10541. "support": {
  10542. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10543. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10544. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10545. },
  10546. "funding": [
  10547. {
  10548. "url": "https://github.com/sebastianbergmann",
  10549. "type": "github"
  10550. }
  10551. ],
  10552. "time": "2024-03-23T08:47:14+00:00"
  10553. },
  10554. {
  10555. "name": "sebastian/exporter",
  10556. "version": "5.1.2",
  10557. "source": {
  10558. "type": "git",
  10559. "url": "https://github.com/sebastianbergmann/exporter.git",
  10560. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10561. },
  10562. "dist": {
  10563. "type": "zip",
  10564. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10565. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10566. "shasum": ""
  10567. },
  10568. "require": {
  10569. "ext-mbstring": "*",
  10570. "php": ">=8.1",
  10571. "sebastian/recursion-context": "^5.0"
  10572. },
  10573. "require-dev": {
  10574. "phpunit/phpunit": "^10.0"
  10575. },
  10576. "type": "library",
  10577. "extra": {
  10578. "branch-alias": {
  10579. "dev-main": "5.1-dev"
  10580. }
  10581. },
  10582. "autoload": {
  10583. "classmap": [
  10584. "src/"
  10585. ]
  10586. },
  10587. "notification-url": "https://packagist.org/downloads/",
  10588. "license": [
  10589. "BSD-3-Clause"
  10590. ],
  10591. "authors": [
  10592. {
  10593. "name": "Sebastian Bergmann",
  10594. "email": "sebastian@phpunit.de"
  10595. },
  10596. {
  10597. "name": "Jeff Welch",
  10598. "email": "whatthejeff@gmail.com"
  10599. },
  10600. {
  10601. "name": "Volker Dusch",
  10602. "email": "github@wallbash.com"
  10603. },
  10604. {
  10605. "name": "Adam Harvey",
  10606. "email": "aharvey@php.net"
  10607. },
  10608. {
  10609. "name": "Bernhard Schussek",
  10610. "email": "bschussek@gmail.com"
  10611. }
  10612. ],
  10613. "description": "Provides the functionality to export PHP variables for visualization",
  10614. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10615. "keywords": [
  10616. "export",
  10617. "exporter"
  10618. ],
  10619. "support": {
  10620. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10621. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10622. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10623. },
  10624. "funding": [
  10625. {
  10626. "url": "https://github.com/sebastianbergmann",
  10627. "type": "github"
  10628. }
  10629. ],
  10630. "time": "2024-03-02T07:17:12+00:00"
  10631. },
  10632. {
  10633. "name": "sebastian/global-state",
  10634. "version": "6.0.2",
  10635. "source": {
  10636. "type": "git",
  10637. "url": "https://github.com/sebastianbergmann/global-state.git",
  10638. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10639. },
  10640. "dist": {
  10641. "type": "zip",
  10642. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10643. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10644. "shasum": ""
  10645. },
  10646. "require": {
  10647. "php": ">=8.1",
  10648. "sebastian/object-reflector": "^3.0",
  10649. "sebastian/recursion-context": "^5.0"
  10650. },
  10651. "require-dev": {
  10652. "ext-dom": "*",
  10653. "phpunit/phpunit": "^10.0"
  10654. },
  10655. "type": "library",
  10656. "extra": {
  10657. "branch-alias": {
  10658. "dev-main": "6.0-dev"
  10659. }
  10660. },
  10661. "autoload": {
  10662. "classmap": [
  10663. "src/"
  10664. ]
  10665. },
  10666. "notification-url": "https://packagist.org/downloads/",
  10667. "license": [
  10668. "BSD-3-Clause"
  10669. ],
  10670. "authors": [
  10671. {
  10672. "name": "Sebastian Bergmann",
  10673. "email": "sebastian@phpunit.de"
  10674. }
  10675. ],
  10676. "description": "Snapshotting of global state",
  10677. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10678. "keywords": [
  10679. "global state"
  10680. ],
  10681. "support": {
  10682. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10683. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10684. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10685. },
  10686. "funding": [
  10687. {
  10688. "url": "https://github.com/sebastianbergmann",
  10689. "type": "github"
  10690. }
  10691. ],
  10692. "time": "2024-03-02T07:19:19+00:00"
  10693. },
  10694. {
  10695. "name": "sebastian/lines-of-code",
  10696. "version": "2.0.2",
  10697. "source": {
  10698. "type": "git",
  10699. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10700. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10701. },
  10702. "dist": {
  10703. "type": "zip",
  10704. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10705. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10706. "shasum": ""
  10707. },
  10708. "require": {
  10709. "nikic/php-parser": "^4.18 || ^5.0",
  10710. "php": ">=8.1"
  10711. },
  10712. "require-dev": {
  10713. "phpunit/phpunit": "^10.0"
  10714. },
  10715. "type": "library",
  10716. "extra": {
  10717. "branch-alias": {
  10718. "dev-main": "2.0-dev"
  10719. }
  10720. },
  10721. "autoload": {
  10722. "classmap": [
  10723. "src/"
  10724. ]
  10725. },
  10726. "notification-url": "https://packagist.org/downloads/",
  10727. "license": [
  10728. "BSD-3-Clause"
  10729. ],
  10730. "authors": [
  10731. {
  10732. "name": "Sebastian Bergmann",
  10733. "email": "sebastian@phpunit.de",
  10734. "role": "lead"
  10735. }
  10736. ],
  10737. "description": "Library for counting the lines of code in PHP source code",
  10738. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10739. "support": {
  10740. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10741. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10742. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10743. },
  10744. "funding": [
  10745. {
  10746. "url": "https://github.com/sebastianbergmann",
  10747. "type": "github"
  10748. }
  10749. ],
  10750. "time": "2023-12-21T08:38:20+00:00"
  10751. },
  10752. {
  10753. "name": "sebastian/object-enumerator",
  10754. "version": "5.0.0",
  10755. "source": {
  10756. "type": "git",
  10757. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10758. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10759. },
  10760. "dist": {
  10761. "type": "zip",
  10762. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10763. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10764. "shasum": ""
  10765. },
  10766. "require": {
  10767. "php": ">=8.1",
  10768. "sebastian/object-reflector": "^3.0",
  10769. "sebastian/recursion-context": "^5.0"
  10770. },
  10771. "require-dev": {
  10772. "phpunit/phpunit": "^10.0"
  10773. },
  10774. "type": "library",
  10775. "extra": {
  10776. "branch-alias": {
  10777. "dev-main": "5.0-dev"
  10778. }
  10779. },
  10780. "autoload": {
  10781. "classmap": [
  10782. "src/"
  10783. ]
  10784. },
  10785. "notification-url": "https://packagist.org/downloads/",
  10786. "license": [
  10787. "BSD-3-Clause"
  10788. ],
  10789. "authors": [
  10790. {
  10791. "name": "Sebastian Bergmann",
  10792. "email": "sebastian@phpunit.de"
  10793. }
  10794. ],
  10795. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10796. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10797. "support": {
  10798. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10799. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10800. },
  10801. "funding": [
  10802. {
  10803. "url": "https://github.com/sebastianbergmann",
  10804. "type": "github"
  10805. }
  10806. ],
  10807. "time": "2023-02-03T07:08:32+00:00"
  10808. },
  10809. {
  10810. "name": "sebastian/object-reflector",
  10811. "version": "3.0.0",
  10812. "source": {
  10813. "type": "git",
  10814. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10815. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10816. },
  10817. "dist": {
  10818. "type": "zip",
  10819. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10820. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10821. "shasum": ""
  10822. },
  10823. "require": {
  10824. "php": ">=8.1"
  10825. },
  10826. "require-dev": {
  10827. "phpunit/phpunit": "^10.0"
  10828. },
  10829. "type": "library",
  10830. "extra": {
  10831. "branch-alias": {
  10832. "dev-main": "3.0-dev"
  10833. }
  10834. },
  10835. "autoload": {
  10836. "classmap": [
  10837. "src/"
  10838. ]
  10839. },
  10840. "notification-url": "https://packagist.org/downloads/",
  10841. "license": [
  10842. "BSD-3-Clause"
  10843. ],
  10844. "authors": [
  10845. {
  10846. "name": "Sebastian Bergmann",
  10847. "email": "sebastian@phpunit.de"
  10848. }
  10849. ],
  10850. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10851. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10852. "support": {
  10853. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10854. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10855. },
  10856. "funding": [
  10857. {
  10858. "url": "https://github.com/sebastianbergmann",
  10859. "type": "github"
  10860. }
  10861. ],
  10862. "time": "2023-02-03T07:06:18+00:00"
  10863. },
  10864. {
  10865. "name": "sebastian/recursion-context",
  10866. "version": "5.0.0",
  10867. "source": {
  10868. "type": "git",
  10869. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10870. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10871. },
  10872. "dist": {
  10873. "type": "zip",
  10874. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10875. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10876. "shasum": ""
  10877. },
  10878. "require": {
  10879. "php": ">=8.1"
  10880. },
  10881. "require-dev": {
  10882. "phpunit/phpunit": "^10.0"
  10883. },
  10884. "type": "library",
  10885. "extra": {
  10886. "branch-alias": {
  10887. "dev-main": "5.0-dev"
  10888. }
  10889. },
  10890. "autoload": {
  10891. "classmap": [
  10892. "src/"
  10893. ]
  10894. },
  10895. "notification-url": "https://packagist.org/downloads/",
  10896. "license": [
  10897. "BSD-3-Clause"
  10898. ],
  10899. "authors": [
  10900. {
  10901. "name": "Sebastian Bergmann",
  10902. "email": "sebastian@phpunit.de"
  10903. },
  10904. {
  10905. "name": "Jeff Welch",
  10906. "email": "whatthejeff@gmail.com"
  10907. },
  10908. {
  10909. "name": "Adam Harvey",
  10910. "email": "aharvey@php.net"
  10911. }
  10912. ],
  10913. "description": "Provides functionality to recursively process PHP variables",
  10914. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10915. "support": {
  10916. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10917. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10918. },
  10919. "funding": [
  10920. {
  10921. "url": "https://github.com/sebastianbergmann",
  10922. "type": "github"
  10923. }
  10924. ],
  10925. "time": "2023-02-03T07:05:40+00:00"
  10926. },
  10927. {
  10928. "name": "sebastian/type",
  10929. "version": "4.0.0",
  10930. "source": {
  10931. "type": "git",
  10932. "url": "https://github.com/sebastianbergmann/type.git",
  10933. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10934. },
  10935. "dist": {
  10936. "type": "zip",
  10937. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10938. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10939. "shasum": ""
  10940. },
  10941. "require": {
  10942. "php": ">=8.1"
  10943. },
  10944. "require-dev": {
  10945. "phpunit/phpunit": "^10.0"
  10946. },
  10947. "type": "library",
  10948. "extra": {
  10949. "branch-alias": {
  10950. "dev-main": "4.0-dev"
  10951. }
  10952. },
  10953. "autoload": {
  10954. "classmap": [
  10955. "src/"
  10956. ]
  10957. },
  10958. "notification-url": "https://packagist.org/downloads/",
  10959. "license": [
  10960. "BSD-3-Clause"
  10961. ],
  10962. "authors": [
  10963. {
  10964. "name": "Sebastian Bergmann",
  10965. "email": "sebastian@phpunit.de",
  10966. "role": "lead"
  10967. }
  10968. ],
  10969. "description": "Collection of value objects that represent the types of the PHP type system",
  10970. "homepage": "https://github.com/sebastianbergmann/type",
  10971. "support": {
  10972. "issues": "https://github.com/sebastianbergmann/type/issues",
  10973. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10974. },
  10975. "funding": [
  10976. {
  10977. "url": "https://github.com/sebastianbergmann",
  10978. "type": "github"
  10979. }
  10980. ],
  10981. "time": "2023-02-03T07:10:45+00:00"
  10982. },
  10983. {
  10984. "name": "sebastian/version",
  10985. "version": "4.0.1",
  10986. "source": {
  10987. "type": "git",
  10988. "url": "https://github.com/sebastianbergmann/version.git",
  10989. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10990. },
  10991. "dist": {
  10992. "type": "zip",
  10993. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10994. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10995. "shasum": ""
  10996. },
  10997. "require": {
  10998. "php": ">=8.1"
  10999. },
  11000. "type": "library",
  11001. "extra": {
  11002. "branch-alias": {
  11003. "dev-main": "4.0-dev"
  11004. }
  11005. },
  11006. "autoload": {
  11007. "classmap": [
  11008. "src/"
  11009. ]
  11010. },
  11011. "notification-url": "https://packagist.org/downloads/",
  11012. "license": [
  11013. "BSD-3-Clause"
  11014. ],
  11015. "authors": [
  11016. {
  11017. "name": "Sebastian Bergmann",
  11018. "email": "sebastian@phpunit.de",
  11019. "role": "lead"
  11020. }
  11021. ],
  11022. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11023. "homepage": "https://github.com/sebastianbergmann/version",
  11024. "support": {
  11025. "issues": "https://github.com/sebastianbergmann/version/issues",
  11026. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11027. },
  11028. "funding": [
  11029. {
  11030. "url": "https://github.com/sebastianbergmann",
  11031. "type": "github"
  11032. }
  11033. ],
  11034. "time": "2023-02-07T11:34:05+00:00"
  11035. },
  11036. {
  11037. "name": "swoole/ide-helper",
  11038. "version": "5.1.6",
  11039. "source": {
  11040. "type": "git",
  11041. "url": "https://github.com/swoole/ide-helper.git",
  11042. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  11043. },
  11044. "dist": {
  11045. "type": "zip",
  11046. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11047. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11048. "shasum": ""
  11049. },
  11050. "type": "library",
  11051. "notification-url": "https://packagist.org/downloads/",
  11052. "license": [
  11053. "Apache-2.0"
  11054. ],
  11055. "authors": [
  11056. {
  11057. "name": "Team Swoole",
  11058. "email": "team@swoole.com"
  11059. }
  11060. ],
  11061. "description": "IDE help files for Swoole.",
  11062. "support": {
  11063. "issues": "https://github.com/swoole/ide-helper/issues",
  11064. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  11065. },
  11066. "time": "2024-11-29T07:21:36+00:00"
  11067. },
  11068. {
  11069. "name": "symfony/event-dispatcher",
  11070. "version": "v6.4.13",
  11071. "source": {
  11072. "type": "git",
  11073. "url": "https://github.com/symfony/event-dispatcher.git",
  11074. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11075. },
  11076. "dist": {
  11077. "type": "zip",
  11078. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11079. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11080. "shasum": ""
  11081. },
  11082. "require": {
  11083. "php": ">=8.1",
  11084. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11085. },
  11086. "conflict": {
  11087. "symfony/dependency-injection": "<5.4",
  11088. "symfony/service-contracts": "<2.5"
  11089. },
  11090. "provide": {
  11091. "psr/event-dispatcher-implementation": "1.0",
  11092. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11093. },
  11094. "require-dev": {
  11095. "psr/log": "^1|^2|^3",
  11096. "symfony/config": "^5.4|^6.0|^7.0",
  11097. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11098. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11099. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11100. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11101. "symfony/service-contracts": "^2.5|^3",
  11102. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11103. },
  11104. "type": "library",
  11105. "autoload": {
  11106. "psr-4": {
  11107. "Symfony\\Component\\EventDispatcher\\": ""
  11108. },
  11109. "exclude-from-classmap": [
  11110. "/Tests/"
  11111. ]
  11112. },
  11113. "notification-url": "https://packagist.org/downloads/",
  11114. "license": [
  11115. "MIT"
  11116. ],
  11117. "authors": [
  11118. {
  11119. "name": "Fabien Potencier",
  11120. "email": "fabien@symfony.com"
  11121. },
  11122. {
  11123. "name": "Symfony Community",
  11124. "homepage": "https://symfony.com/contributors"
  11125. }
  11126. ],
  11127. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11128. "homepage": "https://symfony.com",
  11129. "support": {
  11130. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11131. },
  11132. "funding": [
  11133. {
  11134. "url": "https://symfony.com/sponsor",
  11135. "type": "custom"
  11136. },
  11137. {
  11138. "url": "https://github.com/fabpot",
  11139. "type": "github"
  11140. },
  11141. {
  11142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11143. "type": "tidelift"
  11144. }
  11145. ],
  11146. "time": "2024-09-25T14:18:03+00:00"
  11147. },
  11148. {
  11149. "name": "symfony/event-dispatcher-contracts",
  11150. "version": "v3.5.1",
  11151. "source": {
  11152. "type": "git",
  11153. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11154. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11155. },
  11156. "dist": {
  11157. "type": "zip",
  11158. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11159. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11160. "shasum": ""
  11161. },
  11162. "require": {
  11163. "php": ">=8.1",
  11164. "psr/event-dispatcher": "^1"
  11165. },
  11166. "type": "library",
  11167. "extra": {
  11168. "branch-alias": {
  11169. "dev-main": "3.5-dev"
  11170. },
  11171. "thanks": {
  11172. "name": "symfony/contracts",
  11173. "url": "https://github.com/symfony/contracts"
  11174. }
  11175. },
  11176. "autoload": {
  11177. "psr-4": {
  11178. "Symfony\\Contracts\\EventDispatcher\\": ""
  11179. }
  11180. },
  11181. "notification-url": "https://packagist.org/downloads/",
  11182. "license": [
  11183. "MIT"
  11184. ],
  11185. "authors": [
  11186. {
  11187. "name": "Nicolas Grekas",
  11188. "email": "p@tchwork.com"
  11189. },
  11190. {
  11191. "name": "Symfony Community",
  11192. "homepage": "https://symfony.com/contributors"
  11193. }
  11194. ],
  11195. "description": "Generic abstractions related to dispatching event",
  11196. "homepage": "https://symfony.com",
  11197. "keywords": [
  11198. "abstractions",
  11199. "contracts",
  11200. "decoupling",
  11201. "interfaces",
  11202. "interoperability",
  11203. "standards"
  11204. ],
  11205. "support": {
  11206. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11207. },
  11208. "funding": [
  11209. {
  11210. "url": "https://symfony.com/sponsor",
  11211. "type": "custom"
  11212. },
  11213. {
  11214. "url": "https://github.com/fabpot",
  11215. "type": "github"
  11216. },
  11217. {
  11218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11219. "type": "tidelift"
  11220. }
  11221. ],
  11222. "time": "2024-09-25T14:20:29+00:00"
  11223. },
  11224. {
  11225. "name": "symfony/filesystem",
  11226. "version": "v6.4.13",
  11227. "source": {
  11228. "type": "git",
  11229. "url": "https://github.com/symfony/filesystem.git",
  11230. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11231. },
  11232. "dist": {
  11233. "type": "zip",
  11234. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11235. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11236. "shasum": ""
  11237. },
  11238. "require": {
  11239. "php": ">=8.1",
  11240. "symfony/polyfill-ctype": "~1.8",
  11241. "symfony/polyfill-mbstring": "~1.8"
  11242. },
  11243. "require-dev": {
  11244. "symfony/process": "^5.4|^6.4|^7.0"
  11245. },
  11246. "type": "library",
  11247. "autoload": {
  11248. "psr-4": {
  11249. "Symfony\\Component\\Filesystem\\": ""
  11250. },
  11251. "exclude-from-classmap": [
  11252. "/Tests/"
  11253. ]
  11254. },
  11255. "notification-url": "https://packagist.org/downloads/",
  11256. "license": [
  11257. "MIT"
  11258. ],
  11259. "authors": [
  11260. {
  11261. "name": "Fabien Potencier",
  11262. "email": "fabien@symfony.com"
  11263. },
  11264. {
  11265. "name": "Symfony Community",
  11266. "homepage": "https://symfony.com/contributors"
  11267. }
  11268. ],
  11269. "description": "Provides basic utilities for the filesystem",
  11270. "homepage": "https://symfony.com",
  11271. "support": {
  11272. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11273. },
  11274. "funding": [
  11275. {
  11276. "url": "https://symfony.com/sponsor",
  11277. "type": "custom"
  11278. },
  11279. {
  11280. "url": "https://github.com/fabpot",
  11281. "type": "github"
  11282. },
  11283. {
  11284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11285. "type": "tidelift"
  11286. }
  11287. ],
  11288. "time": "2024-10-25T15:07:50+00:00"
  11289. },
  11290. {
  11291. "name": "symfony/http-foundation",
  11292. "version": "v6.4.16",
  11293. "source": {
  11294. "type": "git",
  11295. "url": "https://github.com/symfony/http-foundation.git",
  11296. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  11297. },
  11298. "dist": {
  11299. "type": "zip",
  11300. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11301. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11302. "shasum": ""
  11303. },
  11304. "require": {
  11305. "php": ">=8.1",
  11306. "symfony/deprecation-contracts": "^2.5|^3",
  11307. "symfony/polyfill-mbstring": "~1.1",
  11308. "symfony/polyfill-php83": "^1.27"
  11309. },
  11310. "conflict": {
  11311. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11312. },
  11313. "require-dev": {
  11314. "doctrine/dbal": "^2.13.1|^3|^4",
  11315. "predis/predis": "^1.1|^2.0",
  11316. "symfony/cache": "^6.4.12|^7.1.5",
  11317. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11318. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11319. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11320. "symfony/mime": "^5.4|^6.0|^7.0",
  11321. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11322. },
  11323. "type": "library",
  11324. "autoload": {
  11325. "psr-4": {
  11326. "Symfony\\Component\\HttpFoundation\\": ""
  11327. },
  11328. "exclude-from-classmap": [
  11329. "/Tests/"
  11330. ]
  11331. },
  11332. "notification-url": "https://packagist.org/downloads/",
  11333. "license": [
  11334. "MIT"
  11335. ],
  11336. "authors": [
  11337. {
  11338. "name": "Fabien Potencier",
  11339. "email": "fabien@symfony.com"
  11340. },
  11341. {
  11342. "name": "Symfony Community",
  11343. "homepage": "https://symfony.com/contributors"
  11344. }
  11345. ],
  11346. "description": "Defines an object-oriented layer for the HTTP specification",
  11347. "homepage": "https://symfony.com",
  11348. "support": {
  11349. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  11350. },
  11351. "funding": [
  11352. {
  11353. "url": "https://symfony.com/sponsor",
  11354. "type": "custom"
  11355. },
  11356. {
  11357. "url": "https://github.com/fabpot",
  11358. "type": "github"
  11359. },
  11360. {
  11361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11362. "type": "tidelift"
  11363. }
  11364. ],
  11365. "time": "2024-11-13T18:58:10+00:00"
  11366. },
  11367. {
  11368. "name": "symfony/options-resolver",
  11369. "version": "v6.4.16",
  11370. "source": {
  11371. "type": "git",
  11372. "url": "https://github.com/symfony/options-resolver.git",
  11373. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  11374. },
  11375. "dist": {
  11376. "type": "zip",
  11377. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  11378. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  11379. "shasum": ""
  11380. },
  11381. "require": {
  11382. "php": ">=8.1",
  11383. "symfony/deprecation-contracts": "^2.5|^3"
  11384. },
  11385. "type": "library",
  11386. "autoload": {
  11387. "psr-4": {
  11388. "Symfony\\Component\\OptionsResolver\\": ""
  11389. },
  11390. "exclude-from-classmap": [
  11391. "/Tests/"
  11392. ]
  11393. },
  11394. "notification-url": "https://packagist.org/downloads/",
  11395. "license": [
  11396. "MIT"
  11397. ],
  11398. "authors": [
  11399. {
  11400. "name": "Fabien Potencier",
  11401. "email": "fabien@symfony.com"
  11402. },
  11403. {
  11404. "name": "Symfony Community",
  11405. "homepage": "https://symfony.com/contributors"
  11406. }
  11407. ],
  11408. "description": "Provides an improved replacement for the array_replace PHP function",
  11409. "homepage": "https://symfony.com",
  11410. "keywords": [
  11411. "config",
  11412. "configuration",
  11413. "options"
  11414. ],
  11415. "support": {
  11416. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  11417. },
  11418. "funding": [
  11419. {
  11420. "url": "https://symfony.com/sponsor",
  11421. "type": "custom"
  11422. },
  11423. {
  11424. "url": "https://github.com/fabpot",
  11425. "type": "github"
  11426. },
  11427. {
  11428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11429. "type": "tidelift"
  11430. }
  11431. ],
  11432. "time": "2024-11-20T10:57:02+00:00"
  11433. },
  11434. {
  11435. "name": "symfony/polyfill-php81",
  11436. "version": "v1.31.0",
  11437. "source": {
  11438. "type": "git",
  11439. "url": "https://github.com/symfony/polyfill-php81.git",
  11440. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11441. },
  11442. "dist": {
  11443. "type": "zip",
  11444. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11445. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11446. "shasum": ""
  11447. },
  11448. "require": {
  11449. "php": ">=7.2"
  11450. },
  11451. "type": "library",
  11452. "extra": {
  11453. "thanks": {
  11454. "name": "symfony/polyfill",
  11455. "url": "https://github.com/symfony/polyfill"
  11456. }
  11457. },
  11458. "autoload": {
  11459. "files": [
  11460. "bootstrap.php"
  11461. ],
  11462. "psr-4": {
  11463. "Symfony\\Polyfill\\Php81\\": ""
  11464. },
  11465. "classmap": [
  11466. "Resources/stubs"
  11467. ]
  11468. },
  11469. "notification-url": "https://packagist.org/downloads/",
  11470. "license": [
  11471. "MIT"
  11472. ],
  11473. "authors": [
  11474. {
  11475. "name": "Nicolas Grekas",
  11476. "email": "p@tchwork.com"
  11477. },
  11478. {
  11479. "name": "Symfony Community",
  11480. "homepage": "https://symfony.com/contributors"
  11481. }
  11482. ],
  11483. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11484. "homepage": "https://symfony.com",
  11485. "keywords": [
  11486. "compatibility",
  11487. "polyfill",
  11488. "portable",
  11489. "shim"
  11490. ],
  11491. "support": {
  11492. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11493. },
  11494. "funding": [
  11495. {
  11496. "url": "https://symfony.com/sponsor",
  11497. "type": "custom"
  11498. },
  11499. {
  11500. "url": "https://github.com/fabpot",
  11501. "type": "github"
  11502. },
  11503. {
  11504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11505. "type": "tidelift"
  11506. }
  11507. ],
  11508. "time": "2024-09-09T11:45:10+00:00"
  11509. },
  11510. {
  11511. "name": "symfony/polyfill-php83",
  11512. "version": "v1.31.0",
  11513. "source": {
  11514. "type": "git",
  11515. "url": "https://github.com/symfony/polyfill-php83.git",
  11516. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11517. },
  11518. "dist": {
  11519. "type": "zip",
  11520. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11521. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11522. "shasum": ""
  11523. },
  11524. "require": {
  11525. "php": ">=7.2"
  11526. },
  11527. "type": "library",
  11528. "extra": {
  11529. "thanks": {
  11530. "name": "symfony/polyfill",
  11531. "url": "https://github.com/symfony/polyfill"
  11532. }
  11533. },
  11534. "autoload": {
  11535. "files": [
  11536. "bootstrap.php"
  11537. ],
  11538. "psr-4": {
  11539. "Symfony\\Polyfill\\Php83\\": ""
  11540. },
  11541. "classmap": [
  11542. "Resources/stubs"
  11543. ]
  11544. },
  11545. "notification-url": "https://packagist.org/downloads/",
  11546. "license": [
  11547. "MIT"
  11548. ],
  11549. "authors": [
  11550. {
  11551. "name": "Nicolas Grekas",
  11552. "email": "p@tchwork.com"
  11553. },
  11554. {
  11555. "name": "Symfony Community",
  11556. "homepage": "https://symfony.com/contributors"
  11557. }
  11558. ],
  11559. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11560. "homepage": "https://symfony.com",
  11561. "keywords": [
  11562. "compatibility",
  11563. "polyfill",
  11564. "portable",
  11565. "shim"
  11566. ],
  11567. "support": {
  11568. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11569. },
  11570. "funding": [
  11571. {
  11572. "url": "https://symfony.com/sponsor",
  11573. "type": "custom"
  11574. },
  11575. {
  11576. "url": "https://github.com/fabpot",
  11577. "type": "github"
  11578. },
  11579. {
  11580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11581. "type": "tidelift"
  11582. }
  11583. ],
  11584. "time": "2024-09-09T11:45:10+00:00"
  11585. },
  11586. {
  11587. "name": "symfony/process",
  11588. "version": "v6.4.15",
  11589. "source": {
  11590. "type": "git",
  11591. "url": "https://github.com/symfony/process.git",
  11592. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11593. },
  11594. "dist": {
  11595. "type": "zip",
  11596. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11597. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11598. "shasum": ""
  11599. },
  11600. "require": {
  11601. "php": ">=8.1"
  11602. },
  11603. "type": "library",
  11604. "autoload": {
  11605. "psr-4": {
  11606. "Symfony\\Component\\Process\\": ""
  11607. },
  11608. "exclude-from-classmap": [
  11609. "/Tests/"
  11610. ]
  11611. },
  11612. "notification-url": "https://packagist.org/downloads/",
  11613. "license": [
  11614. "MIT"
  11615. ],
  11616. "authors": [
  11617. {
  11618. "name": "Fabien Potencier",
  11619. "email": "fabien@symfony.com"
  11620. },
  11621. {
  11622. "name": "Symfony Community",
  11623. "homepage": "https://symfony.com/contributors"
  11624. }
  11625. ],
  11626. "description": "Executes commands in sub-processes",
  11627. "homepage": "https://symfony.com",
  11628. "support": {
  11629. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11630. },
  11631. "funding": [
  11632. {
  11633. "url": "https://symfony.com/sponsor",
  11634. "type": "custom"
  11635. },
  11636. {
  11637. "url": "https://github.com/fabpot",
  11638. "type": "github"
  11639. },
  11640. {
  11641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11642. "type": "tidelift"
  11643. }
  11644. ],
  11645. "time": "2024-11-06T14:19:14+00:00"
  11646. },
  11647. {
  11648. "name": "symfony/stopwatch",
  11649. "version": "v6.4.13",
  11650. "source": {
  11651. "type": "git",
  11652. "url": "https://github.com/symfony/stopwatch.git",
  11653. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11654. },
  11655. "dist": {
  11656. "type": "zip",
  11657. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11658. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11659. "shasum": ""
  11660. },
  11661. "require": {
  11662. "php": ">=8.1",
  11663. "symfony/service-contracts": "^2.5|^3"
  11664. },
  11665. "type": "library",
  11666. "autoload": {
  11667. "psr-4": {
  11668. "Symfony\\Component\\Stopwatch\\": ""
  11669. },
  11670. "exclude-from-classmap": [
  11671. "/Tests/"
  11672. ]
  11673. },
  11674. "notification-url": "https://packagist.org/downloads/",
  11675. "license": [
  11676. "MIT"
  11677. ],
  11678. "authors": [
  11679. {
  11680. "name": "Fabien Potencier",
  11681. "email": "fabien@symfony.com"
  11682. },
  11683. {
  11684. "name": "Symfony Community",
  11685. "homepage": "https://symfony.com/contributors"
  11686. }
  11687. ],
  11688. "description": "Provides a way to profile code",
  11689. "homepage": "https://symfony.com",
  11690. "support": {
  11691. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11692. },
  11693. "funding": [
  11694. {
  11695. "url": "https://symfony.com/sponsor",
  11696. "type": "custom"
  11697. },
  11698. {
  11699. "url": "https://github.com/fabpot",
  11700. "type": "github"
  11701. },
  11702. {
  11703. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11704. "type": "tidelift"
  11705. }
  11706. ],
  11707. "time": "2024-09-25T14:18:03+00:00"
  11708. },
  11709. {
  11710. "name": "theseer/tokenizer",
  11711. "version": "1.2.3",
  11712. "source": {
  11713. "type": "git",
  11714. "url": "https://github.com/theseer/tokenizer.git",
  11715. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11716. },
  11717. "dist": {
  11718. "type": "zip",
  11719. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11720. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11721. "shasum": ""
  11722. },
  11723. "require": {
  11724. "ext-dom": "*",
  11725. "ext-tokenizer": "*",
  11726. "ext-xmlwriter": "*",
  11727. "php": "^7.2 || ^8.0"
  11728. },
  11729. "type": "library",
  11730. "autoload": {
  11731. "classmap": [
  11732. "src/"
  11733. ]
  11734. },
  11735. "notification-url": "https://packagist.org/downloads/",
  11736. "license": [
  11737. "BSD-3-Clause"
  11738. ],
  11739. "authors": [
  11740. {
  11741. "name": "Arne Blankerts",
  11742. "email": "arne@blankerts.de",
  11743. "role": "Developer"
  11744. }
  11745. ],
  11746. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11747. "support": {
  11748. "issues": "https://github.com/theseer/tokenizer/issues",
  11749. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11750. },
  11751. "funding": [
  11752. {
  11753. "url": "https://github.com/theseer",
  11754. "type": "github"
  11755. }
  11756. ],
  11757. "time": "2024-03-03T12:36:25+00:00"
  11758. }
  11759. ],
  11760. "aliases": [],
  11761. "minimum-stability": "dev",
  11762. "stability-flags": [],
  11763. "prefer-stable": true,
  11764. "prefer-lowest": false,
  11765. "platform": {
  11766. "php": ">=8.1"
  11767. },
  11768. "platform-dev": [],
  11769. "plugin-api-version": "2.6.0"
  11770. }