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": "8fa15d6f0ec5a73e749e70d69618faf9",
  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/filesystem",
  5518. "version": "v6.4.13",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/symfony/filesystem.git",
  5522. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  5527. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  5528. "shasum": ""
  5529. },
  5530. "require": {
  5531. "php": ">=8.1",
  5532. "symfony/polyfill-ctype": "~1.8",
  5533. "symfony/polyfill-mbstring": "~1.8"
  5534. },
  5535. "require-dev": {
  5536. "symfony/process": "^5.4|^6.4|^7.0"
  5537. },
  5538. "type": "library",
  5539. "autoload": {
  5540. "psr-4": {
  5541. "Symfony\\Component\\Filesystem\\": ""
  5542. },
  5543. "exclude-from-classmap": [
  5544. "/Tests/"
  5545. ]
  5546. },
  5547. "notification-url": "https://packagist.org/downloads/",
  5548. "license": [
  5549. "MIT"
  5550. ],
  5551. "authors": [
  5552. {
  5553. "name": "Fabien Potencier",
  5554. "email": "fabien@symfony.com"
  5555. },
  5556. {
  5557. "name": "Symfony Community",
  5558. "homepage": "https://symfony.com/contributors"
  5559. }
  5560. ],
  5561. "description": "Provides basic utilities for the filesystem",
  5562. "homepage": "https://symfony.com",
  5563. "support": {
  5564. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  5565. },
  5566. "funding": [
  5567. {
  5568. "url": "https://symfony.com/sponsor",
  5569. "type": "custom"
  5570. },
  5571. {
  5572. "url": "https://github.com/fabpot",
  5573. "type": "github"
  5574. },
  5575. {
  5576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5577. "type": "tidelift"
  5578. }
  5579. ],
  5580. "time": "2024-10-25T15:07:50+00:00"
  5581. },
  5582. {
  5583. "name": "symfony/finder",
  5584. "version": "v6.4.17",
  5585. "source": {
  5586. "type": "git",
  5587. "url": "https://github.com/symfony/finder.git",
  5588. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  5589. },
  5590. "dist": {
  5591. "type": "zip",
  5592. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  5593. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  5594. "shasum": ""
  5595. },
  5596. "require": {
  5597. "php": ">=8.1"
  5598. },
  5599. "require-dev": {
  5600. "symfony/filesystem": "^6.0|^7.0"
  5601. },
  5602. "type": "library",
  5603. "autoload": {
  5604. "psr-4": {
  5605. "Symfony\\Component\\Finder\\": ""
  5606. },
  5607. "exclude-from-classmap": [
  5608. "/Tests/"
  5609. ]
  5610. },
  5611. "notification-url": "https://packagist.org/downloads/",
  5612. "license": [
  5613. "MIT"
  5614. ],
  5615. "authors": [
  5616. {
  5617. "name": "Fabien Potencier",
  5618. "email": "fabien@symfony.com"
  5619. },
  5620. {
  5621. "name": "Symfony Community",
  5622. "homepage": "https://symfony.com/contributors"
  5623. }
  5624. ],
  5625. "description": "Finds files and directories via an intuitive fluent interface",
  5626. "homepage": "https://symfony.com",
  5627. "support": {
  5628. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  5629. },
  5630. "funding": [
  5631. {
  5632. "url": "https://symfony.com/sponsor",
  5633. "type": "custom"
  5634. },
  5635. {
  5636. "url": "https://github.com/fabpot",
  5637. "type": "github"
  5638. },
  5639. {
  5640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5641. "type": "tidelift"
  5642. }
  5643. ],
  5644. "time": "2024-12-29T13:51:37+00:00"
  5645. },
  5646. {
  5647. "name": "symfony/polyfill-ctype",
  5648. "version": "v1.32.0",
  5649. "source": {
  5650. "type": "git",
  5651. "url": "https://github.com/symfony/polyfill-ctype.git",
  5652. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5653. },
  5654. "dist": {
  5655. "type": "zip",
  5656. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5657. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5658. "shasum": ""
  5659. },
  5660. "require": {
  5661. "php": ">=7.2"
  5662. },
  5663. "provide": {
  5664. "ext-ctype": "*"
  5665. },
  5666. "suggest": {
  5667. "ext-ctype": "For best performance"
  5668. },
  5669. "type": "library",
  5670. "extra": {
  5671. "thanks": {
  5672. "url": "https://github.com/symfony/polyfill",
  5673. "name": "symfony/polyfill"
  5674. }
  5675. },
  5676. "autoload": {
  5677. "files": [
  5678. "bootstrap.php"
  5679. ],
  5680. "psr-4": {
  5681. "Symfony\\Polyfill\\Ctype\\": ""
  5682. }
  5683. },
  5684. "notification-url": "https://packagist.org/downloads/",
  5685. "license": [
  5686. "MIT"
  5687. ],
  5688. "authors": [
  5689. {
  5690. "name": "Gert de Pagter",
  5691. "email": "BackEndTea@gmail.com"
  5692. },
  5693. {
  5694. "name": "Symfony Community",
  5695. "homepage": "https://symfony.com/contributors"
  5696. }
  5697. ],
  5698. "description": "Symfony polyfill for ctype functions",
  5699. "homepage": "https://symfony.com",
  5700. "keywords": [
  5701. "compatibility",
  5702. "ctype",
  5703. "polyfill",
  5704. "portable"
  5705. ],
  5706. "support": {
  5707. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  5708. },
  5709. "funding": [
  5710. {
  5711. "url": "https://symfony.com/sponsor",
  5712. "type": "custom"
  5713. },
  5714. {
  5715. "url": "https://github.com/fabpot",
  5716. "type": "github"
  5717. },
  5718. {
  5719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5720. "type": "tidelift"
  5721. }
  5722. ],
  5723. "time": "2024-09-09T11:45:10+00:00"
  5724. },
  5725. {
  5726. "name": "symfony/polyfill-intl-grapheme",
  5727. "version": "v1.32.0",
  5728. "source": {
  5729. "type": "git",
  5730. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5731. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5732. },
  5733. "dist": {
  5734. "type": "zip",
  5735. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5736. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5737. "shasum": ""
  5738. },
  5739. "require": {
  5740. "php": ">=7.2"
  5741. },
  5742. "suggest": {
  5743. "ext-intl": "For best performance"
  5744. },
  5745. "type": "library",
  5746. "extra": {
  5747. "thanks": {
  5748. "url": "https://github.com/symfony/polyfill",
  5749. "name": "symfony/polyfill"
  5750. }
  5751. },
  5752. "autoload": {
  5753. "files": [
  5754. "bootstrap.php"
  5755. ],
  5756. "psr-4": {
  5757. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5758. }
  5759. },
  5760. "notification-url": "https://packagist.org/downloads/",
  5761. "license": [
  5762. "MIT"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "Nicolas Grekas",
  5767. "email": "p@tchwork.com"
  5768. },
  5769. {
  5770. "name": "Symfony Community",
  5771. "homepage": "https://symfony.com/contributors"
  5772. }
  5773. ],
  5774. "description": "Symfony polyfill for intl's grapheme_* functions",
  5775. "homepage": "https://symfony.com",
  5776. "keywords": [
  5777. "compatibility",
  5778. "grapheme",
  5779. "intl",
  5780. "polyfill",
  5781. "portable",
  5782. "shim"
  5783. ],
  5784. "support": {
  5785. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  5786. },
  5787. "funding": [
  5788. {
  5789. "url": "https://symfony.com/sponsor",
  5790. "type": "custom"
  5791. },
  5792. {
  5793. "url": "https://github.com/fabpot",
  5794. "type": "github"
  5795. },
  5796. {
  5797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5798. "type": "tidelift"
  5799. }
  5800. ],
  5801. "time": "2024-09-09T11:45:10+00:00"
  5802. },
  5803. {
  5804. "name": "symfony/polyfill-intl-normalizer",
  5805. "version": "v1.32.0",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5809. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5814. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5815. "shasum": ""
  5816. },
  5817. "require": {
  5818. "php": ">=7.2"
  5819. },
  5820. "suggest": {
  5821. "ext-intl": "For best performance"
  5822. },
  5823. "type": "library",
  5824. "extra": {
  5825. "thanks": {
  5826. "url": "https://github.com/symfony/polyfill",
  5827. "name": "symfony/polyfill"
  5828. }
  5829. },
  5830. "autoload": {
  5831. "files": [
  5832. "bootstrap.php"
  5833. ],
  5834. "psr-4": {
  5835. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5836. },
  5837. "classmap": [
  5838. "Resources/stubs"
  5839. ]
  5840. },
  5841. "notification-url": "https://packagist.org/downloads/",
  5842. "license": [
  5843. "MIT"
  5844. ],
  5845. "authors": [
  5846. {
  5847. "name": "Nicolas Grekas",
  5848. "email": "p@tchwork.com"
  5849. },
  5850. {
  5851. "name": "Symfony Community",
  5852. "homepage": "https://symfony.com/contributors"
  5853. }
  5854. ],
  5855. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5856. "homepage": "https://symfony.com",
  5857. "keywords": [
  5858. "compatibility",
  5859. "intl",
  5860. "normalizer",
  5861. "polyfill",
  5862. "portable",
  5863. "shim"
  5864. ],
  5865. "support": {
  5866. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  5867. },
  5868. "funding": [
  5869. {
  5870. "url": "https://symfony.com/sponsor",
  5871. "type": "custom"
  5872. },
  5873. {
  5874. "url": "https://github.com/fabpot",
  5875. "type": "github"
  5876. },
  5877. {
  5878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5879. "type": "tidelift"
  5880. }
  5881. ],
  5882. "time": "2024-09-09T11:45:10+00:00"
  5883. },
  5884. {
  5885. "name": "symfony/polyfill-mbstring",
  5886. "version": "v1.32.0",
  5887. "source": {
  5888. "type": "git",
  5889. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5890. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  5891. },
  5892. "dist": {
  5893. "type": "zip",
  5894. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5895. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5896. "shasum": ""
  5897. },
  5898. "require": {
  5899. "ext-iconv": "*",
  5900. "php": ">=7.2"
  5901. },
  5902. "provide": {
  5903. "ext-mbstring": "*"
  5904. },
  5905. "suggest": {
  5906. "ext-mbstring": "For best performance"
  5907. },
  5908. "type": "library",
  5909. "extra": {
  5910. "thanks": {
  5911. "url": "https://github.com/symfony/polyfill",
  5912. "name": "symfony/polyfill"
  5913. }
  5914. },
  5915. "autoload": {
  5916. "files": [
  5917. "bootstrap.php"
  5918. ],
  5919. "psr-4": {
  5920. "Symfony\\Polyfill\\Mbstring\\": ""
  5921. }
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "MIT"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "Nicolas Grekas",
  5930. "email": "p@tchwork.com"
  5931. },
  5932. {
  5933. "name": "Symfony Community",
  5934. "homepage": "https://symfony.com/contributors"
  5935. }
  5936. ],
  5937. "description": "Symfony polyfill for the Mbstring extension",
  5938. "homepage": "https://symfony.com",
  5939. "keywords": [
  5940. "compatibility",
  5941. "mbstring",
  5942. "polyfill",
  5943. "portable",
  5944. "shim"
  5945. ],
  5946. "support": {
  5947. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  5948. },
  5949. "funding": [
  5950. {
  5951. "url": "https://symfony.com/sponsor",
  5952. "type": "custom"
  5953. },
  5954. {
  5955. "url": "https://github.com/fabpot",
  5956. "type": "github"
  5957. },
  5958. {
  5959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5960. "type": "tidelift"
  5961. }
  5962. ],
  5963. "time": "2024-12-23T08:48:59+00:00"
  5964. },
  5965. {
  5966. "name": "symfony/polyfill-php80",
  5967. "version": "v1.32.0",
  5968. "source": {
  5969. "type": "git",
  5970. "url": "https://github.com/symfony/polyfill-php80.git",
  5971. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  5972. },
  5973. "dist": {
  5974. "type": "zip",
  5975. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  5976. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  5977. "shasum": ""
  5978. },
  5979. "require": {
  5980. "php": ">=7.2"
  5981. },
  5982. "type": "library",
  5983. "extra": {
  5984. "thanks": {
  5985. "url": "https://github.com/symfony/polyfill",
  5986. "name": "symfony/polyfill"
  5987. }
  5988. },
  5989. "autoload": {
  5990. "files": [
  5991. "bootstrap.php"
  5992. ],
  5993. "psr-4": {
  5994. "Symfony\\Polyfill\\Php80\\": ""
  5995. },
  5996. "classmap": [
  5997. "Resources/stubs"
  5998. ]
  5999. },
  6000. "notification-url": "https://packagist.org/downloads/",
  6001. "license": [
  6002. "MIT"
  6003. ],
  6004. "authors": [
  6005. {
  6006. "name": "Ion Bazan",
  6007. "email": "ion.bazan@gmail.com"
  6008. },
  6009. {
  6010. "name": "Nicolas Grekas",
  6011. "email": "p@tchwork.com"
  6012. },
  6013. {
  6014. "name": "Symfony Community",
  6015. "homepage": "https://symfony.com/contributors"
  6016. }
  6017. ],
  6018. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6019. "homepage": "https://symfony.com",
  6020. "keywords": [
  6021. "compatibility",
  6022. "polyfill",
  6023. "portable",
  6024. "shim"
  6025. ],
  6026. "support": {
  6027. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  6028. },
  6029. "funding": [
  6030. {
  6031. "url": "https://symfony.com/sponsor",
  6032. "type": "custom"
  6033. },
  6034. {
  6035. "url": "https://github.com/fabpot",
  6036. "type": "github"
  6037. },
  6038. {
  6039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6040. "type": "tidelift"
  6041. }
  6042. ],
  6043. "time": "2025-01-02T08:10:11+00:00"
  6044. },
  6045. {
  6046. "name": "symfony/service-contracts",
  6047. "version": "v3.6.0",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/symfony/service-contracts.git",
  6051. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6056. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6057. "shasum": ""
  6058. },
  6059. "require": {
  6060. "php": ">=8.1",
  6061. "psr/container": "^1.1|^2.0",
  6062. "symfony/deprecation-contracts": "^2.5|^3"
  6063. },
  6064. "conflict": {
  6065. "ext-psr": "<1.1|>=2"
  6066. },
  6067. "type": "library",
  6068. "extra": {
  6069. "thanks": {
  6070. "url": "https://github.com/symfony/contracts",
  6071. "name": "symfony/contracts"
  6072. },
  6073. "branch-alias": {
  6074. "dev-main": "3.6-dev"
  6075. }
  6076. },
  6077. "autoload": {
  6078. "psr-4": {
  6079. "Symfony\\Contracts\\Service\\": ""
  6080. },
  6081. "exclude-from-classmap": [
  6082. "/Test/"
  6083. ]
  6084. },
  6085. "notification-url": "https://packagist.org/downloads/",
  6086. "license": [
  6087. "MIT"
  6088. ],
  6089. "authors": [
  6090. {
  6091. "name": "Nicolas Grekas",
  6092. "email": "p@tchwork.com"
  6093. },
  6094. {
  6095. "name": "Symfony Community",
  6096. "homepage": "https://symfony.com/contributors"
  6097. }
  6098. ],
  6099. "description": "Generic abstractions related to writing services",
  6100. "homepage": "https://symfony.com",
  6101. "keywords": [
  6102. "abstractions",
  6103. "contracts",
  6104. "decoupling",
  6105. "interfaces",
  6106. "interoperability",
  6107. "standards"
  6108. ],
  6109. "support": {
  6110. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  6111. },
  6112. "funding": [
  6113. {
  6114. "url": "https://symfony.com/sponsor",
  6115. "type": "custom"
  6116. },
  6117. {
  6118. "url": "https://github.com/fabpot",
  6119. "type": "github"
  6120. },
  6121. {
  6122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6123. "type": "tidelift"
  6124. }
  6125. ],
  6126. "time": "2025-04-25T09:37:31+00:00"
  6127. },
  6128. {
  6129. "name": "symfony/string",
  6130. "version": "v6.4.21",
  6131. "source": {
  6132. "type": "git",
  6133. "url": "https://github.com/symfony/string.git",
  6134. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  6135. },
  6136. "dist": {
  6137. "type": "zip",
  6138. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  6139. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  6140. "shasum": ""
  6141. },
  6142. "require": {
  6143. "php": ">=8.1",
  6144. "symfony/polyfill-ctype": "~1.8",
  6145. "symfony/polyfill-intl-grapheme": "~1.0",
  6146. "symfony/polyfill-intl-normalizer": "~1.0",
  6147. "symfony/polyfill-mbstring": "~1.0"
  6148. },
  6149. "conflict": {
  6150. "symfony/translation-contracts": "<2.5"
  6151. },
  6152. "require-dev": {
  6153. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6154. "symfony/http-client": "^5.4|^6.0|^7.0",
  6155. "symfony/intl": "^6.2|^7.0",
  6156. "symfony/translation-contracts": "^2.5|^3.0",
  6157. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6158. },
  6159. "type": "library",
  6160. "autoload": {
  6161. "files": [
  6162. "Resources/functions.php"
  6163. ],
  6164. "psr-4": {
  6165. "Symfony\\Component\\String\\": ""
  6166. },
  6167. "exclude-from-classmap": [
  6168. "/Tests/"
  6169. ]
  6170. },
  6171. "notification-url": "https://packagist.org/downloads/",
  6172. "license": [
  6173. "MIT"
  6174. ],
  6175. "authors": [
  6176. {
  6177. "name": "Nicolas Grekas",
  6178. "email": "p@tchwork.com"
  6179. },
  6180. {
  6181. "name": "Symfony Community",
  6182. "homepage": "https://symfony.com/contributors"
  6183. }
  6184. ],
  6185. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6186. "homepage": "https://symfony.com",
  6187. "keywords": [
  6188. "grapheme",
  6189. "i18n",
  6190. "string",
  6191. "unicode",
  6192. "utf-8",
  6193. "utf8"
  6194. ],
  6195. "support": {
  6196. "source": "https://github.com/symfony/string/tree/v6.4.21"
  6197. },
  6198. "funding": [
  6199. {
  6200. "url": "https://symfony.com/sponsor",
  6201. "type": "custom"
  6202. },
  6203. {
  6204. "url": "https://github.com/fabpot",
  6205. "type": "github"
  6206. },
  6207. {
  6208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6209. "type": "tidelift"
  6210. }
  6211. ],
  6212. "time": "2025-04-18T15:23:29+00:00"
  6213. },
  6214. {
  6215. "name": "symfony/translation",
  6216. "version": "v6.4.21",
  6217. "source": {
  6218. "type": "git",
  6219. "url": "https://github.com/symfony/translation.git",
  6220. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c"
  6221. },
  6222. "dist": {
  6223. "type": "zip",
  6224. "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c",
  6225. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c",
  6226. "shasum": ""
  6227. },
  6228. "require": {
  6229. "php": ">=8.1",
  6230. "symfony/deprecation-contracts": "^2.5|^3",
  6231. "symfony/polyfill-mbstring": "~1.0",
  6232. "symfony/translation-contracts": "^2.5|^3.0"
  6233. },
  6234. "conflict": {
  6235. "symfony/config": "<5.4",
  6236. "symfony/console": "<5.4",
  6237. "symfony/dependency-injection": "<5.4",
  6238. "symfony/http-client-contracts": "<2.5",
  6239. "symfony/http-kernel": "<5.4",
  6240. "symfony/service-contracts": "<2.5",
  6241. "symfony/twig-bundle": "<5.4",
  6242. "symfony/yaml": "<5.4"
  6243. },
  6244. "provide": {
  6245. "symfony/translation-implementation": "2.3|3.0"
  6246. },
  6247. "require-dev": {
  6248. "nikic/php-parser": "^4.18|^5.0",
  6249. "psr/log": "^1|^2|^3",
  6250. "symfony/config": "^5.4|^6.0|^7.0",
  6251. "symfony/console": "^5.4|^6.0|^7.0",
  6252. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6253. "symfony/finder": "^5.4|^6.0|^7.0",
  6254. "symfony/http-client-contracts": "^2.5|^3.0",
  6255. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6256. "symfony/intl": "^5.4|^6.0|^7.0",
  6257. "symfony/polyfill-intl-icu": "^1.21",
  6258. "symfony/routing": "^5.4|^6.0|^7.0",
  6259. "symfony/service-contracts": "^2.5|^3",
  6260. "symfony/yaml": "^5.4|^6.0|^7.0"
  6261. },
  6262. "type": "library",
  6263. "autoload": {
  6264. "files": [
  6265. "Resources/functions.php"
  6266. ],
  6267. "psr-4": {
  6268. "Symfony\\Component\\Translation\\": ""
  6269. },
  6270. "exclude-from-classmap": [
  6271. "/Tests/"
  6272. ]
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "MIT"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "Fabien Potencier",
  6281. "email": "fabien@symfony.com"
  6282. },
  6283. {
  6284. "name": "Symfony Community",
  6285. "homepage": "https://symfony.com/contributors"
  6286. }
  6287. ],
  6288. "description": "Provides tools to internationalize your application",
  6289. "homepage": "https://symfony.com",
  6290. "support": {
  6291. "source": "https://github.com/symfony/translation/tree/v6.4.21"
  6292. },
  6293. "funding": [
  6294. {
  6295. "url": "https://symfony.com/sponsor",
  6296. "type": "custom"
  6297. },
  6298. {
  6299. "url": "https://github.com/fabpot",
  6300. "type": "github"
  6301. },
  6302. {
  6303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6304. "type": "tidelift"
  6305. }
  6306. ],
  6307. "time": "2025-04-07T19:02:30+00:00"
  6308. },
  6309. {
  6310. "name": "symfony/translation-contracts",
  6311. "version": "v3.6.0",
  6312. "source": {
  6313. "type": "git",
  6314. "url": "https://github.com/symfony/translation-contracts.git",
  6315. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  6316. },
  6317. "dist": {
  6318. "type": "zip",
  6319. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6320. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6321. "shasum": ""
  6322. },
  6323. "require": {
  6324. "php": ">=8.1"
  6325. },
  6326. "type": "library",
  6327. "extra": {
  6328. "thanks": {
  6329. "url": "https://github.com/symfony/contracts",
  6330. "name": "symfony/contracts"
  6331. },
  6332. "branch-alias": {
  6333. "dev-main": "3.6-dev"
  6334. }
  6335. },
  6336. "autoload": {
  6337. "psr-4": {
  6338. "Symfony\\Contracts\\Translation\\": ""
  6339. },
  6340. "exclude-from-classmap": [
  6341. "/Test/"
  6342. ]
  6343. },
  6344. "notification-url": "https://packagist.org/downloads/",
  6345. "license": [
  6346. "MIT"
  6347. ],
  6348. "authors": [
  6349. {
  6350. "name": "Nicolas Grekas",
  6351. "email": "p@tchwork.com"
  6352. },
  6353. {
  6354. "name": "Symfony Community",
  6355. "homepage": "https://symfony.com/contributors"
  6356. }
  6357. ],
  6358. "description": "Generic abstractions related to translation",
  6359. "homepage": "https://symfony.com",
  6360. "keywords": [
  6361. "abstractions",
  6362. "contracts",
  6363. "decoupling",
  6364. "interfaces",
  6365. "interoperability",
  6366. "standards"
  6367. ],
  6368. "support": {
  6369. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  6370. },
  6371. "funding": [
  6372. {
  6373. "url": "https://symfony.com/sponsor",
  6374. "type": "custom"
  6375. },
  6376. {
  6377. "url": "https://github.com/fabpot",
  6378. "type": "github"
  6379. },
  6380. {
  6381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6382. "type": "tidelift"
  6383. }
  6384. ],
  6385. "time": "2024-09-27T08:32:26+00:00"
  6386. },
  6387. {
  6388. "name": "vlucas/phpdotenv",
  6389. "version": "v5.6.2",
  6390. "source": {
  6391. "type": "git",
  6392. "url": "https://github.com/vlucas/phpdotenv.git",
  6393. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  6394. },
  6395. "dist": {
  6396. "type": "zip",
  6397. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  6398. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  6399. "shasum": ""
  6400. },
  6401. "require": {
  6402. "ext-pcre": "*",
  6403. "graham-campbell/result-type": "^1.1.3",
  6404. "php": "^7.2.5 || ^8.0",
  6405. "phpoption/phpoption": "^1.9.3",
  6406. "symfony/polyfill-ctype": "^1.24",
  6407. "symfony/polyfill-mbstring": "^1.24",
  6408. "symfony/polyfill-php80": "^1.24"
  6409. },
  6410. "require-dev": {
  6411. "bamarni/composer-bin-plugin": "^1.8.2",
  6412. "ext-filter": "*",
  6413. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6414. },
  6415. "suggest": {
  6416. "ext-filter": "Required to use the boolean validator."
  6417. },
  6418. "type": "library",
  6419. "extra": {
  6420. "bamarni-bin": {
  6421. "bin-links": true,
  6422. "forward-command": false
  6423. },
  6424. "branch-alias": {
  6425. "dev-master": "5.6-dev"
  6426. }
  6427. },
  6428. "autoload": {
  6429. "psr-4": {
  6430. "Dotenv\\": "src/"
  6431. }
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "BSD-3-Clause"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "Graham Campbell",
  6440. "email": "hello@gjcampbell.co.uk",
  6441. "homepage": "https://github.com/GrahamCampbell"
  6442. },
  6443. {
  6444. "name": "Vance Lucas",
  6445. "email": "vance@vancelucas.com",
  6446. "homepage": "https://github.com/vlucas"
  6447. }
  6448. ],
  6449. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6450. "keywords": [
  6451. "dotenv",
  6452. "env",
  6453. "environment"
  6454. ],
  6455. "support": {
  6456. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6457. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  6458. },
  6459. "funding": [
  6460. {
  6461. "url": "https://github.com/GrahamCampbell",
  6462. "type": "github"
  6463. },
  6464. {
  6465. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6466. "type": "tidelift"
  6467. }
  6468. ],
  6469. "time": "2025-04-30T23:37:27+00:00"
  6470. }
  6471. ],
  6472. "packages-dev": [
  6473. {
  6474. "name": "clue/ndjson-react",
  6475. "version": "v1.3.0",
  6476. "source": {
  6477. "type": "git",
  6478. "url": "https://github.com/clue/reactphp-ndjson.git",
  6479. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6480. },
  6481. "dist": {
  6482. "type": "zip",
  6483. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6484. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6485. "shasum": ""
  6486. },
  6487. "require": {
  6488. "php": ">=5.3",
  6489. "react/stream": "^1.2"
  6490. },
  6491. "require-dev": {
  6492. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6493. "react/event-loop": "^1.2"
  6494. },
  6495. "type": "library",
  6496. "autoload": {
  6497. "psr-4": {
  6498. "Clue\\React\\NDJson\\": "src/"
  6499. }
  6500. },
  6501. "notification-url": "https://packagist.org/downloads/",
  6502. "license": [
  6503. "MIT"
  6504. ],
  6505. "authors": [
  6506. {
  6507. "name": "Christian Lück",
  6508. "email": "christian@clue.engineering"
  6509. }
  6510. ],
  6511. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6512. "homepage": "https://github.com/clue/reactphp-ndjson",
  6513. "keywords": [
  6514. "NDJSON",
  6515. "json",
  6516. "jsonlines",
  6517. "newline",
  6518. "reactphp",
  6519. "streaming"
  6520. ],
  6521. "support": {
  6522. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6523. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6524. },
  6525. "funding": [
  6526. {
  6527. "url": "https://clue.engineering/support",
  6528. "type": "custom"
  6529. },
  6530. {
  6531. "url": "https://github.com/clue",
  6532. "type": "github"
  6533. }
  6534. ],
  6535. "time": "2022-12-23T10:58:28+00:00"
  6536. },
  6537. {
  6538. "name": "composer/pcre",
  6539. "version": "3.3.2",
  6540. "source": {
  6541. "type": "git",
  6542. "url": "https://github.com/composer/pcre.git",
  6543. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  6544. },
  6545. "dist": {
  6546. "type": "zip",
  6547. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  6548. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  6549. "shasum": ""
  6550. },
  6551. "require": {
  6552. "php": "^7.4 || ^8.0"
  6553. },
  6554. "conflict": {
  6555. "phpstan/phpstan": "<1.11.10"
  6556. },
  6557. "require-dev": {
  6558. "phpstan/phpstan": "^1.12 || ^2",
  6559. "phpstan/phpstan-strict-rules": "^1 || ^2",
  6560. "phpunit/phpunit": "^8 || ^9"
  6561. },
  6562. "type": "library",
  6563. "extra": {
  6564. "phpstan": {
  6565. "includes": [
  6566. "extension.neon"
  6567. ]
  6568. },
  6569. "branch-alias": {
  6570. "dev-main": "3.x-dev"
  6571. }
  6572. },
  6573. "autoload": {
  6574. "psr-4": {
  6575. "Composer\\Pcre\\": "src"
  6576. }
  6577. },
  6578. "notification-url": "https://packagist.org/downloads/",
  6579. "license": [
  6580. "MIT"
  6581. ],
  6582. "authors": [
  6583. {
  6584. "name": "Jordi Boggiano",
  6585. "email": "j.boggiano@seld.be",
  6586. "homepage": "http://seld.be"
  6587. }
  6588. ],
  6589. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6590. "keywords": [
  6591. "PCRE",
  6592. "preg",
  6593. "regex",
  6594. "regular expression"
  6595. ],
  6596. "support": {
  6597. "issues": "https://github.com/composer/pcre/issues",
  6598. "source": "https://github.com/composer/pcre/tree/3.3.2"
  6599. },
  6600. "funding": [
  6601. {
  6602. "url": "https://packagist.com",
  6603. "type": "custom"
  6604. },
  6605. {
  6606. "url": "https://github.com/composer",
  6607. "type": "github"
  6608. },
  6609. {
  6610. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6611. "type": "tidelift"
  6612. }
  6613. ],
  6614. "time": "2024-11-12T16:29:46+00:00"
  6615. },
  6616. {
  6617. "name": "composer/semver",
  6618. "version": "3.4.3",
  6619. "source": {
  6620. "type": "git",
  6621. "url": "https://github.com/composer/semver.git",
  6622. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  6623. },
  6624. "dist": {
  6625. "type": "zip",
  6626. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  6627. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  6628. "shasum": ""
  6629. },
  6630. "require": {
  6631. "php": "^5.3.2 || ^7.0 || ^8.0"
  6632. },
  6633. "require-dev": {
  6634. "phpstan/phpstan": "^1.11",
  6635. "symfony/phpunit-bridge": "^3 || ^7"
  6636. },
  6637. "type": "library",
  6638. "extra": {
  6639. "branch-alias": {
  6640. "dev-main": "3.x-dev"
  6641. }
  6642. },
  6643. "autoload": {
  6644. "psr-4": {
  6645. "Composer\\Semver\\": "src"
  6646. }
  6647. },
  6648. "notification-url": "https://packagist.org/downloads/",
  6649. "license": [
  6650. "MIT"
  6651. ],
  6652. "authors": [
  6653. {
  6654. "name": "Nils Adermann",
  6655. "email": "naderman@naderman.de",
  6656. "homepage": "http://www.naderman.de"
  6657. },
  6658. {
  6659. "name": "Jordi Boggiano",
  6660. "email": "j.boggiano@seld.be",
  6661. "homepage": "http://seld.be"
  6662. },
  6663. {
  6664. "name": "Rob Bast",
  6665. "email": "rob.bast@gmail.com",
  6666. "homepage": "http://robbast.nl"
  6667. }
  6668. ],
  6669. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6670. "keywords": [
  6671. "semantic",
  6672. "semver",
  6673. "validation",
  6674. "versioning"
  6675. ],
  6676. "support": {
  6677. "irc": "ircs://irc.libera.chat:6697/composer",
  6678. "issues": "https://github.com/composer/semver/issues",
  6679. "source": "https://github.com/composer/semver/tree/3.4.3"
  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-09-19T14:15:21+00:00"
  6696. },
  6697. {
  6698. "name": "composer/xdebug-handler",
  6699. "version": "3.0.5",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/composer/xdebug-handler.git",
  6703. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  6708. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  6709. "shasum": ""
  6710. },
  6711. "require": {
  6712. "composer/pcre": "^1 || ^2 || ^3",
  6713. "php": "^7.2.5 || ^8.0",
  6714. "psr/log": "^1 || ^2 || ^3"
  6715. },
  6716. "require-dev": {
  6717. "phpstan/phpstan": "^1.0",
  6718. "phpstan/phpstan-strict-rules": "^1.1",
  6719. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  6720. },
  6721. "type": "library",
  6722. "autoload": {
  6723. "psr-4": {
  6724. "Composer\\XdebugHandler\\": "src"
  6725. }
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "MIT"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "John Stevenson",
  6734. "email": "john-stevenson@blueyonder.co.uk"
  6735. }
  6736. ],
  6737. "description": "Restarts a process without Xdebug.",
  6738. "keywords": [
  6739. "Xdebug",
  6740. "performance"
  6741. ],
  6742. "support": {
  6743. "irc": "ircs://irc.libera.chat:6697/composer",
  6744. "issues": "https://github.com/composer/xdebug-handler/issues",
  6745. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  6746. },
  6747. "funding": [
  6748. {
  6749. "url": "https://packagist.com",
  6750. "type": "custom"
  6751. },
  6752. {
  6753. "url": "https://github.com/composer",
  6754. "type": "github"
  6755. },
  6756. {
  6757. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6758. "type": "tidelift"
  6759. }
  6760. ],
  6761. "time": "2024-05-06T16:37:16+00:00"
  6762. },
  6763. {
  6764. "name": "evenement/evenement",
  6765. "version": "v3.0.2",
  6766. "source": {
  6767. "type": "git",
  6768. "url": "https://github.com/igorw/evenement.git",
  6769. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  6770. },
  6771. "dist": {
  6772. "type": "zip",
  6773. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6774. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6775. "shasum": ""
  6776. },
  6777. "require": {
  6778. "php": ">=7.0"
  6779. },
  6780. "require-dev": {
  6781. "phpunit/phpunit": "^9 || ^6"
  6782. },
  6783. "type": "library",
  6784. "autoload": {
  6785. "psr-4": {
  6786. "Evenement\\": "src/"
  6787. }
  6788. },
  6789. "notification-url": "https://packagist.org/downloads/",
  6790. "license": [
  6791. "MIT"
  6792. ],
  6793. "authors": [
  6794. {
  6795. "name": "Igor Wiedler",
  6796. "email": "igor@wiedler.ch"
  6797. }
  6798. ],
  6799. "description": "Événement is a very simple event dispatching library for PHP",
  6800. "keywords": [
  6801. "event-dispatcher",
  6802. "event-emitter"
  6803. ],
  6804. "support": {
  6805. "issues": "https://github.com/igorw/evenement/issues",
  6806. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  6807. },
  6808. "time": "2023-08-08T05:53:35+00:00"
  6809. },
  6810. {
  6811. "name": "fidry/cpu-core-counter",
  6812. "version": "1.2.0",
  6813. "source": {
  6814. "type": "git",
  6815. "url": "https://github.com/theofidry/cpu-core-counter.git",
  6816. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  6817. },
  6818. "dist": {
  6819. "type": "zip",
  6820. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  6821. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  6822. "shasum": ""
  6823. },
  6824. "require": {
  6825. "php": "^7.2 || ^8.0"
  6826. },
  6827. "require-dev": {
  6828. "fidry/makefile": "^0.2.0",
  6829. "fidry/php-cs-fixer-config": "^1.1.2",
  6830. "phpstan/extension-installer": "^1.2.0",
  6831. "phpstan/phpstan": "^1.9.2",
  6832. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  6833. "phpstan/phpstan-phpunit": "^1.2.2",
  6834. "phpstan/phpstan-strict-rules": "^1.4.4",
  6835. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  6836. "webmozarts/strict-phpunit": "^7.5"
  6837. },
  6838. "type": "library",
  6839. "autoload": {
  6840. "psr-4": {
  6841. "Fidry\\CpuCoreCounter\\": "src/"
  6842. }
  6843. },
  6844. "notification-url": "https://packagist.org/downloads/",
  6845. "license": [
  6846. "MIT"
  6847. ],
  6848. "authors": [
  6849. {
  6850. "name": "Théo FIDRY",
  6851. "email": "theo.fidry@gmail.com"
  6852. }
  6853. ],
  6854. "description": "Tiny utility to get the number of CPU cores.",
  6855. "keywords": [
  6856. "CPU",
  6857. "core"
  6858. ],
  6859. "support": {
  6860. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  6861. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  6862. },
  6863. "funding": [
  6864. {
  6865. "url": "https://github.com/theofidry",
  6866. "type": "github"
  6867. }
  6868. ],
  6869. "time": "2024-08-06T10:04:20+00:00"
  6870. },
  6871. {
  6872. "name": "friendsofphp/php-cs-fixer",
  6873. "version": "v3.75.0",
  6874. "source": {
  6875. "type": "git",
  6876. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  6877. "reference": "399a128ff2fdaf4281e4e79b755693286cdf325c"
  6878. },
  6879. "dist": {
  6880. "type": "zip",
  6881. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/399a128ff2fdaf4281e4e79b755693286cdf325c",
  6882. "reference": "399a128ff2fdaf4281e4e79b755693286cdf325c",
  6883. "shasum": ""
  6884. },
  6885. "require": {
  6886. "clue/ndjson-react": "^1.0",
  6887. "composer/semver": "^3.4",
  6888. "composer/xdebug-handler": "^3.0.3",
  6889. "ext-filter": "*",
  6890. "ext-hash": "*",
  6891. "ext-json": "*",
  6892. "ext-tokenizer": "*",
  6893. "fidry/cpu-core-counter": "^1.2",
  6894. "php": "^7.4 || ^8.0",
  6895. "react/child-process": "^0.6.5",
  6896. "react/event-loop": "^1.0",
  6897. "react/promise": "^2.0 || ^3.0",
  6898. "react/socket": "^1.0",
  6899. "react/stream": "^1.0",
  6900. "sebastian/diff": "^4.0 || ^5.1 || ^6.0 || ^7.0",
  6901. "symfony/console": "^5.4 || ^6.4 || ^7.0",
  6902. "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
  6903. "symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
  6904. "symfony/finder": "^5.4 || ^6.4 || ^7.0",
  6905. "symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
  6906. "symfony/polyfill-mbstring": "^1.31",
  6907. "symfony/polyfill-php80": "^1.31",
  6908. "symfony/polyfill-php81": "^1.31",
  6909. "symfony/process": "^5.4 || ^6.4 || ^7.2",
  6910. "symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
  6911. },
  6912. "require-dev": {
  6913. "facile-it/paraunit": "^1.3.1 || ^2.6",
  6914. "infection/infection": "^0.29.14",
  6915. "justinrainbow/json-schema": "^5.3 || ^6.2",
  6916. "keradus/cli-executor": "^2.1",
  6917. "mikey179/vfsstream": "^1.6.12",
  6918. "php-coveralls/php-coveralls": "^2.7",
  6919. "php-cs-fixer/accessible-object": "^1.1",
  6920. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6",
  6921. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6",
  6922. "phpunit/phpunit": "^9.6.22 || ^10.5.45 || ^11.5.12",
  6923. "symfony/var-dumper": "^5.4.48 || ^6.4.18 || ^7.2.3",
  6924. "symfony/yaml": "^5.4.45 || ^6.4.18 || ^7.2.3"
  6925. },
  6926. "suggest": {
  6927. "ext-dom": "For handling output formats in XML",
  6928. "ext-mbstring": "For handling non-UTF8 characters."
  6929. },
  6930. "bin": [
  6931. "php-cs-fixer"
  6932. ],
  6933. "type": "application",
  6934. "autoload": {
  6935. "psr-4": {
  6936. "PhpCsFixer\\": "src/"
  6937. },
  6938. "exclude-from-classmap": [
  6939. "src/Fixer/Internal/*"
  6940. ]
  6941. },
  6942. "notification-url": "https://packagist.org/downloads/",
  6943. "license": [
  6944. "MIT"
  6945. ],
  6946. "authors": [
  6947. {
  6948. "name": "Fabien Potencier",
  6949. "email": "fabien@symfony.com"
  6950. },
  6951. {
  6952. "name": "Dariusz Rumiński",
  6953. "email": "dariusz.ruminski@gmail.com"
  6954. }
  6955. ],
  6956. "description": "A tool to automatically fix PHP code style",
  6957. "keywords": [
  6958. "Static code analysis",
  6959. "fixer",
  6960. "standards",
  6961. "static analysis"
  6962. ],
  6963. "support": {
  6964. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  6965. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.75.0"
  6966. },
  6967. "funding": [
  6968. {
  6969. "url": "https://github.com/keradus",
  6970. "type": "github"
  6971. }
  6972. ],
  6973. "time": "2025-03-31T18:40:42+00:00"
  6974. },
  6975. {
  6976. "name": "hamcrest/hamcrest-php",
  6977. "version": "v2.1.1",
  6978. "source": {
  6979. "type": "git",
  6980. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6981. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  6982. },
  6983. "dist": {
  6984. "type": "zip",
  6985. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  6986. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  6987. "shasum": ""
  6988. },
  6989. "require": {
  6990. "php": "^7.4|^8.0"
  6991. },
  6992. "replace": {
  6993. "cordoval/hamcrest-php": "*",
  6994. "davedevelopment/hamcrest-php": "*",
  6995. "kodova/hamcrest-php": "*"
  6996. },
  6997. "require-dev": {
  6998. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  6999. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  7000. },
  7001. "type": "library",
  7002. "extra": {
  7003. "branch-alias": {
  7004. "dev-master": "2.1-dev"
  7005. }
  7006. },
  7007. "autoload": {
  7008. "classmap": [
  7009. "hamcrest"
  7010. ]
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "BSD-3-Clause"
  7015. ],
  7016. "description": "This is the PHP port of Hamcrest Matchers",
  7017. "keywords": [
  7018. "test"
  7019. ],
  7020. "support": {
  7021. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7022. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  7023. },
  7024. "time": "2025-04-30T06:54:44+00:00"
  7025. },
  7026. {
  7027. "name": "hyperf/devtool",
  7028. "version": "v3.1.51",
  7029. "source": {
  7030. "type": "git",
  7031. "url": "https://github.com/hyperf/devtool.git",
  7032. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  7033. },
  7034. "dist": {
  7035. "type": "zip",
  7036. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  7037. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  7038. "shasum": ""
  7039. },
  7040. "require": {
  7041. "hyperf/code-parser": "~3.1.0",
  7042. "hyperf/command": "~3.1.0",
  7043. "hyperf/contract": "~3.1.0",
  7044. "hyperf/di": "~3.1.0",
  7045. "hyperf/support": "~3.1.0",
  7046. "hyperf/utils": "~3.1.0",
  7047. "php": ">=8.1"
  7048. },
  7049. "type": "library",
  7050. "extra": {
  7051. "hyperf": {
  7052. "config": "Hyperf\\Devtool\\ConfigProvider"
  7053. },
  7054. "branch-alias": {
  7055. "dev-master": "3.1-dev"
  7056. }
  7057. },
  7058. "autoload": {
  7059. "psr-4": {
  7060. "Hyperf\\Devtool\\": "src/"
  7061. }
  7062. },
  7063. "notification-url": "https://packagist.org/downloads/",
  7064. "license": [
  7065. "MIT"
  7066. ],
  7067. "description": "A Devtool for Hyperf.",
  7068. "homepage": "https://hyperf.io",
  7069. "keywords": [
  7070. "dev",
  7071. "devtool",
  7072. "hyperf",
  7073. "php",
  7074. "swoole"
  7075. ],
  7076. "support": {
  7077. "docs": "https://hyperf.wiki",
  7078. "issues": "https://github.com/hyperf/hyperf/issues",
  7079. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7080. "source": "https://github.com/hyperf/hyperf"
  7081. },
  7082. "funding": [
  7083. {
  7084. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7085. "type": "custom"
  7086. },
  7087. {
  7088. "url": "https://opencollective.com/hyperf",
  7089. "type": "open_collective"
  7090. }
  7091. ],
  7092. "time": "2025-02-06T06:42:00+00:00"
  7093. },
  7094. {
  7095. "name": "hyperf/testing",
  7096. "version": "v3.1.55",
  7097. "source": {
  7098. "type": "git",
  7099. "url": "https://github.com/hyperf/testing.git",
  7100. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db"
  7101. },
  7102. "dist": {
  7103. "type": "zip",
  7104. "url": "https://api.github.com/repos/hyperf/testing/zipball/f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  7105. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  7106. "shasum": ""
  7107. },
  7108. "require": {
  7109. "hyperf/codec": "~3.1.0",
  7110. "hyperf/collection": "~3.1.0",
  7111. "hyperf/contract": "~3.1.0",
  7112. "hyperf/coroutine": "~3.1.0",
  7113. "hyperf/http-message": "~3.1.0",
  7114. "hyperf/http-server": "~3.1.0",
  7115. "hyperf/support": "~3.1.0",
  7116. "hyperf/utils": "~3.1.0",
  7117. "php": ">=8.1",
  7118. "phpunit/phpunit": "^10.0",
  7119. "psr/container": "^1.0 || ^2.0",
  7120. "symfony/http-foundation": "^5.4 || ^6.0"
  7121. },
  7122. "suggest": {
  7123. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7124. },
  7125. "bin": [
  7126. "co-phpunit"
  7127. ],
  7128. "type": "library",
  7129. "extra": {
  7130. "branch-alias": {
  7131. "dev-master": "3.1-dev"
  7132. }
  7133. },
  7134. "autoload": {
  7135. "psr-4": {
  7136. "Hyperf\\Testing\\": "src/"
  7137. }
  7138. },
  7139. "notification-url": "https://packagist.org/downloads/",
  7140. "license": [
  7141. "MIT"
  7142. ],
  7143. "description": "Testing for hyperf",
  7144. "keywords": [
  7145. "dev",
  7146. "php",
  7147. "swoole",
  7148. "testing"
  7149. ],
  7150. "support": {
  7151. "source": "https://github.com/hyperf/testing/tree/v3.1.55"
  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-05-02T14:13:24+00:00"
  7164. },
  7165. {
  7166. "name": "hyperf/watcher",
  7167. "version": "v3.1.54",
  7168. "source": {
  7169. "type": "git",
  7170. "url": "https://github.com/hyperf/watcher.git",
  7171. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70"
  7172. },
  7173. "dist": {
  7174. "type": "zip",
  7175. "url": "https://api.github.com/repos/hyperf/watcher/zipball/c92dc6bd94c6e2369a3de262a700550427041b70",
  7176. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70",
  7177. "shasum": ""
  7178. },
  7179. "require": {
  7180. "ext-posix": "*",
  7181. "hyperf/codec": "~3.1.0",
  7182. "hyperf/command": "~3.1.0",
  7183. "hyperf/di": "~3.1.0",
  7184. "hyperf/framework": "~3.1.0",
  7185. "hyperf/support": "~3.1.0",
  7186. "php": ">=8.1"
  7187. },
  7188. "type": "library",
  7189. "extra": {
  7190. "hyperf": {
  7191. "config": "Hyperf\\Watcher\\ConfigProvider"
  7192. },
  7193. "branch-alias": {
  7194. "dev-master": "3.1-dev"
  7195. }
  7196. },
  7197. "autoload": {
  7198. "files": [
  7199. "src/Functions.php"
  7200. ],
  7201. "psr-4": {
  7202. "Hyperf\\Watcher\\": "src/"
  7203. }
  7204. },
  7205. "notification-url": "https://packagist.org/downloads/",
  7206. "license": [
  7207. "MIT"
  7208. ],
  7209. "description": "Hot reload watcher for Hyperf",
  7210. "keywords": [
  7211. "dev",
  7212. "hyperf",
  7213. "php"
  7214. ],
  7215. "support": {
  7216. "issues": "https://github.com/hyperf/watcher/issues",
  7217. "source": "https://github.com/hyperf/watcher/tree/v3.1.54"
  7218. },
  7219. "funding": [
  7220. {
  7221. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7222. "type": "custom"
  7223. },
  7224. {
  7225. "url": "https://opencollective.com/hyperf",
  7226. "type": "open_collective"
  7227. }
  7228. ],
  7229. "time": "2025-04-26T13:02:01+00:00"
  7230. },
  7231. {
  7232. "name": "mockery/mockery",
  7233. "version": "1.6.12",
  7234. "source": {
  7235. "type": "git",
  7236. "url": "https://github.com/mockery/mockery.git",
  7237. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7238. },
  7239. "dist": {
  7240. "type": "zip",
  7241. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7242. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7243. "shasum": ""
  7244. },
  7245. "require": {
  7246. "hamcrest/hamcrest-php": "^2.0.1",
  7247. "lib-pcre": ">=7.0",
  7248. "php": ">=7.3"
  7249. },
  7250. "conflict": {
  7251. "phpunit/phpunit": "<8.0"
  7252. },
  7253. "require-dev": {
  7254. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7255. "symplify/easy-coding-standard": "^12.1.14"
  7256. },
  7257. "type": "library",
  7258. "autoload": {
  7259. "files": [
  7260. "library/helpers.php",
  7261. "library/Mockery.php"
  7262. ],
  7263. "psr-4": {
  7264. "Mockery\\": "library/Mockery"
  7265. }
  7266. },
  7267. "notification-url": "https://packagist.org/downloads/",
  7268. "license": [
  7269. "BSD-3-Clause"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "Pádraic Brady",
  7274. "email": "padraic.brady@gmail.com",
  7275. "homepage": "https://github.com/padraic",
  7276. "role": "Author"
  7277. },
  7278. {
  7279. "name": "Dave Marshall",
  7280. "email": "dave.marshall@atstsolutions.co.uk",
  7281. "homepage": "https://davedevelopment.co.uk",
  7282. "role": "Developer"
  7283. },
  7284. {
  7285. "name": "Nathanael Esayeas",
  7286. "email": "nathanael.esayeas@protonmail.com",
  7287. "homepage": "https://github.com/ghostwriter",
  7288. "role": "Lead Developer"
  7289. }
  7290. ],
  7291. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7292. "homepage": "https://github.com/mockery/mockery",
  7293. "keywords": [
  7294. "BDD",
  7295. "TDD",
  7296. "library",
  7297. "mock",
  7298. "mock objects",
  7299. "mockery",
  7300. "stub",
  7301. "test",
  7302. "test double",
  7303. "testing"
  7304. ],
  7305. "support": {
  7306. "docs": "https://docs.mockery.io/",
  7307. "issues": "https://github.com/mockery/mockery/issues",
  7308. "rss": "https://github.com/mockery/mockery/releases.atom",
  7309. "security": "https://github.com/mockery/mockery/security/advisories",
  7310. "source": "https://github.com/mockery/mockery"
  7311. },
  7312. "time": "2024-05-16T03:13:13+00:00"
  7313. },
  7314. {
  7315. "name": "myclabs/deep-copy",
  7316. "version": "1.13.1",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/myclabs/DeepCopy.git",
  7320. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
  7325. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
  7326. "shasum": ""
  7327. },
  7328. "require": {
  7329. "php": "^7.1 || ^8.0"
  7330. },
  7331. "conflict": {
  7332. "doctrine/collections": "<1.6.8",
  7333. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7334. },
  7335. "require-dev": {
  7336. "doctrine/collections": "^1.6.8",
  7337. "doctrine/common": "^2.13.3 || ^3.2.2",
  7338. "phpspec/prophecy": "^1.10",
  7339. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7340. },
  7341. "type": "library",
  7342. "autoload": {
  7343. "files": [
  7344. "src/DeepCopy/deep_copy.php"
  7345. ],
  7346. "psr-4": {
  7347. "DeepCopy\\": "src/DeepCopy/"
  7348. }
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "MIT"
  7353. ],
  7354. "description": "Create deep copies (clones) of your objects",
  7355. "keywords": [
  7356. "clone",
  7357. "copy",
  7358. "duplicate",
  7359. "object",
  7360. "object graph"
  7361. ],
  7362. "support": {
  7363. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7364. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
  7365. },
  7366. "funding": [
  7367. {
  7368. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7369. "type": "tidelift"
  7370. }
  7371. ],
  7372. "time": "2025-04-29T12:36:36+00:00"
  7373. },
  7374. {
  7375. "name": "phar-io/manifest",
  7376. "version": "2.0.4",
  7377. "source": {
  7378. "type": "git",
  7379. "url": "https://github.com/phar-io/manifest.git",
  7380. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7381. },
  7382. "dist": {
  7383. "type": "zip",
  7384. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7385. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7386. "shasum": ""
  7387. },
  7388. "require": {
  7389. "ext-dom": "*",
  7390. "ext-libxml": "*",
  7391. "ext-phar": "*",
  7392. "ext-xmlwriter": "*",
  7393. "phar-io/version": "^3.0.1",
  7394. "php": "^7.2 || ^8.0"
  7395. },
  7396. "type": "library",
  7397. "extra": {
  7398. "branch-alias": {
  7399. "dev-master": "2.0.x-dev"
  7400. }
  7401. },
  7402. "autoload": {
  7403. "classmap": [
  7404. "src/"
  7405. ]
  7406. },
  7407. "notification-url": "https://packagist.org/downloads/",
  7408. "license": [
  7409. "BSD-3-Clause"
  7410. ],
  7411. "authors": [
  7412. {
  7413. "name": "Arne Blankerts",
  7414. "email": "arne@blankerts.de",
  7415. "role": "Developer"
  7416. },
  7417. {
  7418. "name": "Sebastian Heuer",
  7419. "email": "sebastian@phpeople.de",
  7420. "role": "Developer"
  7421. },
  7422. {
  7423. "name": "Sebastian Bergmann",
  7424. "email": "sebastian@phpunit.de",
  7425. "role": "Developer"
  7426. }
  7427. ],
  7428. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7429. "support": {
  7430. "issues": "https://github.com/phar-io/manifest/issues",
  7431. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7432. },
  7433. "funding": [
  7434. {
  7435. "url": "https://github.com/theseer",
  7436. "type": "github"
  7437. }
  7438. ],
  7439. "time": "2024-03-03T12:33:53+00:00"
  7440. },
  7441. {
  7442. "name": "phar-io/version",
  7443. "version": "3.2.1",
  7444. "source": {
  7445. "type": "git",
  7446. "url": "https://github.com/phar-io/version.git",
  7447. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7448. },
  7449. "dist": {
  7450. "type": "zip",
  7451. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7452. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7453. "shasum": ""
  7454. },
  7455. "require": {
  7456. "php": "^7.2 || ^8.0"
  7457. },
  7458. "type": "library",
  7459. "autoload": {
  7460. "classmap": [
  7461. "src/"
  7462. ]
  7463. },
  7464. "notification-url": "https://packagist.org/downloads/",
  7465. "license": [
  7466. "BSD-3-Clause"
  7467. ],
  7468. "authors": [
  7469. {
  7470. "name": "Arne Blankerts",
  7471. "email": "arne@blankerts.de",
  7472. "role": "Developer"
  7473. },
  7474. {
  7475. "name": "Sebastian Heuer",
  7476. "email": "sebastian@phpeople.de",
  7477. "role": "Developer"
  7478. },
  7479. {
  7480. "name": "Sebastian Bergmann",
  7481. "email": "sebastian@phpunit.de",
  7482. "role": "Developer"
  7483. }
  7484. ],
  7485. "description": "Library for handling version information and constraints",
  7486. "support": {
  7487. "issues": "https://github.com/phar-io/version/issues",
  7488. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7489. },
  7490. "time": "2022-02-21T01:04:05+00:00"
  7491. },
  7492. {
  7493. "name": "phpstan/phpstan",
  7494. "version": "1.12.27",
  7495. "source": {
  7496. "type": "git",
  7497. "url": "https://github.com/phpstan/phpstan.git",
  7498. "reference": "3a6e423c076ab39dfedc307e2ac627ef579db162"
  7499. },
  7500. "dist": {
  7501. "type": "zip",
  7502. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/3a6e423c076ab39dfedc307e2ac627ef579db162",
  7503. "reference": "3a6e423c076ab39dfedc307e2ac627ef579db162",
  7504. "shasum": ""
  7505. },
  7506. "require": {
  7507. "php": "^7.2|^8.0"
  7508. },
  7509. "conflict": {
  7510. "phpstan/phpstan-shim": "*"
  7511. },
  7512. "bin": [
  7513. "phpstan",
  7514. "phpstan.phar"
  7515. ],
  7516. "type": "library",
  7517. "autoload": {
  7518. "files": [
  7519. "bootstrap.php"
  7520. ]
  7521. },
  7522. "notification-url": "https://packagist.org/downloads/",
  7523. "license": [
  7524. "MIT"
  7525. ],
  7526. "description": "PHPStan - PHP Static Analysis Tool",
  7527. "keywords": [
  7528. "dev",
  7529. "static analysis"
  7530. ],
  7531. "support": {
  7532. "docs": "https://phpstan.org/user-guide/getting-started",
  7533. "forum": "https://github.com/phpstan/phpstan/discussions",
  7534. "issues": "https://github.com/phpstan/phpstan/issues",
  7535. "security": "https://github.com/phpstan/phpstan/security/policy",
  7536. "source": "https://github.com/phpstan/phpstan-src"
  7537. },
  7538. "funding": [
  7539. {
  7540. "url": "https://github.com/ondrejmirtes",
  7541. "type": "github"
  7542. },
  7543. {
  7544. "url": "https://github.com/phpstan",
  7545. "type": "github"
  7546. }
  7547. ],
  7548. "time": "2025-05-21T20:51:45+00:00"
  7549. },
  7550. {
  7551. "name": "phpunit/php-code-coverage",
  7552. "version": "10.1.16",
  7553. "source": {
  7554. "type": "git",
  7555. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7556. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  7557. },
  7558. "dist": {
  7559. "type": "zip",
  7560. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  7561. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  7562. "shasum": ""
  7563. },
  7564. "require": {
  7565. "ext-dom": "*",
  7566. "ext-libxml": "*",
  7567. "ext-xmlwriter": "*",
  7568. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  7569. "php": ">=8.1",
  7570. "phpunit/php-file-iterator": "^4.1.0",
  7571. "phpunit/php-text-template": "^3.0.1",
  7572. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  7573. "sebastian/complexity": "^3.2.0",
  7574. "sebastian/environment": "^6.1.0",
  7575. "sebastian/lines-of-code": "^2.0.2",
  7576. "sebastian/version": "^4.0.1",
  7577. "theseer/tokenizer": "^1.2.3"
  7578. },
  7579. "require-dev": {
  7580. "phpunit/phpunit": "^10.1"
  7581. },
  7582. "suggest": {
  7583. "ext-pcov": "PHP extension that provides line coverage",
  7584. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7585. },
  7586. "type": "library",
  7587. "extra": {
  7588. "branch-alias": {
  7589. "dev-main": "10.1.x-dev"
  7590. }
  7591. },
  7592. "autoload": {
  7593. "classmap": [
  7594. "src/"
  7595. ]
  7596. },
  7597. "notification-url": "https://packagist.org/downloads/",
  7598. "license": [
  7599. "BSD-3-Clause"
  7600. ],
  7601. "authors": [
  7602. {
  7603. "name": "Sebastian Bergmann",
  7604. "email": "sebastian@phpunit.de",
  7605. "role": "lead"
  7606. }
  7607. ],
  7608. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7609. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7610. "keywords": [
  7611. "coverage",
  7612. "testing",
  7613. "xunit"
  7614. ],
  7615. "support": {
  7616. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7617. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7618. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  7619. },
  7620. "funding": [
  7621. {
  7622. "url": "https://github.com/sebastianbergmann",
  7623. "type": "github"
  7624. }
  7625. ],
  7626. "time": "2024-08-22T04:31:57+00:00"
  7627. },
  7628. {
  7629. "name": "phpunit/php-file-iterator",
  7630. "version": "4.1.0",
  7631. "source": {
  7632. "type": "git",
  7633. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7634. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7635. },
  7636. "dist": {
  7637. "type": "zip",
  7638. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7639. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7640. "shasum": ""
  7641. },
  7642. "require": {
  7643. "php": ">=8.1"
  7644. },
  7645. "require-dev": {
  7646. "phpunit/phpunit": "^10.0"
  7647. },
  7648. "type": "library",
  7649. "extra": {
  7650. "branch-alias": {
  7651. "dev-main": "4.0-dev"
  7652. }
  7653. },
  7654. "autoload": {
  7655. "classmap": [
  7656. "src/"
  7657. ]
  7658. },
  7659. "notification-url": "https://packagist.org/downloads/",
  7660. "license": [
  7661. "BSD-3-Clause"
  7662. ],
  7663. "authors": [
  7664. {
  7665. "name": "Sebastian Bergmann",
  7666. "email": "sebastian@phpunit.de",
  7667. "role": "lead"
  7668. }
  7669. ],
  7670. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7671. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7672. "keywords": [
  7673. "filesystem",
  7674. "iterator"
  7675. ],
  7676. "support": {
  7677. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7678. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7679. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7680. },
  7681. "funding": [
  7682. {
  7683. "url": "https://github.com/sebastianbergmann",
  7684. "type": "github"
  7685. }
  7686. ],
  7687. "time": "2023-08-31T06:24:48+00:00"
  7688. },
  7689. {
  7690. "name": "phpunit/php-invoker",
  7691. "version": "4.0.0",
  7692. "source": {
  7693. "type": "git",
  7694. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7695. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7696. },
  7697. "dist": {
  7698. "type": "zip",
  7699. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7700. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7701. "shasum": ""
  7702. },
  7703. "require": {
  7704. "php": ">=8.1"
  7705. },
  7706. "require-dev": {
  7707. "ext-pcntl": "*",
  7708. "phpunit/phpunit": "^10.0"
  7709. },
  7710. "suggest": {
  7711. "ext-pcntl": "*"
  7712. },
  7713. "type": "library",
  7714. "extra": {
  7715. "branch-alias": {
  7716. "dev-main": "4.0-dev"
  7717. }
  7718. },
  7719. "autoload": {
  7720. "classmap": [
  7721. "src/"
  7722. ]
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "BSD-3-Clause"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Sebastian Bergmann",
  7731. "email": "sebastian@phpunit.de",
  7732. "role": "lead"
  7733. }
  7734. ],
  7735. "description": "Invoke callables with a timeout",
  7736. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7737. "keywords": [
  7738. "process"
  7739. ],
  7740. "support": {
  7741. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7742. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7743. },
  7744. "funding": [
  7745. {
  7746. "url": "https://github.com/sebastianbergmann",
  7747. "type": "github"
  7748. }
  7749. ],
  7750. "time": "2023-02-03T06:56:09+00:00"
  7751. },
  7752. {
  7753. "name": "phpunit/php-text-template",
  7754. "version": "3.0.1",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7758. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7763. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "php": ">=8.1"
  7768. },
  7769. "require-dev": {
  7770. "phpunit/phpunit": "^10.0"
  7771. },
  7772. "type": "library",
  7773. "extra": {
  7774. "branch-alias": {
  7775. "dev-main": "3.0-dev"
  7776. }
  7777. },
  7778. "autoload": {
  7779. "classmap": [
  7780. "src/"
  7781. ]
  7782. },
  7783. "notification-url": "https://packagist.org/downloads/",
  7784. "license": [
  7785. "BSD-3-Clause"
  7786. ],
  7787. "authors": [
  7788. {
  7789. "name": "Sebastian Bergmann",
  7790. "email": "sebastian@phpunit.de",
  7791. "role": "lead"
  7792. }
  7793. ],
  7794. "description": "Simple template engine.",
  7795. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7796. "keywords": [
  7797. "template"
  7798. ],
  7799. "support": {
  7800. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7801. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7802. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  7803. },
  7804. "funding": [
  7805. {
  7806. "url": "https://github.com/sebastianbergmann",
  7807. "type": "github"
  7808. }
  7809. ],
  7810. "time": "2023-08-31T14:07:24+00:00"
  7811. },
  7812. {
  7813. "name": "phpunit/php-timer",
  7814. "version": "6.0.0",
  7815. "source": {
  7816. "type": "git",
  7817. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7818. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  7819. },
  7820. "dist": {
  7821. "type": "zip",
  7822. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7823. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7824. "shasum": ""
  7825. },
  7826. "require": {
  7827. "php": ">=8.1"
  7828. },
  7829. "require-dev": {
  7830. "phpunit/phpunit": "^10.0"
  7831. },
  7832. "type": "library",
  7833. "extra": {
  7834. "branch-alias": {
  7835. "dev-main": "6.0-dev"
  7836. }
  7837. },
  7838. "autoload": {
  7839. "classmap": [
  7840. "src/"
  7841. ]
  7842. },
  7843. "notification-url": "https://packagist.org/downloads/",
  7844. "license": [
  7845. "BSD-3-Clause"
  7846. ],
  7847. "authors": [
  7848. {
  7849. "name": "Sebastian Bergmann",
  7850. "email": "sebastian@phpunit.de",
  7851. "role": "lead"
  7852. }
  7853. ],
  7854. "description": "Utility class for timing",
  7855. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7856. "keywords": [
  7857. "timer"
  7858. ],
  7859. "support": {
  7860. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7861. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  7862. },
  7863. "funding": [
  7864. {
  7865. "url": "https://github.com/sebastianbergmann",
  7866. "type": "github"
  7867. }
  7868. ],
  7869. "time": "2023-02-03T06:57:52+00:00"
  7870. },
  7871. {
  7872. "name": "phpunit/phpunit",
  7873. "version": "10.5.46",
  7874. "source": {
  7875. "type": "git",
  7876. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7877. "reference": "8080be387a5be380dda48c6f41cee4a13aadab3d"
  7878. },
  7879. "dist": {
  7880. "type": "zip",
  7881. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8080be387a5be380dda48c6f41cee4a13aadab3d",
  7882. "reference": "8080be387a5be380dda48c6f41cee4a13aadab3d",
  7883. "shasum": ""
  7884. },
  7885. "require": {
  7886. "ext-dom": "*",
  7887. "ext-json": "*",
  7888. "ext-libxml": "*",
  7889. "ext-mbstring": "*",
  7890. "ext-xml": "*",
  7891. "ext-xmlwriter": "*",
  7892. "myclabs/deep-copy": "^1.13.1",
  7893. "phar-io/manifest": "^2.0.4",
  7894. "phar-io/version": "^3.2.1",
  7895. "php": ">=8.1",
  7896. "phpunit/php-code-coverage": "^10.1.16",
  7897. "phpunit/php-file-iterator": "^4.1.0",
  7898. "phpunit/php-invoker": "^4.0.0",
  7899. "phpunit/php-text-template": "^3.0.1",
  7900. "phpunit/php-timer": "^6.0.0",
  7901. "sebastian/cli-parser": "^2.0.1",
  7902. "sebastian/code-unit": "^2.0.0",
  7903. "sebastian/comparator": "^5.0.3",
  7904. "sebastian/diff": "^5.1.1",
  7905. "sebastian/environment": "^6.1.0",
  7906. "sebastian/exporter": "^5.1.2",
  7907. "sebastian/global-state": "^6.0.2",
  7908. "sebastian/object-enumerator": "^5.0.0",
  7909. "sebastian/recursion-context": "^5.0.0",
  7910. "sebastian/type": "^4.0.0",
  7911. "sebastian/version": "^4.0.1"
  7912. },
  7913. "suggest": {
  7914. "ext-soap": "To be able to generate mocks based on WSDL files"
  7915. },
  7916. "bin": [
  7917. "phpunit"
  7918. ],
  7919. "type": "library",
  7920. "extra": {
  7921. "branch-alias": {
  7922. "dev-main": "10.5-dev"
  7923. }
  7924. },
  7925. "autoload": {
  7926. "files": [
  7927. "src/Framework/Assert/Functions.php"
  7928. ],
  7929. "classmap": [
  7930. "src/"
  7931. ]
  7932. },
  7933. "notification-url": "https://packagist.org/downloads/",
  7934. "license": [
  7935. "BSD-3-Clause"
  7936. ],
  7937. "authors": [
  7938. {
  7939. "name": "Sebastian Bergmann",
  7940. "email": "sebastian@phpunit.de",
  7941. "role": "lead"
  7942. }
  7943. ],
  7944. "description": "The PHP Unit Testing framework.",
  7945. "homepage": "https://phpunit.de/",
  7946. "keywords": [
  7947. "phpunit",
  7948. "testing",
  7949. "xunit"
  7950. ],
  7951. "support": {
  7952. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7953. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  7954. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.46"
  7955. },
  7956. "funding": [
  7957. {
  7958. "url": "https://phpunit.de/sponsors.html",
  7959. "type": "custom"
  7960. },
  7961. {
  7962. "url": "https://github.com/sebastianbergmann",
  7963. "type": "github"
  7964. },
  7965. {
  7966. "url": "https://liberapay.com/sebastianbergmann",
  7967. "type": "liberapay"
  7968. },
  7969. {
  7970. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  7971. "type": "thanks_dev"
  7972. },
  7973. {
  7974. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  7975. "type": "tidelift"
  7976. }
  7977. ],
  7978. "time": "2025-05-02T06:46:24+00:00"
  7979. },
  7980. {
  7981. "name": "react/cache",
  7982. "version": "v1.2.0",
  7983. "source": {
  7984. "type": "git",
  7985. "url": "https://github.com/reactphp/cache.git",
  7986. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  7987. },
  7988. "dist": {
  7989. "type": "zip",
  7990. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  7991. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  7992. "shasum": ""
  7993. },
  7994. "require": {
  7995. "php": ">=5.3.0",
  7996. "react/promise": "^3.0 || ^2.0 || ^1.1"
  7997. },
  7998. "require-dev": {
  7999. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8000. },
  8001. "type": "library",
  8002. "autoload": {
  8003. "psr-4": {
  8004. "React\\Cache\\": "src/"
  8005. }
  8006. },
  8007. "notification-url": "https://packagist.org/downloads/",
  8008. "license": [
  8009. "MIT"
  8010. ],
  8011. "authors": [
  8012. {
  8013. "name": "Christian Lück",
  8014. "email": "christian@clue.engineering",
  8015. "homepage": "https://clue.engineering/"
  8016. },
  8017. {
  8018. "name": "Cees-Jan Kiewiet",
  8019. "email": "reactphp@ceesjankiewiet.nl",
  8020. "homepage": "https://wyrihaximus.net/"
  8021. },
  8022. {
  8023. "name": "Jan Sorgalla",
  8024. "email": "jsorgalla@gmail.com",
  8025. "homepage": "https://sorgalla.com/"
  8026. },
  8027. {
  8028. "name": "Chris Boden",
  8029. "email": "cboden@gmail.com",
  8030. "homepage": "https://cboden.dev/"
  8031. }
  8032. ],
  8033. "description": "Async, Promise-based cache interface for ReactPHP",
  8034. "keywords": [
  8035. "cache",
  8036. "caching",
  8037. "promise",
  8038. "reactphp"
  8039. ],
  8040. "support": {
  8041. "issues": "https://github.com/reactphp/cache/issues",
  8042. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8043. },
  8044. "funding": [
  8045. {
  8046. "url": "https://opencollective.com/reactphp",
  8047. "type": "open_collective"
  8048. }
  8049. ],
  8050. "time": "2022-11-30T15:59:55+00:00"
  8051. },
  8052. {
  8053. "name": "react/child-process",
  8054. "version": "v0.6.6",
  8055. "source": {
  8056. "type": "git",
  8057. "url": "https://github.com/reactphp/child-process.git",
  8058. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  8059. },
  8060. "dist": {
  8061. "type": "zip",
  8062. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  8063. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  8064. "shasum": ""
  8065. },
  8066. "require": {
  8067. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8068. "php": ">=5.3.0",
  8069. "react/event-loop": "^1.2",
  8070. "react/stream": "^1.4"
  8071. },
  8072. "require-dev": {
  8073. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8074. "react/socket": "^1.16",
  8075. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8076. },
  8077. "type": "library",
  8078. "autoload": {
  8079. "psr-4": {
  8080. "React\\ChildProcess\\": "src/"
  8081. }
  8082. },
  8083. "notification-url": "https://packagist.org/downloads/",
  8084. "license": [
  8085. "MIT"
  8086. ],
  8087. "authors": [
  8088. {
  8089. "name": "Christian Lück",
  8090. "email": "christian@clue.engineering",
  8091. "homepage": "https://clue.engineering/"
  8092. },
  8093. {
  8094. "name": "Cees-Jan Kiewiet",
  8095. "email": "reactphp@ceesjankiewiet.nl",
  8096. "homepage": "https://wyrihaximus.net/"
  8097. },
  8098. {
  8099. "name": "Jan Sorgalla",
  8100. "email": "jsorgalla@gmail.com",
  8101. "homepage": "https://sorgalla.com/"
  8102. },
  8103. {
  8104. "name": "Chris Boden",
  8105. "email": "cboden@gmail.com",
  8106. "homepage": "https://cboden.dev/"
  8107. }
  8108. ],
  8109. "description": "Event-driven library for executing child processes with ReactPHP.",
  8110. "keywords": [
  8111. "event-driven",
  8112. "process",
  8113. "reactphp"
  8114. ],
  8115. "support": {
  8116. "issues": "https://github.com/reactphp/child-process/issues",
  8117. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  8118. },
  8119. "funding": [
  8120. {
  8121. "url": "https://opencollective.com/reactphp",
  8122. "type": "open_collective"
  8123. }
  8124. ],
  8125. "time": "2025-01-01T16:37:48+00:00"
  8126. },
  8127. {
  8128. "name": "react/dns",
  8129. "version": "v1.13.0",
  8130. "source": {
  8131. "type": "git",
  8132. "url": "https://github.com/reactphp/dns.git",
  8133. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8134. },
  8135. "dist": {
  8136. "type": "zip",
  8137. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8138. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8139. "shasum": ""
  8140. },
  8141. "require": {
  8142. "php": ">=5.3.0",
  8143. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8144. "react/event-loop": "^1.2",
  8145. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8146. },
  8147. "require-dev": {
  8148. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8149. "react/async": "^4.3 || ^3 || ^2",
  8150. "react/promise-timer": "^1.11"
  8151. },
  8152. "type": "library",
  8153. "autoload": {
  8154. "psr-4": {
  8155. "React\\Dns\\": "src/"
  8156. }
  8157. },
  8158. "notification-url": "https://packagist.org/downloads/",
  8159. "license": [
  8160. "MIT"
  8161. ],
  8162. "authors": [
  8163. {
  8164. "name": "Christian Lück",
  8165. "email": "christian@clue.engineering",
  8166. "homepage": "https://clue.engineering/"
  8167. },
  8168. {
  8169. "name": "Cees-Jan Kiewiet",
  8170. "email": "reactphp@ceesjankiewiet.nl",
  8171. "homepage": "https://wyrihaximus.net/"
  8172. },
  8173. {
  8174. "name": "Jan Sorgalla",
  8175. "email": "jsorgalla@gmail.com",
  8176. "homepage": "https://sorgalla.com/"
  8177. },
  8178. {
  8179. "name": "Chris Boden",
  8180. "email": "cboden@gmail.com",
  8181. "homepage": "https://cboden.dev/"
  8182. }
  8183. ],
  8184. "description": "Async DNS resolver for ReactPHP",
  8185. "keywords": [
  8186. "async",
  8187. "dns",
  8188. "dns-resolver",
  8189. "reactphp"
  8190. ],
  8191. "support": {
  8192. "issues": "https://github.com/reactphp/dns/issues",
  8193. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  8194. },
  8195. "funding": [
  8196. {
  8197. "url": "https://opencollective.com/reactphp",
  8198. "type": "open_collective"
  8199. }
  8200. ],
  8201. "time": "2024-06-13T14:18:03+00:00"
  8202. },
  8203. {
  8204. "name": "react/event-loop",
  8205. "version": "v1.5.0",
  8206. "source": {
  8207. "type": "git",
  8208. "url": "https://github.com/reactphp/event-loop.git",
  8209. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8210. },
  8211. "dist": {
  8212. "type": "zip",
  8213. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8214. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8215. "shasum": ""
  8216. },
  8217. "require": {
  8218. "php": ">=5.3.0"
  8219. },
  8220. "require-dev": {
  8221. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8222. },
  8223. "suggest": {
  8224. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8225. },
  8226. "type": "library",
  8227. "autoload": {
  8228. "psr-4": {
  8229. "React\\EventLoop\\": "src/"
  8230. }
  8231. },
  8232. "notification-url": "https://packagist.org/downloads/",
  8233. "license": [
  8234. "MIT"
  8235. ],
  8236. "authors": [
  8237. {
  8238. "name": "Christian Lück",
  8239. "email": "christian@clue.engineering",
  8240. "homepage": "https://clue.engineering/"
  8241. },
  8242. {
  8243. "name": "Cees-Jan Kiewiet",
  8244. "email": "reactphp@ceesjankiewiet.nl",
  8245. "homepage": "https://wyrihaximus.net/"
  8246. },
  8247. {
  8248. "name": "Jan Sorgalla",
  8249. "email": "jsorgalla@gmail.com",
  8250. "homepage": "https://sorgalla.com/"
  8251. },
  8252. {
  8253. "name": "Chris Boden",
  8254. "email": "cboden@gmail.com",
  8255. "homepage": "https://cboden.dev/"
  8256. }
  8257. ],
  8258. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8259. "keywords": [
  8260. "asynchronous",
  8261. "event-loop"
  8262. ],
  8263. "support": {
  8264. "issues": "https://github.com/reactphp/event-loop/issues",
  8265. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8266. },
  8267. "funding": [
  8268. {
  8269. "url": "https://opencollective.com/reactphp",
  8270. "type": "open_collective"
  8271. }
  8272. ],
  8273. "time": "2023-11-13T13:48:05+00:00"
  8274. },
  8275. {
  8276. "name": "react/promise",
  8277. "version": "v3.2.0",
  8278. "source": {
  8279. "type": "git",
  8280. "url": "https://github.com/reactphp/promise.git",
  8281. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8282. },
  8283. "dist": {
  8284. "type": "zip",
  8285. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8286. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8287. "shasum": ""
  8288. },
  8289. "require": {
  8290. "php": ">=7.1.0"
  8291. },
  8292. "require-dev": {
  8293. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8294. "phpunit/phpunit": "^9.6 || ^7.5"
  8295. },
  8296. "type": "library",
  8297. "autoload": {
  8298. "files": [
  8299. "src/functions_include.php"
  8300. ],
  8301. "psr-4": {
  8302. "React\\Promise\\": "src/"
  8303. }
  8304. },
  8305. "notification-url": "https://packagist.org/downloads/",
  8306. "license": [
  8307. "MIT"
  8308. ],
  8309. "authors": [
  8310. {
  8311. "name": "Jan Sorgalla",
  8312. "email": "jsorgalla@gmail.com",
  8313. "homepage": "https://sorgalla.com/"
  8314. },
  8315. {
  8316. "name": "Christian Lück",
  8317. "email": "christian@clue.engineering",
  8318. "homepage": "https://clue.engineering/"
  8319. },
  8320. {
  8321. "name": "Cees-Jan Kiewiet",
  8322. "email": "reactphp@ceesjankiewiet.nl",
  8323. "homepage": "https://wyrihaximus.net/"
  8324. },
  8325. {
  8326. "name": "Chris Boden",
  8327. "email": "cboden@gmail.com",
  8328. "homepage": "https://cboden.dev/"
  8329. }
  8330. ],
  8331. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8332. "keywords": [
  8333. "promise",
  8334. "promises"
  8335. ],
  8336. "support": {
  8337. "issues": "https://github.com/reactphp/promise/issues",
  8338. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8339. },
  8340. "funding": [
  8341. {
  8342. "url": "https://opencollective.com/reactphp",
  8343. "type": "open_collective"
  8344. }
  8345. ],
  8346. "time": "2024-05-24T10:39:05+00:00"
  8347. },
  8348. {
  8349. "name": "react/socket",
  8350. "version": "v1.16.0",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/reactphp/socket.git",
  8354. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8359. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8360. "shasum": ""
  8361. },
  8362. "require": {
  8363. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8364. "php": ">=5.3.0",
  8365. "react/dns": "^1.13",
  8366. "react/event-loop": "^1.2",
  8367. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  8368. "react/stream": "^1.4"
  8369. },
  8370. "require-dev": {
  8371. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8372. "react/async": "^4.3 || ^3.3 || ^2",
  8373. "react/promise-stream": "^1.4",
  8374. "react/promise-timer": "^1.11"
  8375. },
  8376. "type": "library",
  8377. "autoload": {
  8378. "psr-4": {
  8379. "React\\Socket\\": "src/"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "MIT"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "Christian Lück",
  8389. "email": "christian@clue.engineering",
  8390. "homepage": "https://clue.engineering/"
  8391. },
  8392. {
  8393. "name": "Cees-Jan Kiewiet",
  8394. "email": "reactphp@ceesjankiewiet.nl",
  8395. "homepage": "https://wyrihaximus.net/"
  8396. },
  8397. {
  8398. "name": "Jan Sorgalla",
  8399. "email": "jsorgalla@gmail.com",
  8400. "homepage": "https://sorgalla.com/"
  8401. },
  8402. {
  8403. "name": "Chris Boden",
  8404. "email": "cboden@gmail.com",
  8405. "homepage": "https://cboden.dev/"
  8406. }
  8407. ],
  8408. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8409. "keywords": [
  8410. "Connection",
  8411. "Socket",
  8412. "async",
  8413. "reactphp",
  8414. "stream"
  8415. ],
  8416. "support": {
  8417. "issues": "https://github.com/reactphp/socket/issues",
  8418. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  8419. },
  8420. "funding": [
  8421. {
  8422. "url": "https://opencollective.com/reactphp",
  8423. "type": "open_collective"
  8424. }
  8425. ],
  8426. "time": "2024-07-26T10:38:09+00:00"
  8427. },
  8428. {
  8429. "name": "react/stream",
  8430. "version": "v1.4.0",
  8431. "source": {
  8432. "type": "git",
  8433. "url": "https://github.com/reactphp/stream.git",
  8434. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  8435. },
  8436. "dist": {
  8437. "type": "zip",
  8438. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8439. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8440. "shasum": ""
  8441. },
  8442. "require": {
  8443. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8444. "php": ">=5.3.8",
  8445. "react/event-loop": "^1.2"
  8446. },
  8447. "require-dev": {
  8448. "clue/stream-filter": "~1.2",
  8449. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8450. },
  8451. "type": "library",
  8452. "autoload": {
  8453. "psr-4": {
  8454. "React\\Stream\\": "src/"
  8455. }
  8456. },
  8457. "notification-url": "https://packagist.org/downloads/",
  8458. "license": [
  8459. "MIT"
  8460. ],
  8461. "authors": [
  8462. {
  8463. "name": "Christian Lück",
  8464. "email": "christian@clue.engineering",
  8465. "homepage": "https://clue.engineering/"
  8466. },
  8467. {
  8468. "name": "Cees-Jan Kiewiet",
  8469. "email": "reactphp@ceesjankiewiet.nl",
  8470. "homepage": "https://wyrihaximus.net/"
  8471. },
  8472. {
  8473. "name": "Jan Sorgalla",
  8474. "email": "jsorgalla@gmail.com",
  8475. "homepage": "https://sorgalla.com/"
  8476. },
  8477. {
  8478. "name": "Chris Boden",
  8479. "email": "cboden@gmail.com",
  8480. "homepage": "https://cboden.dev/"
  8481. }
  8482. ],
  8483. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8484. "keywords": [
  8485. "event-driven",
  8486. "io",
  8487. "non-blocking",
  8488. "pipe",
  8489. "reactphp",
  8490. "readable",
  8491. "stream",
  8492. "writable"
  8493. ],
  8494. "support": {
  8495. "issues": "https://github.com/reactphp/stream/issues",
  8496. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  8497. },
  8498. "funding": [
  8499. {
  8500. "url": "https://opencollective.com/reactphp",
  8501. "type": "open_collective"
  8502. }
  8503. ],
  8504. "time": "2024-06-11T12:45:25+00:00"
  8505. },
  8506. {
  8507. "name": "sebastian/cli-parser",
  8508. "version": "2.0.1",
  8509. "source": {
  8510. "type": "git",
  8511. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8512. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8513. },
  8514. "dist": {
  8515. "type": "zip",
  8516. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8517. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8518. "shasum": ""
  8519. },
  8520. "require": {
  8521. "php": ">=8.1"
  8522. },
  8523. "require-dev": {
  8524. "phpunit/phpunit": "^10.0"
  8525. },
  8526. "type": "library",
  8527. "extra": {
  8528. "branch-alias": {
  8529. "dev-main": "2.0-dev"
  8530. }
  8531. },
  8532. "autoload": {
  8533. "classmap": [
  8534. "src/"
  8535. ]
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "BSD-3-Clause"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Sebastian Bergmann",
  8544. "email": "sebastian@phpunit.de",
  8545. "role": "lead"
  8546. }
  8547. ],
  8548. "description": "Library for parsing CLI options",
  8549. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8550. "support": {
  8551. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8552. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8553. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8554. },
  8555. "funding": [
  8556. {
  8557. "url": "https://github.com/sebastianbergmann",
  8558. "type": "github"
  8559. }
  8560. ],
  8561. "time": "2024-03-02T07:12:49+00:00"
  8562. },
  8563. {
  8564. "name": "sebastian/code-unit",
  8565. "version": "2.0.0",
  8566. "source": {
  8567. "type": "git",
  8568. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8569. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8570. },
  8571. "dist": {
  8572. "type": "zip",
  8573. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8574. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8575. "shasum": ""
  8576. },
  8577. "require": {
  8578. "php": ">=8.1"
  8579. },
  8580. "require-dev": {
  8581. "phpunit/phpunit": "^10.0"
  8582. },
  8583. "type": "library",
  8584. "extra": {
  8585. "branch-alias": {
  8586. "dev-main": "2.0-dev"
  8587. }
  8588. },
  8589. "autoload": {
  8590. "classmap": [
  8591. "src/"
  8592. ]
  8593. },
  8594. "notification-url": "https://packagist.org/downloads/",
  8595. "license": [
  8596. "BSD-3-Clause"
  8597. ],
  8598. "authors": [
  8599. {
  8600. "name": "Sebastian Bergmann",
  8601. "email": "sebastian@phpunit.de",
  8602. "role": "lead"
  8603. }
  8604. ],
  8605. "description": "Collection of value objects that represent the PHP code units",
  8606. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8607. "support": {
  8608. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8609. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8610. },
  8611. "funding": [
  8612. {
  8613. "url": "https://github.com/sebastianbergmann",
  8614. "type": "github"
  8615. }
  8616. ],
  8617. "time": "2023-02-03T06:58:43+00:00"
  8618. },
  8619. {
  8620. "name": "sebastian/code-unit-reverse-lookup",
  8621. "version": "3.0.0",
  8622. "source": {
  8623. "type": "git",
  8624. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8625. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8626. },
  8627. "dist": {
  8628. "type": "zip",
  8629. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8630. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8631. "shasum": ""
  8632. },
  8633. "require": {
  8634. "php": ">=8.1"
  8635. },
  8636. "require-dev": {
  8637. "phpunit/phpunit": "^10.0"
  8638. },
  8639. "type": "library",
  8640. "extra": {
  8641. "branch-alias": {
  8642. "dev-main": "3.0-dev"
  8643. }
  8644. },
  8645. "autoload": {
  8646. "classmap": [
  8647. "src/"
  8648. ]
  8649. },
  8650. "notification-url": "https://packagist.org/downloads/",
  8651. "license": [
  8652. "BSD-3-Clause"
  8653. ],
  8654. "authors": [
  8655. {
  8656. "name": "Sebastian Bergmann",
  8657. "email": "sebastian@phpunit.de"
  8658. }
  8659. ],
  8660. "description": "Looks up which function or method a line of code belongs to",
  8661. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8662. "support": {
  8663. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8664. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8665. },
  8666. "funding": [
  8667. {
  8668. "url": "https://github.com/sebastianbergmann",
  8669. "type": "github"
  8670. }
  8671. ],
  8672. "time": "2023-02-03T06:59:15+00:00"
  8673. },
  8674. {
  8675. "name": "sebastian/comparator",
  8676. "version": "5.0.3",
  8677. "source": {
  8678. "type": "git",
  8679. "url": "https://github.com/sebastianbergmann/comparator.git",
  8680. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  8681. },
  8682. "dist": {
  8683. "type": "zip",
  8684. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  8685. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  8686. "shasum": ""
  8687. },
  8688. "require": {
  8689. "ext-dom": "*",
  8690. "ext-mbstring": "*",
  8691. "php": ">=8.1",
  8692. "sebastian/diff": "^5.0",
  8693. "sebastian/exporter": "^5.0"
  8694. },
  8695. "require-dev": {
  8696. "phpunit/phpunit": "^10.5"
  8697. },
  8698. "type": "library",
  8699. "extra": {
  8700. "branch-alias": {
  8701. "dev-main": "5.0-dev"
  8702. }
  8703. },
  8704. "autoload": {
  8705. "classmap": [
  8706. "src/"
  8707. ]
  8708. },
  8709. "notification-url": "https://packagist.org/downloads/",
  8710. "license": [
  8711. "BSD-3-Clause"
  8712. ],
  8713. "authors": [
  8714. {
  8715. "name": "Sebastian Bergmann",
  8716. "email": "sebastian@phpunit.de"
  8717. },
  8718. {
  8719. "name": "Jeff Welch",
  8720. "email": "whatthejeff@gmail.com"
  8721. },
  8722. {
  8723. "name": "Volker Dusch",
  8724. "email": "github@wallbash.com"
  8725. },
  8726. {
  8727. "name": "Bernhard Schussek",
  8728. "email": "bschussek@2bepublished.at"
  8729. }
  8730. ],
  8731. "description": "Provides the functionality to compare PHP values for equality",
  8732. "homepage": "https://github.com/sebastianbergmann/comparator",
  8733. "keywords": [
  8734. "comparator",
  8735. "compare",
  8736. "equality"
  8737. ],
  8738. "support": {
  8739. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8740. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8741. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  8742. },
  8743. "funding": [
  8744. {
  8745. "url": "https://github.com/sebastianbergmann",
  8746. "type": "github"
  8747. }
  8748. ],
  8749. "time": "2024-10-18T14:56:07+00:00"
  8750. },
  8751. {
  8752. "name": "sebastian/complexity",
  8753. "version": "3.2.0",
  8754. "source": {
  8755. "type": "git",
  8756. "url": "https://github.com/sebastianbergmann/complexity.git",
  8757. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8758. },
  8759. "dist": {
  8760. "type": "zip",
  8761. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8762. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8763. "shasum": ""
  8764. },
  8765. "require": {
  8766. "nikic/php-parser": "^4.18 || ^5.0",
  8767. "php": ">=8.1"
  8768. },
  8769. "require-dev": {
  8770. "phpunit/phpunit": "^10.0"
  8771. },
  8772. "type": "library",
  8773. "extra": {
  8774. "branch-alias": {
  8775. "dev-main": "3.2-dev"
  8776. }
  8777. },
  8778. "autoload": {
  8779. "classmap": [
  8780. "src/"
  8781. ]
  8782. },
  8783. "notification-url": "https://packagist.org/downloads/",
  8784. "license": [
  8785. "BSD-3-Clause"
  8786. ],
  8787. "authors": [
  8788. {
  8789. "name": "Sebastian Bergmann",
  8790. "email": "sebastian@phpunit.de",
  8791. "role": "lead"
  8792. }
  8793. ],
  8794. "description": "Library for calculating the complexity of PHP code units",
  8795. "homepage": "https://github.com/sebastianbergmann/complexity",
  8796. "support": {
  8797. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8798. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8799. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8800. },
  8801. "funding": [
  8802. {
  8803. "url": "https://github.com/sebastianbergmann",
  8804. "type": "github"
  8805. }
  8806. ],
  8807. "time": "2023-12-21T08:37:17+00:00"
  8808. },
  8809. {
  8810. "name": "sebastian/diff",
  8811. "version": "5.1.1",
  8812. "source": {
  8813. "type": "git",
  8814. "url": "https://github.com/sebastianbergmann/diff.git",
  8815. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  8816. },
  8817. "dist": {
  8818. "type": "zip",
  8819. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8820. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8821. "shasum": ""
  8822. },
  8823. "require": {
  8824. "php": ">=8.1"
  8825. },
  8826. "require-dev": {
  8827. "phpunit/phpunit": "^10.0",
  8828. "symfony/process": "^6.4"
  8829. },
  8830. "type": "library",
  8831. "extra": {
  8832. "branch-alias": {
  8833. "dev-main": "5.1-dev"
  8834. }
  8835. },
  8836. "autoload": {
  8837. "classmap": [
  8838. "src/"
  8839. ]
  8840. },
  8841. "notification-url": "https://packagist.org/downloads/",
  8842. "license": [
  8843. "BSD-3-Clause"
  8844. ],
  8845. "authors": [
  8846. {
  8847. "name": "Sebastian Bergmann",
  8848. "email": "sebastian@phpunit.de"
  8849. },
  8850. {
  8851. "name": "Kore Nordmann",
  8852. "email": "mail@kore-nordmann.de"
  8853. }
  8854. ],
  8855. "description": "Diff implementation",
  8856. "homepage": "https://github.com/sebastianbergmann/diff",
  8857. "keywords": [
  8858. "diff",
  8859. "udiff",
  8860. "unidiff",
  8861. "unified diff"
  8862. ],
  8863. "support": {
  8864. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8865. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8866. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  8867. },
  8868. "funding": [
  8869. {
  8870. "url": "https://github.com/sebastianbergmann",
  8871. "type": "github"
  8872. }
  8873. ],
  8874. "time": "2024-03-02T07:15:17+00:00"
  8875. },
  8876. {
  8877. "name": "sebastian/environment",
  8878. "version": "6.1.0",
  8879. "source": {
  8880. "type": "git",
  8881. "url": "https://github.com/sebastianbergmann/environment.git",
  8882. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  8883. },
  8884. "dist": {
  8885. "type": "zip",
  8886. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  8887. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  8888. "shasum": ""
  8889. },
  8890. "require": {
  8891. "php": ">=8.1"
  8892. },
  8893. "require-dev": {
  8894. "phpunit/phpunit": "^10.0"
  8895. },
  8896. "suggest": {
  8897. "ext-posix": "*"
  8898. },
  8899. "type": "library",
  8900. "extra": {
  8901. "branch-alias": {
  8902. "dev-main": "6.1-dev"
  8903. }
  8904. },
  8905. "autoload": {
  8906. "classmap": [
  8907. "src/"
  8908. ]
  8909. },
  8910. "notification-url": "https://packagist.org/downloads/",
  8911. "license": [
  8912. "BSD-3-Clause"
  8913. ],
  8914. "authors": [
  8915. {
  8916. "name": "Sebastian Bergmann",
  8917. "email": "sebastian@phpunit.de"
  8918. }
  8919. ],
  8920. "description": "Provides functionality to handle HHVM/PHP environments",
  8921. "homepage": "https://github.com/sebastianbergmann/environment",
  8922. "keywords": [
  8923. "Xdebug",
  8924. "environment",
  8925. "hhvm"
  8926. ],
  8927. "support": {
  8928. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8929. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8930. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  8931. },
  8932. "funding": [
  8933. {
  8934. "url": "https://github.com/sebastianbergmann",
  8935. "type": "github"
  8936. }
  8937. ],
  8938. "time": "2024-03-23T08:47:14+00:00"
  8939. },
  8940. {
  8941. "name": "sebastian/exporter",
  8942. "version": "5.1.2",
  8943. "source": {
  8944. "type": "git",
  8945. "url": "https://github.com/sebastianbergmann/exporter.git",
  8946. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  8947. },
  8948. "dist": {
  8949. "type": "zip",
  8950. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  8951. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  8952. "shasum": ""
  8953. },
  8954. "require": {
  8955. "ext-mbstring": "*",
  8956. "php": ">=8.1",
  8957. "sebastian/recursion-context": "^5.0"
  8958. },
  8959. "require-dev": {
  8960. "phpunit/phpunit": "^10.0"
  8961. },
  8962. "type": "library",
  8963. "extra": {
  8964. "branch-alias": {
  8965. "dev-main": "5.1-dev"
  8966. }
  8967. },
  8968. "autoload": {
  8969. "classmap": [
  8970. "src/"
  8971. ]
  8972. },
  8973. "notification-url": "https://packagist.org/downloads/",
  8974. "license": [
  8975. "BSD-3-Clause"
  8976. ],
  8977. "authors": [
  8978. {
  8979. "name": "Sebastian Bergmann",
  8980. "email": "sebastian@phpunit.de"
  8981. },
  8982. {
  8983. "name": "Jeff Welch",
  8984. "email": "whatthejeff@gmail.com"
  8985. },
  8986. {
  8987. "name": "Volker Dusch",
  8988. "email": "github@wallbash.com"
  8989. },
  8990. {
  8991. "name": "Adam Harvey",
  8992. "email": "aharvey@php.net"
  8993. },
  8994. {
  8995. "name": "Bernhard Schussek",
  8996. "email": "bschussek@gmail.com"
  8997. }
  8998. ],
  8999. "description": "Provides the functionality to export PHP variables for visualization",
  9000. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9001. "keywords": [
  9002. "export",
  9003. "exporter"
  9004. ],
  9005. "support": {
  9006. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9007. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9008. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9009. },
  9010. "funding": [
  9011. {
  9012. "url": "https://github.com/sebastianbergmann",
  9013. "type": "github"
  9014. }
  9015. ],
  9016. "time": "2024-03-02T07:17:12+00:00"
  9017. },
  9018. {
  9019. "name": "sebastian/global-state",
  9020. "version": "6.0.2",
  9021. "source": {
  9022. "type": "git",
  9023. "url": "https://github.com/sebastianbergmann/global-state.git",
  9024. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9025. },
  9026. "dist": {
  9027. "type": "zip",
  9028. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9029. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9030. "shasum": ""
  9031. },
  9032. "require": {
  9033. "php": ">=8.1",
  9034. "sebastian/object-reflector": "^3.0",
  9035. "sebastian/recursion-context": "^5.0"
  9036. },
  9037. "require-dev": {
  9038. "ext-dom": "*",
  9039. "phpunit/phpunit": "^10.0"
  9040. },
  9041. "type": "library",
  9042. "extra": {
  9043. "branch-alias": {
  9044. "dev-main": "6.0-dev"
  9045. }
  9046. },
  9047. "autoload": {
  9048. "classmap": [
  9049. "src/"
  9050. ]
  9051. },
  9052. "notification-url": "https://packagist.org/downloads/",
  9053. "license": [
  9054. "BSD-3-Clause"
  9055. ],
  9056. "authors": [
  9057. {
  9058. "name": "Sebastian Bergmann",
  9059. "email": "sebastian@phpunit.de"
  9060. }
  9061. ],
  9062. "description": "Snapshotting of global state",
  9063. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9064. "keywords": [
  9065. "global state"
  9066. ],
  9067. "support": {
  9068. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9069. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9070. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9071. },
  9072. "funding": [
  9073. {
  9074. "url": "https://github.com/sebastianbergmann",
  9075. "type": "github"
  9076. }
  9077. ],
  9078. "time": "2024-03-02T07:19:19+00:00"
  9079. },
  9080. {
  9081. "name": "sebastian/lines-of-code",
  9082. "version": "2.0.2",
  9083. "source": {
  9084. "type": "git",
  9085. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9086. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9087. },
  9088. "dist": {
  9089. "type": "zip",
  9090. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9091. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9092. "shasum": ""
  9093. },
  9094. "require": {
  9095. "nikic/php-parser": "^4.18 || ^5.0",
  9096. "php": ">=8.1"
  9097. },
  9098. "require-dev": {
  9099. "phpunit/phpunit": "^10.0"
  9100. },
  9101. "type": "library",
  9102. "extra": {
  9103. "branch-alias": {
  9104. "dev-main": "2.0-dev"
  9105. }
  9106. },
  9107. "autoload": {
  9108. "classmap": [
  9109. "src/"
  9110. ]
  9111. },
  9112. "notification-url": "https://packagist.org/downloads/",
  9113. "license": [
  9114. "BSD-3-Clause"
  9115. ],
  9116. "authors": [
  9117. {
  9118. "name": "Sebastian Bergmann",
  9119. "email": "sebastian@phpunit.de",
  9120. "role": "lead"
  9121. }
  9122. ],
  9123. "description": "Library for counting the lines of code in PHP source code",
  9124. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9125. "support": {
  9126. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9127. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9128. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://github.com/sebastianbergmann",
  9133. "type": "github"
  9134. }
  9135. ],
  9136. "time": "2023-12-21T08:38:20+00:00"
  9137. },
  9138. {
  9139. "name": "sebastian/object-enumerator",
  9140. "version": "5.0.0",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9144. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9149. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9150. "shasum": ""
  9151. },
  9152. "require": {
  9153. "php": ">=8.1",
  9154. "sebastian/object-reflector": "^3.0",
  9155. "sebastian/recursion-context": "^5.0"
  9156. },
  9157. "require-dev": {
  9158. "phpunit/phpunit": "^10.0"
  9159. },
  9160. "type": "library",
  9161. "extra": {
  9162. "branch-alias": {
  9163. "dev-main": "5.0-dev"
  9164. }
  9165. },
  9166. "autoload": {
  9167. "classmap": [
  9168. "src/"
  9169. ]
  9170. },
  9171. "notification-url": "https://packagist.org/downloads/",
  9172. "license": [
  9173. "BSD-3-Clause"
  9174. ],
  9175. "authors": [
  9176. {
  9177. "name": "Sebastian Bergmann",
  9178. "email": "sebastian@phpunit.de"
  9179. }
  9180. ],
  9181. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9182. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9183. "support": {
  9184. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9185. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9186. },
  9187. "funding": [
  9188. {
  9189. "url": "https://github.com/sebastianbergmann",
  9190. "type": "github"
  9191. }
  9192. ],
  9193. "time": "2023-02-03T07:08:32+00:00"
  9194. },
  9195. {
  9196. "name": "sebastian/object-reflector",
  9197. "version": "3.0.0",
  9198. "source": {
  9199. "type": "git",
  9200. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9201. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9202. },
  9203. "dist": {
  9204. "type": "zip",
  9205. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9206. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9207. "shasum": ""
  9208. },
  9209. "require": {
  9210. "php": ">=8.1"
  9211. },
  9212. "require-dev": {
  9213. "phpunit/phpunit": "^10.0"
  9214. },
  9215. "type": "library",
  9216. "extra": {
  9217. "branch-alias": {
  9218. "dev-main": "3.0-dev"
  9219. }
  9220. },
  9221. "autoload": {
  9222. "classmap": [
  9223. "src/"
  9224. ]
  9225. },
  9226. "notification-url": "https://packagist.org/downloads/",
  9227. "license": [
  9228. "BSD-3-Clause"
  9229. ],
  9230. "authors": [
  9231. {
  9232. "name": "Sebastian Bergmann",
  9233. "email": "sebastian@phpunit.de"
  9234. }
  9235. ],
  9236. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9237. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9238. "support": {
  9239. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9240. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9241. },
  9242. "funding": [
  9243. {
  9244. "url": "https://github.com/sebastianbergmann",
  9245. "type": "github"
  9246. }
  9247. ],
  9248. "time": "2023-02-03T07:06:18+00:00"
  9249. },
  9250. {
  9251. "name": "sebastian/recursion-context",
  9252. "version": "5.0.0",
  9253. "source": {
  9254. "type": "git",
  9255. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9256. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9257. },
  9258. "dist": {
  9259. "type": "zip",
  9260. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9261. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9262. "shasum": ""
  9263. },
  9264. "require": {
  9265. "php": ">=8.1"
  9266. },
  9267. "require-dev": {
  9268. "phpunit/phpunit": "^10.0"
  9269. },
  9270. "type": "library",
  9271. "extra": {
  9272. "branch-alias": {
  9273. "dev-main": "5.0-dev"
  9274. }
  9275. },
  9276. "autoload": {
  9277. "classmap": [
  9278. "src/"
  9279. ]
  9280. },
  9281. "notification-url": "https://packagist.org/downloads/",
  9282. "license": [
  9283. "BSD-3-Clause"
  9284. ],
  9285. "authors": [
  9286. {
  9287. "name": "Sebastian Bergmann",
  9288. "email": "sebastian@phpunit.de"
  9289. },
  9290. {
  9291. "name": "Jeff Welch",
  9292. "email": "whatthejeff@gmail.com"
  9293. },
  9294. {
  9295. "name": "Adam Harvey",
  9296. "email": "aharvey@php.net"
  9297. }
  9298. ],
  9299. "description": "Provides functionality to recursively process PHP variables",
  9300. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9301. "support": {
  9302. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9303. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9304. },
  9305. "funding": [
  9306. {
  9307. "url": "https://github.com/sebastianbergmann",
  9308. "type": "github"
  9309. }
  9310. ],
  9311. "time": "2023-02-03T07:05:40+00:00"
  9312. },
  9313. {
  9314. "name": "sebastian/type",
  9315. "version": "4.0.0",
  9316. "source": {
  9317. "type": "git",
  9318. "url": "https://github.com/sebastianbergmann/type.git",
  9319. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9320. },
  9321. "dist": {
  9322. "type": "zip",
  9323. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9324. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9325. "shasum": ""
  9326. },
  9327. "require": {
  9328. "php": ">=8.1"
  9329. },
  9330. "require-dev": {
  9331. "phpunit/phpunit": "^10.0"
  9332. },
  9333. "type": "library",
  9334. "extra": {
  9335. "branch-alias": {
  9336. "dev-main": "4.0-dev"
  9337. }
  9338. },
  9339. "autoload": {
  9340. "classmap": [
  9341. "src/"
  9342. ]
  9343. },
  9344. "notification-url": "https://packagist.org/downloads/",
  9345. "license": [
  9346. "BSD-3-Clause"
  9347. ],
  9348. "authors": [
  9349. {
  9350. "name": "Sebastian Bergmann",
  9351. "email": "sebastian@phpunit.de",
  9352. "role": "lead"
  9353. }
  9354. ],
  9355. "description": "Collection of value objects that represent the types of the PHP type system",
  9356. "homepage": "https://github.com/sebastianbergmann/type",
  9357. "support": {
  9358. "issues": "https://github.com/sebastianbergmann/type/issues",
  9359. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9360. },
  9361. "funding": [
  9362. {
  9363. "url": "https://github.com/sebastianbergmann",
  9364. "type": "github"
  9365. }
  9366. ],
  9367. "time": "2023-02-03T07:10:45+00:00"
  9368. },
  9369. {
  9370. "name": "sebastian/version",
  9371. "version": "4.0.1",
  9372. "source": {
  9373. "type": "git",
  9374. "url": "https://github.com/sebastianbergmann/version.git",
  9375. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9376. },
  9377. "dist": {
  9378. "type": "zip",
  9379. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9380. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9381. "shasum": ""
  9382. },
  9383. "require": {
  9384. "php": ">=8.1"
  9385. },
  9386. "type": "library",
  9387. "extra": {
  9388. "branch-alias": {
  9389. "dev-main": "4.0-dev"
  9390. }
  9391. },
  9392. "autoload": {
  9393. "classmap": [
  9394. "src/"
  9395. ]
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "BSD-3-Clause"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Sebastian Bergmann",
  9404. "email": "sebastian@phpunit.de",
  9405. "role": "lead"
  9406. }
  9407. ],
  9408. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9409. "homepage": "https://github.com/sebastianbergmann/version",
  9410. "support": {
  9411. "issues": "https://github.com/sebastianbergmann/version/issues",
  9412. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9413. },
  9414. "funding": [
  9415. {
  9416. "url": "https://github.com/sebastianbergmann",
  9417. "type": "github"
  9418. }
  9419. ],
  9420. "time": "2023-02-07T11:34:05+00:00"
  9421. },
  9422. {
  9423. "name": "swoole/ide-helper",
  9424. "version": "5.1.7",
  9425. "source": {
  9426. "type": "git",
  9427. "url": "https://github.com/swoole/ide-helper.git",
  9428. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  9429. },
  9430. "dist": {
  9431. "type": "zip",
  9432. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  9433. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  9434. "shasum": ""
  9435. },
  9436. "type": "library",
  9437. "notification-url": "https://packagist.org/downloads/",
  9438. "license": [
  9439. "Apache-2.0"
  9440. ],
  9441. "authors": [
  9442. {
  9443. "name": "Team Swoole",
  9444. "email": "team@swoole.com"
  9445. }
  9446. ],
  9447. "description": "IDE help files for Swoole.",
  9448. "support": {
  9449. "issues": "https://github.com/swoole/ide-helper/issues",
  9450. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  9451. },
  9452. "time": "2025-03-22T23:53:02+00:00"
  9453. },
  9454. {
  9455. "name": "symfony/event-dispatcher",
  9456. "version": "v6.4.13",
  9457. "source": {
  9458. "type": "git",
  9459. "url": "https://github.com/symfony/event-dispatcher.git",
  9460. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  9461. },
  9462. "dist": {
  9463. "type": "zip",
  9464. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9465. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9466. "shasum": ""
  9467. },
  9468. "require": {
  9469. "php": ">=8.1",
  9470. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9471. },
  9472. "conflict": {
  9473. "symfony/dependency-injection": "<5.4",
  9474. "symfony/service-contracts": "<2.5"
  9475. },
  9476. "provide": {
  9477. "psr/event-dispatcher-implementation": "1.0",
  9478. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9479. },
  9480. "require-dev": {
  9481. "psr/log": "^1|^2|^3",
  9482. "symfony/config": "^5.4|^6.0|^7.0",
  9483. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9484. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9485. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9486. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9487. "symfony/service-contracts": "^2.5|^3",
  9488. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9489. },
  9490. "type": "library",
  9491. "autoload": {
  9492. "psr-4": {
  9493. "Symfony\\Component\\EventDispatcher\\": ""
  9494. },
  9495. "exclude-from-classmap": [
  9496. "/Tests/"
  9497. ]
  9498. },
  9499. "notification-url": "https://packagist.org/downloads/",
  9500. "license": [
  9501. "MIT"
  9502. ],
  9503. "authors": [
  9504. {
  9505. "name": "Fabien Potencier",
  9506. "email": "fabien@symfony.com"
  9507. },
  9508. {
  9509. "name": "Symfony Community",
  9510. "homepage": "https://symfony.com/contributors"
  9511. }
  9512. ],
  9513. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9514. "homepage": "https://symfony.com",
  9515. "support": {
  9516. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  9517. },
  9518. "funding": [
  9519. {
  9520. "url": "https://symfony.com/sponsor",
  9521. "type": "custom"
  9522. },
  9523. {
  9524. "url": "https://github.com/fabpot",
  9525. "type": "github"
  9526. },
  9527. {
  9528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9529. "type": "tidelift"
  9530. }
  9531. ],
  9532. "time": "2024-09-25T14:18:03+00:00"
  9533. },
  9534. {
  9535. "name": "symfony/event-dispatcher-contracts",
  9536. "version": "v3.6.0",
  9537. "source": {
  9538. "type": "git",
  9539. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9540. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  9541. },
  9542. "dist": {
  9543. "type": "zip",
  9544. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  9545. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  9546. "shasum": ""
  9547. },
  9548. "require": {
  9549. "php": ">=8.1",
  9550. "psr/event-dispatcher": "^1"
  9551. },
  9552. "type": "library",
  9553. "extra": {
  9554. "thanks": {
  9555. "url": "https://github.com/symfony/contracts",
  9556. "name": "symfony/contracts"
  9557. },
  9558. "branch-alias": {
  9559. "dev-main": "3.6-dev"
  9560. }
  9561. },
  9562. "autoload": {
  9563. "psr-4": {
  9564. "Symfony\\Contracts\\EventDispatcher\\": ""
  9565. }
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "license": [
  9569. "MIT"
  9570. ],
  9571. "authors": [
  9572. {
  9573. "name": "Nicolas Grekas",
  9574. "email": "p@tchwork.com"
  9575. },
  9576. {
  9577. "name": "Symfony Community",
  9578. "homepage": "https://symfony.com/contributors"
  9579. }
  9580. ],
  9581. "description": "Generic abstractions related to dispatching event",
  9582. "homepage": "https://symfony.com",
  9583. "keywords": [
  9584. "abstractions",
  9585. "contracts",
  9586. "decoupling",
  9587. "interfaces",
  9588. "interoperability",
  9589. "standards"
  9590. ],
  9591. "support": {
  9592. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  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-09-25T14:21:43+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. }