composer.lock 358 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "c019bda3e4157a797b2c2ba6ac97fb5d",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "doctrine/inflector",
  80. "version": "2.0.10",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/inflector.git",
  84. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  89. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "php": "^7.2 || ^8.0"
  94. },
  95. "require-dev": {
  96. "doctrine/coding-standard": "^11.0",
  97. "phpstan/phpstan": "^1.8",
  98. "phpstan/phpstan-phpunit": "^1.1",
  99. "phpstan/phpstan-strict-rules": "^1.3",
  100. "phpunit/phpunit": "^8.5 || ^9.5",
  101. "vimeo/psalm": "^4.25 || ^5.4"
  102. },
  103. "type": "library",
  104. "autoload": {
  105. "psr-4": {
  106. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Guilherme Blanco",
  116. "email": "guilhermeblanco@gmail.com"
  117. },
  118. {
  119. "name": "Roman Borschel",
  120. "email": "roman@code-factory.org"
  121. },
  122. {
  123. "name": "Benjamin Eberlei",
  124. "email": "kontakt@beberlei.de"
  125. },
  126. {
  127. "name": "Jonathan Wage",
  128. "email": "jonwage@gmail.com"
  129. },
  130. {
  131. "name": "Johannes Schmitt",
  132. "email": "schmittjoh@gmail.com"
  133. }
  134. ],
  135. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  136. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  137. "keywords": [
  138. "inflection",
  139. "inflector",
  140. "lowercase",
  141. "manipulation",
  142. "php",
  143. "plural",
  144. "singular",
  145. "strings",
  146. "uppercase",
  147. "words"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/doctrine/inflector/issues",
  151. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  152. },
  153. "funding": [
  154. {
  155. "url": "https://www.doctrine-project.org/sponsorship.html",
  156. "type": "custom"
  157. },
  158. {
  159. "url": "https://www.patreon.com/phpdoctrine",
  160. "type": "patreon"
  161. },
  162. {
  163. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  164. "type": "tidelift"
  165. }
  166. ],
  167. "time": "2024-02-18T20:23:39+00:00"
  168. },
  169. {
  170. "name": "doctrine/instantiator",
  171. "version": "1.5.0",
  172. "source": {
  173. "type": "git",
  174. "url": "https://github.com/doctrine/instantiator.git",
  175. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  176. },
  177. "dist": {
  178. "type": "zip",
  179. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  180. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  181. "shasum": ""
  182. },
  183. "require": {
  184. "php": "^7.1 || ^8.0"
  185. },
  186. "require-dev": {
  187. "doctrine/coding-standard": "^9 || ^11",
  188. "ext-pdo": "*",
  189. "ext-phar": "*",
  190. "phpbench/phpbench": "^0.16 || ^1",
  191. "phpstan/phpstan": "^1.4",
  192. "phpstan/phpstan-phpunit": "^1",
  193. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  194. "vimeo/psalm": "^4.30 || ^5.4"
  195. },
  196. "type": "library",
  197. "autoload": {
  198. "psr-4": {
  199. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  200. }
  201. },
  202. "notification-url": "https://packagist.org/downloads/",
  203. "license": [
  204. "MIT"
  205. ],
  206. "authors": [
  207. {
  208. "name": "Marco Pivetta",
  209. "email": "ocramius@gmail.com",
  210. "homepage": "https://ocramius.github.io/"
  211. }
  212. ],
  213. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  214. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  215. "keywords": [
  216. "constructor",
  217. "instantiate"
  218. ],
  219. "support": {
  220. "issues": "https://github.com/doctrine/instantiator/issues",
  221. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  222. },
  223. "funding": [
  224. {
  225. "url": "https://www.doctrine-project.org/sponsorship.html",
  226. "type": "custom"
  227. },
  228. {
  229. "url": "https://www.patreon.com/phpdoctrine",
  230. "type": "patreon"
  231. },
  232. {
  233. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  234. "type": "tidelift"
  235. }
  236. ],
  237. "time": "2022-12-30T00:15:36+00:00"
  238. },
  239. {
  240. "name": "fig/http-message-util",
  241. "version": "1.1.5",
  242. "source": {
  243. "type": "git",
  244. "url": "https://github.com/php-fig/http-message-util.git",
  245. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  246. },
  247. "dist": {
  248. "type": "zip",
  249. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  250. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  251. "shasum": ""
  252. },
  253. "require": {
  254. "php": "^5.3 || ^7.0 || ^8.0"
  255. },
  256. "suggest": {
  257. "psr/http-message": "The package containing the PSR-7 interfaces"
  258. },
  259. "type": "library",
  260. "extra": {
  261. "branch-alias": {
  262. "dev-master": "1.1.x-dev"
  263. }
  264. },
  265. "autoload": {
  266. "psr-4": {
  267. "Fig\\Http\\Message\\": "src/"
  268. }
  269. },
  270. "notification-url": "https://packagist.org/downloads/",
  271. "license": [
  272. "MIT"
  273. ],
  274. "authors": [
  275. {
  276. "name": "PHP-FIG",
  277. "homepage": "https://www.php-fig.org/"
  278. }
  279. ],
  280. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  281. "keywords": [
  282. "http",
  283. "http-message",
  284. "psr",
  285. "psr-7",
  286. "request",
  287. "response"
  288. ],
  289. "support": {
  290. "issues": "https://github.com/php-fig/http-message-util/issues",
  291. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  292. },
  293. "time": "2020-11-24T22:02:12+00:00"
  294. },
  295. {
  296. "name": "graham-campbell/result-type",
  297. "version": "v1.1.3",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  301. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  306. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "php": "^7.2.5 || ^8.0",
  311. "phpoption/phpoption": "^1.9.3"
  312. },
  313. "require-dev": {
  314. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  315. },
  316. "type": "library",
  317. "autoload": {
  318. "psr-4": {
  319. "GrahamCampbell\\ResultType\\": "src/"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Graham Campbell",
  329. "email": "hello@gjcampbell.co.uk",
  330. "homepage": "https://github.com/GrahamCampbell"
  331. }
  332. ],
  333. "description": "An Implementation Of The Result Type",
  334. "keywords": [
  335. "Graham Campbell",
  336. "GrahamCampbell",
  337. "Result Type",
  338. "Result-Type",
  339. "result"
  340. ],
  341. "support": {
  342. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  343. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  344. },
  345. "funding": [
  346. {
  347. "url": "https://github.com/GrahamCampbell",
  348. "type": "github"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2024-07-20T21:45:45+00:00"
  356. },
  357. {
  358. "name": "guzzlehttp/guzzle",
  359. "version": "7.9.3",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/guzzle/guzzle.git",
  363. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  368. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "ext-json": "*",
  373. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  374. "guzzlehttp/psr7": "^2.7.0",
  375. "php": "^7.2.5 || ^8.0",
  376. "psr/http-client": "^1.0",
  377. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  378. },
  379. "provide": {
  380. "psr/http-client-implementation": "1.0"
  381. },
  382. "require-dev": {
  383. "bamarni/composer-bin-plugin": "^1.8.2",
  384. "ext-curl": "*",
  385. "guzzle/client-integration-tests": "3.0.2",
  386. "php-http/message-factory": "^1.1",
  387. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  388. "psr/log": "^1.1 || ^2.0 || ^3.0"
  389. },
  390. "suggest": {
  391. "ext-curl": "Required for CURL handler support",
  392. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  393. "psr/log": "Required for using the Log middleware"
  394. },
  395. "type": "library",
  396. "extra": {
  397. "bamarni-bin": {
  398. "bin-links": true,
  399. "forward-command": false
  400. }
  401. },
  402. "autoload": {
  403. "files": [
  404. "src/functions_include.php"
  405. ],
  406. "psr-4": {
  407. "GuzzleHttp\\": "src/"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Graham Campbell",
  417. "email": "hello@gjcampbell.co.uk",
  418. "homepage": "https://github.com/GrahamCampbell"
  419. },
  420. {
  421. "name": "Michael Dowling",
  422. "email": "mtdowling@gmail.com",
  423. "homepage": "https://github.com/mtdowling"
  424. },
  425. {
  426. "name": "Jeremy Lindblom",
  427. "email": "jeremeamia@gmail.com",
  428. "homepage": "https://github.com/jeremeamia"
  429. },
  430. {
  431. "name": "George Mponos",
  432. "email": "gmponos@gmail.com",
  433. "homepage": "https://github.com/gmponos"
  434. },
  435. {
  436. "name": "Tobias Nyholm",
  437. "email": "tobias.nyholm@gmail.com",
  438. "homepage": "https://github.com/Nyholm"
  439. },
  440. {
  441. "name": "Márk Sági-Kazár",
  442. "email": "mark.sagikazar@gmail.com",
  443. "homepage": "https://github.com/sagikazarmark"
  444. },
  445. {
  446. "name": "Tobias Schultze",
  447. "email": "webmaster@tubo-world.de",
  448. "homepage": "https://github.com/Tobion"
  449. }
  450. ],
  451. "description": "Guzzle is a PHP HTTP client library",
  452. "keywords": [
  453. "client",
  454. "curl",
  455. "framework",
  456. "http",
  457. "http client",
  458. "psr-18",
  459. "psr-7",
  460. "rest",
  461. "web service"
  462. ],
  463. "support": {
  464. "issues": "https://github.com/guzzle/guzzle/issues",
  465. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  466. },
  467. "funding": [
  468. {
  469. "url": "https://github.com/GrahamCampbell",
  470. "type": "github"
  471. },
  472. {
  473. "url": "https://github.com/Nyholm",
  474. "type": "github"
  475. },
  476. {
  477. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  478. "type": "tidelift"
  479. }
  480. ],
  481. "time": "2025-03-27T13:37:11+00:00"
  482. },
  483. {
  484. "name": "guzzlehttp/promises",
  485. "version": "2.2.0",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/guzzle/promises.git",
  489. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  494. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  495. "shasum": ""
  496. },
  497. "require": {
  498. "php": "^7.2.5 || ^8.0"
  499. },
  500. "require-dev": {
  501. "bamarni/composer-bin-plugin": "^1.8.2",
  502. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  503. },
  504. "type": "library",
  505. "extra": {
  506. "bamarni-bin": {
  507. "bin-links": true,
  508. "forward-command": false
  509. }
  510. },
  511. "autoload": {
  512. "psr-4": {
  513. "GuzzleHttp\\Promise\\": "src/"
  514. }
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "MIT"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Graham Campbell",
  523. "email": "hello@gjcampbell.co.uk",
  524. "homepage": "https://github.com/GrahamCampbell"
  525. },
  526. {
  527. "name": "Michael Dowling",
  528. "email": "mtdowling@gmail.com",
  529. "homepage": "https://github.com/mtdowling"
  530. },
  531. {
  532. "name": "Tobias Nyholm",
  533. "email": "tobias.nyholm@gmail.com",
  534. "homepage": "https://github.com/Nyholm"
  535. },
  536. {
  537. "name": "Tobias Schultze",
  538. "email": "webmaster@tubo-world.de",
  539. "homepage": "https://github.com/Tobion"
  540. }
  541. ],
  542. "description": "Guzzle promises library",
  543. "keywords": [
  544. "promise"
  545. ],
  546. "support": {
  547. "issues": "https://github.com/guzzle/promises/issues",
  548. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  549. },
  550. "funding": [
  551. {
  552. "url": "https://github.com/GrahamCampbell",
  553. "type": "github"
  554. },
  555. {
  556. "url": "https://github.com/Nyholm",
  557. "type": "github"
  558. },
  559. {
  560. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  561. "type": "tidelift"
  562. }
  563. ],
  564. "time": "2025-03-27T13:27:01+00:00"
  565. },
  566. {
  567. "name": "guzzlehttp/psr7",
  568. "version": "2.7.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/guzzle/psr7.git",
  572. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  577. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": "^7.2.5 || ^8.0",
  582. "psr/http-factory": "^1.0",
  583. "psr/http-message": "^1.1 || ^2.0",
  584. "ralouphie/getallheaders": "^3.0"
  585. },
  586. "provide": {
  587. "psr/http-factory-implementation": "1.0",
  588. "psr/http-message-implementation": "1.0"
  589. },
  590. "require-dev": {
  591. "bamarni/composer-bin-plugin": "^1.8.2",
  592. "http-interop/http-factory-tests": "0.9.0",
  593. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  594. },
  595. "suggest": {
  596. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  597. },
  598. "type": "library",
  599. "extra": {
  600. "bamarni-bin": {
  601. "bin-links": true,
  602. "forward-command": false
  603. }
  604. },
  605. "autoload": {
  606. "psr-4": {
  607. "GuzzleHttp\\Psr7\\": "src/"
  608. }
  609. },
  610. "notification-url": "https://packagist.org/downloads/",
  611. "license": [
  612. "MIT"
  613. ],
  614. "authors": [
  615. {
  616. "name": "Graham Campbell",
  617. "email": "hello@gjcampbell.co.uk",
  618. "homepage": "https://github.com/GrahamCampbell"
  619. },
  620. {
  621. "name": "Michael Dowling",
  622. "email": "mtdowling@gmail.com",
  623. "homepage": "https://github.com/mtdowling"
  624. },
  625. {
  626. "name": "George Mponos",
  627. "email": "gmponos@gmail.com",
  628. "homepage": "https://github.com/gmponos"
  629. },
  630. {
  631. "name": "Tobias Nyholm",
  632. "email": "tobias.nyholm@gmail.com",
  633. "homepage": "https://github.com/Nyholm"
  634. },
  635. {
  636. "name": "Márk Sági-Kazár",
  637. "email": "mark.sagikazar@gmail.com",
  638. "homepage": "https://github.com/sagikazarmark"
  639. },
  640. {
  641. "name": "Tobias Schultze",
  642. "email": "webmaster@tubo-world.de",
  643. "homepage": "https://github.com/Tobion"
  644. },
  645. {
  646. "name": "Márk Sági-Kazár",
  647. "email": "mark.sagikazar@gmail.com",
  648. "homepage": "https://sagikazarmark.hu"
  649. }
  650. ],
  651. "description": "PSR-7 message implementation that also provides common utility methods",
  652. "keywords": [
  653. "http",
  654. "message",
  655. "psr-7",
  656. "request",
  657. "response",
  658. "stream",
  659. "uri",
  660. "url"
  661. ],
  662. "support": {
  663. "issues": "https://github.com/guzzle/psr7/issues",
  664. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  665. },
  666. "funding": [
  667. {
  668. "url": "https://github.com/GrahamCampbell",
  669. "type": "github"
  670. },
  671. {
  672. "url": "https://github.com/Nyholm",
  673. "type": "github"
  674. },
  675. {
  676. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  677. "type": "tidelift"
  678. }
  679. ],
  680. "time": "2025-03-27T12:30:47+00:00"
  681. },
  682. {
  683. "name": "hyperf/cache",
  684. "version": "v3.1.43",
  685. "source": {
  686. "type": "git",
  687. "url": "https://github.com/hyperf/cache.git",
  688. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  689. },
  690. "dist": {
  691. "type": "zip",
  692. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  693. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  694. "shasum": ""
  695. },
  696. "require": {
  697. "hyperf/codec": "~3.1.0",
  698. "hyperf/collection": "~3.1.0",
  699. "hyperf/contract": "~3.1.0",
  700. "hyperf/support": "~3.1.0",
  701. "hyperf/utils": "~3.1.0",
  702. "php": ">=8.1",
  703. "psr/container": "^1.0 || ^2.0",
  704. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  705. },
  706. "suggest": {
  707. "hyperf/di": "Use cache annotations.",
  708. "hyperf/event": "Use listener to delete annotation cache."
  709. },
  710. "type": "library",
  711. "extra": {
  712. "hyperf": {
  713. "config": "Hyperf\\Cache\\ConfigProvider"
  714. },
  715. "branch-alias": {
  716. "dev-master": "3.1-dev"
  717. }
  718. },
  719. "autoload": {
  720. "psr-4": {
  721. "Hyperf\\Cache\\": "src/"
  722. }
  723. },
  724. "notification-url": "https://packagist.org/downloads/",
  725. "license": [
  726. "MIT"
  727. ],
  728. "description": "A cache component for hyperf.",
  729. "homepage": "https://hyperf.io",
  730. "keywords": [
  731. "cache",
  732. "hyperf",
  733. "php"
  734. ],
  735. "support": {
  736. "docs": "https://hyperf.wiki",
  737. "issues": "https://github.com/hyperf/hyperf/issues",
  738. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  739. "source": "https://github.com/hyperf/hyperf"
  740. },
  741. "funding": [
  742. {
  743. "url": "https://hyperf.wiki/#/zh-cn/donate",
  744. "type": "custom"
  745. },
  746. {
  747. "url": "https://opencollective.com/hyperf",
  748. "type": "open_collective"
  749. }
  750. ],
  751. "time": "2024-10-09T10:22:39+00:00"
  752. },
  753. {
  754. "name": "hyperf/code-parser",
  755. "version": "v3.1.52",
  756. "source": {
  757. "type": "git",
  758. "url": "https://github.com/hyperf/code-parser.git",
  759. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57"
  760. },
  761. "dist": {
  762. "type": "zip",
  763. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  764. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  765. "shasum": ""
  766. },
  767. "require": {
  768. "hyperf/collection": "~3.1.0",
  769. "hyperf/stringable": "~3.1.0",
  770. "hyperf/support": "~3.1.0",
  771. "php": ">=8.1"
  772. },
  773. "suggest": {
  774. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  775. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  776. },
  777. "type": "library",
  778. "extra": {
  779. "branch-alias": {
  780. "dev-master": "3.1-dev"
  781. }
  782. },
  783. "autoload": {
  784. "psr-4": {
  785. "Hyperf\\CodeParser\\": "src/"
  786. }
  787. },
  788. "notification-url": "https://packagist.org/downloads/",
  789. "license": [
  790. "MIT"
  791. ],
  792. "description": "A code parser component for Hyperf.",
  793. "homepage": "https://hyperf.io",
  794. "keywords": [
  795. "code-parser",
  796. "hyperf",
  797. "php",
  798. "swoole"
  799. ],
  800. "support": {
  801. "docs": "https://hyperf.wiki",
  802. "issues": "https://github.com/hyperf/hyperf/issues",
  803. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  804. "source": "https://github.com/hyperf/hyperf"
  805. },
  806. "funding": [
  807. {
  808. "url": "https://hyperf.wiki/#/zh-cn/donate",
  809. "type": "custom"
  810. },
  811. {
  812. "url": "https://opencollective.com/hyperf",
  813. "type": "open_collective"
  814. }
  815. ],
  816. "time": "2025-02-27T07:40:13+00:00"
  817. },
  818. {
  819. "name": "hyperf/codec",
  820. "version": "v3.1.42",
  821. "source": {
  822. "type": "git",
  823. "url": "https://github.com/hyperf/codec.git",
  824. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  825. },
  826. "dist": {
  827. "type": "zip",
  828. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  829. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  830. "shasum": ""
  831. },
  832. "require": {
  833. "ext-json": "*",
  834. "ext-xml": "*",
  835. "hyperf/contract": "~3.1.0",
  836. "php": ">=8.1"
  837. },
  838. "suggest": {
  839. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  840. },
  841. "type": "library",
  842. "extra": {
  843. "branch-alias": {
  844. "dev-master": "3.1-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Hyperf\\Codec\\": "src/"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "description": "A codec component for Hyperf.",
  857. "homepage": "https://hyperf.io",
  858. "keywords": [
  859. "codec",
  860. "hyperf",
  861. "php",
  862. "swoole"
  863. ],
  864. "support": {
  865. "docs": "https://hyperf.wiki",
  866. "issues": "https://github.com/hyperf/hyperf/issues",
  867. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  868. "source": "https://github.com/hyperf/hyperf"
  869. },
  870. "funding": [
  871. {
  872. "url": "https://hyperf.wiki/#/zh-cn/donate",
  873. "type": "custom"
  874. },
  875. {
  876. "url": "https://opencollective.com/hyperf",
  877. "type": "open_collective"
  878. }
  879. ],
  880. "time": "2024-09-25T02:54:12+00:00"
  881. },
  882. {
  883. "name": "hyperf/collection",
  884. "version": "v3.1.52",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/hyperf/collection.git",
  888. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/hyperf/collection/zipball/a56bfce5002c7d69838f7e82184a2e135e98e80a",
  893. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "hyperf/conditionable": "~3.1.0",
  898. "hyperf/contract": "~3.1.0",
  899. "hyperf/macroable": "~3.1.0",
  900. "hyperf/stringable": "~3.1.0",
  901. "php": ">=8.1"
  902. },
  903. "type": "library",
  904. "extra": {
  905. "branch-alias": {
  906. "dev-master": "3.1-dev"
  907. }
  908. },
  909. "autoload": {
  910. "files": [
  911. "src/Functions.php"
  912. ],
  913. "psr-4": {
  914. "Hyperf\\Collection\\": "src/"
  915. }
  916. },
  917. "notification-url": "https://packagist.org/downloads/",
  918. "license": [
  919. "MIT"
  920. ],
  921. "description": "Hyperf Collection package which come from illuminate/collections",
  922. "homepage": "https://hyperf.io",
  923. "keywords": [
  924. "collection",
  925. "hyperf",
  926. "php",
  927. "swoole"
  928. ],
  929. "support": {
  930. "docs": "https://hyperf.wiki",
  931. "issues": "https://github.com/hyperf/hyperf/issues",
  932. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  933. "source": "https://github.com/hyperf/hyperf"
  934. },
  935. "funding": [
  936. {
  937. "url": "https://hyperf.wiki/#/zh-cn/donate",
  938. "type": "custom"
  939. },
  940. {
  941. "url": "https://opencollective.com/hyperf",
  942. "type": "open_collective"
  943. }
  944. ],
  945. "time": "2025-02-17T03:58:59+00:00"
  946. },
  947. {
  948. "name": "hyperf/command",
  949. "version": "v3.1.51",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/hyperf/command.git",
  953. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/hyperf/command/zipball/e71af684e6f01140221b608b3d4f4cf6f78144fe",
  958. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe",
  959. "shasum": ""
  960. },
  961. "require": {
  962. "hyperf/collection": "~3.1.0",
  963. "hyperf/context": "~3.1.0",
  964. "hyperf/contract": "~3.1.0",
  965. "hyperf/coroutine": "~3.1.0",
  966. "hyperf/di": "~3.1.0",
  967. "hyperf/stringable": "~3.1.0",
  968. "hyperf/support": "~3.1.0",
  969. "hyperf/tappable": "~3.1.0",
  970. "php": ">=8.1",
  971. "psr/event-dispatcher": "^1.0",
  972. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  973. },
  974. "suggest": {
  975. "hyperf/di": "Required to use annotations.",
  976. "hyperf/event": "Required to use listeners."
  977. },
  978. "type": "library",
  979. "extra": {
  980. "hyperf": {
  981. "config": "Hyperf\\Command\\ConfigProvider"
  982. },
  983. "branch-alias": {
  984. "dev-master": "3.1-dev"
  985. }
  986. },
  987. "autoload": {
  988. "psr-4": {
  989. "Hyperf\\Command\\": "src/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "description": "Command for hyperf",
  997. "keywords": [
  998. "command",
  999. "php",
  1000. "swoole"
  1001. ],
  1002. "support": {
  1003. "issues": "https://github.com/hyperf/command/issues",
  1004. "source": "https://github.com/hyperf/command/tree/v3.1.51"
  1005. },
  1006. "funding": [
  1007. {
  1008. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1009. "type": "custom"
  1010. },
  1011. {
  1012. "url": "https://opencollective.com/hyperf",
  1013. "type": "open_collective"
  1014. }
  1015. ],
  1016. "time": "2025-02-06T03:40:37+00:00"
  1017. },
  1018. {
  1019. "name": "hyperf/conditionable",
  1020. "version": "v3.1.42",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/hyperf/conditionable.git",
  1024. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1029. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "php": ">=8.1"
  1034. },
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "3.1-dev"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Hyperf\\Conditionable\\": "src/"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1051. "homepage": "https://hyperf.io",
  1052. "keywords": [
  1053. "conditionable",
  1054. "hyperf",
  1055. "php",
  1056. "swoole"
  1057. ],
  1058. "support": {
  1059. "docs": "https://hyperf.wiki",
  1060. "issues": "https://github.com/hyperf/hyperf/issues",
  1061. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1062. "source": "https://github.com/hyperf/hyperf"
  1063. },
  1064. "funding": [
  1065. {
  1066. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1067. "type": "custom"
  1068. },
  1069. {
  1070. "url": "https://opencollective.com/hyperf",
  1071. "type": "open_collective"
  1072. }
  1073. ],
  1074. "time": "2024-09-25T02:54:12+00:00"
  1075. },
  1076. {
  1077. "name": "hyperf/config",
  1078. "version": "v3.1.42",
  1079. "source": {
  1080. "type": "git",
  1081. "url": "https://github.com/hyperf/config.git",
  1082. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1083. },
  1084. "dist": {
  1085. "type": "zip",
  1086. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1087. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1088. "shasum": ""
  1089. },
  1090. "require": {
  1091. "hyperf/collection": "~3.1.0",
  1092. "hyperf/contract": "~3.1.0",
  1093. "hyperf/support": "~3.1.0",
  1094. "php": ">=8.1",
  1095. "psr/container": "^1.0 || ^2.0",
  1096. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1097. },
  1098. "suggest": {
  1099. "hyperf/context": "Required to use config()",
  1100. "hyperf/di": "Allows using @Value annotation",
  1101. "hyperf/event": "Allows using @Value annotation",
  1102. "hyperf/framework": "Allows using @Value annotation",
  1103. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1104. },
  1105. "type": "library",
  1106. "extra": {
  1107. "hyperf": {
  1108. "config": "Hyperf\\Config\\ConfigProvider"
  1109. },
  1110. "branch-alias": {
  1111. "dev-master": "3.1-dev"
  1112. }
  1113. },
  1114. "autoload": {
  1115. "files": [
  1116. "./src/Functions.php"
  1117. ],
  1118. "psr-4": {
  1119. "Hyperf\\Config\\": "src/"
  1120. }
  1121. },
  1122. "notification-url": "https://packagist.org/downloads/",
  1123. "license": [
  1124. "MIT"
  1125. ],
  1126. "description": "An independent component that provides configuration container.",
  1127. "homepage": "https://hyperf.io",
  1128. "keywords": [
  1129. "config",
  1130. "configuration",
  1131. "hyperf",
  1132. "php",
  1133. "swoole"
  1134. ],
  1135. "support": {
  1136. "docs": "https://hyperf.wiki",
  1137. "issues": "https://github.com/hyperf/hyperf/issues",
  1138. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1139. "source": "https://github.com/hyperf/hyperf"
  1140. },
  1141. "funding": [
  1142. {
  1143. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1144. "type": "custom"
  1145. },
  1146. {
  1147. "url": "https://opencollective.com/hyperf",
  1148. "type": "open_collective"
  1149. }
  1150. ],
  1151. "time": "2024-09-25T02:54:12+00:00"
  1152. },
  1153. {
  1154. "name": "hyperf/constants",
  1155. "version": "v3.1.42",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/hyperf/constants.git",
  1159. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1164. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "hyperf/di": "~3.1.0",
  1169. "hyperf/support": "~3.1.0",
  1170. "hyperf/utils": "~3.1.0",
  1171. "php": ">=8.1"
  1172. },
  1173. "suggest": {
  1174. "hyperf/translation": "Required to use translation."
  1175. },
  1176. "type": "library",
  1177. "extra": {
  1178. "hyperf": {
  1179. "config": "Hyperf\\Constants\\ConfigProvider"
  1180. },
  1181. "branch-alias": {
  1182. "dev-master": "3.1-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-4": {
  1187. "Hyperf\\Constants\\": "src/"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "description": "A constants component for hyperf.",
  1195. "homepage": "https://hyperf.io",
  1196. "keywords": [
  1197. "constants",
  1198. "hyperf",
  1199. "php"
  1200. ],
  1201. "support": {
  1202. "docs": "https://hyperf.wiki",
  1203. "issues": "https://github.com/hyperf/hyperf/issues",
  1204. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1205. "source": "https://github.com/hyperf/hyperf"
  1206. },
  1207. "funding": [
  1208. {
  1209. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1210. "type": "custom"
  1211. },
  1212. {
  1213. "url": "https://opencollective.com/hyperf",
  1214. "type": "open_collective"
  1215. }
  1216. ],
  1217. "time": "2024-09-25T02:54:12+00:00"
  1218. },
  1219. {
  1220. "name": "hyperf/context",
  1221. "version": "v3.1.42",
  1222. "source": {
  1223. "type": "git",
  1224. "url": "https://github.com/hyperf/context.git",
  1225. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1226. },
  1227. "dist": {
  1228. "type": "zip",
  1229. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1230. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1231. "shasum": ""
  1232. },
  1233. "require": {
  1234. "hyperf/engine": "^2.0",
  1235. "php": ">=8.1"
  1236. },
  1237. "suggest": {
  1238. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1239. },
  1240. "type": "library",
  1241. "extra": {
  1242. "branch-alias": {
  1243. "dev-master": "3.1-dev"
  1244. }
  1245. },
  1246. "autoload": {
  1247. "psr-4": {
  1248. "Hyperf\\Context\\": "src/"
  1249. }
  1250. },
  1251. "notification-url": "https://packagist.org/downloads/",
  1252. "license": [
  1253. "MIT"
  1254. ],
  1255. "description": "A coroutine/application context library.",
  1256. "homepage": "https://hyperf.io",
  1257. "keywords": [
  1258. "Context",
  1259. "hyperf",
  1260. "php",
  1261. "swoole"
  1262. ],
  1263. "support": {
  1264. "docs": "https://hyperf.wiki",
  1265. "issues": "https://github.com/hyperf/hyperf/issues",
  1266. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1267. "source": "https://github.com/hyperf/hyperf"
  1268. },
  1269. "funding": [
  1270. {
  1271. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1272. "type": "custom"
  1273. },
  1274. {
  1275. "url": "https://opencollective.com/hyperf",
  1276. "type": "open_collective"
  1277. }
  1278. ],
  1279. "time": "2024-09-25T02:54:12+00:00"
  1280. },
  1281. {
  1282. "name": "hyperf/contract",
  1283. "version": "v3.1.42",
  1284. "source": {
  1285. "type": "git",
  1286. "url": "https://github.com/hyperf/contract.git",
  1287. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1288. },
  1289. "dist": {
  1290. "type": "zip",
  1291. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1292. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1293. "shasum": ""
  1294. },
  1295. "require": {
  1296. "php": ">=8.1"
  1297. },
  1298. "type": "library",
  1299. "extra": {
  1300. "branch-alias": {
  1301. "dev-master": "3.1-dev"
  1302. }
  1303. },
  1304. "autoload": {
  1305. "psr-4": {
  1306. "Hyperf\\Contract\\": "src/"
  1307. }
  1308. },
  1309. "notification-url": "https://packagist.org/downloads/",
  1310. "license": [
  1311. "MIT"
  1312. ],
  1313. "description": "The contracts of Hyperf.",
  1314. "homepage": "https://hyperf.io",
  1315. "keywords": [
  1316. "hyperf",
  1317. "php",
  1318. "swoole"
  1319. ],
  1320. "support": {
  1321. "docs": "https://hyperf.wiki",
  1322. "issues": "https://github.com/hyperf/hyperf/issues",
  1323. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1324. "source": "https://github.com/hyperf/hyperf"
  1325. },
  1326. "funding": [
  1327. {
  1328. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1329. "type": "custom"
  1330. },
  1331. {
  1332. "url": "https://opencollective.com/hyperf",
  1333. "type": "open_collective"
  1334. }
  1335. ],
  1336. "time": "2024-09-25T02:54:12+00:00"
  1337. },
  1338. {
  1339. "name": "hyperf/coordinator",
  1340. "version": "v3.1.42",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/hyperf/coordinator.git",
  1344. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1349. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "hyperf/engine": "^2.0",
  1354. "php": ">=8.1"
  1355. },
  1356. "type": "library",
  1357. "extra": {
  1358. "branch-alias": {
  1359. "dev-master": "3.1-dev"
  1360. }
  1361. },
  1362. "autoload": {
  1363. "files": [
  1364. "src/Functions.php"
  1365. ],
  1366. "psr-4": {
  1367. "Hyperf\\Coordinator\\": "src/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "description": "Hyperf Coordinator",
  1375. "homepage": "https://hyperf.io",
  1376. "keywords": [
  1377. "Coordinator",
  1378. "hyperf",
  1379. "php",
  1380. "swoole"
  1381. ],
  1382. "support": {
  1383. "docs": "https://hyperf.wiki",
  1384. "issues": "https://github.com/hyperf/hyperf/issues",
  1385. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1386. "source": "https://github.com/hyperf/hyperf"
  1387. },
  1388. "funding": [
  1389. {
  1390. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1391. "type": "custom"
  1392. },
  1393. {
  1394. "url": "https://opencollective.com/hyperf",
  1395. "type": "open_collective"
  1396. }
  1397. ],
  1398. "time": "2024-09-25T02:54:12+00:00"
  1399. },
  1400. {
  1401. "name": "hyperf/coroutine",
  1402. "version": "v3.1.54",
  1403. "source": {
  1404. "type": "git",
  1405. "url": "https://github.com/hyperf/coroutine.git",
  1406. "reference": "5b474c4bb46be015f1340939d92931b96a0b0cad"
  1407. },
  1408. "dist": {
  1409. "type": "zip",
  1410. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/5b474c4bb46be015f1340939d92931b96a0b0cad",
  1411. "reference": "5b474c4bb46be015f1340939d92931b96a0b0cad",
  1412. "shasum": ""
  1413. },
  1414. "require": {
  1415. "hyperf/context": "~3.1.0",
  1416. "hyperf/contract": "~3.1.0",
  1417. "hyperf/engine": "^2.14.0",
  1418. "php": ">=8.1"
  1419. },
  1420. "type": "library",
  1421. "extra": {
  1422. "branch-alias": {
  1423. "dev-master": "3.1-dev"
  1424. }
  1425. },
  1426. "autoload": {
  1427. "files": [
  1428. "src/Functions.php"
  1429. ],
  1430. "psr-4": {
  1431. "Hyperf\\Coroutine\\": "src/"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "description": "Hyperf Coroutine",
  1439. "homepage": "https://hyperf.io",
  1440. "keywords": [
  1441. "coroutine",
  1442. "hyperf",
  1443. "php",
  1444. "swoole"
  1445. ],
  1446. "support": {
  1447. "docs": "https://hyperf.wiki",
  1448. "issues": "https://github.com/hyperf/hyperf/issues",
  1449. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1450. "source": "https://github.com/hyperf/hyperf"
  1451. },
  1452. "funding": [
  1453. {
  1454. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1455. "type": "custom"
  1456. },
  1457. {
  1458. "url": "https://opencollective.com/hyperf",
  1459. "type": "open_collective"
  1460. }
  1461. ],
  1462. "time": "2025-04-14T01:38:29+00:00"
  1463. },
  1464. {
  1465. "name": "hyperf/database",
  1466. "version": "v3.1.54",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/hyperf/database.git",
  1470. "reference": "efae6d4694652fe3bb61e2f39c7f0a2e6813762d"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/hyperf/database/zipball/efae6d4694652fe3bb61e2f39c7f0a2e6813762d",
  1475. "reference": "efae6d4694652fe3bb61e2f39c7f0a2e6813762d",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "hyperf/code-parser": "~3.1.0",
  1480. "hyperf/collection": "~3.1.23",
  1481. "hyperf/conditionable": "~3.1.0",
  1482. "hyperf/macroable": "~3.1.0",
  1483. "hyperf/support": "~3.1.0",
  1484. "hyperf/tappable": "~3.1.0",
  1485. "hyperf/utils": "~3.1.0",
  1486. "nesbot/carbon": "^2.0",
  1487. "php": ">=8.1",
  1488. "psr/container": "^1.0 || ^2.0",
  1489. "psr/event-dispatcher": "^1.0"
  1490. },
  1491. "suggest": {
  1492. "doctrine/dbal": "Required to rename columns (^3.0).",
  1493. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1494. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1495. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1496. },
  1497. "type": "library",
  1498. "extra": {
  1499. "branch-alias": {
  1500. "dev-master": "3.1-dev"
  1501. }
  1502. },
  1503. "autoload": {
  1504. "psr-4": {
  1505. "Hyperf\\Database\\": "src/"
  1506. }
  1507. },
  1508. "notification-url": "https://packagist.org/downloads/",
  1509. "license": [
  1510. "MIT"
  1511. ],
  1512. "description": "A flexible database library.",
  1513. "homepage": "https://hyperf.io",
  1514. "keywords": [
  1515. "database",
  1516. "hyperf",
  1517. "php"
  1518. ],
  1519. "support": {
  1520. "docs": "https://hyperf.wiki",
  1521. "issues": "https://github.com/hyperf/hyperf/issues",
  1522. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1523. "source": "https://github.com/hyperf/hyperf"
  1524. },
  1525. "funding": [
  1526. {
  1527. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1528. "type": "custom"
  1529. },
  1530. {
  1531. "url": "https://opencollective.com/hyperf",
  1532. "type": "open_collective"
  1533. }
  1534. ],
  1535. "time": "2025-04-14T01:39:13+00:00"
  1536. },
  1537. {
  1538. "name": "hyperf/db-connection",
  1539. "version": "v3.1.44",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/hyperf/db-connection.git",
  1543. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  1548. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  1549. "shasum": ""
  1550. },
  1551. "require": {
  1552. "hyperf/database": "~3.1.0",
  1553. "hyperf/di": "~3.1.0",
  1554. "hyperf/framework": "~3.1.0",
  1555. "hyperf/model-listener": "~3.1.0",
  1556. "hyperf/pool": "~3.1.0",
  1557. "hyperf/support": "~3.1.0",
  1558. "hyperf/utils": "~3.1.0",
  1559. "php": ">=8.1",
  1560. "psr/container": "^1.0 || ^2.0"
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "hyperf": {
  1565. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1566. },
  1567. "branch-alias": {
  1568. "dev-master": "3.1-dev"
  1569. }
  1570. },
  1571. "autoload": {
  1572. "psr-4": {
  1573. "Hyperf\\DbConnection\\": "src/"
  1574. }
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "MIT"
  1579. ],
  1580. "description": "A hyperf db connection handler for hyperf/database.",
  1581. "homepage": "https://hyperf.io",
  1582. "keywords": [
  1583. "Connection",
  1584. "database",
  1585. "hyperf",
  1586. "php"
  1587. ],
  1588. "support": {
  1589. "docs": "https://hyperf.wiki",
  1590. "issues": "https://github.com/hyperf/hyperf/issues",
  1591. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1592. "source": "https://github.com/hyperf/hyperf"
  1593. },
  1594. "funding": [
  1595. {
  1596. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1597. "type": "custom"
  1598. },
  1599. {
  1600. "url": "https://opencollective.com/hyperf",
  1601. "type": "open_collective"
  1602. }
  1603. ],
  1604. "time": "2024-10-11T08:58:16+00:00"
  1605. },
  1606. {
  1607. "name": "hyperf/di",
  1608. "version": "v3.1.53",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/hyperf/di.git",
  1612. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/hyperf/di/zipball/13a89409da739102c7fc308ef53bdd2694cb220b",
  1617. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "doctrine/instantiator": "^1.0",
  1622. "hyperf/code-parser": "~3.1.0",
  1623. "hyperf/pipeline": "~3.1.0",
  1624. "hyperf/stdlib": "~3.1.0",
  1625. "hyperf/support": "~3.1.0",
  1626. "nikic/php-parser": "^4.1",
  1627. "php": ">=8.1",
  1628. "php-di/phpdoc-reader": "^2.2",
  1629. "psr/container": "^1.0 || ^2.0",
  1630. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  1631. "vlucas/phpdotenv": "^5.0"
  1632. },
  1633. "suggest": {
  1634. "ext-pcntl": "Required to scan annotations.",
  1635. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  1636. },
  1637. "type": "library",
  1638. "extra": {
  1639. "hyperf": {
  1640. "config": "Hyperf\\Di\\ConfigProvider"
  1641. },
  1642. "branch-alias": {
  1643. "dev-master": "3.1-dev"
  1644. }
  1645. },
  1646. "autoload": {
  1647. "psr-4": {
  1648. "Hyperf\\Di\\": "src/"
  1649. }
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "MIT"
  1654. ],
  1655. "description": "A DI for Hyperf.",
  1656. "homepage": "https://hyperf.io",
  1657. "keywords": [
  1658. "annotation",
  1659. "di",
  1660. "hyperf",
  1661. "php",
  1662. "swoole"
  1663. ],
  1664. "support": {
  1665. "docs": "https://hyperf.wiki",
  1666. "issues": "https://github.com/hyperf/hyperf/issues",
  1667. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1668. "source": "https://github.com/hyperf/hyperf"
  1669. },
  1670. "funding": [
  1671. {
  1672. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1673. "type": "custom"
  1674. },
  1675. {
  1676. "url": "https://opencollective.com/hyperf",
  1677. "type": "open_collective"
  1678. }
  1679. ],
  1680. "time": "2025-04-03T08:36:04+00:00"
  1681. },
  1682. {
  1683. "name": "hyperf/dispatcher",
  1684. "version": "v3.1.42",
  1685. "source": {
  1686. "type": "git",
  1687. "url": "https://github.com/hyperf/dispatcher.git",
  1688. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  1689. },
  1690. "dist": {
  1691. "type": "zip",
  1692. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  1693. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  1694. "shasum": ""
  1695. },
  1696. "require": {
  1697. "hyperf/contract": "~3.1.0",
  1698. "php": ">=8.1",
  1699. "psr/container": "^1.0 || ^2.0",
  1700. "psr/http-message": "^1.0 || ^2.0",
  1701. "psr/http-server-middleware": "^1.0"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "hyperf": {
  1706. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  1707. },
  1708. "branch-alias": {
  1709. "dev-master": "3.1-dev"
  1710. }
  1711. },
  1712. "autoload": {
  1713. "psr-4": {
  1714. "Hyperf\\Dispatcher\\": "src/"
  1715. }
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "MIT"
  1720. ],
  1721. "description": "A HTTP Server for Hyperf.",
  1722. "homepage": "https://hyperf.io",
  1723. "keywords": [
  1724. "dispatcher",
  1725. "filter",
  1726. "hyperf",
  1727. "middleware",
  1728. "php",
  1729. "swoole"
  1730. ],
  1731. "support": {
  1732. "docs": "https://hyperf.wiki",
  1733. "issues": "https://github.com/hyperf/hyperf/issues",
  1734. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1735. "source": "https://github.com/hyperf/hyperf"
  1736. },
  1737. "funding": [
  1738. {
  1739. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1740. "type": "custom"
  1741. },
  1742. {
  1743. "url": "https://opencollective.com/hyperf",
  1744. "type": "open_collective"
  1745. }
  1746. ],
  1747. "time": "2024-09-25T02:54:12+00:00"
  1748. },
  1749. {
  1750. "name": "hyperf/engine",
  1751. "version": "v2.14.0",
  1752. "source": {
  1753. "type": "git",
  1754. "url": "https://github.com/hyperf/engine.git",
  1755. "reference": "74ec5130fa0838e285a24292a232ce455edccff8"
  1756. },
  1757. "dist": {
  1758. "type": "zip",
  1759. "url": "https://api.github.com/repos/hyperf/engine/zipball/74ec5130fa0838e285a24292a232ce455edccff8",
  1760. "reference": "74ec5130fa0838e285a24292a232ce455edccff8",
  1761. "shasum": ""
  1762. },
  1763. "require": {
  1764. "hyperf/engine-contract": "~1.13.0",
  1765. "php": ">=8.0"
  1766. },
  1767. "conflict": {
  1768. "ext-swoole": "<5.0"
  1769. },
  1770. "require-dev": {
  1771. "friendsofphp/php-cs-fixer": "^3.0",
  1772. "hyperf/guzzle": "^3.0",
  1773. "hyperf/http-message": "^3.0",
  1774. "mockery/mockery": "^1.5",
  1775. "phpstan/phpstan": "^1.0",
  1776. "phpunit/phpunit": "^9.4",
  1777. "swoole/ide-helper": "5.*"
  1778. },
  1779. "suggest": {
  1780. "ext-sockets": "*",
  1781. "ext-swoole": ">=5.0",
  1782. "hyperf/http-message": "Required to use ResponseEmitter.",
  1783. "psr/http-message": "Required to use WebSocket Frame."
  1784. },
  1785. "type": "library",
  1786. "extra": {
  1787. "hyperf": {
  1788. "config": "Hyperf\\Engine\\ConfigProvider"
  1789. },
  1790. "branch-alias": {
  1791. "dev-master": "2.14-dev"
  1792. }
  1793. },
  1794. "autoload": {
  1795. "files": [
  1796. "src/Functions.php"
  1797. ],
  1798. "psr-4": {
  1799. "Hyperf\\Engine\\": "src/"
  1800. }
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "description": "Coroutine engine provided by swoole.",
  1807. "keywords": [
  1808. "engine",
  1809. "hyperf",
  1810. "php",
  1811. "swoole"
  1812. ],
  1813. "support": {
  1814. "issues": "https://github.com/hyperf/engine/issues",
  1815. "source": "https://github.com/hyperf/engine/tree/v2.14.0"
  1816. },
  1817. "funding": [
  1818. {
  1819. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1820. "type": "custom"
  1821. },
  1822. {
  1823. "url": "https://opencollective.com/hyperf",
  1824. "type": "open_collective"
  1825. }
  1826. ],
  1827. "time": "2025-04-13T15:11:22+00:00"
  1828. },
  1829. {
  1830. "name": "hyperf/engine-contract",
  1831. "version": "v1.13.0",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/hyperf/engine-contract.git",
  1835. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  1840. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  1841. "shasum": ""
  1842. },
  1843. "require": {
  1844. "php": ">=8.0"
  1845. },
  1846. "require-dev": {
  1847. "friendsofphp/php-cs-fixer": "^3.0",
  1848. "mockery/mockery": "^1.0",
  1849. "phpstan/phpstan": "^1.0",
  1850. "phpunit/phpunit": ">=7.0",
  1851. "psr/http-message": "^1.0",
  1852. "swoole/ide-helper": "^4.5"
  1853. },
  1854. "suggest": {
  1855. "psr/http-message": "Required to use WebSocket Frame."
  1856. },
  1857. "type": "library",
  1858. "extra": {
  1859. "branch-alias": {
  1860. "dev-master": "1.11-dev"
  1861. }
  1862. },
  1863. "autoload": {
  1864. "psr-4": {
  1865. "Hyperf\\Engine\\Contract\\": "src/"
  1866. }
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "description": "Contract for Coroutine Engine",
  1873. "keywords": [
  1874. "contract",
  1875. "coroutine",
  1876. "engine",
  1877. "hyperf",
  1878. "php"
  1879. ],
  1880. "support": {
  1881. "issues": "https://github.com/hyperf/engine-contract/issues",
  1882. "source": "https://github.com/hyperf/engine-contract/tree/v1.13.0"
  1883. },
  1884. "funding": [
  1885. {
  1886. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1887. "type": "custom"
  1888. },
  1889. {
  1890. "url": "https://opencollective.com/hyperf",
  1891. "type": "open_collective"
  1892. }
  1893. ],
  1894. "time": "2025-04-13T14:48:14+00:00"
  1895. },
  1896. {
  1897. "name": "hyperf/event",
  1898. "version": "v3.1.42",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/hyperf/event.git",
  1902. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  1907. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "hyperf/contract": "~3.1.0",
  1912. "hyperf/stdlib": "~3.1.0",
  1913. "php": ">=8.1",
  1914. "psr/event-dispatcher": "^1.0"
  1915. },
  1916. "suggest": {
  1917. "hyperf/di": "Required to use annotatioins."
  1918. },
  1919. "type": "library",
  1920. "extra": {
  1921. "hyperf": {
  1922. "config": "Hyperf\\Event\\ConfigProvider"
  1923. },
  1924. "branch-alias": {
  1925. "dev-master": "3.1-dev"
  1926. }
  1927. },
  1928. "autoload": {
  1929. "psr-4": {
  1930. "Hyperf\\Event\\": "src/"
  1931. }
  1932. },
  1933. "notification-url": "https://packagist.org/downloads/",
  1934. "license": [
  1935. "MIT"
  1936. ],
  1937. "description": "an event manager that implements PSR-14.",
  1938. "homepage": "https://hyperf.io",
  1939. "keywords": [
  1940. "event",
  1941. "hyperf",
  1942. "php",
  1943. "swoole"
  1944. ],
  1945. "support": {
  1946. "docs": "https://hyperf.wiki",
  1947. "issues": "https://github.com/hyperf/hyperf/issues",
  1948. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1949. "source": "https://github.com/hyperf/hyperf"
  1950. },
  1951. "funding": [
  1952. {
  1953. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1954. "type": "custom"
  1955. },
  1956. {
  1957. "url": "https://opencollective.com/hyperf",
  1958. "type": "open_collective"
  1959. }
  1960. ],
  1961. "time": "2024-09-25T02:54:12+00:00"
  1962. },
  1963. {
  1964. "name": "hyperf/exception-handler",
  1965. "version": "v3.1.42",
  1966. "source": {
  1967. "type": "git",
  1968. "url": "https://github.com/hyperf/exception-handler.git",
  1969. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  1970. },
  1971. "dist": {
  1972. "type": "zip",
  1973. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  1974. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  1975. "shasum": ""
  1976. },
  1977. "require": {
  1978. "hyperf/context": "~3.1.0",
  1979. "hyperf/contract": "~3.1.0",
  1980. "hyperf/dispatcher": "~3.1.0",
  1981. "hyperf/http-message": "~3.1.0",
  1982. "hyperf/stdlib": "~3.1.0",
  1983. "hyperf/support": "~3.1.0",
  1984. "php": ">=8.1",
  1985. "psr/container": "^1.0 || ^2.0",
  1986. "psr/http-message": "^1.0 || ^2.0",
  1987. "swow/psr7-plus": "^1.0"
  1988. },
  1989. "suggest": {
  1990. "hyperf/di": "Required to use #[ExceptionHandler]",
  1991. "hyperf/event": "Required to use listeners",
  1992. "hyperf/framework": "Required to use listeners",
  1993. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  1994. },
  1995. "type": "library",
  1996. "extra": {
  1997. "hyperf": {
  1998. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  1999. },
  2000. "branch-alias": {
  2001. "dev-master": "3.1-dev"
  2002. }
  2003. },
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Hyperf\\ExceptionHandler\\": "src/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "description": "Exception handler for hyperf",
  2014. "homepage": "https://hyperf.io",
  2015. "keywords": [
  2016. "exception-handler",
  2017. "php",
  2018. "swoole"
  2019. ],
  2020. "support": {
  2021. "docs": "https://hyperf.wiki",
  2022. "issues": "https://github.com/hyperf/hyperf/issues",
  2023. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2024. "source": "https://github.com/hyperf/hyperf"
  2025. },
  2026. "funding": [
  2027. {
  2028. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2029. "type": "custom"
  2030. },
  2031. {
  2032. "url": "https://opencollective.com/hyperf",
  2033. "type": "open_collective"
  2034. }
  2035. ],
  2036. "time": "2024-09-25T02:54:12+00:00"
  2037. },
  2038. {
  2039. "name": "hyperf/framework",
  2040. "version": "v3.1.42",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/hyperf/framework.git",
  2044. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2049. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "fig/http-message-util": "^1.1.2",
  2054. "hyperf/contract": "~3.1.0",
  2055. "hyperf/coordinator": "~3.1.0",
  2056. "hyperf/coroutine": "~3.1.0",
  2057. "php": ">=8.1",
  2058. "psr/container": "^1.0 || ^2.0",
  2059. "psr/event-dispatcher": "^1.0",
  2060. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2061. },
  2062. "suggest": {
  2063. "ext-swoole": "Required to use swoole engine.",
  2064. "hyperf/command": "Required to use Command annotation.",
  2065. "hyperf/di": "Required to use Command annotation.",
  2066. "hyperf/dispatcher": "Required to use BootApplication event.",
  2067. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2068. },
  2069. "type": "library",
  2070. "extra": {
  2071. "hyperf": {
  2072. "config": "Hyperf\\Framework\\ConfigProvider"
  2073. },
  2074. "branch-alias": {
  2075. "dev-master": "3.1-dev"
  2076. }
  2077. },
  2078. "autoload": {
  2079. "psr-4": {
  2080. "Hyperf\\Framework\\": "src/"
  2081. }
  2082. },
  2083. "notification-url": "https://packagist.org/downloads/",
  2084. "license": [
  2085. "MIT"
  2086. ],
  2087. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2088. "homepage": "https://hyperf.io",
  2089. "keywords": [
  2090. "Microservice",
  2091. "framework",
  2092. "hyperf",
  2093. "middleware",
  2094. "php",
  2095. "swoole"
  2096. ],
  2097. "support": {
  2098. "docs": "https://hyperf.wiki",
  2099. "issues": "https://github.com/hyperf/hyperf/issues",
  2100. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2101. "source": "https://github.com/hyperf/hyperf"
  2102. },
  2103. "funding": [
  2104. {
  2105. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2106. "type": "custom"
  2107. },
  2108. {
  2109. "url": "https://opencollective.com/hyperf",
  2110. "type": "open_collective"
  2111. }
  2112. ],
  2113. "time": "2024-09-25T02:54:12+00:00"
  2114. },
  2115. {
  2116. "name": "hyperf/guzzle",
  2117. "version": "v3.1.42",
  2118. "source": {
  2119. "type": "git",
  2120. "url": "https://github.com/hyperf/guzzle.git",
  2121. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2122. },
  2123. "dist": {
  2124. "type": "zip",
  2125. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2126. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2127. "shasum": ""
  2128. },
  2129. "require": {
  2130. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2131. "php": ">=8.1",
  2132. "psr/container": "^1.0 || ^2.0",
  2133. "psr/http-message": "^1.0 || ^2.0"
  2134. },
  2135. "suggest": {
  2136. "ext-curl": "Required for CURL handler support",
  2137. "hyperf/pool": "Required to use pool handler."
  2138. },
  2139. "type": "library",
  2140. "extra": {
  2141. "hyperf": {
  2142. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2143. },
  2144. "branch-alias": {
  2145. "dev-master": "3.1-dev"
  2146. }
  2147. },
  2148. "autoload": {
  2149. "psr-4": {
  2150. "Hyperf\\Guzzle\\": "src/"
  2151. }
  2152. },
  2153. "notification-url": "https://packagist.org/downloads/",
  2154. "license": [
  2155. "MIT"
  2156. ],
  2157. "description": "Swoole coroutine handler for guzzle",
  2158. "keywords": [
  2159. "Guzzle",
  2160. "handler",
  2161. "php",
  2162. "swoole"
  2163. ],
  2164. "support": {
  2165. "issues": "https://github.com/hyperf/guzzle/issues",
  2166. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2167. },
  2168. "funding": [
  2169. {
  2170. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2171. "type": "custom"
  2172. },
  2173. {
  2174. "url": "https://opencollective.com/hyperf",
  2175. "type": "open_collective"
  2176. }
  2177. ],
  2178. "time": "2024-09-25T02:54:12+00:00"
  2179. },
  2180. {
  2181. "name": "hyperf/http-message",
  2182. "version": "v3.1.48",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://github.com/hyperf/http-message.git",
  2186. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2191. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2192. "shasum": ""
  2193. },
  2194. "require": {
  2195. "hyperf/codec": "~3.1.0",
  2196. "hyperf/engine": "^2.11",
  2197. "hyperf/support": "~3.1.0",
  2198. "laminas/laminas-mime": "^2.7",
  2199. "php": ">=8.1",
  2200. "psr/http-message": "^1.0 || ^2.0",
  2201. "swow/psr7-plus": "^1.0"
  2202. },
  2203. "suggest": {
  2204. "psr/container": "Required to replace RequestParserInterface."
  2205. },
  2206. "type": "library",
  2207. "extra": {
  2208. "hyperf": {
  2209. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2210. },
  2211. "branch-alias": {
  2212. "dev-master": "3.1-dev"
  2213. }
  2214. },
  2215. "autoload": {
  2216. "psr-4": {
  2217. "Hyperf\\HttpMessage\\": "src/"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "description": "microservice framework base on swoole",
  2225. "keywords": [
  2226. "http-message",
  2227. "hyperf",
  2228. "php",
  2229. "swoole"
  2230. ],
  2231. "support": {
  2232. "issues": "https://github.com/hyperf/http-message/issues",
  2233. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2234. },
  2235. "funding": [
  2236. {
  2237. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2238. "type": "custom"
  2239. },
  2240. {
  2241. "url": "https://opencollective.com/hyperf",
  2242. "type": "open_collective"
  2243. }
  2244. ],
  2245. "time": "2024-12-05T02:41:08+00:00"
  2246. },
  2247. {
  2248. "name": "hyperf/http-server",
  2249. "version": "v3.1.55",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/hyperf/http-server.git",
  2253. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/hyperf/http-server/zipball/96a1d80cd9482942899d7068af0e6ecb78d382ce",
  2258. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce",
  2259. "shasum": ""
  2260. },
  2261. "require": {
  2262. "hyperf/codec": "~3.1.0",
  2263. "hyperf/collection": "~3.1.0",
  2264. "hyperf/context": "~3.1.0",
  2265. "hyperf/contract": "~3.1.0",
  2266. "hyperf/coroutine": "~3.1.0",
  2267. "hyperf/dispatcher": "~3.1.0",
  2268. "hyperf/event": "~3.1.0",
  2269. "hyperf/exception-handler": "~3.1.0",
  2270. "hyperf/http-message": "~3.1.0",
  2271. "hyperf/macroable": "~3.1.0",
  2272. "hyperf/serializer": "~3.1.0",
  2273. "hyperf/server": "~3.1.0",
  2274. "hyperf/stdlib": "~3.1.0",
  2275. "hyperf/support": "~3.1.0",
  2276. "nikic/fast-route": "^1.3",
  2277. "php": ">=8.1",
  2278. "psr/container": "^1.0 || ^2.0",
  2279. "swow/psr7-plus": "^1.0"
  2280. },
  2281. "suggest": {
  2282. "hyperf/di": "Required to use annotations."
  2283. },
  2284. "type": "library",
  2285. "extra": {
  2286. "hyperf": {
  2287. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2288. },
  2289. "branch-alias": {
  2290. "dev-master": "3.1-dev"
  2291. }
  2292. },
  2293. "autoload": {
  2294. "psr-4": {
  2295. "Hyperf\\HttpServer\\": "src/"
  2296. }
  2297. },
  2298. "notification-url": "https://packagist.org/downloads/",
  2299. "license": [
  2300. "MIT"
  2301. ],
  2302. "description": "A HTTP Server for Hyperf.",
  2303. "homepage": "https://hyperf.io",
  2304. "keywords": [
  2305. "http",
  2306. "http-server",
  2307. "hyperf",
  2308. "php",
  2309. "swoole"
  2310. ],
  2311. "support": {
  2312. "docs": "https://hyperf.wiki",
  2313. "issues": "https://github.com/hyperf/hyperf/issues",
  2314. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2315. "source": "https://github.com/hyperf/hyperf"
  2316. },
  2317. "funding": [
  2318. {
  2319. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2320. "type": "custom"
  2321. },
  2322. {
  2323. "url": "https://opencollective.com/hyperf",
  2324. "type": "open_collective"
  2325. }
  2326. ],
  2327. "time": "2025-05-14T07:44:25+00:00"
  2328. },
  2329. {
  2330. "name": "hyperf/json-rpc",
  2331. "version": "v3.1.47",
  2332. "source": {
  2333. "type": "git",
  2334. "url": "https://github.com/hyperf/json-rpc.git",
  2335. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2336. },
  2337. "dist": {
  2338. "type": "zip",
  2339. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2340. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2341. "shasum": ""
  2342. },
  2343. "require": {
  2344. "hyperf/codec": "~3.1.0",
  2345. "hyperf/context": "~3.1.0",
  2346. "hyperf/contract": "~3.1.0",
  2347. "hyperf/engine": "^2.0",
  2348. "hyperf/http-message": "~3.1.0",
  2349. "hyperf/load-balancer": "~3.1.0",
  2350. "hyperf/rpc": "~3.1.0",
  2351. "hyperf/serializer": "~3.1.0",
  2352. "hyperf/support": "~3.1.0",
  2353. "hyperf/utils": "~3.1.0",
  2354. "php": ">=8.1",
  2355. "psr/container": "^1.0 || ^2.0",
  2356. "swow/psr7-plus": "^1.0"
  2357. },
  2358. "suggest": {
  2359. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2360. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2361. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2362. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2363. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2364. },
  2365. "type": "library",
  2366. "extra": {
  2367. "hyperf": {
  2368. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2369. },
  2370. "branch-alias": {
  2371. "dev-master": "3.1-dev"
  2372. }
  2373. },
  2374. "autoload": {
  2375. "psr-4": {
  2376. "Hyperf\\JsonRpc\\": "src/"
  2377. }
  2378. },
  2379. "notification-url": "https://packagist.org/downloads/",
  2380. "license": [
  2381. "MIT"
  2382. ],
  2383. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2384. "homepage": "https://hyperf.io",
  2385. "keywords": [
  2386. "hyperf",
  2387. "json-rpc",
  2388. "php",
  2389. "swoole"
  2390. ],
  2391. "support": {
  2392. "docs": "https://hyperf.wiki",
  2393. "issues": "https://github.com/hyperf/hyperf/issues",
  2394. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2395. "source": "https://github.com/hyperf/hyperf"
  2396. },
  2397. "funding": [
  2398. {
  2399. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2400. "type": "custom"
  2401. },
  2402. {
  2403. "url": "https://opencollective.com/hyperf",
  2404. "type": "open_collective"
  2405. }
  2406. ],
  2407. "time": "2024-11-28T01:51:55+00:00"
  2408. },
  2409. {
  2410. "name": "hyperf/load-balancer",
  2411. "version": "v3.1.42",
  2412. "source": {
  2413. "type": "git",
  2414. "url": "https://github.com/hyperf/load-balancer.git",
  2415. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2416. },
  2417. "dist": {
  2418. "type": "zip",
  2419. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2420. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2421. "shasum": ""
  2422. },
  2423. "require": {
  2424. "hyperf/coordinator": "~3.1.0",
  2425. "hyperf/coroutine": "~3.1.0",
  2426. "markrogoyski/math-php": "^2.0",
  2427. "php": ">=8.1",
  2428. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2429. },
  2430. "type": "library",
  2431. "extra": {
  2432. "hyperf": {
  2433. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2434. },
  2435. "branch-alias": {
  2436. "dev-master": "3.1-dev"
  2437. }
  2438. },
  2439. "autoload": {
  2440. "psr-4": {
  2441. "Hyperf\\LoadBalancer\\": "src/"
  2442. }
  2443. },
  2444. "notification-url": "https://packagist.org/downloads/",
  2445. "license": [
  2446. "MIT"
  2447. ],
  2448. "description": "A load balancer library for Hyperf.",
  2449. "homepage": "https://hyperf.io",
  2450. "keywords": [
  2451. "hyperf",
  2452. "load-balancer",
  2453. "php",
  2454. "swoole"
  2455. ],
  2456. "support": {
  2457. "docs": "https://hyperf.wiki",
  2458. "issues": "https://github.com/hyperf/hyperf/issues",
  2459. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2460. "source": "https://github.com/hyperf/hyperf"
  2461. },
  2462. "funding": [
  2463. {
  2464. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2465. "type": "custom"
  2466. },
  2467. {
  2468. "url": "https://opencollective.com/hyperf",
  2469. "type": "open_collective"
  2470. }
  2471. ],
  2472. "time": "2024-09-25T02:54:12+00:00"
  2473. },
  2474. {
  2475. "name": "hyperf/logger",
  2476. "version": "v3.1.55",
  2477. "source": {
  2478. "type": "git",
  2479. "url": "https://github.com/hyperf/logger.git",
  2480. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6"
  2481. },
  2482. "dist": {
  2483. "type": "zip",
  2484. "url": "https://api.github.com/repos/hyperf/logger/zipball/8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  2485. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  2486. "shasum": ""
  2487. },
  2488. "require": {
  2489. "hyperf/contract": "~3.1.0",
  2490. "hyperf/support": "~3.1.0",
  2491. "hyperf/utils": "~3.1.0",
  2492. "monolog/monolog": "^2.7 || ^3.1",
  2493. "php": ">=8.1",
  2494. "psr/container": "^1.0 || ^2.0",
  2495. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2496. },
  2497. "type": "library",
  2498. "extra": {
  2499. "hyperf": {
  2500. "config": "Hyperf\\Logger\\ConfigProvider"
  2501. },
  2502. "branch-alias": {
  2503. "dev-master": "3.1-dev"
  2504. }
  2505. },
  2506. "autoload": {
  2507. "psr-4": {
  2508. "Hyperf\\Logger\\": "src/"
  2509. }
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "description": "A logger component for hyperf.",
  2516. "homepage": "https://hyperf.io",
  2517. "keywords": [
  2518. "hyperf",
  2519. "logger",
  2520. "php"
  2521. ],
  2522. "support": {
  2523. "docs": "https://hyperf.wiki",
  2524. "issues": "https://github.com/hyperf/hyperf/issues",
  2525. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2526. "source": "https://github.com/hyperf/hyperf"
  2527. },
  2528. "funding": [
  2529. {
  2530. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2531. "type": "custom"
  2532. },
  2533. {
  2534. "url": "https://opencollective.com/hyperf",
  2535. "type": "open_collective"
  2536. }
  2537. ],
  2538. "time": "2025-05-14T08:25:19+00:00"
  2539. },
  2540. {
  2541. "name": "hyperf/macroable",
  2542. "version": "v3.1.42",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/hyperf/macroable.git",
  2546. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  2551. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  2552. "shasum": ""
  2553. },
  2554. "require": {
  2555. "php": ">=8.1"
  2556. },
  2557. "type": "library",
  2558. "extra": {
  2559. "branch-alias": {
  2560. "dev-master": "3.1-dev"
  2561. }
  2562. },
  2563. "autoload": {
  2564. "psr-4": {
  2565. "Hyperf\\Macroable\\": "src/"
  2566. }
  2567. },
  2568. "notification-url": "https://packagist.org/downloads/",
  2569. "license": [
  2570. "MIT"
  2571. ],
  2572. "description": "Hyperf Macroable package which come from illuminate/macroable",
  2573. "homepage": "https://hyperf.io",
  2574. "keywords": [
  2575. "hyperf",
  2576. "macroable",
  2577. "php",
  2578. "swoole"
  2579. ],
  2580. "support": {
  2581. "docs": "https://hyperf.wiki",
  2582. "issues": "https://github.com/hyperf/hyperf/issues",
  2583. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2584. "source": "https://github.com/hyperf/hyperf"
  2585. },
  2586. "funding": [
  2587. {
  2588. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2589. "type": "custom"
  2590. },
  2591. {
  2592. "url": "https://opencollective.com/hyperf",
  2593. "type": "open_collective"
  2594. }
  2595. ],
  2596. "time": "2024-09-25T02:54:12+00:00"
  2597. },
  2598. {
  2599. "name": "hyperf/memory",
  2600. "version": "v3.1.53",
  2601. "source": {
  2602. "type": "git",
  2603. "url": "https://github.com/hyperf/memory.git",
  2604. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b"
  2605. },
  2606. "dist": {
  2607. "type": "zip",
  2608. "url": "https://api.github.com/repos/hyperf/memory/zipball/74a3093ee766e18f912269f6846a63ae21a4360b",
  2609. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b",
  2610. "shasum": ""
  2611. },
  2612. "require": {
  2613. "php": ">=8.1"
  2614. },
  2615. "type": "library",
  2616. "extra": {
  2617. "hyperf": {
  2618. "config": "Hyperf\\Memory\\ConfigProvider"
  2619. },
  2620. "branch-alias": {
  2621. "dev-master": "3.1-dev"
  2622. }
  2623. },
  2624. "autoload": {
  2625. "psr-4": {
  2626. "Hyperf\\Memory\\": "src/"
  2627. }
  2628. },
  2629. "notification-url": "https://packagist.org/downloads/",
  2630. "license": [
  2631. "MIT"
  2632. ],
  2633. "description": "An independent component that use to operate and manage memory.",
  2634. "homepage": "https://hyperf.io",
  2635. "keywords": [
  2636. "hyperf",
  2637. "memory",
  2638. "php",
  2639. "swoole"
  2640. ],
  2641. "support": {
  2642. "docs": "https://hyperf.wiki",
  2643. "issues": "https://github.com/hyperf/hyperf/issues",
  2644. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2645. "source": "https://github.com/hyperf/hyperf"
  2646. },
  2647. "funding": [
  2648. {
  2649. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2650. "type": "custom"
  2651. },
  2652. {
  2653. "url": "https://opencollective.com/hyperf",
  2654. "type": "open_collective"
  2655. }
  2656. ],
  2657. "time": "2025-04-03T09:12:55+00:00"
  2658. },
  2659. {
  2660. "name": "hyperf/model-cache",
  2661. "version": "v3.1.51",
  2662. "source": {
  2663. "type": "git",
  2664. "url": "https://github.com/hyperf/model-cache.git",
  2665. "reference": "70d1c97364cccef852c505a7eb1fcbfd8a62c1ec"
  2666. },
  2667. "dist": {
  2668. "type": "zip",
  2669. "url": "https://api.github.com/repos/hyperf/model-cache/zipball/70d1c97364cccef852c505a7eb1fcbfd8a62c1ec",
  2670. "reference": "70d1c97364cccef852c505a7eb1fcbfd8a62c1ec",
  2671. "shasum": ""
  2672. },
  2673. "require": {
  2674. "hyperf/codec": "~3.1.0",
  2675. "hyperf/contract": "~3.1.0",
  2676. "hyperf/db-connection": "~3.1.0",
  2677. "hyperf/support": "~3.1.0",
  2678. "hyperf/utils": "~3.1.0",
  2679. "php": ">=8.1",
  2680. "psr/container": "^1.0 || ^2.0",
  2681. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  2682. },
  2683. "suggest": {
  2684. "hyperf/event": "Required to use DeleteCacheListener."
  2685. },
  2686. "type": "library",
  2687. "extra": {
  2688. "hyperf": {
  2689. "config": "Hyperf\\ModelCache\\ConfigProvider"
  2690. },
  2691. "branch-alias": {
  2692. "dev-master": "3.1-dev"
  2693. }
  2694. },
  2695. "autoload": {
  2696. "psr-4": {
  2697. "Hyperf\\ModelCache\\": "src/"
  2698. }
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "MIT"
  2703. ],
  2704. "description": "A model cache component for hyperf.",
  2705. "homepage": "https://hyperf.io",
  2706. "keywords": [
  2707. "hyperf",
  2708. "model-cache",
  2709. "php"
  2710. ],
  2711. "support": {
  2712. "docs": "https://hyperf.wiki",
  2713. "issues": "https://github.com/hyperf/hyperf/issues",
  2714. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2715. "source": "https://github.com/hyperf/hyperf"
  2716. },
  2717. "funding": [
  2718. {
  2719. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2720. "type": "custom"
  2721. },
  2722. {
  2723. "url": "https://opencollective.com/hyperf",
  2724. "type": "open_collective"
  2725. }
  2726. ],
  2727. "time": "2025-02-06T07:02:37+00:00"
  2728. },
  2729. {
  2730. "name": "hyperf/model-listener",
  2731. "version": "v3.1.42",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/hyperf/model-listener.git",
  2735. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  2740. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "hyperf/contract": "~3.1.0",
  2745. "hyperf/database": "~3.1.0",
  2746. "hyperf/di": "~3.1.0",
  2747. "hyperf/event": "~3.1.0",
  2748. "hyperf/support": "~3.1.0",
  2749. "hyperf/utils": "~3.1.0",
  2750. "php": ">=8.1",
  2751. "psr/container": "^1.0 || ^2.0"
  2752. },
  2753. "type": "library",
  2754. "extra": {
  2755. "hyperf": {
  2756. "config": "Hyperf\\ModelListener\\ConfigProvider"
  2757. },
  2758. "branch-alias": {
  2759. "dev-master": "3.1-dev"
  2760. }
  2761. },
  2762. "autoload": {
  2763. "psr-4": {
  2764. "Hyperf\\ModelListener\\": "src/"
  2765. }
  2766. },
  2767. "notification-url": "https://packagist.org/downloads/",
  2768. "license": [
  2769. "MIT"
  2770. ],
  2771. "description": "A model listener for Hyperf.",
  2772. "homepage": "https://hyperf.io",
  2773. "keywords": [
  2774. "hyperf",
  2775. "model-listener",
  2776. "php",
  2777. "swoole"
  2778. ],
  2779. "support": {
  2780. "docs": "https://hyperf.wiki",
  2781. "issues": "https://github.com/hyperf/hyperf/issues",
  2782. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2783. "source": "https://github.com/hyperf/hyperf"
  2784. },
  2785. "funding": [
  2786. {
  2787. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2788. "type": "custom"
  2789. },
  2790. {
  2791. "url": "https://opencollective.com/hyperf",
  2792. "type": "open_collective"
  2793. }
  2794. ],
  2795. "time": "2024-09-25T02:54:12+00:00"
  2796. },
  2797. {
  2798. "name": "hyperf/pipeline",
  2799. "version": "v3.1.42",
  2800. "source": {
  2801. "type": "git",
  2802. "url": "https://github.com/hyperf/pipeline.git",
  2803. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  2804. },
  2805. "dist": {
  2806. "type": "zip",
  2807. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  2808. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  2809. "shasum": ""
  2810. },
  2811. "require": {
  2812. "php": ">=8.1",
  2813. "psr/container": "^1.0 || ^2.0"
  2814. },
  2815. "type": "library",
  2816. "extra": {
  2817. "branch-alias": {
  2818. "dev-master": "3.1-dev"
  2819. }
  2820. },
  2821. "autoload": {
  2822. "psr-4": {
  2823. "Hyperf\\Pipeline\\": "src/"
  2824. }
  2825. },
  2826. "notification-url": "https://packagist.org/downloads/",
  2827. "license": [
  2828. "MIT"
  2829. ],
  2830. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  2831. "homepage": "https://hyperf.io",
  2832. "keywords": [
  2833. "hyperf",
  2834. "php",
  2835. "pipeline",
  2836. "swoole"
  2837. ],
  2838. "support": {
  2839. "docs": "https://hyperf.wiki",
  2840. "issues": "https://github.com/hyperf/hyperf/issues",
  2841. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2842. "source": "https://github.com/hyperf/hyperf"
  2843. },
  2844. "funding": [
  2845. {
  2846. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2847. "type": "custom"
  2848. },
  2849. {
  2850. "url": "https://opencollective.com/hyperf",
  2851. "type": "open_collective"
  2852. }
  2853. ],
  2854. "time": "2024-09-25T02:54:12+00:00"
  2855. },
  2856. {
  2857. "name": "hyperf/pool",
  2858. "version": "v3.1.42",
  2859. "source": {
  2860. "type": "git",
  2861. "url": "https://github.com/hyperf/pool.git",
  2862. "reference": "004dd811bf760ea0032913a31284102742abb737"
  2863. },
  2864. "dist": {
  2865. "type": "zip",
  2866. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  2867. "reference": "004dd811bf760ea0032913a31284102742abb737",
  2868. "shasum": ""
  2869. },
  2870. "require": {
  2871. "hyperf/contract": "~3.1.0",
  2872. "hyperf/support": "~3.1.0",
  2873. "hyperf/utils": "~3.1.0",
  2874. "php": ">=8.1",
  2875. "psr/container": "^1.0 || ^2.0"
  2876. },
  2877. "suggest": {
  2878. "psr/event-dispatcher": "Required to use events."
  2879. },
  2880. "type": "library",
  2881. "extra": {
  2882. "hyperf": {
  2883. "config": "Hyperf\\Pool\\ConfigProvider"
  2884. },
  2885. "branch-alias": {
  2886. "dev-master": "3.1-dev"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "psr-4": {
  2891. "Hyperf\\Pool\\": "src/"
  2892. }
  2893. },
  2894. "notification-url": "https://packagist.org/downloads/",
  2895. "license": [
  2896. "MIT"
  2897. ],
  2898. "description": "An independent universal connection pool component.",
  2899. "homepage": "https://hyperf.io",
  2900. "keywords": [
  2901. "connection-pool",
  2902. "hyperf",
  2903. "php",
  2904. "swoole"
  2905. ],
  2906. "support": {
  2907. "docs": "https://hyperf.wiki",
  2908. "issues": "https://github.com/hyperf/hyperf/issues",
  2909. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2910. "source": "https://github.com/hyperf/hyperf"
  2911. },
  2912. "funding": [
  2913. {
  2914. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2915. "type": "custom"
  2916. },
  2917. {
  2918. "url": "https://opencollective.com/hyperf",
  2919. "type": "open_collective"
  2920. }
  2921. ],
  2922. "time": "2024-09-25T02:54:12+00:00"
  2923. },
  2924. {
  2925. "name": "hyperf/process",
  2926. "version": "v3.1.48",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/hyperf/process.git",
  2930. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  2935. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  2936. "shasum": ""
  2937. },
  2938. "require": {
  2939. "hyperf/contract": "~3.1.0",
  2940. "hyperf/support": "~3.1.0",
  2941. "hyperf/utils": "~3.1.0",
  2942. "php": ">=8.1",
  2943. "psr/container": "^1.0 || ^2.0",
  2944. "psr/event-dispatcher": "^1.0"
  2945. },
  2946. "suggest": {
  2947. "hyperf/di": "Required to use annotations.",
  2948. "hyperf/event": "Required to dump the message before and after process.",
  2949. "hyperf/framework": "Required to use BootProcessListener."
  2950. },
  2951. "type": "library",
  2952. "extra": {
  2953. "hyperf": {
  2954. "config": "Hyperf\\Process\\ConfigProvider"
  2955. },
  2956. "branch-alias": {
  2957. "dev-master": "3.1-dev"
  2958. }
  2959. },
  2960. "autoload": {
  2961. "psr-4": {
  2962. "Hyperf\\Process\\": "src/"
  2963. }
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "description": "A process component for hyperf.",
  2970. "homepage": "https://hyperf.io",
  2971. "keywords": [
  2972. "hyperf",
  2973. "php",
  2974. "process"
  2975. ],
  2976. "support": {
  2977. "docs": "https://hyperf.wiki",
  2978. "issues": "https://github.com/hyperf/hyperf/issues",
  2979. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2980. "source": "https://github.com/hyperf/hyperf"
  2981. },
  2982. "funding": [
  2983. {
  2984. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2985. "type": "custom"
  2986. },
  2987. {
  2988. "url": "https://opencollective.com/hyperf",
  2989. "type": "open_collective"
  2990. }
  2991. ],
  2992. "time": "2024-12-02T10:54:30+00:00"
  2993. },
  2994. {
  2995. "name": "hyperf/redis",
  2996. "version": "v3.1.53",
  2997. "source": {
  2998. "type": "git",
  2999. "url": "https://github.com/hyperf/redis.git",
  3000. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64"
  3001. },
  3002. "dist": {
  3003. "type": "zip",
  3004. "url": "https://api.github.com/repos/hyperf/redis/zipball/d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3005. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3006. "shasum": ""
  3007. },
  3008. "require": {
  3009. "ext-redis": "^5.0 || ^6.0",
  3010. "hyperf/contract": "~3.1.0",
  3011. "hyperf/pool": "~3.1.0",
  3012. "hyperf/support": "~3.1.0",
  3013. "hyperf/tappable": "~3.1.0",
  3014. "hyperf/utils": "~3.1.0",
  3015. "php": ">=8.1",
  3016. "psr/container": "^1.0 || ^2.0"
  3017. },
  3018. "suggest": {
  3019. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3020. "hyperf/di": "Create the RedisPool via dependency injection."
  3021. },
  3022. "type": "library",
  3023. "extra": {
  3024. "hyperf": {
  3025. "config": "Hyperf\\Redis\\ConfigProvider"
  3026. },
  3027. "branch-alias": {
  3028. "dev-master": "3.1-dev"
  3029. }
  3030. },
  3031. "autoload": {
  3032. "psr-4": {
  3033. "Hyperf\\Redis\\": "src/"
  3034. }
  3035. },
  3036. "notification-url": "https://packagist.org/downloads/",
  3037. "license": [
  3038. "MIT"
  3039. ],
  3040. "description": "A redis component for hyperf.",
  3041. "homepage": "https://hyperf.io",
  3042. "keywords": [
  3043. "hyperf",
  3044. "php",
  3045. "pool",
  3046. "redis"
  3047. ],
  3048. "support": {
  3049. "docs": "https://hyperf.wiki",
  3050. "issues": "https://github.com/hyperf/hyperf/issues",
  3051. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3052. "source": "https://github.com/hyperf/hyperf"
  3053. },
  3054. "funding": [
  3055. {
  3056. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3057. "type": "custom"
  3058. },
  3059. {
  3060. "url": "https://opencollective.com/hyperf",
  3061. "type": "open_collective"
  3062. }
  3063. ],
  3064. "time": "2025-04-03T07:31:20+00:00"
  3065. },
  3066. {
  3067. "name": "hyperf/rpc",
  3068. "version": "v3.1.42",
  3069. "source": {
  3070. "type": "git",
  3071. "url": "https://github.com/hyperf/rpc.git",
  3072. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3073. },
  3074. "dist": {
  3075. "type": "zip",
  3076. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3077. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3078. "shasum": ""
  3079. },
  3080. "require": {
  3081. "hyperf/codec": "~3.1.0",
  3082. "hyperf/contract": "~3.1.0",
  3083. "hyperf/support": "~3.1.0",
  3084. "jetbrains/phpstorm-attributes": "^1.0",
  3085. "php": ">=8.1"
  3086. },
  3087. "type": "library",
  3088. "extra": {
  3089. "hyperf": [],
  3090. "branch-alias": {
  3091. "dev-master": "3.1-dev"
  3092. }
  3093. },
  3094. "autoload": {
  3095. "psr-4": {
  3096. "Hyperf\\Rpc\\": "src/"
  3097. }
  3098. },
  3099. "notification-url": "https://packagist.org/downloads/",
  3100. "license": [
  3101. "MIT"
  3102. ],
  3103. "description": "A rpc basic library for Hyperf.",
  3104. "homepage": "https://hyperf.io",
  3105. "keywords": [
  3106. "hyperf",
  3107. "php",
  3108. "rpc",
  3109. "swoole"
  3110. ],
  3111. "support": {
  3112. "docs": "https://hyperf.wiki",
  3113. "issues": "https://github.com/hyperf/hyperf/issues",
  3114. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3115. "source": "https://github.com/hyperf/hyperf"
  3116. },
  3117. "funding": [
  3118. {
  3119. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3120. "type": "custom"
  3121. },
  3122. {
  3123. "url": "https://opencollective.com/hyperf",
  3124. "type": "open_collective"
  3125. }
  3126. ],
  3127. "time": "2024-09-25T02:54:12+00:00"
  3128. },
  3129. {
  3130. "name": "hyperf/rpc-client",
  3131. "version": "v3.1.42",
  3132. "source": {
  3133. "type": "git",
  3134. "url": "https://github.com/hyperf/rpc-client.git",
  3135. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3136. },
  3137. "dist": {
  3138. "type": "zip",
  3139. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3140. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3141. "shasum": ""
  3142. },
  3143. "require": {
  3144. "hyperf/code-parser": "~3.1.0",
  3145. "hyperf/load-balancer": "~3.1.0",
  3146. "hyperf/rpc": "~3.1.0",
  3147. "hyperf/support": "~3.1.0",
  3148. "hyperf/utils": "~3.1.0",
  3149. "jetbrains/phpstorm-attributes": "^1.0",
  3150. "php": ">=8.1",
  3151. "psr/container": "^1.0 || ^2.0"
  3152. },
  3153. "suggest": {
  3154. "hyperf/di": "For better container experience.",
  3155. "hyperf/pool": "Required to use connection pool.",
  3156. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3157. },
  3158. "type": "library",
  3159. "extra": {
  3160. "hyperf": {
  3161. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3162. },
  3163. "branch-alias": {
  3164. "dev-master": "3.1-dev"
  3165. }
  3166. },
  3167. "autoload": {
  3168. "psr-4": {
  3169. "Hyperf\\RpcClient\\": "src/"
  3170. }
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "MIT"
  3175. ],
  3176. "description": "An abstract rpc server component for Hyperf.",
  3177. "homepage": "https://hyperf.io",
  3178. "keywords": [
  3179. "hyperf",
  3180. "json-rpc",
  3181. "php",
  3182. "rpc",
  3183. "rpc-client",
  3184. "swoole"
  3185. ],
  3186. "support": {
  3187. "docs": "https://hyperf.wiki",
  3188. "issues": "https://github.com/hyperf/hyperf/issues",
  3189. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3190. "source": "https://github.com/hyperf/hyperf"
  3191. },
  3192. "funding": [
  3193. {
  3194. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3195. "type": "custom"
  3196. },
  3197. {
  3198. "url": "https://opencollective.com/hyperf",
  3199. "type": "open_collective"
  3200. }
  3201. ],
  3202. "time": "2024-09-25T02:54:12+00:00"
  3203. },
  3204. {
  3205. "name": "hyperf/rpc-server",
  3206. "version": "v3.1.42",
  3207. "source": {
  3208. "type": "git",
  3209. "url": "https://github.com/hyperf/rpc-server.git",
  3210. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3211. },
  3212. "dist": {
  3213. "type": "zip",
  3214. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3215. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3216. "shasum": ""
  3217. },
  3218. "require": {
  3219. "hyperf/http-server": "~3.1.0",
  3220. "hyperf/rpc": "~3.1.0",
  3221. "php": ">=8.1"
  3222. },
  3223. "suggest": {
  3224. "hyperf/di": "Required to use annotations."
  3225. },
  3226. "type": "library",
  3227. "extra": {
  3228. "hyperf": {
  3229. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3230. },
  3231. "branch-alias": {
  3232. "dev-master": "3.1-dev"
  3233. }
  3234. },
  3235. "autoload": {
  3236. "psr-4": {
  3237. "Hyperf\\RpcServer\\": "src/"
  3238. }
  3239. },
  3240. "notification-url": "https://packagist.org/downloads/",
  3241. "license": [
  3242. "MIT"
  3243. ],
  3244. "description": "An abstract rpc server component for Hyperf.",
  3245. "homepage": "https://hyperf.io",
  3246. "keywords": [
  3247. "hyperf",
  3248. "php",
  3249. "rpc",
  3250. "rpc-server",
  3251. "swoole"
  3252. ],
  3253. "support": {
  3254. "docs": "https://hyperf.wiki",
  3255. "issues": "https://github.com/hyperf/hyperf/issues",
  3256. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3257. "source": "https://github.com/hyperf/hyperf"
  3258. },
  3259. "funding": [
  3260. {
  3261. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3262. "type": "custom"
  3263. },
  3264. {
  3265. "url": "https://opencollective.com/hyperf",
  3266. "type": "open_collective"
  3267. }
  3268. ],
  3269. "time": "2024-09-25T02:54:12+00:00"
  3270. },
  3271. {
  3272. "name": "hyperf/serializer",
  3273. "version": "v3.1.42",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/hyperf/serializer.git",
  3277. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3282. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "hyperf/contract": "~3.1.0",
  3287. "php": ">=8.1"
  3288. },
  3289. "suggest": {
  3290. "hyperf/di": "Required to use ExceptionNormalizer",
  3291. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3292. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3293. },
  3294. "type": "library",
  3295. "extra": {
  3296. "hyperf": {
  3297. "config": "Hyperf\\Serializer\\ConfigProvider"
  3298. },
  3299. "branch-alias": {
  3300. "dev-master": "3.1-dev"
  3301. }
  3302. },
  3303. "autoload": {
  3304. "psr-4": {
  3305. "Hyperf\\Serializer\\": "src/"
  3306. }
  3307. },
  3308. "notification-url": "https://packagist.org/downloads/",
  3309. "license": [
  3310. "MIT"
  3311. ],
  3312. "description": "A serializer component for Hyperf.",
  3313. "homepage": "https://hyperf.io",
  3314. "keywords": [
  3315. "hyperf",
  3316. "php",
  3317. "swoole",
  3318. "tappable"
  3319. ],
  3320. "support": {
  3321. "docs": "https://hyperf.wiki",
  3322. "issues": "https://github.com/hyperf/hyperf/issues",
  3323. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3324. "source": "https://github.com/hyperf/hyperf"
  3325. },
  3326. "funding": [
  3327. {
  3328. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3329. "type": "custom"
  3330. },
  3331. {
  3332. "url": "https://opencollective.com/hyperf",
  3333. "type": "open_collective"
  3334. }
  3335. ],
  3336. "time": "2024-09-25T02:54:12+00:00"
  3337. },
  3338. {
  3339. "name": "hyperf/server",
  3340. "version": "v3.1.42",
  3341. "source": {
  3342. "type": "git",
  3343. "url": "https://github.com/hyperf/server.git",
  3344. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3345. },
  3346. "dist": {
  3347. "type": "zip",
  3348. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3349. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3350. "shasum": ""
  3351. },
  3352. "require": {
  3353. "hyperf/contract": "~3.1.0",
  3354. "hyperf/coordinator": "~3.1.0",
  3355. "hyperf/engine": "^2.8",
  3356. "hyperf/support": "~3.1.0",
  3357. "hyperf/tappable": "~3.1.0",
  3358. "php": ">=8.1",
  3359. "psr/container": "^1.0 || ^2.0",
  3360. "psr/event-dispatcher": "^1.0",
  3361. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3362. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3363. },
  3364. "suggest": {
  3365. "hyperf/event": "Dump the info after server start.",
  3366. "hyperf/framework": "Dump the info after server start."
  3367. },
  3368. "type": "library",
  3369. "extra": {
  3370. "hyperf": {
  3371. "config": "Hyperf\\Server\\ConfigProvider"
  3372. },
  3373. "branch-alias": {
  3374. "dev-master": "3.1-dev"
  3375. }
  3376. },
  3377. "autoload": {
  3378. "psr-4": {
  3379. "Hyperf\\Server\\": "src/"
  3380. }
  3381. },
  3382. "notification-url": "https://packagist.org/downloads/",
  3383. "license": [
  3384. "MIT"
  3385. ],
  3386. "description": "A base server library for Hyperf.",
  3387. "homepage": "https://hyperf.io",
  3388. "keywords": [
  3389. "hyperf",
  3390. "php",
  3391. "server",
  3392. "swoole"
  3393. ],
  3394. "support": {
  3395. "docs": "https://hyperf.wiki",
  3396. "issues": "https://github.com/hyperf/hyperf/issues",
  3397. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3398. "source": "https://github.com/hyperf/hyperf"
  3399. },
  3400. "funding": [
  3401. {
  3402. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3403. "type": "custom"
  3404. },
  3405. {
  3406. "url": "https://opencollective.com/hyperf",
  3407. "type": "open_collective"
  3408. }
  3409. ],
  3410. "time": "2024-09-25T02:54:12+00:00"
  3411. },
  3412. {
  3413. "name": "hyperf/service-governance",
  3414. "version": "v3.1.42",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/hyperf/service-governance.git",
  3418. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3423. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3424. "shasum": ""
  3425. },
  3426. "require": {
  3427. "hyperf/contract": "~3.1.0",
  3428. "hyperf/support": "~3.1.0",
  3429. "jetbrains/phpstorm-attributes": "^1.0",
  3430. "php": ">=8.1"
  3431. },
  3432. "suggest": {
  3433. "hyperf/event": "Required to use RegisterServiceListener.",
  3434. "hyperf/framework": "Required to use RegisterServiceListener.",
  3435. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3436. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3437. },
  3438. "type": "library",
  3439. "extra": {
  3440. "hyperf": {
  3441. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3442. },
  3443. "branch-alias": {
  3444. "dev-master": "3.1-dev"
  3445. }
  3446. },
  3447. "autoload": {
  3448. "psr-4": {
  3449. "Hyperf\\ServiceGovernance\\": "src/"
  3450. }
  3451. },
  3452. "notification-url": "https://packagist.org/downloads/",
  3453. "license": [
  3454. "MIT"
  3455. ],
  3456. "description": "A service governance component for Hyperf.",
  3457. "homepage": "https://hyperf.io",
  3458. "keywords": [
  3459. "hyperf",
  3460. "php",
  3461. "service-governance",
  3462. "swoole"
  3463. ],
  3464. "support": {
  3465. "docs": "https://hyperf.wiki",
  3466. "issues": "https://github.com/hyperf/hyperf/issues",
  3467. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3468. "source": "https://github.com/hyperf/hyperf"
  3469. },
  3470. "funding": [
  3471. {
  3472. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3473. "type": "custom"
  3474. },
  3475. {
  3476. "url": "https://opencollective.com/hyperf",
  3477. "type": "open_collective"
  3478. }
  3479. ],
  3480. "time": "2024-09-25T02:54:12+00:00"
  3481. },
  3482. {
  3483. "name": "hyperf/stdlib",
  3484. "version": "v3.1.42",
  3485. "source": {
  3486. "type": "git",
  3487. "url": "https://github.com/hyperf/stdlib.git",
  3488. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  3489. },
  3490. "dist": {
  3491. "type": "zip",
  3492. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3493. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3494. "shasum": ""
  3495. },
  3496. "require": {
  3497. "php": ">=8.1"
  3498. },
  3499. "type": "library",
  3500. "extra": {
  3501. "branch-alias": {
  3502. "dev-master": "3.1-dev"
  3503. }
  3504. },
  3505. "autoload": {
  3506. "psr-4": {
  3507. "Hyperf\\Stdlib\\": "src/"
  3508. }
  3509. },
  3510. "notification-url": "https://packagist.org/downloads/",
  3511. "license": [
  3512. "MIT"
  3513. ],
  3514. "description": "A stdlib component for Hyperf.",
  3515. "homepage": "https://hyperf.io",
  3516. "keywords": [
  3517. "hyperf",
  3518. "php",
  3519. "stdlib",
  3520. "swoole"
  3521. ],
  3522. "support": {
  3523. "docs": "https://hyperf.wiki",
  3524. "issues": "https://github.com/hyperf/hyperf/issues",
  3525. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3526. "source": "https://github.com/hyperf/hyperf"
  3527. },
  3528. "funding": [
  3529. {
  3530. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3531. "type": "custom"
  3532. },
  3533. {
  3534. "url": "https://opencollective.com/hyperf",
  3535. "type": "open_collective"
  3536. }
  3537. ],
  3538. "time": "2024-09-25T02:54:12+00:00"
  3539. },
  3540. {
  3541. "name": "hyperf/stringable",
  3542. "version": "v3.1.55",
  3543. "source": {
  3544. "type": "git",
  3545. "url": "https://github.com/hyperf/stringable.git",
  3546. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7"
  3547. },
  3548. "dist": {
  3549. "type": "zip",
  3550. "url": "https://api.github.com/repos/hyperf/stringable/zipball/1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  3551. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  3552. "shasum": ""
  3553. },
  3554. "require": {
  3555. "ext-mbstring": "*",
  3556. "hyperf/collection": "~3.1.0",
  3557. "hyperf/conditionable": "~3.1.0",
  3558. "hyperf/macroable": "~3.1.0",
  3559. "hyperf/tappable": "~3.1.0",
  3560. "php": ">=8.1"
  3561. },
  3562. "suggest": {
  3563. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  3564. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  3565. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  3566. },
  3567. "type": "library",
  3568. "extra": {
  3569. "branch-alias": {
  3570. "dev-master": "3.1-dev"
  3571. }
  3572. },
  3573. "autoload": {
  3574. "files": [
  3575. "src/Functions.php"
  3576. ],
  3577. "psr-4": {
  3578. "Hyperf\\Stringable\\": "src/"
  3579. }
  3580. },
  3581. "notification-url": "https://packagist.org/downloads/",
  3582. "license": [
  3583. "MIT"
  3584. ],
  3585. "description": "Hyperf Stringable package which come from illuminate/support",
  3586. "homepage": "https://hyperf.io",
  3587. "keywords": [
  3588. "hyperf",
  3589. "php",
  3590. "stringable",
  3591. "swoole"
  3592. ],
  3593. "support": {
  3594. "docs": "https://hyperf.wiki",
  3595. "issues": "https://github.com/hyperf/hyperf/issues",
  3596. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3597. "source": "https://github.com/hyperf/hyperf"
  3598. },
  3599. "funding": [
  3600. {
  3601. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3602. "type": "custom"
  3603. },
  3604. {
  3605. "url": "https://opencollective.com/hyperf",
  3606. "type": "open_collective"
  3607. }
  3608. ],
  3609. "time": "2025-05-02T14:13:24+00:00"
  3610. },
  3611. {
  3612. "name": "hyperf/support",
  3613. "version": "v3.1.51",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/hyperf/support.git",
  3617. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  3622. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  3623. "shasum": ""
  3624. },
  3625. "require": {
  3626. "hyperf/collection": "~3.1.0",
  3627. "hyperf/context": "~3.1.0",
  3628. "hyperf/contract": "~3.1.0",
  3629. "hyperf/coroutine": "~3.1.0",
  3630. "hyperf/macroable": "~3.1.0",
  3631. "hyperf/stringable": "~3.1.0",
  3632. "php": ">=8.1"
  3633. },
  3634. "suggest": {
  3635. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  3636. },
  3637. "type": "library",
  3638. "extra": {
  3639. "branch-alias": {
  3640. "dev-master": "3.1-dev"
  3641. }
  3642. },
  3643. "autoload": {
  3644. "files": [
  3645. "src/Functions.php"
  3646. ],
  3647. "psr-4": {
  3648. "Hyperf\\Support\\": "src/"
  3649. }
  3650. },
  3651. "notification-url": "https://packagist.org/downloads/",
  3652. "license": [
  3653. "MIT"
  3654. ],
  3655. "description": "A support component for Hyperf.",
  3656. "homepage": "https://hyperf.io",
  3657. "keywords": [
  3658. "hyperf",
  3659. "php",
  3660. "support",
  3661. "swoole"
  3662. ],
  3663. "support": {
  3664. "docs": "https://hyperf.wiki",
  3665. "issues": "https://github.com/hyperf/hyperf/issues",
  3666. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3667. "source": "https://github.com/hyperf/hyperf"
  3668. },
  3669. "funding": [
  3670. {
  3671. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3672. "type": "custom"
  3673. },
  3674. {
  3675. "url": "https://opencollective.com/hyperf",
  3676. "type": "open_collective"
  3677. }
  3678. ],
  3679. "time": "2025-02-06T07:02:37+00:00"
  3680. },
  3681. {
  3682. "name": "hyperf/tappable",
  3683. "version": "v3.1.42",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/hyperf/tappable.git",
  3687. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  3692. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  3693. "shasum": ""
  3694. },
  3695. "require": {
  3696. "php": ">=8.1"
  3697. },
  3698. "type": "library",
  3699. "extra": {
  3700. "branch-alias": {
  3701. "dev-master": "3.1-dev"
  3702. }
  3703. },
  3704. "autoload": {
  3705. "files": [
  3706. "src/Functions.php"
  3707. ],
  3708. "psr-4": {
  3709. "Hyperf\\Tappable\\": "src/"
  3710. }
  3711. },
  3712. "notification-url": "https://packagist.org/downloads/",
  3713. "license": [
  3714. "MIT"
  3715. ],
  3716. "description": "Hyperf Macroable package which come from illuminate/tappable",
  3717. "homepage": "https://hyperf.io",
  3718. "keywords": [
  3719. "hyperf",
  3720. "php",
  3721. "swoole",
  3722. "tappable"
  3723. ],
  3724. "support": {
  3725. "docs": "https://hyperf.wiki",
  3726. "issues": "https://github.com/hyperf/hyperf/issues",
  3727. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3728. "source": "https://github.com/hyperf/hyperf"
  3729. },
  3730. "funding": [
  3731. {
  3732. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3733. "type": "custom"
  3734. },
  3735. {
  3736. "url": "https://opencollective.com/hyperf",
  3737. "type": "open_collective"
  3738. }
  3739. ],
  3740. "time": "2024-09-25T02:54:12+00:00"
  3741. },
  3742. {
  3743. "name": "hyperf/tracer",
  3744. "version": "v3.1.42",
  3745. "source": {
  3746. "type": "git",
  3747. "url": "https://github.com/hyperf/tracer.git",
  3748. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883"
  3749. },
  3750. "dist": {
  3751. "type": "zip",
  3752. "url": "https://api.github.com/repos/hyperf/tracer/zipball/8ec4b4f2499592a3d748e3760aa63bca31c78883",
  3753. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883",
  3754. "shasum": ""
  3755. },
  3756. "require": {
  3757. "hyperf/contract": "~3.1.0",
  3758. "hyperf/di": "~3.1.0",
  3759. "hyperf/guzzle": "~3.1.0",
  3760. "hyperf/support": "~3.1.0",
  3761. "hyperf/utils": "~3.1.0",
  3762. "jcchavezs/zipkin-opentracing": "^2.0",
  3763. "opentracing/opentracing": "^1.0",
  3764. "php": ">=8.1",
  3765. "psr/http-message": "^1.0 || ^2.0"
  3766. },
  3767. "suggest": {
  3768. "hyperf/event": "Required to use DbQueryExecutedListener.",
  3769. "jonahgeorge/jaeger-client-php": "Required (^0.6) to use jaeger tracing.",
  3770. "longlang/phpkafka": "Required (^1.2) to use Kafka Producer."
  3771. },
  3772. "type": "library",
  3773. "extra": {
  3774. "hyperf": {
  3775. "config": "Hyperf\\Tracer\\ConfigProvider"
  3776. },
  3777. "branch-alias": {
  3778. "dev-master": "3.1-dev"
  3779. }
  3780. },
  3781. "autoload": {
  3782. "psr-4": {
  3783. "Hyperf\\Tracer\\": "src/"
  3784. }
  3785. },
  3786. "notification-url": "https://packagist.org/downloads/",
  3787. "license": [
  3788. "MIT"
  3789. ],
  3790. "description": "A open tracing system implemented for Hyperf or other coroutine framework",
  3791. "homepage": "https://hyperf.io",
  3792. "keywords": [
  3793. "hyperf",
  3794. "open-tracing",
  3795. "php",
  3796. "zipkin"
  3797. ],
  3798. "support": {
  3799. "docs": "https://hyperf.wiki",
  3800. "issues": "https://github.com/hyperf/hyperf/issues",
  3801. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3802. "source": "https://github.com/hyperf/hyperf"
  3803. },
  3804. "funding": [
  3805. {
  3806. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3807. "type": "custom"
  3808. },
  3809. {
  3810. "url": "https://opencollective.com/hyperf",
  3811. "type": "open_collective"
  3812. }
  3813. ],
  3814. "time": "2024-09-25T02:54:12+00:00"
  3815. },
  3816. {
  3817. "name": "hyperf/utils",
  3818. "version": "v3.1.42",
  3819. "source": {
  3820. "type": "git",
  3821. "url": "https://github.com/hyperf/utils.git",
  3822. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  3823. },
  3824. "dist": {
  3825. "type": "zip",
  3826. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  3827. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  3828. "shasum": ""
  3829. },
  3830. "require": {
  3831. "doctrine/inflector": "^2.0",
  3832. "hyperf/code-parser": "~3.1.0",
  3833. "hyperf/codec": "~3.1.0",
  3834. "hyperf/collection": "~3.1.0",
  3835. "hyperf/context": "~3.1.0",
  3836. "hyperf/contract": "~3.1.0",
  3837. "hyperf/coordinator": "~3.1.0",
  3838. "hyperf/coroutine": "~3.1.0",
  3839. "hyperf/engine": "^2.0",
  3840. "hyperf/macroable": "~3.1.0",
  3841. "hyperf/serializer": "~3.1.0",
  3842. "hyperf/stringable": "~3.1.0",
  3843. "hyperf/support": "~3.1.0",
  3844. "php": ">=8.1"
  3845. },
  3846. "type": "library",
  3847. "extra": {
  3848. "branch-alias": {
  3849. "dev-master": "3.1-dev"
  3850. }
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "description": "A tools package that could help developer solved the problem quickly.",
  3857. "homepage": "https://hyperf.io",
  3858. "keywords": [
  3859. "hyperf",
  3860. "php",
  3861. "swoole",
  3862. "utils"
  3863. ],
  3864. "support": {
  3865. "docs": "https://hyperf.wiki",
  3866. "issues": "https://github.com/hyperf/hyperf/issues",
  3867. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3868. "source": "https://github.com/hyperf/hyperf"
  3869. },
  3870. "funding": [
  3871. {
  3872. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3873. "type": "custom"
  3874. },
  3875. {
  3876. "url": "https://opencollective.com/hyperf",
  3877. "type": "open_collective"
  3878. }
  3879. ],
  3880. "time": "2024-09-25T02:54:12+00:00"
  3881. },
  3882. {
  3883. "name": "jcchavezs/zipkin-opentracing",
  3884. "version": "2.0.4",
  3885. "source": {
  3886. "type": "git",
  3887. "url": "https://github.com/jcchavezs/zipkin-php-opentracing.git",
  3888. "reference": "6bd908f84ff611dff4d64c5e7d510bd6a1107575"
  3889. },
  3890. "dist": {
  3891. "type": "zip",
  3892. "url": "https://api.github.com/repos/jcchavezs/zipkin-php-opentracing/zipball/6bd908f84ff611dff4d64c5e7d510bd6a1107575",
  3893. "reference": "6bd908f84ff611dff4d64c5e7d510bd6a1107575",
  3894. "shasum": ""
  3895. },
  3896. "require": {
  3897. "opentracing/opentracing": "^1.0.1",
  3898. "openzipkin/zipkin": "^3.0.0",
  3899. "php": ">=7.4 || ^8.0"
  3900. },
  3901. "provide": {
  3902. "opentracing/opentracing": "1.0.0"
  3903. },
  3904. "require-dev": {
  3905. "phpspec/prophecy-phpunit": "^2.0",
  3906. "phpstan/phpstan": "^0.12.26",
  3907. "phpunit/phpunit": "^9.0",
  3908. "squizlabs/php_codesniffer": "3.*"
  3909. },
  3910. "type": "library",
  3911. "autoload": {
  3912. "psr-4": {
  3913. "ZipkinOpenTracing\\": "./src/ZipkinOpenTracing/"
  3914. }
  3915. },
  3916. "notification-url": "https://packagist.org/downloads/",
  3917. "license": [
  3918. "MIT"
  3919. ],
  3920. "authors": [
  3921. {
  3922. "name": "José Carlos Chávez",
  3923. "email": "jcchavezs@gmail.com"
  3924. }
  3925. ],
  3926. "description": "A Zipkin bridge with OpenTracing",
  3927. "support": {
  3928. "issues": "https://github.com/jcchavezs/zipkin-php-opentracing/issues",
  3929. "source": "https://github.com/jcchavezs/zipkin-php-opentracing/tree/2.0.4"
  3930. },
  3931. "funding": [
  3932. {
  3933. "url": "https://www.paypal.me/jcchavezs",
  3934. "type": "paypal"
  3935. }
  3936. ],
  3937. "time": "2023-11-03T22:38:29+00:00"
  3938. },
  3939. {
  3940. "name": "jetbrains/phpstorm-attributes",
  3941. "version": "1.2",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  3945. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  3950. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  3951. "shasum": ""
  3952. },
  3953. "type": "library",
  3954. "autoload": {
  3955. "psr-4": {
  3956. "JetBrains\\PhpStorm\\": "src/"
  3957. }
  3958. },
  3959. "notification-url": "https://packagist.org/downloads/",
  3960. "license": [
  3961. "Apache-2.0"
  3962. ],
  3963. "authors": [
  3964. {
  3965. "name": "JetBrains",
  3966. "homepage": "https://www.jetbrains.com"
  3967. }
  3968. ],
  3969. "description": "PhpStorm specific attributes",
  3970. "keywords": [
  3971. "attributes",
  3972. "jetbrains",
  3973. "phpstorm"
  3974. ],
  3975. "support": {
  3976. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  3977. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  3978. },
  3979. "time": "2024-10-11T10:46:19+00:00"
  3980. },
  3981. {
  3982. "name": "laminas/laminas-mime",
  3983. "version": "2.12.0",
  3984. "source": {
  3985. "type": "git",
  3986. "url": "https://github.com/laminas/laminas-mime.git",
  3987. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  3988. },
  3989. "dist": {
  3990. "type": "zip",
  3991. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  3992. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  3993. "shasum": ""
  3994. },
  3995. "require": {
  3996. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  3997. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  3998. },
  3999. "conflict": {
  4000. "zendframework/zend-mime": "*"
  4001. },
  4002. "require-dev": {
  4003. "laminas/laminas-coding-standard": "~2.4.0",
  4004. "laminas/laminas-mail": "^2.19.0",
  4005. "phpunit/phpunit": "~9.5.25"
  4006. },
  4007. "suggest": {
  4008. "laminas/laminas-mail": "Laminas\\Mail component"
  4009. },
  4010. "type": "library",
  4011. "autoload": {
  4012. "psr-4": {
  4013. "Laminas\\Mime\\": "src/"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "BSD-3-Clause"
  4019. ],
  4020. "description": "Create and parse MIME messages and parts",
  4021. "homepage": "https://laminas.dev",
  4022. "keywords": [
  4023. "laminas",
  4024. "mime"
  4025. ],
  4026. "support": {
  4027. "chat": "https://laminas.dev/chat",
  4028. "docs": "https://docs.laminas.dev/laminas-mime/",
  4029. "forum": "https://discourse.laminas.dev",
  4030. "issues": "https://github.com/laminas/laminas-mime/issues",
  4031. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4032. "source": "https://github.com/laminas/laminas-mime"
  4033. },
  4034. "funding": [
  4035. {
  4036. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4037. "type": "community_bridge"
  4038. }
  4039. ],
  4040. "abandoned": "symfony/mime",
  4041. "time": "2023-11-02T16:47:19+00:00"
  4042. },
  4043. {
  4044. "name": "laminas/laminas-stdlib",
  4045. "version": "3.20.0",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://github.com/laminas/laminas-stdlib.git",
  4049. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4054. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4055. "shasum": ""
  4056. },
  4057. "require": {
  4058. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4059. },
  4060. "conflict": {
  4061. "zendframework/zend-stdlib": "*"
  4062. },
  4063. "require-dev": {
  4064. "laminas/laminas-coding-standard": "^3.0",
  4065. "phpbench/phpbench": "^1.3.1",
  4066. "phpunit/phpunit": "^10.5.38",
  4067. "psalm/plugin-phpunit": "^0.19.0",
  4068. "vimeo/psalm": "^5.26.1"
  4069. },
  4070. "type": "library",
  4071. "autoload": {
  4072. "psr-4": {
  4073. "Laminas\\Stdlib\\": "src/"
  4074. }
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "BSD-3-Clause"
  4079. ],
  4080. "description": "SPL extensions, array utilities, error handlers, and more",
  4081. "homepage": "https://laminas.dev",
  4082. "keywords": [
  4083. "laminas",
  4084. "stdlib"
  4085. ],
  4086. "support": {
  4087. "chat": "https://laminas.dev/chat",
  4088. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4089. "forum": "https://discourse.laminas.dev",
  4090. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4091. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4092. "source": "https://github.com/laminas/laminas-stdlib"
  4093. },
  4094. "funding": [
  4095. {
  4096. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4097. "type": "community_bridge"
  4098. }
  4099. ],
  4100. "time": "2024-10-29T13:46:07+00:00"
  4101. },
  4102. {
  4103. "name": "markrogoyski/math-php",
  4104. "version": "v2.11.0",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://github.com/markrogoyski/math-php.git",
  4108. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  4113. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  4114. "shasum": ""
  4115. },
  4116. "require": {
  4117. "ext-json": "*",
  4118. "php": ">=7.2.0"
  4119. },
  4120. "require-dev": {
  4121. "php-coveralls/php-coveralls": "^2.0",
  4122. "php-parallel-lint/php-parallel-lint": "^1.2",
  4123. "phploc/phploc": "*",
  4124. "phpmd/phpmd": "^2.6",
  4125. "phpstan/phpstan": "^1.10",
  4126. "phpunit/phpunit": "^8.5",
  4127. "squizlabs/php_codesniffer": "3.*"
  4128. },
  4129. "type": "library",
  4130. "autoload": {
  4131. "psr-4": {
  4132. "MathPHP\\": "src/"
  4133. }
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Mark Rogoyski",
  4142. "email": "mark@rogoyski.com",
  4143. "homepage": "https://github.com/markrogoyski",
  4144. "role": "Lead developer"
  4145. },
  4146. {
  4147. "name": "Kevin Nowaczyk",
  4148. "homepage": "https://github.com/Beakerboy",
  4149. "role": "Developer"
  4150. },
  4151. {
  4152. "name": "MathPHP Community of Contributors",
  4153. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4154. }
  4155. ],
  4156. "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",
  4157. "homepage": "https://github.com/markrogoyski/math-php/",
  4158. "keywords": [
  4159. "algebra",
  4160. "combinatorics",
  4161. "distributions",
  4162. "linear algebra",
  4163. "math",
  4164. "mathematics",
  4165. "matrix",
  4166. "numerical analysis",
  4167. "probability",
  4168. "regressions",
  4169. "statistics"
  4170. ],
  4171. "support": {
  4172. "issues": "https://github.com/markrogoyski/math-php/issues",
  4173. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  4174. },
  4175. "time": "2025-01-26T20:16:06+00:00"
  4176. },
  4177. {
  4178. "name": "monolog/monolog",
  4179. "version": "3.9.0",
  4180. "source": {
  4181. "type": "git",
  4182. "url": "https://github.com/Seldaek/monolog.git",
  4183. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  4184. },
  4185. "dist": {
  4186. "type": "zip",
  4187. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4188. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4189. "shasum": ""
  4190. },
  4191. "require": {
  4192. "php": ">=8.1",
  4193. "psr/log": "^2.0 || ^3.0"
  4194. },
  4195. "provide": {
  4196. "psr/log-implementation": "3.0.0"
  4197. },
  4198. "require-dev": {
  4199. "aws/aws-sdk-php": "^3.0",
  4200. "doctrine/couchdb": "~1.0@dev",
  4201. "elasticsearch/elasticsearch": "^7 || ^8",
  4202. "ext-json": "*",
  4203. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4204. "guzzlehttp/guzzle": "^7.4.5",
  4205. "guzzlehttp/psr7": "^2.2",
  4206. "mongodb/mongodb": "^1.8",
  4207. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4208. "php-console/php-console": "^3.1.8",
  4209. "phpstan/phpstan": "^2",
  4210. "phpstan/phpstan-deprecation-rules": "^2",
  4211. "phpstan/phpstan-strict-rules": "^2",
  4212. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4213. "predis/predis": "^1.1 || ^2",
  4214. "rollbar/rollbar": "^4.0",
  4215. "ruflin/elastica": "^7 || ^8",
  4216. "symfony/mailer": "^5.4 || ^6",
  4217. "symfony/mime": "^5.4 || ^6"
  4218. },
  4219. "suggest": {
  4220. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4221. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4222. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4223. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4224. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4225. "ext-mbstring": "Allow to work properly with unicode symbols",
  4226. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4227. "ext-openssl": "Required to send log messages using SSL",
  4228. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4229. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4230. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4231. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4232. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4233. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4234. },
  4235. "type": "library",
  4236. "extra": {
  4237. "branch-alias": {
  4238. "dev-main": "3.x-dev"
  4239. }
  4240. },
  4241. "autoload": {
  4242. "psr-4": {
  4243. "Monolog\\": "src/Monolog"
  4244. }
  4245. },
  4246. "notification-url": "https://packagist.org/downloads/",
  4247. "license": [
  4248. "MIT"
  4249. ],
  4250. "authors": [
  4251. {
  4252. "name": "Jordi Boggiano",
  4253. "email": "j.boggiano@seld.be",
  4254. "homepage": "https://seld.be"
  4255. }
  4256. ],
  4257. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4258. "homepage": "https://github.com/Seldaek/monolog",
  4259. "keywords": [
  4260. "log",
  4261. "logging",
  4262. "psr-3"
  4263. ],
  4264. "support": {
  4265. "issues": "https://github.com/Seldaek/monolog/issues",
  4266. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  4267. },
  4268. "funding": [
  4269. {
  4270. "url": "https://github.com/Seldaek",
  4271. "type": "github"
  4272. },
  4273. {
  4274. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4275. "type": "tidelift"
  4276. }
  4277. ],
  4278. "time": "2025-03-24T10:02:05+00:00"
  4279. },
  4280. {
  4281. "name": "nesbot/carbon",
  4282. "version": "2.73.0",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/CarbonPHP/carbon.git",
  4286. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  4291. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  4292. "shasum": ""
  4293. },
  4294. "require": {
  4295. "carbonphp/carbon-doctrine-types": "*",
  4296. "ext-json": "*",
  4297. "php": "^7.1.8 || ^8.0",
  4298. "psr/clock": "^1.0",
  4299. "symfony/polyfill-mbstring": "^1.0",
  4300. "symfony/polyfill-php80": "^1.16",
  4301. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4302. },
  4303. "provide": {
  4304. "psr/clock-implementation": "1.0"
  4305. },
  4306. "require-dev": {
  4307. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4308. "doctrine/orm": "^2.7 || ^3.0",
  4309. "friendsofphp/php-cs-fixer": "^3.0",
  4310. "kylekatarnls/multi-tester": "^2.0",
  4311. "ondrejmirtes/better-reflection": "<6",
  4312. "phpmd/phpmd": "^2.9",
  4313. "phpstan/extension-installer": "^1.0",
  4314. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4315. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4316. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4317. "squizlabs/php_codesniffer": "^3.4"
  4318. },
  4319. "bin": [
  4320. "bin/carbon"
  4321. ],
  4322. "type": "library",
  4323. "extra": {
  4324. "laravel": {
  4325. "providers": [
  4326. "Carbon\\Laravel\\ServiceProvider"
  4327. ]
  4328. },
  4329. "phpstan": {
  4330. "includes": [
  4331. "extension.neon"
  4332. ]
  4333. },
  4334. "branch-alias": {
  4335. "dev-2.x": "2.x-dev",
  4336. "dev-master": "3.x-dev"
  4337. }
  4338. },
  4339. "autoload": {
  4340. "psr-4": {
  4341. "Carbon\\": "src/Carbon/"
  4342. }
  4343. },
  4344. "notification-url": "https://packagist.org/downloads/",
  4345. "license": [
  4346. "MIT"
  4347. ],
  4348. "authors": [
  4349. {
  4350. "name": "Brian Nesbitt",
  4351. "email": "brian@nesbot.com",
  4352. "homepage": "https://markido.com"
  4353. },
  4354. {
  4355. "name": "kylekatarnls",
  4356. "homepage": "https://github.com/kylekatarnls"
  4357. }
  4358. ],
  4359. "description": "An API extension for DateTime that supports 281 different languages.",
  4360. "homepage": "https://carbon.nesbot.com",
  4361. "keywords": [
  4362. "date",
  4363. "datetime",
  4364. "time"
  4365. ],
  4366. "support": {
  4367. "docs": "https://carbon.nesbot.com/docs",
  4368. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4369. "source": "https://github.com/briannesbitt/Carbon"
  4370. },
  4371. "funding": [
  4372. {
  4373. "url": "https://github.com/sponsors/kylekatarnls",
  4374. "type": "github"
  4375. },
  4376. {
  4377. "url": "https://opencollective.com/Carbon#sponsor",
  4378. "type": "opencollective"
  4379. },
  4380. {
  4381. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4382. "type": "tidelift"
  4383. }
  4384. ],
  4385. "time": "2025-01-08T20:10:23+00:00"
  4386. },
  4387. {
  4388. "name": "nikic/fast-route",
  4389. "version": "v1.3.0",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://github.com/nikic/FastRoute.git",
  4393. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4394. },
  4395. "dist": {
  4396. "type": "zip",
  4397. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4398. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4399. "shasum": ""
  4400. },
  4401. "require": {
  4402. "php": ">=5.4.0"
  4403. },
  4404. "require-dev": {
  4405. "phpunit/phpunit": "^4.8.35|~5.7"
  4406. },
  4407. "type": "library",
  4408. "autoload": {
  4409. "files": [
  4410. "src/functions.php"
  4411. ],
  4412. "psr-4": {
  4413. "FastRoute\\": "src/"
  4414. }
  4415. },
  4416. "notification-url": "https://packagist.org/downloads/",
  4417. "license": [
  4418. "BSD-3-Clause"
  4419. ],
  4420. "authors": [
  4421. {
  4422. "name": "Nikita Popov",
  4423. "email": "nikic@php.net"
  4424. }
  4425. ],
  4426. "description": "Fast request router for PHP",
  4427. "keywords": [
  4428. "router",
  4429. "routing"
  4430. ],
  4431. "support": {
  4432. "issues": "https://github.com/nikic/FastRoute/issues",
  4433. "source": "https://github.com/nikic/FastRoute/tree/master"
  4434. },
  4435. "time": "2018-02-13T20:26:39+00:00"
  4436. },
  4437. {
  4438. "name": "nikic/php-parser",
  4439. "version": "v4.19.4",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://github.com/nikic/PHP-Parser.git",
  4443. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4448. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4449. "shasum": ""
  4450. },
  4451. "require": {
  4452. "ext-tokenizer": "*",
  4453. "php": ">=7.1"
  4454. },
  4455. "require-dev": {
  4456. "ircmaxell/php-yacc": "^0.0.7",
  4457. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4458. },
  4459. "bin": [
  4460. "bin/php-parse"
  4461. ],
  4462. "type": "library",
  4463. "extra": {
  4464. "branch-alias": {
  4465. "dev-master": "4.9-dev"
  4466. }
  4467. },
  4468. "autoload": {
  4469. "psr-4": {
  4470. "PhpParser\\": "lib/PhpParser"
  4471. }
  4472. },
  4473. "notification-url": "https://packagist.org/downloads/",
  4474. "license": [
  4475. "BSD-3-Clause"
  4476. ],
  4477. "authors": [
  4478. {
  4479. "name": "Nikita Popov"
  4480. }
  4481. ],
  4482. "description": "A PHP parser written in PHP",
  4483. "keywords": [
  4484. "parser",
  4485. "php"
  4486. ],
  4487. "support": {
  4488. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4489. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  4490. },
  4491. "time": "2024-09-29T15:01:53+00:00"
  4492. },
  4493. {
  4494. "name": "opentracing/opentracing",
  4495. "version": "1.0.2",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/opentracing/opentracing-php.git",
  4499. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/opentracing/opentracing-php/zipball/cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  4504. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  4505. "shasum": ""
  4506. },
  4507. "require": {
  4508. "php": "^7.1 || ^8.0"
  4509. },
  4510. "require-dev": {
  4511. "phpstan/phpstan": "~0.12",
  4512. "phpunit/phpunit": "^7.0 || ^9.0",
  4513. "squizlabs/php_codesniffer": "3.*"
  4514. },
  4515. "type": "library",
  4516. "autoload": {
  4517. "files": [
  4518. "src/OpenTracing/Tags.php",
  4519. "src/OpenTracing/Formats.php"
  4520. ],
  4521. "psr-4": {
  4522. "OpenTracing\\": "src/OpenTracing/"
  4523. }
  4524. },
  4525. "notification-url": "https://packagist.org/downloads/",
  4526. "license": [
  4527. "Apache-2.0"
  4528. ],
  4529. "authors": [
  4530. {
  4531. "name": "José Carlos Chávez",
  4532. "email": "jcchavezs@gmail.com"
  4533. }
  4534. ],
  4535. "description": "OpenTracing API for PHP",
  4536. "support": {
  4537. "issues": "https://github.com/opentracing/opentracing-php/issues",
  4538. "source": "https://github.com/opentracing/opentracing-php/tree/1.0.2"
  4539. },
  4540. "time": "2022-01-27T19:59:21+00:00"
  4541. },
  4542. {
  4543. "name": "openzipkin/zipkin",
  4544. "version": "3.2.1",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/openzipkin/zipkin-php.git",
  4548. "reference": "bad09acf421c79d360f53d1650fd4215e8be7579"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/openzipkin/zipkin-php/zipball/bad09acf421c79d360f53d1650fd4215e8be7579",
  4553. "reference": "bad09acf421c79d360f53d1650fd4215e8be7579",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "ext-curl": "*",
  4558. "php": "^7.4 || ^8.0",
  4559. "psr/http-message": "~1.0 || ~2.0",
  4560. "psr/log": "^1.0 || ^2.0 || ^3.0"
  4561. },
  4562. "require-dev": {
  4563. "ext-mysqli": "*",
  4564. "friendsofphp/php-cs-fixer": "^3.75",
  4565. "jcchavezs/httptest": "~0.2",
  4566. "middlewares/fast-route": "^2.0",
  4567. "middlewares/request-handler": "^2.0",
  4568. "nyholm/psr7": "^1.4",
  4569. "phpspec/prophecy-phpunit": "^2.0",
  4570. "phpstan/phpstan": "^0.12.26",
  4571. "phpunit/phpunit": "~9",
  4572. "psr/http-client": "^1.0",
  4573. "psr/http-server-middleware": "^1.0",
  4574. "squizlabs/php_codesniffer": "3.*"
  4575. },
  4576. "suggest": {
  4577. "ext-mysqli": "Allows to use mysqli instrumentation.",
  4578. "psr/http-client": "Allows to instrument HTTP clients following PSR18.",
  4579. "psr/http-server-middleware": "Allows to instrument HTTP servers via middlewares following PSR15."
  4580. },
  4581. "type": "library",
  4582. "autoload": {
  4583. "files": [
  4584. "./src/Zipkin/Propagation/Id.php",
  4585. "./src/Zipkin/Timestamp.php",
  4586. "./src/Zipkin/Kind.php",
  4587. "./src/Zipkin/Tags.php",
  4588. "./src/Zipkin/Annotations.php",
  4589. "./src/Zipkin/SpanName.php"
  4590. ],
  4591. "psr-4": {
  4592. "Zipkin\\": "./src/Zipkin/"
  4593. }
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "Apache-2.0"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "José Carlos Chávez",
  4602. "email": "jcchavezs@gmail.com"
  4603. }
  4604. ],
  4605. "description": "A Zipkin instrumentation for PHP",
  4606. "homepage": "https://github.com/openzipkin/zipkin-php",
  4607. "keywords": [
  4608. "distributed-tracing",
  4609. "openzipkin",
  4610. "tracing",
  4611. "zipkin"
  4612. ],
  4613. "support": {
  4614. "issues": "https://github.com/openzipkin/zipkin-php/issues",
  4615. "source": "https://github.com/openzipkin/zipkin-php/tree/3.2.1"
  4616. },
  4617. "time": "2025-04-24T08:17:49+00:00"
  4618. },
  4619. {
  4620. "name": "php-di/phpdoc-reader",
  4621. "version": "2.2.1",
  4622. "source": {
  4623. "type": "git",
  4624. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  4625. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  4626. },
  4627. "dist": {
  4628. "type": "zip",
  4629. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4630. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4631. "shasum": ""
  4632. },
  4633. "require": {
  4634. "php": ">=7.2.0"
  4635. },
  4636. "require-dev": {
  4637. "mnapoli/hard-mode": "~0.3.0",
  4638. "phpunit/phpunit": "^8.5|^9.0"
  4639. },
  4640. "type": "library",
  4641. "autoload": {
  4642. "psr-4": {
  4643. "PhpDocReader\\": "src/PhpDocReader"
  4644. }
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "MIT"
  4649. ],
  4650. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  4651. "keywords": [
  4652. "phpdoc",
  4653. "reflection"
  4654. ],
  4655. "support": {
  4656. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  4657. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  4658. },
  4659. "time": "2020-10-12T12:39:22+00:00"
  4660. },
  4661. {
  4662. "name": "phpoption/phpoption",
  4663. "version": "1.9.3",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://github.com/schmittjoh/php-option.git",
  4667. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  4668. },
  4669. "dist": {
  4670. "type": "zip",
  4671. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4672. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4673. "shasum": ""
  4674. },
  4675. "require": {
  4676. "php": "^7.2.5 || ^8.0"
  4677. },
  4678. "require-dev": {
  4679. "bamarni/composer-bin-plugin": "^1.8.2",
  4680. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  4681. },
  4682. "type": "library",
  4683. "extra": {
  4684. "bamarni-bin": {
  4685. "bin-links": true,
  4686. "forward-command": false
  4687. },
  4688. "branch-alias": {
  4689. "dev-master": "1.9-dev"
  4690. }
  4691. },
  4692. "autoload": {
  4693. "psr-4": {
  4694. "PhpOption\\": "src/PhpOption/"
  4695. }
  4696. },
  4697. "notification-url": "https://packagist.org/downloads/",
  4698. "license": [
  4699. "Apache-2.0"
  4700. ],
  4701. "authors": [
  4702. {
  4703. "name": "Johannes M. Schmitt",
  4704. "email": "schmittjoh@gmail.com",
  4705. "homepage": "https://github.com/schmittjoh"
  4706. },
  4707. {
  4708. "name": "Graham Campbell",
  4709. "email": "hello@gjcampbell.co.uk",
  4710. "homepage": "https://github.com/GrahamCampbell"
  4711. }
  4712. ],
  4713. "description": "Option Type for PHP",
  4714. "keywords": [
  4715. "language",
  4716. "option",
  4717. "php",
  4718. "type"
  4719. ],
  4720. "support": {
  4721. "issues": "https://github.com/schmittjoh/php-option/issues",
  4722. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  4723. },
  4724. "funding": [
  4725. {
  4726. "url": "https://github.com/GrahamCampbell",
  4727. "type": "github"
  4728. },
  4729. {
  4730. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4731. "type": "tidelift"
  4732. }
  4733. ],
  4734. "time": "2024-07-20T21:41:07+00:00"
  4735. },
  4736. {
  4737. "name": "psr/clock",
  4738. "version": "1.0.0",
  4739. "source": {
  4740. "type": "git",
  4741. "url": "https://github.com/php-fig/clock.git",
  4742. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4743. },
  4744. "dist": {
  4745. "type": "zip",
  4746. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4747. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4748. "shasum": ""
  4749. },
  4750. "require": {
  4751. "php": "^7.0 || ^8.0"
  4752. },
  4753. "type": "library",
  4754. "autoload": {
  4755. "psr-4": {
  4756. "Psr\\Clock\\": "src/"
  4757. }
  4758. },
  4759. "notification-url": "https://packagist.org/downloads/",
  4760. "license": [
  4761. "MIT"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "PHP-FIG",
  4766. "homepage": "https://www.php-fig.org/"
  4767. }
  4768. ],
  4769. "description": "Common interface for reading the clock.",
  4770. "homepage": "https://github.com/php-fig/clock",
  4771. "keywords": [
  4772. "clock",
  4773. "now",
  4774. "psr",
  4775. "psr-20",
  4776. "time"
  4777. ],
  4778. "support": {
  4779. "issues": "https://github.com/php-fig/clock/issues",
  4780. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4781. },
  4782. "time": "2022-11-25T14:36:26+00:00"
  4783. },
  4784. {
  4785. "name": "psr/container",
  4786. "version": "2.0.2",
  4787. "source": {
  4788. "type": "git",
  4789. "url": "https://github.com/php-fig/container.git",
  4790. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4791. },
  4792. "dist": {
  4793. "type": "zip",
  4794. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4795. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4796. "shasum": ""
  4797. },
  4798. "require": {
  4799. "php": ">=7.4.0"
  4800. },
  4801. "type": "library",
  4802. "extra": {
  4803. "branch-alias": {
  4804. "dev-master": "2.0.x-dev"
  4805. }
  4806. },
  4807. "autoload": {
  4808. "psr-4": {
  4809. "Psr\\Container\\": "src/"
  4810. }
  4811. },
  4812. "notification-url": "https://packagist.org/downloads/",
  4813. "license": [
  4814. "MIT"
  4815. ],
  4816. "authors": [
  4817. {
  4818. "name": "PHP-FIG",
  4819. "homepage": "https://www.php-fig.org/"
  4820. }
  4821. ],
  4822. "description": "Common Container Interface (PHP FIG PSR-11)",
  4823. "homepage": "https://github.com/php-fig/container",
  4824. "keywords": [
  4825. "PSR-11",
  4826. "container",
  4827. "container-interface",
  4828. "container-interop",
  4829. "psr"
  4830. ],
  4831. "support": {
  4832. "issues": "https://github.com/php-fig/container/issues",
  4833. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4834. },
  4835. "time": "2021-11-05T16:47:00+00:00"
  4836. },
  4837. {
  4838. "name": "psr/event-dispatcher",
  4839. "version": "1.0.0",
  4840. "source": {
  4841. "type": "git",
  4842. "url": "https://github.com/php-fig/event-dispatcher.git",
  4843. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4844. },
  4845. "dist": {
  4846. "type": "zip",
  4847. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4848. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4849. "shasum": ""
  4850. },
  4851. "require": {
  4852. "php": ">=7.2.0"
  4853. },
  4854. "type": "library",
  4855. "extra": {
  4856. "branch-alias": {
  4857. "dev-master": "1.0.x-dev"
  4858. }
  4859. },
  4860. "autoload": {
  4861. "psr-4": {
  4862. "Psr\\EventDispatcher\\": "src/"
  4863. }
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "MIT"
  4868. ],
  4869. "authors": [
  4870. {
  4871. "name": "PHP-FIG",
  4872. "homepage": "http://www.php-fig.org/"
  4873. }
  4874. ],
  4875. "description": "Standard interfaces for event handling.",
  4876. "keywords": [
  4877. "events",
  4878. "psr",
  4879. "psr-14"
  4880. ],
  4881. "support": {
  4882. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4883. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4884. },
  4885. "time": "2019-01-08T18:20:26+00:00"
  4886. },
  4887. {
  4888. "name": "psr/http-client",
  4889. "version": "1.0.3",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://github.com/php-fig/http-client.git",
  4893. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4898. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4899. "shasum": ""
  4900. },
  4901. "require": {
  4902. "php": "^7.0 || ^8.0",
  4903. "psr/http-message": "^1.0 || ^2.0"
  4904. },
  4905. "type": "library",
  4906. "extra": {
  4907. "branch-alias": {
  4908. "dev-master": "1.0.x-dev"
  4909. }
  4910. },
  4911. "autoload": {
  4912. "psr-4": {
  4913. "Psr\\Http\\Client\\": "src/"
  4914. }
  4915. },
  4916. "notification-url": "https://packagist.org/downloads/",
  4917. "license": [
  4918. "MIT"
  4919. ],
  4920. "authors": [
  4921. {
  4922. "name": "PHP-FIG",
  4923. "homepage": "https://www.php-fig.org/"
  4924. }
  4925. ],
  4926. "description": "Common interface for HTTP clients",
  4927. "homepage": "https://github.com/php-fig/http-client",
  4928. "keywords": [
  4929. "http",
  4930. "http-client",
  4931. "psr",
  4932. "psr-18"
  4933. ],
  4934. "support": {
  4935. "source": "https://github.com/php-fig/http-client"
  4936. },
  4937. "time": "2023-09-23T14:17:50+00:00"
  4938. },
  4939. {
  4940. "name": "psr/http-factory",
  4941. "version": "1.1.0",
  4942. "source": {
  4943. "type": "git",
  4944. "url": "https://github.com/php-fig/http-factory.git",
  4945. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  4946. },
  4947. "dist": {
  4948. "type": "zip",
  4949. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4950. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4951. "shasum": ""
  4952. },
  4953. "require": {
  4954. "php": ">=7.1",
  4955. "psr/http-message": "^1.0 || ^2.0"
  4956. },
  4957. "type": "library",
  4958. "extra": {
  4959. "branch-alias": {
  4960. "dev-master": "1.0.x-dev"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Psr\\Http\\Message\\": "src/"
  4966. }
  4967. },
  4968. "notification-url": "https://packagist.org/downloads/",
  4969. "license": [
  4970. "MIT"
  4971. ],
  4972. "authors": [
  4973. {
  4974. "name": "PHP-FIG",
  4975. "homepage": "https://www.php-fig.org/"
  4976. }
  4977. ],
  4978. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4979. "keywords": [
  4980. "factory",
  4981. "http",
  4982. "message",
  4983. "psr",
  4984. "psr-17",
  4985. "psr-7",
  4986. "request",
  4987. "response"
  4988. ],
  4989. "support": {
  4990. "source": "https://github.com/php-fig/http-factory"
  4991. },
  4992. "time": "2024-04-15T12:06:14+00:00"
  4993. },
  4994. {
  4995. "name": "psr/http-message",
  4996. "version": "2.0",
  4997. "source": {
  4998. "type": "git",
  4999. "url": "https://github.com/php-fig/http-message.git",
  5000. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5001. },
  5002. "dist": {
  5003. "type": "zip",
  5004. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5005. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5006. "shasum": ""
  5007. },
  5008. "require": {
  5009. "php": "^7.2 || ^8.0"
  5010. },
  5011. "type": "library",
  5012. "extra": {
  5013. "branch-alias": {
  5014. "dev-master": "2.0.x-dev"
  5015. }
  5016. },
  5017. "autoload": {
  5018. "psr-4": {
  5019. "Psr\\Http\\Message\\": "src/"
  5020. }
  5021. },
  5022. "notification-url": "https://packagist.org/downloads/",
  5023. "license": [
  5024. "MIT"
  5025. ],
  5026. "authors": [
  5027. {
  5028. "name": "PHP-FIG",
  5029. "homepage": "https://www.php-fig.org/"
  5030. }
  5031. ],
  5032. "description": "Common interface for HTTP messages",
  5033. "homepage": "https://github.com/php-fig/http-message",
  5034. "keywords": [
  5035. "http",
  5036. "http-message",
  5037. "psr",
  5038. "psr-7",
  5039. "request",
  5040. "response"
  5041. ],
  5042. "support": {
  5043. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5044. },
  5045. "time": "2023-04-04T09:54:51+00:00"
  5046. },
  5047. {
  5048. "name": "psr/http-server-handler",
  5049. "version": "1.0.2",
  5050. "source": {
  5051. "type": "git",
  5052. "url": "https://github.com/php-fig/http-server-handler.git",
  5053. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5054. },
  5055. "dist": {
  5056. "type": "zip",
  5057. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5058. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5059. "shasum": ""
  5060. },
  5061. "require": {
  5062. "php": ">=7.0",
  5063. "psr/http-message": "^1.0 || ^2.0"
  5064. },
  5065. "type": "library",
  5066. "extra": {
  5067. "branch-alias": {
  5068. "dev-master": "1.0.x-dev"
  5069. }
  5070. },
  5071. "autoload": {
  5072. "psr-4": {
  5073. "Psr\\Http\\Server\\": "src/"
  5074. }
  5075. },
  5076. "notification-url": "https://packagist.org/downloads/",
  5077. "license": [
  5078. "MIT"
  5079. ],
  5080. "authors": [
  5081. {
  5082. "name": "PHP-FIG",
  5083. "homepage": "https://www.php-fig.org/"
  5084. }
  5085. ],
  5086. "description": "Common interface for HTTP server-side request handler",
  5087. "keywords": [
  5088. "handler",
  5089. "http",
  5090. "http-interop",
  5091. "psr",
  5092. "psr-15",
  5093. "psr-7",
  5094. "request",
  5095. "response",
  5096. "server"
  5097. ],
  5098. "support": {
  5099. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5100. },
  5101. "time": "2023-04-10T20:06:20+00:00"
  5102. },
  5103. {
  5104. "name": "psr/http-server-middleware",
  5105. "version": "1.0.2",
  5106. "source": {
  5107. "type": "git",
  5108. "url": "https://github.com/php-fig/http-server-middleware.git",
  5109. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5110. },
  5111. "dist": {
  5112. "type": "zip",
  5113. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5114. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5115. "shasum": ""
  5116. },
  5117. "require": {
  5118. "php": ">=7.0",
  5119. "psr/http-message": "^1.0 || ^2.0",
  5120. "psr/http-server-handler": "^1.0"
  5121. },
  5122. "type": "library",
  5123. "extra": {
  5124. "branch-alias": {
  5125. "dev-master": "1.0.x-dev"
  5126. }
  5127. },
  5128. "autoload": {
  5129. "psr-4": {
  5130. "Psr\\Http\\Server\\": "src/"
  5131. }
  5132. },
  5133. "notification-url": "https://packagist.org/downloads/",
  5134. "license": [
  5135. "MIT"
  5136. ],
  5137. "authors": [
  5138. {
  5139. "name": "PHP-FIG",
  5140. "homepage": "https://www.php-fig.org/"
  5141. }
  5142. ],
  5143. "description": "Common interface for HTTP server-side middleware",
  5144. "keywords": [
  5145. "http",
  5146. "http-interop",
  5147. "middleware",
  5148. "psr",
  5149. "psr-15",
  5150. "psr-7",
  5151. "request",
  5152. "response"
  5153. ],
  5154. "support": {
  5155. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5156. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5157. },
  5158. "time": "2023-04-11T06:14:47+00:00"
  5159. },
  5160. {
  5161. "name": "psr/log",
  5162. "version": "3.0.2",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://github.com/php-fig/log.git",
  5166. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5171. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5172. "shasum": ""
  5173. },
  5174. "require": {
  5175. "php": ">=8.0.0"
  5176. },
  5177. "type": "library",
  5178. "extra": {
  5179. "branch-alias": {
  5180. "dev-master": "3.x-dev"
  5181. }
  5182. },
  5183. "autoload": {
  5184. "psr-4": {
  5185. "Psr\\Log\\": "src"
  5186. }
  5187. },
  5188. "notification-url": "https://packagist.org/downloads/",
  5189. "license": [
  5190. "MIT"
  5191. ],
  5192. "authors": [
  5193. {
  5194. "name": "PHP-FIG",
  5195. "homepage": "https://www.php-fig.org/"
  5196. }
  5197. ],
  5198. "description": "Common interface for logging libraries",
  5199. "homepage": "https://github.com/php-fig/log",
  5200. "keywords": [
  5201. "log",
  5202. "psr",
  5203. "psr-3"
  5204. ],
  5205. "support": {
  5206. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5207. },
  5208. "time": "2024-09-11T13:17:53+00:00"
  5209. },
  5210. {
  5211. "name": "psr/simple-cache",
  5212. "version": "3.0.0",
  5213. "source": {
  5214. "type": "git",
  5215. "url": "https://github.com/php-fig/simple-cache.git",
  5216. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5217. },
  5218. "dist": {
  5219. "type": "zip",
  5220. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5221. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5222. "shasum": ""
  5223. },
  5224. "require": {
  5225. "php": ">=8.0.0"
  5226. },
  5227. "type": "library",
  5228. "extra": {
  5229. "branch-alias": {
  5230. "dev-master": "3.0.x-dev"
  5231. }
  5232. },
  5233. "autoload": {
  5234. "psr-4": {
  5235. "Psr\\SimpleCache\\": "src/"
  5236. }
  5237. },
  5238. "notification-url": "https://packagist.org/downloads/",
  5239. "license": [
  5240. "MIT"
  5241. ],
  5242. "authors": [
  5243. {
  5244. "name": "PHP-FIG",
  5245. "homepage": "https://www.php-fig.org/"
  5246. }
  5247. ],
  5248. "description": "Common interfaces for simple caching",
  5249. "keywords": [
  5250. "cache",
  5251. "caching",
  5252. "psr",
  5253. "psr-16",
  5254. "simple-cache"
  5255. ],
  5256. "support": {
  5257. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5258. },
  5259. "time": "2021-10-29T13:26:27+00:00"
  5260. },
  5261. {
  5262. "name": "ralouphie/getallheaders",
  5263. "version": "3.0.3",
  5264. "source": {
  5265. "type": "git",
  5266. "url": "https://github.com/ralouphie/getallheaders.git",
  5267. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5268. },
  5269. "dist": {
  5270. "type": "zip",
  5271. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5272. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5273. "shasum": ""
  5274. },
  5275. "require": {
  5276. "php": ">=5.6"
  5277. },
  5278. "require-dev": {
  5279. "php-coveralls/php-coveralls": "^2.1",
  5280. "phpunit/phpunit": "^5 || ^6.5"
  5281. },
  5282. "type": "library",
  5283. "autoload": {
  5284. "files": [
  5285. "src/getallheaders.php"
  5286. ]
  5287. },
  5288. "notification-url": "https://packagist.org/downloads/",
  5289. "license": [
  5290. "MIT"
  5291. ],
  5292. "authors": [
  5293. {
  5294. "name": "Ralph Khattar",
  5295. "email": "ralph.khattar@gmail.com"
  5296. }
  5297. ],
  5298. "description": "A polyfill for getallheaders.",
  5299. "support": {
  5300. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5301. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5302. },
  5303. "time": "2019-03-08T08:55:37+00:00"
  5304. },
  5305. {
  5306. "name": "swow/psr7-plus",
  5307. "version": "v1.1.2",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://github.com/swow/psr7-plus.git",
  5311. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5316. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5317. "shasum": ""
  5318. },
  5319. "require": {
  5320. "php": ">=8.0",
  5321. "psr/http-client": "^1.0",
  5322. "psr/http-factory": "^1.0",
  5323. "psr/http-message": "^1.1|^2.0"
  5324. },
  5325. "type": "library",
  5326. "autoload": {
  5327. "psr-4": {
  5328. "Swow\\Psr7\\Message\\": "src/Message/"
  5329. }
  5330. },
  5331. "notification-url": "https://packagist.org/downloads/",
  5332. "license": [
  5333. "Apache-2.0"
  5334. ],
  5335. "authors": [
  5336. {
  5337. "name": "twose",
  5338. "email": "twosee@php.net"
  5339. }
  5340. ],
  5341. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5342. "keywords": [
  5343. "http",
  5344. "psr17",
  5345. "psr7",
  5346. "swow",
  5347. "websocket"
  5348. ],
  5349. "support": {
  5350. "issues": "https://github.com/swow/swow",
  5351. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5352. },
  5353. "time": "2023-06-15T09:18:11+00:00"
  5354. },
  5355. {
  5356. "name": "symfony/console",
  5357. "version": "v6.4.21",
  5358. "source": {
  5359. "type": "git",
  5360. "url": "https://github.com/symfony/console.git",
  5361. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719"
  5362. },
  5363. "dist": {
  5364. "type": "zip",
  5365. "url": "https://api.github.com/repos/symfony/console/zipball/a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  5366. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  5367. "shasum": ""
  5368. },
  5369. "require": {
  5370. "php": ">=8.1",
  5371. "symfony/deprecation-contracts": "^2.5|^3",
  5372. "symfony/polyfill-mbstring": "~1.0",
  5373. "symfony/service-contracts": "^2.5|^3",
  5374. "symfony/string": "^5.4|^6.0|^7.0"
  5375. },
  5376. "conflict": {
  5377. "symfony/dependency-injection": "<5.4",
  5378. "symfony/dotenv": "<5.4",
  5379. "symfony/event-dispatcher": "<5.4",
  5380. "symfony/lock": "<5.4",
  5381. "symfony/process": "<5.4"
  5382. },
  5383. "provide": {
  5384. "psr/log-implementation": "1.0|2.0|3.0"
  5385. },
  5386. "require-dev": {
  5387. "psr/log": "^1|^2|^3",
  5388. "symfony/config": "^5.4|^6.0|^7.0",
  5389. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5390. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5391. "symfony/http-foundation": "^6.4|^7.0",
  5392. "symfony/http-kernel": "^6.4|^7.0",
  5393. "symfony/lock": "^5.4|^6.0|^7.0",
  5394. "symfony/messenger": "^5.4|^6.0|^7.0",
  5395. "symfony/process": "^5.4|^6.0|^7.0",
  5396. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5397. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5398. },
  5399. "type": "library",
  5400. "autoload": {
  5401. "psr-4": {
  5402. "Symfony\\Component\\Console\\": ""
  5403. },
  5404. "exclude-from-classmap": [
  5405. "/Tests/"
  5406. ]
  5407. },
  5408. "notification-url": "https://packagist.org/downloads/",
  5409. "license": [
  5410. "MIT"
  5411. ],
  5412. "authors": [
  5413. {
  5414. "name": "Fabien Potencier",
  5415. "email": "fabien@symfony.com"
  5416. },
  5417. {
  5418. "name": "Symfony Community",
  5419. "homepage": "https://symfony.com/contributors"
  5420. }
  5421. ],
  5422. "description": "Eases the creation of beautiful and testable command line interfaces",
  5423. "homepage": "https://symfony.com",
  5424. "keywords": [
  5425. "cli",
  5426. "command-line",
  5427. "console",
  5428. "terminal"
  5429. ],
  5430. "support": {
  5431. "source": "https://github.com/symfony/console/tree/v6.4.21"
  5432. },
  5433. "funding": [
  5434. {
  5435. "url": "https://symfony.com/sponsor",
  5436. "type": "custom"
  5437. },
  5438. {
  5439. "url": "https://github.com/fabpot",
  5440. "type": "github"
  5441. },
  5442. {
  5443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5444. "type": "tidelift"
  5445. }
  5446. ],
  5447. "time": "2025-04-07T15:42:41+00:00"
  5448. },
  5449. {
  5450. "name": "symfony/deprecation-contracts",
  5451. "version": "v3.6.0",
  5452. "source": {
  5453. "type": "git",
  5454. "url": "https://github.com/symfony/deprecation-contracts.git",
  5455. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  5456. },
  5457. "dist": {
  5458. "type": "zip",
  5459. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  5460. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  5461. "shasum": ""
  5462. },
  5463. "require": {
  5464. "php": ">=8.1"
  5465. },
  5466. "type": "library",
  5467. "extra": {
  5468. "thanks": {
  5469. "url": "https://github.com/symfony/contracts",
  5470. "name": "symfony/contracts"
  5471. },
  5472. "branch-alias": {
  5473. "dev-main": "3.6-dev"
  5474. }
  5475. },
  5476. "autoload": {
  5477. "files": [
  5478. "function.php"
  5479. ]
  5480. },
  5481. "notification-url": "https://packagist.org/downloads/",
  5482. "license": [
  5483. "MIT"
  5484. ],
  5485. "authors": [
  5486. {
  5487. "name": "Nicolas Grekas",
  5488. "email": "p@tchwork.com"
  5489. },
  5490. {
  5491. "name": "Symfony Community",
  5492. "homepage": "https://symfony.com/contributors"
  5493. }
  5494. ],
  5495. "description": "A generic function and convention to trigger deprecation notices",
  5496. "homepage": "https://symfony.com",
  5497. "support": {
  5498. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  5499. },
  5500. "funding": [
  5501. {
  5502. "url": "https://symfony.com/sponsor",
  5503. "type": "custom"
  5504. },
  5505. {
  5506. "url": "https://github.com/fabpot",
  5507. "type": "github"
  5508. },
  5509. {
  5510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5511. "type": "tidelift"
  5512. }
  5513. ],
  5514. "time": "2024-09-25T14:21:43+00:00"
  5515. },
  5516. {
  5517. "name": "symfony/finder",
  5518. "version": "v6.4.17",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/symfony/finder.git",
  5522. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  5527. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  5528. "shasum": ""
  5529. },
  5530. "require": {
  5531. "php": ">=8.1"
  5532. },
  5533. "require-dev": {
  5534. "symfony/filesystem": "^6.0|^7.0"
  5535. },
  5536. "type": "library",
  5537. "autoload": {
  5538. "psr-4": {
  5539. "Symfony\\Component\\Finder\\": ""
  5540. },
  5541. "exclude-from-classmap": [
  5542. "/Tests/"
  5543. ]
  5544. },
  5545. "notification-url": "https://packagist.org/downloads/",
  5546. "license": [
  5547. "MIT"
  5548. ],
  5549. "authors": [
  5550. {
  5551. "name": "Fabien Potencier",
  5552. "email": "fabien@symfony.com"
  5553. },
  5554. {
  5555. "name": "Symfony Community",
  5556. "homepage": "https://symfony.com/contributors"
  5557. }
  5558. ],
  5559. "description": "Finds files and directories via an intuitive fluent interface",
  5560. "homepage": "https://symfony.com",
  5561. "support": {
  5562. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  5563. },
  5564. "funding": [
  5565. {
  5566. "url": "https://symfony.com/sponsor",
  5567. "type": "custom"
  5568. },
  5569. {
  5570. "url": "https://github.com/fabpot",
  5571. "type": "github"
  5572. },
  5573. {
  5574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5575. "type": "tidelift"
  5576. }
  5577. ],
  5578. "time": "2024-12-29T13:51:37+00:00"
  5579. },
  5580. {
  5581. "name": "symfony/polyfill-ctype",
  5582. "version": "v1.32.0",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/symfony/polyfill-ctype.git",
  5586. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5591. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5592. "shasum": ""
  5593. },
  5594. "require": {
  5595. "php": ">=7.2"
  5596. },
  5597. "provide": {
  5598. "ext-ctype": "*"
  5599. },
  5600. "suggest": {
  5601. "ext-ctype": "For best performance"
  5602. },
  5603. "type": "library",
  5604. "extra": {
  5605. "thanks": {
  5606. "url": "https://github.com/symfony/polyfill",
  5607. "name": "symfony/polyfill"
  5608. }
  5609. },
  5610. "autoload": {
  5611. "files": [
  5612. "bootstrap.php"
  5613. ],
  5614. "psr-4": {
  5615. "Symfony\\Polyfill\\Ctype\\": ""
  5616. }
  5617. },
  5618. "notification-url": "https://packagist.org/downloads/",
  5619. "license": [
  5620. "MIT"
  5621. ],
  5622. "authors": [
  5623. {
  5624. "name": "Gert de Pagter",
  5625. "email": "BackEndTea@gmail.com"
  5626. },
  5627. {
  5628. "name": "Symfony Community",
  5629. "homepage": "https://symfony.com/contributors"
  5630. }
  5631. ],
  5632. "description": "Symfony polyfill for ctype functions",
  5633. "homepage": "https://symfony.com",
  5634. "keywords": [
  5635. "compatibility",
  5636. "ctype",
  5637. "polyfill",
  5638. "portable"
  5639. ],
  5640. "support": {
  5641. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  5642. },
  5643. "funding": [
  5644. {
  5645. "url": "https://symfony.com/sponsor",
  5646. "type": "custom"
  5647. },
  5648. {
  5649. "url": "https://github.com/fabpot",
  5650. "type": "github"
  5651. },
  5652. {
  5653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5654. "type": "tidelift"
  5655. }
  5656. ],
  5657. "time": "2024-09-09T11:45:10+00:00"
  5658. },
  5659. {
  5660. "name": "symfony/polyfill-intl-grapheme",
  5661. "version": "v1.32.0",
  5662. "source": {
  5663. "type": "git",
  5664. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5665. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5666. },
  5667. "dist": {
  5668. "type": "zip",
  5669. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5670. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5671. "shasum": ""
  5672. },
  5673. "require": {
  5674. "php": ">=7.2"
  5675. },
  5676. "suggest": {
  5677. "ext-intl": "For best performance"
  5678. },
  5679. "type": "library",
  5680. "extra": {
  5681. "thanks": {
  5682. "url": "https://github.com/symfony/polyfill",
  5683. "name": "symfony/polyfill"
  5684. }
  5685. },
  5686. "autoload": {
  5687. "files": [
  5688. "bootstrap.php"
  5689. ],
  5690. "psr-4": {
  5691. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5692. }
  5693. },
  5694. "notification-url": "https://packagist.org/downloads/",
  5695. "license": [
  5696. "MIT"
  5697. ],
  5698. "authors": [
  5699. {
  5700. "name": "Nicolas Grekas",
  5701. "email": "p@tchwork.com"
  5702. },
  5703. {
  5704. "name": "Symfony Community",
  5705. "homepage": "https://symfony.com/contributors"
  5706. }
  5707. ],
  5708. "description": "Symfony polyfill for intl's grapheme_* functions",
  5709. "homepage": "https://symfony.com",
  5710. "keywords": [
  5711. "compatibility",
  5712. "grapheme",
  5713. "intl",
  5714. "polyfill",
  5715. "portable",
  5716. "shim"
  5717. ],
  5718. "support": {
  5719. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  5720. },
  5721. "funding": [
  5722. {
  5723. "url": "https://symfony.com/sponsor",
  5724. "type": "custom"
  5725. },
  5726. {
  5727. "url": "https://github.com/fabpot",
  5728. "type": "github"
  5729. },
  5730. {
  5731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5732. "type": "tidelift"
  5733. }
  5734. ],
  5735. "time": "2024-09-09T11:45:10+00:00"
  5736. },
  5737. {
  5738. "name": "symfony/polyfill-intl-normalizer",
  5739. "version": "v1.32.0",
  5740. "source": {
  5741. "type": "git",
  5742. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5743. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5744. },
  5745. "dist": {
  5746. "type": "zip",
  5747. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5748. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5749. "shasum": ""
  5750. },
  5751. "require": {
  5752. "php": ">=7.2"
  5753. },
  5754. "suggest": {
  5755. "ext-intl": "For best performance"
  5756. },
  5757. "type": "library",
  5758. "extra": {
  5759. "thanks": {
  5760. "url": "https://github.com/symfony/polyfill",
  5761. "name": "symfony/polyfill"
  5762. }
  5763. },
  5764. "autoload": {
  5765. "files": [
  5766. "bootstrap.php"
  5767. ],
  5768. "psr-4": {
  5769. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5770. },
  5771. "classmap": [
  5772. "Resources/stubs"
  5773. ]
  5774. },
  5775. "notification-url": "https://packagist.org/downloads/",
  5776. "license": [
  5777. "MIT"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "Nicolas Grekas",
  5782. "email": "p@tchwork.com"
  5783. },
  5784. {
  5785. "name": "Symfony Community",
  5786. "homepage": "https://symfony.com/contributors"
  5787. }
  5788. ],
  5789. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5790. "homepage": "https://symfony.com",
  5791. "keywords": [
  5792. "compatibility",
  5793. "intl",
  5794. "normalizer",
  5795. "polyfill",
  5796. "portable",
  5797. "shim"
  5798. ],
  5799. "support": {
  5800. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  5801. },
  5802. "funding": [
  5803. {
  5804. "url": "https://symfony.com/sponsor",
  5805. "type": "custom"
  5806. },
  5807. {
  5808. "url": "https://github.com/fabpot",
  5809. "type": "github"
  5810. },
  5811. {
  5812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5813. "type": "tidelift"
  5814. }
  5815. ],
  5816. "time": "2024-09-09T11:45:10+00:00"
  5817. },
  5818. {
  5819. "name": "symfony/polyfill-mbstring",
  5820. "version": "v1.32.0",
  5821. "source": {
  5822. "type": "git",
  5823. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5824. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  5825. },
  5826. "dist": {
  5827. "type": "zip",
  5828. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5829. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5830. "shasum": ""
  5831. },
  5832. "require": {
  5833. "ext-iconv": "*",
  5834. "php": ">=7.2"
  5835. },
  5836. "provide": {
  5837. "ext-mbstring": "*"
  5838. },
  5839. "suggest": {
  5840. "ext-mbstring": "For best performance"
  5841. },
  5842. "type": "library",
  5843. "extra": {
  5844. "thanks": {
  5845. "url": "https://github.com/symfony/polyfill",
  5846. "name": "symfony/polyfill"
  5847. }
  5848. },
  5849. "autoload": {
  5850. "files": [
  5851. "bootstrap.php"
  5852. ],
  5853. "psr-4": {
  5854. "Symfony\\Polyfill\\Mbstring\\": ""
  5855. }
  5856. },
  5857. "notification-url": "https://packagist.org/downloads/",
  5858. "license": [
  5859. "MIT"
  5860. ],
  5861. "authors": [
  5862. {
  5863. "name": "Nicolas Grekas",
  5864. "email": "p@tchwork.com"
  5865. },
  5866. {
  5867. "name": "Symfony Community",
  5868. "homepage": "https://symfony.com/contributors"
  5869. }
  5870. ],
  5871. "description": "Symfony polyfill for the Mbstring extension",
  5872. "homepage": "https://symfony.com",
  5873. "keywords": [
  5874. "compatibility",
  5875. "mbstring",
  5876. "polyfill",
  5877. "portable",
  5878. "shim"
  5879. ],
  5880. "support": {
  5881. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  5882. },
  5883. "funding": [
  5884. {
  5885. "url": "https://symfony.com/sponsor",
  5886. "type": "custom"
  5887. },
  5888. {
  5889. "url": "https://github.com/fabpot",
  5890. "type": "github"
  5891. },
  5892. {
  5893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5894. "type": "tidelift"
  5895. }
  5896. ],
  5897. "time": "2024-12-23T08:48:59+00:00"
  5898. },
  5899. {
  5900. "name": "symfony/polyfill-php80",
  5901. "version": "v1.32.0",
  5902. "source": {
  5903. "type": "git",
  5904. "url": "https://github.com/symfony/polyfill-php80.git",
  5905. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  5906. },
  5907. "dist": {
  5908. "type": "zip",
  5909. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  5910. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  5911. "shasum": ""
  5912. },
  5913. "require": {
  5914. "php": ">=7.2"
  5915. },
  5916. "type": "library",
  5917. "extra": {
  5918. "thanks": {
  5919. "url": "https://github.com/symfony/polyfill",
  5920. "name": "symfony/polyfill"
  5921. }
  5922. },
  5923. "autoload": {
  5924. "files": [
  5925. "bootstrap.php"
  5926. ],
  5927. "psr-4": {
  5928. "Symfony\\Polyfill\\Php80\\": ""
  5929. },
  5930. "classmap": [
  5931. "Resources/stubs"
  5932. ]
  5933. },
  5934. "notification-url": "https://packagist.org/downloads/",
  5935. "license": [
  5936. "MIT"
  5937. ],
  5938. "authors": [
  5939. {
  5940. "name": "Ion Bazan",
  5941. "email": "ion.bazan@gmail.com"
  5942. },
  5943. {
  5944. "name": "Nicolas Grekas",
  5945. "email": "p@tchwork.com"
  5946. },
  5947. {
  5948. "name": "Symfony Community",
  5949. "homepage": "https://symfony.com/contributors"
  5950. }
  5951. ],
  5952. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5953. "homepage": "https://symfony.com",
  5954. "keywords": [
  5955. "compatibility",
  5956. "polyfill",
  5957. "portable",
  5958. "shim"
  5959. ],
  5960. "support": {
  5961. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  5962. },
  5963. "funding": [
  5964. {
  5965. "url": "https://symfony.com/sponsor",
  5966. "type": "custom"
  5967. },
  5968. {
  5969. "url": "https://github.com/fabpot",
  5970. "type": "github"
  5971. },
  5972. {
  5973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5974. "type": "tidelift"
  5975. }
  5976. ],
  5977. "time": "2025-01-02T08:10:11+00:00"
  5978. },
  5979. {
  5980. "name": "symfony/service-contracts",
  5981. "version": "v3.6.0",
  5982. "source": {
  5983. "type": "git",
  5984. "url": "https://github.com/symfony/service-contracts.git",
  5985. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  5986. },
  5987. "dist": {
  5988. "type": "zip",
  5989. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  5990. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  5991. "shasum": ""
  5992. },
  5993. "require": {
  5994. "php": ">=8.1",
  5995. "psr/container": "^1.1|^2.0",
  5996. "symfony/deprecation-contracts": "^2.5|^3"
  5997. },
  5998. "conflict": {
  5999. "ext-psr": "<1.1|>=2"
  6000. },
  6001. "type": "library",
  6002. "extra": {
  6003. "thanks": {
  6004. "url": "https://github.com/symfony/contracts",
  6005. "name": "symfony/contracts"
  6006. },
  6007. "branch-alias": {
  6008. "dev-main": "3.6-dev"
  6009. }
  6010. },
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Symfony\\Contracts\\Service\\": ""
  6014. },
  6015. "exclude-from-classmap": [
  6016. "/Test/"
  6017. ]
  6018. },
  6019. "notification-url": "https://packagist.org/downloads/",
  6020. "license": [
  6021. "MIT"
  6022. ],
  6023. "authors": [
  6024. {
  6025. "name": "Nicolas Grekas",
  6026. "email": "p@tchwork.com"
  6027. },
  6028. {
  6029. "name": "Symfony Community",
  6030. "homepage": "https://symfony.com/contributors"
  6031. }
  6032. ],
  6033. "description": "Generic abstractions related to writing services",
  6034. "homepage": "https://symfony.com",
  6035. "keywords": [
  6036. "abstractions",
  6037. "contracts",
  6038. "decoupling",
  6039. "interfaces",
  6040. "interoperability",
  6041. "standards"
  6042. ],
  6043. "support": {
  6044. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  6045. },
  6046. "funding": [
  6047. {
  6048. "url": "https://symfony.com/sponsor",
  6049. "type": "custom"
  6050. },
  6051. {
  6052. "url": "https://github.com/fabpot",
  6053. "type": "github"
  6054. },
  6055. {
  6056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6057. "type": "tidelift"
  6058. }
  6059. ],
  6060. "time": "2025-04-25T09:37:31+00:00"
  6061. },
  6062. {
  6063. "name": "symfony/string",
  6064. "version": "v6.4.21",
  6065. "source": {
  6066. "type": "git",
  6067. "url": "https://github.com/symfony/string.git",
  6068. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  6069. },
  6070. "dist": {
  6071. "type": "zip",
  6072. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  6073. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  6074. "shasum": ""
  6075. },
  6076. "require": {
  6077. "php": ">=8.1",
  6078. "symfony/polyfill-ctype": "~1.8",
  6079. "symfony/polyfill-intl-grapheme": "~1.0",
  6080. "symfony/polyfill-intl-normalizer": "~1.0",
  6081. "symfony/polyfill-mbstring": "~1.0"
  6082. },
  6083. "conflict": {
  6084. "symfony/translation-contracts": "<2.5"
  6085. },
  6086. "require-dev": {
  6087. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6088. "symfony/http-client": "^5.4|^6.0|^7.0",
  6089. "symfony/intl": "^6.2|^7.0",
  6090. "symfony/translation-contracts": "^2.5|^3.0",
  6091. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6092. },
  6093. "type": "library",
  6094. "autoload": {
  6095. "files": [
  6096. "Resources/functions.php"
  6097. ],
  6098. "psr-4": {
  6099. "Symfony\\Component\\String\\": ""
  6100. },
  6101. "exclude-from-classmap": [
  6102. "/Tests/"
  6103. ]
  6104. },
  6105. "notification-url": "https://packagist.org/downloads/",
  6106. "license": [
  6107. "MIT"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Nicolas Grekas",
  6112. "email": "p@tchwork.com"
  6113. },
  6114. {
  6115. "name": "Symfony Community",
  6116. "homepage": "https://symfony.com/contributors"
  6117. }
  6118. ],
  6119. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6120. "homepage": "https://symfony.com",
  6121. "keywords": [
  6122. "grapheme",
  6123. "i18n",
  6124. "string",
  6125. "unicode",
  6126. "utf-8",
  6127. "utf8"
  6128. ],
  6129. "support": {
  6130. "source": "https://github.com/symfony/string/tree/v6.4.21"
  6131. },
  6132. "funding": [
  6133. {
  6134. "url": "https://symfony.com/sponsor",
  6135. "type": "custom"
  6136. },
  6137. {
  6138. "url": "https://github.com/fabpot",
  6139. "type": "github"
  6140. },
  6141. {
  6142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6143. "type": "tidelift"
  6144. }
  6145. ],
  6146. "time": "2025-04-18T15:23:29+00:00"
  6147. },
  6148. {
  6149. "name": "symfony/translation",
  6150. "version": "v6.4.21",
  6151. "source": {
  6152. "type": "git",
  6153. "url": "https://github.com/symfony/translation.git",
  6154. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c"
  6155. },
  6156. "dist": {
  6157. "type": "zip",
  6158. "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c",
  6159. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c",
  6160. "shasum": ""
  6161. },
  6162. "require": {
  6163. "php": ">=8.1",
  6164. "symfony/deprecation-contracts": "^2.5|^3",
  6165. "symfony/polyfill-mbstring": "~1.0",
  6166. "symfony/translation-contracts": "^2.5|^3.0"
  6167. },
  6168. "conflict": {
  6169. "symfony/config": "<5.4",
  6170. "symfony/console": "<5.4",
  6171. "symfony/dependency-injection": "<5.4",
  6172. "symfony/http-client-contracts": "<2.5",
  6173. "symfony/http-kernel": "<5.4",
  6174. "symfony/service-contracts": "<2.5",
  6175. "symfony/twig-bundle": "<5.4",
  6176. "symfony/yaml": "<5.4"
  6177. },
  6178. "provide": {
  6179. "symfony/translation-implementation": "2.3|3.0"
  6180. },
  6181. "require-dev": {
  6182. "nikic/php-parser": "^4.18|^5.0",
  6183. "psr/log": "^1|^2|^3",
  6184. "symfony/config": "^5.4|^6.0|^7.0",
  6185. "symfony/console": "^5.4|^6.0|^7.0",
  6186. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6187. "symfony/finder": "^5.4|^6.0|^7.0",
  6188. "symfony/http-client-contracts": "^2.5|^3.0",
  6189. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6190. "symfony/intl": "^5.4|^6.0|^7.0",
  6191. "symfony/polyfill-intl-icu": "^1.21",
  6192. "symfony/routing": "^5.4|^6.0|^7.0",
  6193. "symfony/service-contracts": "^2.5|^3",
  6194. "symfony/yaml": "^5.4|^6.0|^7.0"
  6195. },
  6196. "type": "library",
  6197. "autoload": {
  6198. "files": [
  6199. "Resources/functions.php"
  6200. ],
  6201. "psr-4": {
  6202. "Symfony\\Component\\Translation\\": ""
  6203. },
  6204. "exclude-from-classmap": [
  6205. "/Tests/"
  6206. ]
  6207. },
  6208. "notification-url": "https://packagist.org/downloads/",
  6209. "license": [
  6210. "MIT"
  6211. ],
  6212. "authors": [
  6213. {
  6214. "name": "Fabien Potencier",
  6215. "email": "fabien@symfony.com"
  6216. },
  6217. {
  6218. "name": "Symfony Community",
  6219. "homepage": "https://symfony.com/contributors"
  6220. }
  6221. ],
  6222. "description": "Provides tools to internationalize your application",
  6223. "homepage": "https://symfony.com",
  6224. "support": {
  6225. "source": "https://github.com/symfony/translation/tree/v6.4.21"
  6226. },
  6227. "funding": [
  6228. {
  6229. "url": "https://symfony.com/sponsor",
  6230. "type": "custom"
  6231. },
  6232. {
  6233. "url": "https://github.com/fabpot",
  6234. "type": "github"
  6235. },
  6236. {
  6237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6238. "type": "tidelift"
  6239. }
  6240. ],
  6241. "time": "2025-04-07T19:02:30+00:00"
  6242. },
  6243. {
  6244. "name": "symfony/translation-contracts",
  6245. "version": "v3.6.0",
  6246. "source": {
  6247. "type": "git",
  6248. "url": "https://github.com/symfony/translation-contracts.git",
  6249. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  6250. },
  6251. "dist": {
  6252. "type": "zip",
  6253. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6254. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6255. "shasum": ""
  6256. },
  6257. "require": {
  6258. "php": ">=8.1"
  6259. },
  6260. "type": "library",
  6261. "extra": {
  6262. "thanks": {
  6263. "url": "https://github.com/symfony/contracts",
  6264. "name": "symfony/contracts"
  6265. },
  6266. "branch-alias": {
  6267. "dev-main": "3.6-dev"
  6268. }
  6269. },
  6270. "autoload": {
  6271. "psr-4": {
  6272. "Symfony\\Contracts\\Translation\\": ""
  6273. },
  6274. "exclude-from-classmap": [
  6275. "/Test/"
  6276. ]
  6277. },
  6278. "notification-url": "https://packagist.org/downloads/",
  6279. "license": [
  6280. "MIT"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Nicolas Grekas",
  6285. "email": "p@tchwork.com"
  6286. },
  6287. {
  6288. "name": "Symfony Community",
  6289. "homepage": "https://symfony.com/contributors"
  6290. }
  6291. ],
  6292. "description": "Generic abstractions related to translation",
  6293. "homepage": "https://symfony.com",
  6294. "keywords": [
  6295. "abstractions",
  6296. "contracts",
  6297. "decoupling",
  6298. "interfaces",
  6299. "interoperability",
  6300. "standards"
  6301. ],
  6302. "support": {
  6303. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  6304. },
  6305. "funding": [
  6306. {
  6307. "url": "https://symfony.com/sponsor",
  6308. "type": "custom"
  6309. },
  6310. {
  6311. "url": "https://github.com/fabpot",
  6312. "type": "github"
  6313. },
  6314. {
  6315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6316. "type": "tidelift"
  6317. }
  6318. ],
  6319. "time": "2024-09-27T08:32:26+00:00"
  6320. },
  6321. {
  6322. "name": "vlucas/phpdotenv",
  6323. "version": "v5.6.2",
  6324. "source": {
  6325. "type": "git",
  6326. "url": "https://github.com/vlucas/phpdotenv.git",
  6327. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  6328. },
  6329. "dist": {
  6330. "type": "zip",
  6331. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  6332. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  6333. "shasum": ""
  6334. },
  6335. "require": {
  6336. "ext-pcre": "*",
  6337. "graham-campbell/result-type": "^1.1.3",
  6338. "php": "^7.2.5 || ^8.0",
  6339. "phpoption/phpoption": "^1.9.3",
  6340. "symfony/polyfill-ctype": "^1.24",
  6341. "symfony/polyfill-mbstring": "^1.24",
  6342. "symfony/polyfill-php80": "^1.24"
  6343. },
  6344. "require-dev": {
  6345. "bamarni/composer-bin-plugin": "^1.8.2",
  6346. "ext-filter": "*",
  6347. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6348. },
  6349. "suggest": {
  6350. "ext-filter": "Required to use the boolean validator."
  6351. },
  6352. "type": "library",
  6353. "extra": {
  6354. "bamarni-bin": {
  6355. "bin-links": true,
  6356. "forward-command": false
  6357. },
  6358. "branch-alias": {
  6359. "dev-master": "5.6-dev"
  6360. }
  6361. },
  6362. "autoload": {
  6363. "psr-4": {
  6364. "Dotenv\\": "src/"
  6365. }
  6366. },
  6367. "notification-url": "https://packagist.org/downloads/",
  6368. "license": [
  6369. "BSD-3-Clause"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "Graham Campbell",
  6374. "email": "hello@gjcampbell.co.uk",
  6375. "homepage": "https://github.com/GrahamCampbell"
  6376. },
  6377. {
  6378. "name": "Vance Lucas",
  6379. "email": "vance@vancelucas.com",
  6380. "homepage": "https://github.com/vlucas"
  6381. }
  6382. ],
  6383. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6384. "keywords": [
  6385. "dotenv",
  6386. "env",
  6387. "environment"
  6388. ],
  6389. "support": {
  6390. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6391. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  6392. },
  6393. "funding": [
  6394. {
  6395. "url": "https://github.com/GrahamCampbell",
  6396. "type": "github"
  6397. },
  6398. {
  6399. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6400. "type": "tidelift"
  6401. }
  6402. ],
  6403. "time": "2025-04-30T23:37:27+00:00"
  6404. }
  6405. ],
  6406. "packages-dev": [
  6407. {
  6408. "name": "clue/ndjson-react",
  6409. "version": "v1.3.0",
  6410. "source": {
  6411. "type": "git",
  6412. "url": "https://github.com/clue/reactphp-ndjson.git",
  6413. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6414. },
  6415. "dist": {
  6416. "type": "zip",
  6417. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6418. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6419. "shasum": ""
  6420. },
  6421. "require": {
  6422. "php": ">=5.3",
  6423. "react/stream": "^1.2"
  6424. },
  6425. "require-dev": {
  6426. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6427. "react/event-loop": "^1.2"
  6428. },
  6429. "type": "library",
  6430. "autoload": {
  6431. "psr-4": {
  6432. "Clue\\React\\NDJson\\": "src/"
  6433. }
  6434. },
  6435. "notification-url": "https://packagist.org/downloads/",
  6436. "license": [
  6437. "MIT"
  6438. ],
  6439. "authors": [
  6440. {
  6441. "name": "Christian Lück",
  6442. "email": "christian@clue.engineering"
  6443. }
  6444. ],
  6445. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6446. "homepage": "https://github.com/clue/reactphp-ndjson",
  6447. "keywords": [
  6448. "NDJSON",
  6449. "json",
  6450. "jsonlines",
  6451. "newline",
  6452. "reactphp",
  6453. "streaming"
  6454. ],
  6455. "support": {
  6456. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6457. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6458. },
  6459. "funding": [
  6460. {
  6461. "url": "https://clue.engineering/support",
  6462. "type": "custom"
  6463. },
  6464. {
  6465. "url": "https://github.com/clue",
  6466. "type": "github"
  6467. }
  6468. ],
  6469. "time": "2022-12-23T10:58:28+00:00"
  6470. },
  6471. {
  6472. "name": "composer/pcre",
  6473. "version": "3.3.2",
  6474. "source": {
  6475. "type": "git",
  6476. "url": "https://github.com/composer/pcre.git",
  6477. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  6478. },
  6479. "dist": {
  6480. "type": "zip",
  6481. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  6482. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  6483. "shasum": ""
  6484. },
  6485. "require": {
  6486. "php": "^7.4 || ^8.0"
  6487. },
  6488. "conflict": {
  6489. "phpstan/phpstan": "<1.11.10"
  6490. },
  6491. "require-dev": {
  6492. "phpstan/phpstan": "^1.12 || ^2",
  6493. "phpstan/phpstan-strict-rules": "^1 || ^2",
  6494. "phpunit/phpunit": "^8 || ^9"
  6495. },
  6496. "type": "library",
  6497. "extra": {
  6498. "phpstan": {
  6499. "includes": [
  6500. "extension.neon"
  6501. ]
  6502. },
  6503. "branch-alias": {
  6504. "dev-main": "3.x-dev"
  6505. }
  6506. },
  6507. "autoload": {
  6508. "psr-4": {
  6509. "Composer\\Pcre\\": "src"
  6510. }
  6511. },
  6512. "notification-url": "https://packagist.org/downloads/",
  6513. "license": [
  6514. "MIT"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "Jordi Boggiano",
  6519. "email": "j.boggiano@seld.be",
  6520. "homepage": "http://seld.be"
  6521. }
  6522. ],
  6523. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6524. "keywords": [
  6525. "PCRE",
  6526. "preg",
  6527. "regex",
  6528. "regular expression"
  6529. ],
  6530. "support": {
  6531. "issues": "https://github.com/composer/pcre/issues",
  6532. "source": "https://github.com/composer/pcre/tree/3.3.2"
  6533. },
  6534. "funding": [
  6535. {
  6536. "url": "https://packagist.com",
  6537. "type": "custom"
  6538. },
  6539. {
  6540. "url": "https://github.com/composer",
  6541. "type": "github"
  6542. },
  6543. {
  6544. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6545. "type": "tidelift"
  6546. }
  6547. ],
  6548. "time": "2024-11-12T16:29:46+00:00"
  6549. },
  6550. {
  6551. "name": "composer/semver",
  6552. "version": "3.4.3",
  6553. "source": {
  6554. "type": "git",
  6555. "url": "https://github.com/composer/semver.git",
  6556. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  6557. },
  6558. "dist": {
  6559. "type": "zip",
  6560. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  6561. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  6562. "shasum": ""
  6563. },
  6564. "require": {
  6565. "php": "^5.3.2 || ^7.0 || ^8.0"
  6566. },
  6567. "require-dev": {
  6568. "phpstan/phpstan": "^1.11",
  6569. "symfony/phpunit-bridge": "^3 || ^7"
  6570. },
  6571. "type": "library",
  6572. "extra": {
  6573. "branch-alias": {
  6574. "dev-main": "3.x-dev"
  6575. }
  6576. },
  6577. "autoload": {
  6578. "psr-4": {
  6579. "Composer\\Semver\\": "src"
  6580. }
  6581. },
  6582. "notification-url": "https://packagist.org/downloads/",
  6583. "license": [
  6584. "MIT"
  6585. ],
  6586. "authors": [
  6587. {
  6588. "name": "Nils Adermann",
  6589. "email": "naderman@naderman.de",
  6590. "homepage": "http://www.naderman.de"
  6591. },
  6592. {
  6593. "name": "Jordi Boggiano",
  6594. "email": "j.boggiano@seld.be",
  6595. "homepage": "http://seld.be"
  6596. },
  6597. {
  6598. "name": "Rob Bast",
  6599. "email": "rob.bast@gmail.com",
  6600. "homepage": "http://robbast.nl"
  6601. }
  6602. ],
  6603. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6604. "keywords": [
  6605. "semantic",
  6606. "semver",
  6607. "validation",
  6608. "versioning"
  6609. ],
  6610. "support": {
  6611. "irc": "ircs://irc.libera.chat:6697/composer",
  6612. "issues": "https://github.com/composer/semver/issues",
  6613. "source": "https://github.com/composer/semver/tree/3.4.3"
  6614. },
  6615. "funding": [
  6616. {
  6617. "url": "https://packagist.com",
  6618. "type": "custom"
  6619. },
  6620. {
  6621. "url": "https://github.com/composer",
  6622. "type": "github"
  6623. },
  6624. {
  6625. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6626. "type": "tidelift"
  6627. }
  6628. ],
  6629. "time": "2024-09-19T14:15:21+00:00"
  6630. },
  6631. {
  6632. "name": "composer/xdebug-handler",
  6633. "version": "3.0.5",
  6634. "source": {
  6635. "type": "git",
  6636. "url": "https://github.com/composer/xdebug-handler.git",
  6637. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  6638. },
  6639. "dist": {
  6640. "type": "zip",
  6641. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  6642. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  6643. "shasum": ""
  6644. },
  6645. "require": {
  6646. "composer/pcre": "^1 || ^2 || ^3",
  6647. "php": "^7.2.5 || ^8.0",
  6648. "psr/log": "^1 || ^2 || ^3"
  6649. },
  6650. "require-dev": {
  6651. "phpstan/phpstan": "^1.0",
  6652. "phpstan/phpstan-strict-rules": "^1.1",
  6653. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  6654. },
  6655. "type": "library",
  6656. "autoload": {
  6657. "psr-4": {
  6658. "Composer\\XdebugHandler\\": "src"
  6659. }
  6660. },
  6661. "notification-url": "https://packagist.org/downloads/",
  6662. "license": [
  6663. "MIT"
  6664. ],
  6665. "authors": [
  6666. {
  6667. "name": "John Stevenson",
  6668. "email": "john-stevenson@blueyonder.co.uk"
  6669. }
  6670. ],
  6671. "description": "Restarts a process without Xdebug.",
  6672. "keywords": [
  6673. "Xdebug",
  6674. "performance"
  6675. ],
  6676. "support": {
  6677. "irc": "ircs://irc.libera.chat:6697/composer",
  6678. "issues": "https://github.com/composer/xdebug-handler/issues",
  6679. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  6680. },
  6681. "funding": [
  6682. {
  6683. "url": "https://packagist.com",
  6684. "type": "custom"
  6685. },
  6686. {
  6687. "url": "https://github.com/composer",
  6688. "type": "github"
  6689. },
  6690. {
  6691. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6692. "type": "tidelift"
  6693. }
  6694. ],
  6695. "time": "2024-05-06T16:37:16+00:00"
  6696. },
  6697. {
  6698. "name": "evenement/evenement",
  6699. "version": "v3.0.2",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/igorw/evenement.git",
  6703. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6708. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6709. "shasum": ""
  6710. },
  6711. "require": {
  6712. "php": ">=7.0"
  6713. },
  6714. "require-dev": {
  6715. "phpunit/phpunit": "^9 || ^6"
  6716. },
  6717. "type": "library",
  6718. "autoload": {
  6719. "psr-4": {
  6720. "Evenement\\": "src/"
  6721. }
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "Igor Wiedler",
  6730. "email": "igor@wiedler.ch"
  6731. }
  6732. ],
  6733. "description": "Événement is a very simple event dispatching library for PHP",
  6734. "keywords": [
  6735. "event-dispatcher",
  6736. "event-emitter"
  6737. ],
  6738. "support": {
  6739. "issues": "https://github.com/igorw/evenement/issues",
  6740. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  6741. },
  6742. "time": "2023-08-08T05:53:35+00:00"
  6743. },
  6744. {
  6745. "name": "fidry/cpu-core-counter",
  6746. "version": "1.2.0",
  6747. "source": {
  6748. "type": "git",
  6749. "url": "https://github.com/theofidry/cpu-core-counter.git",
  6750. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  6751. },
  6752. "dist": {
  6753. "type": "zip",
  6754. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  6755. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  6756. "shasum": ""
  6757. },
  6758. "require": {
  6759. "php": "^7.2 || ^8.0"
  6760. },
  6761. "require-dev": {
  6762. "fidry/makefile": "^0.2.0",
  6763. "fidry/php-cs-fixer-config": "^1.1.2",
  6764. "phpstan/extension-installer": "^1.2.0",
  6765. "phpstan/phpstan": "^1.9.2",
  6766. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  6767. "phpstan/phpstan-phpunit": "^1.2.2",
  6768. "phpstan/phpstan-strict-rules": "^1.4.4",
  6769. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  6770. "webmozarts/strict-phpunit": "^7.5"
  6771. },
  6772. "type": "library",
  6773. "autoload": {
  6774. "psr-4": {
  6775. "Fidry\\CpuCoreCounter\\": "src/"
  6776. }
  6777. },
  6778. "notification-url": "https://packagist.org/downloads/",
  6779. "license": [
  6780. "MIT"
  6781. ],
  6782. "authors": [
  6783. {
  6784. "name": "Théo FIDRY",
  6785. "email": "theo.fidry@gmail.com"
  6786. }
  6787. ],
  6788. "description": "Tiny utility to get the number of CPU cores.",
  6789. "keywords": [
  6790. "CPU",
  6791. "core"
  6792. ],
  6793. "support": {
  6794. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  6795. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  6796. },
  6797. "funding": [
  6798. {
  6799. "url": "https://github.com/theofidry",
  6800. "type": "github"
  6801. }
  6802. ],
  6803. "time": "2024-08-06T10:04:20+00:00"
  6804. },
  6805. {
  6806. "name": "friendsofphp/php-cs-fixer",
  6807. "version": "v3.75.0",
  6808. "source": {
  6809. "type": "git",
  6810. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  6811. "reference": "399a128ff2fdaf4281e4e79b755693286cdf325c"
  6812. },
  6813. "dist": {
  6814. "type": "zip",
  6815. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/399a128ff2fdaf4281e4e79b755693286cdf325c",
  6816. "reference": "399a128ff2fdaf4281e4e79b755693286cdf325c",
  6817. "shasum": ""
  6818. },
  6819. "require": {
  6820. "clue/ndjson-react": "^1.0",
  6821. "composer/semver": "^3.4",
  6822. "composer/xdebug-handler": "^3.0.3",
  6823. "ext-filter": "*",
  6824. "ext-hash": "*",
  6825. "ext-json": "*",
  6826. "ext-tokenizer": "*",
  6827. "fidry/cpu-core-counter": "^1.2",
  6828. "php": "^7.4 || ^8.0",
  6829. "react/child-process": "^0.6.5",
  6830. "react/event-loop": "^1.0",
  6831. "react/promise": "^2.0 || ^3.0",
  6832. "react/socket": "^1.0",
  6833. "react/stream": "^1.0",
  6834. "sebastian/diff": "^4.0 || ^5.1 || ^6.0 || ^7.0",
  6835. "symfony/console": "^5.4 || ^6.4 || ^7.0",
  6836. "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
  6837. "symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
  6838. "symfony/finder": "^5.4 || ^6.4 || ^7.0",
  6839. "symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
  6840. "symfony/polyfill-mbstring": "^1.31",
  6841. "symfony/polyfill-php80": "^1.31",
  6842. "symfony/polyfill-php81": "^1.31",
  6843. "symfony/process": "^5.4 || ^6.4 || ^7.2",
  6844. "symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
  6845. },
  6846. "require-dev": {
  6847. "facile-it/paraunit": "^1.3.1 || ^2.6",
  6848. "infection/infection": "^0.29.14",
  6849. "justinrainbow/json-schema": "^5.3 || ^6.2",
  6850. "keradus/cli-executor": "^2.1",
  6851. "mikey179/vfsstream": "^1.6.12",
  6852. "php-coveralls/php-coveralls": "^2.7",
  6853. "php-cs-fixer/accessible-object": "^1.1",
  6854. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6",
  6855. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6",
  6856. "phpunit/phpunit": "^9.6.22 || ^10.5.45 || ^11.5.12",
  6857. "symfony/var-dumper": "^5.4.48 || ^6.4.18 || ^7.2.3",
  6858. "symfony/yaml": "^5.4.45 || ^6.4.18 || ^7.2.3"
  6859. },
  6860. "suggest": {
  6861. "ext-dom": "For handling output formats in XML",
  6862. "ext-mbstring": "For handling non-UTF8 characters."
  6863. },
  6864. "bin": [
  6865. "php-cs-fixer"
  6866. ],
  6867. "type": "application",
  6868. "autoload": {
  6869. "psr-4": {
  6870. "PhpCsFixer\\": "src/"
  6871. },
  6872. "exclude-from-classmap": [
  6873. "src/Fixer/Internal/*"
  6874. ]
  6875. },
  6876. "notification-url": "https://packagist.org/downloads/",
  6877. "license": [
  6878. "MIT"
  6879. ],
  6880. "authors": [
  6881. {
  6882. "name": "Fabien Potencier",
  6883. "email": "fabien@symfony.com"
  6884. },
  6885. {
  6886. "name": "Dariusz Rumiński",
  6887. "email": "dariusz.ruminski@gmail.com"
  6888. }
  6889. ],
  6890. "description": "A tool to automatically fix PHP code style",
  6891. "keywords": [
  6892. "Static code analysis",
  6893. "fixer",
  6894. "standards",
  6895. "static analysis"
  6896. ],
  6897. "support": {
  6898. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  6899. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.75.0"
  6900. },
  6901. "funding": [
  6902. {
  6903. "url": "https://github.com/keradus",
  6904. "type": "github"
  6905. }
  6906. ],
  6907. "time": "2025-03-31T18:40:42+00:00"
  6908. },
  6909. {
  6910. "name": "hamcrest/hamcrest-php",
  6911. "version": "v2.1.1",
  6912. "source": {
  6913. "type": "git",
  6914. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6915. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  6916. },
  6917. "dist": {
  6918. "type": "zip",
  6919. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  6920. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  6921. "shasum": ""
  6922. },
  6923. "require": {
  6924. "php": "^7.4|^8.0"
  6925. },
  6926. "replace": {
  6927. "cordoval/hamcrest-php": "*",
  6928. "davedevelopment/hamcrest-php": "*",
  6929. "kodova/hamcrest-php": "*"
  6930. },
  6931. "require-dev": {
  6932. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  6933. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  6934. },
  6935. "type": "library",
  6936. "extra": {
  6937. "branch-alias": {
  6938. "dev-master": "2.1-dev"
  6939. }
  6940. },
  6941. "autoload": {
  6942. "classmap": [
  6943. "hamcrest"
  6944. ]
  6945. },
  6946. "notification-url": "https://packagist.org/downloads/",
  6947. "license": [
  6948. "BSD-3-Clause"
  6949. ],
  6950. "description": "This is the PHP port of Hamcrest Matchers",
  6951. "keywords": [
  6952. "test"
  6953. ],
  6954. "support": {
  6955. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6956. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  6957. },
  6958. "time": "2025-04-30T06:54:44+00:00"
  6959. },
  6960. {
  6961. "name": "hyperf/devtool",
  6962. "version": "v3.1.51",
  6963. "source": {
  6964. "type": "git",
  6965. "url": "https://github.com/hyperf/devtool.git",
  6966. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  6967. },
  6968. "dist": {
  6969. "type": "zip",
  6970. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  6971. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  6972. "shasum": ""
  6973. },
  6974. "require": {
  6975. "hyperf/code-parser": "~3.1.0",
  6976. "hyperf/command": "~3.1.0",
  6977. "hyperf/contract": "~3.1.0",
  6978. "hyperf/di": "~3.1.0",
  6979. "hyperf/support": "~3.1.0",
  6980. "hyperf/utils": "~3.1.0",
  6981. "php": ">=8.1"
  6982. },
  6983. "type": "library",
  6984. "extra": {
  6985. "hyperf": {
  6986. "config": "Hyperf\\Devtool\\ConfigProvider"
  6987. },
  6988. "branch-alias": {
  6989. "dev-master": "3.1-dev"
  6990. }
  6991. },
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Hyperf\\Devtool\\": "src/"
  6995. }
  6996. },
  6997. "notification-url": "https://packagist.org/downloads/",
  6998. "license": [
  6999. "MIT"
  7000. ],
  7001. "description": "A Devtool for Hyperf.",
  7002. "homepage": "https://hyperf.io",
  7003. "keywords": [
  7004. "dev",
  7005. "devtool",
  7006. "hyperf",
  7007. "php",
  7008. "swoole"
  7009. ],
  7010. "support": {
  7011. "docs": "https://hyperf.wiki",
  7012. "issues": "https://github.com/hyperf/hyperf/issues",
  7013. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7014. "source": "https://github.com/hyperf/hyperf"
  7015. },
  7016. "funding": [
  7017. {
  7018. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7019. "type": "custom"
  7020. },
  7021. {
  7022. "url": "https://opencollective.com/hyperf",
  7023. "type": "open_collective"
  7024. }
  7025. ],
  7026. "time": "2025-02-06T06:42:00+00:00"
  7027. },
  7028. {
  7029. "name": "hyperf/testing",
  7030. "version": "v3.1.55",
  7031. "source": {
  7032. "type": "git",
  7033. "url": "https://github.com/hyperf/testing.git",
  7034. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db"
  7035. },
  7036. "dist": {
  7037. "type": "zip",
  7038. "url": "https://api.github.com/repos/hyperf/testing/zipball/f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  7039. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  7040. "shasum": ""
  7041. },
  7042. "require": {
  7043. "hyperf/codec": "~3.1.0",
  7044. "hyperf/collection": "~3.1.0",
  7045. "hyperf/contract": "~3.1.0",
  7046. "hyperf/coroutine": "~3.1.0",
  7047. "hyperf/http-message": "~3.1.0",
  7048. "hyperf/http-server": "~3.1.0",
  7049. "hyperf/support": "~3.1.0",
  7050. "hyperf/utils": "~3.1.0",
  7051. "php": ">=8.1",
  7052. "phpunit/phpunit": "^10.0",
  7053. "psr/container": "^1.0 || ^2.0",
  7054. "symfony/http-foundation": "^5.4 || ^6.0"
  7055. },
  7056. "suggest": {
  7057. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7058. },
  7059. "bin": [
  7060. "co-phpunit"
  7061. ],
  7062. "type": "library",
  7063. "extra": {
  7064. "branch-alias": {
  7065. "dev-master": "3.1-dev"
  7066. }
  7067. },
  7068. "autoload": {
  7069. "psr-4": {
  7070. "Hyperf\\Testing\\": "src/"
  7071. }
  7072. },
  7073. "notification-url": "https://packagist.org/downloads/",
  7074. "license": [
  7075. "MIT"
  7076. ],
  7077. "description": "Testing for hyperf",
  7078. "keywords": [
  7079. "dev",
  7080. "php",
  7081. "swoole",
  7082. "testing"
  7083. ],
  7084. "support": {
  7085. "source": "https://github.com/hyperf/testing/tree/v3.1.55"
  7086. },
  7087. "funding": [
  7088. {
  7089. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7090. "type": "custom"
  7091. },
  7092. {
  7093. "url": "https://opencollective.com/hyperf",
  7094. "type": "open_collective"
  7095. }
  7096. ],
  7097. "time": "2025-05-02T14:13:24+00:00"
  7098. },
  7099. {
  7100. "name": "hyperf/watcher",
  7101. "version": "v3.1.54",
  7102. "source": {
  7103. "type": "git",
  7104. "url": "https://github.com/hyperf/watcher.git",
  7105. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70"
  7106. },
  7107. "dist": {
  7108. "type": "zip",
  7109. "url": "https://api.github.com/repos/hyperf/watcher/zipball/c92dc6bd94c6e2369a3de262a700550427041b70",
  7110. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70",
  7111. "shasum": ""
  7112. },
  7113. "require": {
  7114. "ext-posix": "*",
  7115. "hyperf/codec": "~3.1.0",
  7116. "hyperf/command": "~3.1.0",
  7117. "hyperf/di": "~3.1.0",
  7118. "hyperf/framework": "~3.1.0",
  7119. "hyperf/support": "~3.1.0",
  7120. "php": ">=8.1"
  7121. },
  7122. "type": "library",
  7123. "extra": {
  7124. "hyperf": {
  7125. "config": "Hyperf\\Watcher\\ConfigProvider"
  7126. },
  7127. "branch-alias": {
  7128. "dev-master": "3.1-dev"
  7129. }
  7130. },
  7131. "autoload": {
  7132. "files": [
  7133. "src/Functions.php"
  7134. ],
  7135. "psr-4": {
  7136. "Hyperf\\Watcher\\": "src/"
  7137. }
  7138. },
  7139. "notification-url": "https://packagist.org/downloads/",
  7140. "license": [
  7141. "MIT"
  7142. ],
  7143. "description": "Hot reload watcher for Hyperf",
  7144. "keywords": [
  7145. "dev",
  7146. "hyperf",
  7147. "php"
  7148. ],
  7149. "support": {
  7150. "issues": "https://github.com/hyperf/watcher/issues",
  7151. "source": "https://github.com/hyperf/watcher/tree/v3.1.54"
  7152. },
  7153. "funding": [
  7154. {
  7155. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7156. "type": "custom"
  7157. },
  7158. {
  7159. "url": "https://opencollective.com/hyperf",
  7160. "type": "open_collective"
  7161. }
  7162. ],
  7163. "time": "2025-04-26T13:02:01+00:00"
  7164. },
  7165. {
  7166. "name": "mockery/mockery",
  7167. "version": "1.6.12",
  7168. "source": {
  7169. "type": "git",
  7170. "url": "https://github.com/mockery/mockery.git",
  7171. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7172. },
  7173. "dist": {
  7174. "type": "zip",
  7175. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7176. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7177. "shasum": ""
  7178. },
  7179. "require": {
  7180. "hamcrest/hamcrest-php": "^2.0.1",
  7181. "lib-pcre": ">=7.0",
  7182. "php": ">=7.3"
  7183. },
  7184. "conflict": {
  7185. "phpunit/phpunit": "<8.0"
  7186. },
  7187. "require-dev": {
  7188. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7189. "symplify/easy-coding-standard": "^12.1.14"
  7190. },
  7191. "type": "library",
  7192. "autoload": {
  7193. "files": [
  7194. "library/helpers.php",
  7195. "library/Mockery.php"
  7196. ],
  7197. "psr-4": {
  7198. "Mockery\\": "library/Mockery"
  7199. }
  7200. },
  7201. "notification-url": "https://packagist.org/downloads/",
  7202. "license": [
  7203. "BSD-3-Clause"
  7204. ],
  7205. "authors": [
  7206. {
  7207. "name": "Pádraic Brady",
  7208. "email": "padraic.brady@gmail.com",
  7209. "homepage": "https://github.com/padraic",
  7210. "role": "Author"
  7211. },
  7212. {
  7213. "name": "Dave Marshall",
  7214. "email": "dave.marshall@atstsolutions.co.uk",
  7215. "homepage": "https://davedevelopment.co.uk",
  7216. "role": "Developer"
  7217. },
  7218. {
  7219. "name": "Nathanael Esayeas",
  7220. "email": "nathanael.esayeas@protonmail.com",
  7221. "homepage": "https://github.com/ghostwriter",
  7222. "role": "Lead Developer"
  7223. }
  7224. ],
  7225. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7226. "homepage": "https://github.com/mockery/mockery",
  7227. "keywords": [
  7228. "BDD",
  7229. "TDD",
  7230. "library",
  7231. "mock",
  7232. "mock objects",
  7233. "mockery",
  7234. "stub",
  7235. "test",
  7236. "test double",
  7237. "testing"
  7238. ],
  7239. "support": {
  7240. "docs": "https://docs.mockery.io/",
  7241. "issues": "https://github.com/mockery/mockery/issues",
  7242. "rss": "https://github.com/mockery/mockery/releases.atom",
  7243. "security": "https://github.com/mockery/mockery/security/advisories",
  7244. "source": "https://github.com/mockery/mockery"
  7245. },
  7246. "time": "2024-05-16T03:13:13+00:00"
  7247. },
  7248. {
  7249. "name": "myclabs/deep-copy",
  7250. "version": "1.13.1",
  7251. "source": {
  7252. "type": "git",
  7253. "url": "https://github.com/myclabs/DeepCopy.git",
  7254. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
  7255. },
  7256. "dist": {
  7257. "type": "zip",
  7258. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
  7259. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
  7260. "shasum": ""
  7261. },
  7262. "require": {
  7263. "php": "^7.1 || ^8.0"
  7264. },
  7265. "conflict": {
  7266. "doctrine/collections": "<1.6.8",
  7267. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7268. },
  7269. "require-dev": {
  7270. "doctrine/collections": "^1.6.8",
  7271. "doctrine/common": "^2.13.3 || ^3.2.2",
  7272. "phpspec/prophecy": "^1.10",
  7273. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7274. },
  7275. "type": "library",
  7276. "autoload": {
  7277. "files": [
  7278. "src/DeepCopy/deep_copy.php"
  7279. ],
  7280. "psr-4": {
  7281. "DeepCopy\\": "src/DeepCopy/"
  7282. }
  7283. },
  7284. "notification-url": "https://packagist.org/downloads/",
  7285. "license": [
  7286. "MIT"
  7287. ],
  7288. "description": "Create deep copies (clones) of your objects",
  7289. "keywords": [
  7290. "clone",
  7291. "copy",
  7292. "duplicate",
  7293. "object",
  7294. "object graph"
  7295. ],
  7296. "support": {
  7297. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7298. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
  7299. },
  7300. "funding": [
  7301. {
  7302. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7303. "type": "tidelift"
  7304. }
  7305. ],
  7306. "time": "2025-04-29T12:36:36+00:00"
  7307. },
  7308. {
  7309. "name": "phar-io/manifest",
  7310. "version": "2.0.4",
  7311. "source": {
  7312. "type": "git",
  7313. "url": "https://github.com/phar-io/manifest.git",
  7314. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7315. },
  7316. "dist": {
  7317. "type": "zip",
  7318. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7319. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7320. "shasum": ""
  7321. },
  7322. "require": {
  7323. "ext-dom": "*",
  7324. "ext-libxml": "*",
  7325. "ext-phar": "*",
  7326. "ext-xmlwriter": "*",
  7327. "phar-io/version": "^3.0.1",
  7328. "php": "^7.2 || ^8.0"
  7329. },
  7330. "type": "library",
  7331. "extra": {
  7332. "branch-alias": {
  7333. "dev-master": "2.0.x-dev"
  7334. }
  7335. },
  7336. "autoload": {
  7337. "classmap": [
  7338. "src/"
  7339. ]
  7340. },
  7341. "notification-url": "https://packagist.org/downloads/",
  7342. "license": [
  7343. "BSD-3-Clause"
  7344. ],
  7345. "authors": [
  7346. {
  7347. "name": "Arne Blankerts",
  7348. "email": "arne@blankerts.de",
  7349. "role": "Developer"
  7350. },
  7351. {
  7352. "name": "Sebastian Heuer",
  7353. "email": "sebastian@phpeople.de",
  7354. "role": "Developer"
  7355. },
  7356. {
  7357. "name": "Sebastian Bergmann",
  7358. "email": "sebastian@phpunit.de",
  7359. "role": "Developer"
  7360. }
  7361. ],
  7362. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7363. "support": {
  7364. "issues": "https://github.com/phar-io/manifest/issues",
  7365. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7366. },
  7367. "funding": [
  7368. {
  7369. "url": "https://github.com/theseer",
  7370. "type": "github"
  7371. }
  7372. ],
  7373. "time": "2024-03-03T12:33:53+00:00"
  7374. },
  7375. {
  7376. "name": "phar-io/version",
  7377. "version": "3.2.1",
  7378. "source": {
  7379. "type": "git",
  7380. "url": "https://github.com/phar-io/version.git",
  7381. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7382. },
  7383. "dist": {
  7384. "type": "zip",
  7385. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7386. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7387. "shasum": ""
  7388. },
  7389. "require": {
  7390. "php": "^7.2 || ^8.0"
  7391. },
  7392. "type": "library",
  7393. "autoload": {
  7394. "classmap": [
  7395. "src/"
  7396. ]
  7397. },
  7398. "notification-url": "https://packagist.org/downloads/",
  7399. "license": [
  7400. "BSD-3-Clause"
  7401. ],
  7402. "authors": [
  7403. {
  7404. "name": "Arne Blankerts",
  7405. "email": "arne@blankerts.de",
  7406. "role": "Developer"
  7407. },
  7408. {
  7409. "name": "Sebastian Heuer",
  7410. "email": "sebastian@phpeople.de",
  7411. "role": "Developer"
  7412. },
  7413. {
  7414. "name": "Sebastian Bergmann",
  7415. "email": "sebastian@phpunit.de",
  7416. "role": "Developer"
  7417. }
  7418. ],
  7419. "description": "Library for handling version information and constraints",
  7420. "support": {
  7421. "issues": "https://github.com/phar-io/version/issues",
  7422. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7423. },
  7424. "time": "2022-02-21T01:04:05+00:00"
  7425. },
  7426. {
  7427. "name": "phpstan/phpstan",
  7428. "version": "1.12.27",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/phpstan/phpstan.git",
  7432. "reference": "3a6e423c076ab39dfedc307e2ac627ef579db162"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/3a6e423c076ab39dfedc307e2ac627ef579db162",
  7437. "reference": "3a6e423c076ab39dfedc307e2ac627ef579db162",
  7438. "shasum": ""
  7439. },
  7440. "require": {
  7441. "php": "^7.2|^8.0"
  7442. },
  7443. "conflict": {
  7444. "phpstan/phpstan-shim": "*"
  7445. },
  7446. "bin": [
  7447. "phpstan",
  7448. "phpstan.phar"
  7449. ],
  7450. "type": "library",
  7451. "autoload": {
  7452. "files": [
  7453. "bootstrap.php"
  7454. ]
  7455. },
  7456. "notification-url": "https://packagist.org/downloads/",
  7457. "license": [
  7458. "MIT"
  7459. ],
  7460. "description": "PHPStan - PHP Static Analysis Tool",
  7461. "keywords": [
  7462. "dev",
  7463. "static analysis"
  7464. ],
  7465. "support": {
  7466. "docs": "https://phpstan.org/user-guide/getting-started",
  7467. "forum": "https://github.com/phpstan/phpstan/discussions",
  7468. "issues": "https://github.com/phpstan/phpstan/issues",
  7469. "security": "https://github.com/phpstan/phpstan/security/policy",
  7470. "source": "https://github.com/phpstan/phpstan-src"
  7471. },
  7472. "funding": [
  7473. {
  7474. "url": "https://github.com/ondrejmirtes",
  7475. "type": "github"
  7476. },
  7477. {
  7478. "url": "https://github.com/phpstan",
  7479. "type": "github"
  7480. }
  7481. ],
  7482. "time": "2025-05-21T20:51:45+00:00"
  7483. },
  7484. {
  7485. "name": "phpunit/php-code-coverage",
  7486. "version": "10.1.16",
  7487. "source": {
  7488. "type": "git",
  7489. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7490. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  7491. },
  7492. "dist": {
  7493. "type": "zip",
  7494. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  7495. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  7496. "shasum": ""
  7497. },
  7498. "require": {
  7499. "ext-dom": "*",
  7500. "ext-libxml": "*",
  7501. "ext-xmlwriter": "*",
  7502. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  7503. "php": ">=8.1",
  7504. "phpunit/php-file-iterator": "^4.1.0",
  7505. "phpunit/php-text-template": "^3.0.1",
  7506. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  7507. "sebastian/complexity": "^3.2.0",
  7508. "sebastian/environment": "^6.1.0",
  7509. "sebastian/lines-of-code": "^2.0.2",
  7510. "sebastian/version": "^4.0.1",
  7511. "theseer/tokenizer": "^1.2.3"
  7512. },
  7513. "require-dev": {
  7514. "phpunit/phpunit": "^10.1"
  7515. },
  7516. "suggest": {
  7517. "ext-pcov": "PHP extension that provides line coverage",
  7518. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7519. },
  7520. "type": "library",
  7521. "extra": {
  7522. "branch-alias": {
  7523. "dev-main": "10.1.x-dev"
  7524. }
  7525. },
  7526. "autoload": {
  7527. "classmap": [
  7528. "src/"
  7529. ]
  7530. },
  7531. "notification-url": "https://packagist.org/downloads/",
  7532. "license": [
  7533. "BSD-3-Clause"
  7534. ],
  7535. "authors": [
  7536. {
  7537. "name": "Sebastian Bergmann",
  7538. "email": "sebastian@phpunit.de",
  7539. "role": "lead"
  7540. }
  7541. ],
  7542. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7543. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7544. "keywords": [
  7545. "coverage",
  7546. "testing",
  7547. "xunit"
  7548. ],
  7549. "support": {
  7550. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7551. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7552. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://github.com/sebastianbergmann",
  7557. "type": "github"
  7558. }
  7559. ],
  7560. "time": "2024-08-22T04:31:57+00:00"
  7561. },
  7562. {
  7563. "name": "phpunit/php-file-iterator",
  7564. "version": "4.1.0",
  7565. "source": {
  7566. "type": "git",
  7567. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7568. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7569. },
  7570. "dist": {
  7571. "type": "zip",
  7572. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7573. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7574. "shasum": ""
  7575. },
  7576. "require": {
  7577. "php": ">=8.1"
  7578. },
  7579. "require-dev": {
  7580. "phpunit/phpunit": "^10.0"
  7581. },
  7582. "type": "library",
  7583. "extra": {
  7584. "branch-alias": {
  7585. "dev-main": "4.0-dev"
  7586. }
  7587. },
  7588. "autoload": {
  7589. "classmap": [
  7590. "src/"
  7591. ]
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "BSD-3-Clause"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "Sebastian Bergmann",
  7600. "email": "sebastian@phpunit.de",
  7601. "role": "lead"
  7602. }
  7603. ],
  7604. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7605. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7606. "keywords": [
  7607. "filesystem",
  7608. "iterator"
  7609. ],
  7610. "support": {
  7611. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7612. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7613. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7614. },
  7615. "funding": [
  7616. {
  7617. "url": "https://github.com/sebastianbergmann",
  7618. "type": "github"
  7619. }
  7620. ],
  7621. "time": "2023-08-31T06:24:48+00:00"
  7622. },
  7623. {
  7624. "name": "phpunit/php-invoker",
  7625. "version": "4.0.0",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7629. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7634. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7635. "shasum": ""
  7636. },
  7637. "require": {
  7638. "php": ">=8.1"
  7639. },
  7640. "require-dev": {
  7641. "ext-pcntl": "*",
  7642. "phpunit/phpunit": "^10.0"
  7643. },
  7644. "suggest": {
  7645. "ext-pcntl": "*"
  7646. },
  7647. "type": "library",
  7648. "extra": {
  7649. "branch-alias": {
  7650. "dev-main": "4.0-dev"
  7651. }
  7652. },
  7653. "autoload": {
  7654. "classmap": [
  7655. "src/"
  7656. ]
  7657. },
  7658. "notification-url": "https://packagist.org/downloads/",
  7659. "license": [
  7660. "BSD-3-Clause"
  7661. ],
  7662. "authors": [
  7663. {
  7664. "name": "Sebastian Bergmann",
  7665. "email": "sebastian@phpunit.de",
  7666. "role": "lead"
  7667. }
  7668. ],
  7669. "description": "Invoke callables with a timeout",
  7670. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7671. "keywords": [
  7672. "process"
  7673. ],
  7674. "support": {
  7675. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7676. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7677. },
  7678. "funding": [
  7679. {
  7680. "url": "https://github.com/sebastianbergmann",
  7681. "type": "github"
  7682. }
  7683. ],
  7684. "time": "2023-02-03T06:56:09+00:00"
  7685. },
  7686. {
  7687. "name": "phpunit/php-text-template",
  7688. "version": "3.0.1",
  7689. "source": {
  7690. "type": "git",
  7691. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7692. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7693. },
  7694. "dist": {
  7695. "type": "zip",
  7696. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7697. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7698. "shasum": ""
  7699. },
  7700. "require": {
  7701. "php": ">=8.1"
  7702. },
  7703. "require-dev": {
  7704. "phpunit/phpunit": "^10.0"
  7705. },
  7706. "type": "library",
  7707. "extra": {
  7708. "branch-alias": {
  7709. "dev-main": "3.0-dev"
  7710. }
  7711. },
  7712. "autoload": {
  7713. "classmap": [
  7714. "src/"
  7715. ]
  7716. },
  7717. "notification-url": "https://packagist.org/downloads/",
  7718. "license": [
  7719. "BSD-3-Clause"
  7720. ],
  7721. "authors": [
  7722. {
  7723. "name": "Sebastian Bergmann",
  7724. "email": "sebastian@phpunit.de",
  7725. "role": "lead"
  7726. }
  7727. ],
  7728. "description": "Simple template engine.",
  7729. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7730. "keywords": [
  7731. "template"
  7732. ],
  7733. "support": {
  7734. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7735. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7736. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  7737. },
  7738. "funding": [
  7739. {
  7740. "url": "https://github.com/sebastianbergmann",
  7741. "type": "github"
  7742. }
  7743. ],
  7744. "time": "2023-08-31T14:07:24+00:00"
  7745. },
  7746. {
  7747. "name": "phpunit/php-timer",
  7748. "version": "6.0.0",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7752. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7757. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7758. "shasum": ""
  7759. },
  7760. "require": {
  7761. "php": ">=8.1"
  7762. },
  7763. "require-dev": {
  7764. "phpunit/phpunit": "^10.0"
  7765. },
  7766. "type": "library",
  7767. "extra": {
  7768. "branch-alias": {
  7769. "dev-main": "6.0-dev"
  7770. }
  7771. },
  7772. "autoload": {
  7773. "classmap": [
  7774. "src/"
  7775. ]
  7776. },
  7777. "notification-url": "https://packagist.org/downloads/",
  7778. "license": [
  7779. "BSD-3-Clause"
  7780. ],
  7781. "authors": [
  7782. {
  7783. "name": "Sebastian Bergmann",
  7784. "email": "sebastian@phpunit.de",
  7785. "role": "lead"
  7786. }
  7787. ],
  7788. "description": "Utility class for timing",
  7789. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7790. "keywords": [
  7791. "timer"
  7792. ],
  7793. "support": {
  7794. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7795. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  7796. },
  7797. "funding": [
  7798. {
  7799. "url": "https://github.com/sebastianbergmann",
  7800. "type": "github"
  7801. }
  7802. ],
  7803. "time": "2023-02-03T06:57:52+00:00"
  7804. },
  7805. {
  7806. "name": "phpunit/phpunit",
  7807. "version": "10.5.46",
  7808. "source": {
  7809. "type": "git",
  7810. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7811. "reference": "8080be387a5be380dda48c6f41cee4a13aadab3d"
  7812. },
  7813. "dist": {
  7814. "type": "zip",
  7815. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8080be387a5be380dda48c6f41cee4a13aadab3d",
  7816. "reference": "8080be387a5be380dda48c6f41cee4a13aadab3d",
  7817. "shasum": ""
  7818. },
  7819. "require": {
  7820. "ext-dom": "*",
  7821. "ext-json": "*",
  7822. "ext-libxml": "*",
  7823. "ext-mbstring": "*",
  7824. "ext-xml": "*",
  7825. "ext-xmlwriter": "*",
  7826. "myclabs/deep-copy": "^1.13.1",
  7827. "phar-io/manifest": "^2.0.4",
  7828. "phar-io/version": "^3.2.1",
  7829. "php": ">=8.1",
  7830. "phpunit/php-code-coverage": "^10.1.16",
  7831. "phpunit/php-file-iterator": "^4.1.0",
  7832. "phpunit/php-invoker": "^4.0.0",
  7833. "phpunit/php-text-template": "^3.0.1",
  7834. "phpunit/php-timer": "^6.0.0",
  7835. "sebastian/cli-parser": "^2.0.1",
  7836. "sebastian/code-unit": "^2.0.0",
  7837. "sebastian/comparator": "^5.0.3",
  7838. "sebastian/diff": "^5.1.1",
  7839. "sebastian/environment": "^6.1.0",
  7840. "sebastian/exporter": "^5.1.2",
  7841. "sebastian/global-state": "^6.0.2",
  7842. "sebastian/object-enumerator": "^5.0.0",
  7843. "sebastian/recursion-context": "^5.0.0",
  7844. "sebastian/type": "^4.0.0",
  7845. "sebastian/version": "^4.0.1"
  7846. },
  7847. "suggest": {
  7848. "ext-soap": "To be able to generate mocks based on WSDL files"
  7849. },
  7850. "bin": [
  7851. "phpunit"
  7852. ],
  7853. "type": "library",
  7854. "extra": {
  7855. "branch-alias": {
  7856. "dev-main": "10.5-dev"
  7857. }
  7858. },
  7859. "autoload": {
  7860. "files": [
  7861. "src/Framework/Assert/Functions.php"
  7862. ],
  7863. "classmap": [
  7864. "src/"
  7865. ]
  7866. },
  7867. "notification-url": "https://packagist.org/downloads/",
  7868. "license": [
  7869. "BSD-3-Clause"
  7870. ],
  7871. "authors": [
  7872. {
  7873. "name": "Sebastian Bergmann",
  7874. "email": "sebastian@phpunit.de",
  7875. "role": "lead"
  7876. }
  7877. ],
  7878. "description": "The PHP Unit Testing framework.",
  7879. "homepage": "https://phpunit.de/",
  7880. "keywords": [
  7881. "phpunit",
  7882. "testing",
  7883. "xunit"
  7884. ],
  7885. "support": {
  7886. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7887. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  7888. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.46"
  7889. },
  7890. "funding": [
  7891. {
  7892. "url": "https://phpunit.de/sponsors.html",
  7893. "type": "custom"
  7894. },
  7895. {
  7896. "url": "https://github.com/sebastianbergmann",
  7897. "type": "github"
  7898. },
  7899. {
  7900. "url": "https://liberapay.com/sebastianbergmann",
  7901. "type": "liberapay"
  7902. },
  7903. {
  7904. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  7905. "type": "thanks_dev"
  7906. },
  7907. {
  7908. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  7909. "type": "tidelift"
  7910. }
  7911. ],
  7912. "time": "2025-05-02T06:46:24+00:00"
  7913. },
  7914. {
  7915. "name": "react/cache",
  7916. "version": "v1.2.0",
  7917. "source": {
  7918. "type": "git",
  7919. "url": "https://github.com/reactphp/cache.git",
  7920. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  7921. },
  7922. "dist": {
  7923. "type": "zip",
  7924. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  7925. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  7926. "shasum": ""
  7927. },
  7928. "require": {
  7929. "php": ">=5.3.0",
  7930. "react/promise": "^3.0 || ^2.0 || ^1.1"
  7931. },
  7932. "require-dev": {
  7933. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  7934. },
  7935. "type": "library",
  7936. "autoload": {
  7937. "psr-4": {
  7938. "React\\Cache\\": "src/"
  7939. }
  7940. },
  7941. "notification-url": "https://packagist.org/downloads/",
  7942. "license": [
  7943. "MIT"
  7944. ],
  7945. "authors": [
  7946. {
  7947. "name": "Christian Lück",
  7948. "email": "christian@clue.engineering",
  7949. "homepage": "https://clue.engineering/"
  7950. },
  7951. {
  7952. "name": "Cees-Jan Kiewiet",
  7953. "email": "reactphp@ceesjankiewiet.nl",
  7954. "homepage": "https://wyrihaximus.net/"
  7955. },
  7956. {
  7957. "name": "Jan Sorgalla",
  7958. "email": "jsorgalla@gmail.com",
  7959. "homepage": "https://sorgalla.com/"
  7960. },
  7961. {
  7962. "name": "Chris Boden",
  7963. "email": "cboden@gmail.com",
  7964. "homepage": "https://cboden.dev/"
  7965. }
  7966. ],
  7967. "description": "Async, Promise-based cache interface for ReactPHP",
  7968. "keywords": [
  7969. "cache",
  7970. "caching",
  7971. "promise",
  7972. "reactphp"
  7973. ],
  7974. "support": {
  7975. "issues": "https://github.com/reactphp/cache/issues",
  7976. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  7977. },
  7978. "funding": [
  7979. {
  7980. "url": "https://opencollective.com/reactphp",
  7981. "type": "open_collective"
  7982. }
  7983. ],
  7984. "time": "2022-11-30T15:59:55+00:00"
  7985. },
  7986. {
  7987. "name": "react/child-process",
  7988. "version": "v0.6.6",
  7989. "source": {
  7990. "type": "git",
  7991. "url": "https://github.com/reactphp/child-process.git",
  7992. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  7993. },
  7994. "dist": {
  7995. "type": "zip",
  7996. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  7997. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  7998. "shasum": ""
  7999. },
  8000. "require": {
  8001. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8002. "php": ">=5.3.0",
  8003. "react/event-loop": "^1.2",
  8004. "react/stream": "^1.4"
  8005. },
  8006. "require-dev": {
  8007. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8008. "react/socket": "^1.16",
  8009. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8010. },
  8011. "type": "library",
  8012. "autoload": {
  8013. "psr-4": {
  8014. "React\\ChildProcess\\": "src/"
  8015. }
  8016. },
  8017. "notification-url": "https://packagist.org/downloads/",
  8018. "license": [
  8019. "MIT"
  8020. ],
  8021. "authors": [
  8022. {
  8023. "name": "Christian Lück",
  8024. "email": "christian@clue.engineering",
  8025. "homepage": "https://clue.engineering/"
  8026. },
  8027. {
  8028. "name": "Cees-Jan Kiewiet",
  8029. "email": "reactphp@ceesjankiewiet.nl",
  8030. "homepage": "https://wyrihaximus.net/"
  8031. },
  8032. {
  8033. "name": "Jan Sorgalla",
  8034. "email": "jsorgalla@gmail.com",
  8035. "homepage": "https://sorgalla.com/"
  8036. },
  8037. {
  8038. "name": "Chris Boden",
  8039. "email": "cboden@gmail.com",
  8040. "homepage": "https://cboden.dev/"
  8041. }
  8042. ],
  8043. "description": "Event-driven library for executing child processes with ReactPHP.",
  8044. "keywords": [
  8045. "event-driven",
  8046. "process",
  8047. "reactphp"
  8048. ],
  8049. "support": {
  8050. "issues": "https://github.com/reactphp/child-process/issues",
  8051. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  8052. },
  8053. "funding": [
  8054. {
  8055. "url": "https://opencollective.com/reactphp",
  8056. "type": "open_collective"
  8057. }
  8058. ],
  8059. "time": "2025-01-01T16:37:48+00:00"
  8060. },
  8061. {
  8062. "name": "react/dns",
  8063. "version": "v1.13.0",
  8064. "source": {
  8065. "type": "git",
  8066. "url": "https://github.com/reactphp/dns.git",
  8067. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8068. },
  8069. "dist": {
  8070. "type": "zip",
  8071. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8072. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8073. "shasum": ""
  8074. },
  8075. "require": {
  8076. "php": ">=5.3.0",
  8077. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8078. "react/event-loop": "^1.2",
  8079. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8080. },
  8081. "require-dev": {
  8082. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8083. "react/async": "^4.3 || ^3 || ^2",
  8084. "react/promise-timer": "^1.11"
  8085. },
  8086. "type": "library",
  8087. "autoload": {
  8088. "psr-4": {
  8089. "React\\Dns\\": "src/"
  8090. }
  8091. },
  8092. "notification-url": "https://packagist.org/downloads/",
  8093. "license": [
  8094. "MIT"
  8095. ],
  8096. "authors": [
  8097. {
  8098. "name": "Christian Lück",
  8099. "email": "christian@clue.engineering",
  8100. "homepage": "https://clue.engineering/"
  8101. },
  8102. {
  8103. "name": "Cees-Jan Kiewiet",
  8104. "email": "reactphp@ceesjankiewiet.nl",
  8105. "homepage": "https://wyrihaximus.net/"
  8106. },
  8107. {
  8108. "name": "Jan Sorgalla",
  8109. "email": "jsorgalla@gmail.com",
  8110. "homepage": "https://sorgalla.com/"
  8111. },
  8112. {
  8113. "name": "Chris Boden",
  8114. "email": "cboden@gmail.com",
  8115. "homepage": "https://cboden.dev/"
  8116. }
  8117. ],
  8118. "description": "Async DNS resolver for ReactPHP",
  8119. "keywords": [
  8120. "async",
  8121. "dns",
  8122. "dns-resolver",
  8123. "reactphp"
  8124. ],
  8125. "support": {
  8126. "issues": "https://github.com/reactphp/dns/issues",
  8127. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  8128. },
  8129. "funding": [
  8130. {
  8131. "url": "https://opencollective.com/reactphp",
  8132. "type": "open_collective"
  8133. }
  8134. ],
  8135. "time": "2024-06-13T14:18:03+00:00"
  8136. },
  8137. {
  8138. "name": "react/event-loop",
  8139. "version": "v1.5.0",
  8140. "source": {
  8141. "type": "git",
  8142. "url": "https://github.com/reactphp/event-loop.git",
  8143. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8144. },
  8145. "dist": {
  8146. "type": "zip",
  8147. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8148. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8149. "shasum": ""
  8150. },
  8151. "require": {
  8152. "php": ">=5.3.0"
  8153. },
  8154. "require-dev": {
  8155. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8156. },
  8157. "suggest": {
  8158. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8159. },
  8160. "type": "library",
  8161. "autoload": {
  8162. "psr-4": {
  8163. "React\\EventLoop\\": "src/"
  8164. }
  8165. },
  8166. "notification-url": "https://packagist.org/downloads/",
  8167. "license": [
  8168. "MIT"
  8169. ],
  8170. "authors": [
  8171. {
  8172. "name": "Christian Lück",
  8173. "email": "christian@clue.engineering",
  8174. "homepage": "https://clue.engineering/"
  8175. },
  8176. {
  8177. "name": "Cees-Jan Kiewiet",
  8178. "email": "reactphp@ceesjankiewiet.nl",
  8179. "homepage": "https://wyrihaximus.net/"
  8180. },
  8181. {
  8182. "name": "Jan Sorgalla",
  8183. "email": "jsorgalla@gmail.com",
  8184. "homepage": "https://sorgalla.com/"
  8185. },
  8186. {
  8187. "name": "Chris Boden",
  8188. "email": "cboden@gmail.com",
  8189. "homepage": "https://cboden.dev/"
  8190. }
  8191. ],
  8192. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8193. "keywords": [
  8194. "asynchronous",
  8195. "event-loop"
  8196. ],
  8197. "support": {
  8198. "issues": "https://github.com/reactphp/event-loop/issues",
  8199. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8200. },
  8201. "funding": [
  8202. {
  8203. "url": "https://opencollective.com/reactphp",
  8204. "type": "open_collective"
  8205. }
  8206. ],
  8207. "time": "2023-11-13T13:48:05+00:00"
  8208. },
  8209. {
  8210. "name": "react/promise",
  8211. "version": "v3.2.0",
  8212. "source": {
  8213. "type": "git",
  8214. "url": "https://github.com/reactphp/promise.git",
  8215. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8216. },
  8217. "dist": {
  8218. "type": "zip",
  8219. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8220. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8221. "shasum": ""
  8222. },
  8223. "require": {
  8224. "php": ">=7.1.0"
  8225. },
  8226. "require-dev": {
  8227. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8228. "phpunit/phpunit": "^9.6 || ^7.5"
  8229. },
  8230. "type": "library",
  8231. "autoload": {
  8232. "files": [
  8233. "src/functions_include.php"
  8234. ],
  8235. "psr-4": {
  8236. "React\\Promise\\": "src/"
  8237. }
  8238. },
  8239. "notification-url": "https://packagist.org/downloads/",
  8240. "license": [
  8241. "MIT"
  8242. ],
  8243. "authors": [
  8244. {
  8245. "name": "Jan Sorgalla",
  8246. "email": "jsorgalla@gmail.com",
  8247. "homepage": "https://sorgalla.com/"
  8248. },
  8249. {
  8250. "name": "Christian Lück",
  8251. "email": "christian@clue.engineering",
  8252. "homepage": "https://clue.engineering/"
  8253. },
  8254. {
  8255. "name": "Cees-Jan Kiewiet",
  8256. "email": "reactphp@ceesjankiewiet.nl",
  8257. "homepage": "https://wyrihaximus.net/"
  8258. },
  8259. {
  8260. "name": "Chris Boden",
  8261. "email": "cboden@gmail.com",
  8262. "homepage": "https://cboden.dev/"
  8263. }
  8264. ],
  8265. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8266. "keywords": [
  8267. "promise",
  8268. "promises"
  8269. ],
  8270. "support": {
  8271. "issues": "https://github.com/reactphp/promise/issues",
  8272. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8273. },
  8274. "funding": [
  8275. {
  8276. "url": "https://opencollective.com/reactphp",
  8277. "type": "open_collective"
  8278. }
  8279. ],
  8280. "time": "2024-05-24T10:39:05+00:00"
  8281. },
  8282. {
  8283. "name": "react/socket",
  8284. "version": "v1.16.0",
  8285. "source": {
  8286. "type": "git",
  8287. "url": "https://github.com/reactphp/socket.git",
  8288. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  8289. },
  8290. "dist": {
  8291. "type": "zip",
  8292. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8293. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8294. "shasum": ""
  8295. },
  8296. "require": {
  8297. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8298. "php": ">=5.3.0",
  8299. "react/dns": "^1.13",
  8300. "react/event-loop": "^1.2",
  8301. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  8302. "react/stream": "^1.4"
  8303. },
  8304. "require-dev": {
  8305. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8306. "react/async": "^4.3 || ^3.3 || ^2",
  8307. "react/promise-stream": "^1.4",
  8308. "react/promise-timer": "^1.11"
  8309. },
  8310. "type": "library",
  8311. "autoload": {
  8312. "psr-4": {
  8313. "React\\Socket\\": "src/"
  8314. }
  8315. },
  8316. "notification-url": "https://packagist.org/downloads/",
  8317. "license": [
  8318. "MIT"
  8319. ],
  8320. "authors": [
  8321. {
  8322. "name": "Christian Lück",
  8323. "email": "christian@clue.engineering",
  8324. "homepage": "https://clue.engineering/"
  8325. },
  8326. {
  8327. "name": "Cees-Jan Kiewiet",
  8328. "email": "reactphp@ceesjankiewiet.nl",
  8329. "homepage": "https://wyrihaximus.net/"
  8330. },
  8331. {
  8332. "name": "Jan Sorgalla",
  8333. "email": "jsorgalla@gmail.com",
  8334. "homepage": "https://sorgalla.com/"
  8335. },
  8336. {
  8337. "name": "Chris Boden",
  8338. "email": "cboden@gmail.com",
  8339. "homepage": "https://cboden.dev/"
  8340. }
  8341. ],
  8342. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8343. "keywords": [
  8344. "Connection",
  8345. "Socket",
  8346. "async",
  8347. "reactphp",
  8348. "stream"
  8349. ],
  8350. "support": {
  8351. "issues": "https://github.com/reactphp/socket/issues",
  8352. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  8353. },
  8354. "funding": [
  8355. {
  8356. "url": "https://opencollective.com/reactphp",
  8357. "type": "open_collective"
  8358. }
  8359. ],
  8360. "time": "2024-07-26T10:38:09+00:00"
  8361. },
  8362. {
  8363. "name": "react/stream",
  8364. "version": "v1.4.0",
  8365. "source": {
  8366. "type": "git",
  8367. "url": "https://github.com/reactphp/stream.git",
  8368. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  8369. },
  8370. "dist": {
  8371. "type": "zip",
  8372. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8373. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8374. "shasum": ""
  8375. },
  8376. "require": {
  8377. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8378. "php": ">=5.3.8",
  8379. "react/event-loop": "^1.2"
  8380. },
  8381. "require-dev": {
  8382. "clue/stream-filter": "~1.2",
  8383. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8384. },
  8385. "type": "library",
  8386. "autoload": {
  8387. "psr-4": {
  8388. "React\\Stream\\": "src/"
  8389. }
  8390. },
  8391. "notification-url": "https://packagist.org/downloads/",
  8392. "license": [
  8393. "MIT"
  8394. ],
  8395. "authors": [
  8396. {
  8397. "name": "Christian Lück",
  8398. "email": "christian@clue.engineering",
  8399. "homepage": "https://clue.engineering/"
  8400. },
  8401. {
  8402. "name": "Cees-Jan Kiewiet",
  8403. "email": "reactphp@ceesjankiewiet.nl",
  8404. "homepage": "https://wyrihaximus.net/"
  8405. },
  8406. {
  8407. "name": "Jan Sorgalla",
  8408. "email": "jsorgalla@gmail.com",
  8409. "homepage": "https://sorgalla.com/"
  8410. },
  8411. {
  8412. "name": "Chris Boden",
  8413. "email": "cboden@gmail.com",
  8414. "homepage": "https://cboden.dev/"
  8415. }
  8416. ],
  8417. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8418. "keywords": [
  8419. "event-driven",
  8420. "io",
  8421. "non-blocking",
  8422. "pipe",
  8423. "reactphp",
  8424. "readable",
  8425. "stream",
  8426. "writable"
  8427. ],
  8428. "support": {
  8429. "issues": "https://github.com/reactphp/stream/issues",
  8430. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  8431. },
  8432. "funding": [
  8433. {
  8434. "url": "https://opencollective.com/reactphp",
  8435. "type": "open_collective"
  8436. }
  8437. ],
  8438. "time": "2024-06-11T12:45:25+00:00"
  8439. },
  8440. {
  8441. "name": "sebastian/cli-parser",
  8442. "version": "2.0.1",
  8443. "source": {
  8444. "type": "git",
  8445. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8446. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8447. },
  8448. "dist": {
  8449. "type": "zip",
  8450. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8451. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8452. "shasum": ""
  8453. },
  8454. "require": {
  8455. "php": ">=8.1"
  8456. },
  8457. "require-dev": {
  8458. "phpunit/phpunit": "^10.0"
  8459. },
  8460. "type": "library",
  8461. "extra": {
  8462. "branch-alias": {
  8463. "dev-main": "2.0-dev"
  8464. }
  8465. },
  8466. "autoload": {
  8467. "classmap": [
  8468. "src/"
  8469. ]
  8470. },
  8471. "notification-url": "https://packagist.org/downloads/",
  8472. "license": [
  8473. "BSD-3-Clause"
  8474. ],
  8475. "authors": [
  8476. {
  8477. "name": "Sebastian Bergmann",
  8478. "email": "sebastian@phpunit.de",
  8479. "role": "lead"
  8480. }
  8481. ],
  8482. "description": "Library for parsing CLI options",
  8483. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8484. "support": {
  8485. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8486. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8487. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8488. },
  8489. "funding": [
  8490. {
  8491. "url": "https://github.com/sebastianbergmann",
  8492. "type": "github"
  8493. }
  8494. ],
  8495. "time": "2024-03-02T07:12:49+00:00"
  8496. },
  8497. {
  8498. "name": "sebastian/code-unit",
  8499. "version": "2.0.0",
  8500. "source": {
  8501. "type": "git",
  8502. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8503. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8504. },
  8505. "dist": {
  8506. "type": "zip",
  8507. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8508. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8509. "shasum": ""
  8510. },
  8511. "require": {
  8512. "php": ">=8.1"
  8513. },
  8514. "require-dev": {
  8515. "phpunit/phpunit": "^10.0"
  8516. },
  8517. "type": "library",
  8518. "extra": {
  8519. "branch-alias": {
  8520. "dev-main": "2.0-dev"
  8521. }
  8522. },
  8523. "autoload": {
  8524. "classmap": [
  8525. "src/"
  8526. ]
  8527. },
  8528. "notification-url": "https://packagist.org/downloads/",
  8529. "license": [
  8530. "BSD-3-Clause"
  8531. ],
  8532. "authors": [
  8533. {
  8534. "name": "Sebastian Bergmann",
  8535. "email": "sebastian@phpunit.de",
  8536. "role": "lead"
  8537. }
  8538. ],
  8539. "description": "Collection of value objects that represent the PHP code units",
  8540. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8541. "support": {
  8542. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8543. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8544. },
  8545. "funding": [
  8546. {
  8547. "url": "https://github.com/sebastianbergmann",
  8548. "type": "github"
  8549. }
  8550. ],
  8551. "time": "2023-02-03T06:58:43+00:00"
  8552. },
  8553. {
  8554. "name": "sebastian/code-unit-reverse-lookup",
  8555. "version": "3.0.0",
  8556. "source": {
  8557. "type": "git",
  8558. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8559. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8560. },
  8561. "dist": {
  8562. "type": "zip",
  8563. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8564. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8565. "shasum": ""
  8566. },
  8567. "require": {
  8568. "php": ">=8.1"
  8569. },
  8570. "require-dev": {
  8571. "phpunit/phpunit": "^10.0"
  8572. },
  8573. "type": "library",
  8574. "extra": {
  8575. "branch-alias": {
  8576. "dev-main": "3.0-dev"
  8577. }
  8578. },
  8579. "autoload": {
  8580. "classmap": [
  8581. "src/"
  8582. ]
  8583. },
  8584. "notification-url": "https://packagist.org/downloads/",
  8585. "license": [
  8586. "BSD-3-Clause"
  8587. ],
  8588. "authors": [
  8589. {
  8590. "name": "Sebastian Bergmann",
  8591. "email": "sebastian@phpunit.de"
  8592. }
  8593. ],
  8594. "description": "Looks up which function or method a line of code belongs to",
  8595. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8596. "support": {
  8597. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8598. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8599. },
  8600. "funding": [
  8601. {
  8602. "url": "https://github.com/sebastianbergmann",
  8603. "type": "github"
  8604. }
  8605. ],
  8606. "time": "2023-02-03T06:59:15+00:00"
  8607. },
  8608. {
  8609. "name": "sebastian/comparator",
  8610. "version": "5.0.3",
  8611. "source": {
  8612. "type": "git",
  8613. "url": "https://github.com/sebastianbergmann/comparator.git",
  8614. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  8615. },
  8616. "dist": {
  8617. "type": "zip",
  8618. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  8619. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  8620. "shasum": ""
  8621. },
  8622. "require": {
  8623. "ext-dom": "*",
  8624. "ext-mbstring": "*",
  8625. "php": ">=8.1",
  8626. "sebastian/diff": "^5.0",
  8627. "sebastian/exporter": "^5.0"
  8628. },
  8629. "require-dev": {
  8630. "phpunit/phpunit": "^10.5"
  8631. },
  8632. "type": "library",
  8633. "extra": {
  8634. "branch-alias": {
  8635. "dev-main": "5.0-dev"
  8636. }
  8637. },
  8638. "autoload": {
  8639. "classmap": [
  8640. "src/"
  8641. ]
  8642. },
  8643. "notification-url": "https://packagist.org/downloads/",
  8644. "license": [
  8645. "BSD-3-Clause"
  8646. ],
  8647. "authors": [
  8648. {
  8649. "name": "Sebastian Bergmann",
  8650. "email": "sebastian@phpunit.de"
  8651. },
  8652. {
  8653. "name": "Jeff Welch",
  8654. "email": "whatthejeff@gmail.com"
  8655. },
  8656. {
  8657. "name": "Volker Dusch",
  8658. "email": "github@wallbash.com"
  8659. },
  8660. {
  8661. "name": "Bernhard Schussek",
  8662. "email": "bschussek@2bepublished.at"
  8663. }
  8664. ],
  8665. "description": "Provides the functionality to compare PHP values for equality",
  8666. "homepage": "https://github.com/sebastianbergmann/comparator",
  8667. "keywords": [
  8668. "comparator",
  8669. "compare",
  8670. "equality"
  8671. ],
  8672. "support": {
  8673. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8674. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8675. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  8676. },
  8677. "funding": [
  8678. {
  8679. "url": "https://github.com/sebastianbergmann",
  8680. "type": "github"
  8681. }
  8682. ],
  8683. "time": "2024-10-18T14:56:07+00:00"
  8684. },
  8685. {
  8686. "name": "sebastian/complexity",
  8687. "version": "3.2.0",
  8688. "source": {
  8689. "type": "git",
  8690. "url": "https://github.com/sebastianbergmann/complexity.git",
  8691. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8692. },
  8693. "dist": {
  8694. "type": "zip",
  8695. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8696. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8697. "shasum": ""
  8698. },
  8699. "require": {
  8700. "nikic/php-parser": "^4.18 || ^5.0",
  8701. "php": ">=8.1"
  8702. },
  8703. "require-dev": {
  8704. "phpunit/phpunit": "^10.0"
  8705. },
  8706. "type": "library",
  8707. "extra": {
  8708. "branch-alias": {
  8709. "dev-main": "3.2-dev"
  8710. }
  8711. },
  8712. "autoload": {
  8713. "classmap": [
  8714. "src/"
  8715. ]
  8716. },
  8717. "notification-url": "https://packagist.org/downloads/",
  8718. "license": [
  8719. "BSD-3-Clause"
  8720. ],
  8721. "authors": [
  8722. {
  8723. "name": "Sebastian Bergmann",
  8724. "email": "sebastian@phpunit.de",
  8725. "role": "lead"
  8726. }
  8727. ],
  8728. "description": "Library for calculating the complexity of PHP code units",
  8729. "homepage": "https://github.com/sebastianbergmann/complexity",
  8730. "support": {
  8731. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8732. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8733. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8734. },
  8735. "funding": [
  8736. {
  8737. "url": "https://github.com/sebastianbergmann",
  8738. "type": "github"
  8739. }
  8740. ],
  8741. "time": "2023-12-21T08:37:17+00:00"
  8742. },
  8743. {
  8744. "name": "sebastian/diff",
  8745. "version": "5.1.1",
  8746. "source": {
  8747. "type": "git",
  8748. "url": "https://github.com/sebastianbergmann/diff.git",
  8749. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  8750. },
  8751. "dist": {
  8752. "type": "zip",
  8753. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8754. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8755. "shasum": ""
  8756. },
  8757. "require": {
  8758. "php": ">=8.1"
  8759. },
  8760. "require-dev": {
  8761. "phpunit/phpunit": "^10.0",
  8762. "symfony/process": "^6.4"
  8763. },
  8764. "type": "library",
  8765. "extra": {
  8766. "branch-alias": {
  8767. "dev-main": "5.1-dev"
  8768. }
  8769. },
  8770. "autoload": {
  8771. "classmap": [
  8772. "src/"
  8773. ]
  8774. },
  8775. "notification-url": "https://packagist.org/downloads/",
  8776. "license": [
  8777. "BSD-3-Clause"
  8778. ],
  8779. "authors": [
  8780. {
  8781. "name": "Sebastian Bergmann",
  8782. "email": "sebastian@phpunit.de"
  8783. },
  8784. {
  8785. "name": "Kore Nordmann",
  8786. "email": "mail@kore-nordmann.de"
  8787. }
  8788. ],
  8789. "description": "Diff implementation",
  8790. "homepage": "https://github.com/sebastianbergmann/diff",
  8791. "keywords": [
  8792. "diff",
  8793. "udiff",
  8794. "unidiff",
  8795. "unified diff"
  8796. ],
  8797. "support": {
  8798. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8799. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8800. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  8801. },
  8802. "funding": [
  8803. {
  8804. "url": "https://github.com/sebastianbergmann",
  8805. "type": "github"
  8806. }
  8807. ],
  8808. "time": "2024-03-02T07:15:17+00:00"
  8809. },
  8810. {
  8811. "name": "sebastian/environment",
  8812. "version": "6.1.0",
  8813. "source": {
  8814. "type": "git",
  8815. "url": "https://github.com/sebastianbergmann/environment.git",
  8816. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  8817. },
  8818. "dist": {
  8819. "type": "zip",
  8820. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  8821. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  8822. "shasum": ""
  8823. },
  8824. "require": {
  8825. "php": ">=8.1"
  8826. },
  8827. "require-dev": {
  8828. "phpunit/phpunit": "^10.0"
  8829. },
  8830. "suggest": {
  8831. "ext-posix": "*"
  8832. },
  8833. "type": "library",
  8834. "extra": {
  8835. "branch-alias": {
  8836. "dev-main": "6.1-dev"
  8837. }
  8838. },
  8839. "autoload": {
  8840. "classmap": [
  8841. "src/"
  8842. ]
  8843. },
  8844. "notification-url": "https://packagist.org/downloads/",
  8845. "license": [
  8846. "BSD-3-Clause"
  8847. ],
  8848. "authors": [
  8849. {
  8850. "name": "Sebastian Bergmann",
  8851. "email": "sebastian@phpunit.de"
  8852. }
  8853. ],
  8854. "description": "Provides functionality to handle HHVM/PHP environments",
  8855. "homepage": "https://github.com/sebastianbergmann/environment",
  8856. "keywords": [
  8857. "Xdebug",
  8858. "environment",
  8859. "hhvm"
  8860. ],
  8861. "support": {
  8862. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8863. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8864. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  8865. },
  8866. "funding": [
  8867. {
  8868. "url": "https://github.com/sebastianbergmann",
  8869. "type": "github"
  8870. }
  8871. ],
  8872. "time": "2024-03-23T08:47:14+00:00"
  8873. },
  8874. {
  8875. "name": "sebastian/exporter",
  8876. "version": "5.1.2",
  8877. "source": {
  8878. "type": "git",
  8879. "url": "https://github.com/sebastianbergmann/exporter.git",
  8880. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  8881. },
  8882. "dist": {
  8883. "type": "zip",
  8884. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  8885. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  8886. "shasum": ""
  8887. },
  8888. "require": {
  8889. "ext-mbstring": "*",
  8890. "php": ">=8.1",
  8891. "sebastian/recursion-context": "^5.0"
  8892. },
  8893. "require-dev": {
  8894. "phpunit/phpunit": "^10.0"
  8895. },
  8896. "type": "library",
  8897. "extra": {
  8898. "branch-alias": {
  8899. "dev-main": "5.1-dev"
  8900. }
  8901. },
  8902. "autoload": {
  8903. "classmap": [
  8904. "src/"
  8905. ]
  8906. },
  8907. "notification-url": "https://packagist.org/downloads/",
  8908. "license": [
  8909. "BSD-3-Clause"
  8910. ],
  8911. "authors": [
  8912. {
  8913. "name": "Sebastian Bergmann",
  8914. "email": "sebastian@phpunit.de"
  8915. },
  8916. {
  8917. "name": "Jeff Welch",
  8918. "email": "whatthejeff@gmail.com"
  8919. },
  8920. {
  8921. "name": "Volker Dusch",
  8922. "email": "github@wallbash.com"
  8923. },
  8924. {
  8925. "name": "Adam Harvey",
  8926. "email": "aharvey@php.net"
  8927. },
  8928. {
  8929. "name": "Bernhard Schussek",
  8930. "email": "bschussek@gmail.com"
  8931. }
  8932. ],
  8933. "description": "Provides the functionality to export PHP variables for visualization",
  8934. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8935. "keywords": [
  8936. "export",
  8937. "exporter"
  8938. ],
  8939. "support": {
  8940. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8941. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  8942. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  8943. },
  8944. "funding": [
  8945. {
  8946. "url": "https://github.com/sebastianbergmann",
  8947. "type": "github"
  8948. }
  8949. ],
  8950. "time": "2024-03-02T07:17:12+00:00"
  8951. },
  8952. {
  8953. "name": "sebastian/global-state",
  8954. "version": "6.0.2",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/sebastianbergmann/global-state.git",
  8958. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8963. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8964. "shasum": ""
  8965. },
  8966. "require": {
  8967. "php": ">=8.1",
  8968. "sebastian/object-reflector": "^3.0",
  8969. "sebastian/recursion-context": "^5.0"
  8970. },
  8971. "require-dev": {
  8972. "ext-dom": "*",
  8973. "phpunit/phpunit": "^10.0"
  8974. },
  8975. "type": "library",
  8976. "extra": {
  8977. "branch-alias": {
  8978. "dev-main": "6.0-dev"
  8979. }
  8980. },
  8981. "autoload": {
  8982. "classmap": [
  8983. "src/"
  8984. ]
  8985. },
  8986. "notification-url": "https://packagist.org/downloads/",
  8987. "license": [
  8988. "BSD-3-Clause"
  8989. ],
  8990. "authors": [
  8991. {
  8992. "name": "Sebastian Bergmann",
  8993. "email": "sebastian@phpunit.de"
  8994. }
  8995. ],
  8996. "description": "Snapshotting of global state",
  8997. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  8998. "keywords": [
  8999. "global state"
  9000. ],
  9001. "support": {
  9002. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9003. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9004. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9005. },
  9006. "funding": [
  9007. {
  9008. "url": "https://github.com/sebastianbergmann",
  9009. "type": "github"
  9010. }
  9011. ],
  9012. "time": "2024-03-02T07:19:19+00:00"
  9013. },
  9014. {
  9015. "name": "sebastian/lines-of-code",
  9016. "version": "2.0.2",
  9017. "source": {
  9018. "type": "git",
  9019. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9020. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9021. },
  9022. "dist": {
  9023. "type": "zip",
  9024. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9025. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9026. "shasum": ""
  9027. },
  9028. "require": {
  9029. "nikic/php-parser": "^4.18 || ^5.0",
  9030. "php": ">=8.1"
  9031. },
  9032. "require-dev": {
  9033. "phpunit/phpunit": "^10.0"
  9034. },
  9035. "type": "library",
  9036. "extra": {
  9037. "branch-alias": {
  9038. "dev-main": "2.0-dev"
  9039. }
  9040. },
  9041. "autoload": {
  9042. "classmap": [
  9043. "src/"
  9044. ]
  9045. },
  9046. "notification-url": "https://packagist.org/downloads/",
  9047. "license": [
  9048. "BSD-3-Clause"
  9049. ],
  9050. "authors": [
  9051. {
  9052. "name": "Sebastian Bergmann",
  9053. "email": "sebastian@phpunit.de",
  9054. "role": "lead"
  9055. }
  9056. ],
  9057. "description": "Library for counting the lines of code in PHP source code",
  9058. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9059. "support": {
  9060. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9061. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9062. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9063. },
  9064. "funding": [
  9065. {
  9066. "url": "https://github.com/sebastianbergmann",
  9067. "type": "github"
  9068. }
  9069. ],
  9070. "time": "2023-12-21T08:38:20+00:00"
  9071. },
  9072. {
  9073. "name": "sebastian/object-enumerator",
  9074. "version": "5.0.0",
  9075. "source": {
  9076. "type": "git",
  9077. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9078. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9079. },
  9080. "dist": {
  9081. "type": "zip",
  9082. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9083. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9084. "shasum": ""
  9085. },
  9086. "require": {
  9087. "php": ">=8.1",
  9088. "sebastian/object-reflector": "^3.0",
  9089. "sebastian/recursion-context": "^5.0"
  9090. },
  9091. "require-dev": {
  9092. "phpunit/phpunit": "^10.0"
  9093. },
  9094. "type": "library",
  9095. "extra": {
  9096. "branch-alias": {
  9097. "dev-main": "5.0-dev"
  9098. }
  9099. },
  9100. "autoload": {
  9101. "classmap": [
  9102. "src/"
  9103. ]
  9104. },
  9105. "notification-url": "https://packagist.org/downloads/",
  9106. "license": [
  9107. "BSD-3-Clause"
  9108. ],
  9109. "authors": [
  9110. {
  9111. "name": "Sebastian Bergmann",
  9112. "email": "sebastian@phpunit.de"
  9113. }
  9114. ],
  9115. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9116. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9117. "support": {
  9118. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9119. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9120. },
  9121. "funding": [
  9122. {
  9123. "url": "https://github.com/sebastianbergmann",
  9124. "type": "github"
  9125. }
  9126. ],
  9127. "time": "2023-02-03T07:08:32+00:00"
  9128. },
  9129. {
  9130. "name": "sebastian/object-reflector",
  9131. "version": "3.0.0",
  9132. "source": {
  9133. "type": "git",
  9134. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9135. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9136. },
  9137. "dist": {
  9138. "type": "zip",
  9139. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9140. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9141. "shasum": ""
  9142. },
  9143. "require": {
  9144. "php": ">=8.1"
  9145. },
  9146. "require-dev": {
  9147. "phpunit/phpunit": "^10.0"
  9148. },
  9149. "type": "library",
  9150. "extra": {
  9151. "branch-alias": {
  9152. "dev-main": "3.0-dev"
  9153. }
  9154. },
  9155. "autoload": {
  9156. "classmap": [
  9157. "src/"
  9158. ]
  9159. },
  9160. "notification-url": "https://packagist.org/downloads/",
  9161. "license": [
  9162. "BSD-3-Clause"
  9163. ],
  9164. "authors": [
  9165. {
  9166. "name": "Sebastian Bergmann",
  9167. "email": "sebastian@phpunit.de"
  9168. }
  9169. ],
  9170. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9171. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9172. "support": {
  9173. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9174. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9175. },
  9176. "funding": [
  9177. {
  9178. "url": "https://github.com/sebastianbergmann",
  9179. "type": "github"
  9180. }
  9181. ],
  9182. "time": "2023-02-03T07:06:18+00:00"
  9183. },
  9184. {
  9185. "name": "sebastian/recursion-context",
  9186. "version": "5.0.0",
  9187. "source": {
  9188. "type": "git",
  9189. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9190. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9191. },
  9192. "dist": {
  9193. "type": "zip",
  9194. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9195. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9196. "shasum": ""
  9197. },
  9198. "require": {
  9199. "php": ">=8.1"
  9200. },
  9201. "require-dev": {
  9202. "phpunit/phpunit": "^10.0"
  9203. },
  9204. "type": "library",
  9205. "extra": {
  9206. "branch-alias": {
  9207. "dev-main": "5.0-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. },
  9224. {
  9225. "name": "Jeff Welch",
  9226. "email": "whatthejeff@gmail.com"
  9227. },
  9228. {
  9229. "name": "Adam Harvey",
  9230. "email": "aharvey@php.net"
  9231. }
  9232. ],
  9233. "description": "Provides functionality to recursively process PHP variables",
  9234. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9235. "support": {
  9236. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9237. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9238. },
  9239. "funding": [
  9240. {
  9241. "url": "https://github.com/sebastianbergmann",
  9242. "type": "github"
  9243. }
  9244. ],
  9245. "time": "2023-02-03T07:05:40+00:00"
  9246. },
  9247. {
  9248. "name": "sebastian/type",
  9249. "version": "4.0.0",
  9250. "source": {
  9251. "type": "git",
  9252. "url": "https://github.com/sebastianbergmann/type.git",
  9253. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9254. },
  9255. "dist": {
  9256. "type": "zip",
  9257. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9258. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9259. "shasum": ""
  9260. },
  9261. "require": {
  9262. "php": ">=8.1"
  9263. },
  9264. "require-dev": {
  9265. "phpunit/phpunit": "^10.0"
  9266. },
  9267. "type": "library",
  9268. "extra": {
  9269. "branch-alias": {
  9270. "dev-main": "4.0-dev"
  9271. }
  9272. },
  9273. "autoload": {
  9274. "classmap": [
  9275. "src/"
  9276. ]
  9277. },
  9278. "notification-url": "https://packagist.org/downloads/",
  9279. "license": [
  9280. "BSD-3-Clause"
  9281. ],
  9282. "authors": [
  9283. {
  9284. "name": "Sebastian Bergmann",
  9285. "email": "sebastian@phpunit.de",
  9286. "role": "lead"
  9287. }
  9288. ],
  9289. "description": "Collection of value objects that represent the types of the PHP type system",
  9290. "homepage": "https://github.com/sebastianbergmann/type",
  9291. "support": {
  9292. "issues": "https://github.com/sebastianbergmann/type/issues",
  9293. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9294. },
  9295. "funding": [
  9296. {
  9297. "url": "https://github.com/sebastianbergmann",
  9298. "type": "github"
  9299. }
  9300. ],
  9301. "time": "2023-02-03T07:10:45+00:00"
  9302. },
  9303. {
  9304. "name": "sebastian/version",
  9305. "version": "4.0.1",
  9306. "source": {
  9307. "type": "git",
  9308. "url": "https://github.com/sebastianbergmann/version.git",
  9309. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9310. },
  9311. "dist": {
  9312. "type": "zip",
  9313. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9314. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9315. "shasum": ""
  9316. },
  9317. "require": {
  9318. "php": ">=8.1"
  9319. },
  9320. "type": "library",
  9321. "extra": {
  9322. "branch-alias": {
  9323. "dev-main": "4.0-dev"
  9324. }
  9325. },
  9326. "autoload": {
  9327. "classmap": [
  9328. "src/"
  9329. ]
  9330. },
  9331. "notification-url": "https://packagist.org/downloads/",
  9332. "license": [
  9333. "BSD-3-Clause"
  9334. ],
  9335. "authors": [
  9336. {
  9337. "name": "Sebastian Bergmann",
  9338. "email": "sebastian@phpunit.de",
  9339. "role": "lead"
  9340. }
  9341. ],
  9342. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9343. "homepage": "https://github.com/sebastianbergmann/version",
  9344. "support": {
  9345. "issues": "https://github.com/sebastianbergmann/version/issues",
  9346. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9347. },
  9348. "funding": [
  9349. {
  9350. "url": "https://github.com/sebastianbergmann",
  9351. "type": "github"
  9352. }
  9353. ],
  9354. "time": "2023-02-07T11:34:05+00:00"
  9355. },
  9356. {
  9357. "name": "swoole/ide-helper",
  9358. "version": "5.1.7",
  9359. "source": {
  9360. "type": "git",
  9361. "url": "https://github.com/swoole/ide-helper.git",
  9362. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  9363. },
  9364. "dist": {
  9365. "type": "zip",
  9366. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  9367. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  9368. "shasum": ""
  9369. },
  9370. "type": "library",
  9371. "notification-url": "https://packagist.org/downloads/",
  9372. "license": [
  9373. "Apache-2.0"
  9374. ],
  9375. "authors": [
  9376. {
  9377. "name": "Team Swoole",
  9378. "email": "team@swoole.com"
  9379. }
  9380. ],
  9381. "description": "IDE help files for Swoole.",
  9382. "support": {
  9383. "issues": "https://github.com/swoole/ide-helper/issues",
  9384. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  9385. },
  9386. "time": "2025-03-22T23:53:02+00:00"
  9387. },
  9388. {
  9389. "name": "symfony/event-dispatcher",
  9390. "version": "v6.4.13",
  9391. "source": {
  9392. "type": "git",
  9393. "url": "https://github.com/symfony/event-dispatcher.git",
  9394. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  9395. },
  9396. "dist": {
  9397. "type": "zip",
  9398. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9399. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9400. "shasum": ""
  9401. },
  9402. "require": {
  9403. "php": ">=8.1",
  9404. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9405. },
  9406. "conflict": {
  9407. "symfony/dependency-injection": "<5.4",
  9408. "symfony/service-contracts": "<2.5"
  9409. },
  9410. "provide": {
  9411. "psr/event-dispatcher-implementation": "1.0",
  9412. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9413. },
  9414. "require-dev": {
  9415. "psr/log": "^1|^2|^3",
  9416. "symfony/config": "^5.4|^6.0|^7.0",
  9417. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9418. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9419. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9420. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9421. "symfony/service-contracts": "^2.5|^3",
  9422. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9423. },
  9424. "type": "library",
  9425. "autoload": {
  9426. "psr-4": {
  9427. "Symfony\\Component\\EventDispatcher\\": ""
  9428. },
  9429. "exclude-from-classmap": [
  9430. "/Tests/"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "MIT"
  9436. ],
  9437. "authors": [
  9438. {
  9439. "name": "Fabien Potencier",
  9440. "email": "fabien@symfony.com"
  9441. },
  9442. {
  9443. "name": "Symfony Community",
  9444. "homepage": "https://symfony.com/contributors"
  9445. }
  9446. ],
  9447. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9448. "homepage": "https://symfony.com",
  9449. "support": {
  9450. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  9451. },
  9452. "funding": [
  9453. {
  9454. "url": "https://symfony.com/sponsor",
  9455. "type": "custom"
  9456. },
  9457. {
  9458. "url": "https://github.com/fabpot",
  9459. "type": "github"
  9460. },
  9461. {
  9462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9463. "type": "tidelift"
  9464. }
  9465. ],
  9466. "time": "2024-09-25T14:18:03+00:00"
  9467. },
  9468. {
  9469. "name": "symfony/event-dispatcher-contracts",
  9470. "version": "v3.6.0",
  9471. "source": {
  9472. "type": "git",
  9473. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9474. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  9475. },
  9476. "dist": {
  9477. "type": "zip",
  9478. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  9479. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  9480. "shasum": ""
  9481. },
  9482. "require": {
  9483. "php": ">=8.1",
  9484. "psr/event-dispatcher": "^1"
  9485. },
  9486. "type": "library",
  9487. "extra": {
  9488. "thanks": {
  9489. "url": "https://github.com/symfony/contracts",
  9490. "name": "symfony/contracts"
  9491. },
  9492. "branch-alias": {
  9493. "dev-main": "3.6-dev"
  9494. }
  9495. },
  9496. "autoload": {
  9497. "psr-4": {
  9498. "Symfony\\Contracts\\EventDispatcher\\": ""
  9499. }
  9500. },
  9501. "notification-url": "https://packagist.org/downloads/",
  9502. "license": [
  9503. "MIT"
  9504. ],
  9505. "authors": [
  9506. {
  9507. "name": "Nicolas Grekas",
  9508. "email": "p@tchwork.com"
  9509. },
  9510. {
  9511. "name": "Symfony Community",
  9512. "homepage": "https://symfony.com/contributors"
  9513. }
  9514. ],
  9515. "description": "Generic abstractions related to dispatching event",
  9516. "homepage": "https://symfony.com",
  9517. "keywords": [
  9518. "abstractions",
  9519. "contracts",
  9520. "decoupling",
  9521. "interfaces",
  9522. "interoperability",
  9523. "standards"
  9524. ],
  9525. "support": {
  9526. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  9527. },
  9528. "funding": [
  9529. {
  9530. "url": "https://symfony.com/sponsor",
  9531. "type": "custom"
  9532. },
  9533. {
  9534. "url": "https://github.com/fabpot",
  9535. "type": "github"
  9536. },
  9537. {
  9538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9539. "type": "tidelift"
  9540. }
  9541. ],
  9542. "time": "2024-09-25T14:21:43+00:00"
  9543. },
  9544. {
  9545. "name": "symfony/filesystem",
  9546. "version": "v6.4.13",
  9547. "source": {
  9548. "type": "git",
  9549. "url": "https://github.com/symfony/filesystem.git",
  9550. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  9551. },
  9552. "dist": {
  9553. "type": "zip",
  9554. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  9555. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  9556. "shasum": ""
  9557. },
  9558. "require": {
  9559. "php": ">=8.1",
  9560. "symfony/polyfill-ctype": "~1.8",
  9561. "symfony/polyfill-mbstring": "~1.8"
  9562. },
  9563. "require-dev": {
  9564. "symfony/process": "^5.4|^6.4|^7.0"
  9565. },
  9566. "type": "library",
  9567. "autoload": {
  9568. "psr-4": {
  9569. "Symfony\\Component\\Filesystem\\": ""
  9570. },
  9571. "exclude-from-classmap": [
  9572. "/Tests/"
  9573. ]
  9574. },
  9575. "notification-url": "https://packagist.org/downloads/",
  9576. "license": [
  9577. "MIT"
  9578. ],
  9579. "authors": [
  9580. {
  9581. "name": "Fabien Potencier",
  9582. "email": "fabien@symfony.com"
  9583. },
  9584. {
  9585. "name": "Symfony Community",
  9586. "homepage": "https://symfony.com/contributors"
  9587. }
  9588. ],
  9589. "description": "Provides basic utilities for the filesystem",
  9590. "homepage": "https://symfony.com",
  9591. "support": {
  9592. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  9593. },
  9594. "funding": [
  9595. {
  9596. "url": "https://symfony.com/sponsor",
  9597. "type": "custom"
  9598. },
  9599. {
  9600. "url": "https://github.com/fabpot",
  9601. "type": "github"
  9602. },
  9603. {
  9604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9605. "type": "tidelift"
  9606. }
  9607. ],
  9608. "time": "2024-10-25T15:07:50+00:00"
  9609. },
  9610. {
  9611. "name": "symfony/http-foundation",
  9612. "version": "v6.4.21",
  9613. "source": {
  9614. "type": "git",
  9615. "url": "https://github.com/symfony/http-foundation.git",
  9616. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
  9617. },
  9618. "dist": {
  9619. "type": "zip",
  9620. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
  9621. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
  9622. "shasum": ""
  9623. },
  9624. "require": {
  9625. "php": ">=8.1",
  9626. "symfony/deprecation-contracts": "^2.5|^3",
  9627. "symfony/polyfill-mbstring": "~1.1",
  9628. "symfony/polyfill-php83": "^1.27"
  9629. },
  9630. "conflict": {
  9631. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  9632. },
  9633. "require-dev": {
  9634. "doctrine/dbal": "^2.13.1|^3|^4",
  9635. "predis/predis": "^1.1|^2.0",
  9636. "symfony/cache": "^6.4.12|^7.1.5",
  9637. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9638. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9639. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  9640. "symfony/mime": "^5.4|^6.0|^7.0",
  9641. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  9642. },
  9643. "type": "library",
  9644. "autoload": {
  9645. "psr-4": {
  9646. "Symfony\\Component\\HttpFoundation\\": ""
  9647. },
  9648. "exclude-from-classmap": [
  9649. "/Tests/"
  9650. ]
  9651. },
  9652. "notification-url": "https://packagist.org/downloads/",
  9653. "license": [
  9654. "MIT"
  9655. ],
  9656. "authors": [
  9657. {
  9658. "name": "Fabien Potencier",
  9659. "email": "fabien@symfony.com"
  9660. },
  9661. {
  9662. "name": "Symfony Community",
  9663. "homepage": "https://symfony.com/contributors"
  9664. }
  9665. ],
  9666. "description": "Defines an object-oriented layer for the HTTP specification",
  9667. "homepage": "https://symfony.com",
  9668. "support": {
  9669. "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
  9670. },
  9671. "funding": [
  9672. {
  9673. "url": "https://symfony.com/sponsor",
  9674. "type": "custom"
  9675. },
  9676. {
  9677. "url": "https://github.com/fabpot",
  9678. "type": "github"
  9679. },
  9680. {
  9681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9682. "type": "tidelift"
  9683. }
  9684. ],
  9685. "time": "2025-04-27T13:27:38+00:00"
  9686. },
  9687. {
  9688. "name": "symfony/options-resolver",
  9689. "version": "v6.4.16",
  9690. "source": {
  9691. "type": "git",
  9692. "url": "https://github.com/symfony/options-resolver.git",
  9693. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  9694. },
  9695. "dist": {
  9696. "type": "zip",
  9697. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  9698. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  9699. "shasum": ""
  9700. },
  9701. "require": {
  9702. "php": ">=8.1",
  9703. "symfony/deprecation-contracts": "^2.5|^3"
  9704. },
  9705. "type": "library",
  9706. "autoload": {
  9707. "psr-4": {
  9708. "Symfony\\Component\\OptionsResolver\\": ""
  9709. },
  9710. "exclude-from-classmap": [
  9711. "/Tests/"
  9712. ]
  9713. },
  9714. "notification-url": "https://packagist.org/downloads/",
  9715. "license": [
  9716. "MIT"
  9717. ],
  9718. "authors": [
  9719. {
  9720. "name": "Fabien Potencier",
  9721. "email": "fabien@symfony.com"
  9722. },
  9723. {
  9724. "name": "Symfony Community",
  9725. "homepage": "https://symfony.com/contributors"
  9726. }
  9727. ],
  9728. "description": "Provides an improved replacement for the array_replace PHP function",
  9729. "homepage": "https://symfony.com",
  9730. "keywords": [
  9731. "config",
  9732. "configuration",
  9733. "options"
  9734. ],
  9735. "support": {
  9736. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  9737. },
  9738. "funding": [
  9739. {
  9740. "url": "https://symfony.com/sponsor",
  9741. "type": "custom"
  9742. },
  9743. {
  9744. "url": "https://github.com/fabpot",
  9745. "type": "github"
  9746. },
  9747. {
  9748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9749. "type": "tidelift"
  9750. }
  9751. ],
  9752. "time": "2024-11-20T10:57:02+00:00"
  9753. },
  9754. {
  9755. "name": "symfony/polyfill-php81",
  9756. "version": "v1.32.0",
  9757. "source": {
  9758. "type": "git",
  9759. "url": "https://github.com/symfony/polyfill-php81.git",
  9760. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  9761. },
  9762. "dist": {
  9763. "type": "zip",
  9764. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9765. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9766. "shasum": ""
  9767. },
  9768. "require": {
  9769. "php": ">=7.2"
  9770. },
  9771. "type": "library",
  9772. "extra": {
  9773. "thanks": {
  9774. "url": "https://github.com/symfony/polyfill",
  9775. "name": "symfony/polyfill"
  9776. }
  9777. },
  9778. "autoload": {
  9779. "files": [
  9780. "bootstrap.php"
  9781. ],
  9782. "psr-4": {
  9783. "Symfony\\Polyfill\\Php81\\": ""
  9784. },
  9785. "classmap": [
  9786. "Resources/stubs"
  9787. ]
  9788. },
  9789. "notification-url": "https://packagist.org/downloads/",
  9790. "license": [
  9791. "MIT"
  9792. ],
  9793. "authors": [
  9794. {
  9795. "name": "Nicolas Grekas",
  9796. "email": "p@tchwork.com"
  9797. },
  9798. {
  9799. "name": "Symfony Community",
  9800. "homepage": "https://symfony.com/contributors"
  9801. }
  9802. ],
  9803. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9804. "homepage": "https://symfony.com",
  9805. "keywords": [
  9806. "compatibility",
  9807. "polyfill",
  9808. "portable",
  9809. "shim"
  9810. ],
  9811. "support": {
  9812. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  9813. },
  9814. "funding": [
  9815. {
  9816. "url": "https://symfony.com/sponsor",
  9817. "type": "custom"
  9818. },
  9819. {
  9820. "url": "https://github.com/fabpot",
  9821. "type": "github"
  9822. },
  9823. {
  9824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9825. "type": "tidelift"
  9826. }
  9827. ],
  9828. "time": "2024-09-09T11:45:10+00:00"
  9829. },
  9830. {
  9831. "name": "symfony/polyfill-php83",
  9832. "version": "v1.32.0",
  9833. "source": {
  9834. "type": "git",
  9835. "url": "https://github.com/symfony/polyfill-php83.git",
  9836. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  9837. },
  9838. "dist": {
  9839. "type": "zip",
  9840. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  9841. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  9842. "shasum": ""
  9843. },
  9844. "require": {
  9845. "php": ">=7.2"
  9846. },
  9847. "type": "library",
  9848. "extra": {
  9849. "thanks": {
  9850. "url": "https://github.com/symfony/polyfill",
  9851. "name": "symfony/polyfill"
  9852. }
  9853. },
  9854. "autoload": {
  9855. "files": [
  9856. "bootstrap.php"
  9857. ],
  9858. "psr-4": {
  9859. "Symfony\\Polyfill\\Php83\\": ""
  9860. },
  9861. "classmap": [
  9862. "Resources/stubs"
  9863. ]
  9864. },
  9865. "notification-url": "https://packagist.org/downloads/",
  9866. "license": [
  9867. "MIT"
  9868. ],
  9869. "authors": [
  9870. {
  9871. "name": "Nicolas Grekas",
  9872. "email": "p@tchwork.com"
  9873. },
  9874. {
  9875. "name": "Symfony Community",
  9876. "homepage": "https://symfony.com/contributors"
  9877. }
  9878. ],
  9879. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9880. "homepage": "https://symfony.com",
  9881. "keywords": [
  9882. "compatibility",
  9883. "polyfill",
  9884. "portable",
  9885. "shim"
  9886. ],
  9887. "support": {
  9888. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  9889. },
  9890. "funding": [
  9891. {
  9892. "url": "https://symfony.com/sponsor",
  9893. "type": "custom"
  9894. },
  9895. {
  9896. "url": "https://github.com/fabpot",
  9897. "type": "github"
  9898. },
  9899. {
  9900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9901. "type": "tidelift"
  9902. }
  9903. ],
  9904. "time": "2024-09-09T11:45:10+00:00"
  9905. },
  9906. {
  9907. "name": "symfony/process",
  9908. "version": "v6.4.20",
  9909. "source": {
  9910. "type": "git",
  9911. "url": "https://github.com/symfony/process.git",
  9912. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  9913. },
  9914. "dist": {
  9915. "type": "zip",
  9916. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  9917. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  9918. "shasum": ""
  9919. },
  9920. "require": {
  9921. "php": ">=8.1"
  9922. },
  9923. "type": "library",
  9924. "autoload": {
  9925. "psr-4": {
  9926. "Symfony\\Component\\Process\\": ""
  9927. },
  9928. "exclude-from-classmap": [
  9929. "/Tests/"
  9930. ]
  9931. },
  9932. "notification-url": "https://packagist.org/downloads/",
  9933. "license": [
  9934. "MIT"
  9935. ],
  9936. "authors": [
  9937. {
  9938. "name": "Fabien Potencier",
  9939. "email": "fabien@symfony.com"
  9940. },
  9941. {
  9942. "name": "Symfony Community",
  9943. "homepage": "https://symfony.com/contributors"
  9944. }
  9945. ],
  9946. "description": "Executes commands in sub-processes",
  9947. "homepage": "https://symfony.com",
  9948. "support": {
  9949. "source": "https://github.com/symfony/process/tree/v6.4.20"
  9950. },
  9951. "funding": [
  9952. {
  9953. "url": "https://symfony.com/sponsor",
  9954. "type": "custom"
  9955. },
  9956. {
  9957. "url": "https://github.com/fabpot",
  9958. "type": "github"
  9959. },
  9960. {
  9961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9962. "type": "tidelift"
  9963. }
  9964. ],
  9965. "time": "2025-03-10T17:11:00+00:00"
  9966. },
  9967. {
  9968. "name": "symfony/stopwatch",
  9969. "version": "v6.4.19",
  9970. "source": {
  9971. "type": "git",
  9972. "url": "https://github.com/symfony/stopwatch.git",
  9973. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c"
  9974. },
  9975. "dist": {
  9976. "type": "zip",
  9977. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  9978. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  9979. "shasum": ""
  9980. },
  9981. "require": {
  9982. "php": ">=8.1",
  9983. "symfony/service-contracts": "^2.5|^3"
  9984. },
  9985. "type": "library",
  9986. "autoload": {
  9987. "psr-4": {
  9988. "Symfony\\Component\\Stopwatch\\": ""
  9989. },
  9990. "exclude-from-classmap": [
  9991. "/Tests/"
  9992. ]
  9993. },
  9994. "notification-url": "https://packagist.org/downloads/",
  9995. "license": [
  9996. "MIT"
  9997. ],
  9998. "authors": [
  9999. {
  10000. "name": "Fabien Potencier",
  10001. "email": "fabien@symfony.com"
  10002. },
  10003. {
  10004. "name": "Symfony Community",
  10005. "homepage": "https://symfony.com/contributors"
  10006. }
  10007. ],
  10008. "description": "Provides a way to profile code",
  10009. "homepage": "https://symfony.com",
  10010. "support": {
  10011. "source": "https://github.com/symfony/stopwatch/tree/v6.4.19"
  10012. },
  10013. "funding": [
  10014. {
  10015. "url": "https://symfony.com/sponsor",
  10016. "type": "custom"
  10017. },
  10018. {
  10019. "url": "https://github.com/fabpot",
  10020. "type": "github"
  10021. },
  10022. {
  10023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10024. "type": "tidelift"
  10025. }
  10026. ],
  10027. "time": "2025-02-21T10:06:30+00:00"
  10028. },
  10029. {
  10030. "name": "theseer/tokenizer",
  10031. "version": "1.2.3",
  10032. "source": {
  10033. "type": "git",
  10034. "url": "https://github.com/theseer/tokenizer.git",
  10035. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10036. },
  10037. "dist": {
  10038. "type": "zip",
  10039. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10040. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10041. "shasum": ""
  10042. },
  10043. "require": {
  10044. "ext-dom": "*",
  10045. "ext-tokenizer": "*",
  10046. "ext-xmlwriter": "*",
  10047. "php": "^7.2 || ^8.0"
  10048. },
  10049. "type": "library",
  10050. "autoload": {
  10051. "classmap": [
  10052. "src/"
  10053. ]
  10054. },
  10055. "notification-url": "https://packagist.org/downloads/",
  10056. "license": [
  10057. "BSD-3-Clause"
  10058. ],
  10059. "authors": [
  10060. {
  10061. "name": "Arne Blankerts",
  10062. "email": "arne@blankerts.de",
  10063. "role": "Developer"
  10064. }
  10065. ],
  10066. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10067. "support": {
  10068. "issues": "https://github.com/theseer/tokenizer/issues",
  10069. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10070. },
  10071. "funding": [
  10072. {
  10073. "url": "https://github.com/theseer",
  10074. "type": "github"
  10075. }
  10076. ],
  10077. "time": "2024-03-03T12:36:25+00:00"
  10078. }
  10079. ],
  10080. "aliases": [],
  10081. "minimum-stability": "dev",
  10082. "stability-flags": {},
  10083. "prefer-stable": true,
  10084. "prefer-lowest": false,
  10085. "platform": {
  10086. "php": ">=8.1"
  10087. },
  10088. "platform-dev": {},
  10089. "plugin-api-version": "2.6.0"
  10090. }