composer.lock 415 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638
  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": "79c988defdd709048653f0b4f9c7e5c1",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": ">=5.5"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  34. "yoast/phpunit-polyfills": "^1.0"
  35. },
  36. "suggest": {
  37. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  38. },
  39. "type": "library",
  40. "autoload": {
  41. "classmap": [
  42. "src/"
  43. ]
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "Apache-2.0"
  48. ],
  49. "authors": [
  50. {
  51. "name": "AWS SDK Common Runtime Team",
  52. "email": "aws-sdk-common-runtime@amazon.com"
  53. }
  54. ],
  55. "description": "AWS Common Runtime for PHP",
  56. "homepage": "https://github.com/awslabs/aws-crt-php",
  57. "keywords": [
  58. "amazon",
  59. "aws",
  60. "crt",
  61. "sdk"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  65. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  66. },
  67. "time": "2024-10-18T22:15:13+00:00"
  68. },
  69. {
  70. "name": "aws/aws-sdk-php",
  71. "version": "3.337.3",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/aws/aws-sdk-php.git",
  75. "reference": "06dfc8f76423b49aaa181debd25bbdc724c346d6"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/06dfc8f76423b49aaa181debd25bbdc724c346d6",
  80. "reference": "06dfc8f76423b49aaa181debd25bbdc724c346d6",
  81. "shasum": "",
  82. "mirrors": [
  83. {
  84. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  85. "preferred": true
  86. }
  87. ]
  88. },
  89. "require": {
  90. "aws/aws-crt-php": "^1.2.3",
  91. "ext-json": "*",
  92. "ext-pcre": "*",
  93. "ext-simplexml": "*",
  94. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  95. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  96. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  97. "mtdowling/jmespath.php": "^2.6",
  98. "php": ">=7.2.5",
  99. "psr/http-message": "^1.0 || ^2.0"
  100. },
  101. "require-dev": {
  102. "andrewsville/php-token-reflection": "^1.4",
  103. "aws/aws-php-sns-message-validator": "~1.0",
  104. "behat/behat": "~3.0",
  105. "composer/composer": "^1.10.22",
  106. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  107. "doctrine/cache": "~1.4",
  108. "ext-dom": "*",
  109. "ext-openssl": "*",
  110. "ext-pcntl": "*",
  111. "ext-sockets": "*",
  112. "nette/neon": "^2.3",
  113. "paragonie/random_compat": ">= 2",
  114. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  115. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  116. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  117. "sebastian/comparator": "^1.2.3 || ^4.0",
  118. "yoast/phpunit-polyfills": "^1.0"
  119. },
  120. "suggest": {
  121. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  122. "doctrine/cache": "To use the DoctrineCacheAdapter",
  123. "ext-curl": "To send requests using cURL",
  124. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  125. "ext-sockets": "To use client-side monitoring"
  126. },
  127. "type": "library",
  128. "extra": {
  129. "branch-alias": {
  130. "dev-master": "3.0-dev"
  131. }
  132. },
  133. "autoload": {
  134. "files": [
  135. "src/functions.php"
  136. ],
  137. "psr-4": {
  138. "Aws\\": "src/"
  139. },
  140. "exclude-from-classmap": [
  141. "src/data/"
  142. ]
  143. },
  144. "notification-url": "https://packagist.org/downloads/",
  145. "license": [
  146. "Apache-2.0"
  147. ],
  148. "authors": [
  149. {
  150. "name": "Amazon Web Services",
  151. "homepage": "http://aws.amazon.com"
  152. }
  153. ],
  154. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  155. "homepage": "http://aws.amazon.com/sdkforphp",
  156. "keywords": [
  157. "amazon",
  158. "aws",
  159. "cloud",
  160. "dynamodb",
  161. "ec2",
  162. "glacier",
  163. "s3",
  164. "sdk"
  165. ],
  166. "support": {
  167. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  168. "issues": "https://github.com/aws/aws-sdk-php/issues",
  169. "source": "https://github.com/aws/aws-sdk-php/tree/3.337.3"
  170. },
  171. "time": "2025-01-21T19:10:05+00:00"
  172. },
  173. {
  174. "name": "carbonphp/carbon-doctrine-types",
  175. "version": "3.2.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  179. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  184. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  185. "shasum": "",
  186. "mirrors": [
  187. {
  188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  189. "preferred": true
  190. }
  191. ]
  192. },
  193. "require": {
  194. "php": "^8.1"
  195. },
  196. "conflict": {
  197. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  198. },
  199. "require-dev": {
  200. "doctrine/dbal": "^4.0.0",
  201. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  202. "phpunit/phpunit": "^10.3"
  203. },
  204. "type": "library",
  205. "autoload": {
  206. "psr-4": {
  207. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  208. }
  209. },
  210. "notification-url": "https://packagist.org/downloads/",
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "KyleKatarn",
  217. "email": "kylekatarnls@gmail.com"
  218. }
  219. ],
  220. "description": "Types to use Carbon in Doctrine",
  221. "keywords": [
  222. "carbon",
  223. "date",
  224. "datetime",
  225. "doctrine",
  226. "time"
  227. ],
  228. "support": {
  229. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  230. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  231. },
  232. "funding": [
  233. {
  234. "url": "https://github.com/kylekatarnls",
  235. "type": "github"
  236. },
  237. {
  238. "url": "https://opencollective.com/Carbon",
  239. "type": "open_collective"
  240. },
  241. {
  242. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  243. "type": "tidelift"
  244. }
  245. ],
  246. "time": "2024-02-09T16:56:22+00:00"
  247. },
  248. {
  249. "name": "doctrine/annotations",
  250. "version": "2.0.1",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/annotations.git",
  254. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  259. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  260. "shasum": "",
  261. "mirrors": [
  262. {
  263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  264. "preferred": true
  265. }
  266. ]
  267. },
  268. "require": {
  269. "doctrine/lexer": "^2 || ^3",
  270. "ext-tokenizer": "*",
  271. "php": "^7.2 || ^8.0",
  272. "psr/cache": "^1 || ^2 || ^3"
  273. },
  274. "require-dev": {
  275. "doctrine/cache": "^2.0",
  276. "doctrine/coding-standard": "^10",
  277. "phpstan/phpstan": "^1.8.0",
  278. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  279. "symfony/cache": "^5.4 || ^6",
  280. "vimeo/psalm": "^4.10"
  281. },
  282. "suggest": {
  283. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  284. },
  285. "type": "library",
  286. "autoload": {
  287. "psr-4": {
  288. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Guilherme Blanco",
  298. "email": "guilhermeblanco@gmail.com"
  299. },
  300. {
  301. "name": "Roman Borschel",
  302. "email": "roman@code-factory.org"
  303. },
  304. {
  305. "name": "Benjamin Eberlei",
  306. "email": "kontakt@beberlei.de"
  307. },
  308. {
  309. "name": "Jonathan Wage",
  310. "email": "jonwage@gmail.com"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "Docblock Annotations Parser",
  318. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  319. "keywords": [
  320. "annotations",
  321. "docblock",
  322. "parser"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/doctrine/annotations/issues",
  326. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  327. },
  328. "time": "2023-02-02T22:02:53+00:00"
  329. },
  330. {
  331. "name": "doctrine/inflector",
  332. "version": "2.0.10",
  333. "source": {
  334. "type": "git",
  335. "url": "https://github.com/doctrine/inflector.git",
  336. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  337. },
  338. "dist": {
  339. "type": "zip",
  340. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  341. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  342. "shasum": "",
  343. "mirrors": [
  344. {
  345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  346. "preferred": true
  347. }
  348. ]
  349. },
  350. "require": {
  351. "php": "^7.2 || ^8.0"
  352. },
  353. "require-dev": {
  354. "doctrine/coding-standard": "^11.0",
  355. "phpstan/phpstan": "^1.8",
  356. "phpstan/phpstan-phpunit": "^1.1",
  357. "phpstan/phpstan-strict-rules": "^1.3",
  358. "phpunit/phpunit": "^8.5 || ^9.5",
  359. "vimeo/psalm": "^4.25 || ^5.4"
  360. },
  361. "type": "library",
  362. "autoload": {
  363. "psr-4": {
  364. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  365. }
  366. },
  367. "notification-url": "https://packagist.org/downloads/",
  368. "license": [
  369. "MIT"
  370. ],
  371. "authors": [
  372. {
  373. "name": "Guilherme Blanco",
  374. "email": "guilhermeblanco@gmail.com"
  375. },
  376. {
  377. "name": "Roman Borschel",
  378. "email": "roman@code-factory.org"
  379. },
  380. {
  381. "name": "Benjamin Eberlei",
  382. "email": "kontakt@beberlei.de"
  383. },
  384. {
  385. "name": "Jonathan Wage",
  386. "email": "jonwage@gmail.com"
  387. },
  388. {
  389. "name": "Johannes Schmitt",
  390. "email": "schmittjoh@gmail.com"
  391. }
  392. ],
  393. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  394. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  395. "keywords": [
  396. "inflection",
  397. "inflector",
  398. "lowercase",
  399. "manipulation",
  400. "php",
  401. "plural",
  402. "singular",
  403. "strings",
  404. "uppercase",
  405. "words"
  406. ],
  407. "support": {
  408. "issues": "https://github.com/doctrine/inflector/issues",
  409. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  410. },
  411. "funding": [
  412. {
  413. "url": "https://www.doctrine-project.org/sponsorship.html",
  414. "type": "custom"
  415. },
  416. {
  417. "url": "https://www.patreon.com/phpdoctrine",
  418. "type": "patreon"
  419. },
  420. {
  421. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  422. "type": "tidelift"
  423. }
  424. ],
  425. "time": "2024-02-18T20:23:39+00:00"
  426. },
  427. {
  428. "name": "doctrine/instantiator",
  429. "version": "1.5.0",
  430. "source": {
  431. "type": "git",
  432. "url": "https://github.com/doctrine/instantiator.git",
  433. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  434. },
  435. "dist": {
  436. "type": "zip",
  437. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  438. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  439. "shasum": "",
  440. "mirrors": [
  441. {
  442. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  443. "preferred": true
  444. }
  445. ]
  446. },
  447. "require": {
  448. "php": "^7.1 || ^8.0"
  449. },
  450. "require-dev": {
  451. "doctrine/coding-standard": "^9 || ^11",
  452. "ext-pdo": "*",
  453. "ext-phar": "*",
  454. "phpbench/phpbench": "^0.16 || ^1",
  455. "phpstan/phpstan": "^1.4",
  456. "phpstan/phpstan-phpunit": "^1",
  457. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  458. "vimeo/psalm": "^4.30 || ^5.4"
  459. },
  460. "type": "library",
  461. "autoload": {
  462. "psr-4": {
  463. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  464. }
  465. },
  466. "notification-url": "https://packagist.org/downloads/",
  467. "license": [
  468. "MIT"
  469. ],
  470. "authors": [
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com",
  474. "homepage": "https://ocramius.github.io/"
  475. }
  476. ],
  477. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  478. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  479. "keywords": [
  480. "constructor",
  481. "instantiate"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/instantiator/issues",
  485. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2022-12-30T00:15:36+00:00"
  502. },
  503. {
  504. "name": "doctrine/lexer",
  505. "version": "3.0.1",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/lexer.git",
  509. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  514. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  515. "shasum": "",
  516. "mirrors": [
  517. {
  518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  519. "preferred": true
  520. }
  521. ]
  522. },
  523. "require": {
  524. "php": "^8.1"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "^12",
  528. "phpstan/phpstan": "^1.10",
  529. "phpunit/phpunit": "^10.5",
  530. "psalm/plugin-phpunit": "^0.18.3",
  531. "vimeo/psalm": "^5.21"
  532. },
  533. "type": "library",
  534. "autoload": {
  535. "psr-4": {
  536. "Doctrine\\Common\\Lexer\\": "src"
  537. }
  538. },
  539. "notification-url": "https://packagist.org/downloads/",
  540. "license": [
  541. "MIT"
  542. ],
  543. "authors": [
  544. {
  545. "name": "Guilherme Blanco",
  546. "email": "guilhermeblanco@gmail.com"
  547. },
  548. {
  549. "name": "Roman Borschel",
  550. "email": "roman@code-factory.org"
  551. },
  552. {
  553. "name": "Johannes Schmitt",
  554. "email": "schmittjoh@gmail.com"
  555. }
  556. ],
  557. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  558. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  559. "keywords": [
  560. "annotations",
  561. "docblock",
  562. "lexer",
  563. "parser",
  564. "php"
  565. ],
  566. "support": {
  567. "issues": "https://github.com/doctrine/lexer/issues",
  568. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  569. },
  570. "funding": [
  571. {
  572. "url": "https://www.doctrine-project.org/sponsorship.html",
  573. "type": "custom"
  574. },
  575. {
  576. "url": "https://www.patreon.com/phpdoctrine",
  577. "type": "patreon"
  578. },
  579. {
  580. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  581. "type": "tidelift"
  582. }
  583. ],
  584. "time": "2024-02-05T11:56:58+00:00"
  585. },
  586. {
  587. "name": "fig/http-message-util",
  588. "version": "1.1.5",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/php-fig/http-message-util.git",
  592. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  597. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  598. "shasum": "",
  599. "mirrors": [
  600. {
  601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  602. "preferred": true
  603. }
  604. ]
  605. },
  606. "require": {
  607. "php": "^5.3 || ^7.0 || ^8.0"
  608. },
  609. "suggest": {
  610. "psr/http-message": "The package containing the PSR-7 interfaces"
  611. },
  612. "type": "library",
  613. "extra": {
  614. "branch-alias": {
  615. "dev-master": "1.1.x-dev"
  616. }
  617. },
  618. "autoload": {
  619. "psr-4": {
  620. "Fig\\Http\\Message\\": "src/"
  621. }
  622. },
  623. "notification-url": "https://packagist.org/downloads/",
  624. "license": [
  625. "MIT"
  626. ],
  627. "authors": [
  628. {
  629. "name": "PHP-FIG",
  630. "homepage": "https://www.php-fig.org/"
  631. }
  632. ],
  633. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  634. "keywords": [
  635. "http",
  636. "http-message",
  637. "psr",
  638. "psr-7",
  639. "request",
  640. "response"
  641. ],
  642. "support": {
  643. "issues": "https://github.com/php-fig/http-message-util/issues",
  644. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  645. },
  646. "time": "2020-11-24T22:02:12+00:00"
  647. },
  648. {
  649. "name": "graham-campbell/result-type",
  650. "version": "1.1.x-dev",
  651. "source": {
  652. "type": "git",
  653. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  654. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66"
  655. },
  656. "dist": {
  657. "type": "zip",
  658. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  659. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  660. "shasum": "",
  661. "mirrors": [
  662. {
  663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  664. "preferred": true
  665. }
  666. ]
  667. },
  668. "require": {
  669. "php": "^7.2.5 || ^8.0",
  670. "phpoption/phpoption": "^1.9.3"
  671. },
  672. "require-dev": {
  673. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  674. },
  675. "default-branch": true,
  676. "type": "library",
  677. "autoload": {
  678. "psr-4": {
  679. "GrahamCampbell\\ResultType\\": "src/"
  680. }
  681. },
  682. "notification-url": "https://packagist.org/downloads/",
  683. "license": [
  684. "MIT"
  685. ],
  686. "authors": [
  687. {
  688. "name": "Graham Campbell",
  689. "email": "hello@gjcampbell.co.uk",
  690. "homepage": "https://github.com/GrahamCampbell"
  691. }
  692. ],
  693. "description": "An Implementation Of The Result Type",
  694. "keywords": [
  695. "Graham Campbell",
  696. "GrahamCampbell",
  697. "Result Type",
  698. "Result-Type",
  699. "result"
  700. ],
  701. "support": {
  702. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  703. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  704. },
  705. "funding": [
  706. {
  707. "url": "https://github.com/GrahamCampbell",
  708. "type": "github"
  709. },
  710. {
  711. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  712. "type": "tidelift"
  713. }
  714. ],
  715. "time": "2025-02-09T22:43:44+00:00"
  716. },
  717. {
  718. "name": "guzzlehttp/guzzle",
  719. "version": "7.9.2",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/guzzle/guzzle.git",
  723. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  728. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  729. "shasum": "",
  730. "mirrors": [
  731. {
  732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  733. "preferred": true
  734. }
  735. ]
  736. },
  737. "require": {
  738. "ext-json": "*",
  739. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  740. "guzzlehttp/psr7": "^2.7.0",
  741. "php": "^7.2.5 || ^8.0",
  742. "psr/http-client": "^1.0",
  743. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  744. },
  745. "provide": {
  746. "psr/http-client-implementation": "1.0"
  747. },
  748. "require-dev": {
  749. "bamarni/composer-bin-plugin": "^1.8.2",
  750. "ext-curl": "*",
  751. "guzzle/client-integration-tests": "3.0.2",
  752. "php-http/message-factory": "^1.1",
  753. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  754. "psr/log": "^1.1 || ^2.0 || ^3.0"
  755. },
  756. "suggest": {
  757. "ext-curl": "Required for CURL handler support",
  758. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  759. "psr/log": "Required for using the Log middleware"
  760. },
  761. "type": "library",
  762. "extra": {
  763. "bamarni-bin": {
  764. "bin-links": true,
  765. "forward-command": false
  766. }
  767. },
  768. "autoload": {
  769. "files": [
  770. "src/functions_include.php"
  771. ],
  772. "psr-4": {
  773. "GuzzleHttp\\": "src/"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "authors": [
  781. {
  782. "name": "Graham Campbell",
  783. "email": "hello@gjcampbell.co.uk",
  784. "homepage": "https://github.com/GrahamCampbell"
  785. },
  786. {
  787. "name": "Michael Dowling",
  788. "email": "mtdowling@gmail.com",
  789. "homepage": "https://github.com/mtdowling"
  790. },
  791. {
  792. "name": "Jeremy Lindblom",
  793. "email": "jeremeamia@gmail.com",
  794. "homepage": "https://github.com/jeremeamia"
  795. },
  796. {
  797. "name": "George Mponos",
  798. "email": "gmponos@gmail.com",
  799. "homepage": "https://github.com/gmponos"
  800. },
  801. {
  802. "name": "Tobias Nyholm",
  803. "email": "tobias.nyholm@gmail.com",
  804. "homepage": "https://github.com/Nyholm"
  805. },
  806. {
  807. "name": "Márk Sági-Kazár",
  808. "email": "mark.sagikazar@gmail.com",
  809. "homepage": "https://github.com/sagikazarmark"
  810. },
  811. {
  812. "name": "Tobias Schultze",
  813. "email": "webmaster@tubo-world.de",
  814. "homepage": "https://github.com/Tobion"
  815. }
  816. ],
  817. "description": "Guzzle is a PHP HTTP client library",
  818. "keywords": [
  819. "client",
  820. "curl",
  821. "framework",
  822. "http",
  823. "http client",
  824. "psr-18",
  825. "psr-7",
  826. "rest",
  827. "web service"
  828. ],
  829. "support": {
  830. "issues": "https://github.com/guzzle/guzzle/issues",
  831. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  832. },
  833. "funding": [
  834. {
  835. "url": "https://github.com/GrahamCampbell",
  836. "type": "github"
  837. },
  838. {
  839. "url": "https://github.com/Nyholm",
  840. "type": "github"
  841. },
  842. {
  843. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  844. "type": "tidelift"
  845. }
  846. ],
  847. "time": "2024-07-24T11:22:20+00:00"
  848. },
  849. {
  850. "name": "guzzlehttp/promises",
  851. "version": "2.2.0",
  852. "source": {
  853. "type": "git",
  854. "url": "https://github.com/guzzle/promises.git",
  855. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  856. },
  857. "dist": {
  858. "type": "zip",
  859. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  860. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  861. "shasum": "",
  862. "mirrors": [
  863. {
  864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  865. "preferred": true
  866. }
  867. ]
  868. },
  869. "require": {
  870. "php": "^7.2.5 || ^8.0"
  871. },
  872. "require-dev": {
  873. "bamarni/composer-bin-plugin": "^1.8.2",
  874. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  875. },
  876. "type": "library",
  877. "extra": {
  878. "bamarni-bin": {
  879. "bin-links": true,
  880. "forward-command": false
  881. }
  882. },
  883. "autoload": {
  884. "psr-4": {
  885. "GuzzleHttp\\Promise\\": "src/"
  886. }
  887. },
  888. "notification-url": "https://packagist.org/downloads/",
  889. "license": [
  890. "MIT"
  891. ],
  892. "authors": [
  893. {
  894. "name": "Graham Campbell",
  895. "email": "hello@gjcampbell.co.uk",
  896. "homepage": "https://github.com/GrahamCampbell"
  897. },
  898. {
  899. "name": "Michael Dowling",
  900. "email": "mtdowling@gmail.com",
  901. "homepage": "https://github.com/mtdowling"
  902. },
  903. {
  904. "name": "Tobias Nyholm",
  905. "email": "tobias.nyholm@gmail.com",
  906. "homepage": "https://github.com/Nyholm"
  907. },
  908. {
  909. "name": "Tobias Schultze",
  910. "email": "webmaster@tubo-world.de",
  911. "homepage": "https://github.com/Tobion"
  912. }
  913. ],
  914. "description": "Guzzle promises library",
  915. "keywords": [
  916. "promise"
  917. ],
  918. "support": {
  919. "issues": "https://github.com/guzzle/promises/issues",
  920. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  921. },
  922. "funding": [
  923. {
  924. "url": "https://github.com/GrahamCampbell",
  925. "type": "github"
  926. },
  927. {
  928. "url": "https://github.com/Nyholm",
  929. "type": "github"
  930. },
  931. {
  932. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  933. "type": "tidelift"
  934. }
  935. ],
  936. "time": "2025-03-27T13:27:01+00:00"
  937. },
  938. {
  939. "name": "guzzlehttp/psr7",
  940. "version": "2.7.1",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/guzzle/psr7.git",
  944. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  949. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  950. "shasum": "",
  951. "mirrors": [
  952. {
  953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  954. "preferred": true
  955. }
  956. ]
  957. },
  958. "require": {
  959. "php": "^7.2.5 || ^8.0",
  960. "psr/http-factory": "^1.0",
  961. "psr/http-message": "^1.1 || ^2.0",
  962. "ralouphie/getallheaders": "^3.0"
  963. },
  964. "provide": {
  965. "psr/http-factory-implementation": "1.0",
  966. "psr/http-message-implementation": "1.0"
  967. },
  968. "require-dev": {
  969. "bamarni/composer-bin-plugin": "^1.8.2",
  970. "http-interop/http-factory-tests": "0.9.0",
  971. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  972. },
  973. "suggest": {
  974. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  975. },
  976. "type": "library",
  977. "extra": {
  978. "bamarni-bin": {
  979. "bin-links": true,
  980. "forward-command": false
  981. }
  982. },
  983. "autoload": {
  984. "psr-4": {
  985. "GuzzleHttp\\Psr7\\": "src/"
  986. }
  987. },
  988. "notification-url": "https://packagist.org/downloads/",
  989. "license": [
  990. "MIT"
  991. ],
  992. "authors": [
  993. {
  994. "name": "Graham Campbell",
  995. "email": "hello@gjcampbell.co.uk",
  996. "homepage": "https://github.com/GrahamCampbell"
  997. },
  998. {
  999. "name": "Michael Dowling",
  1000. "email": "mtdowling@gmail.com",
  1001. "homepage": "https://github.com/mtdowling"
  1002. },
  1003. {
  1004. "name": "George Mponos",
  1005. "email": "gmponos@gmail.com",
  1006. "homepage": "https://github.com/gmponos"
  1007. },
  1008. {
  1009. "name": "Tobias Nyholm",
  1010. "email": "tobias.nyholm@gmail.com",
  1011. "homepage": "https://github.com/Nyholm"
  1012. },
  1013. {
  1014. "name": "Márk Sági-Kazár",
  1015. "email": "mark.sagikazar@gmail.com",
  1016. "homepage": "https://github.com/sagikazarmark"
  1017. },
  1018. {
  1019. "name": "Tobias Schultze",
  1020. "email": "webmaster@tubo-world.de",
  1021. "homepage": "https://github.com/Tobion"
  1022. },
  1023. {
  1024. "name": "Márk Sági-Kazár",
  1025. "email": "mark.sagikazar@gmail.com",
  1026. "homepage": "https://sagikazarmark.hu"
  1027. }
  1028. ],
  1029. "description": "PSR-7 message implementation that also provides common utility methods",
  1030. "keywords": [
  1031. "http",
  1032. "message",
  1033. "psr-7",
  1034. "request",
  1035. "response",
  1036. "stream",
  1037. "uri",
  1038. "url"
  1039. ],
  1040. "support": {
  1041. "issues": "https://github.com/guzzle/psr7/issues",
  1042. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  1043. },
  1044. "funding": [
  1045. {
  1046. "url": "https://github.com/GrahamCampbell",
  1047. "type": "github"
  1048. },
  1049. {
  1050. "url": "https://github.com/Nyholm",
  1051. "type": "github"
  1052. },
  1053. {
  1054. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1055. "type": "tidelift"
  1056. }
  1057. ],
  1058. "time": "2025-03-27T12:30:47+00:00"
  1059. },
  1060. {
  1061. "name": "hyperf/cache",
  1062. "version": "v3.1.43",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/hyperf/cache.git",
  1066. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1071. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1072. "shasum": "",
  1073. "mirrors": [
  1074. {
  1075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1076. "preferred": true
  1077. }
  1078. ]
  1079. },
  1080. "require": {
  1081. "hyperf/codec": "~3.1.0",
  1082. "hyperf/collection": "~3.1.0",
  1083. "hyperf/contract": "~3.1.0",
  1084. "hyperf/support": "~3.1.0",
  1085. "hyperf/utils": "~3.1.0",
  1086. "php": ">=8.1",
  1087. "psr/container": "^1.0 || ^2.0",
  1088. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1089. },
  1090. "suggest": {
  1091. "hyperf/di": "Use cache annotations.",
  1092. "hyperf/event": "Use listener to delete annotation cache."
  1093. },
  1094. "type": "library",
  1095. "extra": {
  1096. "hyperf": {
  1097. "config": "Hyperf\\Cache\\ConfigProvider"
  1098. },
  1099. "branch-alias": {
  1100. "dev-master": "3.1-dev"
  1101. }
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "Hyperf\\Cache\\": "src/"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "description": "A cache component for hyperf.",
  1113. "homepage": "https://hyperf.io",
  1114. "keywords": [
  1115. "cache",
  1116. "hyperf",
  1117. "php"
  1118. ],
  1119. "support": {
  1120. "docs": "https://hyperf.wiki",
  1121. "issues": "https://github.com/hyperf/hyperf/issues",
  1122. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1123. "source": "https://github.com/hyperf/hyperf"
  1124. },
  1125. "funding": [
  1126. {
  1127. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1128. "type": "custom"
  1129. },
  1130. {
  1131. "url": "https://opencollective.com/hyperf",
  1132. "type": "open_collective"
  1133. }
  1134. ],
  1135. "time": "2024-10-09T10:22:39+00:00"
  1136. },
  1137. {
  1138. "name": "hyperf/code-parser",
  1139. "version": "v3.1.52",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/hyperf/code-parser.git",
  1143. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1148. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1149. "shasum": "",
  1150. "mirrors": [
  1151. {
  1152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1153. "preferred": true
  1154. }
  1155. ]
  1156. },
  1157. "require": {
  1158. "hyperf/collection": "~3.1.0",
  1159. "hyperf/stringable": "~3.1.0",
  1160. "hyperf/support": "~3.1.0",
  1161. "php": ">=8.1"
  1162. },
  1163. "suggest": {
  1164. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1165. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1166. },
  1167. "type": "library",
  1168. "extra": {
  1169. "branch-alias": {
  1170. "dev-master": "3.1-dev"
  1171. }
  1172. },
  1173. "autoload": {
  1174. "psr-4": {
  1175. "Hyperf\\CodeParser\\": "src/"
  1176. }
  1177. },
  1178. "notification-url": "https://packagist.org/downloads/",
  1179. "license": [
  1180. "MIT"
  1181. ],
  1182. "description": "A code parser component for Hyperf.",
  1183. "homepage": "https://hyperf.io",
  1184. "keywords": [
  1185. "code-parser",
  1186. "hyperf",
  1187. "php",
  1188. "swoole"
  1189. ],
  1190. "support": {
  1191. "docs": "https://hyperf.wiki",
  1192. "issues": "https://github.com/hyperf/hyperf/issues",
  1193. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1194. "source": "https://github.com/hyperf/hyperf"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1199. "type": "custom"
  1200. },
  1201. {
  1202. "url": "https://opencollective.com/hyperf",
  1203. "type": "open_collective"
  1204. }
  1205. ],
  1206. "time": "2025-02-27T07:40:13+00:00"
  1207. },
  1208. {
  1209. "name": "hyperf/codec",
  1210. "version": "v3.1.42",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/hyperf/codec.git",
  1214. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1219. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1220. "shasum": "",
  1221. "mirrors": [
  1222. {
  1223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1224. "preferred": true
  1225. }
  1226. ]
  1227. },
  1228. "require": {
  1229. "ext-json": "*",
  1230. "ext-xml": "*",
  1231. "hyperf/contract": "~3.1.0",
  1232. "php": ">=8.1"
  1233. },
  1234. "suggest": {
  1235. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1236. },
  1237. "type": "library",
  1238. "extra": {
  1239. "branch-alias": {
  1240. "dev-master": "3.1-dev"
  1241. }
  1242. },
  1243. "autoload": {
  1244. "psr-4": {
  1245. "Hyperf\\Codec\\": "src/"
  1246. }
  1247. },
  1248. "notification-url": "https://packagist.org/downloads/",
  1249. "license": [
  1250. "MIT"
  1251. ],
  1252. "description": "A codec component for Hyperf.",
  1253. "homepage": "https://hyperf.io",
  1254. "keywords": [
  1255. "codec",
  1256. "hyperf",
  1257. "php",
  1258. "swoole"
  1259. ],
  1260. "support": {
  1261. "docs": "https://hyperf.wiki",
  1262. "issues": "https://github.com/hyperf/hyperf/issues",
  1263. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1264. "source": "https://github.com/hyperf/hyperf"
  1265. },
  1266. "funding": [
  1267. {
  1268. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1269. "type": "custom"
  1270. },
  1271. {
  1272. "url": "https://opencollective.com/hyperf",
  1273. "type": "open_collective"
  1274. }
  1275. ],
  1276. "time": "2024-09-25T02:54:12+00:00"
  1277. },
  1278. {
  1279. "name": "hyperf/collection",
  1280. "version": "v3.1.52",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/hyperf/collection.git",
  1284. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://api.github.com/repos/hyperf/collection/zipball/a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1289. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1290. "shasum": "",
  1291. "mirrors": [
  1292. {
  1293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1294. "preferred": true
  1295. }
  1296. ]
  1297. },
  1298. "require": {
  1299. "hyperf/conditionable": "~3.1.0",
  1300. "hyperf/contract": "~3.1.0",
  1301. "hyperf/macroable": "~3.1.0",
  1302. "hyperf/stringable": "~3.1.0",
  1303. "php": ">=8.1"
  1304. },
  1305. "type": "library",
  1306. "extra": {
  1307. "branch-alias": {
  1308. "dev-master": "3.1-dev"
  1309. }
  1310. },
  1311. "autoload": {
  1312. "files": [
  1313. "src/Functions.php"
  1314. ],
  1315. "psr-4": {
  1316. "Hyperf\\Collection\\": "src/"
  1317. }
  1318. },
  1319. "notification-url": "https://packagist.org/downloads/",
  1320. "license": [
  1321. "MIT"
  1322. ],
  1323. "description": "Hyperf Collection package which come from illuminate/collections",
  1324. "homepage": "https://hyperf.io",
  1325. "keywords": [
  1326. "collection",
  1327. "hyperf",
  1328. "php",
  1329. "swoole"
  1330. ],
  1331. "support": {
  1332. "docs": "https://hyperf.wiki",
  1333. "issues": "https://github.com/hyperf/hyperf/issues",
  1334. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1335. "source": "https://github.com/hyperf/hyperf"
  1336. },
  1337. "funding": [
  1338. {
  1339. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1340. "type": "custom"
  1341. },
  1342. {
  1343. "url": "https://opencollective.com/hyperf",
  1344. "type": "open_collective"
  1345. }
  1346. ],
  1347. "time": "2025-02-17T03:58:59+00:00"
  1348. },
  1349. {
  1350. "name": "hyperf/command",
  1351. "version": "v3.1.51",
  1352. "source": {
  1353. "type": "git",
  1354. "url": "https://github.com/hyperf/command.git",
  1355. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe"
  1356. },
  1357. "dist": {
  1358. "type": "zip",
  1359. "url": "https://api.github.com/repos/hyperf/command/zipball/e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1360. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1361. "shasum": "",
  1362. "mirrors": [
  1363. {
  1364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1365. "preferred": true
  1366. }
  1367. ]
  1368. },
  1369. "require": {
  1370. "hyperf/collection": "~3.1.0",
  1371. "hyperf/context": "~3.1.0",
  1372. "hyperf/contract": "~3.1.0",
  1373. "hyperf/coroutine": "~3.1.0",
  1374. "hyperf/di": "~3.1.0",
  1375. "hyperf/stringable": "~3.1.0",
  1376. "hyperf/support": "~3.1.0",
  1377. "hyperf/tappable": "~3.1.0",
  1378. "php": ">=8.1",
  1379. "psr/event-dispatcher": "^1.0",
  1380. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1381. },
  1382. "suggest": {
  1383. "hyperf/di": "Required to use annotations.",
  1384. "hyperf/event": "Required to use listeners."
  1385. },
  1386. "type": "library",
  1387. "extra": {
  1388. "hyperf": {
  1389. "config": "Hyperf\\Command\\ConfigProvider"
  1390. },
  1391. "branch-alias": {
  1392. "dev-master": "3.1-dev"
  1393. }
  1394. },
  1395. "autoload": {
  1396. "psr-4": {
  1397. "Hyperf\\Command\\": "src/"
  1398. }
  1399. },
  1400. "notification-url": "https://packagist.org/downloads/",
  1401. "license": [
  1402. "MIT"
  1403. ],
  1404. "description": "Command for hyperf",
  1405. "keywords": [
  1406. "command",
  1407. "php",
  1408. "swoole"
  1409. ],
  1410. "support": {
  1411. "issues": "https://github.com/hyperf/command/issues",
  1412. "source": "https://github.com/hyperf/command/tree/v3.1.51"
  1413. },
  1414. "funding": [
  1415. {
  1416. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1417. "type": "custom"
  1418. },
  1419. {
  1420. "url": "https://opencollective.com/hyperf",
  1421. "type": "open_collective"
  1422. }
  1423. ],
  1424. "time": "2025-02-06T03:40:37+00:00"
  1425. },
  1426. {
  1427. "name": "hyperf/conditionable",
  1428. "version": "v3.1.42",
  1429. "source": {
  1430. "type": "git",
  1431. "url": "https://github.com/hyperf/conditionable.git",
  1432. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1433. },
  1434. "dist": {
  1435. "type": "zip",
  1436. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1437. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1438. "shasum": "",
  1439. "mirrors": [
  1440. {
  1441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1442. "preferred": true
  1443. }
  1444. ]
  1445. },
  1446. "require": {
  1447. "php": ">=8.1"
  1448. },
  1449. "type": "library",
  1450. "extra": {
  1451. "branch-alias": {
  1452. "dev-master": "3.1-dev"
  1453. }
  1454. },
  1455. "autoload": {
  1456. "psr-4": {
  1457. "Hyperf\\Conditionable\\": "src/"
  1458. }
  1459. },
  1460. "notification-url": "https://packagist.org/downloads/",
  1461. "license": [
  1462. "MIT"
  1463. ],
  1464. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1465. "homepage": "https://hyperf.io",
  1466. "keywords": [
  1467. "conditionable",
  1468. "hyperf",
  1469. "php",
  1470. "swoole"
  1471. ],
  1472. "support": {
  1473. "docs": "https://hyperf.wiki",
  1474. "issues": "https://github.com/hyperf/hyperf/issues",
  1475. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1476. "source": "https://github.com/hyperf/hyperf"
  1477. },
  1478. "funding": [
  1479. {
  1480. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1481. "type": "custom"
  1482. },
  1483. {
  1484. "url": "https://opencollective.com/hyperf",
  1485. "type": "open_collective"
  1486. }
  1487. ],
  1488. "time": "2024-09-25T02:54:12+00:00"
  1489. },
  1490. {
  1491. "name": "hyperf/config",
  1492. "version": "v3.1.42",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/hyperf/config.git",
  1496. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1501. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1502. "shasum": "",
  1503. "mirrors": [
  1504. {
  1505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1506. "preferred": true
  1507. }
  1508. ]
  1509. },
  1510. "require": {
  1511. "hyperf/collection": "~3.1.0",
  1512. "hyperf/contract": "~3.1.0",
  1513. "hyperf/support": "~3.1.0",
  1514. "php": ">=8.1",
  1515. "psr/container": "^1.0 || ^2.0",
  1516. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1517. },
  1518. "suggest": {
  1519. "hyperf/context": "Required to use config()",
  1520. "hyperf/di": "Allows using @Value annotation",
  1521. "hyperf/event": "Allows using @Value annotation",
  1522. "hyperf/framework": "Allows using @Value annotation",
  1523. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1524. },
  1525. "type": "library",
  1526. "extra": {
  1527. "hyperf": {
  1528. "config": "Hyperf\\Config\\ConfigProvider"
  1529. },
  1530. "branch-alias": {
  1531. "dev-master": "3.1-dev"
  1532. }
  1533. },
  1534. "autoload": {
  1535. "files": [
  1536. "./src/Functions.php"
  1537. ],
  1538. "psr-4": {
  1539. "Hyperf\\Config\\": "src/"
  1540. }
  1541. },
  1542. "notification-url": "https://packagist.org/downloads/",
  1543. "license": [
  1544. "MIT"
  1545. ],
  1546. "description": "An independent component that provides configuration container.",
  1547. "homepage": "https://hyperf.io",
  1548. "keywords": [
  1549. "config",
  1550. "configuration",
  1551. "hyperf",
  1552. "php",
  1553. "swoole"
  1554. ],
  1555. "support": {
  1556. "docs": "https://hyperf.wiki",
  1557. "issues": "https://github.com/hyperf/hyperf/issues",
  1558. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1559. "source": "https://github.com/hyperf/hyperf"
  1560. },
  1561. "funding": [
  1562. {
  1563. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1564. "type": "custom"
  1565. },
  1566. {
  1567. "url": "https://opencollective.com/hyperf",
  1568. "type": "open_collective"
  1569. }
  1570. ],
  1571. "time": "2024-09-25T02:54:12+00:00"
  1572. },
  1573. {
  1574. "name": "hyperf/config-center",
  1575. "version": "v3.1.42",
  1576. "source": {
  1577. "type": "git",
  1578. "url": "https://github.com/hyperf/config-center.git",
  1579. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1580. },
  1581. "dist": {
  1582. "type": "zip",
  1583. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1584. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1585. "shasum": "",
  1586. "mirrors": [
  1587. {
  1588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1589. "preferred": true
  1590. }
  1591. ]
  1592. },
  1593. "require": {
  1594. "hyperf/support": "~3.1.0",
  1595. "php": ">=8.1"
  1596. },
  1597. "suggest": {
  1598. "hyperf/process": "^2.1"
  1599. },
  1600. "type": "library",
  1601. "extra": {
  1602. "hyperf": {
  1603. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1604. },
  1605. "branch-alias": {
  1606. "dev-master": "3.1-dev"
  1607. }
  1608. },
  1609. "autoload": {
  1610. "psr-4": {
  1611. "Hyperf\\ConfigCenter\\": "src/"
  1612. }
  1613. },
  1614. "notification-url": "https://packagist.org/downloads/",
  1615. "license": [
  1616. "MIT"
  1617. ],
  1618. "description": "The abstraction component of config center",
  1619. "homepage": "https://hyperf.io",
  1620. "keywords": [
  1621. "config-center",
  1622. "hyperf",
  1623. "php"
  1624. ],
  1625. "support": {
  1626. "docs": "https://hyperf.wiki",
  1627. "issues": "https://github.com/hyperf/hyperf/issues",
  1628. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1629. "source": "https://github.com/hyperf/hyperf"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1634. "type": "custom"
  1635. },
  1636. {
  1637. "url": "https://opencollective.com/hyperf",
  1638. "type": "open_collective"
  1639. }
  1640. ],
  1641. "time": "2024-09-25T02:54:12+00:00"
  1642. },
  1643. {
  1644. "name": "hyperf/config-nacos",
  1645. "version": "v3.1.42",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/hyperf/config-nacos.git",
  1649. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1654. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1655. "shasum": "",
  1656. "mirrors": [
  1657. {
  1658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1659. "preferred": true
  1660. }
  1661. ]
  1662. },
  1663. "require": {
  1664. "hyperf/codec": "~3.1.0",
  1665. "hyperf/config-center": "~3.1.0",
  1666. "hyperf/contract": "~3.1.0",
  1667. "hyperf/guzzle": "~3.1.0",
  1668. "hyperf/nacos": "~3.1.0",
  1669. "hyperf/support": "~3.1.0",
  1670. "hyperf/utils": "~3.1.0",
  1671. "jetbrains/phpstorm-attributes": "^1.0",
  1672. "php": ">=8.1"
  1673. },
  1674. "suggest": {
  1675. "ext-json": "*",
  1676. "ext-simplexml": "*",
  1677. "ext-yaml": "*",
  1678. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1679. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1680. "hyperf/process": "Required to use processes. (~2.2.0)"
  1681. },
  1682. "type": "library",
  1683. "extra": {
  1684. "hyperf": {
  1685. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1686. },
  1687. "branch-alias": {
  1688. "dev-master": "3.1-dev"
  1689. }
  1690. },
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Hyperf\\ConfigNacos\\": "src/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "description": "A nacos adapter for config center component.",
  1701. "homepage": "https://hyperf.io",
  1702. "keywords": [
  1703. "hyperf",
  1704. "nacos",
  1705. "php",
  1706. "swoole"
  1707. ],
  1708. "support": {
  1709. "docs": "https://hyperf.wiki",
  1710. "issues": "https://github.com/hyperf/hyperf/issues",
  1711. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1712. "source": "https://github.com/hyperf/hyperf"
  1713. },
  1714. "funding": [
  1715. {
  1716. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1717. "type": "custom"
  1718. },
  1719. {
  1720. "url": "https://opencollective.com/hyperf",
  1721. "type": "open_collective"
  1722. }
  1723. ],
  1724. "time": "2024-09-25T02:54:12+00:00"
  1725. },
  1726. {
  1727. "name": "hyperf/constants",
  1728. "version": "v3.1.42",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/hyperf/constants.git",
  1732. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1737. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1738. "shasum": "",
  1739. "mirrors": [
  1740. {
  1741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1742. "preferred": true
  1743. }
  1744. ]
  1745. },
  1746. "require": {
  1747. "hyperf/di": "~3.1.0",
  1748. "hyperf/support": "~3.1.0",
  1749. "hyperf/utils": "~3.1.0",
  1750. "php": ">=8.1"
  1751. },
  1752. "suggest": {
  1753. "hyperf/translation": "Required to use translation."
  1754. },
  1755. "type": "library",
  1756. "extra": {
  1757. "hyperf": {
  1758. "config": "Hyperf\\Constants\\ConfigProvider"
  1759. },
  1760. "branch-alias": {
  1761. "dev-master": "3.1-dev"
  1762. }
  1763. },
  1764. "autoload": {
  1765. "psr-4": {
  1766. "Hyperf\\Constants\\": "src/"
  1767. }
  1768. },
  1769. "notification-url": "https://packagist.org/downloads/",
  1770. "license": [
  1771. "MIT"
  1772. ],
  1773. "description": "A constants component for hyperf.",
  1774. "homepage": "https://hyperf.io",
  1775. "keywords": [
  1776. "constants",
  1777. "hyperf",
  1778. "php"
  1779. ],
  1780. "support": {
  1781. "docs": "https://hyperf.wiki",
  1782. "issues": "https://github.com/hyperf/hyperf/issues",
  1783. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1784. "source": "https://github.com/hyperf/hyperf"
  1785. },
  1786. "funding": [
  1787. {
  1788. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1789. "type": "custom"
  1790. },
  1791. {
  1792. "url": "https://opencollective.com/hyperf",
  1793. "type": "open_collective"
  1794. }
  1795. ],
  1796. "time": "2024-09-25T02:54:12+00:00"
  1797. },
  1798. {
  1799. "name": "hyperf/consul",
  1800. "version": "v3.1.42",
  1801. "source": {
  1802. "type": "git",
  1803. "url": "https://github.com/hyperf/consul.git",
  1804. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1805. },
  1806. "dist": {
  1807. "type": "zip",
  1808. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1809. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1810. "shasum": "",
  1811. "mirrors": [
  1812. {
  1813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1814. "preferred": true
  1815. }
  1816. ]
  1817. },
  1818. "require": {
  1819. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1820. "php": ">=8.1"
  1821. },
  1822. "type": "library",
  1823. "extra": {
  1824. "hyperf": {
  1825. "config": "Hyperf\\Consul\\ConfigProvider"
  1826. },
  1827. "branch-alias": {
  1828. "dev-master": "3.1-dev"
  1829. }
  1830. },
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Hyperf\\Consul\\": "src/"
  1834. }
  1835. },
  1836. "notification-url": "https://packagist.org/downloads/",
  1837. "license": [
  1838. "MIT"
  1839. ],
  1840. "description": "A Consul Client for Hyperf.",
  1841. "homepage": "https://hyperf.io",
  1842. "keywords": [
  1843. "consul",
  1844. "consul-client",
  1845. "hyperf",
  1846. "php",
  1847. "swoole"
  1848. ],
  1849. "support": {
  1850. "docs": "https://hyperf.wiki",
  1851. "issues": "https://github.com/hyperf/hyperf/issues",
  1852. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1853. "source": "https://github.com/hyperf/hyperf"
  1854. },
  1855. "funding": [
  1856. {
  1857. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1858. "type": "custom"
  1859. },
  1860. {
  1861. "url": "https://opencollective.com/hyperf",
  1862. "type": "open_collective"
  1863. }
  1864. ],
  1865. "time": "2024-09-25T02:54:12+00:00"
  1866. },
  1867. {
  1868. "name": "hyperf/context",
  1869. "version": "v3.1.42",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://github.com/hyperf/context.git",
  1873. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1878. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1879. "shasum": "",
  1880. "mirrors": [
  1881. {
  1882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1883. "preferred": true
  1884. }
  1885. ]
  1886. },
  1887. "require": {
  1888. "hyperf/engine": "^2.0",
  1889. "php": ">=8.1"
  1890. },
  1891. "suggest": {
  1892. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "branch-alias": {
  1897. "dev-master": "3.1-dev"
  1898. }
  1899. },
  1900. "autoload": {
  1901. "psr-4": {
  1902. "Hyperf\\Context\\": "src/"
  1903. }
  1904. },
  1905. "notification-url": "https://packagist.org/downloads/",
  1906. "license": [
  1907. "MIT"
  1908. ],
  1909. "description": "A coroutine/application context library.",
  1910. "homepage": "https://hyperf.io",
  1911. "keywords": [
  1912. "Context",
  1913. "hyperf",
  1914. "php",
  1915. "swoole"
  1916. ],
  1917. "support": {
  1918. "docs": "https://hyperf.wiki",
  1919. "issues": "https://github.com/hyperf/hyperf/issues",
  1920. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1921. "source": "https://github.com/hyperf/hyperf"
  1922. },
  1923. "funding": [
  1924. {
  1925. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1926. "type": "custom"
  1927. },
  1928. {
  1929. "url": "https://opencollective.com/hyperf",
  1930. "type": "open_collective"
  1931. }
  1932. ],
  1933. "time": "2024-09-25T02:54:12+00:00"
  1934. },
  1935. {
  1936. "name": "hyperf/contract",
  1937. "version": "v3.1.42",
  1938. "source": {
  1939. "type": "git",
  1940. "url": "https://github.com/hyperf/contract.git",
  1941. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1942. },
  1943. "dist": {
  1944. "type": "zip",
  1945. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1946. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1947. "shasum": "",
  1948. "mirrors": [
  1949. {
  1950. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1951. "preferred": true
  1952. }
  1953. ]
  1954. },
  1955. "require": {
  1956. "php": ">=8.1"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "3.1-dev"
  1962. }
  1963. },
  1964. "autoload": {
  1965. "psr-4": {
  1966. "Hyperf\\Contract\\": "src/"
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "description": "The contracts of Hyperf.",
  1974. "homepage": "https://hyperf.io",
  1975. "keywords": [
  1976. "hyperf",
  1977. "php",
  1978. "swoole"
  1979. ],
  1980. "support": {
  1981. "docs": "https://hyperf.wiki",
  1982. "issues": "https://github.com/hyperf/hyperf/issues",
  1983. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1984. "source": "https://github.com/hyperf/hyperf"
  1985. },
  1986. "funding": [
  1987. {
  1988. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1989. "type": "custom"
  1990. },
  1991. {
  1992. "url": "https://opencollective.com/hyperf",
  1993. "type": "open_collective"
  1994. }
  1995. ],
  1996. "time": "2024-09-25T02:54:12+00:00"
  1997. },
  1998. {
  1999. "name": "hyperf/coordinator",
  2000. "version": "v3.1.42",
  2001. "source": {
  2002. "type": "git",
  2003. "url": "https://github.com/hyperf/coordinator.git",
  2004. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2005. },
  2006. "dist": {
  2007. "type": "zip",
  2008. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2009. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2010. "shasum": "",
  2011. "mirrors": [
  2012. {
  2013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2014. "preferred": true
  2015. }
  2016. ]
  2017. },
  2018. "require": {
  2019. "hyperf/engine": "^2.0",
  2020. "php": ">=8.1"
  2021. },
  2022. "type": "library",
  2023. "extra": {
  2024. "branch-alias": {
  2025. "dev-master": "3.1-dev"
  2026. }
  2027. },
  2028. "autoload": {
  2029. "files": [
  2030. "src/Functions.php"
  2031. ],
  2032. "psr-4": {
  2033. "Hyperf\\Coordinator\\": "src/"
  2034. }
  2035. },
  2036. "notification-url": "https://packagist.org/downloads/",
  2037. "license": [
  2038. "MIT"
  2039. ],
  2040. "description": "Hyperf Coordinator",
  2041. "homepage": "https://hyperf.io",
  2042. "keywords": [
  2043. "Coordinator",
  2044. "hyperf",
  2045. "php",
  2046. "swoole"
  2047. ],
  2048. "support": {
  2049. "docs": "https://hyperf.wiki",
  2050. "issues": "https://github.com/hyperf/hyperf/issues",
  2051. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2052. "source": "https://github.com/hyperf/hyperf"
  2053. },
  2054. "funding": [
  2055. {
  2056. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2057. "type": "custom"
  2058. },
  2059. {
  2060. "url": "https://opencollective.com/hyperf",
  2061. "type": "open_collective"
  2062. }
  2063. ],
  2064. "time": "2024-09-25T02:54:12+00:00"
  2065. },
  2066. {
  2067. "name": "hyperf/coroutine",
  2068. "version": "v3.1.52",
  2069. "source": {
  2070. "type": "git",
  2071. "url": "https://github.com/hyperf/coroutine.git",
  2072. "reference": "223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64"
  2073. },
  2074. "dist": {
  2075. "type": "zip",
  2076. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64",
  2077. "reference": "223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64",
  2078. "shasum": "",
  2079. "mirrors": [
  2080. {
  2081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2082. "preferred": true
  2083. }
  2084. ]
  2085. },
  2086. "require": {
  2087. "hyperf/context": "~3.1.0",
  2088. "hyperf/contract": "~3.1.0",
  2089. "hyperf/engine": "^2.13.0",
  2090. "php": ">=8.1"
  2091. },
  2092. "type": "library",
  2093. "extra": {
  2094. "branch-alias": {
  2095. "dev-master": "3.1-dev"
  2096. }
  2097. },
  2098. "autoload": {
  2099. "files": [
  2100. "src/Functions.php"
  2101. ],
  2102. "psr-4": {
  2103. "Hyperf\\Coroutine\\": "src/"
  2104. }
  2105. },
  2106. "notification-url": "https://packagist.org/downloads/",
  2107. "license": [
  2108. "MIT"
  2109. ],
  2110. "description": "Hyperf Coroutine",
  2111. "homepage": "https://hyperf.io",
  2112. "keywords": [
  2113. "coroutine",
  2114. "hyperf",
  2115. "php",
  2116. "swoole"
  2117. ],
  2118. "support": {
  2119. "docs": "https://hyperf.wiki",
  2120. "issues": "https://github.com/hyperf/hyperf/issues",
  2121. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2122. "source": "https://github.com/hyperf/hyperf"
  2123. },
  2124. "funding": [
  2125. {
  2126. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2127. "type": "custom"
  2128. },
  2129. {
  2130. "url": "https://opencollective.com/hyperf",
  2131. "type": "open_collective"
  2132. }
  2133. ],
  2134. "time": "2025-02-08T03:41:26+00:00"
  2135. },
  2136. {
  2137. "name": "hyperf/database",
  2138. "version": "v3.1.53",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/hyperf/database.git",
  2142. "reference": "50f79d0bf6007f1c7ef63215426bb2f9cae83aa5"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/hyperf/database/zipball/50f79d0bf6007f1c7ef63215426bb2f9cae83aa5",
  2147. "reference": "50f79d0bf6007f1c7ef63215426bb2f9cae83aa5",
  2148. "shasum": "",
  2149. "mirrors": [
  2150. {
  2151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2152. "preferred": true
  2153. }
  2154. ]
  2155. },
  2156. "require": {
  2157. "hyperf/code-parser": "~3.1.0",
  2158. "hyperf/collection": "~3.1.23",
  2159. "hyperf/conditionable": "~3.1.0",
  2160. "hyperf/macroable": "~3.1.0",
  2161. "hyperf/support": "~3.1.0",
  2162. "hyperf/tappable": "~3.1.0",
  2163. "hyperf/utils": "~3.1.0",
  2164. "nesbot/carbon": "^2.0",
  2165. "php": ">=8.1",
  2166. "psr/container": "^1.0 || ^2.0",
  2167. "psr/event-dispatcher": "^1.0"
  2168. },
  2169. "suggest": {
  2170. "doctrine/dbal": "Required to rename columns (^3.0).",
  2171. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2172. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2173. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2174. },
  2175. "type": "library",
  2176. "extra": {
  2177. "branch-alias": {
  2178. "dev-master": "3.1-dev"
  2179. }
  2180. },
  2181. "autoload": {
  2182. "psr-4": {
  2183. "Hyperf\\Database\\": "src/"
  2184. }
  2185. },
  2186. "notification-url": "https://packagist.org/downloads/",
  2187. "license": [
  2188. "MIT"
  2189. ],
  2190. "description": "A flexible database library.",
  2191. "homepage": "https://hyperf.io",
  2192. "keywords": [
  2193. "database",
  2194. "hyperf",
  2195. "php"
  2196. ],
  2197. "support": {
  2198. "docs": "https://hyperf.wiki",
  2199. "issues": "https://github.com/hyperf/hyperf/issues",
  2200. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2201. "source": "https://github.com/hyperf/hyperf"
  2202. },
  2203. "funding": [
  2204. {
  2205. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2206. "type": "custom"
  2207. },
  2208. {
  2209. "url": "https://opencollective.com/hyperf",
  2210. "type": "open_collective"
  2211. }
  2212. ],
  2213. "time": "2025-04-01T09:46:46+00:00"
  2214. },
  2215. {
  2216. "name": "hyperf/db-connection",
  2217. "version": "v3.1.44",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/hyperf/db-connection.git",
  2221. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2226. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2227. "shasum": "",
  2228. "mirrors": [
  2229. {
  2230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2231. "preferred": true
  2232. }
  2233. ]
  2234. },
  2235. "require": {
  2236. "hyperf/database": "~3.1.0",
  2237. "hyperf/di": "~3.1.0",
  2238. "hyperf/framework": "~3.1.0",
  2239. "hyperf/model-listener": "~3.1.0",
  2240. "hyperf/pool": "~3.1.0",
  2241. "hyperf/support": "~3.1.0",
  2242. "hyperf/utils": "~3.1.0",
  2243. "php": ">=8.1",
  2244. "psr/container": "^1.0 || ^2.0"
  2245. },
  2246. "type": "library",
  2247. "extra": {
  2248. "hyperf": {
  2249. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2250. },
  2251. "branch-alias": {
  2252. "dev-master": "3.1-dev"
  2253. }
  2254. },
  2255. "autoload": {
  2256. "psr-4": {
  2257. "Hyperf\\DbConnection\\": "src/"
  2258. }
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "MIT"
  2263. ],
  2264. "description": "A hyperf db connection handler for hyperf/database.",
  2265. "homepage": "https://hyperf.io",
  2266. "keywords": [
  2267. "Connection",
  2268. "database",
  2269. "hyperf",
  2270. "php"
  2271. ],
  2272. "support": {
  2273. "docs": "https://hyperf.wiki",
  2274. "issues": "https://github.com/hyperf/hyperf/issues",
  2275. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2276. "source": "https://github.com/hyperf/hyperf"
  2277. },
  2278. "funding": [
  2279. {
  2280. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2281. "type": "custom"
  2282. },
  2283. {
  2284. "url": "https://opencollective.com/hyperf",
  2285. "type": "open_collective"
  2286. }
  2287. ],
  2288. "time": "2024-10-11T08:58:16+00:00"
  2289. },
  2290. {
  2291. "name": "hyperf/di",
  2292. "version": "v3.1.53",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://github.com/hyperf/di.git",
  2296. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://api.github.com/repos/hyperf/di/zipball/13a89409da739102c7fc308ef53bdd2694cb220b",
  2301. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b",
  2302. "shasum": "",
  2303. "mirrors": [
  2304. {
  2305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2306. "preferred": true
  2307. }
  2308. ]
  2309. },
  2310. "require": {
  2311. "doctrine/instantiator": "^1.0",
  2312. "hyperf/code-parser": "~3.1.0",
  2313. "hyperf/pipeline": "~3.1.0",
  2314. "hyperf/stdlib": "~3.1.0",
  2315. "hyperf/support": "~3.1.0",
  2316. "nikic/php-parser": "^4.1",
  2317. "php": ">=8.1",
  2318. "php-di/phpdoc-reader": "^2.2",
  2319. "psr/container": "^1.0 || ^2.0",
  2320. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2321. "vlucas/phpdotenv": "^5.0"
  2322. },
  2323. "suggest": {
  2324. "ext-pcntl": "Required to scan annotations.",
  2325. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2326. },
  2327. "type": "library",
  2328. "extra": {
  2329. "hyperf": {
  2330. "config": "Hyperf\\Di\\ConfigProvider"
  2331. },
  2332. "branch-alias": {
  2333. "dev-master": "3.1-dev"
  2334. }
  2335. },
  2336. "autoload": {
  2337. "psr-4": {
  2338. "Hyperf\\Di\\": "src/"
  2339. }
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "MIT"
  2344. ],
  2345. "description": "A DI for Hyperf.",
  2346. "homepage": "https://hyperf.io",
  2347. "keywords": [
  2348. "annotation",
  2349. "di",
  2350. "hyperf",
  2351. "php",
  2352. "swoole"
  2353. ],
  2354. "support": {
  2355. "docs": "https://hyperf.wiki",
  2356. "issues": "https://github.com/hyperf/hyperf/issues",
  2357. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2358. "source": "https://github.com/hyperf/hyperf"
  2359. },
  2360. "funding": [
  2361. {
  2362. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2363. "type": "custom"
  2364. },
  2365. {
  2366. "url": "https://opencollective.com/hyperf",
  2367. "type": "open_collective"
  2368. }
  2369. ],
  2370. "time": "2025-04-03T08:36:04+00:00"
  2371. },
  2372. {
  2373. "name": "hyperf/dispatcher",
  2374. "version": "v3.1.42",
  2375. "source": {
  2376. "type": "git",
  2377. "url": "https://github.com/hyperf/dispatcher.git",
  2378. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2379. },
  2380. "dist": {
  2381. "type": "zip",
  2382. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2383. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2384. "shasum": "",
  2385. "mirrors": [
  2386. {
  2387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2388. "preferred": true
  2389. }
  2390. ]
  2391. },
  2392. "require": {
  2393. "hyperf/contract": "~3.1.0",
  2394. "php": ">=8.1",
  2395. "psr/container": "^1.0 || ^2.0",
  2396. "psr/http-message": "^1.0 || ^2.0",
  2397. "psr/http-server-middleware": "^1.0"
  2398. },
  2399. "type": "library",
  2400. "extra": {
  2401. "hyperf": {
  2402. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2403. },
  2404. "branch-alias": {
  2405. "dev-master": "3.1-dev"
  2406. }
  2407. },
  2408. "autoload": {
  2409. "psr-4": {
  2410. "Hyperf\\Dispatcher\\": "src/"
  2411. }
  2412. },
  2413. "notification-url": "https://packagist.org/downloads/",
  2414. "license": [
  2415. "MIT"
  2416. ],
  2417. "description": "A HTTP Server for Hyperf.",
  2418. "homepage": "https://hyperf.io",
  2419. "keywords": [
  2420. "dispatcher",
  2421. "filter",
  2422. "hyperf",
  2423. "middleware",
  2424. "php",
  2425. "swoole"
  2426. ],
  2427. "support": {
  2428. "docs": "https://hyperf.wiki",
  2429. "issues": "https://github.com/hyperf/hyperf/issues",
  2430. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2431. "source": "https://github.com/hyperf/hyperf"
  2432. },
  2433. "funding": [
  2434. {
  2435. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2436. "type": "custom"
  2437. },
  2438. {
  2439. "url": "https://opencollective.com/hyperf",
  2440. "type": "open_collective"
  2441. }
  2442. ],
  2443. "time": "2024-09-25T02:54:12+00:00"
  2444. },
  2445. {
  2446. "name": "hyperf/engine",
  2447. "version": "v2.14.0",
  2448. "source": {
  2449. "type": "git",
  2450. "url": "https://github.com/hyperf/engine.git",
  2451. "reference": "74ec5130fa0838e285a24292a232ce455edccff8"
  2452. },
  2453. "dist": {
  2454. "type": "zip",
  2455. "url": "https://api.github.com/repos/hyperf/engine/zipball/74ec5130fa0838e285a24292a232ce455edccff8",
  2456. "reference": "74ec5130fa0838e285a24292a232ce455edccff8",
  2457. "shasum": "",
  2458. "mirrors": [
  2459. {
  2460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2461. "preferred": true
  2462. }
  2463. ]
  2464. },
  2465. "require": {
  2466. "hyperf/engine-contract": "~1.13.0",
  2467. "php": ">=8.0"
  2468. },
  2469. "conflict": {
  2470. "ext-swoole": "<5.0"
  2471. },
  2472. "require-dev": {
  2473. "friendsofphp/php-cs-fixer": "^3.0",
  2474. "hyperf/guzzle": "^3.0",
  2475. "hyperf/http-message": "^3.0",
  2476. "mockery/mockery": "^1.5",
  2477. "phpstan/phpstan": "^1.0",
  2478. "phpunit/phpunit": "^9.4",
  2479. "swoole/ide-helper": "5.*"
  2480. },
  2481. "suggest": {
  2482. "ext-sockets": "*",
  2483. "ext-swoole": ">=5.0",
  2484. "hyperf/http-message": "Required to use ResponseEmitter.",
  2485. "psr/http-message": "Required to use WebSocket Frame."
  2486. },
  2487. "type": "library",
  2488. "extra": {
  2489. "hyperf": {
  2490. "config": "Hyperf\\Engine\\ConfigProvider"
  2491. },
  2492. "branch-alias": {
  2493. "dev-master": "2.14-dev"
  2494. }
  2495. },
  2496. "autoload": {
  2497. "files": [
  2498. "src/Functions.php"
  2499. ],
  2500. "psr-4": {
  2501. "Hyperf\\Engine\\": "src/"
  2502. }
  2503. },
  2504. "notification-url": "https://packagist.org/downloads/",
  2505. "license": [
  2506. "MIT"
  2507. ],
  2508. "description": "Coroutine engine provided by swoole.",
  2509. "keywords": [
  2510. "engine",
  2511. "hyperf",
  2512. "php",
  2513. "swoole"
  2514. ],
  2515. "support": {
  2516. "issues": "https://github.com/hyperf/engine/issues",
  2517. "source": "https://github.com/hyperf/engine/tree/v2.14.0"
  2518. },
  2519. "funding": [
  2520. {
  2521. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2522. "type": "custom"
  2523. },
  2524. {
  2525. "url": "https://opencollective.com/hyperf",
  2526. "type": "open_collective"
  2527. }
  2528. ],
  2529. "time": "2025-04-13T15:11:22+00:00"
  2530. },
  2531. {
  2532. "name": "hyperf/engine-contract",
  2533. "version": "v1.13.0",
  2534. "source": {
  2535. "type": "git",
  2536. "url": "https://github.com/hyperf/engine-contract.git",
  2537. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6"
  2538. },
  2539. "dist": {
  2540. "type": "zip",
  2541. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  2542. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  2543. "shasum": "",
  2544. "mirrors": [
  2545. {
  2546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2547. "preferred": true
  2548. }
  2549. ]
  2550. },
  2551. "require": {
  2552. "php": ">=8.0"
  2553. },
  2554. "require-dev": {
  2555. "friendsofphp/php-cs-fixer": "^3.0",
  2556. "mockery/mockery": "^1.0",
  2557. "phpstan/phpstan": "^1.0",
  2558. "phpunit/phpunit": ">=7.0",
  2559. "psr/http-message": "^1.0",
  2560. "swoole/ide-helper": "^4.5"
  2561. },
  2562. "suggest": {
  2563. "psr/http-message": "Required to use WebSocket Frame."
  2564. },
  2565. "type": "library",
  2566. "extra": {
  2567. "branch-alias": {
  2568. "dev-master": "1.11-dev"
  2569. }
  2570. },
  2571. "autoload": {
  2572. "psr-4": {
  2573. "Hyperf\\Engine\\Contract\\": "src/"
  2574. }
  2575. },
  2576. "notification-url": "https://packagist.org/downloads/",
  2577. "license": [
  2578. "MIT"
  2579. ],
  2580. "description": "Contract for Coroutine Engine",
  2581. "keywords": [
  2582. "contract",
  2583. "coroutine",
  2584. "engine",
  2585. "hyperf",
  2586. "php"
  2587. ],
  2588. "support": {
  2589. "issues": "https://github.com/hyperf/engine-contract/issues",
  2590. "source": "https://github.com/hyperf/engine-contract/tree/v1.13.0"
  2591. },
  2592. "funding": [
  2593. {
  2594. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2595. "type": "custom"
  2596. },
  2597. {
  2598. "url": "https://opencollective.com/hyperf",
  2599. "type": "open_collective"
  2600. }
  2601. ],
  2602. "time": "2025-04-13T14:48:14+00:00"
  2603. },
  2604. {
  2605. "name": "hyperf/event",
  2606. "version": "v3.1.42",
  2607. "source": {
  2608. "type": "git",
  2609. "url": "https://github.com/hyperf/event.git",
  2610. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2611. },
  2612. "dist": {
  2613. "type": "zip",
  2614. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2615. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2616. "shasum": "",
  2617. "mirrors": [
  2618. {
  2619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2620. "preferred": true
  2621. }
  2622. ]
  2623. },
  2624. "require": {
  2625. "hyperf/contract": "~3.1.0",
  2626. "hyperf/stdlib": "~3.1.0",
  2627. "php": ">=8.1",
  2628. "psr/event-dispatcher": "^1.0"
  2629. },
  2630. "suggest": {
  2631. "hyperf/di": "Required to use annotatioins."
  2632. },
  2633. "type": "library",
  2634. "extra": {
  2635. "hyperf": {
  2636. "config": "Hyperf\\Event\\ConfigProvider"
  2637. },
  2638. "branch-alias": {
  2639. "dev-master": "3.1-dev"
  2640. }
  2641. },
  2642. "autoload": {
  2643. "psr-4": {
  2644. "Hyperf\\Event\\": "src/"
  2645. }
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "MIT"
  2650. ],
  2651. "description": "an event manager that implements PSR-14.",
  2652. "homepage": "https://hyperf.io",
  2653. "keywords": [
  2654. "event",
  2655. "hyperf",
  2656. "php",
  2657. "swoole"
  2658. ],
  2659. "support": {
  2660. "docs": "https://hyperf.wiki",
  2661. "issues": "https://github.com/hyperf/hyperf/issues",
  2662. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2663. "source": "https://github.com/hyperf/hyperf"
  2664. },
  2665. "funding": [
  2666. {
  2667. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2668. "type": "custom"
  2669. },
  2670. {
  2671. "url": "https://opencollective.com/hyperf",
  2672. "type": "open_collective"
  2673. }
  2674. ],
  2675. "time": "2024-09-25T02:54:12+00:00"
  2676. },
  2677. {
  2678. "name": "hyperf/exception-handler",
  2679. "version": "v3.1.42",
  2680. "source": {
  2681. "type": "git",
  2682. "url": "https://github.com/hyperf/exception-handler.git",
  2683. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2684. },
  2685. "dist": {
  2686. "type": "zip",
  2687. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2688. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2689. "shasum": "",
  2690. "mirrors": [
  2691. {
  2692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2693. "preferred": true
  2694. }
  2695. ]
  2696. },
  2697. "require": {
  2698. "hyperf/context": "~3.1.0",
  2699. "hyperf/contract": "~3.1.0",
  2700. "hyperf/dispatcher": "~3.1.0",
  2701. "hyperf/http-message": "~3.1.0",
  2702. "hyperf/stdlib": "~3.1.0",
  2703. "hyperf/support": "~3.1.0",
  2704. "php": ">=8.1",
  2705. "psr/container": "^1.0 || ^2.0",
  2706. "psr/http-message": "^1.0 || ^2.0",
  2707. "swow/psr7-plus": "^1.0"
  2708. },
  2709. "suggest": {
  2710. "hyperf/di": "Required to use #[ExceptionHandler]",
  2711. "hyperf/event": "Required to use listeners",
  2712. "hyperf/framework": "Required to use listeners",
  2713. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2714. },
  2715. "type": "library",
  2716. "extra": {
  2717. "hyperf": {
  2718. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2719. },
  2720. "branch-alias": {
  2721. "dev-master": "3.1-dev"
  2722. }
  2723. },
  2724. "autoload": {
  2725. "psr-4": {
  2726. "Hyperf\\ExceptionHandler\\": "src/"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "description": "Exception handler for hyperf",
  2734. "homepage": "https://hyperf.io",
  2735. "keywords": [
  2736. "exception-handler",
  2737. "php",
  2738. "swoole"
  2739. ],
  2740. "support": {
  2741. "docs": "https://hyperf.wiki",
  2742. "issues": "https://github.com/hyperf/hyperf/issues",
  2743. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2744. "source": "https://github.com/hyperf/hyperf"
  2745. },
  2746. "funding": [
  2747. {
  2748. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2749. "type": "custom"
  2750. },
  2751. {
  2752. "url": "https://opencollective.com/hyperf",
  2753. "type": "open_collective"
  2754. }
  2755. ],
  2756. "time": "2024-09-25T02:54:12+00:00"
  2757. },
  2758. {
  2759. "name": "hyperf/framework",
  2760. "version": "v3.1.42",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://github.com/hyperf/framework.git",
  2764. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2769. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2770. "shasum": "",
  2771. "mirrors": [
  2772. {
  2773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2774. "preferred": true
  2775. }
  2776. ]
  2777. },
  2778. "require": {
  2779. "fig/http-message-util": "^1.1.2",
  2780. "hyperf/contract": "~3.1.0",
  2781. "hyperf/coordinator": "~3.1.0",
  2782. "hyperf/coroutine": "~3.1.0",
  2783. "php": ">=8.1",
  2784. "psr/container": "^1.0 || ^2.0",
  2785. "psr/event-dispatcher": "^1.0",
  2786. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2787. },
  2788. "suggest": {
  2789. "ext-swoole": "Required to use swoole engine.",
  2790. "hyperf/command": "Required to use Command annotation.",
  2791. "hyperf/di": "Required to use Command annotation.",
  2792. "hyperf/dispatcher": "Required to use BootApplication event.",
  2793. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2794. },
  2795. "type": "library",
  2796. "extra": {
  2797. "hyperf": {
  2798. "config": "Hyperf\\Framework\\ConfigProvider"
  2799. },
  2800. "branch-alias": {
  2801. "dev-master": "3.1-dev"
  2802. }
  2803. },
  2804. "autoload": {
  2805. "psr-4": {
  2806. "Hyperf\\Framework\\": "src/"
  2807. }
  2808. },
  2809. "notification-url": "https://packagist.org/downloads/",
  2810. "license": [
  2811. "MIT"
  2812. ],
  2813. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2814. "homepage": "https://hyperf.io",
  2815. "keywords": [
  2816. "Microservice",
  2817. "framework",
  2818. "hyperf",
  2819. "middleware",
  2820. "php",
  2821. "swoole"
  2822. ],
  2823. "support": {
  2824. "docs": "https://hyperf.wiki",
  2825. "issues": "https://github.com/hyperf/hyperf/issues",
  2826. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2827. "source": "https://github.com/hyperf/hyperf"
  2828. },
  2829. "funding": [
  2830. {
  2831. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2832. "type": "custom"
  2833. },
  2834. {
  2835. "url": "https://opencollective.com/hyperf",
  2836. "type": "open_collective"
  2837. }
  2838. ],
  2839. "time": "2024-09-25T02:54:12+00:00"
  2840. },
  2841. {
  2842. "name": "hyperf/guzzle",
  2843. "version": "v3.1.42",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://github.com/hyperf/guzzle.git",
  2847. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2852. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2853. "shasum": "",
  2854. "mirrors": [
  2855. {
  2856. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2857. "preferred": true
  2858. }
  2859. ]
  2860. },
  2861. "require": {
  2862. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2863. "php": ">=8.1",
  2864. "psr/container": "^1.0 || ^2.0",
  2865. "psr/http-message": "^1.0 || ^2.0"
  2866. },
  2867. "suggest": {
  2868. "ext-curl": "Required for CURL handler support",
  2869. "hyperf/pool": "Required to use pool handler."
  2870. },
  2871. "type": "library",
  2872. "extra": {
  2873. "hyperf": {
  2874. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2875. },
  2876. "branch-alias": {
  2877. "dev-master": "3.1-dev"
  2878. }
  2879. },
  2880. "autoload": {
  2881. "psr-4": {
  2882. "Hyperf\\Guzzle\\": "src/"
  2883. }
  2884. },
  2885. "notification-url": "https://packagist.org/downloads/",
  2886. "license": [
  2887. "MIT"
  2888. ],
  2889. "description": "Swoole coroutine handler for guzzle",
  2890. "keywords": [
  2891. "Guzzle",
  2892. "handler",
  2893. "php",
  2894. "swoole"
  2895. ],
  2896. "support": {
  2897. "issues": "https://github.com/hyperf/guzzle/issues",
  2898. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2899. },
  2900. "funding": [
  2901. {
  2902. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2903. "type": "custom"
  2904. },
  2905. {
  2906. "url": "https://opencollective.com/hyperf",
  2907. "type": "open_collective"
  2908. }
  2909. ],
  2910. "time": "2024-09-25T02:54:12+00:00"
  2911. },
  2912. {
  2913. "name": "hyperf/http-message",
  2914. "version": "v3.1.48",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/hyperf/http-message.git",
  2918. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2923. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2924. "shasum": "",
  2925. "mirrors": [
  2926. {
  2927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2928. "preferred": true
  2929. }
  2930. ]
  2931. },
  2932. "require": {
  2933. "hyperf/codec": "~3.1.0",
  2934. "hyperf/engine": "^2.11",
  2935. "hyperf/support": "~3.1.0",
  2936. "laminas/laminas-mime": "^2.7",
  2937. "php": ">=8.1",
  2938. "psr/http-message": "^1.0 || ^2.0",
  2939. "swow/psr7-plus": "^1.0"
  2940. },
  2941. "suggest": {
  2942. "psr/container": "Required to replace RequestParserInterface."
  2943. },
  2944. "type": "library",
  2945. "extra": {
  2946. "hyperf": {
  2947. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2948. },
  2949. "branch-alias": {
  2950. "dev-master": "3.1-dev"
  2951. }
  2952. },
  2953. "autoload": {
  2954. "psr-4": {
  2955. "Hyperf\\HttpMessage\\": "src/"
  2956. }
  2957. },
  2958. "notification-url": "https://packagist.org/downloads/",
  2959. "license": [
  2960. "MIT"
  2961. ],
  2962. "description": "microservice framework base on swoole",
  2963. "keywords": [
  2964. "http-message",
  2965. "hyperf",
  2966. "php",
  2967. "swoole"
  2968. ],
  2969. "support": {
  2970. "issues": "https://github.com/hyperf/http-message/issues",
  2971. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2972. },
  2973. "funding": [
  2974. {
  2975. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2976. "type": "custom"
  2977. },
  2978. {
  2979. "url": "https://opencollective.com/hyperf",
  2980. "type": "open_collective"
  2981. }
  2982. ],
  2983. "time": "2024-12-05T02:41:08+00:00"
  2984. },
  2985. {
  2986. "name": "hyperf/http-server",
  2987. "version": "v3.1.42",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/hyperf/http-server.git",
  2991. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2996. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2997. "shasum": "",
  2998. "mirrors": [
  2999. {
  3000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3001. "preferred": true
  3002. }
  3003. ]
  3004. },
  3005. "require": {
  3006. "hyperf/codec": "~3.1.0",
  3007. "hyperf/collection": "~3.1.0",
  3008. "hyperf/context": "~3.1.0",
  3009. "hyperf/contract": "~3.1.0",
  3010. "hyperf/coroutine": "~3.1.0",
  3011. "hyperf/dispatcher": "~3.1.0",
  3012. "hyperf/event": "~3.1.0",
  3013. "hyperf/exception-handler": "~3.1.0",
  3014. "hyperf/http-message": "~3.1.0",
  3015. "hyperf/macroable": "~3.1.0",
  3016. "hyperf/serializer": "~3.1.0",
  3017. "hyperf/server": "~3.1.0",
  3018. "hyperf/stdlib": "~3.1.0",
  3019. "hyperf/support": "~3.1.0",
  3020. "nikic/fast-route": "^1.3",
  3021. "php": ">=8.1",
  3022. "psr/container": "^1.0 || ^2.0",
  3023. "swow/psr7-plus": "^1.0"
  3024. },
  3025. "suggest": {
  3026. "hyperf/di": "Required to use annotations."
  3027. },
  3028. "type": "library",
  3029. "extra": {
  3030. "hyperf": {
  3031. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3032. },
  3033. "branch-alias": {
  3034. "dev-master": "3.1-dev"
  3035. }
  3036. },
  3037. "autoload": {
  3038. "psr-4": {
  3039. "Hyperf\\HttpServer\\": "src/"
  3040. }
  3041. },
  3042. "notification-url": "https://packagist.org/downloads/",
  3043. "license": [
  3044. "MIT"
  3045. ],
  3046. "description": "A HTTP Server for Hyperf.",
  3047. "homepage": "https://hyperf.io",
  3048. "keywords": [
  3049. "http",
  3050. "http-server",
  3051. "hyperf",
  3052. "php",
  3053. "swoole"
  3054. ],
  3055. "support": {
  3056. "docs": "https://hyperf.wiki",
  3057. "issues": "https://github.com/hyperf/hyperf/issues",
  3058. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3059. "source": "https://github.com/hyperf/hyperf"
  3060. },
  3061. "funding": [
  3062. {
  3063. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3064. "type": "custom"
  3065. },
  3066. {
  3067. "url": "https://opencollective.com/hyperf",
  3068. "type": "open_collective"
  3069. }
  3070. ],
  3071. "time": "2024-09-25T02:54:12+00:00"
  3072. },
  3073. {
  3074. "name": "hyperf/json-rpc",
  3075. "version": "v3.1.47",
  3076. "source": {
  3077. "type": "git",
  3078. "url": "https://github.com/hyperf/json-rpc.git",
  3079. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3080. },
  3081. "dist": {
  3082. "type": "zip",
  3083. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3084. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3085. "shasum": "",
  3086. "mirrors": [
  3087. {
  3088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3089. "preferred": true
  3090. }
  3091. ]
  3092. },
  3093. "require": {
  3094. "hyperf/codec": "~3.1.0",
  3095. "hyperf/context": "~3.1.0",
  3096. "hyperf/contract": "~3.1.0",
  3097. "hyperf/engine": "^2.0",
  3098. "hyperf/http-message": "~3.1.0",
  3099. "hyperf/load-balancer": "~3.1.0",
  3100. "hyperf/rpc": "~3.1.0",
  3101. "hyperf/serializer": "~3.1.0",
  3102. "hyperf/support": "~3.1.0",
  3103. "hyperf/utils": "~3.1.0",
  3104. "php": ">=8.1",
  3105. "psr/container": "^1.0 || ^2.0",
  3106. "swow/psr7-plus": "^1.0"
  3107. },
  3108. "suggest": {
  3109. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3110. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3111. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3112. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3113. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3114. },
  3115. "type": "library",
  3116. "extra": {
  3117. "hyperf": {
  3118. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3119. },
  3120. "branch-alias": {
  3121. "dev-master": "3.1-dev"
  3122. }
  3123. },
  3124. "autoload": {
  3125. "psr-4": {
  3126. "Hyperf\\JsonRpc\\": "src/"
  3127. }
  3128. },
  3129. "notification-url": "https://packagist.org/downloads/",
  3130. "license": [
  3131. "MIT"
  3132. ],
  3133. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3134. "homepage": "https://hyperf.io",
  3135. "keywords": [
  3136. "hyperf",
  3137. "json-rpc",
  3138. "php",
  3139. "swoole"
  3140. ],
  3141. "support": {
  3142. "docs": "https://hyperf.wiki",
  3143. "issues": "https://github.com/hyperf/hyperf/issues",
  3144. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3145. "source": "https://github.com/hyperf/hyperf"
  3146. },
  3147. "funding": [
  3148. {
  3149. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3150. "type": "custom"
  3151. },
  3152. {
  3153. "url": "https://opencollective.com/hyperf",
  3154. "type": "open_collective"
  3155. }
  3156. ],
  3157. "time": "2024-11-28T01:51:55+00:00"
  3158. },
  3159. {
  3160. "name": "hyperf/load-balancer",
  3161. "version": "v3.1.42",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/hyperf/load-balancer.git",
  3165. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3170. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3171. "shasum": "",
  3172. "mirrors": [
  3173. {
  3174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3175. "preferred": true
  3176. }
  3177. ]
  3178. },
  3179. "require": {
  3180. "hyperf/coordinator": "~3.1.0",
  3181. "hyperf/coroutine": "~3.1.0",
  3182. "markrogoyski/math-php": "^2.0",
  3183. "php": ">=8.1",
  3184. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3185. },
  3186. "type": "library",
  3187. "extra": {
  3188. "hyperf": {
  3189. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3190. },
  3191. "branch-alias": {
  3192. "dev-master": "3.1-dev"
  3193. }
  3194. },
  3195. "autoload": {
  3196. "psr-4": {
  3197. "Hyperf\\LoadBalancer\\": "src/"
  3198. }
  3199. },
  3200. "notification-url": "https://packagist.org/downloads/",
  3201. "license": [
  3202. "MIT"
  3203. ],
  3204. "description": "A load balancer library for Hyperf.",
  3205. "homepage": "https://hyperf.io",
  3206. "keywords": [
  3207. "hyperf",
  3208. "load-balancer",
  3209. "php",
  3210. "swoole"
  3211. ],
  3212. "support": {
  3213. "docs": "https://hyperf.wiki",
  3214. "issues": "https://github.com/hyperf/hyperf/issues",
  3215. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3216. "source": "https://github.com/hyperf/hyperf"
  3217. },
  3218. "funding": [
  3219. {
  3220. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3221. "type": "custom"
  3222. },
  3223. {
  3224. "url": "https://opencollective.com/hyperf",
  3225. "type": "open_collective"
  3226. }
  3227. ],
  3228. "time": "2024-09-25T02:54:12+00:00"
  3229. },
  3230. {
  3231. "name": "hyperf/logger",
  3232. "version": "v3.1.42",
  3233. "source": {
  3234. "type": "git",
  3235. "url": "https://github.com/hyperf/logger.git",
  3236. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3237. },
  3238. "dist": {
  3239. "type": "zip",
  3240. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3241. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3242. "shasum": "",
  3243. "mirrors": [
  3244. {
  3245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3246. "preferred": true
  3247. }
  3248. ]
  3249. },
  3250. "require": {
  3251. "hyperf/contract": "~3.1.0",
  3252. "hyperf/support": "~3.1.0",
  3253. "hyperf/utils": "~3.1.0",
  3254. "monolog/monolog": "^2.7 || ^3.1",
  3255. "php": ">=8.1",
  3256. "psr/container": "^1.0 || ^2.0",
  3257. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3258. },
  3259. "type": "library",
  3260. "extra": {
  3261. "hyperf": {
  3262. "config": "Hyperf\\Logger\\ConfigProvider"
  3263. },
  3264. "branch-alias": {
  3265. "dev-master": "3.1-dev"
  3266. }
  3267. },
  3268. "autoload": {
  3269. "psr-4": {
  3270. "Hyperf\\Logger\\": "src/"
  3271. }
  3272. },
  3273. "notification-url": "https://packagist.org/downloads/",
  3274. "license": [
  3275. "MIT"
  3276. ],
  3277. "description": "A logger component for hyperf.",
  3278. "homepage": "https://hyperf.io",
  3279. "keywords": [
  3280. "hyperf",
  3281. "logger",
  3282. "php"
  3283. ],
  3284. "support": {
  3285. "docs": "https://hyperf.wiki",
  3286. "issues": "https://github.com/hyperf/hyperf/issues",
  3287. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3288. "source": "https://github.com/hyperf/hyperf"
  3289. },
  3290. "funding": [
  3291. {
  3292. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3293. "type": "custom"
  3294. },
  3295. {
  3296. "url": "https://opencollective.com/hyperf",
  3297. "type": "open_collective"
  3298. }
  3299. ],
  3300. "time": "2024-09-25T02:54:12+00:00"
  3301. },
  3302. {
  3303. "name": "hyperf/macroable",
  3304. "version": "v3.1.42",
  3305. "source": {
  3306. "type": "git",
  3307. "url": "https://github.com/hyperf/macroable.git",
  3308. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3309. },
  3310. "dist": {
  3311. "type": "zip",
  3312. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3313. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3314. "shasum": "",
  3315. "mirrors": [
  3316. {
  3317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3318. "preferred": true
  3319. }
  3320. ]
  3321. },
  3322. "require": {
  3323. "php": ">=8.1"
  3324. },
  3325. "type": "library",
  3326. "extra": {
  3327. "branch-alias": {
  3328. "dev-master": "3.1-dev"
  3329. }
  3330. },
  3331. "autoload": {
  3332. "psr-4": {
  3333. "Hyperf\\Macroable\\": "src/"
  3334. }
  3335. },
  3336. "notification-url": "https://packagist.org/downloads/",
  3337. "license": [
  3338. "MIT"
  3339. ],
  3340. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3341. "homepage": "https://hyperf.io",
  3342. "keywords": [
  3343. "hyperf",
  3344. "macroable",
  3345. "php",
  3346. "swoole"
  3347. ],
  3348. "support": {
  3349. "docs": "https://hyperf.wiki",
  3350. "issues": "https://github.com/hyperf/hyperf/issues",
  3351. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3352. "source": "https://github.com/hyperf/hyperf"
  3353. },
  3354. "funding": [
  3355. {
  3356. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3357. "type": "custom"
  3358. },
  3359. {
  3360. "url": "https://opencollective.com/hyperf",
  3361. "type": "open_collective"
  3362. }
  3363. ],
  3364. "time": "2024-09-25T02:54:12+00:00"
  3365. },
  3366. {
  3367. "name": "hyperf/memory",
  3368. "version": "v3.1.53",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/hyperf/memory.git",
  3372. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/hyperf/memory/zipball/74a3093ee766e18f912269f6846a63ae21a4360b",
  3377. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b",
  3378. "shasum": "",
  3379. "mirrors": [
  3380. {
  3381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3382. "preferred": true
  3383. }
  3384. ]
  3385. },
  3386. "require": {
  3387. "php": ">=8.1"
  3388. },
  3389. "type": "library",
  3390. "extra": {
  3391. "hyperf": {
  3392. "config": "Hyperf\\Memory\\ConfigProvider"
  3393. },
  3394. "branch-alias": {
  3395. "dev-master": "3.1-dev"
  3396. }
  3397. },
  3398. "autoload": {
  3399. "psr-4": {
  3400. "Hyperf\\Memory\\": "src/"
  3401. }
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "MIT"
  3406. ],
  3407. "description": "An independent component that use to operate and manage memory.",
  3408. "homepage": "https://hyperf.io",
  3409. "keywords": [
  3410. "hyperf",
  3411. "memory",
  3412. "php",
  3413. "swoole"
  3414. ],
  3415. "support": {
  3416. "docs": "https://hyperf.wiki",
  3417. "issues": "https://github.com/hyperf/hyperf/issues",
  3418. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3419. "source": "https://github.com/hyperf/hyperf"
  3420. },
  3421. "funding": [
  3422. {
  3423. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3424. "type": "custom"
  3425. },
  3426. {
  3427. "url": "https://opencollective.com/hyperf",
  3428. "type": "open_collective"
  3429. }
  3430. ],
  3431. "time": "2025-04-03T09:12:55+00:00"
  3432. },
  3433. {
  3434. "name": "hyperf/model-listener",
  3435. "version": "v3.1.42",
  3436. "source": {
  3437. "type": "git",
  3438. "url": "https://github.com/hyperf/model-listener.git",
  3439. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3440. },
  3441. "dist": {
  3442. "type": "zip",
  3443. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3444. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3445. "shasum": "",
  3446. "mirrors": [
  3447. {
  3448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3449. "preferred": true
  3450. }
  3451. ]
  3452. },
  3453. "require": {
  3454. "hyperf/contract": "~3.1.0",
  3455. "hyperf/database": "~3.1.0",
  3456. "hyperf/di": "~3.1.0",
  3457. "hyperf/event": "~3.1.0",
  3458. "hyperf/support": "~3.1.0",
  3459. "hyperf/utils": "~3.1.0",
  3460. "php": ">=8.1",
  3461. "psr/container": "^1.0 || ^2.0"
  3462. },
  3463. "type": "library",
  3464. "extra": {
  3465. "hyperf": {
  3466. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3467. },
  3468. "branch-alias": {
  3469. "dev-master": "3.1-dev"
  3470. }
  3471. },
  3472. "autoload": {
  3473. "psr-4": {
  3474. "Hyperf\\ModelListener\\": "src/"
  3475. }
  3476. },
  3477. "notification-url": "https://packagist.org/downloads/",
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "description": "A model listener for Hyperf.",
  3482. "homepage": "https://hyperf.io",
  3483. "keywords": [
  3484. "hyperf",
  3485. "model-listener",
  3486. "php",
  3487. "swoole"
  3488. ],
  3489. "support": {
  3490. "docs": "https://hyperf.wiki",
  3491. "issues": "https://github.com/hyperf/hyperf/issues",
  3492. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3493. "source": "https://github.com/hyperf/hyperf"
  3494. },
  3495. "funding": [
  3496. {
  3497. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3498. "type": "custom"
  3499. },
  3500. {
  3501. "url": "https://opencollective.com/hyperf",
  3502. "type": "open_collective"
  3503. }
  3504. ],
  3505. "time": "2024-09-25T02:54:12+00:00"
  3506. },
  3507. {
  3508. "name": "hyperf/nacos",
  3509. "version": "v3.1.52",
  3510. "source": {
  3511. "type": "git",
  3512. "url": "https://github.com/hyperf/nacos.git",
  3513. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01"
  3514. },
  3515. "dist": {
  3516. "type": "zip",
  3517. "url": "https://api.github.com/repos/hyperf/nacos/zipball/6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  3518. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  3519. "shasum": "",
  3520. "mirrors": [
  3521. {
  3522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3523. "preferred": true
  3524. }
  3525. ]
  3526. },
  3527. "require": {
  3528. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3529. "hyperf/codec": "~3.1.0",
  3530. "hyperf/contract": "~3.1.0",
  3531. "hyperf/support": "~3.1.0",
  3532. "hyperf/utils": "~3.1.0",
  3533. "jetbrains/phpstorm-attributes": "^1.0",
  3534. "php": ">=8.1"
  3535. },
  3536. "type": "library",
  3537. "extra": {
  3538. "hyperf": {
  3539. "config": "Hyperf\\Nacos\\ConfigProvider"
  3540. },
  3541. "branch-alias": {
  3542. "dev-master": "3.1-dev"
  3543. }
  3544. },
  3545. "autoload": {
  3546. "psr-4": {
  3547. "Hyperf\\Nacos\\": "src/"
  3548. }
  3549. },
  3550. "notification-url": "https://packagist.org/downloads/",
  3551. "license": [
  3552. "MIT"
  3553. ],
  3554. "description": "Nacos SDK",
  3555. "keywords": [
  3556. "hyperf",
  3557. "nacos",
  3558. "php"
  3559. ],
  3560. "support": {
  3561. "issues": "https://github.com/hyperf/nacos/issues",
  3562. "source": "https://github.com/hyperf/nacos/tree/v3.1.52"
  3563. },
  3564. "funding": [
  3565. {
  3566. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3567. "type": "custom"
  3568. },
  3569. {
  3570. "url": "https://opencollective.com/hyperf",
  3571. "type": "open_collective"
  3572. }
  3573. ],
  3574. "time": "2025-02-27T06:49:30+00:00"
  3575. },
  3576. {
  3577. "name": "hyperf/paginator",
  3578. "version": "v3.1.49",
  3579. "source": {
  3580. "type": "git",
  3581. "url": "https://github.com/hyperf/paginator.git",
  3582. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3583. },
  3584. "dist": {
  3585. "type": "zip",
  3586. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3587. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3588. "shasum": "",
  3589. "mirrors": [
  3590. {
  3591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3592. "preferred": true
  3593. }
  3594. ]
  3595. },
  3596. "require": {
  3597. "hyperf/contract": "~3.1.0",
  3598. "hyperf/support": "~3.1.0",
  3599. "hyperf/utils": "~3.1.0",
  3600. "php": ">=8.1"
  3601. },
  3602. "suggest": {
  3603. "hyperf/event": "Reqiured to use PageResolverListener.",
  3604. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3605. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3606. },
  3607. "type": "library",
  3608. "extra": {
  3609. "hyperf": {
  3610. "config": "Hyperf\\Paginator\\ConfigProvider"
  3611. },
  3612. "branch-alias": {
  3613. "dev-master": "3.1-dev"
  3614. }
  3615. },
  3616. "autoload": {
  3617. "psr-4": {
  3618. "Hyperf\\Paginator\\": "src/"
  3619. }
  3620. },
  3621. "notification-url": "https://packagist.org/downloads/",
  3622. "license": [
  3623. "MIT"
  3624. ],
  3625. "description": "A paginator component for hyperf.",
  3626. "homepage": "https://hyperf.io",
  3627. "keywords": [
  3628. "hyperf",
  3629. "paginator",
  3630. "php"
  3631. ],
  3632. "support": {
  3633. "docs": "https://hyperf.wiki",
  3634. "issues": "https://github.com/hyperf/hyperf/issues",
  3635. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3636. "source": "https://github.com/hyperf/hyperf"
  3637. },
  3638. "funding": [
  3639. {
  3640. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3641. "type": "custom"
  3642. },
  3643. {
  3644. "url": "https://opencollective.com/hyperf",
  3645. "type": "open_collective"
  3646. }
  3647. ],
  3648. "time": "2024-12-17T09:42:13+00:00"
  3649. },
  3650. {
  3651. "name": "hyperf/pipeline",
  3652. "version": "v3.1.42",
  3653. "source": {
  3654. "type": "git",
  3655. "url": "https://github.com/hyperf/pipeline.git",
  3656. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3657. },
  3658. "dist": {
  3659. "type": "zip",
  3660. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3661. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3662. "shasum": "",
  3663. "mirrors": [
  3664. {
  3665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3666. "preferred": true
  3667. }
  3668. ]
  3669. },
  3670. "require": {
  3671. "php": ">=8.1",
  3672. "psr/container": "^1.0 || ^2.0"
  3673. },
  3674. "type": "library",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-master": "3.1-dev"
  3678. }
  3679. },
  3680. "autoload": {
  3681. "psr-4": {
  3682. "Hyperf\\Pipeline\\": "src/"
  3683. }
  3684. },
  3685. "notification-url": "https://packagist.org/downloads/",
  3686. "license": [
  3687. "MIT"
  3688. ],
  3689. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3690. "homepage": "https://hyperf.io",
  3691. "keywords": [
  3692. "hyperf",
  3693. "php",
  3694. "pipeline",
  3695. "swoole"
  3696. ],
  3697. "support": {
  3698. "docs": "https://hyperf.wiki",
  3699. "issues": "https://github.com/hyperf/hyperf/issues",
  3700. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3701. "source": "https://github.com/hyperf/hyperf"
  3702. },
  3703. "funding": [
  3704. {
  3705. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3706. "type": "custom"
  3707. },
  3708. {
  3709. "url": "https://opencollective.com/hyperf",
  3710. "type": "open_collective"
  3711. }
  3712. ],
  3713. "time": "2024-09-25T02:54:12+00:00"
  3714. },
  3715. {
  3716. "name": "hyperf/pool",
  3717. "version": "v3.1.42",
  3718. "source": {
  3719. "type": "git",
  3720. "url": "https://github.com/hyperf/pool.git",
  3721. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3722. },
  3723. "dist": {
  3724. "type": "zip",
  3725. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3726. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3727. "shasum": "",
  3728. "mirrors": [
  3729. {
  3730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3731. "preferred": true
  3732. }
  3733. ]
  3734. },
  3735. "require": {
  3736. "hyperf/contract": "~3.1.0",
  3737. "hyperf/support": "~3.1.0",
  3738. "hyperf/utils": "~3.1.0",
  3739. "php": ">=8.1",
  3740. "psr/container": "^1.0 || ^2.0"
  3741. },
  3742. "suggest": {
  3743. "psr/event-dispatcher": "Required to use events."
  3744. },
  3745. "type": "library",
  3746. "extra": {
  3747. "hyperf": {
  3748. "config": "Hyperf\\Pool\\ConfigProvider"
  3749. },
  3750. "branch-alias": {
  3751. "dev-master": "3.1-dev"
  3752. }
  3753. },
  3754. "autoload": {
  3755. "psr-4": {
  3756. "Hyperf\\Pool\\": "src/"
  3757. }
  3758. },
  3759. "notification-url": "https://packagist.org/downloads/",
  3760. "license": [
  3761. "MIT"
  3762. ],
  3763. "description": "An independent universal connection pool component.",
  3764. "homepage": "https://hyperf.io",
  3765. "keywords": [
  3766. "connection-pool",
  3767. "hyperf",
  3768. "php",
  3769. "swoole"
  3770. ],
  3771. "support": {
  3772. "docs": "https://hyperf.wiki",
  3773. "issues": "https://github.com/hyperf/hyperf/issues",
  3774. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3775. "source": "https://github.com/hyperf/hyperf"
  3776. },
  3777. "funding": [
  3778. {
  3779. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3780. "type": "custom"
  3781. },
  3782. {
  3783. "url": "https://opencollective.com/hyperf",
  3784. "type": "open_collective"
  3785. }
  3786. ],
  3787. "time": "2024-09-25T02:54:12+00:00"
  3788. },
  3789. {
  3790. "name": "hyperf/process",
  3791. "version": "v3.1.48",
  3792. "source": {
  3793. "type": "git",
  3794. "url": "https://github.com/hyperf/process.git",
  3795. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3796. },
  3797. "dist": {
  3798. "type": "zip",
  3799. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3800. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3801. "shasum": "",
  3802. "mirrors": [
  3803. {
  3804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3805. "preferred": true
  3806. }
  3807. ]
  3808. },
  3809. "require": {
  3810. "hyperf/contract": "~3.1.0",
  3811. "hyperf/support": "~3.1.0",
  3812. "hyperf/utils": "~3.1.0",
  3813. "php": ">=8.1",
  3814. "psr/container": "^1.0 || ^2.0",
  3815. "psr/event-dispatcher": "^1.0"
  3816. },
  3817. "suggest": {
  3818. "hyperf/di": "Required to use annotations.",
  3819. "hyperf/event": "Required to dump the message before and after process.",
  3820. "hyperf/framework": "Required to use BootProcessListener."
  3821. },
  3822. "type": "library",
  3823. "extra": {
  3824. "hyperf": {
  3825. "config": "Hyperf\\Process\\ConfigProvider"
  3826. },
  3827. "branch-alias": {
  3828. "dev-master": "3.1-dev"
  3829. }
  3830. },
  3831. "autoload": {
  3832. "psr-4": {
  3833. "Hyperf\\Process\\": "src/"
  3834. }
  3835. },
  3836. "notification-url": "https://packagist.org/downloads/",
  3837. "license": [
  3838. "MIT"
  3839. ],
  3840. "description": "A process component for hyperf.",
  3841. "homepage": "https://hyperf.io",
  3842. "keywords": [
  3843. "hyperf",
  3844. "php",
  3845. "process"
  3846. ],
  3847. "support": {
  3848. "docs": "https://hyperf.wiki",
  3849. "issues": "https://github.com/hyperf/hyperf/issues",
  3850. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3851. "source": "https://github.com/hyperf/hyperf"
  3852. },
  3853. "funding": [
  3854. {
  3855. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3856. "type": "custom"
  3857. },
  3858. {
  3859. "url": "https://opencollective.com/hyperf",
  3860. "type": "open_collective"
  3861. }
  3862. ],
  3863. "time": "2024-12-02T10:54:30+00:00"
  3864. },
  3865. {
  3866. "name": "hyperf/redis",
  3867. "version": "v3.1.53",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/hyperf/redis.git",
  3871. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/hyperf/redis/zipball/d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3876. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3877. "shasum": "",
  3878. "mirrors": [
  3879. {
  3880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3881. "preferred": true
  3882. }
  3883. ]
  3884. },
  3885. "require": {
  3886. "ext-redis": "^5.0 || ^6.0",
  3887. "hyperf/contract": "~3.1.0",
  3888. "hyperf/pool": "~3.1.0",
  3889. "hyperf/support": "~3.1.0",
  3890. "hyperf/tappable": "~3.1.0",
  3891. "hyperf/utils": "~3.1.0",
  3892. "php": ">=8.1",
  3893. "psr/container": "^1.0 || ^2.0"
  3894. },
  3895. "suggest": {
  3896. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3897. "hyperf/di": "Create the RedisPool via dependency injection."
  3898. },
  3899. "type": "library",
  3900. "extra": {
  3901. "hyperf": {
  3902. "config": "Hyperf\\Redis\\ConfigProvider"
  3903. },
  3904. "branch-alias": {
  3905. "dev-master": "3.1-dev"
  3906. }
  3907. },
  3908. "autoload": {
  3909. "psr-4": {
  3910. "Hyperf\\Redis\\": "src/"
  3911. }
  3912. },
  3913. "notification-url": "https://packagist.org/downloads/",
  3914. "license": [
  3915. "MIT"
  3916. ],
  3917. "description": "A redis component for hyperf.",
  3918. "homepage": "https://hyperf.io",
  3919. "keywords": [
  3920. "hyperf",
  3921. "php",
  3922. "pool",
  3923. "redis"
  3924. ],
  3925. "support": {
  3926. "docs": "https://hyperf.wiki",
  3927. "issues": "https://github.com/hyperf/hyperf/issues",
  3928. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3929. "source": "https://github.com/hyperf/hyperf"
  3930. },
  3931. "funding": [
  3932. {
  3933. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3934. "type": "custom"
  3935. },
  3936. {
  3937. "url": "https://opencollective.com/hyperf",
  3938. "type": "open_collective"
  3939. }
  3940. ],
  3941. "time": "2025-04-03T07:31:20+00:00"
  3942. },
  3943. {
  3944. "name": "hyperf/rpc",
  3945. "version": "v3.1.42",
  3946. "source": {
  3947. "type": "git",
  3948. "url": "https://github.com/hyperf/rpc.git",
  3949. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3950. },
  3951. "dist": {
  3952. "type": "zip",
  3953. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3954. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3955. "shasum": "",
  3956. "mirrors": [
  3957. {
  3958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3959. "preferred": true
  3960. }
  3961. ]
  3962. },
  3963. "require": {
  3964. "hyperf/codec": "~3.1.0",
  3965. "hyperf/contract": "~3.1.0",
  3966. "hyperf/support": "~3.1.0",
  3967. "jetbrains/phpstorm-attributes": "^1.0",
  3968. "php": ">=8.1"
  3969. },
  3970. "type": "library",
  3971. "extra": {
  3972. "hyperf": [],
  3973. "branch-alias": {
  3974. "dev-master": "3.1-dev"
  3975. }
  3976. },
  3977. "autoload": {
  3978. "psr-4": {
  3979. "Hyperf\\Rpc\\": "src/"
  3980. }
  3981. },
  3982. "notification-url": "https://packagist.org/downloads/",
  3983. "license": [
  3984. "MIT"
  3985. ],
  3986. "description": "A rpc basic library for Hyperf.",
  3987. "homepage": "https://hyperf.io",
  3988. "keywords": [
  3989. "hyperf",
  3990. "php",
  3991. "rpc",
  3992. "swoole"
  3993. ],
  3994. "support": {
  3995. "docs": "https://hyperf.wiki",
  3996. "issues": "https://github.com/hyperf/hyperf/issues",
  3997. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3998. "source": "https://github.com/hyperf/hyperf"
  3999. },
  4000. "funding": [
  4001. {
  4002. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4003. "type": "custom"
  4004. },
  4005. {
  4006. "url": "https://opencollective.com/hyperf",
  4007. "type": "open_collective"
  4008. }
  4009. ],
  4010. "time": "2024-09-25T02:54:12+00:00"
  4011. },
  4012. {
  4013. "name": "hyperf/rpc-server",
  4014. "version": "v3.1.42",
  4015. "source": {
  4016. "type": "git",
  4017. "url": "https://github.com/hyperf/rpc-server.git",
  4018. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4019. },
  4020. "dist": {
  4021. "type": "zip",
  4022. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4023. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4024. "shasum": "",
  4025. "mirrors": [
  4026. {
  4027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4028. "preferred": true
  4029. }
  4030. ]
  4031. },
  4032. "require": {
  4033. "hyperf/http-server": "~3.1.0",
  4034. "hyperf/rpc": "~3.1.0",
  4035. "php": ">=8.1"
  4036. },
  4037. "suggest": {
  4038. "hyperf/di": "Required to use annotations."
  4039. },
  4040. "type": "library",
  4041. "extra": {
  4042. "hyperf": {
  4043. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4044. },
  4045. "branch-alias": {
  4046. "dev-master": "3.1-dev"
  4047. }
  4048. },
  4049. "autoload": {
  4050. "psr-4": {
  4051. "Hyperf\\RpcServer\\": "src/"
  4052. }
  4053. },
  4054. "notification-url": "https://packagist.org/downloads/",
  4055. "license": [
  4056. "MIT"
  4057. ],
  4058. "description": "An abstract rpc server component for Hyperf.",
  4059. "homepage": "https://hyperf.io",
  4060. "keywords": [
  4061. "hyperf",
  4062. "php",
  4063. "rpc",
  4064. "rpc-server",
  4065. "swoole"
  4066. ],
  4067. "support": {
  4068. "docs": "https://hyperf.wiki",
  4069. "issues": "https://github.com/hyperf/hyperf/issues",
  4070. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4071. "source": "https://github.com/hyperf/hyperf"
  4072. },
  4073. "funding": [
  4074. {
  4075. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4076. "type": "custom"
  4077. },
  4078. {
  4079. "url": "https://opencollective.com/hyperf",
  4080. "type": "open_collective"
  4081. }
  4082. ],
  4083. "time": "2024-09-25T02:54:12+00:00"
  4084. },
  4085. {
  4086. "name": "hyperf/serializer",
  4087. "version": "v3.1.42",
  4088. "source": {
  4089. "type": "git",
  4090. "url": "https://github.com/hyperf/serializer.git",
  4091. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4092. },
  4093. "dist": {
  4094. "type": "zip",
  4095. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4096. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4097. "shasum": "",
  4098. "mirrors": [
  4099. {
  4100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4101. "preferred": true
  4102. }
  4103. ]
  4104. },
  4105. "require": {
  4106. "hyperf/contract": "~3.1.0",
  4107. "php": ">=8.1"
  4108. },
  4109. "suggest": {
  4110. "hyperf/di": "Required to use ExceptionNormalizer",
  4111. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4112. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4113. },
  4114. "type": "library",
  4115. "extra": {
  4116. "hyperf": {
  4117. "config": "Hyperf\\Serializer\\ConfigProvider"
  4118. },
  4119. "branch-alias": {
  4120. "dev-master": "3.1-dev"
  4121. }
  4122. },
  4123. "autoload": {
  4124. "psr-4": {
  4125. "Hyperf\\Serializer\\": "src/"
  4126. }
  4127. },
  4128. "notification-url": "https://packagist.org/downloads/",
  4129. "license": [
  4130. "MIT"
  4131. ],
  4132. "description": "A serializer component for Hyperf.",
  4133. "homepage": "https://hyperf.io",
  4134. "keywords": [
  4135. "hyperf",
  4136. "php",
  4137. "swoole",
  4138. "tappable"
  4139. ],
  4140. "support": {
  4141. "docs": "https://hyperf.wiki",
  4142. "issues": "https://github.com/hyperf/hyperf/issues",
  4143. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4144. "source": "https://github.com/hyperf/hyperf"
  4145. },
  4146. "funding": [
  4147. {
  4148. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4149. "type": "custom"
  4150. },
  4151. {
  4152. "url": "https://opencollective.com/hyperf",
  4153. "type": "open_collective"
  4154. }
  4155. ],
  4156. "time": "2024-09-25T02:54:12+00:00"
  4157. },
  4158. {
  4159. "name": "hyperf/server",
  4160. "version": "v3.1.42",
  4161. "source": {
  4162. "type": "git",
  4163. "url": "https://github.com/hyperf/server.git",
  4164. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4165. },
  4166. "dist": {
  4167. "type": "zip",
  4168. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4169. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4170. "shasum": "",
  4171. "mirrors": [
  4172. {
  4173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4174. "preferred": true
  4175. }
  4176. ]
  4177. },
  4178. "require": {
  4179. "hyperf/contract": "~3.1.0",
  4180. "hyperf/coordinator": "~3.1.0",
  4181. "hyperf/engine": "^2.8",
  4182. "hyperf/support": "~3.1.0",
  4183. "hyperf/tappable": "~3.1.0",
  4184. "php": ">=8.1",
  4185. "psr/container": "^1.0 || ^2.0",
  4186. "psr/event-dispatcher": "^1.0",
  4187. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4188. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4189. },
  4190. "suggest": {
  4191. "hyperf/event": "Dump the info after server start.",
  4192. "hyperf/framework": "Dump the info after server start."
  4193. },
  4194. "type": "library",
  4195. "extra": {
  4196. "hyperf": {
  4197. "config": "Hyperf\\Server\\ConfigProvider"
  4198. },
  4199. "branch-alias": {
  4200. "dev-master": "3.1-dev"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "psr-4": {
  4205. "Hyperf\\Server\\": "src/"
  4206. }
  4207. },
  4208. "notification-url": "https://packagist.org/downloads/",
  4209. "license": [
  4210. "MIT"
  4211. ],
  4212. "description": "A base server library for Hyperf.",
  4213. "homepage": "https://hyperf.io",
  4214. "keywords": [
  4215. "hyperf",
  4216. "php",
  4217. "server",
  4218. "swoole"
  4219. ],
  4220. "support": {
  4221. "docs": "https://hyperf.wiki",
  4222. "issues": "https://github.com/hyperf/hyperf/issues",
  4223. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4224. "source": "https://github.com/hyperf/hyperf"
  4225. },
  4226. "funding": [
  4227. {
  4228. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4229. "type": "custom"
  4230. },
  4231. {
  4232. "url": "https://opencollective.com/hyperf",
  4233. "type": "open_collective"
  4234. }
  4235. ],
  4236. "time": "2024-09-25T02:54:12+00:00"
  4237. },
  4238. {
  4239. "name": "hyperf/service-governance",
  4240. "version": "v3.1.42",
  4241. "source": {
  4242. "type": "git",
  4243. "url": "https://github.com/hyperf/service-governance.git",
  4244. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4245. },
  4246. "dist": {
  4247. "type": "zip",
  4248. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4249. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4250. "shasum": "",
  4251. "mirrors": [
  4252. {
  4253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4254. "preferred": true
  4255. }
  4256. ]
  4257. },
  4258. "require": {
  4259. "hyperf/contract": "~3.1.0",
  4260. "hyperf/support": "~3.1.0",
  4261. "jetbrains/phpstorm-attributes": "^1.0",
  4262. "php": ">=8.1"
  4263. },
  4264. "suggest": {
  4265. "hyperf/event": "Required to use RegisterServiceListener.",
  4266. "hyperf/framework": "Required to use RegisterServiceListener.",
  4267. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4268. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4269. },
  4270. "type": "library",
  4271. "extra": {
  4272. "hyperf": {
  4273. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4274. },
  4275. "branch-alias": {
  4276. "dev-master": "3.1-dev"
  4277. }
  4278. },
  4279. "autoload": {
  4280. "psr-4": {
  4281. "Hyperf\\ServiceGovernance\\": "src/"
  4282. }
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "description": "A service governance component for Hyperf.",
  4289. "homepage": "https://hyperf.io",
  4290. "keywords": [
  4291. "hyperf",
  4292. "php",
  4293. "service-governance",
  4294. "swoole"
  4295. ],
  4296. "support": {
  4297. "docs": "https://hyperf.wiki",
  4298. "issues": "https://github.com/hyperf/hyperf/issues",
  4299. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4300. "source": "https://github.com/hyperf/hyperf"
  4301. },
  4302. "funding": [
  4303. {
  4304. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4305. "type": "custom"
  4306. },
  4307. {
  4308. "url": "https://opencollective.com/hyperf",
  4309. "type": "open_collective"
  4310. }
  4311. ],
  4312. "time": "2024-09-25T02:54:12+00:00"
  4313. },
  4314. {
  4315. "name": "hyperf/service-governance-consul",
  4316. "version": "v3.1.42",
  4317. "source": {
  4318. "type": "git",
  4319. "url": "https://github.com/hyperf/service-governance-consul.git",
  4320. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4321. },
  4322. "dist": {
  4323. "type": "zip",
  4324. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4325. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4326. "shasum": "",
  4327. "mirrors": [
  4328. {
  4329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4330. "preferred": true
  4331. }
  4332. ]
  4333. },
  4334. "require": {
  4335. "hyperf/consul": "~3.1.0",
  4336. "hyperf/contract": "~3.1.0",
  4337. "hyperf/service-governance": "~3.1.0",
  4338. "hyperf/support": "~3.1.0",
  4339. "hyperf/utils": "~3.1.0",
  4340. "php": ">=8.1"
  4341. },
  4342. "type": "library",
  4343. "extra": {
  4344. "hyperf": {
  4345. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4346. },
  4347. "branch-alias": {
  4348. "dev-master": "3.1-dev"
  4349. }
  4350. },
  4351. "autoload": {
  4352. "psr-4": {
  4353. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4354. }
  4355. },
  4356. "notification-url": "https://packagist.org/downloads/",
  4357. "license": [
  4358. "MIT"
  4359. ],
  4360. "description": "A consul adapter for service governance.",
  4361. "homepage": "https://hyperf.io",
  4362. "keywords": [
  4363. "consul-adapter",
  4364. "hyperf",
  4365. "php",
  4366. "service-governance",
  4367. "swoole"
  4368. ],
  4369. "support": {
  4370. "docs": "https://hyperf.wiki",
  4371. "issues": "https://github.com/hyperf/hyperf/issues",
  4372. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4373. "source": "https://github.com/hyperf/hyperf"
  4374. },
  4375. "funding": [
  4376. {
  4377. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4378. "type": "custom"
  4379. },
  4380. {
  4381. "url": "https://opencollective.com/hyperf",
  4382. "type": "open_collective"
  4383. }
  4384. ],
  4385. "time": "2024-09-25T02:54:12+00:00"
  4386. },
  4387. {
  4388. "name": "hyperf/service-governance-nacos",
  4389. "version": "v3.1.42",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4393. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4394. },
  4395. "dist": {
  4396. "type": "zip",
  4397. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4398. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4399. "shasum": "",
  4400. "mirrors": [
  4401. {
  4402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4403. "preferred": true
  4404. }
  4405. ]
  4406. },
  4407. "require": {
  4408. "hyperf/codec": "~3.1.0",
  4409. "hyperf/contract": "~3.1.0",
  4410. "hyperf/nacos": "~3.1.0",
  4411. "hyperf/service-governance": "~3.1.0",
  4412. "hyperf/support": "~3.1.0",
  4413. "hyperf/utils": "~3.1.0",
  4414. "php": ">=8.1"
  4415. },
  4416. "type": "library",
  4417. "extra": {
  4418. "hyperf": {
  4419. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4420. },
  4421. "branch-alias": {
  4422. "dev-master": "3.1-dev"
  4423. }
  4424. },
  4425. "autoload": {
  4426. "psr-4": {
  4427. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4428. }
  4429. },
  4430. "notification-url": "https://packagist.org/downloads/",
  4431. "license": [
  4432. "MIT"
  4433. ],
  4434. "description": "A nacos adapter for service governance.",
  4435. "homepage": "https://hyperf.io",
  4436. "keywords": [
  4437. "hyperf",
  4438. "nacos-adapter",
  4439. "php",
  4440. "service-governance",
  4441. "swoole"
  4442. ],
  4443. "support": {
  4444. "docs": "https://hyperf.wiki",
  4445. "issues": "https://github.com/hyperf/hyperf/issues",
  4446. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4447. "source": "https://github.com/hyperf/hyperf"
  4448. },
  4449. "funding": [
  4450. {
  4451. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4452. "type": "custom"
  4453. },
  4454. {
  4455. "url": "https://opencollective.com/hyperf",
  4456. "type": "open_collective"
  4457. }
  4458. ],
  4459. "time": "2024-09-25T02:54:12+00:00"
  4460. },
  4461. {
  4462. "name": "hyperf/stdlib",
  4463. "version": "v3.1.42",
  4464. "source": {
  4465. "type": "git",
  4466. "url": "https://github.com/hyperf/stdlib.git",
  4467. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4468. },
  4469. "dist": {
  4470. "type": "zip",
  4471. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4472. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4473. "shasum": "",
  4474. "mirrors": [
  4475. {
  4476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4477. "preferred": true
  4478. }
  4479. ]
  4480. },
  4481. "require": {
  4482. "php": ">=8.1"
  4483. },
  4484. "type": "library",
  4485. "extra": {
  4486. "branch-alias": {
  4487. "dev-master": "3.1-dev"
  4488. }
  4489. },
  4490. "autoload": {
  4491. "psr-4": {
  4492. "Hyperf\\Stdlib\\": "src/"
  4493. }
  4494. },
  4495. "notification-url": "https://packagist.org/downloads/",
  4496. "license": [
  4497. "MIT"
  4498. ],
  4499. "description": "A stdlib component for Hyperf.",
  4500. "homepage": "https://hyperf.io",
  4501. "keywords": [
  4502. "hyperf",
  4503. "php",
  4504. "stdlib",
  4505. "swoole"
  4506. ],
  4507. "support": {
  4508. "docs": "https://hyperf.wiki",
  4509. "issues": "https://github.com/hyperf/hyperf/issues",
  4510. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4511. "source": "https://github.com/hyperf/hyperf"
  4512. },
  4513. "funding": [
  4514. {
  4515. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4516. "type": "custom"
  4517. },
  4518. {
  4519. "url": "https://opencollective.com/hyperf",
  4520. "type": "open_collective"
  4521. }
  4522. ],
  4523. "time": "2024-09-25T02:54:12+00:00"
  4524. },
  4525. {
  4526. "name": "hyperf/stringable",
  4527. "version": "v3.1.50",
  4528. "source": {
  4529. "type": "git",
  4530. "url": "https://github.com/hyperf/stringable.git",
  4531. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687"
  4532. },
  4533. "dist": {
  4534. "type": "zip",
  4535. "url": "https://api.github.com/repos/hyperf/stringable/zipball/89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4536. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4537. "shasum": "",
  4538. "mirrors": [
  4539. {
  4540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4541. "preferred": true
  4542. }
  4543. ]
  4544. },
  4545. "require": {
  4546. "ext-mbstring": "*",
  4547. "hyperf/collection": "~3.1.0",
  4548. "hyperf/conditionable": "~3.1.0",
  4549. "hyperf/macroable": "~3.1.0",
  4550. "hyperf/tappable": "~3.1.0",
  4551. "php": ">=8.1"
  4552. },
  4553. "suggest": {
  4554. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4555. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4556. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4557. },
  4558. "type": "library",
  4559. "extra": {
  4560. "branch-alias": {
  4561. "dev-master": "3.1-dev"
  4562. }
  4563. },
  4564. "autoload": {
  4565. "files": [
  4566. "src/Functions.php"
  4567. ],
  4568. "psr-4": {
  4569. "Hyperf\\Stringable\\": "src/"
  4570. }
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "MIT"
  4575. ],
  4576. "description": "Hyperf Stringable package which come from illuminate/support",
  4577. "homepage": "https://hyperf.io",
  4578. "keywords": [
  4579. "hyperf",
  4580. "php",
  4581. "stringable",
  4582. "swoole"
  4583. ],
  4584. "support": {
  4585. "docs": "https://hyperf.wiki",
  4586. "issues": "https://github.com/hyperf/hyperf/issues",
  4587. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4588. "source": "https://github.com/hyperf/hyperf"
  4589. },
  4590. "funding": [
  4591. {
  4592. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4593. "type": "custom"
  4594. },
  4595. {
  4596. "url": "https://opencollective.com/hyperf",
  4597. "type": "open_collective"
  4598. }
  4599. ],
  4600. "time": "2025-01-08T06:57:58+00:00"
  4601. },
  4602. {
  4603. "name": "hyperf/support",
  4604. "version": "v3.1.51",
  4605. "source": {
  4606. "type": "git",
  4607. "url": "https://github.com/hyperf/support.git",
  4608. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  4609. },
  4610. "dist": {
  4611. "type": "zip",
  4612. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4613. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4614. "shasum": "",
  4615. "mirrors": [
  4616. {
  4617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4618. "preferred": true
  4619. }
  4620. ]
  4621. },
  4622. "require": {
  4623. "hyperf/collection": "~3.1.0",
  4624. "hyperf/context": "~3.1.0",
  4625. "hyperf/contract": "~3.1.0",
  4626. "hyperf/coroutine": "~3.1.0",
  4627. "hyperf/macroable": "~3.1.0",
  4628. "hyperf/stringable": "~3.1.0",
  4629. "php": ">=8.1"
  4630. },
  4631. "suggest": {
  4632. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4633. },
  4634. "type": "library",
  4635. "extra": {
  4636. "branch-alias": {
  4637. "dev-master": "3.1-dev"
  4638. }
  4639. },
  4640. "autoload": {
  4641. "files": [
  4642. "src/Functions.php"
  4643. ],
  4644. "psr-4": {
  4645. "Hyperf\\Support\\": "src/"
  4646. }
  4647. },
  4648. "notification-url": "https://packagist.org/downloads/",
  4649. "license": [
  4650. "MIT"
  4651. ],
  4652. "description": "A support component for Hyperf.",
  4653. "homepage": "https://hyperf.io",
  4654. "keywords": [
  4655. "hyperf",
  4656. "php",
  4657. "support",
  4658. "swoole"
  4659. ],
  4660. "support": {
  4661. "docs": "https://hyperf.wiki",
  4662. "issues": "https://github.com/hyperf/hyperf/issues",
  4663. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4664. "source": "https://github.com/hyperf/hyperf"
  4665. },
  4666. "funding": [
  4667. {
  4668. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4669. "type": "custom"
  4670. },
  4671. {
  4672. "url": "https://opencollective.com/hyperf",
  4673. "type": "open_collective"
  4674. }
  4675. ],
  4676. "time": "2025-02-06T07:02:37+00:00"
  4677. },
  4678. {
  4679. "name": "hyperf/tappable",
  4680. "version": "v3.1.42",
  4681. "source": {
  4682. "type": "git",
  4683. "url": "https://github.com/hyperf/tappable.git",
  4684. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4685. },
  4686. "dist": {
  4687. "type": "zip",
  4688. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4689. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4690. "shasum": "",
  4691. "mirrors": [
  4692. {
  4693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4694. "preferred": true
  4695. }
  4696. ]
  4697. },
  4698. "require": {
  4699. "php": ">=8.1"
  4700. },
  4701. "type": "library",
  4702. "extra": {
  4703. "branch-alias": {
  4704. "dev-master": "3.1-dev"
  4705. }
  4706. },
  4707. "autoload": {
  4708. "files": [
  4709. "src/Functions.php"
  4710. ],
  4711. "psr-4": {
  4712. "Hyperf\\Tappable\\": "src/"
  4713. }
  4714. },
  4715. "notification-url": "https://packagist.org/downloads/",
  4716. "license": [
  4717. "MIT"
  4718. ],
  4719. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4720. "homepage": "https://hyperf.io",
  4721. "keywords": [
  4722. "hyperf",
  4723. "php",
  4724. "swoole",
  4725. "tappable"
  4726. ],
  4727. "support": {
  4728. "docs": "https://hyperf.wiki",
  4729. "issues": "https://github.com/hyperf/hyperf/issues",
  4730. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4731. "source": "https://github.com/hyperf/hyperf"
  4732. },
  4733. "funding": [
  4734. {
  4735. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4736. "type": "custom"
  4737. },
  4738. {
  4739. "url": "https://opencollective.com/hyperf",
  4740. "type": "open_collective"
  4741. }
  4742. ],
  4743. "time": "2024-09-25T02:54:12+00:00"
  4744. },
  4745. {
  4746. "name": "hyperf/utils",
  4747. "version": "v3.1.42",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://github.com/hyperf/utils.git",
  4751. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4752. },
  4753. "dist": {
  4754. "type": "zip",
  4755. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4756. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4757. "shasum": "",
  4758. "mirrors": [
  4759. {
  4760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4761. "preferred": true
  4762. }
  4763. ]
  4764. },
  4765. "require": {
  4766. "doctrine/inflector": "^2.0",
  4767. "hyperf/code-parser": "~3.1.0",
  4768. "hyperf/codec": "~3.1.0",
  4769. "hyperf/collection": "~3.1.0",
  4770. "hyperf/context": "~3.1.0",
  4771. "hyperf/contract": "~3.1.0",
  4772. "hyperf/coordinator": "~3.1.0",
  4773. "hyperf/coroutine": "~3.1.0",
  4774. "hyperf/engine": "^2.0",
  4775. "hyperf/macroable": "~3.1.0",
  4776. "hyperf/serializer": "~3.1.0",
  4777. "hyperf/stringable": "~3.1.0",
  4778. "hyperf/support": "~3.1.0",
  4779. "php": ">=8.1"
  4780. },
  4781. "type": "library",
  4782. "extra": {
  4783. "branch-alias": {
  4784. "dev-master": "3.1-dev"
  4785. }
  4786. },
  4787. "notification-url": "https://packagist.org/downloads/",
  4788. "license": [
  4789. "MIT"
  4790. ],
  4791. "description": "A tools package that could help developer solved the problem quickly.",
  4792. "homepage": "https://hyperf.io",
  4793. "keywords": [
  4794. "hyperf",
  4795. "php",
  4796. "swoole",
  4797. "utils"
  4798. ],
  4799. "support": {
  4800. "docs": "https://hyperf.wiki",
  4801. "issues": "https://github.com/hyperf/hyperf/issues",
  4802. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4803. "source": "https://github.com/hyperf/hyperf"
  4804. },
  4805. "funding": [
  4806. {
  4807. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4808. "type": "custom"
  4809. },
  4810. {
  4811. "url": "https://opencollective.com/hyperf",
  4812. "type": "open_collective"
  4813. }
  4814. ],
  4815. "time": "2024-09-25T02:54:12+00:00"
  4816. },
  4817. {
  4818. "name": "jetbrains/phpstorm-attributes",
  4819. "version": "1.2",
  4820. "source": {
  4821. "type": "git",
  4822. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4823. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4824. },
  4825. "dist": {
  4826. "type": "zip",
  4827. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4828. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4829. "shasum": "",
  4830. "mirrors": [
  4831. {
  4832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4833. "preferred": true
  4834. }
  4835. ]
  4836. },
  4837. "type": "library",
  4838. "autoload": {
  4839. "psr-4": {
  4840. "JetBrains\\PhpStorm\\": "src/"
  4841. }
  4842. },
  4843. "notification-url": "https://packagist.org/downloads/",
  4844. "license": [
  4845. "Apache-2.0"
  4846. ],
  4847. "authors": [
  4848. {
  4849. "name": "JetBrains",
  4850. "homepage": "https://www.jetbrains.com"
  4851. }
  4852. ],
  4853. "description": "PhpStorm specific attributes",
  4854. "keywords": [
  4855. "attributes",
  4856. "jetbrains",
  4857. "phpstorm"
  4858. ],
  4859. "support": {
  4860. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4861. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4862. },
  4863. "time": "2024-10-11T10:46:19+00:00"
  4864. },
  4865. {
  4866. "name": "laminas/laminas-mime",
  4867. "version": "2.12.0",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://github.com/laminas/laminas-mime.git",
  4871. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4876. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4877. "shasum": "",
  4878. "mirrors": [
  4879. {
  4880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4881. "preferred": true
  4882. }
  4883. ]
  4884. },
  4885. "require": {
  4886. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4887. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4888. },
  4889. "conflict": {
  4890. "zendframework/zend-mime": "*"
  4891. },
  4892. "require-dev": {
  4893. "laminas/laminas-coding-standard": "~2.4.0",
  4894. "laminas/laminas-mail": "^2.19.0",
  4895. "phpunit/phpunit": "~9.5.25"
  4896. },
  4897. "suggest": {
  4898. "laminas/laminas-mail": "Laminas\\Mail component"
  4899. },
  4900. "type": "library",
  4901. "autoload": {
  4902. "psr-4": {
  4903. "Laminas\\Mime\\": "src/"
  4904. }
  4905. },
  4906. "notification-url": "https://packagist.org/downloads/",
  4907. "license": [
  4908. "BSD-3-Clause"
  4909. ],
  4910. "description": "Create and parse MIME messages and parts",
  4911. "homepage": "https://laminas.dev",
  4912. "keywords": [
  4913. "laminas",
  4914. "mime"
  4915. ],
  4916. "support": {
  4917. "chat": "https://laminas.dev/chat",
  4918. "docs": "https://docs.laminas.dev/laminas-mime/",
  4919. "forum": "https://discourse.laminas.dev",
  4920. "issues": "https://github.com/laminas/laminas-mime/issues",
  4921. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4922. "source": "https://github.com/laminas/laminas-mime"
  4923. },
  4924. "funding": [
  4925. {
  4926. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4927. "type": "community_bridge"
  4928. }
  4929. ],
  4930. "time": "2023-11-02T16:47:19+00:00"
  4931. },
  4932. {
  4933. "name": "laminas/laminas-stdlib",
  4934. "version": "3.20.0",
  4935. "source": {
  4936. "type": "git",
  4937. "url": "https://github.com/laminas/laminas-stdlib.git",
  4938. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4939. },
  4940. "dist": {
  4941. "type": "zip",
  4942. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4943. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4944. "shasum": "",
  4945. "mirrors": [
  4946. {
  4947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4948. "preferred": true
  4949. }
  4950. ]
  4951. },
  4952. "require": {
  4953. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4954. },
  4955. "conflict": {
  4956. "zendframework/zend-stdlib": "*"
  4957. },
  4958. "require-dev": {
  4959. "laminas/laminas-coding-standard": "^3.0",
  4960. "phpbench/phpbench": "^1.3.1",
  4961. "phpunit/phpunit": "^10.5.38",
  4962. "psalm/plugin-phpunit": "^0.19.0",
  4963. "vimeo/psalm": "^5.26.1"
  4964. },
  4965. "type": "library",
  4966. "autoload": {
  4967. "psr-4": {
  4968. "Laminas\\Stdlib\\": "src/"
  4969. }
  4970. },
  4971. "notification-url": "https://packagist.org/downloads/",
  4972. "license": [
  4973. "BSD-3-Clause"
  4974. ],
  4975. "description": "SPL extensions, array utilities, error handlers, and more",
  4976. "homepage": "https://laminas.dev",
  4977. "keywords": [
  4978. "laminas",
  4979. "stdlib"
  4980. ],
  4981. "support": {
  4982. "chat": "https://laminas.dev/chat",
  4983. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4984. "forum": "https://discourse.laminas.dev",
  4985. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4986. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4987. "source": "https://github.com/laminas/laminas-stdlib"
  4988. },
  4989. "funding": [
  4990. {
  4991. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4992. "type": "community_bridge"
  4993. }
  4994. ],
  4995. "time": "2024-10-29T13:46:07+00:00"
  4996. },
  4997. {
  4998. "name": "markrogoyski/math-php",
  4999. "version": "v2.11.0",
  5000. "source": {
  5001. "type": "git",
  5002. "url": "https://github.com/markrogoyski/math-php.git",
  5003. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  5004. },
  5005. "dist": {
  5006. "type": "zip",
  5007. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5008. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5009. "shasum": "",
  5010. "mirrors": [
  5011. {
  5012. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5013. "preferred": true
  5014. }
  5015. ]
  5016. },
  5017. "require": {
  5018. "ext-json": "*",
  5019. "php": ">=7.2.0"
  5020. },
  5021. "require-dev": {
  5022. "php-coveralls/php-coveralls": "^2.0",
  5023. "php-parallel-lint/php-parallel-lint": "^1.2",
  5024. "phploc/phploc": "*",
  5025. "phpmd/phpmd": "^2.6",
  5026. "phpstan/phpstan": "^1.10",
  5027. "phpunit/phpunit": "^8.5",
  5028. "squizlabs/php_codesniffer": "3.*"
  5029. },
  5030. "type": "library",
  5031. "autoload": {
  5032. "psr-4": {
  5033. "MathPHP\\": "src/"
  5034. }
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "MIT"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "Mark Rogoyski",
  5043. "email": "mark@rogoyski.com",
  5044. "homepage": "https://github.com/markrogoyski",
  5045. "role": "Lead developer"
  5046. },
  5047. {
  5048. "name": "Kevin Nowaczyk",
  5049. "homepage": "https://github.com/Beakerboy",
  5050. "role": "Developer"
  5051. },
  5052. {
  5053. "name": "MathPHP Community of Contributors",
  5054. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5055. }
  5056. ],
  5057. "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",
  5058. "homepage": "https://github.com/markrogoyski/math-php/",
  5059. "keywords": [
  5060. "algebra",
  5061. "combinatorics",
  5062. "distributions",
  5063. "linear algebra",
  5064. "math",
  5065. "mathematics",
  5066. "matrix",
  5067. "numerical analysis",
  5068. "probability",
  5069. "regressions",
  5070. "statistics"
  5071. ],
  5072. "support": {
  5073. "issues": "https://github.com/markrogoyski/math-php/issues",
  5074. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  5075. },
  5076. "time": "2025-01-26T20:16:06+00:00"
  5077. },
  5078. {
  5079. "name": "monolog/monolog",
  5080. "version": "3.9.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/Seldaek/monolog.git",
  5084. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  5089. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  5090. "shasum": "",
  5091. "mirrors": [
  5092. {
  5093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5094. "preferred": true
  5095. }
  5096. ]
  5097. },
  5098. "require": {
  5099. "php": ">=8.1",
  5100. "psr/log": "^2.0 || ^3.0"
  5101. },
  5102. "provide": {
  5103. "psr/log-implementation": "3.0.0"
  5104. },
  5105. "require-dev": {
  5106. "aws/aws-sdk-php": "^3.0",
  5107. "doctrine/couchdb": "~1.0@dev",
  5108. "elasticsearch/elasticsearch": "^7 || ^8",
  5109. "ext-json": "*",
  5110. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5111. "guzzlehttp/guzzle": "^7.4.5",
  5112. "guzzlehttp/psr7": "^2.2",
  5113. "mongodb/mongodb": "^1.8",
  5114. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5115. "php-console/php-console": "^3.1.8",
  5116. "phpstan/phpstan": "^2",
  5117. "phpstan/phpstan-deprecation-rules": "^2",
  5118. "phpstan/phpstan-strict-rules": "^2",
  5119. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5120. "predis/predis": "^1.1 || ^2",
  5121. "rollbar/rollbar": "^4.0",
  5122. "ruflin/elastica": "^7 || ^8",
  5123. "symfony/mailer": "^5.4 || ^6",
  5124. "symfony/mime": "^5.4 || ^6"
  5125. },
  5126. "suggest": {
  5127. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5128. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5129. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5130. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5131. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5132. "ext-mbstring": "Allow to work properly with unicode symbols",
  5133. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5134. "ext-openssl": "Required to send log messages using SSL",
  5135. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5136. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5137. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5138. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5139. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5140. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5141. },
  5142. "type": "library",
  5143. "extra": {
  5144. "branch-alias": {
  5145. "dev-main": "3.x-dev"
  5146. }
  5147. },
  5148. "autoload": {
  5149. "psr-4": {
  5150. "Monolog\\": "src/Monolog"
  5151. }
  5152. },
  5153. "notification-url": "https://packagist.org/downloads/",
  5154. "license": [
  5155. "MIT"
  5156. ],
  5157. "authors": [
  5158. {
  5159. "name": "Jordi Boggiano",
  5160. "email": "j.boggiano@seld.be",
  5161. "homepage": "https://seld.be"
  5162. }
  5163. ],
  5164. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5165. "homepage": "https://github.com/Seldaek/monolog",
  5166. "keywords": [
  5167. "log",
  5168. "logging",
  5169. "psr-3"
  5170. ],
  5171. "support": {
  5172. "issues": "https://github.com/Seldaek/monolog/issues",
  5173. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  5174. },
  5175. "funding": [
  5176. {
  5177. "url": "https://github.com/Seldaek",
  5178. "type": "github"
  5179. },
  5180. {
  5181. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5182. "type": "tidelift"
  5183. }
  5184. ],
  5185. "time": "2025-03-24T10:02:05+00:00"
  5186. },
  5187. {
  5188. "name": "mtdowling/jmespath.php",
  5189. "version": "2.7.0",
  5190. "source": {
  5191. "type": "git",
  5192. "url": "https://github.com/jmespath/jmespath.php.git",
  5193. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  5194. },
  5195. "dist": {
  5196. "type": "zip",
  5197. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  5198. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  5199. "shasum": "",
  5200. "mirrors": [
  5201. {
  5202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5203. "preferred": true
  5204. }
  5205. ]
  5206. },
  5207. "require": {
  5208. "php": "^7.2.5 || ^8.0",
  5209. "symfony/polyfill-mbstring": "^1.17"
  5210. },
  5211. "require-dev": {
  5212. "composer/xdebug-handler": "^3.0.3",
  5213. "phpunit/phpunit": "^8.5.33"
  5214. },
  5215. "bin": [
  5216. "bin/jp.php"
  5217. ],
  5218. "type": "library",
  5219. "extra": {
  5220. "branch-alias": {
  5221. "dev-master": "2.7-dev"
  5222. }
  5223. },
  5224. "autoload": {
  5225. "files": [
  5226. "src/JmesPath.php"
  5227. ],
  5228. "psr-4": {
  5229. "JmesPath\\": "src/"
  5230. }
  5231. },
  5232. "notification-url": "https://packagist.org/downloads/",
  5233. "license": [
  5234. "MIT"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "Graham Campbell",
  5239. "email": "hello@gjcampbell.co.uk",
  5240. "homepage": "https://github.com/GrahamCampbell"
  5241. },
  5242. {
  5243. "name": "Michael Dowling",
  5244. "email": "mtdowling@gmail.com",
  5245. "homepage": "https://github.com/mtdowling"
  5246. }
  5247. ],
  5248. "description": "Declaratively specify how to extract elements from a JSON document",
  5249. "keywords": [
  5250. "json",
  5251. "jsonpath"
  5252. ],
  5253. "support": {
  5254. "issues": "https://github.com/jmespath/jmespath.php/issues",
  5255. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  5256. },
  5257. "time": "2023-08-25T10:54:48+00:00"
  5258. },
  5259. {
  5260. "name": "nesbot/carbon",
  5261. "version": "2.73.0",
  5262. "source": {
  5263. "type": "git",
  5264. "url": "https://github.com/CarbonPHP/carbon.git",
  5265. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  5266. },
  5267. "dist": {
  5268. "type": "zip",
  5269. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5270. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5271. "shasum": "",
  5272. "mirrors": [
  5273. {
  5274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5275. "preferred": true
  5276. }
  5277. ]
  5278. },
  5279. "require": {
  5280. "carbonphp/carbon-doctrine-types": "*",
  5281. "ext-json": "*",
  5282. "php": "^7.1.8 || ^8.0",
  5283. "psr/clock": "^1.0",
  5284. "symfony/polyfill-mbstring": "^1.0",
  5285. "symfony/polyfill-php80": "^1.16",
  5286. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5287. },
  5288. "provide": {
  5289. "psr/clock-implementation": "1.0"
  5290. },
  5291. "require-dev": {
  5292. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5293. "doctrine/orm": "^2.7 || ^3.0",
  5294. "friendsofphp/php-cs-fixer": "^3.0",
  5295. "kylekatarnls/multi-tester": "^2.0",
  5296. "ondrejmirtes/better-reflection": "<6",
  5297. "phpmd/phpmd": "^2.9",
  5298. "phpstan/extension-installer": "^1.0",
  5299. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5300. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5301. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5302. "squizlabs/php_codesniffer": "^3.4"
  5303. },
  5304. "bin": [
  5305. "bin/carbon"
  5306. ],
  5307. "type": "library",
  5308. "extra": {
  5309. "laravel": {
  5310. "providers": [
  5311. "Carbon\\Laravel\\ServiceProvider"
  5312. ]
  5313. },
  5314. "phpstan": {
  5315. "includes": [
  5316. "extension.neon"
  5317. ]
  5318. },
  5319. "branch-alias": {
  5320. "dev-2.x": "2.x-dev",
  5321. "dev-master": "3.x-dev"
  5322. }
  5323. },
  5324. "autoload": {
  5325. "psr-4": {
  5326. "Carbon\\": "src/Carbon/"
  5327. }
  5328. },
  5329. "notification-url": "https://packagist.org/downloads/",
  5330. "license": [
  5331. "MIT"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "Brian Nesbitt",
  5336. "email": "brian@nesbot.com",
  5337. "homepage": "https://markido.com"
  5338. },
  5339. {
  5340. "name": "kylekatarnls",
  5341. "homepage": "https://github.com/kylekatarnls"
  5342. }
  5343. ],
  5344. "description": "An API extension for DateTime that supports 281 different languages.",
  5345. "homepage": "https://carbon.nesbot.com",
  5346. "keywords": [
  5347. "date",
  5348. "datetime",
  5349. "time"
  5350. ],
  5351. "support": {
  5352. "docs": "https://carbon.nesbot.com/docs",
  5353. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5354. "source": "https://github.com/briannesbitt/Carbon"
  5355. },
  5356. "funding": [
  5357. {
  5358. "url": "https://github.com/sponsors/kylekatarnls",
  5359. "type": "github"
  5360. },
  5361. {
  5362. "url": "https://opencollective.com/Carbon#sponsor",
  5363. "type": "opencollective"
  5364. },
  5365. {
  5366. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5367. "type": "tidelift"
  5368. }
  5369. ],
  5370. "time": "2025-01-08T20:10:23+00:00"
  5371. },
  5372. {
  5373. "name": "nikic/fast-route",
  5374. "version": "v1.3.0",
  5375. "source": {
  5376. "type": "git",
  5377. "url": "https://github.com/nikic/FastRoute.git",
  5378. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5379. },
  5380. "dist": {
  5381. "type": "zip",
  5382. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5383. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5384. "shasum": "",
  5385. "mirrors": [
  5386. {
  5387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5388. "preferred": true
  5389. }
  5390. ]
  5391. },
  5392. "require": {
  5393. "php": ">=5.4.0"
  5394. },
  5395. "require-dev": {
  5396. "phpunit/phpunit": "^4.8.35|~5.7"
  5397. },
  5398. "type": "library",
  5399. "autoload": {
  5400. "files": [
  5401. "src/functions.php"
  5402. ],
  5403. "psr-4": {
  5404. "FastRoute\\": "src/"
  5405. }
  5406. },
  5407. "notification-url": "https://packagist.org/downloads/",
  5408. "license": [
  5409. "BSD-3-Clause"
  5410. ],
  5411. "authors": [
  5412. {
  5413. "name": "Nikita Popov",
  5414. "email": "nikic@php.net"
  5415. }
  5416. ],
  5417. "description": "Fast request router for PHP",
  5418. "keywords": [
  5419. "router",
  5420. "routing"
  5421. ],
  5422. "support": {
  5423. "issues": "https://github.com/nikic/FastRoute/issues",
  5424. "source": "https://github.com/nikic/FastRoute/tree/master"
  5425. },
  5426. "time": "2018-02-13T20:26:39+00:00"
  5427. },
  5428. {
  5429. "name": "nikic/php-parser",
  5430. "version": "v4.19.4",
  5431. "source": {
  5432. "type": "git",
  5433. "url": "https://github.com/nikic/PHP-Parser.git",
  5434. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5435. },
  5436. "dist": {
  5437. "type": "zip",
  5438. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5439. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5440. "shasum": "",
  5441. "mirrors": [
  5442. {
  5443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5444. "preferred": true
  5445. }
  5446. ]
  5447. },
  5448. "require": {
  5449. "ext-tokenizer": "*",
  5450. "php": ">=7.1"
  5451. },
  5452. "require-dev": {
  5453. "ircmaxell/php-yacc": "^0.0.7",
  5454. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5455. },
  5456. "bin": [
  5457. "bin/php-parse"
  5458. ],
  5459. "type": "library",
  5460. "extra": {
  5461. "branch-alias": {
  5462. "dev-master": "4.9-dev"
  5463. }
  5464. },
  5465. "autoload": {
  5466. "psr-4": {
  5467. "PhpParser\\": "lib/PhpParser"
  5468. }
  5469. },
  5470. "notification-url": "https://packagist.org/downloads/",
  5471. "license": [
  5472. "BSD-3-Clause"
  5473. ],
  5474. "authors": [
  5475. {
  5476. "name": "Nikita Popov"
  5477. }
  5478. ],
  5479. "description": "A PHP parser written in PHP",
  5480. "keywords": [
  5481. "parser",
  5482. "php"
  5483. ],
  5484. "support": {
  5485. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5486. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5487. },
  5488. "time": "2024-09-29T15:01:53+00:00"
  5489. },
  5490. {
  5491. "name": "overtrue/chinese-calendar",
  5492. "version": "1.0.2",
  5493. "source": {
  5494. "type": "git",
  5495. "url": "https://github.com/overtrue/chinese-calendar.git",
  5496. "reference": "d78e86d66a4b225defac6828bf1de42c4a9d4bdf"
  5497. },
  5498. "dist": {
  5499. "type": "zip",
  5500. "url": "https://api.github.com/repos/overtrue/chinese-calendar/zipball/d78e86d66a4b225defac6828bf1de42c4a9d4bdf",
  5501. "reference": "d78e86d66a4b225defac6828bf1de42c4a9d4bdf",
  5502. "shasum": "",
  5503. "mirrors": [
  5504. {
  5505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5506. "preferred": true
  5507. }
  5508. ]
  5509. },
  5510. "require": {
  5511. "php": ">=5.5.9"
  5512. },
  5513. "require-dev": {
  5514. "phpunit/phpunit": "^6.0"
  5515. },
  5516. "type": "library",
  5517. "autoload": {
  5518. "psr-4": {
  5519. "Overtrue\\ChineseCalendar\\": "src"
  5520. }
  5521. },
  5522. "notification-url": "https://packagist.org/downloads/",
  5523. "license": [
  5524. "MIT"
  5525. ],
  5526. "authors": [
  5527. {
  5528. "name": "overtrue",
  5529. "email": "anzhengchao@gmail.com"
  5530. }
  5531. ],
  5532. "description": "中国农历转换与查询工具",
  5533. "keywords": [
  5534. "Chinese",
  5535. "calendar",
  5536. "lunar",
  5537. "lunar2solar",
  5538. "solar",
  5539. "solar2lunar"
  5540. ],
  5541. "support": {
  5542. "issues": "https://github.com/overtrue/chinese-calendar/issues",
  5543. "source": "https://github.com/overtrue/chinese-calendar/tree/master"
  5544. },
  5545. "time": "2020-03-09T07:21:26+00:00"
  5546. },
  5547. {
  5548. "name": "overtrue/pinyin",
  5549. "version": "5.3.3",
  5550. "source": {
  5551. "type": "git",
  5552. "url": "https://github.com/overtrue/pinyin.git",
  5553. "reference": "bff15b27cf3e1cc416464b678576f4da9899692e"
  5554. },
  5555. "dist": {
  5556. "type": "zip",
  5557. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/bff15b27cf3e1cc416464b678576f4da9899692e",
  5558. "reference": "bff15b27cf3e1cc416464b678576f4da9899692e",
  5559. "shasum": "",
  5560. "mirrors": [
  5561. {
  5562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5563. "preferred": true
  5564. }
  5565. ]
  5566. },
  5567. "require": {
  5568. "php": ">=8.0.2"
  5569. },
  5570. "require-dev": {
  5571. "brainmaestro/composer-git-hooks": "^3.0",
  5572. "friendsofphp/php-cs-fixer": "^3.2",
  5573. "laravel/pint": "^1.10",
  5574. "nunomaduro/termwind": "^1.0|^2.0",
  5575. "phpunit/phpunit": "^10.0|^11.2"
  5576. },
  5577. "bin": [
  5578. "bin/pinyin"
  5579. ],
  5580. "type": "library",
  5581. "extra": {
  5582. "hooks": {
  5583. "pre-push": [
  5584. "composer pint",
  5585. "composer test"
  5586. ],
  5587. "pre-commit": [
  5588. "composer pint",
  5589. "composer test"
  5590. ]
  5591. }
  5592. },
  5593. "autoload": {
  5594. "psr-4": {
  5595. "Overtrue\\Pinyin\\": "src/"
  5596. }
  5597. },
  5598. "notification-url": "https://packagist.org/downloads/",
  5599. "license": [
  5600. "MIT"
  5601. ],
  5602. "authors": [
  5603. {
  5604. "name": "overtrue",
  5605. "email": "anzhengchao@gmail.com",
  5606. "homepage": "http://github.com/overtrue"
  5607. }
  5608. ],
  5609. "description": "Chinese to pinyin translator.",
  5610. "homepage": "https://github.com/overtrue/pinyin",
  5611. "keywords": [
  5612. "Chinese",
  5613. "Pinyin",
  5614. "cn2pinyin"
  5615. ],
  5616. "support": {
  5617. "issues": "https://github.com/overtrue/pinyin/issues",
  5618. "source": "https://github.com/overtrue/pinyin/tree/5.3.3"
  5619. },
  5620. "funding": [
  5621. {
  5622. "url": "https://github.com/overtrue",
  5623. "type": "github"
  5624. }
  5625. ],
  5626. "time": "2024-08-01T08:19:06+00:00"
  5627. },
  5628. {
  5629. "name": "php-di/phpdoc-reader",
  5630. "version": "2.2.1",
  5631. "source": {
  5632. "type": "git",
  5633. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5634. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5635. },
  5636. "dist": {
  5637. "type": "zip",
  5638. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5639. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5640. "shasum": "",
  5641. "mirrors": [
  5642. {
  5643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5644. "preferred": true
  5645. }
  5646. ]
  5647. },
  5648. "require": {
  5649. "php": ">=7.2.0"
  5650. },
  5651. "require-dev": {
  5652. "mnapoli/hard-mode": "~0.3.0",
  5653. "phpunit/phpunit": "^8.5|^9.0"
  5654. },
  5655. "type": "library",
  5656. "autoload": {
  5657. "psr-4": {
  5658. "PhpDocReader\\": "src/PhpDocReader"
  5659. }
  5660. },
  5661. "notification-url": "https://packagist.org/downloads/",
  5662. "license": [
  5663. "MIT"
  5664. ],
  5665. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5666. "keywords": [
  5667. "phpdoc",
  5668. "reflection"
  5669. ],
  5670. "support": {
  5671. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5672. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5673. },
  5674. "time": "2020-10-12T12:39:22+00:00"
  5675. },
  5676. {
  5677. "name": "phpoption/phpoption",
  5678. "version": "1.9.3",
  5679. "source": {
  5680. "type": "git",
  5681. "url": "https://github.com/schmittjoh/php-option.git",
  5682. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5683. },
  5684. "dist": {
  5685. "type": "zip",
  5686. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5687. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5688. "shasum": "",
  5689. "mirrors": [
  5690. {
  5691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5692. "preferred": true
  5693. }
  5694. ]
  5695. },
  5696. "require": {
  5697. "php": "^7.2.5 || ^8.0"
  5698. },
  5699. "require-dev": {
  5700. "bamarni/composer-bin-plugin": "^1.8.2",
  5701. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5702. },
  5703. "type": "library",
  5704. "extra": {
  5705. "bamarni-bin": {
  5706. "bin-links": true,
  5707. "forward-command": false
  5708. },
  5709. "branch-alias": {
  5710. "dev-master": "1.9-dev"
  5711. }
  5712. },
  5713. "autoload": {
  5714. "psr-4": {
  5715. "PhpOption\\": "src/PhpOption/"
  5716. }
  5717. },
  5718. "notification-url": "https://packagist.org/downloads/",
  5719. "license": [
  5720. "Apache-2.0"
  5721. ],
  5722. "authors": [
  5723. {
  5724. "name": "Johannes M. Schmitt",
  5725. "email": "schmittjoh@gmail.com",
  5726. "homepage": "https://github.com/schmittjoh"
  5727. },
  5728. {
  5729. "name": "Graham Campbell",
  5730. "email": "hello@gjcampbell.co.uk",
  5731. "homepage": "https://github.com/GrahamCampbell"
  5732. }
  5733. ],
  5734. "description": "Option Type for PHP",
  5735. "keywords": [
  5736. "language",
  5737. "option",
  5738. "php",
  5739. "type"
  5740. ],
  5741. "support": {
  5742. "issues": "https://github.com/schmittjoh/php-option/issues",
  5743. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5744. },
  5745. "funding": [
  5746. {
  5747. "url": "https://github.com/GrahamCampbell",
  5748. "type": "github"
  5749. },
  5750. {
  5751. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5752. "type": "tidelift"
  5753. }
  5754. ],
  5755. "time": "2024-07-20T21:41:07+00:00"
  5756. },
  5757. {
  5758. "name": "psr/cache",
  5759. "version": "3.0.0",
  5760. "source": {
  5761. "type": "git",
  5762. "url": "https://github.com/php-fig/cache.git",
  5763. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5764. },
  5765. "dist": {
  5766. "type": "zip",
  5767. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5768. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5769. "shasum": "",
  5770. "mirrors": [
  5771. {
  5772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5773. "preferred": true
  5774. }
  5775. ]
  5776. },
  5777. "require": {
  5778. "php": ">=8.0.0"
  5779. },
  5780. "type": "library",
  5781. "extra": {
  5782. "branch-alias": {
  5783. "dev-master": "1.0.x-dev"
  5784. }
  5785. },
  5786. "autoload": {
  5787. "psr-4": {
  5788. "Psr\\Cache\\": "src/"
  5789. }
  5790. },
  5791. "notification-url": "https://packagist.org/downloads/",
  5792. "license": [
  5793. "MIT"
  5794. ],
  5795. "authors": [
  5796. {
  5797. "name": "PHP-FIG",
  5798. "homepage": "https://www.php-fig.org/"
  5799. }
  5800. ],
  5801. "description": "Common interface for caching libraries",
  5802. "keywords": [
  5803. "cache",
  5804. "psr",
  5805. "psr-6"
  5806. ],
  5807. "support": {
  5808. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5809. },
  5810. "time": "2021-02-03T23:26:27+00:00"
  5811. },
  5812. {
  5813. "name": "psr/clock",
  5814. "version": "1.0.0",
  5815. "source": {
  5816. "type": "git",
  5817. "url": "https://github.com/php-fig/clock.git",
  5818. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5819. },
  5820. "dist": {
  5821. "type": "zip",
  5822. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5823. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5824. "shasum": "",
  5825. "mirrors": [
  5826. {
  5827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5828. "preferred": true
  5829. }
  5830. ]
  5831. },
  5832. "require": {
  5833. "php": "^7.0 || ^8.0"
  5834. },
  5835. "type": "library",
  5836. "autoload": {
  5837. "psr-4": {
  5838. "Psr\\Clock\\": "src/"
  5839. }
  5840. },
  5841. "notification-url": "https://packagist.org/downloads/",
  5842. "license": [
  5843. "MIT"
  5844. ],
  5845. "authors": [
  5846. {
  5847. "name": "PHP-FIG",
  5848. "homepage": "https://www.php-fig.org/"
  5849. }
  5850. ],
  5851. "description": "Common interface for reading the clock.",
  5852. "homepage": "https://github.com/php-fig/clock",
  5853. "keywords": [
  5854. "clock",
  5855. "now",
  5856. "psr",
  5857. "psr-20",
  5858. "time"
  5859. ],
  5860. "support": {
  5861. "issues": "https://github.com/php-fig/clock/issues",
  5862. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5863. },
  5864. "time": "2022-11-25T14:36:26+00:00"
  5865. },
  5866. {
  5867. "name": "psr/container",
  5868. "version": "2.0.2",
  5869. "source": {
  5870. "type": "git",
  5871. "url": "https://github.com/php-fig/container.git",
  5872. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5873. },
  5874. "dist": {
  5875. "type": "zip",
  5876. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5877. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5878. "shasum": "",
  5879. "mirrors": [
  5880. {
  5881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5882. "preferred": true
  5883. }
  5884. ]
  5885. },
  5886. "require": {
  5887. "php": ">=7.4.0"
  5888. },
  5889. "type": "library",
  5890. "extra": {
  5891. "branch-alias": {
  5892. "dev-master": "2.0.x-dev"
  5893. }
  5894. },
  5895. "autoload": {
  5896. "psr-4": {
  5897. "Psr\\Container\\": "src/"
  5898. }
  5899. },
  5900. "notification-url": "https://packagist.org/downloads/",
  5901. "license": [
  5902. "MIT"
  5903. ],
  5904. "authors": [
  5905. {
  5906. "name": "PHP-FIG",
  5907. "homepage": "https://www.php-fig.org/"
  5908. }
  5909. ],
  5910. "description": "Common Container Interface (PHP FIG PSR-11)",
  5911. "homepage": "https://github.com/php-fig/container",
  5912. "keywords": [
  5913. "PSR-11",
  5914. "container",
  5915. "container-interface",
  5916. "container-interop",
  5917. "psr"
  5918. ],
  5919. "support": {
  5920. "issues": "https://github.com/php-fig/container/issues",
  5921. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5922. },
  5923. "time": "2021-11-05T16:47:00+00:00"
  5924. },
  5925. {
  5926. "name": "psr/event-dispatcher",
  5927. "version": "1.0.0",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/php-fig/event-dispatcher.git",
  5931. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5936. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5937. "shasum": "",
  5938. "mirrors": [
  5939. {
  5940. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5941. "preferred": true
  5942. }
  5943. ]
  5944. },
  5945. "require": {
  5946. "php": ">=7.2.0"
  5947. },
  5948. "type": "library",
  5949. "extra": {
  5950. "branch-alias": {
  5951. "dev-master": "1.0.x-dev"
  5952. }
  5953. },
  5954. "autoload": {
  5955. "psr-4": {
  5956. "Psr\\EventDispatcher\\": "src/"
  5957. }
  5958. },
  5959. "notification-url": "https://packagist.org/downloads/",
  5960. "license": [
  5961. "MIT"
  5962. ],
  5963. "authors": [
  5964. {
  5965. "name": "PHP-FIG",
  5966. "homepage": "http://www.php-fig.org/"
  5967. }
  5968. ],
  5969. "description": "Standard interfaces for event handling.",
  5970. "keywords": [
  5971. "events",
  5972. "psr",
  5973. "psr-14"
  5974. ],
  5975. "support": {
  5976. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5977. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5978. },
  5979. "time": "2019-01-08T18:20:26+00:00"
  5980. },
  5981. {
  5982. "name": "psr/http-client",
  5983. "version": "1.0.3",
  5984. "source": {
  5985. "type": "git",
  5986. "url": "https://github.com/php-fig/http-client.git",
  5987. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5988. },
  5989. "dist": {
  5990. "type": "zip",
  5991. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5992. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5993. "shasum": "",
  5994. "mirrors": [
  5995. {
  5996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5997. "preferred": true
  5998. }
  5999. ]
  6000. },
  6001. "require": {
  6002. "php": "^7.0 || ^8.0",
  6003. "psr/http-message": "^1.0 || ^2.0"
  6004. },
  6005. "type": "library",
  6006. "extra": {
  6007. "branch-alias": {
  6008. "dev-master": "1.0.x-dev"
  6009. }
  6010. },
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Psr\\Http\\Client\\": "src/"
  6014. }
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "MIT"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "PHP-FIG",
  6023. "homepage": "https://www.php-fig.org/"
  6024. }
  6025. ],
  6026. "description": "Common interface for HTTP clients",
  6027. "homepage": "https://github.com/php-fig/http-client",
  6028. "keywords": [
  6029. "http",
  6030. "http-client",
  6031. "psr",
  6032. "psr-18"
  6033. ],
  6034. "support": {
  6035. "source": "https://github.com/php-fig/http-client"
  6036. },
  6037. "time": "2023-09-23T14:17:50+00:00"
  6038. },
  6039. {
  6040. "name": "psr/http-factory",
  6041. "version": "1.0.2",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://github.com/php-fig/http-factory.git",
  6045. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  6050. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  6051. "shasum": "",
  6052. "mirrors": [
  6053. {
  6054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6055. "preferred": true
  6056. }
  6057. ]
  6058. },
  6059. "require": {
  6060. "php": ">=7.0.0",
  6061. "psr/http-message": "^1.0 || ^2.0"
  6062. },
  6063. "type": "library",
  6064. "extra": {
  6065. "branch-alias": {
  6066. "dev-master": "1.0.x-dev"
  6067. }
  6068. },
  6069. "autoload": {
  6070. "psr-4": {
  6071. "Psr\\Http\\Message\\": "src/"
  6072. }
  6073. },
  6074. "notification-url": "https://packagist.org/downloads/",
  6075. "license": [
  6076. "MIT"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "PHP-FIG",
  6081. "homepage": "https://www.php-fig.org/"
  6082. }
  6083. ],
  6084. "description": "Common interfaces for PSR-7 HTTP message factories",
  6085. "keywords": [
  6086. "factory",
  6087. "http",
  6088. "message",
  6089. "psr",
  6090. "psr-17",
  6091. "psr-7",
  6092. "request",
  6093. "response"
  6094. ],
  6095. "support": {
  6096. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  6097. },
  6098. "time": "2023-04-10T20:10:41+00:00"
  6099. },
  6100. {
  6101. "name": "psr/http-message",
  6102. "version": "2.0",
  6103. "source": {
  6104. "type": "git",
  6105. "url": "https://github.com/php-fig/http-message.git",
  6106. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6107. },
  6108. "dist": {
  6109. "type": "zip",
  6110. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6111. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6112. "shasum": "",
  6113. "mirrors": [
  6114. {
  6115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6116. "preferred": true
  6117. }
  6118. ]
  6119. },
  6120. "require": {
  6121. "php": "^7.2 || ^8.0"
  6122. },
  6123. "type": "library",
  6124. "extra": {
  6125. "branch-alias": {
  6126. "dev-master": "2.0.x-dev"
  6127. }
  6128. },
  6129. "autoload": {
  6130. "psr-4": {
  6131. "Psr\\Http\\Message\\": "src/"
  6132. }
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "MIT"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "PHP-FIG",
  6141. "homepage": "https://www.php-fig.org/"
  6142. }
  6143. ],
  6144. "description": "Common interface for HTTP messages",
  6145. "homepage": "https://github.com/php-fig/http-message",
  6146. "keywords": [
  6147. "http",
  6148. "http-message",
  6149. "psr",
  6150. "psr-7",
  6151. "request",
  6152. "response"
  6153. ],
  6154. "support": {
  6155. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6156. },
  6157. "time": "2023-04-04T09:54:51+00:00"
  6158. },
  6159. {
  6160. "name": "psr/http-server-handler",
  6161. "version": "1.0.2",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://github.com/php-fig/http-server-handler.git",
  6165. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6170. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6171. "shasum": "",
  6172. "mirrors": [
  6173. {
  6174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6175. "preferred": true
  6176. }
  6177. ]
  6178. },
  6179. "require": {
  6180. "php": ">=7.0",
  6181. "psr/http-message": "^1.0 || ^2.0"
  6182. },
  6183. "type": "library",
  6184. "extra": {
  6185. "branch-alias": {
  6186. "dev-master": "1.0.x-dev"
  6187. }
  6188. },
  6189. "autoload": {
  6190. "psr-4": {
  6191. "Psr\\Http\\Server\\": "src/"
  6192. }
  6193. },
  6194. "notification-url": "https://packagist.org/downloads/",
  6195. "license": [
  6196. "MIT"
  6197. ],
  6198. "authors": [
  6199. {
  6200. "name": "PHP-FIG",
  6201. "homepage": "https://www.php-fig.org/"
  6202. }
  6203. ],
  6204. "description": "Common interface for HTTP server-side request handler",
  6205. "keywords": [
  6206. "handler",
  6207. "http",
  6208. "http-interop",
  6209. "psr",
  6210. "psr-15",
  6211. "psr-7",
  6212. "request",
  6213. "response",
  6214. "server"
  6215. ],
  6216. "support": {
  6217. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6218. },
  6219. "time": "2023-04-10T20:06:20+00:00"
  6220. },
  6221. {
  6222. "name": "psr/http-server-middleware",
  6223. "version": "1.0.2",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/php-fig/http-server-middleware.git",
  6227. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6232. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6233. "shasum": "",
  6234. "mirrors": [
  6235. {
  6236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6237. "preferred": true
  6238. }
  6239. ]
  6240. },
  6241. "require": {
  6242. "php": ">=7.0",
  6243. "psr/http-message": "^1.0 || ^2.0",
  6244. "psr/http-server-handler": "^1.0"
  6245. },
  6246. "type": "library",
  6247. "extra": {
  6248. "branch-alias": {
  6249. "dev-master": "1.0.x-dev"
  6250. }
  6251. },
  6252. "autoload": {
  6253. "psr-4": {
  6254. "Psr\\Http\\Server\\": "src/"
  6255. }
  6256. },
  6257. "notification-url": "https://packagist.org/downloads/",
  6258. "license": [
  6259. "MIT"
  6260. ],
  6261. "authors": [
  6262. {
  6263. "name": "PHP-FIG",
  6264. "homepage": "https://www.php-fig.org/"
  6265. }
  6266. ],
  6267. "description": "Common interface for HTTP server-side middleware",
  6268. "keywords": [
  6269. "http",
  6270. "http-interop",
  6271. "middleware",
  6272. "psr",
  6273. "psr-15",
  6274. "psr-7",
  6275. "request",
  6276. "response"
  6277. ],
  6278. "support": {
  6279. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6280. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6281. },
  6282. "time": "2023-04-11T06:14:47+00:00"
  6283. },
  6284. {
  6285. "name": "psr/log",
  6286. "version": "3.0.1",
  6287. "source": {
  6288. "type": "git",
  6289. "url": "https://github.com/php-fig/log.git",
  6290. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  6291. },
  6292. "dist": {
  6293. "type": "zip",
  6294. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  6295. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  6296. "shasum": "",
  6297. "mirrors": [
  6298. {
  6299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6300. "preferred": true
  6301. }
  6302. ]
  6303. },
  6304. "require": {
  6305. "php": ">=8.0.0"
  6306. },
  6307. "type": "library",
  6308. "extra": {
  6309. "branch-alias": {
  6310. "dev-master": "3.x-dev"
  6311. }
  6312. },
  6313. "autoload": {
  6314. "psr-4": {
  6315. "Psr\\Log\\": "src"
  6316. }
  6317. },
  6318. "notification-url": "https://packagist.org/downloads/",
  6319. "license": [
  6320. "MIT"
  6321. ],
  6322. "authors": [
  6323. {
  6324. "name": "PHP-FIG",
  6325. "homepage": "https://www.php-fig.org/"
  6326. }
  6327. ],
  6328. "description": "Common interface for logging libraries",
  6329. "homepage": "https://github.com/php-fig/log",
  6330. "keywords": [
  6331. "log",
  6332. "psr",
  6333. "psr-3"
  6334. ],
  6335. "support": {
  6336. "source": "https://github.com/php-fig/log/tree/3.0.1"
  6337. },
  6338. "time": "2024-08-21T13:31:24+00:00"
  6339. },
  6340. {
  6341. "name": "psr/simple-cache",
  6342. "version": "3.0.0",
  6343. "source": {
  6344. "type": "git",
  6345. "url": "https://github.com/php-fig/simple-cache.git",
  6346. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6347. },
  6348. "dist": {
  6349. "type": "zip",
  6350. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6351. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6352. "shasum": "",
  6353. "mirrors": [
  6354. {
  6355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6356. "preferred": true
  6357. }
  6358. ]
  6359. },
  6360. "require": {
  6361. "php": ">=8.0.0"
  6362. },
  6363. "type": "library",
  6364. "extra": {
  6365. "branch-alias": {
  6366. "dev-master": "3.0.x-dev"
  6367. }
  6368. },
  6369. "autoload": {
  6370. "psr-4": {
  6371. "Psr\\SimpleCache\\": "src/"
  6372. }
  6373. },
  6374. "notification-url": "https://packagist.org/downloads/",
  6375. "license": [
  6376. "MIT"
  6377. ],
  6378. "authors": [
  6379. {
  6380. "name": "PHP-FIG",
  6381. "homepage": "https://www.php-fig.org/"
  6382. }
  6383. ],
  6384. "description": "Common interfaces for simple caching",
  6385. "keywords": [
  6386. "cache",
  6387. "caching",
  6388. "psr",
  6389. "psr-16",
  6390. "simple-cache"
  6391. ],
  6392. "support": {
  6393. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6394. },
  6395. "time": "2021-10-29T13:26:27+00:00"
  6396. },
  6397. {
  6398. "name": "ralouphie/getallheaders",
  6399. "version": "3.0.3",
  6400. "source": {
  6401. "type": "git",
  6402. "url": "https://github.com/ralouphie/getallheaders.git",
  6403. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6404. },
  6405. "dist": {
  6406. "type": "zip",
  6407. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6408. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6409. "shasum": "",
  6410. "mirrors": [
  6411. {
  6412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6413. "preferred": true
  6414. }
  6415. ]
  6416. },
  6417. "require": {
  6418. "php": ">=5.6"
  6419. },
  6420. "require-dev": {
  6421. "php-coveralls/php-coveralls": "^2.1",
  6422. "phpunit/phpunit": "^5 || ^6.5"
  6423. },
  6424. "type": "library",
  6425. "autoload": {
  6426. "files": [
  6427. "src/getallheaders.php"
  6428. ]
  6429. },
  6430. "notification-url": "https://packagist.org/downloads/",
  6431. "license": [
  6432. "MIT"
  6433. ],
  6434. "authors": [
  6435. {
  6436. "name": "Ralph Khattar",
  6437. "email": "ralph.khattar@gmail.com"
  6438. }
  6439. ],
  6440. "description": "A polyfill for getallheaders.",
  6441. "support": {
  6442. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6443. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6444. },
  6445. "time": "2019-03-08T08:55:37+00:00"
  6446. },
  6447. {
  6448. "name": "swow/psr7-plus",
  6449. "version": "v1.1.2",
  6450. "source": {
  6451. "type": "git",
  6452. "url": "https://github.com/swow/psr7-plus.git",
  6453. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6454. },
  6455. "dist": {
  6456. "type": "zip",
  6457. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6458. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6459. "shasum": "",
  6460. "mirrors": [
  6461. {
  6462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6463. "preferred": true
  6464. }
  6465. ]
  6466. },
  6467. "require": {
  6468. "php": ">=8.0",
  6469. "psr/http-client": "^1.0",
  6470. "psr/http-factory": "^1.0",
  6471. "psr/http-message": "^1.1|^2.0"
  6472. },
  6473. "type": "library",
  6474. "autoload": {
  6475. "psr-4": {
  6476. "Swow\\Psr7\\Message\\": "src/Message/"
  6477. }
  6478. },
  6479. "notification-url": "https://packagist.org/downloads/",
  6480. "license": [
  6481. "Apache-2.0"
  6482. ],
  6483. "authors": [
  6484. {
  6485. "name": "twose",
  6486. "email": "twosee@php.net"
  6487. }
  6488. ],
  6489. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6490. "keywords": [
  6491. "http",
  6492. "psr17",
  6493. "psr7",
  6494. "swow",
  6495. "websocket"
  6496. ],
  6497. "support": {
  6498. "issues": "https://github.com/swow/swow",
  6499. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6500. },
  6501. "time": "2023-06-15T09:18:11+00:00"
  6502. },
  6503. {
  6504. "name": "symfony/console",
  6505. "version": "v6.4.15",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/symfony/console.git",
  6509. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6514. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6515. "shasum": "",
  6516. "mirrors": [
  6517. {
  6518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6519. "preferred": true
  6520. }
  6521. ]
  6522. },
  6523. "require": {
  6524. "php": ">=8.1",
  6525. "symfony/deprecation-contracts": "^2.5|^3",
  6526. "symfony/polyfill-mbstring": "~1.0",
  6527. "symfony/service-contracts": "^2.5|^3",
  6528. "symfony/string": "^5.4|^6.0|^7.0"
  6529. },
  6530. "conflict": {
  6531. "symfony/dependency-injection": "<5.4",
  6532. "symfony/dotenv": "<5.4",
  6533. "symfony/event-dispatcher": "<5.4",
  6534. "symfony/lock": "<5.4",
  6535. "symfony/process": "<5.4"
  6536. },
  6537. "provide": {
  6538. "psr/log-implementation": "1.0|2.0|3.0"
  6539. },
  6540. "require-dev": {
  6541. "psr/log": "^1|^2|^3",
  6542. "symfony/config": "^5.4|^6.0|^7.0",
  6543. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6544. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6545. "symfony/http-foundation": "^6.4|^7.0",
  6546. "symfony/http-kernel": "^6.4|^7.0",
  6547. "symfony/lock": "^5.4|^6.0|^7.0",
  6548. "symfony/messenger": "^5.4|^6.0|^7.0",
  6549. "symfony/process": "^5.4|^6.0|^7.0",
  6550. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6551. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6552. },
  6553. "type": "library",
  6554. "autoload": {
  6555. "psr-4": {
  6556. "Symfony\\Component\\Console\\": ""
  6557. },
  6558. "exclude-from-classmap": [
  6559. "/Tests/"
  6560. ]
  6561. },
  6562. "notification-url": "https://packagist.org/downloads/",
  6563. "license": [
  6564. "MIT"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "Fabien Potencier",
  6569. "email": "fabien@symfony.com"
  6570. },
  6571. {
  6572. "name": "Symfony Community",
  6573. "homepage": "https://symfony.com/contributors"
  6574. }
  6575. ],
  6576. "description": "Eases the creation of beautiful and testable command line interfaces",
  6577. "homepage": "https://symfony.com",
  6578. "keywords": [
  6579. "cli",
  6580. "command-line",
  6581. "console",
  6582. "terminal"
  6583. ],
  6584. "support": {
  6585. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6586. },
  6587. "funding": [
  6588. {
  6589. "url": "https://symfony.com/sponsor",
  6590. "type": "custom"
  6591. },
  6592. {
  6593. "url": "https://github.com/fabpot",
  6594. "type": "github"
  6595. },
  6596. {
  6597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6598. "type": "tidelift"
  6599. }
  6600. ],
  6601. "time": "2024-11-06T14:19:14+00:00"
  6602. },
  6603. {
  6604. "name": "symfony/deprecation-contracts",
  6605. "version": "v3.5.1",
  6606. "source": {
  6607. "type": "git",
  6608. "url": "https://github.com/symfony/deprecation-contracts.git",
  6609. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6610. },
  6611. "dist": {
  6612. "type": "zip",
  6613. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6614. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6615. "shasum": "",
  6616. "mirrors": [
  6617. {
  6618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6619. "preferred": true
  6620. }
  6621. ]
  6622. },
  6623. "require": {
  6624. "php": ">=8.1"
  6625. },
  6626. "type": "library",
  6627. "extra": {
  6628. "branch-alias": {
  6629. "dev-main": "3.5-dev"
  6630. },
  6631. "thanks": {
  6632. "name": "symfony/contracts",
  6633. "url": "https://github.com/symfony/contracts"
  6634. }
  6635. },
  6636. "autoload": {
  6637. "files": [
  6638. "function.php"
  6639. ]
  6640. },
  6641. "notification-url": "https://packagist.org/downloads/",
  6642. "license": [
  6643. "MIT"
  6644. ],
  6645. "authors": [
  6646. {
  6647. "name": "Nicolas Grekas",
  6648. "email": "p@tchwork.com"
  6649. },
  6650. {
  6651. "name": "Symfony Community",
  6652. "homepage": "https://symfony.com/contributors"
  6653. }
  6654. ],
  6655. "description": "A generic function and convention to trigger deprecation notices",
  6656. "homepage": "https://symfony.com",
  6657. "support": {
  6658. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6659. },
  6660. "funding": [
  6661. {
  6662. "url": "https://symfony.com/sponsor",
  6663. "type": "custom"
  6664. },
  6665. {
  6666. "url": "https://github.com/fabpot",
  6667. "type": "github"
  6668. },
  6669. {
  6670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6671. "type": "tidelift"
  6672. }
  6673. ],
  6674. "time": "2024-09-25T14:20:29+00:00"
  6675. },
  6676. {
  6677. "name": "symfony/finder",
  6678. "version": "v6.4.17",
  6679. "source": {
  6680. "type": "git",
  6681. "url": "https://github.com/symfony/finder.git",
  6682. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  6683. },
  6684. "dist": {
  6685. "type": "zip",
  6686. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  6687. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  6688. "shasum": "",
  6689. "mirrors": [
  6690. {
  6691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6692. "preferred": true
  6693. }
  6694. ]
  6695. },
  6696. "require": {
  6697. "php": ">=8.1"
  6698. },
  6699. "require-dev": {
  6700. "symfony/filesystem": "^6.0|^7.0"
  6701. },
  6702. "type": "library",
  6703. "autoload": {
  6704. "psr-4": {
  6705. "Symfony\\Component\\Finder\\": ""
  6706. },
  6707. "exclude-from-classmap": [
  6708. "/Tests/"
  6709. ]
  6710. },
  6711. "notification-url": "https://packagist.org/downloads/",
  6712. "license": [
  6713. "MIT"
  6714. ],
  6715. "authors": [
  6716. {
  6717. "name": "Fabien Potencier",
  6718. "email": "fabien@symfony.com"
  6719. },
  6720. {
  6721. "name": "Symfony Community",
  6722. "homepage": "https://symfony.com/contributors"
  6723. }
  6724. ],
  6725. "description": "Finds files and directories via an intuitive fluent interface",
  6726. "homepage": "https://symfony.com",
  6727. "support": {
  6728. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  6729. },
  6730. "funding": [
  6731. {
  6732. "url": "https://symfony.com/sponsor",
  6733. "type": "custom"
  6734. },
  6735. {
  6736. "url": "https://github.com/fabpot",
  6737. "type": "github"
  6738. },
  6739. {
  6740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6741. "type": "tidelift"
  6742. }
  6743. ],
  6744. "time": "2024-12-29T13:51:37+00:00"
  6745. },
  6746. {
  6747. "name": "symfony/polyfill-ctype",
  6748. "version": "v1.31.0",
  6749. "source": {
  6750. "type": "git",
  6751. "url": "https://github.com/symfony/polyfill-ctype.git",
  6752. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6753. },
  6754. "dist": {
  6755. "type": "zip",
  6756. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6757. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6758. "shasum": "",
  6759. "mirrors": [
  6760. {
  6761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6762. "preferred": true
  6763. }
  6764. ]
  6765. },
  6766. "require": {
  6767. "php": ">=7.2"
  6768. },
  6769. "provide": {
  6770. "ext-ctype": "*"
  6771. },
  6772. "suggest": {
  6773. "ext-ctype": "For best performance"
  6774. },
  6775. "type": "library",
  6776. "extra": {
  6777. "thanks": {
  6778. "url": "https://github.com/symfony/polyfill",
  6779. "name": "symfony/polyfill"
  6780. }
  6781. },
  6782. "autoload": {
  6783. "files": [
  6784. "bootstrap.php"
  6785. ],
  6786. "psr-4": {
  6787. "Symfony\\Polyfill\\Ctype\\": ""
  6788. }
  6789. },
  6790. "notification-url": "https://packagist.org/downloads/",
  6791. "license": [
  6792. "MIT"
  6793. ],
  6794. "authors": [
  6795. {
  6796. "name": "Gert de Pagter",
  6797. "email": "BackEndTea@gmail.com"
  6798. },
  6799. {
  6800. "name": "Symfony Community",
  6801. "homepage": "https://symfony.com/contributors"
  6802. }
  6803. ],
  6804. "description": "Symfony polyfill for ctype functions",
  6805. "homepage": "https://symfony.com",
  6806. "keywords": [
  6807. "compatibility",
  6808. "ctype",
  6809. "polyfill",
  6810. "portable"
  6811. ],
  6812. "support": {
  6813. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6814. },
  6815. "funding": [
  6816. {
  6817. "url": "https://symfony.com/sponsor",
  6818. "type": "custom"
  6819. },
  6820. {
  6821. "url": "https://github.com/fabpot",
  6822. "type": "github"
  6823. },
  6824. {
  6825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6826. "type": "tidelift"
  6827. }
  6828. ],
  6829. "time": "2024-09-09T11:45:10+00:00"
  6830. },
  6831. {
  6832. "name": "symfony/polyfill-intl-grapheme",
  6833. "version": "v1.31.0",
  6834. "source": {
  6835. "type": "git",
  6836. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6837. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6838. },
  6839. "dist": {
  6840. "type": "zip",
  6841. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6842. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6843. "shasum": "",
  6844. "mirrors": [
  6845. {
  6846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6847. "preferred": true
  6848. }
  6849. ]
  6850. },
  6851. "require": {
  6852. "php": ">=7.2"
  6853. },
  6854. "suggest": {
  6855. "ext-intl": "For best performance"
  6856. },
  6857. "type": "library",
  6858. "extra": {
  6859. "thanks": {
  6860. "name": "symfony/polyfill",
  6861. "url": "https://github.com/symfony/polyfill"
  6862. }
  6863. },
  6864. "autoload": {
  6865. "files": [
  6866. "bootstrap.php"
  6867. ],
  6868. "psr-4": {
  6869. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6870. }
  6871. },
  6872. "notification-url": "https://packagist.org/downloads/",
  6873. "license": [
  6874. "MIT"
  6875. ],
  6876. "authors": [
  6877. {
  6878. "name": "Nicolas Grekas",
  6879. "email": "p@tchwork.com"
  6880. },
  6881. {
  6882. "name": "Symfony Community",
  6883. "homepage": "https://symfony.com/contributors"
  6884. }
  6885. ],
  6886. "description": "Symfony polyfill for intl's grapheme_* functions",
  6887. "homepage": "https://symfony.com",
  6888. "keywords": [
  6889. "compatibility",
  6890. "grapheme",
  6891. "intl",
  6892. "polyfill",
  6893. "portable",
  6894. "shim"
  6895. ],
  6896. "support": {
  6897. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6898. },
  6899. "funding": [
  6900. {
  6901. "url": "https://symfony.com/sponsor",
  6902. "type": "custom"
  6903. },
  6904. {
  6905. "url": "https://github.com/fabpot",
  6906. "type": "github"
  6907. },
  6908. {
  6909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6910. "type": "tidelift"
  6911. }
  6912. ],
  6913. "time": "2024-09-09T11:45:10+00:00"
  6914. },
  6915. {
  6916. "name": "symfony/polyfill-intl-normalizer",
  6917. "version": "v1.31.0",
  6918. "source": {
  6919. "type": "git",
  6920. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6921. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6922. },
  6923. "dist": {
  6924. "type": "zip",
  6925. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6926. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6927. "shasum": "",
  6928. "mirrors": [
  6929. {
  6930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6931. "preferred": true
  6932. }
  6933. ]
  6934. },
  6935. "require": {
  6936. "php": ">=7.2"
  6937. },
  6938. "suggest": {
  6939. "ext-intl": "For best performance"
  6940. },
  6941. "type": "library",
  6942. "extra": {
  6943. "thanks": {
  6944. "name": "symfony/polyfill",
  6945. "url": "https://github.com/symfony/polyfill"
  6946. }
  6947. },
  6948. "autoload": {
  6949. "files": [
  6950. "bootstrap.php"
  6951. ],
  6952. "psr-4": {
  6953. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6954. },
  6955. "classmap": [
  6956. "Resources/stubs"
  6957. ]
  6958. },
  6959. "notification-url": "https://packagist.org/downloads/",
  6960. "license": [
  6961. "MIT"
  6962. ],
  6963. "authors": [
  6964. {
  6965. "name": "Nicolas Grekas",
  6966. "email": "p@tchwork.com"
  6967. },
  6968. {
  6969. "name": "Symfony Community",
  6970. "homepage": "https://symfony.com/contributors"
  6971. }
  6972. ],
  6973. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6974. "homepage": "https://symfony.com",
  6975. "keywords": [
  6976. "compatibility",
  6977. "intl",
  6978. "normalizer",
  6979. "polyfill",
  6980. "portable",
  6981. "shim"
  6982. ],
  6983. "support": {
  6984. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6985. },
  6986. "funding": [
  6987. {
  6988. "url": "https://symfony.com/sponsor",
  6989. "type": "custom"
  6990. },
  6991. {
  6992. "url": "https://github.com/fabpot",
  6993. "type": "github"
  6994. },
  6995. {
  6996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6997. "type": "tidelift"
  6998. }
  6999. ],
  7000. "time": "2024-09-09T11:45:10+00:00"
  7001. },
  7002. {
  7003. "name": "symfony/polyfill-mbstring",
  7004. "version": "v1.31.0",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7008. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7013. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7014. "shasum": "",
  7015. "mirrors": [
  7016. {
  7017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7018. "preferred": true
  7019. }
  7020. ]
  7021. },
  7022. "require": {
  7023. "php": ">=7.2"
  7024. },
  7025. "provide": {
  7026. "ext-mbstring": "*"
  7027. },
  7028. "suggest": {
  7029. "ext-mbstring": "For best performance"
  7030. },
  7031. "type": "library",
  7032. "extra": {
  7033. "thanks": {
  7034. "name": "symfony/polyfill",
  7035. "url": "https://github.com/symfony/polyfill"
  7036. }
  7037. },
  7038. "autoload": {
  7039. "files": [
  7040. "bootstrap.php"
  7041. ],
  7042. "psr-4": {
  7043. "Symfony\\Polyfill\\Mbstring\\": ""
  7044. }
  7045. },
  7046. "notification-url": "https://packagist.org/downloads/",
  7047. "license": [
  7048. "MIT"
  7049. ],
  7050. "authors": [
  7051. {
  7052. "name": "Nicolas Grekas",
  7053. "email": "p@tchwork.com"
  7054. },
  7055. {
  7056. "name": "Symfony Community",
  7057. "homepage": "https://symfony.com/contributors"
  7058. }
  7059. ],
  7060. "description": "Symfony polyfill for the Mbstring extension",
  7061. "homepage": "https://symfony.com",
  7062. "keywords": [
  7063. "compatibility",
  7064. "mbstring",
  7065. "polyfill",
  7066. "portable",
  7067. "shim"
  7068. ],
  7069. "support": {
  7070. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7071. },
  7072. "funding": [
  7073. {
  7074. "url": "https://symfony.com/sponsor",
  7075. "type": "custom"
  7076. },
  7077. {
  7078. "url": "https://github.com/fabpot",
  7079. "type": "github"
  7080. },
  7081. {
  7082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7083. "type": "tidelift"
  7084. }
  7085. ],
  7086. "time": "2024-09-09T11:45:10+00:00"
  7087. },
  7088. {
  7089. "name": "symfony/polyfill-php80",
  7090. "version": "v1.31.0",
  7091. "source": {
  7092. "type": "git",
  7093. "url": "https://github.com/symfony/polyfill-php80.git",
  7094. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7095. },
  7096. "dist": {
  7097. "type": "zip",
  7098. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7099. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7100. "shasum": "",
  7101. "mirrors": [
  7102. {
  7103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7104. "preferred": true
  7105. }
  7106. ]
  7107. },
  7108. "require": {
  7109. "php": ">=7.2"
  7110. },
  7111. "type": "library",
  7112. "extra": {
  7113. "thanks": {
  7114. "url": "https://github.com/symfony/polyfill",
  7115. "name": "symfony/polyfill"
  7116. }
  7117. },
  7118. "autoload": {
  7119. "files": [
  7120. "bootstrap.php"
  7121. ],
  7122. "psr-4": {
  7123. "Symfony\\Polyfill\\Php80\\": ""
  7124. },
  7125. "classmap": [
  7126. "Resources/stubs"
  7127. ]
  7128. },
  7129. "notification-url": "https://packagist.org/downloads/",
  7130. "license": [
  7131. "MIT"
  7132. ],
  7133. "authors": [
  7134. {
  7135. "name": "Ion Bazan",
  7136. "email": "ion.bazan@gmail.com"
  7137. },
  7138. {
  7139. "name": "Nicolas Grekas",
  7140. "email": "p@tchwork.com"
  7141. },
  7142. {
  7143. "name": "Symfony Community",
  7144. "homepage": "https://symfony.com/contributors"
  7145. }
  7146. ],
  7147. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7148. "homepage": "https://symfony.com",
  7149. "keywords": [
  7150. "compatibility",
  7151. "polyfill",
  7152. "portable",
  7153. "shim"
  7154. ],
  7155. "support": {
  7156. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7157. },
  7158. "funding": [
  7159. {
  7160. "url": "https://symfony.com/sponsor",
  7161. "type": "custom"
  7162. },
  7163. {
  7164. "url": "https://github.com/fabpot",
  7165. "type": "github"
  7166. },
  7167. {
  7168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7169. "type": "tidelift"
  7170. }
  7171. ],
  7172. "time": "2024-09-09T11:45:10+00:00"
  7173. },
  7174. {
  7175. "name": "symfony/service-contracts",
  7176. "version": "v3.5.1",
  7177. "source": {
  7178. "type": "git",
  7179. "url": "https://github.com/symfony/service-contracts.git",
  7180. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7181. },
  7182. "dist": {
  7183. "type": "zip",
  7184. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7185. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7186. "shasum": "",
  7187. "mirrors": [
  7188. {
  7189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7190. "preferred": true
  7191. }
  7192. ]
  7193. },
  7194. "require": {
  7195. "php": ">=8.1",
  7196. "psr/container": "^1.1|^2.0",
  7197. "symfony/deprecation-contracts": "^2.5|^3"
  7198. },
  7199. "conflict": {
  7200. "ext-psr": "<1.1|>=2"
  7201. },
  7202. "type": "library",
  7203. "extra": {
  7204. "branch-alias": {
  7205. "dev-main": "3.5-dev"
  7206. },
  7207. "thanks": {
  7208. "name": "symfony/contracts",
  7209. "url": "https://github.com/symfony/contracts"
  7210. }
  7211. },
  7212. "autoload": {
  7213. "psr-4": {
  7214. "Symfony\\Contracts\\Service\\": ""
  7215. },
  7216. "exclude-from-classmap": [
  7217. "/Test/"
  7218. ]
  7219. },
  7220. "notification-url": "https://packagist.org/downloads/",
  7221. "license": [
  7222. "MIT"
  7223. ],
  7224. "authors": [
  7225. {
  7226. "name": "Nicolas Grekas",
  7227. "email": "p@tchwork.com"
  7228. },
  7229. {
  7230. "name": "Symfony Community",
  7231. "homepage": "https://symfony.com/contributors"
  7232. }
  7233. ],
  7234. "description": "Generic abstractions related to writing services",
  7235. "homepage": "https://symfony.com",
  7236. "keywords": [
  7237. "abstractions",
  7238. "contracts",
  7239. "decoupling",
  7240. "interfaces",
  7241. "interoperability",
  7242. "standards"
  7243. ],
  7244. "support": {
  7245. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7246. },
  7247. "funding": [
  7248. {
  7249. "url": "https://symfony.com/sponsor",
  7250. "type": "custom"
  7251. },
  7252. {
  7253. "url": "https://github.com/fabpot",
  7254. "type": "github"
  7255. },
  7256. {
  7257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7258. "type": "tidelift"
  7259. }
  7260. ],
  7261. "time": "2024-09-25T14:20:29+00:00"
  7262. },
  7263. {
  7264. "name": "symfony/string",
  7265. "version": "v6.4.13",
  7266. "source": {
  7267. "type": "git",
  7268. "url": "https://github.com/symfony/string.git",
  7269. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  7270. },
  7271. "dist": {
  7272. "type": "zip",
  7273. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7274. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7275. "shasum": "",
  7276. "mirrors": [
  7277. {
  7278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7279. "preferred": true
  7280. }
  7281. ]
  7282. },
  7283. "require": {
  7284. "php": ">=8.1",
  7285. "symfony/polyfill-ctype": "~1.8",
  7286. "symfony/polyfill-intl-grapheme": "~1.0",
  7287. "symfony/polyfill-intl-normalizer": "~1.0",
  7288. "symfony/polyfill-mbstring": "~1.0"
  7289. },
  7290. "conflict": {
  7291. "symfony/translation-contracts": "<2.5"
  7292. },
  7293. "require-dev": {
  7294. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7295. "symfony/http-client": "^5.4|^6.0|^7.0",
  7296. "symfony/intl": "^6.2|^7.0",
  7297. "symfony/translation-contracts": "^2.5|^3.0",
  7298. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7299. },
  7300. "type": "library",
  7301. "autoload": {
  7302. "files": [
  7303. "Resources/functions.php"
  7304. ],
  7305. "psr-4": {
  7306. "Symfony\\Component\\String\\": ""
  7307. },
  7308. "exclude-from-classmap": [
  7309. "/Tests/"
  7310. ]
  7311. },
  7312. "notification-url": "https://packagist.org/downloads/",
  7313. "license": [
  7314. "MIT"
  7315. ],
  7316. "authors": [
  7317. {
  7318. "name": "Nicolas Grekas",
  7319. "email": "p@tchwork.com"
  7320. },
  7321. {
  7322. "name": "Symfony Community",
  7323. "homepage": "https://symfony.com/contributors"
  7324. }
  7325. ],
  7326. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7327. "homepage": "https://symfony.com",
  7328. "keywords": [
  7329. "grapheme",
  7330. "i18n",
  7331. "string",
  7332. "unicode",
  7333. "utf-8",
  7334. "utf8"
  7335. ],
  7336. "support": {
  7337. "source": "https://github.com/symfony/string/tree/v6.4.13"
  7338. },
  7339. "funding": [
  7340. {
  7341. "url": "https://symfony.com/sponsor",
  7342. "type": "custom"
  7343. },
  7344. {
  7345. "url": "https://github.com/fabpot",
  7346. "type": "github"
  7347. },
  7348. {
  7349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7350. "type": "tidelift"
  7351. }
  7352. ],
  7353. "time": "2024-09-25T14:18:03+00:00"
  7354. },
  7355. {
  7356. "name": "symfony/translation",
  7357. "version": "v6.4.13",
  7358. "source": {
  7359. "type": "git",
  7360. "url": "https://github.com/symfony/translation.git",
  7361. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7362. },
  7363. "dist": {
  7364. "type": "zip",
  7365. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7366. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7367. "shasum": "",
  7368. "mirrors": [
  7369. {
  7370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7371. "preferred": true
  7372. }
  7373. ]
  7374. },
  7375. "require": {
  7376. "php": ">=8.1",
  7377. "symfony/deprecation-contracts": "^2.5|^3",
  7378. "symfony/polyfill-mbstring": "~1.0",
  7379. "symfony/translation-contracts": "^2.5|^3.0"
  7380. },
  7381. "conflict": {
  7382. "symfony/config": "<5.4",
  7383. "symfony/console": "<5.4",
  7384. "symfony/dependency-injection": "<5.4",
  7385. "symfony/http-client-contracts": "<2.5",
  7386. "symfony/http-kernel": "<5.4",
  7387. "symfony/service-contracts": "<2.5",
  7388. "symfony/twig-bundle": "<5.4",
  7389. "symfony/yaml": "<5.4"
  7390. },
  7391. "provide": {
  7392. "symfony/translation-implementation": "2.3|3.0"
  7393. },
  7394. "require-dev": {
  7395. "nikic/php-parser": "^4.18|^5.0",
  7396. "psr/log": "^1|^2|^3",
  7397. "symfony/config": "^5.4|^6.0|^7.0",
  7398. "symfony/console": "^5.4|^6.0|^7.0",
  7399. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7400. "symfony/finder": "^5.4|^6.0|^7.0",
  7401. "symfony/http-client-contracts": "^2.5|^3.0",
  7402. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7403. "symfony/intl": "^5.4|^6.0|^7.0",
  7404. "symfony/polyfill-intl-icu": "^1.21",
  7405. "symfony/routing": "^5.4|^6.0|^7.0",
  7406. "symfony/service-contracts": "^2.5|^3",
  7407. "symfony/yaml": "^5.4|^6.0|^7.0"
  7408. },
  7409. "type": "library",
  7410. "autoload": {
  7411. "files": [
  7412. "Resources/functions.php"
  7413. ],
  7414. "psr-4": {
  7415. "Symfony\\Component\\Translation\\": ""
  7416. },
  7417. "exclude-from-classmap": [
  7418. "/Tests/"
  7419. ]
  7420. },
  7421. "notification-url": "https://packagist.org/downloads/",
  7422. "license": [
  7423. "MIT"
  7424. ],
  7425. "authors": [
  7426. {
  7427. "name": "Fabien Potencier",
  7428. "email": "fabien@symfony.com"
  7429. },
  7430. {
  7431. "name": "Symfony Community",
  7432. "homepage": "https://symfony.com/contributors"
  7433. }
  7434. ],
  7435. "description": "Provides tools to internationalize your application",
  7436. "homepage": "https://symfony.com",
  7437. "support": {
  7438. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7439. },
  7440. "funding": [
  7441. {
  7442. "url": "https://symfony.com/sponsor",
  7443. "type": "custom"
  7444. },
  7445. {
  7446. "url": "https://github.com/fabpot",
  7447. "type": "github"
  7448. },
  7449. {
  7450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7451. "type": "tidelift"
  7452. }
  7453. ],
  7454. "time": "2024-09-27T18:14:25+00:00"
  7455. },
  7456. {
  7457. "name": "symfony/translation-contracts",
  7458. "version": "v3.5.1",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/symfony/translation-contracts.git",
  7462. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7467. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7468. "shasum": "",
  7469. "mirrors": [
  7470. {
  7471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7472. "preferred": true
  7473. }
  7474. ]
  7475. },
  7476. "require": {
  7477. "php": ">=8.1"
  7478. },
  7479. "type": "library",
  7480. "extra": {
  7481. "thanks": {
  7482. "url": "https://github.com/symfony/contracts",
  7483. "name": "symfony/contracts"
  7484. },
  7485. "branch-alias": {
  7486. "dev-main": "3.5-dev"
  7487. }
  7488. },
  7489. "autoload": {
  7490. "psr-4": {
  7491. "Symfony\\Contracts\\Translation\\": ""
  7492. },
  7493. "exclude-from-classmap": [
  7494. "/Test/"
  7495. ]
  7496. },
  7497. "notification-url": "https://packagist.org/downloads/",
  7498. "license": [
  7499. "MIT"
  7500. ],
  7501. "authors": [
  7502. {
  7503. "name": "Nicolas Grekas",
  7504. "email": "p@tchwork.com"
  7505. },
  7506. {
  7507. "name": "Symfony Community",
  7508. "homepage": "https://symfony.com/contributors"
  7509. }
  7510. ],
  7511. "description": "Generic abstractions related to translation",
  7512. "homepage": "https://symfony.com",
  7513. "keywords": [
  7514. "abstractions",
  7515. "contracts",
  7516. "decoupling",
  7517. "interfaces",
  7518. "interoperability",
  7519. "standards"
  7520. ],
  7521. "support": {
  7522. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7523. },
  7524. "funding": [
  7525. {
  7526. "url": "https://symfony.com/sponsor",
  7527. "type": "custom"
  7528. },
  7529. {
  7530. "url": "https://github.com/fabpot",
  7531. "type": "github"
  7532. },
  7533. {
  7534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7535. "type": "tidelift"
  7536. }
  7537. ],
  7538. "time": "2024-09-25T14:20:29+00:00"
  7539. },
  7540. {
  7541. "name": "vlucas/phpdotenv",
  7542. "version": "v5.6.1",
  7543. "source": {
  7544. "type": "git",
  7545. "url": "https://github.com/vlucas/phpdotenv.git",
  7546. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7547. },
  7548. "dist": {
  7549. "type": "zip",
  7550. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7551. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7552. "shasum": "",
  7553. "mirrors": [
  7554. {
  7555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7556. "preferred": true
  7557. }
  7558. ]
  7559. },
  7560. "require": {
  7561. "ext-pcre": "*",
  7562. "graham-campbell/result-type": "^1.1.3",
  7563. "php": "^7.2.5 || ^8.0",
  7564. "phpoption/phpoption": "^1.9.3",
  7565. "symfony/polyfill-ctype": "^1.24",
  7566. "symfony/polyfill-mbstring": "^1.24",
  7567. "symfony/polyfill-php80": "^1.24"
  7568. },
  7569. "require-dev": {
  7570. "bamarni/composer-bin-plugin": "^1.8.2",
  7571. "ext-filter": "*",
  7572. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7573. },
  7574. "suggest": {
  7575. "ext-filter": "Required to use the boolean validator."
  7576. },
  7577. "type": "library",
  7578. "extra": {
  7579. "bamarni-bin": {
  7580. "bin-links": true,
  7581. "forward-command": false
  7582. },
  7583. "branch-alias": {
  7584. "dev-master": "5.6-dev"
  7585. }
  7586. },
  7587. "autoload": {
  7588. "psr-4": {
  7589. "Dotenv\\": "src/"
  7590. }
  7591. },
  7592. "notification-url": "https://packagist.org/downloads/",
  7593. "license": [
  7594. "BSD-3-Clause"
  7595. ],
  7596. "authors": [
  7597. {
  7598. "name": "Graham Campbell",
  7599. "email": "hello@gjcampbell.co.uk",
  7600. "homepage": "https://github.com/GrahamCampbell"
  7601. },
  7602. {
  7603. "name": "Vance Lucas",
  7604. "email": "vance@vancelucas.com",
  7605. "homepage": "https://github.com/vlucas"
  7606. }
  7607. ],
  7608. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7609. "keywords": [
  7610. "dotenv",
  7611. "env",
  7612. "environment"
  7613. ],
  7614. "support": {
  7615. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7616. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7617. },
  7618. "funding": [
  7619. {
  7620. "url": "https://github.com/GrahamCampbell",
  7621. "type": "github"
  7622. },
  7623. {
  7624. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7625. "type": "tidelift"
  7626. }
  7627. ],
  7628. "time": "2024-07-20T21:52:34+00:00"
  7629. }
  7630. ],
  7631. "packages-dev": [
  7632. {
  7633. "name": "clue/ndjson-react",
  7634. "version": "v1.3.0",
  7635. "source": {
  7636. "type": "git",
  7637. "url": "https://github.com/clue/reactphp-ndjson.git",
  7638. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7639. },
  7640. "dist": {
  7641. "type": "zip",
  7642. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7643. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7644. "shasum": "",
  7645. "mirrors": [
  7646. {
  7647. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7648. "preferred": true
  7649. }
  7650. ]
  7651. },
  7652. "require": {
  7653. "php": ">=5.3",
  7654. "react/stream": "^1.2"
  7655. },
  7656. "require-dev": {
  7657. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7658. "react/event-loop": "^1.2"
  7659. },
  7660. "type": "library",
  7661. "autoload": {
  7662. "psr-4": {
  7663. "Clue\\React\\NDJson\\": "src/"
  7664. }
  7665. },
  7666. "notification-url": "https://packagist.org/downloads/",
  7667. "license": [
  7668. "MIT"
  7669. ],
  7670. "authors": [
  7671. {
  7672. "name": "Christian Lück",
  7673. "email": "christian@clue.engineering"
  7674. }
  7675. ],
  7676. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7677. "homepage": "https://github.com/clue/reactphp-ndjson",
  7678. "keywords": [
  7679. "NDJSON",
  7680. "json",
  7681. "jsonlines",
  7682. "newline",
  7683. "reactphp",
  7684. "streaming"
  7685. ],
  7686. "support": {
  7687. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7688. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7689. },
  7690. "funding": [
  7691. {
  7692. "url": "https://clue.engineering/support",
  7693. "type": "custom"
  7694. },
  7695. {
  7696. "url": "https://github.com/clue",
  7697. "type": "github"
  7698. }
  7699. ],
  7700. "time": "2022-12-23T10:58:28+00:00"
  7701. },
  7702. {
  7703. "name": "composer/pcre",
  7704. "version": "3.3.2",
  7705. "source": {
  7706. "type": "git",
  7707. "url": "https://github.com/composer/pcre.git",
  7708. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  7709. },
  7710. "dist": {
  7711. "type": "zip",
  7712. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7713. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7714. "shasum": "",
  7715. "mirrors": [
  7716. {
  7717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7718. "preferred": true
  7719. }
  7720. ]
  7721. },
  7722. "require": {
  7723. "php": "^7.4 || ^8.0"
  7724. },
  7725. "conflict": {
  7726. "phpstan/phpstan": "<1.11.10"
  7727. },
  7728. "require-dev": {
  7729. "phpstan/phpstan": "^1.12 || ^2",
  7730. "phpstan/phpstan-strict-rules": "^1 || ^2",
  7731. "phpunit/phpunit": "^8 || ^9"
  7732. },
  7733. "type": "library",
  7734. "extra": {
  7735. "branch-alias": {
  7736. "dev-main": "3.x-dev"
  7737. },
  7738. "phpstan": {
  7739. "includes": [
  7740. "extension.neon"
  7741. ]
  7742. }
  7743. },
  7744. "autoload": {
  7745. "psr-4": {
  7746. "Composer\\Pcre\\": "src"
  7747. }
  7748. },
  7749. "notification-url": "https://packagist.org/downloads/",
  7750. "license": [
  7751. "MIT"
  7752. ],
  7753. "authors": [
  7754. {
  7755. "name": "Jordi Boggiano",
  7756. "email": "j.boggiano@seld.be",
  7757. "homepage": "http://seld.be"
  7758. }
  7759. ],
  7760. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7761. "keywords": [
  7762. "PCRE",
  7763. "preg",
  7764. "regex",
  7765. "regular expression"
  7766. ],
  7767. "support": {
  7768. "issues": "https://github.com/composer/pcre/issues",
  7769. "source": "https://github.com/composer/pcre/tree/3.3.2"
  7770. },
  7771. "funding": [
  7772. {
  7773. "url": "https://packagist.com",
  7774. "type": "custom"
  7775. },
  7776. {
  7777. "url": "https://github.com/composer",
  7778. "type": "github"
  7779. },
  7780. {
  7781. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7782. "type": "tidelift"
  7783. }
  7784. ],
  7785. "time": "2024-11-12T16:29:46+00:00"
  7786. },
  7787. {
  7788. "name": "composer/semver",
  7789. "version": "3.4.2",
  7790. "source": {
  7791. "type": "git",
  7792. "url": "https://github.com/composer/semver.git",
  7793. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  7794. },
  7795. "dist": {
  7796. "type": "zip",
  7797. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  7798. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  7799. "shasum": "",
  7800. "mirrors": [
  7801. {
  7802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7803. "preferred": true
  7804. }
  7805. ]
  7806. },
  7807. "require": {
  7808. "php": "^5.3.2 || ^7.0 || ^8.0"
  7809. },
  7810. "require-dev": {
  7811. "phpstan/phpstan": "^1.4",
  7812. "symfony/phpunit-bridge": "^4.2 || ^5"
  7813. },
  7814. "type": "library",
  7815. "extra": {
  7816. "branch-alias": {
  7817. "dev-main": "3.x-dev"
  7818. }
  7819. },
  7820. "autoload": {
  7821. "psr-4": {
  7822. "Composer\\Semver\\": "src"
  7823. }
  7824. },
  7825. "notification-url": "https://packagist.org/downloads/",
  7826. "license": [
  7827. "MIT"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "Nils Adermann",
  7832. "email": "naderman@naderman.de",
  7833. "homepage": "http://www.naderman.de"
  7834. },
  7835. {
  7836. "name": "Jordi Boggiano",
  7837. "email": "j.boggiano@seld.be",
  7838. "homepage": "http://seld.be"
  7839. },
  7840. {
  7841. "name": "Rob Bast",
  7842. "email": "rob.bast@gmail.com",
  7843. "homepage": "http://robbast.nl"
  7844. }
  7845. ],
  7846. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7847. "keywords": [
  7848. "semantic",
  7849. "semver",
  7850. "validation",
  7851. "versioning"
  7852. ],
  7853. "support": {
  7854. "irc": "ircs://irc.libera.chat:6697/composer",
  7855. "issues": "https://github.com/composer/semver/issues",
  7856. "source": "https://github.com/composer/semver/tree/3.4.2"
  7857. },
  7858. "funding": [
  7859. {
  7860. "url": "https://packagist.com",
  7861. "type": "custom"
  7862. },
  7863. {
  7864. "url": "https://github.com/composer",
  7865. "type": "github"
  7866. },
  7867. {
  7868. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7869. "type": "tidelift"
  7870. }
  7871. ],
  7872. "time": "2024-07-12T11:35:52+00:00"
  7873. },
  7874. {
  7875. "name": "composer/xdebug-handler",
  7876. "version": "3.0.3",
  7877. "source": {
  7878. "type": "git",
  7879. "url": "https://github.com/composer/xdebug-handler.git",
  7880. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  7881. },
  7882. "dist": {
  7883. "type": "zip",
  7884. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  7885. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  7886. "shasum": "",
  7887. "mirrors": [
  7888. {
  7889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7890. "preferred": true
  7891. }
  7892. ]
  7893. },
  7894. "require": {
  7895. "composer/pcre": "^1 || ^2 || ^3",
  7896. "php": "^7.2.5 || ^8.0",
  7897. "psr/log": "^1 || ^2 || ^3"
  7898. },
  7899. "require-dev": {
  7900. "phpstan/phpstan": "^1.0",
  7901. "phpstan/phpstan-strict-rules": "^1.1",
  7902. "symfony/phpunit-bridge": "^6.0"
  7903. },
  7904. "type": "library",
  7905. "autoload": {
  7906. "psr-4": {
  7907. "Composer\\XdebugHandler\\": "src"
  7908. }
  7909. },
  7910. "notification-url": "https://packagist.org/downloads/",
  7911. "license": [
  7912. "MIT"
  7913. ],
  7914. "authors": [
  7915. {
  7916. "name": "John Stevenson",
  7917. "email": "john-stevenson@blueyonder.co.uk"
  7918. }
  7919. ],
  7920. "description": "Restarts a process without Xdebug.",
  7921. "keywords": [
  7922. "Xdebug",
  7923. "performance"
  7924. ],
  7925. "support": {
  7926. "irc": "irc://irc.freenode.org/composer",
  7927. "issues": "https://github.com/composer/xdebug-handler/issues",
  7928. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  7929. },
  7930. "funding": [
  7931. {
  7932. "url": "https://packagist.com",
  7933. "type": "custom"
  7934. },
  7935. {
  7936. "url": "https://github.com/composer",
  7937. "type": "github"
  7938. },
  7939. {
  7940. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7941. "type": "tidelift"
  7942. }
  7943. ],
  7944. "time": "2022-02-25T21:32:43+00:00"
  7945. },
  7946. {
  7947. "name": "evenement/evenement",
  7948. "version": "v3.0.2",
  7949. "source": {
  7950. "type": "git",
  7951. "url": "https://github.com/igorw/evenement.git",
  7952. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7953. },
  7954. "dist": {
  7955. "type": "zip",
  7956. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7957. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7958. "shasum": "",
  7959. "mirrors": [
  7960. {
  7961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7962. "preferred": true
  7963. }
  7964. ]
  7965. },
  7966. "require": {
  7967. "php": ">=7.0"
  7968. },
  7969. "require-dev": {
  7970. "phpunit/phpunit": "^9 || ^6"
  7971. },
  7972. "type": "library",
  7973. "autoload": {
  7974. "psr-4": {
  7975. "Evenement\\": "src/"
  7976. }
  7977. },
  7978. "notification-url": "https://packagist.org/downloads/",
  7979. "license": [
  7980. "MIT"
  7981. ],
  7982. "authors": [
  7983. {
  7984. "name": "Igor Wiedler",
  7985. "email": "igor@wiedler.ch"
  7986. }
  7987. ],
  7988. "description": "Événement is a very simple event dispatching library for PHP",
  7989. "keywords": [
  7990. "event-dispatcher",
  7991. "event-emitter"
  7992. ],
  7993. "support": {
  7994. "issues": "https://github.com/igorw/evenement/issues",
  7995. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7996. },
  7997. "time": "2023-08-08T05:53:35+00:00"
  7998. },
  7999. {
  8000. "name": "fidry/cpu-core-counter",
  8001. "version": "1.1.0",
  8002. "source": {
  8003. "type": "git",
  8004. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8005. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  8006. },
  8007. "dist": {
  8008. "type": "zip",
  8009. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8010. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8011. "shasum": "",
  8012. "mirrors": [
  8013. {
  8014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8015. "preferred": true
  8016. }
  8017. ]
  8018. },
  8019. "require": {
  8020. "php": "^7.2 || ^8.0"
  8021. },
  8022. "require-dev": {
  8023. "fidry/makefile": "^0.2.0",
  8024. "fidry/php-cs-fixer-config": "^1.1.2",
  8025. "phpstan/extension-installer": "^1.2.0",
  8026. "phpstan/phpstan": "^1.9.2",
  8027. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8028. "phpstan/phpstan-phpunit": "^1.2.2",
  8029. "phpstan/phpstan-strict-rules": "^1.4.4",
  8030. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8031. "webmozarts/strict-phpunit": "^7.5"
  8032. },
  8033. "type": "library",
  8034. "autoload": {
  8035. "psr-4": {
  8036. "Fidry\\CpuCoreCounter\\": "src/"
  8037. }
  8038. },
  8039. "notification-url": "https://packagist.org/downloads/",
  8040. "license": [
  8041. "MIT"
  8042. ],
  8043. "authors": [
  8044. {
  8045. "name": "Théo FIDRY",
  8046. "email": "theo.fidry@gmail.com"
  8047. }
  8048. ],
  8049. "description": "Tiny utility to get the number of CPU cores.",
  8050. "keywords": [
  8051. "CPU",
  8052. "core"
  8053. ],
  8054. "support": {
  8055. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8056. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  8057. },
  8058. "funding": [
  8059. {
  8060. "url": "https://github.com/theofidry",
  8061. "type": "github"
  8062. }
  8063. ],
  8064. "time": "2024-02-07T09:43:46+00:00"
  8065. },
  8066. {
  8067. "name": "friendsofphp/php-cs-fixer",
  8068. "version": "v3.64.0",
  8069. "source": {
  8070. "type": "git",
  8071. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8072. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8073. },
  8074. "dist": {
  8075. "type": "zip",
  8076. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8077. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8078. "shasum": "",
  8079. "mirrors": [
  8080. {
  8081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8082. "preferred": true
  8083. }
  8084. ]
  8085. },
  8086. "require": {
  8087. "clue/ndjson-react": "^1.0",
  8088. "composer/semver": "^3.4",
  8089. "composer/xdebug-handler": "^3.0.3",
  8090. "ext-filter": "*",
  8091. "ext-json": "*",
  8092. "ext-tokenizer": "*",
  8093. "fidry/cpu-core-counter": "^1.0",
  8094. "php": "^7.4 || ^8.0",
  8095. "react/child-process": "^0.6.5",
  8096. "react/event-loop": "^1.0",
  8097. "react/promise": "^2.0 || ^3.0",
  8098. "react/socket": "^1.0",
  8099. "react/stream": "^1.0",
  8100. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8101. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8102. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8103. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8104. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8105. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8106. "symfony/polyfill-mbstring": "^1.28",
  8107. "symfony/polyfill-php80": "^1.28",
  8108. "symfony/polyfill-php81": "^1.28",
  8109. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8110. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8111. },
  8112. "require-dev": {
  8113. "facile-it/paraunit": "^1.3 || ^2.3",
  8114. "infection/infection": "^0.29.5",
  8115. "justinrainbow/json-schema": "^5.2",
  8116. "keradus/cli-executor": "^2.1",
  8117. "mikey179/vfsstream": "^1.6.11",
  8118. "php-coveralls/php-coveralls": "^2.7",
  8119. "php-cs-fixer/accessible-object": "^1.1",
  8120. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8121. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8122. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8123. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8124. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8125. },
  8126. "suggest": {
  8127. "ext-dom": "For handling output formats in XML",
  8128. "ext-mbstring": "For handling non-UTF8 characters."
  8129. },
  8130. "bin": [
  8131. "php-cs-fixer"
  8132. ],
  8133. "type": "application",
  8134. "autoload": {
  8135. "psr-4": {
  8136. "PhpCsFixer\\": "src/"
  8137. },
  8138. "exclude-from-classmap": [
  8139. "src/Fixer/Internal/*"
  8140. ]
  8141. },
  8142. "notification-url": "https://packagist.org/downloads/",
  8143. "license": [
  8144. "MIT"
  8145. ],
  8146. "authors": [
  8147. {
  8148. "name": "Fabien Potencier",
  8149. "email": "fabien@symfony.com"
  8150. },
  8151. {
  8152. "name": "Dariusz Rumiński",
  8153. "email": "dariusz.ruminski@gmail.com"
  8154. }
  8155. ],
  8156. "description": "A tool to automatically fix PHP code style",
  8157. "keywords": [
  8158. "Static code analysis",
  8159. "fixer",
  8160. "standards",
  8161. "static analysis"
  8162. ],
  8163. "support": {
  8164. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8165. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8166. },
  8167. "funding": [
  8168. {
  8169. "url": "https://github.com/keradus",
  8170. "type": "github"
  8171. }
  8172. ],
  8173. "time": "2024-08-30T23:09:38+00:00"
  8174. },
  8175. {
  8176. "name": "hamcrest/hamcrest-php",
  8177. "version": "v2.0.1",
  8178. "source": {
  8179. "type": "git",
  8180. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8181. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8182. },
  8183. "dist": {
  8184. "type": "zip",
  8185. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8186. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8187. "shasum": "",
  8188. "mirrors": [
  8189. {
  8190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8191. "preferred": true
  8192. }
  8193. ]
  8194. },
  8195. "require": {
  8196. "php": "^5.3|^7.0|^8.0"
  8197. },
  8198. "replace": {
  8199. "cordoval/hamcrest-php": "*",
  8200. "davedevelopment/hamcrest-php": "*",
  8201. "kodova/hamcrest-php": "*"
  8202. },
  8203. "require-dev": {
  8204. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8205. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8206. },
  8207. "type": "library",
  8208. "extra": {
  8209. "branch-alias": {
  8210. "dev-master": "2.1-dev"
  8211. }
  8212. },
  8213. "autoload": {
  8214. "classmap": [
  8215. "hamcrest"
  8216. ]
  8217. },
  8218. "notification-url": "https://packagist.org/downloads/",
  8219. "license": [
  8220. "BSD-3-Clause"
  8221. ],
  8222. "description": "This is the PHP port of Hamcrest Matchers",
  8223. "keywords": [
  8224. "test"
  8225. ],
  8226. "support": {
  8227. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8228. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8229. },
  8230. "time": "2020-07-09T08:09:16+00:00"
  8231. },
  8232. {
  8233. "name": "hyperf/devtool",
  8234. "version": "v3.1.51",
  8235. "source": {
  8236. "type": "git",
  8237. "url": "https://github.com/hyperf/devtool.git",
  8238. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  8239. },
  8240. "dist": {
  8241. "type": "zip",
  8242. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  8243. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  8244. "shasum": "",
  8245. "mirrors": [
  8246. {
  8247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8248. "preferred": true
  8249. }
  8250. ]
  8251. },
  8252. "require": {
  8253. "hyperf/code-parser": "~3.1.0",
  8254. "hyperf/command": "~3.1.0",
  8255. "hyperf/contract": "~3.1.0",
  8256. "hyperf/di": "~3.1.0",
  8257. "hyperf/support": "~3.1.0",
  8258. "hyperf/utils": "~3.1.0",
  8259. "php": ">=8.1"
  8260. },
  8261. "type": "library",
  8262. "extra": {
  8263. "hyperf": {
  8264. "config": "Hyperf\\Devtool\\ConfigProvider"
  8265. },
  8266. "branch-alias": {
  8267. "dev-master": "3.1-dev"
  8268. }
  8269. },
  8270. "autoload": {
  8271. "psr-4": {
  8272. "Hyperf\\Devtool\\": "src/"
  8273. }
  8274. },
  8275. "notification-url": "https://packagist.org/downloads/",
  8276. "license": [
  8277. "MIT"
  8278. ],
  8279. "description": "A Devtool for Hyperf.",
  8280. "homepage": "https://hyperf.io",
  8281. "keywords": [
  8282. "dev",
  8283. "devtool",
  8284. "hyperf",
  8285. "php",
  8286. "swoole"
  8287. ],
  8288. "support": {
  8289. "docs": "https://hyperf.wiki",
  8290. "issues": "https://github.com/hyperf/hyperf/issues",
  8291. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8292. "source": "https://github.com/hyperf/hyperf"
  8293. },
  8294. "funding": [
  8295. {
  8296. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8297. "type": "custom"
  8298. },
  8299. {
  8300. "url": "https://opencollective.com/hyperf",
  8301. "type": "open_collective"
  8302. }
  8303. ],
  8304. "time": "2025-02-06T06:42:00+00:00"
  8305. },
  8306. {
  8307. "name": "hyperf/testing",
  8308. "version": "v3.1.53",
  8309. "source": {
  8310. "type": "git",
  8311. "url": "https://github.com/hyperf/testing.git",
  8312. "reference": "f19d656ad82fcbcf3ab2ea578279c9b66d357f31"
  8313. },
  8314. "dist": {
  8315. "type": "zip",
  8316. "url": "https://api.github.com/repos/hyperf/testing/zipball/f19d656ad82fcbcf3ab2ea578279c9b66d357f31",
  8317. "reference": "f19d656ad82fcbcf3ab2ea578279c9b66d357f31",
  8318. "shasum": "",
  8319. "mirrors": [
  8320. {
  8321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8322. "preferred": true
  8323. }
  8324. ]
  8325. },
  8326. "require": {
  8327. "hyperf/codec": "~3.1.0",
  8328. "hyperf/collection": "~3.1.0",
  8329. "hyperf/contract": "~3.1.0",
  8330. "hyperf/coroutine": "~3.1.0",
  8331. "hyperf/http-message": "~3.1.0",
  8332. "hyperf/http-server": "~3.1.0",
  8333. "hyperf/support": "~3.1.0",
  8334. "hyperf/utils": "~3.1.0",
  8335. "php": ">=8.1",
  8336. "phpunit/phpunit": "^10.0",
  8337. "psr/container": "^1.0 || ^2.0",
  8338. "symfony/http-foundation": "^5.4 || ^6.0"
  8339. },
  8340. "suggest": {
  8341. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8342. },
  8343. "bin": [
  8344. "co-phpunit"
  8345. ],
  8346. "type": "library",
  8347. "extra": {
  8348. "branch-alias": {
  8349. "dev-master": "3.1-dev"
  8350. }
  8351. },
  8352. "autoload": {
  8353. "psr-4": {
  8354. "Hyperf\\Testing\\": "src/"
  8355. }
  8356. },
  8357. "notification-url": "https://packagist.org/downloads/",
  8358. "license": [
  8359. "MIT"
  8360. ],
  8361. "description": "Testing for hyperf",
  8362. "keywords": [
  8363. "dev",
  8364. "php",
  8365. "swoole",
  8366. "testing"
  8367. ],
  8368. "support": {
  8369. "source": "https://github.com/hyperf/testing/tree/v3.1.53"
  8370. },
  8371. "funding": [
  8372. {
  8373. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8374. "type": "custom"
  8375. },
  8376. {
  8377. "url": "https://opencollective.com/hyperf",
  8378. "type": "open_collective"
  8379. }
  8380. ],
  8381. "time": "2025-03-11T02:33:08+00:00"
  8382. },
  8383. {
  8384. "name": "hyperf/watcher",
  8385. "version": "v3.1.43",
  8386. "source": {
  8387. "type": "git",
  8388. "url": "https://github.com/hyperf/watcher.git",
  8389. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8390. },
  8391. "dist": {
  8392. "type": "zip",
  8393. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8394. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8395. "shasum": "",
  8396. "mirrors": [
  8397. {
  8398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8399. "preferred": true
  8400. }
  8401. ]
  8402. },
  8403. "require": {
  8404. "ext-posix": "*",
  8405. "hyperf/codec": "~3.1.0",
  8406. "hyperf/command": "~3.1.0",
  8407. "hyperf/di": "~3.1.0",
  8408. "hyperf/framework": "~3.1.0",
  8409. "hyperf/support": "~3.1.0",
  8410. "php": ">=8.1"
  8411. },
  8412. "type": "library",
  8413. "extra": {
  8414. "hyperf": {
  8415. "config": "Hyperf\\Watcher\\ConfigProvider"
  8416. },
  8417. "branch-alias": {
  8418. "dev-master": "3.1-dev"
  8419. }
  8420. },
  8421. "autoload": {
  8422. "files": [
  8423. "src/Functions.php"
  8424. ],
  8425. "psr-4": {
  8426. "Hyperf\\Watcher\\": "src/"
  8427. }
  8428. },
  8429. "notification-url": "https://packagist.org/downloads/",
  8430. "license": [
  8431. "MIT"
  8432. ],
  8433. "description": "Hot reload watcher for Hyperf",
  8434. "keywords": [
  8435. "dev",
  8436. "hyperf",
  8437. "php"
  8438. ],
  8439. "support": {
  8440. "issues": "https://github.com/hyperf/watcher/issues",
  8441. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8442. },
  8443. "funding": [
  8444. {
  8445. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8446. "type": "custom"
  8447. },
  8448. {
  8449. "url": "https://opencollective.com/hyperf",
  8450. "type": "open_collective"
  8451. }
  8452. ],
  8453. "time": "2024-10-06T12:33:12+00:00"
  8454. },
  8455. {
  8456. "name": "mockery/mockery",
  8457. "version": "1.6.12",
  8458. "source": {
  8459. "type": "git",
  8460. "url": "https://github.com/mockery/mockery.git",
  8461. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8462. },
  8463. "dist": {
  8464. "type": "zip",
  8465. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8466. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8467. "shasum": "",
  8468. "mirrors": [
  8469. {
  8470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8471. "preferred": true
  8472. }
  8473. ]
  8474. },
  8475. "require": {
  8476. "hamcrest/hamcrest-php": "^2.0.1",
  8477. "lib-pcre": ">=7.0",
  8478. "php": ">=7.3"
  8479. },
  8480. "conflict": {
  8481. "phpunit/phpunit": "<8.0"
  8482. },
  8483. "require-dev": {
  8484. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8485. "symplify/easy-coding-standard": "^12.1.14"
  8486. },
  8487. "type": "library",
  8488. "autoload": {
  8489. "files": [
  8490. "library/helpers.php",
  8491. "library/Mockery.php"
  8492. ],
  8493. "psr-4": {
  8494. "Mockery\\": "library/Mockery"
  8495. }
  8496. },
  8497. "notification-url": "https://packagist.org/downloads/",
  8498. "license": [
  8499. "BSD-3-Clause"
  8500. ],
  8501. "authors": [
  8502. {
  8503. "name": "Pádraic Brady",
  8504. "email": "padraic.brady@gmail.com",
  8505. "homepage": "https://github.com/padraic",
  8506. "role": "Author"
  8507. },
  8508. {
  8509. "name": "Dave Marshall",
  8510. "email": "dave.marshall@atstsolutions.co.uk",
  8511. "homepage": "https://davedevelopment.co.uk",
  8512. "role": "Developer"
  8513. },
  8514. {
  8515. "name": "Nathanael Esayeas",
  8516. "email": "nathanael.esayeas@protonmail.com",
  8517. "homepage": "https://github.com/ghostwriter",
  8518. "role": "Lead Developer"
  8519. }
  8520. ],
  8521. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8522. "homepage": "https://github.com/mockery/mockery",
  8523. "keywords": [
  8524. "BDD",
  8525. "TDD",
  8526. "library",
  8527. "mock",
  8528. "mock objects",
  8529. "mockery",
  8530. "stub",
  8531. "test",
  8532. "test double",
  8533. "testing"
  8534. ],
  8535. "support": {
  8536. "docs": "https://docs.mockery.io/",
  8537. "issues": "https://github.com/mockery/mockery/issues",
  8538. "rss": "https://github.com/mockery/mockery/releases.atom",
  8539. "security": "https://github.com/mockery/mockery/security/advisories",
  8540. "source": "https://github.com/mockery/mockery"
  8541. },
  8542. "time": "2024-05-16T03:13:13+00:00"
  8543. },
  8544. {
  8545. "name": "myclabs/deep-copy",
  8546. "version": "1.x-dev",
  8547. "source": {
  8548. "type": "git",
  8549. "url": "https://github.com/myclabs/DeepCopy.git",
  8550. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  8551. },
  8552. "dist": {
  8553. "type": "zip",
  8554. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  8555. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  8556. "shasum": "",
  8557. "mirrors": [
  8558. {
  8559. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8560. "preferred": true
  8561. }
  8562. ]
  8563. },
  8564. "require": {
  8565. "php": "^7.1 || ^8.0"
  8566. },
  8567. "conflict": {
  8568. "doctrine/collections": "<1.6.8",
  8569. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8570. },
  8571. "require-dev": {
  8572. "doctrine/collections": "^1.6.8",
  8573. "doctrine/common": "^2.13.3 || ^3.2.2",
  8574. "phpspec/prophecy": "^1.10",
  8575. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8576. },
  8577. "default-branch": true,
  8578. "type": "library",
  8579. "autoload": {
  8580. "files": [
  8581. "src/DeepCopy/deep_copy.php"
  8582. ],
  8583. "psr-4": {
  8584. "DeepCopy\\": "src/DeepCopy/"
  8585. }
  8586. },
  8587. "notification-url": "https://packagist.org/downloads/",
  8588. "license": [
  8589. "MIT"
  8590. ],
  8591. "description": "Create deep copies (clones) of your objects",
  8592. "keywords": [
  8593. "clone",
  8594. "copy",
  8595. "duplicate",
  8596. "object",
  8597. "object graph"
  8598. ],
  8599. "support": {
  8600. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8601. "source": "https://github.com/myclabs/DeepCopy/tree/1.x"
  8602. },
  8603. "funding": [
  8604. {
  8605. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8606. "type": "tidelift"
  8607. }
  8608. ],
  8609. "time": "2025-02-12T12:17:51+00:00"
  8610. },
  8611. {
  8612. "name": "phar-io/manifest",
  8613. "version": "dev-master",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/phar-io/manifest.git",
  8617. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8622. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8623. "shasum": "",
  8624. "mirrors": [
  8625. {
  8626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8627. "preferred": true
  8628. }
  8629. ]
  8630. },
  8631. "require": {
  8632. "ext-dom": "*",
  8633. "ext-libxml": "*",
  8634. "ext-phar": "*",
  8635. "ext-xmlwriter": "*",
  8636. "phar-io/version": "^3.0.1",
  8637. "php": "^7.2 || ^8.0"
  8638. },
  8639. "default-branch": true,
  8640. "type": "library",
  8641. "extra": {
  8642. "branch-alias": {
  8643. "dev-master": "2.0.x-dev"
  8644. }
  8645. },
  8646. "autoload": {
  8647. "classmap": [
  8648. "src/"
  8649. ]
  8650. },
  8651. "notification-url": "https://packagist.org/downloads/",
  8652. "license": [
  8653. "BSD-3-Clause"
  8654. ],
  8655. "authors": [
  8656. {
  8657. "name": "Arne Blankerts",
  8658. "email": "arne@blankerts.de",
  8659. "role": "Developer"
  8660. },
  8661. {
  8662. "name": "Sebastian Heuer",
  8663. "email": "sebastian@phpeople.de",
  8664. "role": "Developer"
  8665. },
  8666. {
  8667. "name": "Sebastian Bergmann",
  8668. "email": "sebastian@phpunit.de",
  8669. "role": "Developer"
  8670. }
  8671. ],
  8672. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8673. "support": {
  8674. "issues": "https://github.com/phar-io/manifest/issues",
  8675. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8676. },
  8677. "funding": [
  8678. {
  8679. "url": "https://github.com/theseer",
  8680. "type": "github"
  8681. }
  8682. ],
  8683. "time": "2024-03-03T12:33:53+00:00"
  8684. },
  8685. {
  8686. "name": "phar-io/version",
  8687. "version": "3.2.1",
  8688. "source": {
  8689. "type": "git",
  8690. "url": "https://github.com/phar-io/version.git",
  8691. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8692. },
  8693. "dist": {
  8694. "type": "zip",
  8695. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8696. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8697. "shasum": "",
  8698. "mirrors": [
  8699. {
  8700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8701. "preferred": true
  8702. }
  8703. ]
  8704. },
  8705. "require": {
  8706. "php": "^7.2 || ^8.0"
  8707. },
  8708. "type": "library",
  8709. "autoload": {
  8710. "classmap": [
  8711. "src/"
  8712. ]
  8713. },
  8714. "notification-url": "https://packagist.org/downloads/",
  8715. "license": [
  8716. "BSD-3-Clause"
  8717. ],
  8718. "authors": [
  8719. {
  8720. "name": "Arne Blankerts",
  8721. "email": "arne@blankerts.de",
  8722. "role": "Developer"
  8723. },
  8724. {
  8725. "name": "Sebastian Heuer",
  8726. "email": "sebastian@phpeople.de",
  8727. "role": "Developer"
  8728. },
  8729. {
  8730. "name": "Sebastian Bergmann",
  8731. "email": "sebastian@phpunit.de",
  8732. "role": "Developer"
  8733. }
  8734. ],
  8735. "description": "Library for handling version information and constraints",
  8736. "support": {
  8737. "issues": "https://github.com/phar-io/version/issues",
  8738. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8739. },
  8740. "time": "2022-02-21T01:04:05+00:00"
  8741. },
  8742. {
  8743. "name": "phpstan/phpstan",
  8744. "version": "1.12.18",
  8745. "source": {
  8746. "type": "git",
  8747. "url": "https://github.com/phpstan/phpstan.git",
  8748. "reference": "fef9f07814a573399229304bb0046affdf558812"
  8749. },
  8750. "dist": {
  8751. "type": "zip",
  8752. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fef9f07814a573399229304bb0046affdf558812",
  8753. "reference": "fef9f07814a573399229304bb0046affdf558812",
  8754. "shasum": "",
  8755. "mirrors": [
  8756. {
  8757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8758. "preferred": true
  8759. }
  8760. ]
  8761. },
  8762. "require": {
  8763. "php": "^7.2|^8.0"
  8764. },
  8765. "conflict": {
  8766. "phpstan/phpstan-shim": "*"
  8767. },
  8768. "bin": [
  8769. "phpstan",
  8770. "phpstan.phar"
  8771. ],
  8772. "type": "library",
  8773. "autoload": {
  8774. "files": [
  8775. "bootstrap.php"
  8776. ]
  8777. },
  8778. "notification-url": "https://packagist.org/downloads/",
  8779. "license": [
  8780. "MIT"
  8781. ],
  8782. "description": "PHPStan - PHP Static Analysis Tool",
  8783. "keywords": [
  8784. "dev",
  8785. "static analysis"
  8786. ],
  8787. "support": {
  8788. "docs": "https://phpstan.org/user-guide/getting-started",
  8789. "forum": "https://github.com/phpstan/phpstan/discussions",
  8790. "issues": "https://github.com/phpstan/phpstan/issues",
  8791. "security": "https://github.com/phpstan/phpstan/security/policy",
  8792. "source": "https://github.com/phpstan/phpstan-src"
  8793. },
  8794. "funding": [
  8795. {
  8796. "url": "https://github.com/ondrejmirtes",
  8797. "type": "github"
  8798. },
  8799. {
  8800. "url": "https://github.com/phpstan",
  8801. "type": "github"
  8802. }
  8803. ],
  8804. "time": "2025-02-13T12:44:44+00:00"
  8805. },
  8806. {
  8807. "name": "phpunit/php-code-coverage",
  8808. "version": "10.1.16",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8812. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8817. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8818. "shasum": "",
  8819. "mirrors": [
  8820. {
  8821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8822. "preferred": true
  8823. }
  8824. ]
  8825. },
  8826. "require": {
  8827. "ext-dom": "*",
  8828. "ext-libxml": "*",
  8829. "ext-xmlwriter": "*",
  8830. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8831. "php": ">=8.1",
  8832. "phpunit/php-file-iterator": "^4.1.0",
  8833. "phpunit/php-text-template": "^3.0.1",
  8834. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8835. "sebastian/complexity": "^3.2.0",
  8836. "sebastian/environment": "^6.1.0",
  8837. "sebastian/lines-of-code": "^2.0.2",
  8838. "sebastian/version": "^4.0.1",
  8839. "theseer/tokenizer": "^1.2.3"
  8840. },
  8841. "require-dev": {
  8842. "phpunit/phpunit": "^10.1"
  8843. },
  8844. "suggest": {
  8845. "ext-pcov": "PHP extension that provides line coverage",
  8846. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8847. },
  8848. "type": "library",
  8849. "extra": {
  8850. "branch-alias": {
  8851. "dev-main": "10.1.x-dev"
  8852. }
  8853. },
  8854. "autoload": {
  8855. "classmap": [
  8856. "src/"
  8857. ]
  8858. },
  8859. "notification-url": "https://packagist.org/downloads/",
  8860. "license": [
  8861. "BSD-3-Clause"
  8862. ],
  8863. "authors": [
  8864. {
  8865. "name": "Sebastian Bergmann",
  8866. "email": "sebastian@phpunit.de",
  8867. "role": "lead"
  8868. }
  8869. ],
  8870. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8871. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8872. "keywords": [
  8873. "coverage",
  8874. "testing",
  8875. "xunit"
  8876. ],
  8877. "support": {
  8878. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8879. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8880. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8881. },
  8882. "funding": [
  8883. {
  8884. "url": "https://github.com/sebastianbergmann",
  8885. "type": "github"
  8886. }
  8887. ],
  8888. "time": "2024-08-22T04:31:57+00:00"
  8889. },
  8890. {
  8891. "name": "phpunit/php-file-iterator",
  8892. "version": "4.1.0",
  8893. "source": {
  8894. "type": "git",
  8895. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8896. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8897. },
  8898. "dist": {
  8899. "type": "zip",
  8900. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8901. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8902. "shasum": "",
  8903. "mirrors": [
  8904. {
  8905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8906. "preferred": true
  8907. }
  8908. ]
  8909. },
  8910. "require": {
  8911. "php": ">=8.1"
  8912. },
  8913. "require-dev": {
  8914. "phpunit/phpunit": "^10.0"
  8915. },
  8916. "type": "library",
  8917. "extra": {
  8918. "branch-alias": {
  8919. "dev-main": "4.0-dev"
  8920. }
  8921. },
  8922. "autoload": {
  8923. "classmap": [
  8924. "src/"
  8925. ]
  8926. },
  8927. "notification-url": "https://packagist.org/downloads/",
  8928. "license": [
  8929. "BSD-3-Clause"
  8930. ],
  8931. "authors": [
  8932. {
  8933. "name": "Sebastian Bergmann",
  8934. "email": "sebastian@phpunit.de",
  8935. "role": "lead"
  8936. }
  8937. ],
  8938. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8939. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8940. "keywords": [
  8941. "filesystem",
  8942. "iterator"
  8943. ],
  8944. "support": {
  8945. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8946. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8947. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8948. },
  8949. "funding": [
  8950. {
  8951. "url": "https://github.com/sebastianbergmann",
  8952. "type": "github"
  8953. }
  8954. ],
  8955. "time": "2023-08-31T06:24:48+00:00"
  8956. },
  8957. {
  8958. "name": "phpunit/php-invoker",
  8959. "version": "4.0.0",
  8960. "source": {
  8961. "type": "git",
  8962. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8963. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8964. },
  8965. "dist": {
  8966. "type": "zip",
  8967. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8968. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8969. "shasum": "",
  8970. "mirrors": [
  8971. {
  8972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8973. "preferred": true
  8974. }
  8975. ]
  8976. },
  8977. "require": {
  8978. "php": ">=8.1"
  8979. },
  8980. "require-dev": {
  8981. "ext-pcntl": "*",
  8982. "phpunit/phpunit": "^10.0"
  8983. },
  8984. "suggest": {
  8985. "ext-pcntl": "*"
  8986. },
  8987. "type": "library",
  8988. "extra": {
  8989. "branch-alias": {
  8990. "dev-main": "4.0-dev"
  8991. }
  8992. },
  8993. "autoload": {
  8994. "classmap": [
  8995. "src/"
  8996. ]
  8997. },
  8998. "notification-url": "https://packagist.org/downloads/",
  8999. "license": [
  9000. "BSD-3-Clause"
  9001. ],
  9002. "authors": [
  9003. {
  9004. "name": "Sebastian Bergmann",
  9005. "email": "sebastian@phpunit.de",
  9006. "role": "lead"
  9007. }
  9008. ],
  9009. "description": "Invoke callables with a timeout",
  9010. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9011. "keywords": [
  9012. "process"
  9013. ],
  9014. "support": {
  9015. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9016. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9017. },
  9018. "funding": [
  9019. {
  9020. "url": "https://github.com/sebastianbergmann",
  9021. "type": "github"
  9022. }
  9023. ],
  9024. "time": "2023-02-03T06:56:09+00:00"
  9025. },
  9026. {
  9027. "name": "phpunit/php-text-template",
  9028. "version": "3.0.1",
  9029. "source": {
  9030. "type": "git",
  9031. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9032. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9033. },
  9034. "dist": {
  9035. "type": "zip",
  9036. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9037. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9038. "shasum": "",
  9039. "mirrors": [
  9040. {
  9041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9042. "preferred": true
  9043. }
  9044. ]
  9045. },
  9046. "require": {
  9047. "php": ">=8.1"
  9048. },
  9049. "require-dev": {
  9050. "phpunit/phpunit": "^10.0"
  9051. },
  9052. "type": "library",
  9053. "extra": {
  9054. "branch-alias": {
  9055. "dev-main": "3.0-dev"
  9056. }
  9057. },
  9058. "autoload": {
  9059. "classmap": [
  9060. "src/"
  9061. ]
  9062. },
  9063. "notification-url": "https://packagist.org/downloads/",
  9064. "license": [
  9065. "BSD-3-Clause"
  9066. ],
  9067. "authors": [
  9068. {
  9069. "name": "Sebastian Bergmann",
  9070. "email": "sebastian@phpunit.de",
  9071. "role": "lead"
  9072. }
  9073. ],
  9074. "description": "Simple template engine.",
  9075. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9076. "keywords": [
  9077. "template"
  9078. ],
  9079. "support": {
  9080. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9081. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9082. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9083. },
  9084. "funding": [
  9085. {
  9086. "url": "https://github.com/sebastianbergmann",
  9087. "type": "github"
  9088. }
  9089. ],
  9090. "time": "2023-08-31T14:07:24+00:00"
  9091. },
  9092. {
  9093. "name": "phpunit/php-timer",
  9094. "version": "6.0.0",
  9095. "source": {
  9096. "type": "git",
  9097. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9098. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9099. },
  9100. "dist": {
  9101. "type": "zip",
  9102. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9103. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9104. "shasum": "",
  9105. "mirrors": [
  9106. {
  9107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9108. "preferred": true
  9109. }
  9110. ]
  9111. },
  9112. "require": {
  9113. "php": ">=8.1"
  9114. },
  9115. "require-dev": {
  9116. "phpunit/phpunit": "^10.0"
  9117. },
  9118. "type": "library",
  9119. "extra": {
  9120. "branch-alias": {
  9121. "dev-main": "6.0-dev"
  9122. }
  9123. },
  9124. "autoload": {
  9125. "classmap": [
  9126. "src/"
  9127. ]
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "BSD-3-Clause"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Sebastian Bergmann",
  9136. "email": "sebastian@phpunit.de",
  9137. "role": "lead"
  9138. }
  9139. ],
  9140. "description": "Utility class for timing",
  9141. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9142. "keywords": [
  9143. "timer"
  9144. ],
  9145. "support": {
  9146. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9147. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9148. },
  9149. "funding": [
  9150. {
  9151. "url": "https://github.com/sebastianbergmann",
  9152. "type": "github"
  9153. }
  9154. ],
  9155. "time": "2023-02-03T06:57:52+00:00"
  9156. },
  9157. {
  9158. "name": "phpunit/phpunit",
  9159. "version": "10.5.45",
  9160. "source": {
  9161. "type": "git",
  9162. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9163. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8"
  9164. },
  9165. "dist": {
  9166. "type": "zip",
  9167. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8",
  9168. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8",
  9169. "shasum": "",
  9170. "mirrors": [
  9171. {
  9172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9173. "preferred": true
  9174. }
  9175. ]
  9176. },
  9177. "require": {
  9178. "ext-dom": "*",
  9179. "ext-json": "*",
  9180. "ext-libxml": "*",
  9181. "ext-mbstring": "*",
  9182. "ext-xml": "*",
  9183. "ext-xmlwriter": "*",
  9184. "myclabs/deep-copy": "^1.12.1",
  9185. "phar-io/manifest": "^2.0.4",
  9186. "phar-io/version": "^3.2.1",
  9187. "php": ">=8.1",
  9188. "phpunit/php-code-coverage": "^10.1.16",
  9189. "phpunit/php-file-iterator": "^4.1.0",
  9190. "phpunit/php-invoker": "^4.0.0",
  9191. "phpunit/php-text-template": "^3.0.1",
  9192. "phpunit/php-timer": "^6.0.0",
  9193. "sebastian/cli-parser": "^2.0.1",
  9194. "sebastian/code-unit": "^2.0.0",
  9195. "sebastian/comparator": "^5.0.3",
  9196. "sebastian/diff": "^5.1.1",
  9197. "sebastian/environment": "^6.1.0",
  9198. "sebastian/exporter": "^5.1.2",
  9199. "sebastian/global-state": "^6.0.2",
  9200. "sebastian/object-enumerator": "^5.0.0",
  9201. "sebastian/recursion-context": "^5.0.0",
  9202. "sebastian/type": "^4.0.0",
  9203. "sebastian/version": "^4.0.1"
  9204. },
  9205. "suggest": {
  9206. "ext-soap": "To be able to generate mocks based on WSDL files"
  9207. },
  9208. "bin": [
  9209. "phpunit"
  9210. ],
  9211. "type": "library",
  9212. "extra": {
  9213. "branch-alias": {
  9214. "dev-main": "10.5-dev"
  9215. }
  9216. },
  9217. "autoload": {
  9218. "files": [
  9219. "src/Framework/Assert/Functions.php"
  9220. ],
  9221. "classmap": [
  9222. "src/"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "BSD-3-Clause"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Sebastian Bergmann",
  9232. "email": "sebastian@phpunit.de",
  9233. "role": "lead"
  9234. }
  9235. ],
  9236. "description": "The PHP Unit Testing framework.",
  9237. "homepage": "https://phpunit.de/",
  9238. "keywords": [
  9239. "phpunit",
  9240. "testing",
  9241. "xunit"
  9242. ],
  9243. "support": {
  9244. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9245. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9246. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.45"
  9247. },
  9248. "funding": [
  9249. {
  9250. "url": "https://phpunit.de/sponsors.html",
  9251. "type": "custom"
  9252. },
  9253. {
  9254. "url": "https://github.com/sebastianbergmann",
  9255. "type": "github"
  9256. },
  9257. {
  9258. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9259. "type": "tidelift"
  9260. }
  9261. ],
  9262. "time": "2025-02-06T16:08:12+00:00"
  9263. },
  9264. {
  9265. "name": "react/cache",
  9266. "version": "v1.2.0",
  9267. "source": {
  9268. "type": "git",
  9269. "url": "https://github.com/reactphp/cache.git",
  9270. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9271. },
  9272. "dist": {
  9273. "type": "zip",
  9274. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9275. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9276. "shasum": "",
  9277. "mirrors": [
  9278. {
  9279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9280. "preferred": true
  9281. }
  9282. ]
  9283. },
  9284. "require": {
  9285. "php": ">=5.3.0",
  9286. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9287. },
  9288. "require-dev": {
  9289. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9290. },
  9291. "type": "library",
  9292. "autoload": {
  9293. "psr-4": {
  9294. "React\\Cache\\": "src/"
  9295. }
  9296. },
  9297. "notification-url": "https://packagist.org/downloads/",
  9298. "license": [
  9299. "MIT"
  9300. ],
  9301. "authors": [
  9302. {
  9303. "name": "Christian Lück",
  9304. "email": "christian@clue.engineering",
  9305. "homepage": "https://clue.engineering/"
  9306. },
  9307. {
  9308. "name": "Cees-Jan Kiewiet",
  9309. "email": "reactphp@ceesjankiewiet.nl",
  9310. "homepage": "https://wyrihaximus.net/"
  9311. },
  9312. {
  9313. "name": "Jan Sorgalla",
  9314. "email": "jsorgalla@gmail.com",
  9315. "homepage": "https://sorgalla.com/"
  9316. },
  9317. {
  9318. "name": "Chris Boden",
  9319. "email": "cboden@gmail.com",
  9320. "homepage": "https://cboden.dev/"
  9321. }
  9322. ],
  9323. "description": "Async, Promise-based cache interface for ReactPHP",
  9324. "keywords": [
  9325. "cache",
  9326. "caching",
  9327. "promise",
  9328. "reactphp"
  9329. ],
  9330. "support": {
  9331. "issues": "https://github.com/reactphp/cache/issues",
  9332. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9333. },
  9334. "funding": [
  9335. {
  9336. "url": "https://opencollective.com/reactphp",
  9337. "type": "open_collective"
  9338. }
  9339. ],
  9340. "time": "2022-11-30T15:59:55+00:00"
  9341. },
  9342. {
  9343. "name": "react/child-process",
  9344. "version": "v0.6.6",
  9345. "source": {
  9346. "type": "git",
  9347. "url": "https://github.com/reactphp/child-process.git",
  9348. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  9349. },
  9350. "dist": {
  9351. "type": "zip",
  9352. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9353. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9354. "shasum": "",
  9355. "mirrors": [
  9356. {
  9357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9358. "preferred": true
  9359. }
  9360. ]
  9361. },
  9362. "require": {
  9363. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9364. "php": ">=5.3.0",
  9365. "react/event-loop": "^1.2",
  9366. "react/stream": "^1.4"
  9367. },
  9368. "require-dev": {
  9369. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9370. "react/socket": "^1.16",
  9371. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9372. },
  9373. "type": "library",
  9374. "autoload": {
  9375. "psr-4": {
  9376. "React\\ChildProcess\\": "src/"
  9377. }
  9378. },
  9379. "notification-url": "https://packagist.org/downloads/",
  9380. "license": [
  9381. "MIT"
  9382. ],
  9383. "authors": [
  9384. {
  9385. "name": "Christian Lück",
  9386. "email": "christian@clue.engineering",
  9387. "homepage": "https://clue.engineering/"
  9388. },
  9389. {
  9390. "name": "Cees-Jan Kiewiet",
  9391. "email": "reactphp@ceesjankiewiet.nl",
  9392. "homepage": "https://wyrihaximus.net/"
  9393. },
  9394. {
  9395. "name": "Jan Sorgalla",
  9396. "email": "jsorgalla@gmail.com",
  9397. "homepage": "https://sorgalla.com/"
  9398. },
  9399. {
  9400. "name": "Chris Boden",
  9401. "email": "cboden@gmail.com",
  9402. "homepage": "https://cboden.dev/"
  9403. }
  9404. ],
  9405. "description": "Event-driven library for executing child processes with ReactPHP.",
  9406. "keywords": [
  9407. "event-driven",
  9408. "process",
  9409. "reactphp"
  9410. ],
  9411. "support": {
  9412. "issues": "https://github.com/reactphp/child-process/issues",
  9413. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  9414. },
  9415. "funding": [
  9416. {
  9417. "url": "https://opencollective.com/reactphp",
  9418. "type": "open_collective"
  9419. }
  9420. ],
  9421. "time": "2025-01-01T16:37:48+00:00"
  9422. },
  9423. {
  9424. "name": "react/dns",
  9425. "version": "v1.12.0",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/reactphp/dns.git",
  9429. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9434. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9435. "shasum": "",
  9436. "mirrors": [
  9437. {
  9438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9439. "preferred": true
  9440. }
  9441. ]
  9442. },
  9443. "require": {
  9444. "php": ">=5.3.0",
  9445. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9446. "react/event-loop": "^1.2",
  9447. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9448. },
  9449. "require-dev": {
  9450. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9451. "react/async": "^4 || ^3 || ^2",
  9452. "react/promise-timer": "^1.9"
  9453. },
  9454. "type": "library",
  9455. "autoload": {
  9456. "psr-4": {
  9457. "React\\Dns\\": "src/"
  9458. }
  9459. },
  9460. "notification-url": "https://packagist.org/downloads/",
  9461. "license": [
  9462. "MIT"
  9463. ],
  9464. "authors": [
  9465. {
  9466. "name": "Christian Lück",
  9467. "email": "christian@clue.engineering",
  9468. "homepage": "https://clue.engineering/"
  9469. },
  9470. {
  9471. "name": "Cees-Jan Kiewiet",
  9472. "email": "reactphp@ceesjankiewiet.nl",
  9473. "homepage": "https://wyrihaximus.net/"
  9474. },
  9475. {
  9476. "name": "Jan Sorgalla",
  9477. "email": "jsorgalla@gmail.com",
  9478. "homepage": "https://sorgalla.com/"
  9479. },
  9480. {
  9481. "name": "Chris Boden",
  9482. "email": "cboden@gmail.com",
  9483. "homepage": "https://cboden.dev/"
  9484. }
  9485. ],
  9486. "description": "Async DNS resolver for ReactPHP",
  9487. "keywords": [
  9488. "async",
  9489. "dns",
  9490. "dns-resolver",
  9491. "reactphp"
  9492. ],
  9493. "support": {
  9494. "issues": "https://github.com/reactphp/dns/issues",
  9495. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9496. },
  9497. "funding": [
  9498. {
  9499. "url": "https://opencollective.com/reactphp",
  9500. "type": "open_collective"
  9501. }
  9502. ],
  9503. "time": "2023-11-29T12:41:06+00:00"
  9504. },
  9505. {
  9506. "name": "react/event-loop",
  9507. "version": "v1.5.0",
  9508. "source": {
  9509. "type": "git",
  9510. "url": "https://github.com/reactphp/event-loop.git",
  9511. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9512. },
  9513. "dist": {
  9514. "type": "zip",
  9515. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9516. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9517. "shasum": "",
  9518. "mirrors": [
  9519. {
  9520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9521. "preferred": true
  9522. }
  9523. ]
  9524. },
  9525. "require": {
  9526. "php": ">=5.3.0"
  9527. },
  9528. "require-dev": {
  9529. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9530. },
  9531. "suggest": {
  9532. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9533. },
  9534. "type": "library",
  9535. "autoload": {
  9536. "psr-4": {
  9537. "React\\EventLoop\\": "src/"
  9538. }
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "MIT"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Christian Lück",
  9547. "email": "christian@clue.engineering",
  9548. "homepage": "https://clue.engineering/"
  9549. },
  9550. {
  9551. "name": "Cees-Jan Kiewiet",
  9552. "email": "reactphp@ceesjankiewiet.nl",
  9553. "homepage": "https://wyrihaximus.net/"
  9554. },
  9555. {
  9556. "name": "Jan Sorgalla",
  9557. "email": "jsorgalla@gmail.com",
  9558. "homepage": "https://sorgalla.com/"
  9559. },
  9560. {
  9561. "name": "Chris Boden",
  9562. "email": "cboden@gmail.com",
  9563. "homepage": "https://cboden.dev/"
  9564. }
  9565. ],
  9566. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9567. "keywords": [
  9568. "asynchronous",
  9569. "event-loop"
  9570. ],
  9571. "support": {
  9572. "issues": "https://github.com/reactphp/event-loop/issues",
  9573. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9574. },
  9575. "funding": [
  9576. {
  9577. "url": "https://opencollective.com/reactphp",
  9578. "type": "open_collective"
  9579. }
  9580. ],
  9581. "time": "2023-11-13T13:48:05+00:00"
  9582. },
  9583. {
  9584. "name": "react/promise",
  9585. "version": "v3.1.0",
  9586. "source": {
  9587. "type": "git",
  9588. "url": "https://github.com/reactphp/promise.git",
  9589. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  9590. },
  9591. "dist": {
  9592. "type": "zip",
  9593. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  9594. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  9595. "shasum": "",
  9596. "mirrors": [
  9597. {
  9598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9599. "preferred": true
  9600. }
  9601. ]
  9602. },
  9603. "require": {
  9604. "php": ">=7.1.0"
  9605. },
  9606. "require-dev": {
  9607. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9608. "phpunit/phpunit": "^9.6 || ^7.5"
  9609. },
  9610. "type": "library",
  9611. "autoload": {
  9612. "files": [
  9613. "src/functions_include.php"
  9614. ],
  9615. "psr-4": {
  9616. "React\\Promise\\": "src/"
  9617. }
  9618. },
  9619. "notification-url": "https://packagist.org/downloads/",
  9620. "license": [
  9621. "MIT"
  9622. ],
  9623. "authors": [
  9624. {
  9625. "name": "Jan Sorgalla",
  9626. "email": "jsorgalla@gmail.com",
  9627. "homepage": "https://sorgalla.com/"
  9628. },
  9629. {
  9630. "name": "Christian Lück",
  9631. "email": "christian@clue.engineering",
  9632. "homepage": "https://clue.engineering/"
  9633. },
  9634. {
  9635. "name": "Cees-Jan Kiewiet",
  9636. "email": "reactphp@ceesjankiewiet.nl",
  9637. "homepage": "https://wyrihaximus.net/"
  9638. },
  9639. {
  9640. "name": "Chris Boden",
  9641. "email": "cboden@gmail.com",
  9642. "homepage": "https://cboden.dev/"
  9643. }
  9644. ],
  9645. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9646. "keywords": [
  9647. "promise",
  9648. "promises"
  9649. ],
  9650. "support": {
  9651. "issues": "https://github.com/reactphp/promise/issues",
  9652. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  9653. },
  9654. "funding": [
  9655. {
  9656. "url": "https://opencollective.com/reactphp",
  9657. "type": "open_collective"
  9658. }
  9659. ],
  9660. "time": "2023-11-16T16:21:57+00:00"
  9661. },
  9662. {
  9663. "name": "react/socket",
  9664. "version": "v1.15.0",
  9665. "source": {
  9666. "type": "git",
  9667. "url": "https://github.com/reactphp/socket.git",
  9668. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9669. },
  9670. "dist": {
  9671. "type": "zip",
  9672. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9673. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9674. "shasum": "",
  9675. "mirrors": [
  9676. {
  9677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9678. "preferred": true
  9679. }
  9680. ]
  9681. },
  9682. "require": {
  9683. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9684. "php": ">=5.3.0",
  9685. "react/dns": "^1.11",
  9686. "react/event-loop": "^1.2",
  9687. "react/promise": "^3 || ^2.6 || ^1.2.1",
  9688. "react/stream": "^1.2"
  9689. },
  9690. "require-dev": {
  9691. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9692. "react/async": "^4 || ^3 || ^2",
  9693. "react/promise-stream": "^1.4",
  9694. "react/promise-timer": "^1.10"
  9695. },
  9696. "type": "library",
  9697. "autoload": {
  9698. "psr-4": {
  9699. "React\\Socket\\": "src/"
  9700. }
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "MIT"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Christian Lück",
  9709. "email": "christian@clue.engineering",
  9710. "homepage": "https://clue.engineering/"
  9711. },
  9712. {
  9713. "name": "Cees-Jan Kiewiet",
  9714. "email": "reactphp@ceesjankiewiet.nl",
  9715. "homepage": "https://wyrihaximus.net/"
  9716. },
  9717. {
  9718. "name": "Jan Sorgalla",
  9719. "email": "jsorgalla@gmail.com",
  9720. "homepage": "https://sorgalla.com/"
  9721. },
  9722. {
  9723. "name": "Chris Boden",
  9724. "email": "cboden@gmail.com",
  9725. "homepage": "https://cboden.dev/"
  9726. }
  9727. ],
  9728. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9729. "keywords": [
  9730. "Connection",
  9731. "Socket",
  9732. "async",
  9733. "reactphp",
  9734. "stream"
  9735. ],
  9736. "support": {
  9737. "issues": "https://github.com/reactphp/socket/issues",
  9738. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9739. },
  9740. "funding": [
  9741. {
  9742. "url": "https://opencollective.com/reactphp",
  9743. "type": "open_collective"
  9744. }
  9745. ],
  9746. "time": "2023-12-15T11:02:10+00:00"
  9747. },
  9748. {
  9749. "name": "react/stream",
  9750. "version": "1.x-dev",
  9751. "source": {
  9752. "type": "git",
  9753. "url": "https://github.com/reactphp/stream.git",
  9754. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9755. },
  9756. "dist": {
  9757. "type": "zip",
  9758. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9759. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9760. "shasum": "",
  9761. "mirrors": [
  9762. {
  9763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9764. "preferred": true
  9765. }
  9766. ]
  9767. },
  9768. "require": {
  9769. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9770. "php": ">=5.3.8",
  9771. "react/event-loop": "^1.2"
  9772. },
  9773. "require-dev": {
  9774. "clue/stream-filter": "~1.2",
  9775. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9776. },
  9777. "type": "library",
  9778. "autoload": {
  9779. "psr-4": {
  9780. "React\\Stream\\": "src/"
  9781. }
  9782. },
  9783. "notification-url": "https://packagist.org/downloads/",
  9784. "license": [
  9785. "MIT"
  9786. ],
  9787. "authors": [
  9788. {
  9789. "name": "Christian Lück",
  9790. "email": "christian@clue.engineering",
  9791. "homepage": "https://clue.engineering/"
  9792. },
  9793. {
  9794. "name": "Cees-Jan Kiewiet",
  9795. "email": "reactphp@ceesjankiewiet.nl",
  9796. "homepage": "https://wyrihaximus.net/"
  9797. },
  9798. {
  9799. "name": "Jan Sorgalla",
  9800. "email": "jsorgalla@gmail.com",
  9801. "homepage": "https://sorgalla.com/"
  9802. },
  9803. {
  9804. "name": "Chris Boden",
  9805. "email": "cboden@gmail.com",
  9806. "homepage": "https://cboden.dev/"
  9807. }
  9808. ],
  9809. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9810. "keywords": [
  9811. "event-driven",
  9812. "io",
  9813. "non-blocking",
  9814. "pipe",
  9815. "reactphp",
  9816. "readable",
  9817. "stream",
  9818. "writable"
  9819. ],
  9820. "support": {
  9821. "issues": "https://github.com/reactphp/stream/issues",
  9822. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9823. },
  9824. "funding": [
  9825. {
  9826. "url": "https://opencollective.com/reactphp",
  9827. "type": "open_collective"
  9828. }
  9829. ],
  9830. "time": "2024-06-11T12:45:25+00:00"
  9831. },
  9832. {
  9833. "name": "sebastian/cli-parser",
  9834. "version": "2.0.1",
  9835. "source": {
  9836. "type": "git",
  9837. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9838. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9839. },
  9840. "dist": {
  9841. "type": "zip",
  9842. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9843. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9844. "shasum": "",
  9845. "mirrors": [
  9846. {
  9847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9848. "preferred": true
  9849. }
  9850. ]
  9851. },
  9852. "require": {
  9853. "php": ">=8.1"
  9854. },
  9855. "require-dev": {
  9856. "phpunit/phpunit": "^10.0"
  9857. },
  9858. "type": "library",
  9859. "extra": {
  9860. "branch-alias": {
  9861. "dev-main": "2.0-dev"
  9862. }
  9863. },
  9864. "autoload": {
  9865. "classmap": [
  9866. "src/"
  9867. ]
  9868. },
  9869. "notification-url": "https://packagist.org/downloads/",
  9870. "license": [
  9871. "BSD-3-Clause"
  9872. ],
  9873. "authors": [
  9874. {
  9875. "name": "Sebastian Bergmann",
  9876. "email": "sebastian@phpunit.de",
  9877. "role": "lead"
  9878. }
  9879. ],
  9880. "description": "Library for parsing CLI options",
  9881. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9882. "support": {
  9883. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9884. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9885. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9886. },
  9887. "funding": [
  9888. {
  9889. "url": "https://github.com/sebastianbergmann",
  9890. "type": "github"
  9891. }
  9892. ],
  9893. "time": "2024-03-02T07:12:49+00:00"
  9894. },
  9895. {
  9896. "name": "sebastian/code-unit",
  9897. "version": "2.0.0",
  9898. "source": {
  9899. "type": "git",
  9900. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9901. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9902. },
  9903. "dist": {
  9904. "type": "zip",
  9905. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9906. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9907. "shasum": "",
  9908. "mirrors": [
  9909. {
  9910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9911. "preferred": true
  9912. }
  9913. ]
  9914. },
  9915. "require": {
  9916. "php": ">=8.1"
  9917. },
  9918. "require-dev": {
  9919. "phpunit/phpunit": "^10.0"
  9920. },
  9921. "type": "library",
  9922. "extra": {
  9923. "branch-alias": {
  9924. "dev-main": "2.0-dev"
  9925. }
  9926. },
  9927. "autoload": {
  9928. "classmap": [
  9929. "src/"
  9930. ]
  9931. },
  9932. "notification-url": "https://packagist.org/downloads/",
  9933. "license": [
  9934. "BSD-3-Clause"
  9935. ],
  9936. "authors": [
  9937. {
  9938. "name": "Sebastian Bergmann",
  9939. "email": "sebastian@phpunit.de",
  9940. "role": "lead"
  9941. }
  9942. ],
  9943. "description": "Collection of value objects that represent the PHP code units",
  9944. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9945. "support": {
  9946. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9947. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9948. },
  9949. "funding": [
  9950. {
  9951. "url": "https://github.com/sebastianbergmann",
  9952. "type": "github"
  9953. }
  9954. ],
  9955. "time": "2023-02-03T06:58:43+00:00"
  9956. },
  9957. {
  9958. "name": "sebastian/code-unit-reverse-lookup",
  9959. "version": "3.0.0",
  9960. "source": {
  9961. "type": "git",
  9962. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9963. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9964. },
  9965. "dist": {
  9966. "type": "zip",
  9967. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9968. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9969. "shasum": "",
  9970. "mirrors": [
  9971. {
  9972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9973. "preferred": true
  9974. }
  9975. ]
  9976. },
  9977. "require": {
  9978. "php": ">=8.1"
  9979. },
  9980. "require-dev": {
  9981. "phpunit/phpunit": "^10.0"
  9982. },
  9983. "type": "library",
  9984. "extra": {
  9985. "branch-alias": {
  9986. "dev-main": "3.0-dev"
  9987. }
  9988. },
  9989. "autoload": {
  9990. "classmap": [
  9991. "src/"
  9992. ]
  9993. },
  9994. "notification-url": "https://packagist.org/downloads/",
  9995. "license": [
  9996. "BSD-3-Clause"
  9997. ],
  9998. "authors": [
  9999. {
  10000. "name": "Sebastian Bergmann",
  10001. "email": "sebastian@phpunit.de"
  10002. }
  10003. ],
  10004. "description": "Looks up which function or method a line of code belongs to",
  10005. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10006. "support": {
  10007. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10008. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10009. },
  10010. "funding": [
  10011. {
  10012. "url": "https://github.com/sebastianbergmann",
  10013. "type": "github"
  10014. }
  10015. ],
  10016. "time": "2023-02-03T06:59:15+00:00"
  10017. },
  10018. {
  10019. "name": "sebastian/comparator",
  10020. "version": "5.0.3",
  10021. "source": {
  10022. "type": "git",
  10023. "url": "https://github.com/sebastianbergmann/comparator.git",
  10024. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10025. },
  10026. "dist": {
  10027. "type": "zip",
  10028. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10029. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10030. "shasum": "",
  10031. "mirrors": [
  10032. {
  10033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10034. "preferred": true
  10035. }
  10036. ]
  10037. },
  10038. "require": {
  10039. "ext-dom": "*",
  10040. "ext-mbstring": "*",
  10041. "php": ">=8.1",
  10042. "sebastian/diff": "^5.0",
  10043. "sebastian/exporter": "^5.0"
  10044. },
  10045. "require-dev": {
  10046. "phpunit/phpunit": "^10.5"
  10047. },
  10048. "type": "library",
  10049. "extra": {
  10050. "branch-alias": {
  10051. "dev-main": "5.0-dev"
  10052. }
  10053. },
  10054. "autoload": {
  10055. "classmap": [
  10056. "src/"
  10057. ]
  10058. },
  10059. "notification-url": "https://packagist.org/downloads/",
  10060. "license": [
  10061. "BSD-3-Clause"
  10062. ],
  10063. "authors": [
  10064. {
  10065. "name": "Sebastian Bergmann",
  10066. "email": "sebastian@phpunit.de"
  10067. },
  10068. {
  10069. "name": "Jeff Welch",
  10070. "email": "whatthejeff@gmail.com"
  10071. },
  10072. {
  10073. "name": "Volker Dusch",
  10074. "email": "github@wallbash.com"
  10075. },
  10076. {
  10077. "name": "Bernhard Schussek",
  10078. "email": "bschussek@2bepublished.at"
  10079. }
  10080. ],
  10081. "description": "Provides the functionality to compare PHP values for equality",
  10082. "homepage": "https://github.com/sebastianbergmann/comparator",
  10083. "keywords": [
  10084. "comparator",
  10085. "compare",
  10086. "equality"
  10087. ],
  10088. "support": {
  10089. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10090. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10091. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10092. },
  10093. "funding": [
  10094. {
  10095. "url": "https://github.com/sebastianbergmann",
  10096. "type": "github"
  10097. }
  10098. ],
  10099. "time": "2024-10-18T14:56:07+00:00"
  10100. },
  10101. {
  10102. "name": "sebastian/complexity",
  10103. "version": "3.2.0",
  10104. "source": {
  10105. "type": "git",
  10106. "url": "https://github.com/sebastianbergmann/complexity.git",
  10107. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10108. },
  10109. "dist": {
  10110. "type": "zip",
  10111. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10112. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10113. "shasum": "",
  10114. "mirrors": [
  10115. {
  10116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10117. "preferred": true
  10118. }
  10119. ]
  10120. },
  10121. "require": {
  10122. "nikic/php-parser": "^4.18 || ^5.0",
  10123. "php": ">=8.1"
  10124. },
  10125. "require-dev": {
  10126. "phpunit/phpunit": "^10.0"
  10127. },
  10128. "type": "library",
  10129. "extra": {
  10130. "branch-alias": {
  10131. "dev-main": "3.2-dev"
  10132. }
  10133. },
  10134. "autoload": {
  10135. "classmap": [
  10136. "src/"
  10137. ]
  10138. },
  10139. "notification-url": "https://packagist.org/downloads/",
  10140. "license": [
  10141. "BSD-3-Clause"
  10142. ],
  10143. "authors": [
  10144. {
  10145. "name": "Sebastian Bergmann",
  10146. "email": "sebastian@phpunit.de",
  10147. "role": "lead"
  10148. }
  10149. ],
  10150. "description": "Library for calculating the complexity of PHP code units",
  10151. "homepage": "https://github.com/sebastianbergmann/complexity",
  10152. "support": {
  10153. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10154. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10155. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10156. },
  10157. "funding": [
  10158. {
  10159. "url": "https://github.com/sebastianbergmann",
  10160. "type": "github"
  10161. }
  10162. ],
  10163. "time": "2023-12-21T08:37:17+00:00"
  10164. },
  10165. {
  10166. "name": "sebastian/diff",
  10167. "version": "5.1.1",
  10168. "source": {
  10169. "type": "git",
  10170. "url": "https://github.com/sebastianbergmann/diff.git",
  10171. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10172. },
  10173. "dist": {
  10174. "type": "zip",
  10175. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10176. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10177. "shasum": "",
  10178. "mirrors": [
  10179. {
  10180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10181. "preferred": true
  10182. }
  10183. ]
  10184. },
  10185. "require": {
  10186. "php": ">=8.1"
  10187. },
  10188. "require-dev": {
  10189. "phpunit/phpunit": "^10.0",
  10190. "symfony/process": "^6.4"
  10191. },
  10192. "type": "library",
  10193. "extra": {
  10194. "branch-alias": {
  10195. "dev-main": "5.1-dev"
  10196. }
  10197. },
  10198. "autoload": {
  10199. "classmap": [
  10200. "src/"
  10201. ]
  10202. },
  10203. "notification-url": "https://packagist.org/downloads/",
  10204. "license": [
  10205. "BSD-3-Clause"
  10206. ],
  10207. "authors": [
  10208. {
  10209. "name": "Sebastian Bergmann",
  10210. "email": "sebastian@phpunit.de"
  10211. },
  10212. {
  10213. "name": "Kore Nordmann",
  10214. "email": "mail@kore-nordmann.de"
  10215. }
  10216. ],
  10217. "description": "Diff implementation",
  10218. "homepage": "https://github.com/sebastianbergmann/diff",
  10219. "keywords": [
  10220. "diff",
  10221. "udiff",
  10222. "unidiff",
  10223. "unified diff"
  10224. ],
  10225. "support": {
  10226. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10227. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10228. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10229. },
  10230. "funding": [
  10231. {
  10232. "url": "https://github.com/sebastianbergmann",
  10233. "type": "github"
  10234. }
  10235. ],
  10236. "time": "2024-03-02T07:15:17+00:00"
  10237. },
  10238. {
  10239. "name": "sebastian/environment",
  10240. "version": "6.1.0",
  10241. "source": {
  10242. "type": "git",
  10243. "url": "https://github.com/sebastianbergmann/environment.git",
  10244. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10245. },
  10246. "dist": {
  10247. "type": "zip",
  10248. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10249. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10250. "shasum": "",
  10251. "mirrors": [
  10252. {
  10253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10254. "preferred": true
  10255. }
  10256. ]
  10257. },
  10258. "require": {
  10259. "php": ">=8.1"
  10260. },
  10261. "require-dev": {
  10262. "phpunit/phpunit": "^10.0"
  10263. },
  10264. "suggest": {
  10265. "ext-posix": "*"
  10266. },
  10267. "type": "library",
  10268. "extra": {
  10269. "branch-alias": {
  10270. "dev-main": "6.1-dev"
  10271. }
  10272. },
  10273. "autoload": {
  10274. "classmap": [
  10275. "src/"
  10276. ]
  10277. },
  10278. "notification-url": "https://packagist.org/downloads/",
  10279. "license": [
  10280. "BSD-3-Clause"
  10281. ],
  10282. "authors": [
  10283. {
  10284. "name": "Sebastian Bergmann",
  10285. "email": "sebastian@phpunit.de"
  10286. }
  10287. ],
  10288. "description": "Provides functionality to handle HHVM/PHP environments",
  10289. "homepage": "https://github.com/sebastianbergmann/environment",
  10290. "keywords": [
  10291. "Xdebug",
  10292. "environment",
  10293. "hhvm"
  10294. ],
  10295. "support": {
  10296. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10297. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10298. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10299. },
  10300. "funding": [
  10301. {
  10302. "url": "https://github.com/sebastianbergmann",
  10303. "type": "github"
  10304. }
  10305. ],
  10306. "time": "2024-03-23T08:47:14+00:00"
  10307. },
  10308. {
  10309. "name": "sebastian/exporter",
  10310. "version": "5.1.2",
  10311. "source": {
  10312. "type": "git",
  10313. "url": "https://github.com/sebastianbergmann/exporter.git",
  10314. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10315. },
  10316. "dist": {
  10317. "type": "zip",
  10318. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10319. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10320. "shasum": "",
  10321. "mirrors": [
  10322. {
  10323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10324. "preferred": true
  10325. }
  10326. ]
  10327. },
  10328. "require": {
  10329. "ext-mbstring": "*",
  10330. "php": ">=8.1",
  10331. "sebastian/recursion-context": "^5.0"
  10332. },
  10333. "require-dev": {
  10334. "phpunit/phpunit": "^10.0"
  10335. },
  10336. "type": "library",
  10337. "extra": {
  10338. "branch-alias": {
  10339. "dev-main": "5.1-dev"
  10340. }
  10341. },
  10342. "autoload": {
  10343. "classmap": [
  10344. "src/"
  10345. ]
  10346. },
  10347. "notification-url": "https://packagist.org/downloads/",
  10348. "license": [
  10349. "BSD-3-Clause"
  10350. ],
  10351. "authors": [
  10352. {
  10353. "name": "Sebastian Bergmann",
  10354. "email": "sebastian@phpunit.de"
  10355. },
  10356. {
  10357. "name": "Jeff Welch",
  10358. "email": "whatthejeff@gmail.com"
  10359. },
  10360. {
  10361. "name": "Volker Dusch",
  10362. "email": "github@wallbash.com"
  10363. },
  10364. {
  10365. "name": "Adam Harvey",
  10366. "email": "aharvey@php.net"
  10367. },
  10368. {
  10369. "name": "Bernhard Schussek",
  10370. "email": "bschussek@gmail.com"
  10371. }
  10372. ],
  10373. "description": "Provides the functionality to export PHP variables for visualization",
  10374. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10375. "keywords": [
  10376. "export",
  10377. "exporter"
  10378. ],
  10379. "support": {
  10380. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10381. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10382. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10383. },
  10384. "funding": [
  10385. {
  10386. "url": "https://github.com/sebastianbergmann",
  10387. "type": "github"
  10388. }
  10389. ],
  10390. "time": "2024-03-02T07:17:12+00:00"
  10391. },
  10392. {
  10393. "name": "sebastian/global-state",
  10394. "version": "6.0.2",
  10395. "source": {
  10396. "type": "git",
  10397. "url": "https://github.com/sebastianbergmann/global-state.git",
  10398. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10399. },
  10400. "dist": {
  10401. "type": "zip",
  10402. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10403. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10404. "shasum": "",
  10405. "mirrors": [
  10406. {
  10407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10408. "preferred": true
  10409. }
  10410. ]
  10411. },
  10412. "require": {
  10413. "php": ">=8.1",
  10414. "sebastian/object-reflector": "^3.0",
  10415. "sebastian/recursion-context": "^5.0"
  10416. },
  10417. "require-dev": {
  10418. "ext-dom": "*",
  10419. "phpunit/phpunit": "^10.0"
  10420. },
  10421. "type": "library",
  10422. "extra": {
  10423. "branch-alias": {
  10424. "dev-main": "6.0-dev"
  10425. }
  10426. },
  10427. "autoload": {
  10428. "classmap": [
  10429. "src/"
  10430. ]
  10431. },
  10432. "notification-url": "https://packagist.org/downloads/",
  10433. "license": [
  10434. "BSD-3-Clause"
  10435. ],
  10436. "authors": [
  10437. {
  10438. "name": "Sebastian Bergmann",
  10439. "email": "sebastian@phpunit.de"
  10440. }
  10441. ],
  10442. "description": "Snapshotting of global state",
  10443. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10444. "keywords": [
  10445. "global state"
  10446. ],
  10447. "support": {
  10448. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10449. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10450. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10451. },
  10452. "funding": [
  10453. {
  10454. "url": "https://github.com/sebastianbergmann",
  10455. "type": "github"
  10456. }
  10457. ],
  10458. "time": "2024-03-02T07:19:19+00:00"
  10459. },
  10460. {
  10461. "name": "sebastian/lines-of-code",
  10462. "version": "2.0.2",
  10463. "source": {
  10464. "type": "git",
  10465. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10466. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10467. },
  10468. "dist": {
  10469. "type": "zip",
  10470. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10471. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10472. "shasum": "",
  10473. "mirrors": [
  10474. {
  10475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10476. "preferred": true
  10477. }
  10478. ]
  10479. },
  10480. "require": {
  10481. "nikic/php-parser": "^4.18 || ^5.0",
  10482. "php": ">=8.1"
  10483. },
  10484. "require-dev": {
  10485. "phpunit/phpunit": "^10.0"
  10486. },
  10487. "type": "library",
  10488. "extra": {
  10489. "branch-alias": {
  10490. "dev-main": "2.0-dev"
  10491. }
  10492. },
  10493. "autoload": {
  10494. "classmap": [
  10495. "src/"
  10496. ]
  10497. },
  10498. "notification-url": "https://packagist.org/downloads/",
  10499. "license": [
  10500. "BSD-3-Clause"
  10501. ],
  10502. "authors": [
  10503. {
  10504. "name": "Sebastian Bergmann",
  10505. "email": "sebastian@phpunit.de",
  10506. "role": "lead"
  10507. }
  10508. ],
  10509. "description": "Library for counting the lines of code in PHP source code",
  10510. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10511. "support": {
  10512. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10513. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10514. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10515. },
  10516. "funding": [
  10517. {
  10518. "url": "https://github.com/sebastianbergmann",
  10519. "type": "github"
  10520. }
  10521. ],
  10522. "time": "2023-12-21T08:38:20+00:00"
  10523. },
  10524. {
  10525. "name": "sebastian/object-enumerator",
  10526. "version": "5.0.0",
  10527. "source": {
  10528. "type": "git",
  10529. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10530. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10531. },
  10532. "dist": {
  10533. "type": "zip",
  10534. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10535. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10536. "shasum": "",
  10537. "mirrors": [
  10538. {
  10539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10540. "preferred": true
  10541. }
  10542. ]
  10543. },
  10544. "require": {
  10545. "php": ">=8.1",
  10546. "sebastian/object-reflector": "^3.0",
  10547. "sebastian/recursion-context": "^5.0"
  10548. },
  10549. "require-dev": {
  10550. "phpunit/phpunit": "^10.0"
  10551. },
  10552. "type": "library",
  10553. "extra": {
  10554. "branch-alias": {
  10555. "dev-main": "5.0-dev"
  10556. }
  10557. },
  10558. "autoload": {
  10559. "classmap": [
  10560. "src/"
  10561. ]
  10562. },
  10563. "notification-url": "https://packagist.org/downloads/",
  10564. "license": [
  10565. "BSD-3-Clause"
  10566. ],
  10567. "authors": [
  10568. {
  10569. "name": "Sebastian Bergmann",
  10570. "email": "sebastian@phpunit.de"
  10571. }
  10572. ],
  10573. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10574. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10575. "support": {
  10576. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10577. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10578. },
  10579. "funding": [
  10580. {
  10581. "url": "https://github.com/sebastianbergmann",
  10582. "type": "github"
  10583. }
  10584. ],
  10585. "time": "2023-02-03T07:08:32+00:00"
  10586. },
  10587. {
  10588. "name": "sebastian/object-reflector",
  10589. "version": "3.0.0",
  10590. "source": {
  10591. "type": "git",
  10592. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10593. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10594. },
  10595. "dist": {
  10596. "type": "zip",
  10597. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10598. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10599. "shasum": "",
  10600. "mirrors": [
  10601. {
  10602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10603. "preferred": true
  10604. }
  10605. ]
  10606. },
  10607. "require": {
  10608. "php": ">=8.1"
  10609. },
  10610. "require-dev": {
  10611. "phpunit/phpunit": "^10.0"
  10612. },
  10613. "type": "library",
  10614. "extra": {
  10615. "branch-alias": {
  10616. "dev-main": "3.0-dev"
  10617. }
  10618. },
  10619. "autoload": {
  10620. "classmap": [
  10621. "src/"
  10622. ]
  10623. },
  10624. "notification-url": "https://packagist.org/downloads/",
  10625. "license": [
  10626. "BSD-3-Clause"
  10627. ],
  10628. "authors": [
  10629. {
  10630. "name": "Sebastian Bergmann",
  10631. "email": "sebastian@phpunit.de"
  10632. }
  10633. ],
  10634. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10635. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10636. "support": {
  10637. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10638. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10639. },
  10640. "funding": [
  10641. {
  10642. "url": "https://github.com/sebastianbergmann",
  10643. "type": "github"
  10644. }
  10645. ],
  10646. "time": "2023-02-03T07:06:18+00:00"
  10647. },
  10648. {
  10649. "name": "sebastian/recursion-context",
  10650. "version": "5.0.0",
  10651. "source": {
  10652. "type": "git",
  10653. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10654. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10655. },
  10656. "dist": {
  10657. "type": "zip",
  10658. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10659. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10660. "shasum": "",
  10661. "mirrors": [
  10662. {
  10663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10664. "preferred": true
  10665. }
  10666. ]
  10667. },
  10668. "require": {
  10669. "php": ">=8.1"
  10670. },
  10671. "require-dev": {
  10672. "phpunit/phpunit": "^10.0"
  10673. },
  10674. "type": "library",
  10675. "extra": {
  10676. "branch-alias": {
  10677. "dev-main": "5.0-dev"
  10678. }
  10679. },
  10680. "autoload": {
  10681. "classmap": [
  10682. "src/"
  10683. ]
  10684. },
  10685. "notification-url": "https://packagist.org/downloads/",
  10686. "license": [
  10687. "BSD-3-Clause"
  10688. ],
  10689. "authors": [
  10690. {
  10691. "name": "Sebastian Bergmann",
  10692. "email": "sebastian@phpunit.de"
  10693. },
  10694. {
  10695. "name": "Jeff Welch",
  10696. "email": "whatthejeff@gmail.com"
  10697. },
  10698. {
  10699. "name": "Adam Harvey",
  10700. "email": "aharvey@php.net"
  10701. }
  10702. ],
  10703. "description": "Provides functionality to recursively process PHP variables",
  10704. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10705. "support": {
  10706. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10707. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10708. },
  10709. "funding": [
  10710. {
  10711. "url": "https://github.com/sebastianbergmann",
  10712. "type": "github"
  10713. }
  10714. ],
  10715. "time": "2023-02-03T07:05:40+00:00"
  10716. },
  10717. {
  10718. "name": "sebastian/type",
  10719. "version": "4.0.0",
  10720. "source": {
  10721. "type": "git",
  10722. "url": "https://github.com/sebastianbergmann/type.git",
  10723. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10724. },
  10725. "dist": {
  10726. "type": "zip",
  10727. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10728. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10729. "shasum": "",
  10730. "mirrors": [
  10731. {
  10732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10733. "preferred": true
  10734. }
  10735. ]
  10736. },
  10737. "require": {
  10738. "php": ">=8.1"
  10739. },
  10740. "require-dev": {
  10741. "phpunit/phpunit": "^10.0"
  10742. },
  10743. "type": "library",
  10744. "extra": {
  10745. "branch-alias": {
  10746. "dev-main": "4.0-dev"
  10747. }
  10748. },
  10749. "autoload": {
  10750. "classmap": [
  10751. "src/"
  10752. ]
  10753. },
  10754. "notification-url": "https://packagist.org/downloads/",
  10755. "license": [
  10756. "BSD-3-Clause"
  10757. ],
  10758. "authors": [
  10759. {
  10760. "name": "Sebastian Bergmann",
  10761. "email": "sebastian@phpunit.de",
  10762. "role": "lead"
  10763. }
  10764. ],
  10765. "description": "Collection of value objects that represent the types of the PHP type system",
  10766. "homepage": "https://github.com/sebastianbergmann/type",
  10767. "support": {
  10768. "issues": "https://github.com/sebastianbergmann/type/issues",
  10769. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10770. },
  10771. "funding": [
  10772. {
  10773. "url": "https://github.com/sebastianbergmann",
  10774. "type": "github"
  10775. }
  10776. ],
  10777. "time": "2023-02-03T07:10:45+00:00"
  10778. },
  10779. {
  10780. "name": "sebastian/version",
  10781. "version": "4.0.1",
  10782. "source": {
  10783. "type": "git",
  10784. "url": "https://github.com/sebastianbergmann/version.git",
  10785. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10786. },
  10787. "dist": {
  10788. "type": "zip",
  10789. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10790. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10791. "shasum": "",
  10792. "mirrors": [
  10793. {
  10794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10795. "preferred": true
  10796. }
  10797. ]
  10798. },
  10799. "require": {
  10800. "php": ">=8.1"
  10801. },
  10802. "type": "library",
  10803. "extra": {
  10804. "branch-alias": {
  10805. "dev-main": "4.0-dev"
  10806. }
  10807. },
  10808. "autoload": {
  10809. "classmap": [
  10810. "src/"
  10811. ]
  10812. },
  10813. "notification-url": "https://packagist.org/downloads/",
  10814. "license": [
  10815. "BSD-3-Clause"
  10816. ],
  10817. "authors": [
  10818. {
  10819. "name": "Sebastian Bergmann",
  10820. "email": "sebastian@phpunit.de",
  10821. "role": "lead"
  10822. }
  10823. ],
  10824. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10825. "homepage": "https://github.com/sebastianbergmann/version",
  10826. "support": {
  10827. "issues": "https://github.com/sebastianbergmann/version/issues",
  10828. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10829. },
  10830. "funding": [
  10831. {
  10832. "url": "https://github.com/sebastianbergmann",
  10833. "type": "github"
  10834. }
  10835. ],
  10836. "time": "2023-02-07T11:34:05+00:00"
  10837. },
  10838. {
  10839. "name": "swoole/ide-helper",
  10840. "version": "5.1.7",
  10841. "source": {
  10842. "type": "git",
  10843. "url": "https://github.com/swoole/ide-helper.git",
  10844. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  10845. },
  10846. "dist": {
  10847. "type": "zip",
  10848. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  10849. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  10850. "shasum": "",
  10851. "mirrors": [
  10852. {
  10853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10854. "preferred": true
  10855. }
  10856. ]
  10857. },
  10858. "type": "library",
  10859. "notification-url": "https://packagist.org/downloads/",
  10860. "license": [
  10861. "Apache-2.0"
  10862. ],
  10863. "authors": [
  10864. {
  10865. "name": "Team Swoole",
  10866. "email": "team@swoole.com"
  10867. }
  10868. ],
  10869. "description": "IDE help files for Swoole.",
  10870. "support": {
  10871. "issues": "https://github.com/swoole/ide-helper/issues",
  10872. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  10873. },
  10874. "time": "2025-03-22T23:53:02+00:00"
  10875. },
  10876. {
  10877. "name": "symfony/event-dispatcher",
  10878. "version": "v6.4.13",
  10879. "source": {
  10880. "type": "git",
  10881. "url": "https://github.com/symfony/event-dispatcher.git",
  10882. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10883. },
  10884. "dist": {
  10885. "type": "zip",
  10886. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10887. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10888. "shasum": "",
  10889. "mirrors": [
  10890. {
  10891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10892. "preferred": true
  10893. }
  10894. ]
  10895. },
  10896. "require": {
  10897. "php": ">=8.1",
  10898. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10899. },
  10900. "conflict": {
  10901. "symfony/dependency-injection": "<5.4",
  10902. "symfony/service-contracts": "<2.5"
  10903. },
  10904. "provide": {
  10905. "psr/event-dispatcher-implementation": "1.0",
  10906. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10907. },
  10908. "require-dev": {
  10909. "psr/log": "^1|^2|^3",
  10910. "symfony/config": "^5.4|^6.0|^7.0",
  10911. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10912. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10913. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10914. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10915. "symfony/service-contracts": "^2.5|^3",
  10916. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10917. },
  10918. "type": "library",
  10919. "autoload": {
  10920. "psr-4": {
  10921. "Symfony\\Component\\EventDispatcher\\": ""
  10922. },
  10923. "exclude-from-classmap": [
  10924. "/Tests/"
  10925. ]
  10926. },
  10927. "notification-url": "https://packagist.org/downloads/",
  10928. "license": [
  10929. "MIT"
  10930. ],
  10931. "authors": [
  10932. {
  10933. "name": "Fabien Potencier",
  10934. "email": "fabien@symfony.com"
  10935. },
  10936. {
  10937. "name": "Symfony Community",
  10938. "homepage": "https://symfony.com/contributors"
  10939. }
  10940. ],
  10941. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10942. "homepage": "https://symfony.com",
  10943. "support": {
  10944. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10945. },
  10946. "funding": [
  10947. {
  10948. "url": "https://symfony.com/sponsor",
  10949. "type": "custom"
  10950. },
  10951. {
  10952. "url": "https://github.com/fabpot",
  10953. "type": "github"
  10954. },
  10955. {
  10956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10957. "type": "tidelift"
  10958. }
  10959. ],
  10960. "time": "2024-09-25T14:18:03+00:00"
  10961. },
  10962. {
  10963. "name": "symfony/event-dispatcher-contracts",
  10964. "version": "v3.5.1",
  10965. "source": {
  10966. "type": "git",
  10967. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10968. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  10969. },
  10970. "dist": {
  10971. "type": "zip",
  10972. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10973. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10974. "shasum": "",
  10975. "mirrors": [
  10976. {
  10977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10978. "preferred": true
  10979. }
  10980. ]
  10981. },
  10982. "require": {
  10983. "php": ">=8.1",
  10984. "psr/event-dispatcher": "^1"
  10985. },
  10986. "type": "library",
  10987. "extra": {
  10988. "thanks": {
  10989. "url": "https://github.com/symfony/contracts",
  10990. "name": "symfony/contracts"
  10991. },
  10992. "branch-alias": {
  10993. "dev-main": "3.5-dev"
  10994. }
  10995. },
  10996. "autoload": {
  10997. "psr-4": {
  10998. "Symfony\\Contracts\\EventDispatcher\\": ""
  10999. }
  11000. },
  11001. "notification-url": "https://packagist.org/downloads/",
  11002. "license": [
  11003. "MIT"
  11004. ],
  11005. "authors": [
  11006. {
  11007. "name": "Nicolas Grekas",
  11008. "email": "p@tchwork.com"
  11009. },
  11010. {
  11011. "name": "Symfony Community",
  11012. "homepage": "https://symfony.com/contributors"
  11013. }
  11014. ],
  11015. "description": "Generic abstractions related to dispatching event",
  11016. "homepage": "https://symfony.com",
  11017. "keywords": [
  11018. "abstractions",
  11019. "contracts",
  11020. "decoupling",
  11021. "interfaces",
  11022. "interoperability",
  11023. "standards"
  11024. ],
  11025. "support": {
  11026. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11027. },
  11028. "funding": [
  11029. {
  11030. "url": "https://symfony.com/sponsor",
  11031. "type": "custom"
  11032. },
  11033. {
  11034. "url": "https://github.com/fabpot",
  11035. "type": "github"
  11036. },
  11037. {
  11038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11039. "type": "tidelift"
  11040. }
  11041. ],
  11042. "time": "2024-09-25T14:20:29+00:00"
  11043. },
  11044. {
  11045. "name": "symfony/filesystem",
  11046. "version": "v6.4.13",
  11047. "source": {
  11048. "type": "git",
  11049. "url": "https://github.com/symfony/filesystem.git",
  11050. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11051. },
  11052. "dist": {
  11053. "type": "zip",
  11054. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11055. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11056. "shasum": "",
  11057. "mirrors": [
  11058. {
  11059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11060. "preferred": true
  11061. }
  11062. ]
  11063. },
  11064. "require": {
  11065. "php": ">=8.1",
  11066. "symfony/polyfill-ctype": "~1.8",
  11067. "symfony/polyfill-mbstring": "~1.8"
  11068. },
  11069. "require-dev": {
  11070. "symfony/process": "^5.4|^6.4|^7.0"
  11071. },
  11072. "type": "library",
  11073. "autoload": {
  11074. "psr-4": {
  11075. "Symfony\\Component\\Filesystem\\": ""
  11076. },
  11077. "exclude-from-classmap": [
  11078. "/Tests/"
  11079. ]
  11080. },
  11081. "notification-url": "https://packagist.org/downloads/",
  11082. "license": [
  11083. "MIT"
  11084. ],
  11085. "authors": [
  11086. {
  11087. "name": "Fabien Potencier",
  11088. "email": "fabien@symfony.com"
  11089. },
  11090. {
  11091. "name": "Symfony Community",
  11092. "homepage": "https://symfony.com/contributors"
  11093. }
  11094. ],
  11095. "description": "Provides basic utilities for the filesystem",
  11096. "homepage": "https://symfony.com",
  11097. "support": {
  11098. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11099. },
  11100. "funding": [
  11101. {
  11102. "url": "https://symfony.com/sponsor",
  11103. "type": "custom"
  11104. },
  11105. {
  11106. "url": "https://github.com/fabpot",
  11107. "type": "github"
  11108. },
  11109. {
  11110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11111. "type": "tidelift"
  11112. }
  11113. ],
  11114. "time": "2024-10-25T15:07:50+00:00"
  11115. },
  11116. {
  11117. "name": "symfony/http-foundation",
  11118. "version": "v6.4.18",
  11119. "source": {
  11120. "type": "git",
  11121. "url": "https://github.com/symfony/http-foundation.git",
  11122. "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db"
  11123. },
  11124. "dist": {
  11125. "type": "zip",
  11126. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0492d6217e5ab48f51fca76f64cf8e78919d0db",
  11127. "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db",
  11128. "shasum": "",
  11129. "mirrors": [
  11130. {
  11131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11132. "preferred": true
  11133. }
  11134. ]
  11135. },
  11136. "require": {
  11137. "php": ">=8.1",
  11138. "symfony/deprecation-contracts": "^2.5|^3",
  11139. "symfony/polyfill-mbstring": "~1.1",
  11140. "symfony/polyfill-php83": "^1.27"
  11141. },
  11142. "conflict": {
  11143. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11144. },
  11145. "require-dev": {
  11146. "doctrine/dbal": "^2.13.1|^3|^4",
  11147. "predis/predis": "^1.1|^2.0",
  11148. "symfony/cache": "^6.4.12|^7.1.5",
  11149. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11150. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11151. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11152. "symfony/mime": "^5.4|^6.0|^7.0",
  11153. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11154. },
  11155. "type": "library",
  11156. "autoload": {
  11157. "psr-4": {
  11158. "Symfony\\Component\\HttpFoundation\\": ""
  11159. },
  11160. "exclude-from-classmap": [
  11161. "/Tests/"
  11162. ]
  11163. },
  11164. "notification-url": "https://packagist.org/downloads/",
  11165. "license": [
  11166. "MIT"
  11167. ],
  11168. "authors": [
  11169. {
  11170. "name": "Fabien Potencier",
  11171. "email": "fabien@symfony.com"
  11172. },
  11173. {
  11174. "name": "Symfony Community",
  11175. "homepage": "https://symfony.com/contributors"
  11176. }
  11177. ],
  11178. "description": "Defines an object-oriented layer for the HTTP specification",
  11179. "homepage": "https://symfony.com",
  11180. "support": {
  11181. "source": "https://github.com/symfony/http-foundation/tree/v6.4.18"
  11182. },
  11183. "funding": [
  11184. {
  11185. "url": "https://symfony.com/sponsor",
  11186. "type": "custom"
  11187. },
  11188. {
  11189. "url": "https://github.com/fabpot",
  11190. "type": "github"
  11191. },
  11192. {
  11193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11194. "type": "tidelift"
  11195. }
  11196. ],
  11197. "time": "2025-01-09T15:48:56+00:00"
  11198. },
  11199. {
  11200. "name": "symfony/options-resolver",
  11201. "version": "v6.4.13",
  11202. "source": {
  11203. "type": "git",
  11204. "url": "https://github.com/symfony/options-resolver.git",
  11205. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11206. },
  11207. "dist": {
  11208. "type": "zip",
  11209. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11210. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11211. "shasum": "",
  11212. "mirrors": [
  11213. {
  11214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11215. "preferred": true
  11216. }
  11217. ]
  11218. },
  11219. "require": {
  11220. "php": ">=8.1",
  11221. "symfony/deprecation-contracts": "^2.5|^3"
  11222. },
  11223. "type": "library",
  11224. "autoload": {
  11225. "psr-4": {
  11226. "Symfony\\Component\\OptionsResolver\\": ""
  11227. },
  11228. "exclude-from-classmap": [
  11229. "/Tests/"
  11230. ]
  11231. },
  11232. "notification-url": "https://packagist.org/downloads/",
  11233. "license": [
  11234. "MIT"
  11235. ],
  11236. "authors": [
  11237. {
  11238. "name": "Fabien Potencier",
  11239. "email": "fabien@symfony.com"
  11240. },
  11241. {
  11242. "name": "Symfony Community",
  11243. "homepage": "https://symfony.com/contributors"
  11244. }
  11245. ],
  11246. "description": "Provides an improved replacement for the array_replace PHP function",
  11247. "homepage": "https://symfony.com",
  11248. "keywords": [
  11249. "config",
  11250. "configuration",
  11251. "options"
  11252. ],
  11253. "support": {
  11254. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11255. },
  11256. "funding": [
  11257. {
  11258. "url": "https://symfony.com/sponsor",
  11259. "type": "custom"
  11260. },
  11261. {
  11262. "url": "https://github.com/fabpot",
  11263. "type": "github"
  11264. },
  11265. {
  11266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11267. "type": "tidelift"
  11268. }
  11269. ],
  11270. "time": "2024-09-25T14:18:03+00:00"
  11271. },
  11272. {
  11273. "name": "symfony/polyfill-php81",
  11274. "version": "v1.31.0",
  11275. "source": {
  11276. "type": "git",
  11277. "url": "https://github.com/symfony/polyfill-php81.git",
  11278. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11279. },
  11280. "dist": {
  11281. "type": "zip",
  11282. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11283. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11284. "shasum": "",
  11285. "mirrors": [
  11286. {
  11287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11288. "preferred": true
  11289. }
  11290. ]
  11291. },
  11292. "require": {
  11293. "php": ">=7.2"
  11294. },
  11295. "type": "library",
  11296. "extra": {
  11297. "thanks": {
  11298. "url": "https://github.com/symfony/polyfill",
  11299. "name": "symfony/polyfill"
  11300. }
  11301. },
  11302. "autoload": {
  11303. "files": [
  11304. "bootstrap.php"
  11305. ],
  11306. "psr-4": {
  11307. "Symfony\\Polyfill\\Php81\\": ""
  11308. },
  11309. "classmap": [
  11310. "Resources/stubs"
  11311. ]
  11312. },
  11313. "notification-url": "https://packagist.org/downloads/",
  11314. "license": [
  11315. "MIT"
  11316. ],
  11317. "authors": [
  11318. {
  11319. "name": "Nicolas Grekas",
  11320. "email": "p@tchwork.com"
  11321. },
  11322. {
  11323. "name": "Symfony Community",
  11324. "homepage": "https://symfony.com/contributors"
  11325. }
  11326. ],
  11327. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11328. "homepage": "https://symfony.com",
  11329. "keywords": [
  11330. "compatibility",
  11331. "polyfill",
  11332. "portable",
  11333. "shim"
  11334. ],
  11335. "support": {
  11336. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11337. },
  11338. "funding": [
  11339. {
  11340. "url": "https://symfony.com/sponsor",
  11341. "type": "custom"
  11342. },
  11343. {
  11344. "url": "https://github.com/fabpot",
  11345. "type": "github"
  11346. },
  11347. {
  11348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11349. "type": "tidelift"
  11350. }
  11351. ],
  11352. "time": "2024-09-09T11:45:10+00:00"
  11353. },
  11354. {
  11355. "name": "symfony/polyfill-php83",
  11356. "version": "v1.31.0",
  11357. "source": {
  11358. "type": "git",
  11359. "url": "https://github.com/symfony/polyfill-php83.git",
  11360. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11361. },
  11362. "dist": {
  11363. "type": "zip",
  11364. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11365. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11366. "shasum": "",
  11367. "mirrors": [
  11368. {
  11369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11370. "preferred": true
  11371. }
  11372. ]
  11373. },
  11374. "require": {
  11375. "php": ">=7.2"
  11376. },
  11377. "type": "library",
  11378. "extra": {
  11379. "thanks": {
  11380. "name": "symfony/polyfill",
  11381. "url": "https://github.com/symfony/polyfill"
  11382. }
  11383. },
  11384. "autoload": {
  11385. "files": [
  11386. "bootstrap.php"
  11387. ],
  11388. "psr-4": {
  11389. "Symfony\\Polyfill\\Php83\\": ""
  11390. },
  11391. "classmap": [
  11392. "Resources/stubs"
  11393. ]
  11394. },
  11395. "notification-url": "https://packagist.org/downloads/",
  11396. "license": [
  11397. "MIT"
  11398. ],
  11399. "authors": [
  11400. {
  11401. "name": "Nicolas Grekas",
  11402. "email": "p@tchwork.com"
  11403. },
  11404. {
  11405. "name": "Symfony Community",
  11406. "homepage": "https://symfony.com/contributors"
  11407. }
  11408. ],
  11409. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11410. "homepage": "https://symfony.com",
  11411. "keywords": [
  11412. "compatibility",
  11413. "polyfill",
  11414. "portable",
  11415. "shim"
  11416. ],
  11417. "support": {
  11418. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11419. },
  11420. "funding": [
  11421. {
  11422. "url": "https://symfony.com/sponsor",
  11423. "type": "custom"
  11424. },
  11425. {
  11426. "url": "https://github.com/fabpot",
  11427. "type": "github"
  11428. },
  11429. {
  11430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11431. "type": "tidelift"
  11432. }
  11433. ],
  11434. "time": "2024-09-09T11:45:10+00:00"
  11435. },
  11436. {
  11437. "name": "symfony/process",
  11438. "version": "v6.4.15",
  11439. "source": {
  11440. "type": "git",
  11441. "url": "https://github.com/symfony/process.git",
  11442. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11443. },
  11444. "dist": {
  11445. "type": "zip",
  11446. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11447. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11448. "shasum": "",
  11449. "mirrors": [
  11450. {
  11451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11452. "preferred": true
  11453. }
  11454. ]
  11455. },
  11456. "require": {
  11457. "php": ">=8.1"
  11458. },
  11459. "type": "library",
  11460. "autoload": {
  11461. "psr-4": {
  11462. "Symfony\\Component\\Process\\": ""
  11463. },
  11464. "exclude-from-classmap": [
  11465. "/Tests/"
  11466. ]
  11467. },
  11468. "notification-url": "https://packagist.org/downloads/",
  11469. "license": [
  11470. "MIT"
  11471. ],
  11472. "authors": [
  11473. {
  11474. "name": "Fabien Potencier",
  11475. "email": "fabien@symfony.com"
  11476. },
  11477. {
  11478. "name": "Symfony Community",
  11479. "homepage": "https://symfony.com/contributors"
  11480. }
  11481. ],
  11482. "description": "Executes commands in sub-processes",
  11483. "homepage": "https://symfony.com",
  11484. "support": {
  11485. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11486. },
  11487. "funding": [
  11488. {
  11489. "url": "https://symfony.com/sponsor",
  11490. "type": "custom"
  11491. },
  11492. {
  11493. "url": "https://github.com/fabpot",
  11494. "type": "github"
  11495. },
  11496. {
  11497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11498. "type": "tidelift"
  11499. }
  11500. ],
  11501. "time": "2024-11-06T14:19:14+00:00"
  11502. },
  11503. {
  11504. "name": "symfony/stopwatch",
  11505. "version": "v6.4.19",
  11506. "source": {
  11507. "type": "git",
  11508. "url": "https://github.com/symfony/stopwatch.git",
  11509. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c"
  11510. },
  11511. "dist": {
  11512. "type": "zip",
  11513. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  11514. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  11515. "shasum": "",
  11516. "mirrors": [
  11517. {
  11518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11519. "preferred": true
  11520. }
  11521. ]
  11522. },
  11523. "require": {
  11524. "php": ">=8.1",
  11525. "symfony/service-contracts": "^2.5|^3"
  11526. },
  11527. "type": "library",
  11528. "autoload": {
  11529. "psr-4": {
  11530. "Symfony\\Component\\Stopwatch\\": ""
  11531. },
  11532. "exclude-from-classmap": [
  11533. "/Tests/"
  11534. ]
  11535. },
  11536. "notification-url": "https://packagist.org/downloads/",
  11537. "license": [
  11538. "MIT"
  11539. ],
  11540. "authors": [
  11541. {
  11542. "name": "Fabien Potencier",
  11543. "email": "fabien@symfony.com"
  11544. },
  11545. {
  11546. "name": "Symfony Community",
  11547. "homepage": "https://symfony.com/contributors"
  11548. }
  11549. ],
  11550. "description": "Provides a way to profile code",
  11551. "homepage": "https://symfony.com",
  11552. "support": {
  11553. "source": "https://github.com/symfony/stopwatch/tree/v6.4.19"
  11554. },
  11555. "funding": [
  11556. {
  11557. "url": "https://symfony.com/sponsor",
  11558. "type": "custom"
  11559. },
  11560. {
  11561. "url": "https://github.com/fabpot",
  11562. "type": "github"
  11563. },
  11564. {
  11565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11566. "type": "tidelift"
  11567. }
  11568. ],
  11569. "time": "2025-02-21T10:06:30+00:00"
  11570. },
  11571. {
  11572. "name": "theseer/tokenizer",
  11573. "version": "1.2.3",
  11574. "source": {
  11575. "type": "git",
  11576. "url": "https://github.com/theseer/tokenizer.git",
  11577. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11578. },
  11579. "dist": {
  11580. "type": "zip",
  11581. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11582. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11583. "shasum": "",
  11584. "mirrors": [
  11585. {
  11586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11587. "preferred": true
  11588. }
  11589. ]
  11590. },
  11591. "require": {
  11592. "ext-dom": "*",
  11593. "ext-tokenizer": "*",
  11594. "ext-xmlwriter": "*",
  11595. "php": "^7.2 || ^8.0"
  11596. },
  11597. "type": "library",
  11598. "autoload": {
  11599. "classmap": [
  11600. "src/"
  11601. ]
  11602. },
  11603. "notification-url": "https://packagist.org/downloads/",
  11604. "license": [
  11605. "BSD-3-Clause"
  11606. ],
  11607. "authors": [
  11608. {
  11609. "name": "Arne Blankerts",
  11610. "email": "arne@blankerts.de",
  11611. "role": "Developer"
  11612. }
  11613. ],
  11614. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11615. "support": {
  11616. "issues": "https://github.com/theseer/tokenizer/issues",
  11617. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11618. },
  11619. "funding": [
  11620. {
  11621. "url": "https://github.com/theseer",
  11622. "type": "github"
  11623. }
  11624. ],
  11625. "time": "2024-03-03T12:36:25+00:00"
  11626. }
  11627. ],
  11628. "aliases": [],
  11629. "minimum-stability": "dev",
  11630. "stability-flags": {},
  11631. "prefer-stable": true,
  11632. "prefer-lowest": false,
  11633. "platform": {
  11634. "php": ">=8.1"
  11635. },
  11636. "platform-dev": {},
  11637. "plugin-api-version": "2.6.0"
  11638. }