composer.lock 415 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725
  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": "408b8e53c4a0d313ed75355b91296895",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.4",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  224. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9 || ^12",
  232. "phpstan/phpstan": "1.4.10 || 2.0.3",
  233. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psr/log": "^1 || ^2 || ^3"
  236. },
  237. "suggest": {
  238. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  239. },
  240. "type": "library",
  241. "autoload": {
  242. "psr-4": {
  243. "Doctrine\\Deprecations\\": "src"
  244. }
  245. },
  246. "notification-url": "https://packagist.org/downloads/",
  247. "license": [
  248. "MIT"
  249. ],
  250. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  251. "homepage": "https://www.doctrine-project.org/",
  252. "support": {
  253. "issues": "https://github.com/doctrine/deprecations/issues",
  254. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  255. },
  256. "time": "2024-12-07T21:18:45+00:00"
  257. },
  258. {
  259. "name": "doctrine/inflector",
  260. "version": "2.0.10",
  261. "source": {
  262. "type": "git",
  263. "url": "https://github.com/doctrine/inflector.git",
  264. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  269. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "php": "^7.2 || ^8.0"
  274. },
  275. "require-dev": {
  276. "doctrine/coding-standard": "^11.0",
  277. "phpstan/phpstan": "^1.8",
  278. "phpstan/phpstan-phpunit": "^1.1",
  279. "phpstan/phpstan-strict-rules": "^1.3",
  280. "phpunit/phpunit": "^8.5 || ^9.5",
  281. "vimeo/psalm": "^4.25 || ^5.4"
  282. },
  283. "type": "library",
  284. "autoload": {
  285. "psr-4": {
  286. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "MIT"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Guilherme Blanco",
  296. "email": "guilhermeblanco@gmail.com"
  297. },
  298. {
  299. "name": "Roman Borschel",
  300. "email": "roman@code-factory.org"
  301. },
  302. {
  303. "name": "Benjamin Eberlei",
  304. "email": "kontakt@beberlei.de"
  305. },
  306. {
  307. "name": "Jonathan Wage",
  308. "email": "jonwage@gmail.com"
  309. },
  310. {
  311. "name": "Johannes Schmitt",
  312. "email": "schmittjoh@gmail.com"
  313. }
  314. ],
  315. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  316. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  317. "keywords": [
  318. "inflection",
  319. "inflector",
  320. "lowercase",
  321. "manipulation",
  322. "php",
  323. "plural",
  324. "singular",
  325. "strings",
  326. "uppercase",
  327. "words"
  328. ],
  329. "support": {
  330. "issues": "https://github.com/doctrine/inflector/issues",
  331. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://www.doctrine-project.org/sponsorship.html",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://www.patreon.com/phpdoctrine",
  340. "type": "patreon"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2024-02-18T20:23:39+00:00"
  348. },
  349. {
  350. "name": "doctrine/instantiator",
  351. "version": "1.5.0",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/doctrine/instantiator.git",
  355. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  360. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^7.1 || ^8.0"
  365. },
  366. "require-dev": {
  367. "doctrine/coding-standard": "^9 || ^11",
  368. "ext-pdo": "*",
  369. "ext-phar": "*",
  370. "phpbench/phpbench": "^0.16 || ^1",
  371. "phpstan/phpstan": "^1.4",
  372. "phpstan/phpstan-phpunit": "^1",
  373. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  374. "vimeo/psalm": "^4.30 || ^5.4"
  375. },
  376. "type": "library",
  377. "autoload": {
  378. "psr-4": {
  379. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Marco Pivetta",
  389. "email": "ocramius@gmail.com",
  390. "homepage": "https://ocramius.github.io/"
  391. }
  392. ],
  393. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  394. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  395. "keywords": [
  396. "constructor",
  397. "instantiate"
  398. ],
  399. "support": {
  400. "issues": "https://github.com/doctrine/instantiator/issues",
  401. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  402. },
  403. "funding": [
  404. {
  405. "url": "https://www.doctrine-project.org/sponsorship.html",
  406. "type": "custom"
  407. },
  408. {
  409. "url": "https://www.patreon.com/phpdoctrine",
  410. "type": "patreon"
  411. },
  412. {
  413. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  414. "type": "tidelift"
  415. }
  416. ],
  417. "time": "2022-12-30T00:15:36+00:00"
  418. },
  419. {
  420. "name": "doctrine/lexer",
  421. "version": "2.1.1",
  422. "source": {
  423. "type": "git",
  424. "url": "https://github.com/doctrine/lexer.git",
  425. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  426. },
  427. "dist": {
  428. "type": "zip",
  429. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  430. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  431. "shasum": ""
  432. },
  433. "require": {
  434. "doctrine/deprecations": "^1.0",
  435. "php": "^7.1 || ^8.0"
  436. },
  437. "require-dev": {
  438. "doctrine/coding-standard": "^9 || ^12",
  439. "phpstan/phpstan": "^1.3",
  440. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  441. "psalm/plugin-phpunit": "^0.18.3",
  442. "vimeo/psalm": "^4.11 || ^5.21"
  443. },
  444. "type": "library",
  445. "autoload": {
  446. "psr-4": {
  447. "Doctrine\\Common\\Lexer\\": "src"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Guilherme Blanco",
  457. "email": "guilhermeblanco@gmail.com"
  458. },
  459. {
  460. "name": "Roman Borschel",
  461. "email": "roman@code-factory.org"
  462. },
  463. {
  464. "name": "Johannes Schmitt",
  465. "email": "schmittjoh@gmail.com"
  466. }
  467. ],
  468. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  469. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  470. "keywords": [
  471. "annotations",
  472. "docblock",
  473. "lexer",
  474. "parser",
  475. "php"
  476. ],
  477. "support": {
  478. "issues": "https://github.com/doctrine/lexer/issues",
  479. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  480. },
  481. "funding": [
  482. {
  483. "url": "https://www.doctrine-project.org/sponsorship.html",
  484. "type": "custom"
  485. },
  486. {
  487. "url": "https://www.patreon.com/phpdoctrine",
  488. "type": "patreon"
  489. },
  490. {
  491. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  492. "type": "tidelift"
  493. }
  494. ],
  495. "time": "2024-02-05T11:35:39+00:00"
  496. },
  497. {
  498. "name": "easyswoole/spl",
  499. "version": "2.1.3",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/easy-swoole/spl.git",
  503. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  508. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "ext-dom": "*",
  513. "ext-json": "*",
  514. "ext-simplexml": "*",
  515. "php": ">=8.1.0"
  516. },
  517. "require-dev": {
  518. "easyswoole/phpunit": "^1.0",
  519. "easyswoole/swoole-ide-helper": "^1.0"
  520. },
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "EasySwoole\\Spl\\": "src/",
  525. "EasySwoole\\Spl\\Test\\": "test/"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "Apache-2.0"
  531. ],
  532. "authors": [
  533. {
  534. "name": "YF",
  535. "email": "291323003@qq.com"
  536. }
  537. ],
  538. "description": "php stander lib",
  539. "homepage": "https://www.easyswoole.com/",
  540. "keywords": [
  541. "async",
  542. "easyswoole",
  543. "framework",
  544. "swoole"
  545. ],
  546. "support": {
  547. "issues": "https://github.com/easy-swoole/spl/issues",
  548. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  549. },
  550. "time": "2024-07-09T14:44:25+00:00"
  551. },
  552. {
  553. "name": "easyswoole/verifycode",
  554. "version": "3.1.2",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/easy-swoole/verify-code.git",
  558. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  563. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "easyswoole/spl": "^2.0",
  568. "ext-gd": "*",
  569. "php": ">=8.1"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "EasySwoole\\VerifyCode\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "Apache-2.0"
  580. ],
  581. "authors": [
  582. {
  583. "name": "YF",
  584. "email": "291323003@qq.com"
  585. },
  586. {
  587. "name": "evalor",
  588. "email": "mipone@foxmail.com"
  589. }
  590. ],
  591. "support": {
  592. "issues": "https://github.com/easy-swoole/verify-code/issues",
  593. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  594. },
  595. "time": "2023-09-06T06:45:56+00:00"
  596. },
  597. {
  598. "name": "egulias/email-validator",
  599. "version": "3.2.6",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/egulias/EmailValidator.git",
  603. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  608. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "doctrine/lexer": "^1.2|^2",
  613. "php": ">=7.2",
  614. "symfony/polyfill-intl-idn": "^1.15"
  615. },
  616. "require-dev": {
  617. "phpunit/phpunit": "^8.5.8|^9.3.3",
  618. "vimeo/psalm": "^4"
  619. },
  620. "suggest": {
  621. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "branch-alias": {
  626. "dev-master": "3.0.x-dev"
  627. }
  628. },
  629. "autoload": {
  630. "psr-4": {
  631. "Egulias\\EmailValidator\\": "src"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Eduardo Gulias Davis"
  641. }
  642. ],
  643. "description": "A library for validating emails against several RFCs",
  644. "homepage": "https://github.com/egulias/EmailValidator",
  645. "keywords": [
  646. "email",
  647. "emailvalidation",
  648. "emailvalidator",
  649. "validation",
  650. "validator"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/egulias/EmailValidator/issues",
  654. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  655. },
  656. "funding": [
  657. {
  658. "url": "https://github.com/egulias",
  659. "type": "github"
  660. }
  661. ],
  662. "time": "2023-06-01T07:04:22+00:00"
  663. },
  664. {
  665. "name": "fig/http-message-util",
  666. "version": "1.1.5",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/php-fig/http-message-util.git",
  670. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  675. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "php": "^5.3 || ^7.0 || ^8.0"
  680. },
  681. "suggest": {
  682. "psr/http-message": "The package containing the PSR-7 interfaces"
  683. },
  684. "type": "library",
  685. "extra": {
  686. "branch-alias": {
  687. "dev-master": "1.1.x-dev"
  688. }
  689. },
  690. "autoload": {
  691. "psr-4": {
  692. "Fig\\Http\\Message\\": "src/"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "MIT"
  698. ],
  699. "authors": [
  700. {
  701. "name": "PHP-FIG",
  702. "homepage": "https://www.php-fig.org/"
  703. }
  704. ],
  705. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  706. "keywords": [
  707. "http",
  708. "http-message",
  709. "psr",
  710. "psr-7",
  711. "request",
  712. "response"
  713. ],
  714. "support": {
  715. "issues": "https://github.com/php-fig/http-message-util/issues",
  716. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  717. },
  718. "time": "2020-11-24T22:02:12+00:00"
  719. },
  720. {
  721. "name": "graham-campbell/result-type",
  722. "version": "v1.1.3",
  723. "source": {
  724. "type": "git",
  725. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  726. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  727. },
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  731. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  732. "shasum": ""
  733. },
  734. "require": {
  735. "php": "^7.2.5 || ^8.0",
  736. "phpoption/phpoption": "^1.9.3"
  737. },
  738. "require-dev": {
  739. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  740. },
  741. "type": "library",
  742. "autoload": {
  743. "psr-4": {
  744. "GrahamCampbell\\ResultType\\": "src/"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Graham Campbell",
  754. "email": "hello@gjcampbell.co.uk",
  755. "homepage": "https://github.com/GrahamCampbell"
  756. }
  757. ],
  758. "description": "An Implementation Of The Result Type",
  759. "keywords": [
  760. "Graham Campbell",
  761. "GrahamCampbell",
  762. "Result Type",
  763. "Result-Type",
  764. "result"
  765. ],
  766. "support": {
  767. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  768. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  769. },
  770. "funding": [
  771. {
  772. "url": "https://github.com/GrahamCampbell",
  773. "type": "github"
  774. },
  775. {
  776. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  777. "type": "tidelift"
  778. }
  779. ],
  780. "time": "2024-07-20T21:45:45+00:00"
  781. },
  782. {
  783. "name": "guzzlehttp/guzzle",
  784. "version": "7.9.2",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/guzzle/guzzle.git",
  788. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  793. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "ext-json": "*",
  798. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  799. "guzzlehttp/psr7": "^2.7.0",
  800. "php": "^7.2.5 || ^8.0",
  801. "psr/http-client": "^1.0",
  802. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  803. },
  804. "provide": {
  805. "psr/http-client-implementation": "1.0"
  806. },
  807. "require-dev": {
  808. "bamarni/composer-bin-plugin": "^1.8.2",
  809. "ext-curl": "*",
  810. "guzzle/client-integration-tests": "3.0.2",
  811. "php-http/message-factory": "^1.1",
  812. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  813. "psr/log": "^1.1 || ^2.0 || ^3.0"
  814. },
  815. "suggest": {
  816. "ext-curl": "Required for CURL handler support",
  817. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  818. "psr/log": "Required for using the Log middleware"
  819. },
  820. "type": "library",
  821. "extra": {
  822. "bamarni-bin": {
  823. "bin-links": true,
  824. "forward-command": false
  825. }
  826. },
  827. "autoload": {
  828. "files": [
  829. "src/functions_include.php"
  830. ],
  831. "psr-4": {
  832. "GuzzleHttp\\": "src/"
  833. }
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "MIT"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Graham Campbell",
  842. "email": "hello@gjcampbell.co.uk",
  843. "homepage": "https://github.com/GrahamCampbell"
  844. },
  845. {
  846. "name": "Michael Dowling",
  847. "email": "mtdowling@gmail.com",
  848. "homepage": "https://github.com/mtdowling"
  849. },
  850. {
  851. "name": "Jeremy Lindblom",
  852. "email": "jeremeamia@gmail.com",
  853. "homepage": "https://github.com/jeremeamia"
  854. },
  855. {
  856. "name": "George Mponos",
  857. "email": "gmponos@gmail.com",
  858. "homepage": "https://github.com/gmponos"
  859. },
  860. {
  861. "name": "Tobias Nyholm",
  862. "email": "tobias.nyholm@gmail.com",
  863. "homepage": "https://github.com/Nyholm"
  864. },
  865. {
  866. "name": "Márk Sági-Kazár",
  867. "email": "mark.sagikazar@gmail.com",
  868. "homepage": "https://github.com/sagikazarmark"
  869. },
  870. {
  871. "name": "Tobias Schultze",
  872. "email": "webmaster@tubo-world.de",
  873. "homepage": "https://github.com/Tobion"
  874. }
  875. ],
  876. "description": "Guzzle is a PHP HTTP client library",
  877. "keywords": [
  878. "client",
  879. "curl",
  880. "framework",
  881. "http",
  882. "http client",
  883. "psr-18",
  884. "psr-7",
  885. "rest",
  886. "web service"
  887. ],
  888. "support": {
  889. "issues": "https://github.com/guzzle/guzzle/issues",
  890. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  891. },
  892. "funding": [
  893. {
  894. "url": "https://github.com/GrahamCampbell",
  895. "type": "github"
  896. },
  897. {
  898. "url": "https://github.com/Nyholm",
  899. "type": "github"
  900. },
  901. {
  902. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  903. "type": "tidelift"
  904. }
  905. ],
  906. "time": "2024-07-24T11:22:20+00:00"
  907. },
  908. {
  909. "name": "guzzlehttp/promises",
  910. "version": "2.0.4",
  911. "source": {
  912. "type": "git",
  913. "url": "https://github.com/guzzle/promises.git",
  914. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  915. },
  916. "dist": {
  917. "type": "zip",
  918. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  919. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  920. "shasum": ""
  921. },
  922. "require": {
  923. "php": "^7.2.5 || ^8.0"
  924. },
  925. "require-dev": {
  926. "bamarni/composer-bin-plugin": "^1.8.2",
  927. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "bamarni-bin": {
  932. "bin-links": true,
  933. "forward-command": false
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "GuzzleHttp\\Promise\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Graham Campbell",
  948. "email": "hello@gjcampbell.co.uk",
  949. "homepage": "https://github.com/GrahamCampbell"
  950. },
  951. {
  952. "name": "Michael Dowling",
  953. "email": "mtdowling@gmail.com",
  954. "homepage": "https://github.com/mtdowling"
  955. },
  956. {
  957. "name": "Tobias Nyholm",
  958. "email": "tobias.nyholm@gmail.com",
  959. "homepage": "https://github.com/Nyholm"
  960. },
  961. {
  962. "name": "Tobias Schultze",
  963. "email": "webmaster@tubo-world.de",
  964. "homepage": "https://github.com/Tobion"
  965. }
  966. ],
  967. "description": "Guzzle promises library",
  968. "keywords": [
  969. "promise"
  970. ],
  971. "support": {
  972. "issues": "https://github.com/guzzle/promises/issues",
  973. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  974. },
  975. "funding": [
  976. {
  977. "url": "https://github.com/GrahamCampbell",
  978. "type": "github"
  979. },
  980. {
  981. "url": "https://github.com/Nyholm",
  982. "type": "github"
  983. },
  984. {
  985. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  986. "type": "tidelift"
  987. }
  988. ],
  989. "time": "2024-10-17T10:06:22+00:00"
  990. },
  991. {
  992. "name": "guzzlehttp/psr7",
  993. "version": "2.7.0",
  994. "source": {
  995. "type": "git",
  996. "url": "https://github.com/guzzle/psr7.git",
  997. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  998. },
  999. "dist": {
  1000. "type": "zip",
  1001. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1002. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1003. "shasum": ""
  1004. },
  1005. "require": {
  1006. "php": "^7.2.5 || ^8.0",
  1007. "psr/http-factory": "^1.0",
  1008. "psr/http-message": "^1.1 || ^2.0",
  1009. "ralouphie/getallheaders": "^3.0"
  1010. },
  1011. "provide": {
  1012. "psr/http-factory-implementation": "1.0",
  1013. "psr/http-message-implementation": "1.0"
  1014. },
  1015. "require-dev": {
  1016. "bamarni/composer-bin-plugin": "^1.8.2",
  1017. "http-interop/http-factory-tests": "0.9.0",
  1018. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1019. },
  1020. "suggest": {
  1021. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1022. },
  1023. "type": "library",
  1024. "extra": {
  1025. "bamarni-bin": {
  1026. "bin-links": true,
  1027. "forward-command": false
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "GuzzleHttp\\Psr7\\": "src/"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Graham Campbell",
  1042. "email": "hello@gjcampbell.co.uk",
  1043. "homepage": "https://github.com/GrahamCampbell"
  1044. },
  1045. {
  1046. "name": "Michael Dowling",
  1047. "email": "mtdowling@gmail.com",
  1048. "homepage": "https://github.com/mtdowling"
  1049. },
  1050. {
  1051. "name": "George Mponos",
  1052. "email": "gmponos@gmail.com",
  1053. "homepage": "https://github.com/gmponos"
  1054. },
  1055. {
  1056. "name": "Tobias Nyholm",
  1057. "email": "tobias.nyholm@gmail.com",
  1058. "homepage": "https://github.com/Nyholm"
  1059. },
  1060. {
  1061. "name": "Márk Sági-Kazár",
  1062. "email": "mark.sagikazar@gmail.com",
  1063. "homepage": "https://github.com/sagikazarmark"
  1064. },
  1065. {
  1066. "name": "Tobias Schultze",
  1067. "email": "webmaster@tubo-world.de",
  1068. "homepage": "https://github.com/Tobion"
  1069. },
  1070. {
  1071. "name": "Márk Sági-Kazár",
  1072. "email": "mark.sagikazar@gmail.com",
  1073. "homepage": "https://sagikazarmark.hu"
  1074. }
  1075. ],
  1076. "description": "PSR-7 message implementation that also provides common utility methods",
  1077. "keywords": [
  1078. "http",
  1079. "message",
  1080. "psr-7",
  1081. "request",
  1082. "response",
  1083. "stream",
  1084. "uri",
  1085. "url"
  1086. ],
  1087. "support": {
  1088. "issues": "https://github.com/guzzle/psr7/issues",
  1089. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1090. },
  1091. "funding": [
  1092. {
  1093. "url": "https://github.com/GrahamCampbell",
  1094. "type": "github"
  1095. },
  1096. {
  1097. "url": "https://github.com/Nyholm",
  1098. "type": "github"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "time": "2024-07-18T11:15:46+00:00"
  1106. },
  1107. {
  1108. "name": "hyperf/amqp",
  1109. "version": "v3.1.50",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/hyperf/amqp.git",
  1113. "reference": "db5e24822f2dcc3af055b5c985702f59901be380"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/hyperf/amqp/zipball/db5e24822f2dcc3af055b5c985702f59901be380",
  1118. "reference": "db5e24822f2dcc3af055b5c985702f59901be380",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "doctrine/instantiator": "^1.2.0",
  1123. "hyperf/codec": "~3.1.0",
  1124. "hyperf/contract": "~3.1.0",
  1125. "hyperf/coroutine": "~3.1.0",
  1126. "hyperf/pool": "~3.1.0",
  1127. "hyperf/process": "~3.1.0",
  1128. "hyperf/support": "~3.1.0",
  1129. "hyperf/utils": "~3.1.0",
  1130. "php": ">=8.1",
  1131. "php-amqplib/php-amqplib": "^3.5",
  1132. "psr/container": "^1.0 || ^2.0",
  1133. "psr/event-dispatcher": "^1.0",
  1134. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1135. },
  1136. "suggest": {
  1137. "hyperf/di": "Required to use annotations.",
  1138. "hyperf/event": "Declare queue and start consumers automatically."
  1139. },
  1140. "type": "library",
  1141. "extra": {
  1142. "hyperf": {
  1143. "config": "Hyperf\\Amqp\\ConfigProvider"
  1144. },
  1145. "branch-alias": {
  1146. "dev-master": "3.1-dev"
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "Hyperf\\Amqp\\": "src/"
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "description": "A amqplib for hyperf.",
  1159. "homepage": "https://hyperf.io",
  1160. "keywords": [
  1161. "AMQP",
  1162. "hyperf",
  1163. "php"
  1164. ],
  1165. "support": {
  1166. "docs": "https://hyperf.wiki",
  1167. "issues": "https://github.com/hyperf/hyperf/issues",
  1168. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1169. "source": "https://github.com/hyperf/hyperf"
  1170. },
  1171. "funding": [
  1172. {
  1173. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1174. "type": "custom"
  1175. },
  1176. {
  1177. "url": "https://opencollective.com/hyperf",
  1178. "type": "open_collective"
  1179. }
  1180. ],
  1181. "time": "2025-01-08T08:57:09+00:00"
  1182. },
  1183. {
  1184. "name": "hyperf/async-queue",
  1185. "version": "v3.1.51",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/hyperf/async-queue.git",
  1189. "reference": "29f49ba266dd0a5763e2c4d8edfe5a448f944ff0"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/29f49ba266dd0a5763e2c4d8edfe5a448f944ff0",
  1194. "reference": "29f49ba266dd0a5763e2c4d8edfe5a448f944ff0",
  1195. "shasum": ""
  1196. },
  1197. "require": {
  1198. "hyperf/codec": "~3.1.0",
  1199. "hyperf/collection": "~3.1.0",
  1200. "hyperf/command": "~3.1.0",
  1201. "hyperf/contract": "~3.1.0",
  1202. "hyperf/support": "~3.1.0",
  1203. "hyperf/utils": "~3.1.0",
  1204. "php": ">=8.1",
  1205. "psr/container": "^1.0 || ^2.0",
  1206. "psr/event-dispatcher": "^1.0"
  1207. },
  1208. "suggest": {
  1209. "hyperf/di": "Required to use annotations.",
  1210. "hyperf/event": "Required to dispatch a event.",
  1211. "hyperf/logger": "Required to use QueueHandleListener.",
  1212. "hyperf/process": "Auto register the consumer process for server."
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "hyperf": {
  1217. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1218. },
  1219. "branch-alias": {
  1220. "dev-master": "3.1-dev"
  1221. }
  1222. },
  1223. "autoload": {
  1224. "files": [
  1225. "src/Functions.php"
  1226. ],
  1227. "psr-4": {
  1228. "Hyperf\\AsyncQueue\\": "src/"
  1229. }
  1230. },
  1231. "notification-url": "https://packagist.org/downloads/",
  1232. "license": [
  1233. "MIT"
  1234. ],
  1235. "description": "A async queue component for hyperf.",
  1236. "homepage": "https://hyperf.io",
  1237. "keywords": [
  1238. "async-queue",
  1239. "hyperf",
  1240. "php"
  1241. ],
  1242. "support": {
  1243. "docs": "https://hyperf.wiki",
  1244. "issues": "https://github.com/hyperf/hyperf/issues",
  1245. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1246. "source": "https://github.com/hyperf/hyperf"
  1247. },
  1248. "funding": [
  1249. {
  1250. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1251. "type": "custom"
  1252. },
  1253. {
  1254. "url": "https://opencollective.com/hyperf",
  1255. "type": "open_collective"
  1256. }
  1257. ],
  1258. "time": "2025-01-14T06:55:15+00:00"
  1259. },
  1260. {
  1261. "name": "hyperf/cache",
  1262. "version": "v3.1.43",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/hyperf/cache.git",
  1266. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1271. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "hyperf/codec": "~3.1.0",
  1276. "hyperf/collection": "~3.1.0",
  1277. "hyperf/contract": "~3.1.0",
  1278. "hyperf/support": "~3.1.0",
  1279. "hyperf/utils": "~3.1.0",
  1280. "php": ">=8.1",
  1281. "psr/container": "^1.0 || ^2.0",
  1282. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1283. },
  1284. "suggest": {
  1285. "hyperf/di": "Use cache annotations.",
  1286. "hyperf/event": "Use listener to delete annotation cache."
  1287. },
  1288. "type": "library",
  1289. "extra": {
  1290. "hyperf": {
  1291. "config": "Hyperf\\Cache\\ConfigProvider"
  1292. },
  1293. "branch-alias": {
  1294. "dev-master": "3.1-dev"
  1295. }
  1296. },
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Hyperf\\Cache\\": "src/"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "description": "A cache component for hyperf.",
  1307. "homepage": "https://hyperf.io",
  1308. "keywords": [
  1309. "cache",
  1310. "hyperf",
  1311. "php"
  1312. ],
  1313. "support": {
  1314. "docs": "https://hyperf.wiki",
  1315. "issues": "https://github.com/hyperf/hyperf/issues",
  1316. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1317. "source": "https://github.com/hyperf/hyperf"
  1318. },
  1319. "funding": [
  1320. {
  1321. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1322. "type": "custom"
  1323. },
  1324. {
  1325. "url": "https://opencollective.com/hyperf",
  1326. "type": "open_collective"
  1327. }
  1328. ],
  1329. "time": "2024-10-09T10:22:39+00:00"
  1330. },
  1331. {
  1332. "name": "hyperf/code-parser",
  1333. "version": "v3.1.42",
  1334. "source": {
  1335. "type": "git",
  1336. "url": "https://github.com/hyperf/code-parser.git",
  1337. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1338. },
  1339. "dist": {
  1340. "type": "zip",
  1341. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1342. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1343. "shasum": ""
  1344. },
  1345. "require": {
  1346. "hyperf/collection": "~3.1.0",
  1347. "hyperf/stringable": "~3.1.0",
  1348. "hyperf/support": "~3.1.0",
  1349. "php": ">=8.1"
  1350. },
  1351. "suggest": {
  1352. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1353. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1354. },
  1355. "type": "library",
  1356. "extra": {
  1357. "branch-alias": {
  1358. "dev-master": "3.1-dev"
  1359. }
  1360. },
  1361. "autoload": {
  1362. "psr-4": {
  1363. "Hyperf\\CodeParser\\": "src/"
  1364. }
  1365. },
  1366. "notification-url": "https://packagist.org/downloads/",
  1367. "license": [
  1368. "MIT"
  1369. ],
  1370. "description": "A code parser component for Hyperf.",
  1371. "homepage": "https://hyperf.io",
  1372. "keywords": [
  1373. "code-parser",
  1374. "hyperf",
  1375. "php",
  1376. "swoole"
  1377. ],
  1378. "support": {
  1379. "docs": "https://hyperf.wiki",
  1380. "issues": "https://github.com/hyperf/hyperf/issues",
  1381. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1382. "source": "https://github.com/hyperf/hyperf"
  1383. },
  1384. "funding": [
  1385. {
  1386. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1387. "type": "custom"
  1388. },
  1389. {
  1390. "url": "https://opencollective.com/hyperf",
  1391. "type": "open_collective"
  1392. }
  1393. ],
  1394. "time": "2024-09-25T02:54:12+00:00"
  1395. },
  1396. {
  1397. "name": "hyperf/codec",
  1398. "version": "v3.1.42",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/hyperf/codec.git",
  1402. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1407. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "ext-json": "*",
  1412. "ext-xml": "*",
  1413. "hyperf/contract": "~3.1.0",
  1414. "php": ">=8.1"
  1415. },
  1416. "suggest": {
  1417. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1418. },
  1419. "type": "library",
  1420. "extra": {
  1421. "branch-alias": {
  1422. "dev-master": "3.1-dev"
  1423. }
  1424. },
  1425. "autoload": {
  1426. "psr-4": {
  1427. "Hyperf\\Codec\\": "src/"
  1428. }
  1429. },
  1430. "notification-url": "https://packagist.org/downloads/",
  1431. "license": [
  1432. "MIT"
  1433. ],
  1434. "description": "A codec component for Hyperf.",
  1435. "homepage": "https://hyperf.io",
  1436. "keywords": [
  1437. "codec",
  1438. "hyperf",
  1439. "php",
  1440. "swoole"
  1441. ],
  1442. "support": {
  1443. "docs": "https://hyperf.wiki",
  1444. "issues": "https://github.com/hyperf/hyperf/issues",
  1445. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1446. "source": "https://github.com/hyperf/hyperf"
  1447. },
  1448. "funding": [
  1449. {
  1450. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1451. "type": "custom"
  1452. },
  1453. {
  1454. "url": "https://opencollective.com/hyperf",
  1455. "type": "open_collective"
  1456. }
  1457. ],
  1458. "time": "2024-09-25T02:54:12+00:00"
  1459. },
  1460. {
  1461. "name": "hyperf/collection",
  1462. "version": "v3.1.50",
  1463. "source": {
  1464. "type": "git",
  1465. "url": "https://github.com/hyperf/collection.git",
  1466. "reference": "9ec6c151c6e1ce8407d617b7813eb52f4fb3c363"
  1467. },
  1468. "dist": {
  1469. "type": "zip",
  1470. "url": "https://api.github.com/repos/hyperf/collection/zipball/9ec6c151c6e1ce8407d617b7813eb52f4fb3c363",
  1471. "reference": "9ec6c151c6e1ce8407d617b7813eb52f4fb3c363",
  1472. "shasum": ""
  1473. },
  1474. "require": {
  1475. "hyperf/conditionable": "~3.1.0",
  1476. "hyperf/contract": "~3.1.0",
  1477. "hyperf/macroable": "~3.1.0",
  1478. "hyperf/stringable": "~3.1.0",
  1479. "php": ">=8.1"
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "branch-alias": {
  1484. "dev-master": "3.1-dev"
  1485. }
  1486. },
  1487. "autoload": {
  1488. "files": [
  1489. "src/Functions.php"
  1490. ],
  1491. "psr-4": {
  1492. "Hyperf\\Collection\\": "src/"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "description": "Hyperf Collection package which come from illuminate/collections",
  1500. "homepage": "https://hyperf.io",
  1501. "keywords": [
  1502. "collection",
  1503. "hyperf",
  1504. "php",
  1505. "swoole"
  1506. ],
  1507. "support": {
  1508. "docs": "https://hyperf.wiki",
  1509. "issues": "https://github.com/hyperf/hyperf/issues",
  1510. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1511. "source": "https://github.com/hyperf/hyperf"
  1512. },
  1513. "funding": [
  1514. {
  1515. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1516. "type": "custom"
  1517. },
  1518. {
  1519. "url": "https://opencollective.com/hyperf",
  1520. "type": "open_collective"
  1521. }
  1522. ],
  1523. "time": "2025-01-08T06:57:58+00:00"
  1524. },
  1525. {
  1526. "name": "hyperf/command",
  1527. "version": "v3.1.51",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/hyperf/command.git",
  1531. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/hyperf/command/zipball/e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1536. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "hyperf/collection": "~3.1.0",
  1541. "hyperf/context": "~3.1.0",
  1542. "hyperf/contract": "~3.1.0",
  1543. "hyperf/coroutine": "~3.1.0",
  1544. "hyperf/di": "~3.1.0",
  1545. "hyperf/stringable": "~3.1.0",
  1546. "hyperf/support": "~3.1.0",
  1547. "hyperf/tappable": "~3.1.0",
  1548. "php": ">=8.1",
  1549. "psr/event-dispatcher": "^1.0",
  1550. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1551. },
  1552. "suggest": {
  1553. "hyperf/di": "Required to use annotations.",
  1554. "hyperf/event": "Required to use listeners."
  1555. },
  1556. "type": "library",
  1557. "extra": {
  1558. "hyperf": {
  1559. "config": "Hyperf\\Command\\ConfigProvider"
  1560. },
  1561. "branch-alias": {
  1562. "dev-master": "3.1-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Hyperf\\Command\\": "src/"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "description": "Command for hyperf",
  1575. "keywords": [
  1576. "command",
  1577. "php",
  1578. "swoole"
  1579. ],
  1580. "support": {
  1581. "issues": "https://github.com/hyperf/command/issues",
  1582. "source": "https://github.com/hyperf/command/tree/v3.1.51"
  1583. },
  1584. "funding": [
  1585. {
  1586. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1587. "type": "custom"
  1588. },
  1589. {
  1590. "url": "https://opencollective.com/hyperf",
  1591. "type": "open_collective"
  1592. }
  1593. ],
  1594. "time": "2025-02-06T03:40:37+00:00"
  1595. },
  1596. {
  1597. "name": "hyperf/conditionable",
  1598. "version": "v3.1.42",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/hyperf/conditionable.git",
  1602. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1607. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "php": ">=8.1"
  1612. },
  1613. "type": "library",
  1614. "extra": {
  1615. "branch-alias": {
  1616. "dev-master": "3.1-dev"
  1617. }
  1618. },
  1619. "autoload": {
  1620. "psr-4": {
  1621. "Hyperf\\Conditionable\\": "src/"
  1622. }
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1629. "homepage": "https://hyperf.io",
  1630. "keywords": [
  1631. "conditionable",
  1632. "hyperf",
  1633. "php",
  1634. "swoole"
  1635. ],
  1636. "support": {
  1637. "docs": "https://hyperf.wiki",
  1638. "issues": "https://github.com/hyperf/hyperf/issues",
  1639. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1640. "source": "https://github.com/hyperf/hyperf"
  1641. },
  1642. "funding": [
  1643. {
  1644. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1645. "type": "custom"
  1646. },
  1647. {
  1648. "url": "https://opencollective.com/hyperf",
  1649. "type": "open_collective"
  1650. }
  1651. ],
  1652. "time": "2024-09-25T02:54:12+00:00"
  1653. },
  1654. {
  1655. "name": "hyperf/config",
  1656. "version": "v3.1.42",
  1657. "source": {
  1658. "type": "git",
  1659. "url": "https://github.com/hyperf/config.git",
  1660. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1661. },
  1662. "dist": {
  1663. "type": "zip",
  1664. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1665. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1666. "shasum": ""
  1667. },
  1668. "require": {
  1669. "hyperf/collection": "~3.1.0",
  1670. "hyperf/contract": "~3.1.0",
  1671. "hyperf/support": "~3.1.0",
  1672. "php": ">=8.1",
  1673. "psr/container": "^1.0 || ^2.0",
  1674. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1675. },
  1676. "suggest": {
  1677. "hyperf/context": "Required to use config()",
  1678. "hyperf/di": "Allows using @Value annotation",
  1679. "hyperf/event": "Allows using @Value annotation",
  1680. "hyperf/framework": "Allows using @Value annotation",
  1681. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1682. },
  1683. "type": "library",
  1684. "extra": {
  1685. "hyperf": {
  1686. "config": "Hyperf\\Config\\ConfigProvider"
  1687. },
  1688. "branch-alias": {
  1689. "dev-master": "3.1-dev"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "files": [
  1694. "./src/Functions.php"
  1695. ],
  1696. "psr-4": {
  1697. "Hyperf\\Config\\": "src/"
  1698. }
  1699. },
  1700. "notification-url": "https://packagist.org/downloads/",
  1701. "license": [
  1702. "MIT"
  1703. ],
  1704. "description": "An independent component that provides configuration container.",
  1705. "homepage": "https://hyperf.io",
  1706. "keywords": [
  1707. "config",
  1708. "configuration",
  1709. "hyperf",
  1710. "php",
  1711. "swoole"
  1712. ],
  1713. "support": {
  1714. "docs": "https://hyperf.wiki",
  1715. "issues": "https://github.com/hyperf/hyperf/issues",
  1716. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1717. "source": "https://github.com/hyperf/hyperf"
  1718. },
  1719. "funding": [
  1720. {
  1721. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1722. "type": "custom"
  1723. },
  1724. {
  1725. "url": "https://opencollective.com/hyperf",
  1726. "type": "open_collective"
  1727. }
  1728. ],
  1729. "time": "2024-09-25T02:54:12+00:00"
  1730. },
  1731. {
  1732. "name": "hyperf/config-center",
  1733. "version": "v3.1.42",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://github.com/hyperf/config-center.git",
  1737. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1742. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1743. "shasum": ""
  1744. },
  1745. "require": {
  1746. "hyperf/support": "~3.1.0",
  1747. "php": ">=8.1"
  1748. },
  1749. "suggest": {
  1750. "hyperf/process": "^2.1"
  1751. },
  1752. "type": "library",
  1753. "extra": {
  1754. "hyperf": {
  1755. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1756. },
  1757. "branch-alias": {
  1758. "dev-master": "3.1-dev"
  1759. }
  1760. },
  1761. "autoload": {
  1762. "psr-4": {
  1763. "Hyperf\\ConfigCenter\\": "src/"
  1764. }
  1765. },
  1766. "notification-url": "https://packagist.org/downloads/",
  1767. "license": [
  1768. "MIT"
  1769. ],
  1770. "description": "The abstraction component of config center",
  1771. "homepage": "https://hyperf.io",
  1772. "keywords": [
  1773. "config-center",
  1774. "hyperf",
  1775. "php"
  1776. ],
  1777. "support": {
  1778. "docs": "https://hyperf.wiki",
  1779. "issues": "https://github.com/hyperf/hyperf/issues",
  1780. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1781. "source": "https://github.com/hyperf/hyperf"
  1782. },
  1783. "funding": [
  1784. {
  1785. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1786. "type": "custom"
  1787. },
  1788. {
  1789. "url": "https://opencollective.com/hyperf",
  1790. "type": "open_collective"
  1791. }
  1792. ],
  1793. "time": "2024-09-25T02:54:12+00:00"
  1794. },
  1795. {
  1796. "name": "hyperf/config-nacos",
  1797. "version": "v3.1.42",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/hyperf/config-nacos.git",
  1801. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1806. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1807. "shasum": ""
  1808. },
  1809. "require": {
  1810. "hyperf/codec": "~3.1.0",
  1811. "hyperf/config-center": "~3.1.0",
  1812. "hyperf/contract": "~3.1.0",
  1813. "hyperf/guzzle": "~3.1.0",
  1814. "hyperf/nacos": "~3.1.0",
  1815. "hyperf/support": "~3.1.0",
  1816. "hyperf/utils": "~3.1.0",
  1817. "jetbrains/phpstorm-attributes": "^1.0",
  1818. "php": ">=8.1"
  1819. },
  1820. "suggest": {
  1821. "ext-json": "*",
  1822. "ext-simplexml": "*",
  1823. "ext-yaml": "*",
  1824. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1825. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1826. "hyperf/process": "Required to use processes. (~2.2.0)"
  1827. },
  1828. "type": "library",
  1829. "extra": {
  1830. "hyperf": {
  1831. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1832. },
  1833. "branch-alias": {
  1834. "dev-master": "3.1-dev"
  1835. }
  1836. },
  1837. "autoload": {
  1838. "psr-4": {
  1839. "Hyperf\\ConfigNacos\\": "src/"
  1840. }
  1841. },
  1842. "notification-url": "https://packagist.org/downloads/",
  1843. "license": [
  1844. "MIT"
  1845. ],
  1846. "description": "A nacos adapter for config center component.",
  1847. "homepage": "https://hyperf.io",
  1848. "keywords": [
  1849. "hyperf",
  1850. "nacos",
  1851. "php",
  1852. "swoole"
  1853. ],
  1854. "support": {
  1855. "docs": "https://hyperf.wiki",
  1856. "issues": "https://github.com/hyperf/hyperf/issues",
  1857. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1858. "source": "https://github.com/hyperf/hyperf"
  1859. },
  1860. "funding": [
  1861. {
  1862. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1863. "type": "custom"
  1864. },
  1865. {
  1866. "url": "https://opencollective.com/hyperf",
  1867. "type": "open_collective"
  1868. }
  1869. ],
  1870. "time": "2024-09-25T02:54:12+00:00"
  1871. },
  1872. {
  1873. "name": "hyperf/constants",
  1874. "version": "v3.1.42",
  1875. "source": {
  1876. "type": "git",
  1877. "url": "https://github.com/hyperf/constants.git",
  1878. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1879. },
  1880. "dist": {
  1881. "type": "zip",
  1882. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1883. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1884. "shasum": ""
  1885. },
  1886. "require": {
  1887. "hyperf/di": "~3.1.0",
  1888. "hyperf/support": "~3.1.0",
  1889. "hyperf/utils": "~3.1.0",
  1890. "php": ">=8.1"
  1891. },
  1892. "suggest": {
  1893. "hyperf/translation": "Required to use translation."
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "hyperf": {
  1898. "config": "Hyperf\\Constants\\ConfigProvider"
  1899. },
  1900. "branch-alias": {
  1901. "dev-master": "3.1-dev"
  1902. }
  1903. },
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Hyperf\\Constants\\": "src/"
  1907. }
  1908. },
  1909. "notification-url": "https://packagist.org/downloads/",
  1910. "license": [
  1911. "MIT"
  1912. ],
  1913. "description": "A constants component for hyperf.",
  1914. "homepage": "https://hyperf.io",
  1915. "keywords": [
  1916. "constants",
  1917. "hyperf",
  1918. "php"
  1919. ],
  1920. "support": {
  1921. "docs": "https://hyperf.wiki",
  1922. "issues": "https://github.com/hyperf/hyperf/issues",
  1923. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1924. "source": "https://github.com/hyperf/hyperf"
  1925. },
  1926. "funding": [
  1927. {
  1928. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1929. "type": "custom"
  1930. },
  1931. {
  1932. "url": "https://opencollective.com/hyperf",
  1933. "type": "open_collective"
  1934. }
  1935. ],
  1936. "time": "2024-09-25T02:54:12+00:00"
  1937. },
  1938. {
  1939. "name": "hyperf/consul",
  1940. "version": "v3.1.42",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/hyperf/consul.git",
  1944. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1949. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1954. "php": ">=8.1"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "hyperf": {
  1959. "config": "Hyperf\\Consul\\ConfigProvider"
  1960. },
  1961. "branch-alias": {
  1962. "dev-master": "3.1-dev"
  1963. }
  1964. },
  1965. "autoload": {
  1966. "psr-4": {
  1967. "Hyperf\\Consul\\": "src/"
  1968. }
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "MIT"
  1973. ],
  1974. "description": "A Consul Client for Hyperf.",
  1975. "homepage": "https://hyperf.io",
  1976. "keywords": [
  1977. "consul",
  1978. "consul-client",
  1979. "hyperf",
  1980. "php",
  1981. "swoole"
  1982. ],
  1983. "support": {
  1984. "docs": "https://hyperf.wiki",
  1985. "issues": "https://github.com/hyperf/hyperf/issues",
  1986. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1987. "source": "https://github.com/hyperf/hyperf"
  1988. },
  1989. "funding": [
  1990. {
  1991. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1992. "type": "custom"
  1993. },
  1994. {
  1995. "url": "https://opencollective.com/hyperf",
  1996. "type": "open_collective"
  1997. }
  1998. ],
  1999. "time": "2024-09-25T02:54:12+00:00"
  2000. },
  2001. {
  2002. "name": "hyperf/context",
  2003. "version": "v3.1.42",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://github.com/hyperf/context.git",
  2007. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2012. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2013. "shasum": ""
  2014. },
  2015. "require": {
  2016. "hyperf/engine": "^2.0",
  2017. "php": ">=8.1"
  2018. },
  2019. "suggest": {
  2020. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2021. },
  2022. "type": "library",
  2023. "extra": {
  2024. "branch-alias": {
  2025. "dev-master": "3.1-dev"
  2026. }
  2027. },
  2028. "autoload": {
  2029. "psr-4": {
  2030. "Hyperf\\Context\\": "src/"
  2031. }
  2032. },
  2033. "notification-url": "https://packagist.org/downloads/",
  2034. "license": [
  2035. "MIT"
  2036. ],
  2037. "description": "A coroutine/application context library.",
  2038. "homepage": "https://hyperf.io",
  2039. "keywords": [
  2040. "Context",
  2041. "hyperf",
  2042. "php",
  2043. "swoole"
  2044. ],
  2045. "support": {
  2046. "docs": "https://hyperf.wiki",
  2047. "issues": "https://github.com/hyperf/hyperf/issues",
  2048. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2049. "source": "https://github.com/hyperf/hyperf"
  2050. },
  2051. "funding": [
  2052. {
  2053. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2054. "type": "custom"
  2055. },
  2056. {
  2057. "url": "https://opencollective.com/hyperf",
  2058. "type": "open_collective"
  2059. }
  2060. ],
  2061. "time": "2024-09-25T02:54:12+00:00"
  2062. },
  2063. {
  2064. "name": "hyperf/contract",
  2065. "version": "v3.1.42",
  2066. "source": {
  2067. "type": "git",
  2068. "url": "https://github.com/hyperf/contract.git",
  2069. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2070. },
  2071. "dist": {
  2072. "type": "zip",
  2073. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2074. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2075. "shasum": ""
  2076. },
  2077. "require": {
  2078. "php": ">=8.1"
  2079. },
  2080. "type": "library",
  2081. "extra": {
  2082. "branch-alias": {
  2083. "dev-master": "3.1-dev"
  2084. }
  2085. },
  2086. "autoload": {
  2087. "psr-4": {
  2088. "Hyperf\\Contract\\": "src/"
  2089. }
  2090. },
  2091. "notification-url": "https://packagist.org/downloads/",
  2092. "license": [
  2093. "MIT"
  2094. ],
  2095. "description": "The contracts of Hyperf.",
  2096. "homepage": "https://hyperf.io",
  2097. "keywords": [
  2098. "hyperf",
  2099. "php",
  2100. "swoole"
  2101. ],
  2102. "support": {
  2103. "docs": "https://hyperf.wiki",
  2104. "issues": "https://github.com/hyperf/hyperf/issues",
  2105. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2106. "source": "https://github.com/hyperf/hyperf"
  2107. },
  2108. "funding": [
  2109. {
  2110. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2111. "type": "custom"
  2112. },
  2113. {
  2114. "url": "https://opencollective.com/hyperf",
  2115. "type": "open_collective"
  2116. }
  2117. ],
  2118. "time": "2024-09-25T02:54:12+00:00"
  2119. },
  2120. {
  2121. "name": "hyperf/coordinator",
  2122. "version": "v3.1.42",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/hyperf/coordinator.git",
  2126. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2131. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2132. "shasum": ""
  2133. },
  2134. "require": {
  2135. "hyperf/engine": "^2.0",
  2136. "php": ">=8.1"
  2137. },
  2138. "type": "library",
  2139. "extra": {
  2140. "branch-alias": {
  2141. "dev-master": "3.1-dev"
  2142. }
  2143. },
  2144. "autoload": {
  2145. "files": [
  2146. "src/Functions.php"
  2147. ],
  2148. "psr-4": {
  2149. "Hyperf\\Coordinator\\": "src/"
  2150. }
  2151. },
  2152. "notification-url": "https://packagist.org/downloads/",
  2153. "license": [
  2154. "MIT"
  2155. ],
  2156. "description": "Hyperf Coordinator",
  2157. "homepage": "https://hyperf.io",
  2158. "keywords": [
  2159. "Coordinator",
  2160. "hyperf",
  2161. "php",
  2162. "swoole"
  2163. ],
  2164. "support": {
  2165. "docs": "https://hyperf.wiki",
  2166. "issues": "https://github.com/hyperf/hyperf/issues",
  2167. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2168. "source": "https://github.com/hyperf/hyperf"
  2169. },
  2170. "funding": [
  2171. {
  2172. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2173. "type": "custom"
  2174. },
  2175. {
  2176. "url": "https://opencollective.com/hyperf",
  2177. "type": "open_collective"
  2178. }
  2179. ],
  2180. "time": "2024-09-25T02:54:12+00:00"
  2181. },
  2182. {
  2183. "name": "hyperf/coroutine",
  2184. "version": "v3.1.51",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/hyperf/coroutine.git",
  2188. "reference": "19c16ece44269e0cf16d8dd06875e0072f668110"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/19c16ece44269e0cf16d8dd06875e0072f668110",
  2193. "reference": "19c16ece44269e0cf16d8dd06875e0072f668110",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "hyperf/context": "~3.1.0",
  2198. "hyperf/contract": "~3.1.0",
  2199. "hyperf/engine": "^2.0",
  2200. "php": ">=8.1"
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-master": "3.1-dev"
  2206. }
  2207. },
  2208. "autoload": {
  2209. "files": [
  2210. "src/Functions.php"
  2211. ],
  2212. "psr-4": {
  2213. "Hyperf\\Coroutine\\": "src/"
  2214. }
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "MIT"
  2219. ],
  2220. "description": "Hyperf Coroutine",
  2221. "homepage": "https://hyperf.io",
  2222. "keywords": [
  2223. "coroutine",
  2224. "hyperf",
  2225. "php",
  2226. "swoole"
  2227. ],
  2228. "support": {
  2229. "docs": "https://hyperf.wiki",
  2230. "issues": "https://github.com/hyperf/hyperf/issues",
  2231. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2232. "source": "https://github.com/hyperf/hyperf"
  2233. },
  2234. "funding": [
  2235. {
  2236. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2237. "type": "custom"
  2238. },
  2239. {
  2240. "url": "https://opencollective.com/hyperf",
  2241. "type": "open_collective"
  2242. }
  2243. ],
  2244. "time": "2025-01-20T02:23:38+00:00"
  2245. },
  2246. {
  2247. "name": "hyperf/database",
  2248. "version": "v3.1.51",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/hyperf/database.git",
  2252. "reference": "34218a138dce7158efb4556ac3d628a2be5643b8"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/hyperf/database/zipball/34218a138dce7158efb4556ac3d628a2be5643b8",
  2257. "reference": "34218a138dce7158efb4556ac3d628a2be5643b8",
  2258. "shasum": ""
  2259. },
  2260. "require": {
  2261. "hyperf/code-parser": "~3.1.0",
  2262. "hyperf/collection": "~3.1.23",
  2263. "hyperf/conditionable": "~3.1.0",
  2264. "hyperf/macroable": "~3.1.0",
  2265. "hyperf/support": "~3.1.0",
  2266. "hyperf/tappable": "~3.1.0",
  2267. "hyperf/utils": "~3.1.0",
  2268. "nesbot/carbon": "^2.0",
  2269. "php": ">=8.1",
  2270. "psr/container": "^1.0 || ^2.0",
  2271. "psr/event-dispatcher": "^1.0"
  2272. },
  2273. "suggest": {
  2274. "doctrine/dbal": "Required to rename columns (^3.0).",
  2275. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2276. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2277. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2278. },
  2279. "type": "library",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-master": "3.1-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Hyperf\\Database\\": "src/"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "description": "A flexible database library.",
  2295. "homepage": "https://hyperf.io",
  2296. "keywords": [
  2297. "database",
  2298. "hyperf",
  2299. "php"
  2300. ],
  2301. "support": {
  2302. "docs": "https://hyperf.wiki",
  2303. "issues": "https://github.com/hyperf/hyperf/issues",
  2304. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2305. "source": "https://github.com/hyperf/hyperf"
  2306. },
  2307. "funding": [
  2308. {
  2309. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2310. "type": "custom"
  2311. },
  2312. {
  2313. "url": "https://opencollective.com/hyperf",
  2314. "type": "open_collective"
  2315. }
  2316. ],
  2317. "time": "2025-02-06T03:09:13+00:00"
  2318. },
  2319. {
  2320. "name": "hyperf/db-connection",
  2321. "version": "v3.1.44",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/hyperf/db-connection.git",
  2325. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2330. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2331. "shasum": ""
  2332. },
  2333. "require": {
  2334. "hyperf/database": "~3.1.0",
  2335. "hyperf/di": "~3.1.0",
  2336. "hyperf/framework": "~3.1.0",
  2337. "hyperf/model-listener": "~3.1.0",
  2338. "hyperf/pool": "~3.1.0",
  2339. "hyperf/support": "~3.1.0",
  2340. "hyperf/utils": "~3.1.0",
  2341. "php": ">=8.1",
  2342. "psr/container": "^1.0 || ^2.0"
  2343. },
  2344. "type": "library",
  2345. "extra": {
  2346. "hyperf": {
  2347. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2348. },
  2349. "branch-alias": {
  2350. "dev-master": "3.1-dev"
  2351. }
  2352. },
  2353. "autoload": {
  2354. "psr-4": {
  2355. "Hyperf\\DbConnection\\": "src/"
  2356. }
  2357. },
  2358. "notification-url": "https://packagist.org/downloads/",
  2359. "license": [
  2360. "MIT"
  2361. ],
  2362. "description": "A hyperf db connection handler for hyperf/database.",
  2363. "homepage": "https://hyperf.io",
  2364. "keywords": [
  2365. "Connection",
  2366. "database",
  2367. "hyperf",
  2368. "php"
  2369. ],
  2370. "support": {
  2371. "docs": "https://hyperf.wiki",
  2372. "issues": "https://github.com/hyperf/hyperf/issues",
  2373. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2374. "source": "https://github.com/hyperf/hyperf"
  2375. },
  2376. "funding": [
  2377. {
  2378. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2379. "type": "custom"
  2380. },
  2381. {
  2382. "url": "https://opencollective.com/hyperf",
  2383. "type": "open_collective"
  2384. }
  2385. ],
  2386. "time": "2024-10-11T08:58:16+00:00"
  2387. },
  2388. {
  2389. "name": "hyperf/di",
  2390. "version": "v3.1.42",
  2391. "source": {
  2392. "type": "git",
  2393. "url": "https://github.com/hyperf/di.git",
  2394. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2395. },
  2396. "dist": {
  2397. "type": "zip",
  2398. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2399. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2400. "shasum": ""
  2401. },
  2402. "require": {
  2403. "doctrine/instantiator": "^1.0",
  2404. "hyperf/code-parser": "~3.1.0",
  2405. "hyperf/pipeline": "~3.1.0",
  2406. "hyperf/stdlib": "~3.1.0",
  2407. "hyperf/support": "~3.1.0",
  2408. "nikic/php-parser": "^4.1",
  2409. "php": ">=8.1",
  2410. "php-di/phpdoc-reader": "^2.2",
  2411. "psr/container": "^1.0 || ^2.0",
  2412. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2413. "vlucas/phpdotenv": "^5.0"
  2414. },
  2415. "suggest": {
  2416. "ext-pcntl": "Required to scan annotations.",
  2417. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "hyperf": {
  2422. "config": "Hyperf\\Di\\ConfigProvider"
  2423. },
  2424. "branch-alias": {
  2425. "dev-master": "3.1-dev"
  2426. }
  2427. },
  2428. "autoload": {
  2429. "psr-4": {
  2430. "Hyperf\\Di\\": "src/"
  2431. }
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "MIT"
  2436. ],
  2437. "description": "A DI for Hyperf.",
  2438. "homepage": "https://hyperf.io",
  2439. "keywords": [
  2440. "annotation",
  2441. "di",
  2442. "hyperf",
  2443. "php",
  2444. "swoole"
  2445. ],
  2446. "support": {
  2447. "docs": "https://hyperf.wiki",
  2448. "issues": "https://github.com/hyperf/hyperf/issues",
  2449. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2450. "source": "https://github.com/hyperf/hyperf"
  2451. },
  2452. "funding": [
  2453. {
  2454. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2455. "type": "custom"
  2456. },
  2457. {
  2458. "url": "https://opencollective.com/hyperf",
  2459. "type": "open_collective"
  2460. }
  2461. ],
  2462. "time": "2024-09-25T02:54:12+00:00"
  2463. },
  2464. {
  2465. "name": "hyperf/dispatcher",
  2466. "version": "v3.1.42",
  2467. "source": {
  2468. "type": "git",
  2469. "url": "https://github.com/hyperf/dispatcher.git",
  2470. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2471. },
  2472. "dist": {
  2473. "type": "zip",
  2474. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2475. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2476. "shasum": ""
  2477. },
  2478. "require": {
  2479. "hyperf/contract": "~3.1.0",
  2480. "php": ">=8.1",
  2481. "psr/container": "^1.0 || ^2.0",
  2482. "psr/http-message": "^1.0 || ^2.0",
  2483. "psr/http-server-middleware": "^1.0"
  2484. },
  2485. "type": "library",
  2486. "extra": {
  2487. "hyperf": {
  2488. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2489. },
  2490. "branch-alias": {
  2491. "dev-master": "3.1-dev"
  2492. }
  2493. },
  2494. "autoload": {
  2495. "psr-4": {
  2496. "Hyperf\\Dispatcher\\": "src/"
  2497. }
  2498. },
  2499. "notification-url": "https://packagist.org/downloads/",
  2500. "license": [
  2501. "MIT"
  2502. ],
  2503. "description": "A HTTP Server for Hyperf.",
  2504. "homepage": "https://hyperf.io",
  2505. "keywords": [
  2506. "dispatcher",
  2507. "filter",
  2508. "hyperf",
  2509. "middleware",
  2510. "php",
  2511. "swoole"
  2512. ],
  2513. "support": {
  2514. "docs": "https://hyperf.wiki",
  2515. "issues": "https://github.com/hyperf/hyperf/issues",
  2516. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2517. "source": "https://github.com/hyperf/hyperf"
  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": "2024-09-25T02:54:12+00:00"
  2530. },
  2531. {
  2532. "name": "hyperf/engine",
  2533. "version": "v2.13.1",
  2534. "source": {
  2535. "type": "git",
  2536. "url": "https://github.com/hyperf/engine.git",
  2537. "reference": "3002d34cfb6278c3a25f9d94c41c43bed03a88a6"
  2538. },
  2539. "dist": {
  2540. "type": "zip",
  2541. "url": "https://api.github.com/repos/hyperf/engine/zipball/3002d34cfb6278c3a25f9d94c41c43bed03a88a6",
  2542. "reference": "3002d34cfb6278c3a25f9d94c41c43bed03a88a6",
  2543. "shasum": ""
  2544. },
  2545. "require": {
  2546. "hyperf/engine-contract": "~1.12.0",
  2547. "php": ">=8.0"
  2548. },
  2549. "conflict": {
  2550. "ext-swoole": "<5.0"
  2551. },
  2552. "require-dev": {
  2553. "friendsofphp/php-cs-fixer": "^3.0",
  2554. "hyperf/guzzle": "^3.0",
  2555. "hyperf/http-message": "^3.0",
  2556. "mockery/mockery": "^1.5",
  2557. "phpstan/phpstan": "^1.0",
  2558. "phpunit/phpunit": "^9.4",
  2559. "swoole/ide-helper": "5.*"
  2560. },
  2561. "suggest": {
  2562. "ext-sockets": "*",
  2563. "ext-swoole": ">=5.0",
  2564. "hyperf/http-message": "Required to use ResponseEmitter.",
  2565. "psr/http-message": "Required to use WebSocket Frame."
  2566. },
  2567. "type": "library",
  2568. "extra": {
  2569. "hyperf": {
  2570. "config": "Hyperf\\Engine\\ConfigProvider"
  2571. },
  2572. "branch-alias": {
  2573. "dev-master": "2.13-dev"
  2574. }
  2575. },
  2576. "autoload": {
  2577. "files": [
  2578. "src/Functions.php"
  2579. ],
  2580. "psr-4": {
  2581. "Hyperf\\Engine\\": "src/"
  2582. }
  2583. },
  2584. "notification-url": "https://packagist.org/downloads/",
  2585. "license": [
  2586. "MIT"
  2587. ],
  2588. "description": "Coroutine engine provided by swoole.",
  2589. "keywords": [
  2590. "engine",
  2591. "hyperf",
  2592. "php",
  2593. "swoole"
  2594. ],
  2595. "support": {
  2596. "issues": "https://github.com/hyperf/engine/issues",
  2597. "source": "https://github.com/hyperf/engine/tree/v2.13.1"
  2598. },
  2599. "funding": [
  2600. {
  2601. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2602. "type": "custom"
  2603. },
  2604. {
  2605. "url": "https://opencollective.com/hyperf",
  2606. "type": "open_collective"
  2607. }
  2608. ],
  2609. "time": "2025-02-08T03:29:51+00:00"
  2610. },
  2611. {
  2612. "name": "hyperf/engine-contract",
  2613. "version": "v1.12.0",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/hyperf/engine-contract.git",
  2617. "reference": "08539eac8047e525384dd49f3da87f175d7e3c90"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/08539eac8047e525384dd49f3da87f175d7e3c90",
  2622. "reference": "08539eac8047e525384dd49f3da87f175d7e3c90",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "php": ">=8.0"
  2627. },
  2628. "require-dev": {
  2629. "friendsofphp/php-cs-fixer": "^3.0",
  2630. "mockery/mockery": "^1.0",
  2631. "phpstan/phpstan": "^1.0",
  2632. "phpunit/phpunit": ">=7.0",
  2633. "psr/http-message": "^1.0",
  2634. "swoole/ide-helper": "^4.5"
  2635. },
  2636. "suggest": {
  2637. "psr/http-message": "Required to use WebSocket Frame."
  2638. },
  2639. "type": "library",
  2640. "extra": {
  2641. "branch-alias": {
  2642. "dev-master": "1.11-dev"
  2643. }
  2644. },
  2645. "autoload": {
  2646. "psr-4": {
  2647. "Hyperf\\Engine\\Contract\\": "src/"
  2648. }
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "MIT"
  2653. ],
  2654. "description": "Contract for Coroutine Engine",
  2655. "keywords": [
  2656. "contract",
  2657. "coroutine",
  2658. "engine",
  2659. "hyperf",
  2660. "php"
  2661. ],
  2662. "support": {
  2663. "issues": "https://github.com/hyperf/engine-contract/issues",
  2664. "source": "https://github.com/hyperf/engine-contract/tree/v1.12.0"
  2665. },
  2666. "funding": [
  2667. {
  2668. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2669. "type": "custom"
  2670. },
  2671. {
  2672. "url": "https://opencollective.com/hyperf",
  2673. "type": "open_collective"
  2674. }
  2675. ],
  2676. "time": "2025-02-08T02:36:22+00:00"
  2677. },
  2678. {
  2679. "name": "hyperf/event",
  2680. "version": "v3.1.42",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/hyperf/event.git",
  2684. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2689. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "hyperf/contract": "~3.1.0",
  2694. "hyperf/stdlib": "~3.1.0",
  2695. "php": ">=8.1",
  2696. "psr/event-dispatcher": "^1.0"
  2697. },
  2698. "suggest": {
  2699. "hyperf/di": "Required to use annotatioins."
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "hyperf": {
  2704. "config": "Hyperf\\Event\\ConfigProvider"
  2705. },
  2706. "branch-alias": {
  2707. "dev-master": "3.1-dev"
  2708. }
  2709. },
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Hyperf\\Event\\": "src/"
  2713. }
  2714. },
  2715. "notification-url": "https://packagist.org/downloads/",
  2716. "license": [
  2717. "MIT"
  2718. ],
  2719. "description": "an event manager that implements PSR-14.",
  2720. "homepage": "https://hyperf.io",
  2721. "keywords": [
  2722. "event",
  2723. "hyperf",
  2724. "php",
  2725. "swoole"
  2726. ],
  2727. "support": {
  2728. "docs": "https://hyperf.wiki",
  2729. "issues": "https://github.com/hyperf/hyperf/issues",
  2730. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2731. "source": "https://github.com/hyperf/hyperf"
  2732. },
  2733. "funding": [
  2734. {
  2735. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2736. "type": "custom"
  2737. },
  2738. {
  2739. "url": "https://opencollective.com/hyperf",
  2740. "type": "open_collective"
  2741. }
  2742. ],
  2743. "time": "2024-09-25T02:54:12+00:00"
  2744. },
  2745. {
  2746. "name": "hyperf/exception-handler",
  2747. "version": "v3.1.42",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/hyperf/exception-handler.git",
  2751. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2756. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "hyperf/context": "~3.1.0",
  2761. "hyperf/contract": "~3.1.0",
  2762. "hyperf/dispatcher": "~3.1.0",
  2763. "hyperf/http-message": "~3.1.0",
  2764. "hyperf/stdlib": "~3.1.0",
  2765. "hyperf/support": "~3.1.0",
  2766. "php": ">=8.1",
  2767. "psr/container": "^1.0 || ^2.0",
  2768. "psr/http-message": "^1.0 || ^2.0",
  2769. "swow/psr7-plus": "^1.0"
  2770. },
  2771. "suggest": {
  2772. "hyperf/di": "Required to use #[ExceptionHandler]",
  2773. "hyperf/event": "Required to use listeners",
  2774. "hyperf/framework": "Required to use listeners",
  2775. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2776. },
  2777. "type": "library",
  2778. "extra": {
  2779. "hyperf": {
  2780. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2781. },
  2782. "branch-alias": {
  2783. "dev-master": "3.1-dev"
  2784. }
  2785. },
  2786. "autoload": {
  2787. "psr-4": {
  2788. "Hyperf\\ExceptionHandler\\": "src/"
  2789. }
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "MIT"
  2794. ],
  2795. "description": "Exception handler for hyperf",
  2796. "homepage": "https://hyperf.io",
  2797. "keywords": [
  2798. "exception-handler",
  2799. "php",
  2800. "swoole"
  2801. ],
  2802. "support": {
  2803. "docs": "https://hyperf.wiki",
  2804. "issues": "https://github.com/hyperf/hyperf/issues",
  2805. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2806. "source": "https://github.com/hyperf/hyperf"
  2807. },
  2808. "funding": [
  2809. {
  2810. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2811. "type": "custom"
  2812. },
  2813. {
  2814. "url": "https://opencollective.com/hyperf",
  2815. "type": "open_collective"
  2816. }
  2817. ],
  2818. "time": "2024-09-25T02:54:12+00:00"
  2819. },
  2820. {
  2821. "name": "hyperf/framework",
  2822. "version": "v3.1.42",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/hyperf/framework.git",
  2826. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2831. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "fig/http-message-util": "^1.1.2",
  2836. "hyperf/contract": "~3.1.0",
  2837. "hyperf/coordinator": "~3.1.0",
  2838. "hyperf/coroutine": "~3.1.0",
  2839. "php": ">=8.1",
  2840. "psr/container": "^1.0 || ^2.0",
  2841. "psr/event-dispatcher": "^1.0",
  2842. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2843. },
  2844. "suggest": {
  2845. "ext-swoole": "Required to use swoole engine.",
  2846. "hyperf/command": "Required to use Command annotation.",
  2847. "hyperf/di": "Required to use Command annotation.",
  2848. "hyperf/dispatcher": "Required to use BootApplication event.",
  2849. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2850. },
  2851. "type": "library",
  2852. "extra": {
  2853. "hyperf": {
  2854. "config": "Hyperf\\Framework\\ConfigProvider"
  2855. },
  2856. "branch-alias": {
  2857. "dev-master": "3.1-dev"
  2858. }
  2859. },
  2860. "autoload": {
  2861. "psr-4": {
  2862. "Hyperf\\Framework\\": "src/"
  2863. }
  2864. },
  2865. "notification-url": "https://packagist.org/downloads/",
  2866. "license": [
  2867. "MIT"
  2868. ],
  2869. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2870. "homepage": "https://hyperf.io",
  2871. "keywords": [
  2872. "Microservice",
  2873. "framework",
  2874. "hyperf",
  2875. "middleware",
  2876. "php",
  2877. "swoole"
  2878. ],
  2879. "support": {
  2880. "docs": "https://hyperf.wiki",
  2881. "issues": "https://github.com/hyperf/hyperf/issues",
  2882. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2883. "source": "https://github.com/hyperf/hyperf"
  2884. },
  2885. "funding": [
  2886. {
  2887. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2888. "type": "custom"
  2889. },
  2890. {
  2891. "url": "https://opencollective.com/hyperf",
  2892. "type": "open_collective"
  2893. }
  2894. ],
  2895. "time": "2024-09-25T02:54:12+00:00"
  2896. },
  2897. {
  2898. "name": "hyperf/guzzle",
  2899. "version": "v3.1.42",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/hyperf/guzzle.git",
  2903. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2908. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2913. "php": ">=8.1",
  2914. "psr/container": "^1.0 || ^2.0",
  2915. "psr/http-message": "^1.0 || ^2.0"
  2916. },
  2917. "suggest": {
  2918. "ext-curl": "Required for CURL handler support",
  2919. "hyperf/pool": "Required to use pool handler."
  2920. },
  2921. "type": "library",
  2922. "extra": {
  2923. "hyperf": {
  2924. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2925. },
  2926. "branch-alias": {
  2927. "dev-master": "3.1-dev"
  2928. }
  2929. },
  2930. "autoload": {
  2931. "psr-4": {
  2932. "Hyperf\\Guzzle\\": "src/"
  2933. }
  2934. },
  2935. "notification-url": "https://packagist.org/downloads/",
  2936. "license": [
  2937. "MIT"
  2938. ],
  2939. "description": "Swoole coroutine handler for guzzle",
  2940. "keywords": [
  2941. "Guzzle",
  2942. "handler",
  2943. "php",
  2944. "swoole"
  2945. ],
  2946. "support": {
  2947. "issues": "https://github.com/hyperf/guzzle/issues",
  2948. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2949. },
  2950. "funding": [
  2951. {
  2952. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2953. "type": "custom"
  2954. },
  2955. {
  2956. "url": "https://opencollective.com/hyperf",
  2957. "type": "open_collective"
  2958. }
  2959. ],
  2960. "time": "2024-09-25T02:54:12+00:00"
  2961. },
  2962. {
  2963. "name": "hyperf/http-message",
  2964. "version": "v3.1.48",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/hyperf/http-message.git",
  2968. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2973. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "hyperf/codec": "~3.1.0",
  2978. "hyperf/engine": "^2.11",
  2979. "hyperf/support": "~3.1.0",
  2980. "laminas/laminas-mime": "^2.7",
  2981. "php": ">=8.1",
  2982. "psr/http-message": "^1.0 || ^2.0",
  2983. "swow/psr7-plus": "^1.0"
  2984. },
  2985. "suggest": {
  2986. "psr/container": "Required to replace RequestParserInterface."
  2987. },
  2988. "type": "library",
  2989. "extra": {
  2990. "hyperf": {
  2991. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2992. },
  2993. "branch-alias": {
  2994. "dev-master": "3.1-dev"
  2995. }
  2996. },
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Hyperf\\HttpMessage\\": "src/"
  3000. }
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "description": "microservice framework base on swoole",
  3007. "keywords": [
  3008. "http-message",
  3009. "hyperf",
  3010. "php",
  3011. "swoole"
  3012. ],
  3013. "support": {
  3014. "issues": "https://github.com/hyperf/http-message/issues",
  3015. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  3016. },
  3017. "funding": [
  3018. {
  3019. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3020. "type": "custom"
  3021. },
  3022. {
  3023. "url": "https://opencollective.com/hyperf",
  3024. "type": "open_collective"
  3025. }
  3026. ],
  3027. "time": "2024-12-05T02:41:08+00:00"
  3028. },
  3029. {
  3030. "name": "hyperf/http-server",
  3031. "version": "v3.1.42",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/hyperf/http-server.git",
  3035. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3040. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "hyperf/codec": "~3.1.0",
  3045. "hyperf/collection": "~3.1.0",
  3046. "hyperf/context": "~3.1.0",
  3047. "hyperf/contract": "~3.1.0",
  3048. "hyperf/coroutine": "~3.1.0",
  3049. "hyperf/dispatcher": "~3.1.0",
  3050. "hyperf/event": "~3.1.0",
  3051. "hyperf/exception-handler": "~3.1.0",
  3052. "hyperf/http-message": "~3.1.0",
  3053. "hyperf/macroable": "~3.1.0",
  3054. "hyperf/serializer": "~3.1.0",
  3055. "hyperf/server": "~3.1.0",
  3056. "hyperf/stdlib": "~3.1.0",
  3057. "hyperf/support": "~3.1.0",
  3058. "nikic/fast-route": "^1.3",
  3059. "php": ">=8.1",
  3060. "psr/container": "^1.0 || ^2.0",
  3061. "swow/psr7-plus": "^1.0"
  3062. },
  3063. "suggest": {
  3064. "hyperf/di": "Required to use annotations."
  3065. },
  3066. "type": "library",
  3067. "extra": {
  3068. "hyperf": {
  3069. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3070. },
  3071. "branch-alias": {
  3072. "dev-master": "3.1-dev"
  3073. }
  3074. },
  3075. "autoload": {
  3076. "psr-4": {
  3077. "Hyperf\\HttpServer\\": "src/"
  3078. }
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "MIT"
  3083. ],
  3084. "description": "A HTTP Server for Hyperf.",
  3085. "homepage": "https://hyperf.io",
  3086. "keywords": [
  3087. "http",
  3088. "http-server",
  3089. "hyperf",
  3090. "php",
  3091. "swoole"
  3092. ],
  3093. "support": {
  3094. "docs": "https://hyperf.wiki",
  3095. "issues": "https://github.com/hyperf/hyperf/issues",
  3096. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3097. "source": "https://github.com/hyperf/hyperf"
  3098. },
  3099. "funding": [
  3100. {
  3101. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3102. "type": "custom"
  3103. },
  3104. {
  3105. "url": "https://opencollective.com/hyperf",
  3106. "type": "open_collective"
  3107. }
  3108. ],
  3109. "time": "2024-09-25T02:54:12+00:00"
  3110. },
  3111. {
  3112. "name": "hyperf/json-rpc",
  3113. "version": "v3.1.47",
  3114. "source": {
  3115. "type": "git",
  3116. "url": "https://github.com/hyperf/json-rpc.git",
  3117. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3118. },
  3119. "dist": {
  3120. "type": "zip",
  3121. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3122. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3123. "shasum": ""
  3124. },
  3125. "require": {
  3126. "hyperf/codec": "~3.1.0",
  3127. "hyperf/context": "~3.1.0",
  3128. "hyperf/contract": "~3.1.0",
  3129. "hyperf/engine": "^2.0",
  3130. "hyperf/http-message": "~3.1.0",
  3131. "hyperf/load-balancer": "~3.1.0",
  3132. "hyperf/rpc": "~3.1.0",
  3133. "hyperf/serializer": "~3.1.0",
  3134. "hyperf/support": "~3.1.0",
  3135. "hyperf/utils": "~3.1.0",
  3136. "php": ">=8.1",
  3137. "psr/container": "^1.0 || ^2.0",
  3138. "swow/psr7-plus": "^1.0"
  3139. },
  3140. "suggest": {
  3141. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3142. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3143. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3144. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3145. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "hyperf": {
  3150. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3151. },
  3152. "branch-alias": {
  3153. "dev-master": "3.1-dev"
  3154. }
  3155. },
  3156. "autoload": {
  3157. "psr-4": {
  3158. "Hyperf\\JsonRpc\\": "src/"
  3159. }
  3160. },
  3161. "notification-url": "https://packagist.org/downloads/",
  3162. "license": [
  3163. "MIT"
  3164. ],
  3165. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3166. "homepage": "https://hyperf.io",
  3167. "keywords": [
  3168. "hyperf",
  3169. "json-rpc",
  3170. "php",
  3171. "swoole"
  3172. ],
  3173. "support": {
  3174. "docs": "https://hyperf.wiki",
  3175. "issues": "https://github.com/hyperf/hyperf/issues",
  3176. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3177. "source": "https://github.com/hyperf/hyperf"
  3178. },
  3179. "funding": [
  3180. {
  3181. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3182. "type": "custom"
  3183. },
  3184. {
  3185. "url": "https://opencollective.com/hyperf",
  3186. "type": "open_collective"
  3187. }
  3188. ],
  3189. "time": "2024-11-28T01:51:55+00:00"
  3190. },
  3191. {
  3192. "name": "hyperf/load-balancer",
  3193. "version": "v3.1.42",
  3194. "source": {
  3195. "type": "git",
  3196. "url": "https://github.com/hyperf/load-balancer.git",
  3197. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3198. },
  3199. "dist": {
  3200. "type": "zip",
  3201. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3202. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3203. "shasum": ""
  3204. },
  3205. "require": {
  3206. "hyperf/coordinator": "~3.1.0",
  3207. "hyperf/coroutine": "~3.1.0",
  3208. "markrogoyski/math-php": "^2.0",
  3209. "php": ">=8.1",
  3210. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3211. },
  3212. "type": "library",
  3213. "extra": {
  3214. "hyperf": {
  3215. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3216. },
  3217. "branch-alias": {
  3218. "dev-master": "3.1-dev"
  3219. }
  3220. },
  3221. "autoload": {
  3222. "psr-4": {
  3223. "Hyperf\\LoadBalancer\\": "src/"
  3224. }
  3225. },
  3226. "notification-url": "https://packagist.org/downloads/",
  3227. "license": [
  3228. "MIT"
  3229. ],
  3230. "description": "A load balancer library for Hyperf.",
  3231. "homepage": "https://hyperf.io",
  3232. "keywords": [
  3233. "hyperf",
  3234. "load-balancer",
  3235. "php",
  3236. "swoole"
  3237. ],
  3238. "support": {
  3239. "docs": "https://hyperf.wiki",
  3240. "issues": "https://github.com/hyperf/hyperf/issues",
  3241. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3242. "source": "https://github.com/hyperf/hyperf"
  3243. },
  3244. "funding": [
  3245. {
  3246. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3247. "type": "custom"
  3248. },
  3249. {
  3250. "url": "https://opencollective.com/hyperf",
  3251. "type": "open_collective"
  3252. }
  3253. ],
  3254. "time": "2024-09-25T02:54:12+00:00"
  3255. },
  3256. {
  3257. "name": "hyperf/logger",
  3258. "version": "v3.1.42",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/hyperf/logger.git",
  3262. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3267. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3268. "shasum": ""
  3269. },
  3270. "require": {
  3271. "hyperf/contract": "~3.1.0",
  3272. "hyperf/support": "~3.1.0",
  3273. "hyperf/utils": "~3.1.0",
  3274. "monolog/monolog": "^2.7 || ^3.1",
  3275. "php": ">=8.1",
  3276. "psr/container": "^1.0 || ^2.0",
  3277. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "hyperf": {
  3282. "config": "Hyperf\\Logger\\ConfigProvider"
  3283. },
  3284. "branch-alias": {
  3285. "dev-master": "3.1-dev"
  3286. }
  3287. },
  3288. "autoload": {
  3289. "psr-4": {
  3290. "Hyperf\\Logger\\": "src/"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "description": "A logger component for hyperf.",
  3298. "homepage": "https://hyperf.io",
  3299. "keywords": [
  3300. "hyperf",
  3301. "logger",
  3302. "php"
  3303. ],
  3304. "support": {
  3305. "docs": "https://hyperf.wiki",
  3306. "issues": "https://github.com/hyperf/hyperf/issues",
  3307. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3308. "source": "https://github.com/hyperf/hyperf"
  3309. },
  3310. "funding": [
  3311. {
  3312. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3313. "type": "custom"
  3314. },
  3315. {
  3316. "url": "https://opencollective.com/hyperf",
  3317. "type": "open_collective"
  3318. }
  3319. ],
  3320. "time": "2024-09-25T02:54:12+00:00"
  3321. },
  3322. {
  3323. "name": "hyperf/macroable",
  3324. "version": "v3.1.42",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/hyperf/macroable.git",
  3328. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3333. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "php": ">=8.1"
  3338. },
  3339. "type": "library",
  3340. "extra": {
  3341. "branch-alias": {
  3342. "dev-master": "3.1-dev"
  3343. }
  3344. },
  3345. "autoload": {
  3346. "psr-4": {
  3347. "Hyperf\\Macroable\\": "src/"
  3348. }
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "MIT"
  3353. ],
  3354. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3355. "homepage": "https://hyperf.io",
  3356. "keywords": [
  3357. "hyperf",
  3358. "macroable",
  3359. "php",
  3360. "swoole"
  3361. ],
  3362. "support": {
  3363. "docs": "https://hyperf.wiki",
  3364. "issues": "https://github.com/hyperf/hyperf/issues",
  3365. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3366. "source": "https://github.com/hyperf/hyperf"
  3367. },
  3368. "funding": [
  3369. {
  3370. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3371. "type": "custom"
  3372. },
  3373. {
  3374. "url": "https://opencollective.com/hyperf",
  3375. "type": "open_collective"
  3376. }
  3377. ],
  3378. "time": "2024-09-25T02:54:12+00:00"
  3379. },
  3380. {
  3381. "name": "hyperf/memory",
  3382. "version": "v3.1.42",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/hyperf/memory.git",
  3386. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3391. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "php": ">=8.1"
  3396. },
  3397. "type": "library",
  3398. "extra": {
  3399. "hyperf": {
  3400. "config": "Hyperf\\Memory\\ConfigProvider"
  3401. },
  3402. "branch-alias": {
  3403. "dev-master": "3.1-dev"
  3404. }
  3405. },
  3406. "autoload": {
  3407. "psr-4": {
  3408. "Hyperf\\Memory\\": "src/"
  3409. }
  3410. },
  3411. "notification-url": "https://packagist.org/downloads/",
  3412. "license": [
  3413. "MIT"
  3414. ],
  3415. "description": "An independent component that use to operate and manage memory.",
  3416. "homepage": "https://hyperf.io",
  3417. "keywords": [
  3418. "hyperf",
  3419. "memory",
  3420. "php",
  3421. "swoole"
  3422. ],
  3423. "support": {
  3424. "docs": "https://hyperf.wiki",
  3425. "issues": "https://github.com/hyperf/hyperf/issues",
  3426. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3427. "source": "https://github.com/hyperf/hyperf"
  3428. },
  3429. "funding": [
  3430. {
  3431. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3432. "type": "custom"
  3433. },
  3434. {
  3435. "url": "https://opencollective.com/hyperf",
  3436. "type": "open_collective"
  3437. }
  3438. ],
  3439. "time": "2024-09-25T02:54:12+00:00"
  3440. },
  3441. {
  3442. "name": "hyperf/model-listener",
  3443. "version": "v3.1.42",
  3444. "source": {
  3445. "type": "git",
  3446. "url": "https://github.com/hyperf/model-listener.git",
  3447. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3448. },
  3449. "dist": {
  3450. "type": "zip",
  3451. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3452. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3453. "shasum": ""
  3454. },
  3455. "require": {
  3456. "hyperf/contract": "~3.1.0",
  3457. "hyperf/database": "~3.1.0",
  3458. "hyperf/di": "~3.1.0",
  3459. "hyperf/event": "~3.1.0",
  3460. "hyperf/support": "~3.1.0",
  3461. "hyperf/utils": "~3.1.0",
  3462. "php": ">=8.1",
  3463. "psr/container": "^1.0 || ^2.0"
  3464. },
  3465. "type": "library",
  3466. "extra": {
  3467. "hyperf": {
  3468. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3469. },
  3470. "branch-alias": {
  3471. "dev-master": "3.1-dev"
  3472. }
  3473. },
  3474. "autoload": {
  3475. "psr-4": {
  3476. "Hyperf\\ModelListener\\": "src/"
  3477. }
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "MIT"
  3482. ],
  3483. "description": "A model listener for Hyperf.",
  3484. "homepage": "https://hyperf.io",
  3485. "keywords": [
  3486. "hyperf",
  3487. "model-listener",
  3488. "php",
  3489. "swoole"
  3490. ],
  3491. "support": {
  3492. "docs": "https://hyperf.wiki",
  3493. "issues": "https://github.com/hyperf/hyperf/issues",
  3494. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3495. "source": "https://github.com/hyperf/hyperf"
  3496. },
  3497. "funding": [
  3498. {
  3499. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3500. "type": "custom"
  3501. },
  3502. {
  3503. "url": "https://opencollective.com/hyperf",
  3504. "type": "open_collective"
  3505. }
  3506. ],
  3507. "time": "2024-09-25T02:54:12+00:00"
  3508. },
  3509. {
  3510. "name": "hyperf/nacos",
  3511. "version": "v3.1.42",
  3512. "source": {
  3513. "type": "git",
  3514. "url": "https://github.com/hyperf/nacos.git",
  3515. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3516. },
  3517. "dist": {
  3518. "type": "zip",
  3519. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3520. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3521. "shasum": ""
  3522. },
  3523. "require": {
  3524. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3525. "hyperf/codec": "~3.1.0",
  3526. "hyperf/contract": "~3.1.0",
  3527. "hyperf/support": "~3.1.0",
  3528. "hyperf/utils": "~3.1.0",
  3529. "jetbrains/phpstorm-attributes": "^1.0",
  3530. "php": ">=8.1"
  3531. },
  3532. "type": "library",
  3533. "extra": {
  3534. "hyperf": {
  3535. "config": "Hyperf\\Nacos\\ConfigProvider"
  3536. },
  3537. "branch-alias": {
  3538. "dev-master": "3.1-dev"
  3539. }
  3540. },
  3541. "autoload": {
  3542. "psr-4": {
  3543. "Hyperf\\Nacos\\": "src/"
  3544. }
  3545. },
  3546. "notification-url": "https://packagist.org/downloads/",
  3547. "license": [
  3548. "MIT"
  3549. ],
  3550. "description": "Nacos SDK",
  3551. "keywords": [
  3552. "hyperf",
  3553. "nacos",
  3554. "php"
  3555. ],
  3556. "support": {
  3557. "issues": "https://github.com/hyperf/nacos/issues",
  3558. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3559. },
  3560. "funding": [
  3561. {
  3562. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3563. "type": "custom"
  3564. },
  3565. {
  3566. "url": "https://opencollective.com/hyperf",
  3567. "type": "open_collective"
  3568. }
  3569. ],
  3570. "time": "2024-09-25T02:54:12+00:00"
  3571. },
  3572. {
  3573. "name": "hyperf/pipeline",
  3574. "version": "v3.1.42",
  3575. "source": {
  3576. "type": "git",
  3577. "url": "https://github.com/hyperf/pipeline.git",
  3578. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3579. },
  3580. "dist": {
  3581. "type": "zip",
  3582. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3583. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3584. "shasum": ""
  3585. },
  3586. "require": {
  3587. "php": ">=8.1",
  3588. "psr/container": "^1.0 || ^2.0"
  3589. },
  3590. "type": "library",
  3591. "extra": {
  3592. "branch-alias": {
  3593. "dev-master": "3.1-dev"
  3594. }
  3595. },
  3596. "autoload": {
  3597. "psr-4": {
  3598. "Hyperf\\Pipeline\\": "src/"
  3599. }
  3600. },
  3601. "notification-url": "https://packagist.org/downloads/",
  3602. "license": [
  3603. "MIT"
  3604. ],
  3605. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3606. "homepage": "https://hyperf.io",
  3607. "keywords": [
  3608. "hyperf",
  3609. "php",
  3610. "pipeline",
  3611. "swoole"
  3612. ],
  3613. "support": {
  3614. "docs": "https://hyperf.wiki",
  3615. "issues": "https://github.com/hyperf/hyperf/issues",
  3616. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3617. "source": "https://github.com/hyperf/hyperf"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3622. "type": "custom"
  3623. },
  3624. {
  3625. "url": "https://opencollective.com/hyperf",
  3626. "type": "open_collective"
  3627. }
  3628. ],
  3629. "time": "2024-09-25T02:54:12+00:00"
  3630. },
  3631. {
  3632. "name": "hyperf/pool",
  3633. "version": "v3.1.42",
  3634. "source": {
  3635. "type": "git",
  3636. "url": "https://github.com/hyperf/pool.git",
  3637. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3638. },
  3639. "dist": {
  3640. "type": "zip",
  3641. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3642. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3643. "shasum": ""
  3644. },
  3645. "require": {
  3646. "hyperf/contract": "~3.1.0",
  3647. "hyperf/support": "~3.1.0",
  3648. "hyperf/utils": "~3.1.0",
  3649. "php": ">=8.1",
  3650. "psr/container": "^1.0 || ^2.0"
  3651. },
  3652. "suggest": {
  3653. "psr/event-dispatcher": "Required to use events."
  3654. },
  3655. "type": "library",
  3656. "extra": {
  3657. "hyperf": {
  3658. "config": "Hyperf\\Pool\\ConfigProvider"
  3659. },
  3660. "branch-alias": {
  3661. "dev-master": "3.1-dev"
  3662. }
  3663. },
  3664. "autoload": {
  3665. "psr-4": {
  3666. "Hyperf\\Pool\\": "src/"
  3667. }
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "description": "An independent universal connection pool component.",
  3674. "homepage": "https://hyperf.io",
  3675. "keywords": [
  3676. "connection-pool",
  3677. "hyperf",
  3678. "php",
  3679. "swoole"
  3680. ],
  3681. "support": {
  3682. "docs": "https://hyperf.wiki",
  3683. "issues": "https://github.com/hyperf/hyperf/issues",
  3684. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3685. "source": "https://github.com/hyperf/hyperf"
  3686. },
  3687. "funding": [
  3688. {
  3689. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3690. "type": "custom"
  3691. },
  3692. {
  3693. "url": "https://opencollective.com/hyperf",
  3694. "type": "open_collective"
  3695. }
  3696. ],
  3697. "time": "2024-09-25T02:54:12+00:00"
  3698. },
  3699. {
  3700. "name": "hyperf/process",
  3701. "version": "v3.1.48",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/hyperf/process.git",
  3705. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3710. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "hyperf/contract": "~3.1.0",
  3715. "hyperf/support": "~3.1.0",
  3716. "hyperf/utils": "~3.1.0",
  3717. "php": ">=8.1",
  3718. "psr/container": "^1.0 || ^2.0",
  3719. "psr/event-dispatcher": "^1.0"
  3720. },
  3721. "suggest": {
  3722. "hyperf/di": "Required to use annotations.",
  3723. "hyperf/event": "Required to dump the message before and after process.",
  3724. "hyperf/framework": "Required to use BootProcessListener."
  3725. },
  3726. "type": "library",
  3727. "extra": {
  3728. "hyperf": {
  3729. "config": "Hyperf\\Process\\ConfigProvider"
  3730. },
  3731. "branch-alias": {
  3732. "dev-master": "3.1-dev"
  3733. }
  3734. },
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Hyperf\\Process\\": "src/"
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "description": "A process component for hyperf.",
  3745. "homepage": "https://hyperf.io",
  3746. "keywords": [
  3747. "hyperf",
  3748. "php",
  3749. "process"
  3750. ],
  3751. "support": {
  3752. "docs": "https://hyperf.wiki",
  3753. "issues": "https://github.com/hyperf/hyperf/issues",
  3754. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3755. "source": "https://github.com/hyperf/hyperf"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://opencollective.com/hyperf",
  3764. "type": "open_collective"
  3765. }
  3766. ],
  3767. "time": "2024-12-02T10:54:30+00:00"
  3768. },
  3769. {
  3770. "name": "hyperf/redis",
  3771. "version": "v3.1.51",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/hyperf/redis.git",
  3775. "reference": "4f4088abbfe70ec0d2766c9ffab749a9c3b1415c"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/hyperf/redis/zipball/4f4088abbfe70ec0d2766c9ffab749a9c3b1415c",
  3780. "reference": "4f4088abbfe70ec0d2766c9ffab749a9c3b1415c",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "ext-redis": "^5.0 || ^6.0",
  3785. "hyperf/contract": "~3.1.0",
  3786. "hyperf/pool": "~3.1.0",
  3787. "hyperf/support": "~3.1.0",
  3788. "hyperf/tappable": "~3.1.0",
  3789. "hyperf/utils": "~3.1.0",
  3790. "php": ">=8.1",
  3791. "psr/container": "^1.0 || ^2.0"
  3792. },
  3793. "suggest": {
  3794. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3795. "hyperf/di": "Create the RedisPool via dependency injection."
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "hyperf": {
  3800. "config": "Hyperf\\Redis\\ConfigProvider"
  3801. },
  3802. "branch-alias": {
  3803. "dev-master": "3.1-dev"
  3804. }
  3805. },
  3806. "autoload": {
  3807. "psr-4": {
  3808. "Hyperf\\Redis\\": "src/"
  3809. }
  3810. },
  3811. "notification-url": "https://packagist.org/downloads/",
  3812. "license": [
  3813. "MIT"
  3814. ],
  3815. "description": "A redis component for hyperf.",
  3816. "homepage": "https://hyperf.io",
  3817. "keywords": [
  3818. "hyperf",
  3819. "php",
  3820. "pool",
  3821. "redis"
  3822. ],
  3823. "support": {
  3824. "docs": "https://hyperf.wiki",
  3825. "issues": "https://github.com/hyperf/hyperf/issues",
  3826. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3827. "source": "https://github.com/hyperf/hyperf"
  3828. },
  3829. "funding": [
  3830. {
  3831. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3832. "type": "custom"
  3833. },
  3834. {
  3835. "url": "https://opencollective.com/hyperf",
  3836. "type": "open_collective"
  3837. }
  3838. ],
  3839. "time": "2025-02-06T04:12:35+00:00"
  3840. },
  3841. {
  3842. "name": "hyperf/rpc",
  3843. "version": "v3.1.42",
  3844. "source": {
  3845. "type": "git",
  3846. "url": "https://github.com/hyperf/rpc.git",
  3847. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3848. },
  3849. "dist": {
  3850. "type": "zip",
  3851. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3852. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3853. "shasum": ""
  3854. },
  3855. "require": {
  3856. "hyperf/codec": "~3.1.0",
  3857. "hyperf/contract": "~3.1.0",
  3858. "hyperf/support": "~3.1.0",
  3859. "jetbrains/phpstorm-attributes": "^1.0",
  3860. "php": ">=8.1"
  3861. },
  3862. "type": "library",
  3863. "extra": {
  3864. "hyperf": [],
  3865. "branch-alias": {
  3866. "dev-master": "3.1-dev"
  3867. }
  3868. },
  3869. "autoload": {
  3870. "psr-4": {
  3871. "Hyperf\\Rpc\\": "src/"
  3872. }
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "description": "A rpc basic library for Hyperf.",
  3879. "homepage": "https://hyperf.io",
  3880. "keywords": [
  3881. "hyperf",
  3882. "php",
  3883. "rpc",
  3884. "swoole"
  3885. ],
  3886. "support": {
  3887. "docs": "https://hyperf.wiki",
  3888. "issues": "https://github.com/hyperf/hyperf/issues",
  3889. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3890. "source": "https://github.com/hyperf/hyperf"
  3891. },
  3892. "funding": [
  3893. {
  3894. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3895. "type": "custom"
  3896. },
  3897. {
  3898. "url": "https://opencollective.com/hyperf",
  3899. "type": "open_collective"
  3900. }
  3901. ],
  3902. "time": "2024-09-25T02:54:12+00:00"
  3903. },
  3904. {
  3905. "name": "hyperf/rpc-client",
  3906. "version": "v3.1.42",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/hyperf/rpc-client.git",
  3910. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3915. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3916. "shasum": ""
  3917. },
  3918. "require": {
  3919. "hyperf/code-parser": "~3.1.0",
  3920. "hyperf/load-balancer": "~3.1.0",
  3921. "hyperf/rpc": "~3.1.0",
  3922. "hyperf/support": "~3.1.0",
  3923. "hyperf/utils": "~3.1.0",
  3924. "jetbrains/phpstorm-attributes": "^1.0",
  3925. "php": ">=8.1",
  3926. "psr/container": "^1.0 || ^2.0"
  3927. },
  3928. "suggest": {
  3929. "hyperf/di": "For better container experience.",
  3930. "hyperf/pool": "Required to use connection pool.",
  3931. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3932. },
  3933. "type": "library",
  3934. "extra": {
  3935. "hyperf": {
  3936. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3937. },
  3938. "branch-alias": {
  3939. "dev-master": "3.1-dev"
  3940. }
  3941. },
  3942. "autoload": {
  3943. "psr-4": {
  3944. "Hyperf\\RpcClient\\": "src/"
  3945. }
  3946. },
  3947. "notification-url": "https://packagist.org/downloads/",
  3948. "license": [
  3949. "MIT"
  3950. ],
  3951. "description": "An abstract rpc server component for Hyperf.",
  3952. "homepage": "https://hyperf.io",
  3953. "keywords": [
  3954. "hyperf",
  3955. "json-rpc",
  3956. "php",
  3957. "rpc",
  3958. "rpc-client",
  3959. "swoole"
  3960. ],
  3961. "support": {
  3962. "docs": "https://hyperf.wiki",
  3963. "issues": "https://github.com/hyperf/hyperf/issues",
  3964. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3965. "source": "https://github.com/hyperf/hyperf"
  3966. },
  3967. "funding": [
  3968. {
  3969. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3970. "type": "custom"
  3971. },
  3972. {
  3973. "url": "https://opencollective.com/hyperf",
  3974. "type": "open_collective"
  3975. }
  3976. ],
  3977. "time": "2024-09-25T02:54:12+00:00"
  3978. },
  3979. {
  3980. "name": "hyperf/rpc-server",
  3981. "version": "v3.1.42",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/hyperf/rpc-server.git",
  3985. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3990. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3991. "shasum": ""
  3992. },
  3993. "require": {
  3994. "hyperf/http-server": "~3.1.0",
  3995. "hyperf/rpc": "~3.1.0",
  3996. "php": ">=8.1"
  3997. },
  3998. "suggest": {
  3999. "hyperf/di": "Required to use annotations."
  4000. },
  4001. "type": "library",
  4002. "extra": {
  4003. "hyperf": {
  4004. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4005. },
  4006. "branch-alias": {
  4007. "dev-master": "3.1-dev"
  4008. }
  4009. },
  4010. "autoload": {
  4011. "psr-4": {
  4012. "Hyperf\\RpcServer\\": "src/"
  4013. }
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "description": "An abstract rpc server component for Hyperf.",
  4020. "homepage": "https://hyperf.io",
  4021. "keywords": [
  4022. "hyperf",
  4023. "php",
  4024. "rpc",
  4025. "rpc-server",
  4026. "swoole"
  4027. ],
  4028. "support": {
  4029. "docs": "https://hyperf.wiki",
  4030. "issues": "https://github.com/hyperf/hyperf/issues",
  4031. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4032. "source": "https://github.com/hyperf/hyperf"
  4033. },
  4034. "funding": [
  4035. {
  4036. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4037. "type": "custom"
  4038. },
  4039. {
  4040. "url": "https://opencollective.com/hyperf",
  4041. "type": "open_collective"
  4042. }
  4043. ],
  4044. "time": "2024-09-25T02:54:12+00:00"
  4045. },
  4046. {
  4047. "name": "hyperf/serializer",
  4048. "version": "v3.1.42",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://github.com/hyperf/serializer.git",
  4052. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4053. },
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4057. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4058. "shasum": ""
  4059. },
  4060. "require": {
  4061. "hyperf/contract": "~3.1.0",
  4062. "php": ">=8.1"
  4063. },
  4064. "suggest": {
  4065. "hyperf/di": "Required to use ExceptionNormalizer",
  4066. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4067. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4068. },
  4069. "type": "library",
  4070. "extra": {
  4071. "hyperf": {
  4072. "config": "Hyperf\\Serializer\\ConfigProvider"
  4073. },
  4074. "branch-alias": {
  4075. "dev-master": "3.1-dev"
  4076. }
  4077. },
  4078. "autoload": {
  4079. "psr-4": {
  4080. "Hyperf\\Serializer\\": "src/"
  4081. }
  4082. },
  4083. "notification-url": "https://packagist.org/downloads/",
  4084. "license": [
  4085. "MIT"
  4086. ],
  4087. "description": "A serializer component for Hyperf.",
  4088. "homepage": "https://hyperf.io",
  4089. "keywords": [
  4090. "hyperf",
  4091. "php",
  4092. "swoole",
  4093. "tappable"
  4094. ],
  4095. "support": {
  4096. "docs": "https://hyperf.wiki",
  4097. "issues": "https://github.com/hyperf/hyperf/issues",
  4098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4099. "source": "https://github.com/hyperf/hyperf"
  4100. },
  4101. "funding": [
  4102. {
  4103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4104. "type": "custom"
  4105. },
  4106. {
  4107. "url": "https://opencollective.com/hyperf",
  4108. "type": "open_collective"
  4109. }
  4110. ],
  4111. "time": "2024-09-25T02:54:12+00:00"
  4112. },
  4113. {
  4114. "name": "hyperf/server",
  4115. "version": "v3.1.42",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/hyperf/server.git",
  4119. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4124. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4125. "shasum": ""
  4126. },
  4127. "require": {
  4128. "hyperf/contract": "~3.1.0",
  4129. "hyperf/coordinator": "~3.1.0",
  4130. "hyperf/engine": "^2.8",
  4131. "hyperf/support": "~3.1.0",
  4132. "hyperf/tappable": "~3.1.0",
  4133. "php": ">=8.1",
  4134. "psr/container": "^1.0 || ^2.0",
  4135. "psr/event-dispatcher": "^1.0",
  4136. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4137. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4138. },
  4139. "suggest": {
  4140. "hyperf/event": "Dump the info after server start.",
  4141. "hyperf/framework": "Dump the info after server start."
  4142. },
  4143. "type": "library",
  4144. "extra": {
  4145. "hyperf": {
  4146. "config": "Hyperf\\Server\\ConfigProvider"
  4147. },
  4148. "branch-alias": {
  4149. "dev-master": "3.1-dev"
  4150. }
  4151. },
  4152. "autoload": {
  4153. "psr-4": {
  4154. "Hyperf\\Server\\": "src/"
  4155. }
  4156. },
  4157. "notification-url": "https://packagist.org/downloads/",
  4158. "license": [
  4159. "MIT"
  4160. ],
  4161. "description": "A base server library for Hyperf.",
  4162. "homepage": "https://hyperf.io",
  4163. "keywords": [
  4164. "hyperf",
  4165. "php",
  4166. "server",
  4167. "swoole"
  4168. ],
  4169. "support": {
  4170. "docs": "https://hyperf.wiki",
  4171. "issues": "https://github.com/hyperf/hyperf/issues",
  4172. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4173. "source": "https://github.com/hyperf/hyperf"
  4174. },
  4175. "funding": [
  4176. {
  4177. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4178. "type": "custom"
  4179. },
  4180. {
  4181. "url": "https://opencollective.com/hyperf",
  4182. "type": "open_collective"
  4183. }
  4184. ],
  4185. "time": "2024-09-25T02:54:12+00:00"
  4186. },
  4187. {
  4188. "name": "hyperf/service-governance",
  4189. "version": "v3.1.42",
  4190. "source": {
  4191. "type": "git",
  4192. "url": "https://github.com/hyperf/service-governance.git",
  4193. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4194. },
  4195. "dist": {
  4196. "type": "zip",
  4197. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4198. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4199. "shasum": ""
  4200. },
  4201. "require": {
  4202. "hyperf/contract": "~3.1.0",
  4203. "hyperf/support": "~3.1.0",
  4204. "jetbrains/phpstorm-attributes": "^1.0",
  4205. "php": ">=8.1"
  4206. },
  4207. "suggest": {
  4208. "hyperf/event": "Required to use RegisterServiceListener.",
  4209. "hyperf/framework": "Required to use RegisterServiceListener.",
  4210. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4211. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4212. },
  4213. "type": "library",
  4214. "extra": {
  4215. "hyperf": {
  4216. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4217. },
  4218. "branch-alias": {
  4219. "dev-master": "3.1-dev"
  4220. }
  4221. },
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Hyperf\\ServiceGovernance\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "description": "A service governance component for Hyperf.",
  4232. "homepage": "https://hyperf.io",
  4233. "keywords": [
  4234. "hyperf",
  4235. "php",
  4236. "service-governance",
  4237. "swoole"
  4238. ],
  4239. "support": {
  4240. "docs": "https://hyperf.wiki",
  4241. "issues": "https://github.com/hyperf/hyperf/issues",
  4242. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4243. "source": "https://github.com/hyperf/hyperf"
  4244. },
  4245. "funding": [
  4246. {
  4247. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4248. "type": "custom"
  4249. },
  4250. {
  4251. "url": "https://opencollective.com/hyperf",
  4252. "type": "open_collective"
  4253. }
  4254. ],
  4255. "time": "2024-09-25T02:54:12+00:00"
  4256. },
  4257. {
  4258. "name": "hyperf/service-governance-consul",
  4259. "version": "v3.1.42",
  4260. "source": {
  4261. "type": "git",
  4262. "url": "https://github.com/hyperf/service-governance-consul.git",
  4263. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4264. },
  4265. "dist": {
  4266. "type": "zip",
  4267. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4268. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4269. "shasum": ""
  4270. },
  4271. "require": {
  4272. "hyperf/consul": "~3.1.0",
  4273. "hyperf/contract": "~3.1.0",
  4274. "hyperf/service-governance": "~3.1.0",
  4275. "hyperf/support": "~3.1.0",
  4276. "hyperf/utils": "~3.1.0",
  4277. "php": ">=8.1"
  4278. },
  4279. "type": "library",
  4280. "extra": {
  4281. "hyperf": {
  4282. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4283. },
  4284. "branch-alias": {
  4285. "dev-master": "3.1-dev"
  4286. }
  4287. },
  4288. "autoload": {
  4289. "psr-4": {
  4290. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4291. }
  4292. },
  4293. "notification-url": "https://packagist.org/downloads/",
  4294. "license": [
  4295. "MIT"
  4296. ],
  4297. "description": "A consul adapter for service governance.",
  4298. "homepage": "https://hyperf.io",
  4299. "keywords": [
  4300. "consul-adapter",
  4301. "hyperf",
  4302. "php",
  4303. "service-governance",
  4304. "swoole"
  4305. ],
  4306. "support": {
  4307. "docs": "https://hyperf.wiki",
  4308. "issues": "https://github.com/hyperf/hyperf/issues",
  4309. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4310. "source": "https://github.com/hyperf/hyperf"
  4311. },
  4312. "funding": [
  4313. {
  4314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4315. "type": "custom"
  4316. },
  4317. {
  4318. "url": "https://opencollective.com/hyperf",
  4319. "type": "open_collective"
  4320. }
  4321. ],
  4322. "time": "2024-09-25T02:54:12+00:00"
  4323. },
  4324. {
  4325. "name": "hyperf/service-governance-nacos",
  4326. "version": "v3.1.42",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4330. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4335. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4336. "shasum": ""
  4337. },
  4338. "require": {
  4339. "hyperf/codec": "~3.1.0",
  4340. "hyperf/contract": "~3.1.0",
  4341. "hyperf/nacos": "~3.1.0",
  4342. "hyperf/service-governance": "~3.1.0",
  4343. "hyperf/support": "~3.1.0",
  4344. "hyperf/utils": "~3.1.0",
  4345. "php": ">=8.1"
  4346. },
  4347. "type": "library",
  4348. "extra": {
  4349. "hyperf": {
  4350. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4351. },
  4352. "branch-alias": {
  4353. "dev-master": "3.1-dev"
  4354. }
  4355. },
  4356. "autoload": {
  4357. "psr-4": {
  4358. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4359. }
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "description": "A nacos adapter for service governance.",
  4366. "homepage": "https://hyperf.io",
  4367. "keywords": [
  4368. "hyperf",
  4369. "nacos-adapter",
  4370. "php",
  4371. "service-governance",
  4372. "swoole"
  4373. ],
  4374. "support": {
  4375. "docs": "https://hyperf.wiki",
  4376. "issues": "https://github.com/hyperf/hyperf/issues",
  4377. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4378. "source": "https://github.com/hyperf/hyperf"
  4379. },
  4380. "funding": [
  4381. {
  4382. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4383. "type": "custom"
  4384. },
  4385. {
  4386. "url": "https://opencollective.com/hyperf",
  4387. "type": "open_collective"
  4388. }
  4389. ],
  4390. "time": "2024-09-25T02:54:12+00:00"
  4391. },
  4392. {
  4393. "name": "hyperf/snowflake",
  4394. "version": "v3.1.42",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/hyperf/snowflake.git",
  4398. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4403. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4404. "shasum": ""
  4405. },
  4406. "require": {
  4407. "hyperf/contract": "~3.1.0",
  4408. "php": ">=8.1"
  4409. },
  4410. "suggest": {
  4411. "hyperf/config": "Required to read snowflake config.",
  4412. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4413. "psr/container": "Required to use MetaGeneratorFactory."
  4414. },
  4415. "type": "library",
  4416. "extra": {
  4417. "hyperf": {
  4418. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4419. },
  4420. "branch-alias": {
  4421. "dev-master": "3.1-dev"
  4422. }
  4423. },
  4424. "autoload": {
  4425. "psr-4": {
  4426. "Hyperf\\Snowflake\\": "src/"
  4427. }
  4428. },
  4429. "notification-url": "https://packagist.org/downloads/",
  4430. "license": [
  4431. "MIT"
  4432. ],
  4433. "description": "A snowflake library",
  4434. "homepage": "https://hyperf.io",
  4435. "keywords": [
  4436. "php",
  4437. "snowflake"
  4438. ],
  4439. "support": {
  4440. "docs": "https://hyperf.wiki",
  4441. "issues": "https://github.com/hyperf/hyperf/issues",
  4442. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4443. "source": "https://github.com/hyperf/hyperf"
  4444. },
  4445. "funding": [
  4446. {
  4447. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4448. "type": "custom"
  4449. },
  4450. {
  4451. "url": "https://opencollective.com/hyperf",
  4452. "type": "open_collective"
  4453. }
  4454. ],
  4455. "time": "2024-09-25T02:54:12+00:00"
  4456. },
  4457. {
  4458. "name": "hyperf/stdlib",
  4459. "version": "v3.1.42",
  4460. "source": {
  4461. "type": "git",
  4462. "url": "https://github.com/hyperf/stdlib.git",
  4463. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4464. },
  4465. "dist": {
  4466. "type": "zip",
  4467. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4468. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4469. "shasum": ""
  4470. },
  4471. "require": {
  4472. "php": ">=8.1"
  4473. },
  4474. "type": "library",
  4475. "extra": {
  4476. "branch-alias": {
  4477. "dev-master": "3.1-dev"
  4478. }
  4479. },
  4480. "autoload": {
  4481. "psr-4": {
  4482. "Hyperf\\Stdlib\\": "src/"
  4483. }
  4484. },
  4485. "notification-url": "https://packagist.org/downloads/",
  4486. "license": [
  4487. "MIT"
  4488. ],
  4489. "description": "A stdlib component for Hyperf.",
  4490. "homepage": "https://hyperf.io",
  4491. "keywords": [
  4492. "hyperf",
  4493. "php",
  4494. "stdlib",
  4495. "swoole"
  4496. ],
  4497. "support": {
  4498. "docs": "https://hyperf.wiki",
  4499. "issues": "https://github.com/hyperf/hyperf/issues",
  4500. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4501. "source": "https://github.com/hyperf/hyperf"
  4502. },
  4503. "funding": [
  4504. {
  4505. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4506. "type": "custom"
  4507. },
  4508. {
  4509. "url": "https://opencollective.com/hyperf",
  4510. "type": "open_collective"
  4511. }
  4512. ],
  4513. "time": "2024-09-25T02:54:12+00:00"
  4514. },
  4515. {
  4516. "name": "hyperf/stringable",
  4517. "version": "v3.1.50",
  4518. "source": {
  4519. "type": "git",
  4520. "url": "https://github.com/hyperf/stringable.git",
  4521. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687"
  4522. },
  4523. "dist": {
  4524. "type": "zip",
  4525. "url": "https://api.github.com/repos/hyperf/stringable/zipball/89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4526. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4527. "shasum": ""
  4528. },
  4529. "require": {
  4530. "ext-mbstring": "*",
  4531. "hyperf/collection": "~3.1.0",
  4532. "hyperf/conditionable": "~3.1.0",
  4533. "hyperf/macroable": "~3.1.0",
  4534. "hyperf/tappable": "~3.1.0",
  4535. "php": ">=8.1"
  4536. },
  4537. "suggest": {
  4538. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4539. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4540. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4541. },
  4542. "type": "library",
  4543. "extra": {
  4544. "branch-alias": {
  4545. "dev-master": "3.1-dev"
  4546. }
  4547. },
  4548. "autoload": {
  4549. "files": [
  4550. "src/Functions.php"
  4551. ],
  4552. "psr-4": {
  4553. "Hyperf\\Stringable\\": "src/"
  4554. }
  4555. },
  4556. "notification-url": "https://packagist.org/downloads/",
  4557. "license": [
  4558. "MIT"
  4559. ],
  4560. "description": "Hyperf Stringable package which come from illuminate/support",
  4561. "homepage": "https://hyperf.io",
  4562. "keywords": [
  4563. "hyperf",
  4564. "php",
  4565. "stringable",
  4566. "swoole"
  4567. ],
  4568. "support": {
  4569. "docs": "https://hyperf.wiki",
  4570. "issues": "https://github.com/hyperf/hyperf/issues",
  4571. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4572. "source": "https://github.com/hyperf/hyperf"
  4573. },
  4574. "funding": [
  4575. {
  4576. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4577. "type": "custom"
  4578. },
  4579. {
  4580. "url": "https://opencollective.com/hyperf",
  4581. "type": "open_collective"
  4582. }
  4583. ],
  4584. "time": "2025-01-08T06:57:58+00:00"
  4585. },
  4586. {
  4587. "name": "hyperf/support",
  4588. "version": "v3.1.51",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/hyperf/support.git",
  4592. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4597. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4598. "shasum": ""
  4599. },
  4600. "require": {
  4601. "hyperf/collection": "~3.1.0",
  4602. "hyperf/context": "~3.1.0",
  4603. "hyperf/contract": "~3.1.0",
  4604. "hyperf/coroutine": "~3.1.0",
  4605. "hyperf/macroable": "~3.1.0",
  4606. "hyperf/stringable": "~3.1.0",
  4607. "php": ">=8.1"
  4608. },
  4609. "suggest": {
  4610. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4611. },
  4612. "type": "library",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-master": "3.1-dev"
  4616. }
  4617. },
  4618. "autoload": {
  4619. "files": [
  4620. "src/Functions.php"
  4621. ],
  4622. "psr-4": {
  4623. "Hyperf\\Support\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "description": "A support component for Hyperf.",
  4631. "homepage": "https://hyperf.io",
  4632. "keywords": [
  4633. "hyperf",
  4634. "php",
  4635. "support",
  4636. "swoole"
  4637. ],
  4638. "support": {
  4639. "docs": "https://hyperf.wiki",
  4640. "issues": "https://github.com/hyperf/hyperf/issues",
  4641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4642. "source": "https://github.com/hyperf/hyperf"
  4643. },
  4644. "funding": [
  4645. {
  4646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4647. "type": "custom"
  4648. },
  4649. {
  4650. "url": "https://opencollective.com/hyperf",
  4651. "type": "open_collective"
  4652. }
  4653. ],
  4654. "time": "2025-02-06T07:02:37+00:00"
  4655. },
  4656. {
  4657. "name": "hyperf/tappable",
  4658. "version": "v3.1.42",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/hyperf/tappable.git",
  4662. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4667. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4668. "shasum": ""
  4669. },
  4670. "require": {
  4671. "php": ">=8.1"
  4672. },
  4673. "type": "library",
  4674. "extra": {
  4675. "branch-alias": {
  4676. "dev-master": "3.1-dev"
  4677. }
  4678. },
  4679. "autoload": {
  4680. "files": [
  4681. "src/Functions.php"
  4682. ],
  4683. "psr-4": {
  4684. "Hyperf\\Tappable\\": "src/"
  4685. }
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4692. "homepage": "https://hyperf.io",
  4693. "keywords": [
  4694. "hyperf",
  4695. "php",
  4696. "swoole",
  4697. "tappable"
  4698. ],
  4699. "support": {
  4700. "docs": "https://hyperf.wiki",
  4701. "issues": "https://github.com/hyperf/hyperf/issues",
  4702. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4703. "source": "https://github.com/hyperf/hyperf"
  4704. },
  4705. "funding": [
  4706. {
  4707. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4708. "type": "custom"
  4709. },
  4710. {
  4711. "url": "https://opencollective.com/hyperf",
  4712. "type": "open_collective"
  4713. }
  4714. ],
  4715. "time": "2024-09-25T02:54:12+00:00"
  4716. },
  4717. {
  4718. "name": "hyperf/translation",
  4719. "version": "v3.1.42",
  4720. "source": {
  4721. "type": "git",
  4722. "url": "https://github.com/hyperf/translation.git",
  4723. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4724. },
  4725. "dist": {
  4726. "type": "zip",
  4727. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4728. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4729. "shasum": ""
  4730. },
  4731. "require": {
  4732. "hyperf/contract": "~3.1.0",
  4733. "hyperf/macroable": "~3.1.0",
  4734. "hyperf/support": "~3.1.0",
  4735. "hyperf/utils": "~3.1.0",
  4736. "php": ">=8.1",
  4737. "psr/container": "^1.0 || ^2.0"
  4738. },
  4739. "type": "library",
  4740. "extra": {
  4741. "hyperf": {
  4742. "config": "Hyperf\\Translation\\ConfigProvider"
  4743. },
  4744. "branch-alias": {
  4745. "dev-master": "3.1-dev"
  4746. }
  4747. },
  4748. "autoload": {
  4749. "files": [
  4750. "src/Functions.php"
  4751. ],
  4752. "psr-4": {
  4753. "Hyperf\\Translation\\": "src/"
  4754. }
  4755. },
  4756. "notification-url": "https://packagist.org/downloads/",
  4757. "license": [
  4758. "MIT"
  4759. ],
  4760. "description": "An independent translation component, forked by illuminate/translation.",
  4761. "keywords": [
  4762. "hyperf",
  4763. "translation"
  4764. ],
  4765. "support": {
  4766. "issues": "https://github.com/hyperf/translation/issues",
  4767. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4768. },
  4769. "funding": [
  4770. {
  4771. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4772. "type": "custom"
  4773. },
  4774. {
  4775. "url": "https://opencollective.com/hyperf",
  4776. "type": "open_collective"
  4777. }
  4778. ],
  4779. "time": "2024-09-25T02:54:12+00:00"
  4780. },
  4781. {
  4782. "name": "hyperf/utils",
  4783. "version": "v3.1.42",
  4784. "source": {
  4785. "type": "git",
  4786. "url": "https://github.com/hyperf/utils.git",
  4787. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4788. },
  4789. "dist": {
  4790. "type": "zip",
  4791. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4792. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4793. "shasum": ""
  4794. },
  4795. "require": {
  4796. "doctrine/inflector": "^2.0",
  4797. "hyperf/code-parser": "~3.1.0",
  4798. "hyperf/codec": "~3.1.0",
  4799. "hyperf/collection": "~3.1.0",
  4800. "hyperf/context": "~3.1.0",
  4801. "hyperf/contract": "~3.1.0",
  4802. "hyperf/coordinator": "~3.1.0",
  4803. "hyperf/coroutine": "~3.1.0",
  4804. "hyperf/engine": "^2.0",
  4805. "hyperf/macroable": "~3.1.0",
  4806. "hyperf/serializer": "~3.1.0",
  4807. "hyperf/stringable": "~3.1.0",
  4808. "hyperf/support": "~3.1.0",
  4809. "php": ">=8.1"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "3.1-dev"
  4815. }
  4816. },
  4817. "notification-url": "https://packagist.org/downloads/",
  4818. "license": [
  4819. "MIT"
  4820. ],
  4821. "description": "A tools package that could help developer solved the problem quickly.",
  4822. "homepage": "https://hyperf.io",
  4823. "keywords": [
  4824. "hyperf",
  4825. "php",
  4826. "swoole",
  4827. "utils"
  4828. ],
  4829. "support": {
  4830. "docs": "https://hyperf.wiki",
  4831. "issues": "https://github.com/hyperf/hyperf/issues",
  4832. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4833. "source": "https://github.com/hyperf/hyperf"
  4834. },
  4835. "funding": [
  4836. {
  4837. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4838. "type": "custom"
  4839. },
  4840. {
  4841. "url": "https://opencollective.com/hyperf",
  4842. "type": "open_collective"
  4843. }
  4844. ],
  4845. "time": "2024-09-25T02:54:12+00:00"
  4846. },
  4847. {
  4848. "name": "hyperf/validation",
  4849. "version": "v3.1.47",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/hyperf/validation.git",
  4853. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/hyperf/validation/zipball/a3d39fc5e0940f17e3b137c9136464916754f073",
  4858. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073",
  4859. "shasum": ""
  4860. },
  4861. "require": {
  4862. "egulias/email-validator": "^3.0",
  4863. "hyperf/collection": "~3.1.0",
  4864. "hyperf/conditionable": "~3.1.0",
  4865. "hyperf/contract": "~3.1.0",
  4866. "hyperf/di": "~3.1.0",
  4867. "hyperf/framework": "~3.1.0",
  4868. "hyperf/macroable": "~3.1.0",
  4869. "hyperf/stringable": "~3.1.0",
  4870. "hyperf/support": "~3.1.0",
  4871. "hyperf/tappable": "~3.1.0",
  4872. "hyperf/translation": "~3.1.0",
  4873. "hyperf/utils": "~3.1.0",
  4874. "nesbot/carbon": "^2.21",
  4875. "php": ">=8.1",
  4876. "psr/container": "^1.0 || ^2.0",
  4877. "psr/event-dispatcher": "^1.0",
  4878. "psr/http-message": "^1.0 || ^2.0"
  4879. },
  4880. "suggest": {
  4881. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4882. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4883. },
  4884. "type": "library",
  4885. "extra": {
  4886. "hyperf": {
  4887. "config": "Hyperf\\Validation\\ConfigProvider"
  4888. },
  4889. "branch-alias": {
  4890. "dev-master": "3.1-dev"
  4891. }
  4892. },
  4893. "autoload": {
  4894. "psr-4": {
  4895. "Hyperf\\Validation\\": "src/"
  4896. }
  4897. },
  4898. "notification-url": "https://packagist.org/downloads/",
  4899. "license": [
  4900. "MIT"
  4901. ],
  4902. "description": "hyperf validation",
  4903. "keywords": [
  4904. "hyperf",
  4905. "validation"
  4906. ],
  4907. "support": {
  4908. "issues": "https://github.com/hyperf/validation/issues",
  4909. "source": "https://github.com/hyperf/validation/tree/v3.1.47"
  4910. },
  4911. "funding": [
  4912. {
  4913. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4914. "type": "custom"
  4915. },
  4916. {
  4917. "url": "https://opencollective.com/hyperf",
  4918. "type": "open_collective"
  4919. }
  4920. ],
  4921. "time": "2024-11-28T01:51:55+00:00"
  4922. },
  4923. {
  4924. "name": "hyperf/websocket-server",
  4925. "version": "v3.1.50",
  4926. "source": {
  4927. "type": "git",
  4928. "url": "https://github.com/hyperf/websocket-server.git",
  4929. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5"
  4930. },
  4931. "dist": {
  4932. "type": "zip",
  4933. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/c770ebf0208738bbb21000db01f09a48e15023a5",
  4934. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5",
  4935. "shasum": ""
  4936. },
  4937. "require": {
  4938. "hyperf/collection": "~3.1.0",
  4939. "hyperf/contract": "~3.1.0",
  4940. "hyperf/exception-handler": "~3.1.0",
  4941. "hyperf/http-server": "~3.1.0",
  4942. "hyperf/support": "~3.1.0",
  4943. "hyperf/utils": "~3.1.0",
  4944. "php": ">=8.1",
  4945. "psr/container": "^1.0 || ^2.0",
  4946. "psr/event-dispatcher": "^1.0"
  4947. },
  4948. "type": "library",
  4949. "extra": {
  4950. "hyperf": {
  4951. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4952. },
  4953. "branch-alias": {
  4954. "dev-master": "3.1-dev"
  4955. }
  4956. },
  4957. "autoload": {
  4958. "psr-4": {
  4959. "Hyperf\\WebSocketServer\\": "src/"
  4960. }
  4961. },
  4962. "notification-url": "https://packagist.org/downloads/",
  4963. "license": [
  4964. "MIT"
  4965. ],
  4966. "description": "A websocket server library for Hyperf.",
  4967. "homepage": "https://hyperf.io",
  4968. "keywords": [
  4969. "hyperf",
  4970. "php",
  4971. "swoole",
  4972. "websocket"
  4973. ],
  4974. "support": {
  4975. "docs": "https://hyperf.wiki",
  4976. "issues": "https://github.com/hyperf/hyperf/issues",
  4977. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4978. "source": "https://github.com/hyperf/hyperf"
  4979. },
  4980. "funding": [
  4981. {
  4982. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4983. "type": "custom"
  4984. },
  4985. {
  4986. "url": "https://opencollective.com/hyperf",
  4987. "type": "open_collective"
  4988. }
  4989. ],
  4990. "time": "2025-01-08T02:18:30+00:00"
  4991. },
  4992. {
  4993. "name": "jetbrains/phpstorm-attributes",
  4994. "version": "1.2",
  4995. "source": {
  4996. "type": "git",
  4997. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4998. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4999. },
  5000. "dist": {
  5001. "type": "zip",
  5002. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5003. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5004. "shasum": ""
  5005. },
  5006. "type": "library",
  5007. "autoload": {
  5008. "psr-4": {
  5009. "JetBrains\\PhpStorm\\": "src/"
  5010. }
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "Apache-2.0"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "JetBrains",
  5019. "homepage": "https://www.jetbrains.com"
  5020. }
  5021. ],
  5022. "description": "PhpStorm specific attributes",
  5023. "keywords": [
  5024. "attributes",
  5025. "jetbrains",
  5026. "phpstorm"
  5027. ],
  5028. "support": {
  5029. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5030. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5031. },
  5032. "time": "2024-10-11T10:46:19+00:00"
  5033. },
  5034. {
  5035. "name": "laminas/laminas-mime",
  5036. "version": "2.12.0",
  5037. "source": {
  5038. "type": "git",
  5039. "url": "https://github.com/laminas/laminas-mime.git",
  5040. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5041. },
  5042. "dist": {
  5043. "type": "zip",
  5044. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5045. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5046. "shasum": ""
  5047. },
  5048. "require": {
  5049. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5050. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5051. },
  5052. "conflict": {
  5053. "zendframework/zend-mime": "*"
  5054. },
  5055. "require-dev": {
  5056. "laminas/laminas-coding-standard": "~2.4.0",
  5057. "laminas/laminas-mail": "^2.19.0",
  5058. "phpunit/phpunit": "~9.5.25"
  5059. },
  5060. "suggest": {
  5061. "laminas/laminas-mail": "Laminas\\Mail component"
  5062. },
  5063. "type": "library",
  5064. "autoload": {
  5065. "psr-4": {
  5066. "Laminas\\Mime\\": "src/"
  5067. }
  5068. },
  5069. "notification-url": "https://packagist.org/downloads/",
  5070. "license": [
  5071. "BSD-3-Clause"
  5072. ],
  5073. "description": "Create and parse MIME messages and parts",
  5074. "homepage": "https://laminas.dev",
  5075. "keywords": [
  5076. "laminas",
  5077. "mime"
  5078. ],
  5079. "support": {
  5080. "chat": "https://laminas.dev/chat",
  5081. "docs": "https://docs.laminas.dev/laminas-mime/",
  5082. "forum": "https://discourse.laminas.dev",
  5083. "issues": "https://github.com/laminas/laminas-mime/issues",
  5084. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5085. "source": "https://github.com/laminas/laminas-mime"
  5086. },
  5087. "funding": [
  5088. {
  5089. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5090. "type": "community_bridge"
  5091. }
  5092. ],
  5093. "abandoned": "symfony/mime",
  5094. "time": "2023-11-02T16:47:19+00:00"
  5095. },
  5096. {
  5097. "name": "laminas/laminas-stdlib",
  5098. "version": "3.20.0",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/laminas/laminas-stdlib.git",
  5102. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5107. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5108. "shasum": ""
  5109. },
  5110. "require": {
  5111. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5112. },
  5113. "conflict": {
  5114. "zendframework/zend-stdlib": "*"
  5115. },
  5116. "require-dev": {
  5117. "laminas/laminas-coding-standard": "^3.0",
  5118. "phpbench/phpbench": "^1.3.1",
  5119. "phpunit/phpunit": "^10.5.38",
  5120. "psalm/plugin-phpunit": "^0.19.0",
  5121. "vimeo/psalm": "^5.26.1"
  5122. },
  5123. "type": "library",
  5124. "autoload": {
  5125. "psr-4": {
  5126. "Laminas\\Stdlib\\": "src/"
  5127. }
  5128. },
  5129. "notification-url": "https://packagist.org/downloads/",
  5130. "license": [
  5131. "BSD-3-Clause"
  5132. ],
  5133. "description": "SPL extensions, array utilities, error handlers, and more",
  5134. "homepage": "https://laminas.dev",
  5135. "keywords": [
  5136. "laminas",
  5137. "stdlib"
  5138. ],
  5139. "support": {
  5140. "chat": "https://laminas.dev/chat",
  5141. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5142. "forum": "https://discourse.laminas.dev",
  5143. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5144. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5145. "source": "https://github.com/laminas/laminas-stdlib"
  5146. },
  5147. "funding": [
  5148. {
  5149. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5150. "type": "community_bridge"
  5151. }
  5152. ],
  5153. "time": "2024-10-29T13:46:07+00:00"
  5154. },
  5155. {
  5156. "name": "lcobucci/clock",
  5157. "version": "2.3.0",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/lcobucci/clock.git",
  5161. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5166. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5167. "shasum": ""
  5168. },
  5169. "require": {
  5170. "php": "~8.1.0 || ~8.2.0",
  5171. "stella-maris/clock": "^0.1.7"
  5172. },
  5173. "provide": {
  5174. "psr/clock-implementation": "1.0"
  5175. },
  5176. "require-dev": {
  5177. "infection/infection": "^0.26",
  5178. "lcobucci/coding-standard": "^9.0",
  5179. "phpstan/extension-installer": "^1.2",
  5180. "phpstan/phpstan": "^1.9.4",
  5181. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5182. "phpstan/phpstan-phpunit": "^1.3.2",
  5183. "phpstan/phpstan-strict-rules": "^1.4.4",
  5184. "phpunit/phpunit": "^9.5.27"
  5185. },
  5186. "type": "library",
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Lcobucci\\Clock\\": "src"
  5190. }
  5191. },
  5192. "notification-url": "https://packagist.org/downloads/",
  5193. "license": [
  5194. "MIT"
  5195. ],
  5196. "authors": [
  5197. {
  5198. "name": "Luís Cobucci",
  5199. "email": "lcobucci@gmail.com"
  5200. }
  5201. ],
  5202. "description": "Yet another clock abstraction",
  5203. "support": {
  5204. "issues": "https://github.com/lcobucci/clock/issues",
  5205. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5206. },
  5207. "funding": [
  5208. {
  5209. "url": "https://github.com/lcobucci",
  5210. "type": "github"
  5211. },
  5212. {
  5213. "url": "https://www.patreon.com/lcobucci",
  5214. "type": "patreon"
  5215. }
  5216. ],
  5217. "time": "2022-12-19T14:38:11+00:00"
  5218. },
  5219. {
  5220. "name": "lcobucci/jwt",
  5221. "version": "4.1.5",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://github.com/lcobucci/jwt.git",
  5225. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5230. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5231. "shasum": ""
  5232. },
  5233. "require": {
  5234. "ext-hash": "*",
  5235. "ext-json": "*",
  5236. "ext-mbstring": "*",
  5237. "ext-openssl": "*",
  5238. "ext-sodium": "*",
  5239. "lcobucci/clock": "^2.0",
  5240. "php": "^7.4 || ^8.0"
  5241. },
  5242. "require-dev": {
  5243. "infection/infection": "^0.21",
  5244. "lcobucci/coding-standard": "^6.0",
  5245. "mikey179/vfsstream": "^1.6.7",
  5246. "phpbench/phpbench": "^1.0",
  5247. "phpstan/extension-installer": "^1.0",
  5248. "phpstan/phpstan": "^0.12",
  5249. "phpstan/phpstan-deprecation-rules": "^0.12",
  5250. "phpstan/phpstan-phpunit": "^0.12",
  5251. "phpstan/phpstan-strict-rules": "^0.12",
  5252. "phpunit/php-invoker": "^3.1",
  5253. "phpunit/phpunit": "^9.5"
  5254. },
  5255. "type": "library",
  5256. "autoload": {
  5257. "psr-4": {
  5258. "Lcobucci\\JWT\\": "src"
  5259. }
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "BSD-3-Clause"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Luís Cobucci",
  5268. "email": "lcobucci@gmail.com",
  5269. "role": "Developer"
  5270. }
  5271. ],
  5272. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5273. "keywords": [
  5274. "JWS",
  5275. "jwt"
  5276. ],
  5277. "support": {
  5278. "issues": "https://github.com/lcobucci/jwt/issues",
  5279. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5280. },
  5281. "funding": [
  5282. {
  5283. "url": "https://github.com/lcobucci",
  5284. "type": "github"
  5285. },
  5286. {
  5287. "url": "https://www.patreon.com/lcobucci",
  5288. "type": "patreon"
  5289. }
  5290. ],
  5291. "time": "2021-09-28T19:34:56+00:00"
  5292. },
  5293. {
  5294. "name": "markrogoyski/math-php",
  5295. "version": "v2.11.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/markrogoyski/math-php.git",
  5299. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5304. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5305. "shasum": ""
  5306. },
  5307. "require": {
  5308. "ext-json": "*",
  5309. "php": ">=7.2.0"
  5310. },
  5311. "require-dev": {
  5312. "php-coveralls/php-coveralls": "^2.0",
  5313. "php-parallel-lint/php-parallel-lint": "^1.2",
  5314. "phploc/phploc": "*",
  5315. "phpmd/phpmd": "^2.6",
  5316. "phpstan/phpstan": "^1.10",
  5317. "phpunit/phpunit": "^8.5",
  5318. "squizlabs/php_codesniffer": "3.*"
  5319. },
  5320. "type": "library",
  5321. "autoload": {
  5322. "psr-4": {
  5323. "MathPHP\\": "src/"
  5324. }
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "MIT"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Mark Rogoyski",
  5333. "email": "mark@rogoyski.com",
  5334. "homepage": "https://github.com/markrogoyski",
  5335. "role": "Lead developer"
  5336. },
  5337. {
  5338. "name": "Kevin Nowaczyk",
  5339. "homepage": "https://github.com/Beakerboy",
  5340. "role": "Developer"
  5341. },
  5342. {
  5343. "name": "MathPHP Community of Contributors",
  5344. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5345. }
  5346. ],
  5347. "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",
  5348. "homepage": "https://github.com/markrogoyski/math-php/",
  5349. "keywords": [
  5350. "algebra",
  5351. "combinatorics",
  5352. "distributions",
  5353. "linear algebra",
  5354. "math",
  5355. "mathematics",
  5356. "matrix",
  5357. "numerical analysis",
  5358. "probability",
  5359. "regressions",
  5360. "statistics"
  5361. ],
  5362. "support": {
  5363. "issues": "https://github.com/markrogoyski/math-php/issues",
  5364. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  5365. },
  5366. "time": "2025-01-26T20:16:06+00:00"
  5367. },
  5368. {
  5369. "name": "monolog/monolog",
  5370. "version": "3.8.1",
  5371. "source": {
  5372. "type": "git",
  5373. "url": "https://github.com/Seldaek/monolog.git",
  5374. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5375. },
  5376. "dist": {
  5377. "type": "zip",
  5378. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5379. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5380. "shasum": ""
  5381. },
  5382. "require": {
  5383. "php": ">=8.1",
  5384. "psr/log": "^2.0 || ^3.0"
  5385. },
  5386. "provide": {
  5387. "psr/log-implementation": "3.0.0"
  5388. },
  5389. "require-dev": {
  5390. "aws/aws-sdk-php": "^3.0",
  5391. "doctrine/couchdb": "~1.0@dev",
  5392. "elasticsearch/elasticsearch": "^7 || ^8",
  5393. "ext-json": "*",
  5394. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5395. "guzzlehttp/guzzle": "^7.4.5",
  5396. "guzzlehttp/psr7": "^2.2",
  5397. "mongodb/mongodb": "^1.8",
  5398. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5399. "php-console/php-console": "^3.1.8",
  5400. "phpstan/phpstan": "^2",
  5401. "phpstan/phpstan-deprecation-rules": "^2",
  5402. "phpstan/phpstan-strict-rules": "^2",
  5403. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5404. "predis/predis": "^1.1 || ^2",
  5405. "rollbar/rollbar": "^4.0",
  5406. "ruflin/elastica": "^7 || ^8",
  5407. "symfony/mailer": "^5.4 || ^6",
  5408. "symfony/mime": "^5.4 || ^6"
  5409. },
  5410. "suggest": {
  5411. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5412. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5413. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5414. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5415. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5416. "ext-mbstring": "Allow to work properly with unicode symbols",
  5417. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5418. "ext-openssl": "Required to send log messages using SSL",
  5419. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5420. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5421. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5422. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5423. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5424. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5425. },
  5426. "type": "library",
  5427. "extra": {
  5428. "branch-alias": {
  5429. "dev-main": "3.x-dev"
  5430. }
  5431. },
  5432. "autoload": {
  5433. "psr-4": {
  5434. "Monolog\\": "src/Monolog"
  5435. }
  5436. },
  5437. "notification-url": "https://packagist.org/downloads/",
  5438. "license": [
  5439. "MIT"
  5440. ],
  5441. "authors": [
  5442. {
  5443. "name": "Jordi Boggiano",
  5444. "email": "j.boggiano@seld.be",
  5445. "homepage": "https://seld.be"
  5446. }
  5447. ],
  5448. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5449. "homepage": "https://github.com/Seldaek/monolog",
  5450. "keywords": [
  5451. "log",
  5452. "logging",
  5453. "psr-3"
  5454. ],
  5455. "support": {
  5456. "issues": "https://github.com/Seldaek/monolog/issues",
  5457. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5458. },
  5459. "funding": [
  5460. {
  5461. "url": "https://github.com/Seldaek",
  5462. "type": "github"
  5463. },
  5464. {
  5465. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5466. "type": "tidelift"
  5467. }
  5468. ],
  5469. "time": "2024-12-05T17:15:07+00:00"
  5470. },
  5471. {
  5472. "name": "nesbot/carbon",
  5473. "version": "2.72.6",
  5474. "source": {
  5475. "type": "git",
  5476. "url": "https://github.com/CarbonPHP/carbon.git",
  5477. "reference": "1e9d50601e7035a4c61441a208cb5bed73e108c5"
  5478. },
  5479. "dist": {
  5480. "type": "zip",
  5481. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1e9d50601e7035a4c61441a208cb5bed73e108c5",
  5482. "reference": "1e9d50601e7035a4c61441a208cb5bed73e108c5",
  5483. "shasum": ""
  5484. },
  5485. "require": {
  5486. "carbonphp/carbon-doctrine-types": "*",
  5487. "ext-json": "*",
  5488. "php": "^7.1.8 || ^8.0",
  5489. "psr/clock": "^1.0",
  5490. "symfony/polyfill-mbstring": "^1.0",
  5491. "symfony/polyfill-php80": "^1.16",
  5492. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5493. },
  5494. "provide": {
  5495. "psr/clock-implementation": "1.0"
  5496. },
  5497. "require-dev": {
  5498. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5499. "doctrine/orm": "^2.7 || ^3.0",
  5500. "friendsofphp/php-cs-fixer": "^3.0",
  5501. "kylekatarnls/multi-tester": "^2.0",
  5502. "ondrejmirtes/better-reflection": "<6",
  5503. "phpmd/phpmd": "^2.9",
  5504. "phpstan/extension-installer": "^1.0",
  5505. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5506. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5507. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5508. "squizlabs/php_codesniffer": "^3.4"
  5509. },
  5510. "bin": [
  5511. "bin/carbon"
  5512. ],
  5513. "type": "library",
  5514. "extra": {
  5515. "laravel": {
  5516. "providers": [
  5517. "Carbon\\Laravel\\ServiceProvider"
  5518. ]
  5519. },
  5520. "phpstan": {
  5521. "includes": [
  5522. "extension.neon"
  5523. ]
  5524. },
  5525. "branch-alias": {
  5526. "dev-2.x": "2.x-dev",
  5527. "dev-master": "3.x-dev"
  5528. }
  5529. },
  5530. "autoload": {
  5531. "psr-4": {
  5532. "Carbon\\": "src/Carbon/"
  5533. }
  5534. },
  5535. "notification-url": "https://packagist.org/downloads/",
  5536. "license": [
  5537. "MIT"
  5538. ],
  5539. "authors": [
  5540. {
  5541. "name": "Brian Nesbitt",
  5542. "email": "brian@nesbot.com",
  5543. "homepage": "https://markido.com"
  5544. },
  5545. {
  5546. "name": "kylekatarnls",
  5547. "homepage": "https://github.com/kylekatarnls"
  5548. }
  5549. ],
  5550. "description": "An API extension for DateTime that supports 281 different languages.",
  5551. "homepage": "https://carbon.nesbot.com",
  5552. "keywords": [
  5553. "date",
  5554. "datetime",
  5555. "time"
  5556. ],
  5557. "support": {
  5558. "docs": "https://carbon.nesbot.com/docs",
  5559. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5560. "source": "https://github.com/briannesbitt/Carbon"
  5561. },
  5562. "funding": [
  5563. {
  5564. "url": "https://github.com/sponsors/kylekatarnls",
  5565. "type": "github"
  5566. },
  5567. {
  5568. "url": "https://opencollective.com/Carbon#sponsor",
  5569. "type": "opencollective"
  5570. },
  5571. {
  5572. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5573. "type": "tidelift"
  5574. }
  5575. ],
  5576. "time": "2024-12-27T09:28:11+00:00"
  5577. },
  5578. {
  5579. "name": "nikic/fast-route",
  5580. "version": "v1.3.0",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/nikic/FastRoute.git",
  5584. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5589. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5590. "shasum": ""
  5591. },
  5592. "require": {
  5593. "php": ">=5.4.0"
  5594. },
  5595. "require-dev": {
  5596. "phpunit/phpunit": "^4.8.35|~5.7"
  5597. },
  5598. "type": "library",
  5599. "autoload": {
  5600. "files": [
  5601. "src/functions.php"
  5602. ],
  5603. "psr-4": {
  5604. "FastRoute\\": "src/"
  5605. }
  5606. },
  5607. "notification-url": "https://packagist.org/downloads/",
  5608. "license": [
  5609. "BSD-3-Clause"
  5610. ],
  5611. "authors": [
  5612. {
  5613. "name": "Nikita Popov",
  5614. "email": "nikic@php.net"
  5615. }
  5616. ],
  5617. "description": "Fast request router for PHP",
  5618. "keywords": [
  5619. "router",
  5620. "routing"
  5621. ],
  5622. "support": {
  5623. "issues": "https://github.com/nikic/FastRoute/issues",
  5624. "source": "https://github.com/nikic/FastRoute/tree/master"
  5625. },
  5626. "time": "2018-02-13T20:26:39+00:00"
  5627. },
  5628. {
  5629. "name": "nikic/php-parser",
  5630. "version": "v4.19.4",
  5631. "source": {
  5632. "type": "git",
  5633. "url": "https://github.com/nikic/PHP-Parser.git",
  5634. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5635. },
  5636. "dist": {
  5637. "type": "zip",
  5638. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5639. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5640. "shasum": ""
  5641. },
  5642. "require": {
  5643. "ext-tokenizer": "*",
  5644. "php": ">=7.1"
  5645. },
  5646. "require-dev": {
  5647. "ircmaxell/php-yacc": "^0.0.7",
  5648. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5649. },
  5650. "bin": [
  5651. "bin/php-parse"
  5652. ],
  5653. "type": "library",
  5654. "extra": {
  5655. "branch-alias": {
  5656. "dev-master": "4.9-dev"
  5657. }
  5658. },
  5659. "autoload": {
  5660. "psr-4": {
  5661. "PhpParser\\": "lib/PhpParser"
  5662. }
  5663. },
  5664. "notification-url": "https://packagist.org/downloads/",
  5665. "license": [
  5666. "BSD-3-Clause"
  5667. ],
  5668. "authors": [
  5669. {
  5670. "name": "Nikita Popov"
  5671. }
  5672. ],
  5673. "description": "A PHP parser written in PHP",
  5674. "keywords": [
  5675. "parser",
  5676. "php"
  5677. ],
  5678. "support": {
  5679. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5680. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5681. },
  5682. "time": "2024-09-29T15:01:53+00:00"
  5683. },
  5684. {
  5685. "name": "paragonie/constant_time_encoding",
  5686. "version": "v3.0.0",
  5687. "source": {
  5688. "type": "git",
  5689. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5690. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5691. },
  5692. "dist": {
  5693. "type": "zip",
  5694. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5695. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5696. "shasum": ""
  5697. },
  5698. "require": {
  5699. "php": "^8"
  5700. },
  5701. "require-dev": {
  5702. "phpunit/phpunit": "^9",
  5703. "vimeo/psalm": "^4|^5"
  5704. },
  5705. "type": "library",
  5706. "autoload": {
  5707. "psr-4": {
  5708. "ParagonIE\\ConstantTime\\": "src/"
  5709. }
  5710. },
  5711. "notification-url": "https://packagist.org/downloads/",
  5712. "license": [
  5713. "MIT"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "Paragon Initiative Enterprises",
  5718. "email": "security@paragonie.com",
  5719. "homepage": "https://paragonie.com",
  5720. "role": "Maintainer"
  5721. },
  5722. {
  5723. "name": "Steve 'Sc00bz' Thomas",
  5724. "email": "steve@tobtu.com",
  5725. "homepage": "https://www.tobtu.com",
  5726. "role": "Original Developer"
  5727. }
  5728. ],
  5729. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5730. "keywords": [
  5731. "base16",
  5732. "base32",
  5733. "base32_decode",
  5734. "base32_encode",
  5735. "base64",
  5736. "base64_decode",
  5737. "base64_encode",
  5738. "bin2hex",
  5739. "encoding",
  5740. "hex",
  5741. "hex2bin",
  5742. "rfc4648"
  5743. ],
  5744. "support": {
  5745. "email": "info@paragonie.com",
  5746. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5747. "source": "https://github.com/paragonie/constant_time_encoding"
  5748. },
  5749. "time": "2024-05-08T12:36:18+00:00"
  5750. },
  5751. {
  5752. "name": "paragonie/random_compat",
  5753. "version": "v9.99.100",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/paragonie/random_compat.git",
  5757. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5762. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5763. "shasum": ""
  5764. },
  5765. "require": {
  5766. "php": ">= 7"
  5767. },
  5768. "require-dev": {
  5769. "phpunit/phpunit": "4.*|5.*",
  5770. "vimeo/psalm": "^1"
  5771. },
  5772. "suggest": {
  5773. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5774. },
  5775. "type": "library",
  5776. "notification-url": "https://packagist.org/downloads/",
  5777. "license": [
  5778. "MIT"
  5779. ],
  5780. "authors": [
  5781. {
  5782. "name": "Paragon Initiative Enterprises",
  5783. "email": "security@paragonie.com",
  5784. "homepage": "https://paragonie.com"
  5785. }
  5786. ],
  5787. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5788. "keywords": [
  5789. "csprng",
  5790. "polyfill",
  5791. "pseudorandom",
  5792. "random"
  5793. ],
  5794. "support": {
  5795. "email": "info@paragonie.com",
  5796. "issues": "https://github.com/paragonie/random_compat/issues",
  5797. "source": "https://github.com/paragonie/random_compat"
  5798. },
  5799. "time": "2020-10-15T08:29:30+00:00"
  5800. },
  5801. {
  5802. "name": "php-amqplib/php-amqplib",
  5803. "version": "v3.7.2",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5807. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5812. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "ext-mbstring": "*",
  5817. "ext-sockets": "*",
  5818. "php": "^7.2||^8.0",
  5819. "phpseclib/phpseclib": "^2.0|^3.0"
  5820. },
  5821. "conflict": {
  5822. "php": "7.4.0 - 7.4.1"
  5823. },
  5824. "replace": {
  5825. "videlalvaro/php-amqplib": "self.version"
  5826. },
  5827. "require-dev": {
  5828. "ext-curl": "*",
  5829. "nategood/httpful": "^0.2.20",
  5830. "phpunit/phpunit": "^7.5|^9.5",
  5831. "squizlabs/php_codesniffer": "^3.6"
  5832. },
  5833. "type": "library",
  5834. "extra": {
  5835. "branch-alias": {
  5836. "dev-master": "3.0-dev"
  5837. }
  5838. },
  5839. "autoload": {
  5840. "psr-4": {
  5841. "PhpAmqpLib\\": "PhpAmqpLib/"
  5842. }
  5843. },
  5844. "notification-url": "https://packagist.org/downloads/",
  5845. "license": [
  5846. "LGPL-2.1-or-later"
  5847. ],
  5848. "authors": [
  5849. {
  5850. "name": "Alvaro Videla",
  5851. "role": "Original Maintainer"
  5852. },
  5853. {
  5854. "name": "Raúl Araya",
  5855. "email": "nubeiro@gmail.com",
  5856. "role": "Maintainer"
  5857. },
  5858. {
  5859. "name": "Luke Bakken",
  5860. "email": "luke@bakken.io",
  5861. "role": "Maintainer"
  5862. },
  5863. {
  5864. "name": "Ramūnas Dronga",
  5865. "email": "github@ramuno.lt",
  5866. "role": "Maintainer"
  5867. }
  5868. ],
  5869. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5870. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5871. "keywords": [
  5872. "message",
  5873. "queue",
  5874. "rabbitmq"
  5875. ],
  5876. "support": {
  5877. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5878. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5879. },
  5880. "time": "2024-11-21T09:21:41+00:00"
  5881. },
  5882. {
  5883. "name": "php-di/phpdoc-reader",
  5884. "version": "2.2.1",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5888. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5893. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.2.0"
  5898. },
  5899. "require-dev": {
  5900. "mnapoli/hard-mode": "~0.3.0",
  5901. "phpunit/phpunit": "^8.5|^9.0"
  5902. },
  5903. "type": "library",
  5904. "autoload": {
  5905. "psr-4": {
  5906. "PhpDocReader\\": "src/PhpDocReader"
  5907. }
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "MIT"
  5912. ],
  5913. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5914. "keywords": [
  5915. "phpdoc",
  5916. "reflection"
  5917. ],
  5918. "support": {
  5919. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5920. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5921. },
  5922. "time": "2020-10-12T12:39:22+00:00"
  5923. },
  5924. {
  5925. "name": "phper666/jwt-auth",
  5926. "version": "v4.0.11",
  5927. "source": {
  5928. "type": "git",
  5929. "url": "https://github.com/phper666/jwt-auth.git",
  5930. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5931. },
  5932. "dist": {
  5933. "type": "zip",
  5934. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5935. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5936. "shasum": ""
  5937. },
  5938. "require": {
  5939. "ext-swoole": ">=4.4",
  5940. "lcobucci/jwt": "4.1.5",
  5941. "nesbot/carbon": "^1.0 || ^2.0",
  5942. "php": ">=7.4"
  5943. },
  5944. "suggest": {
  5945. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5946. "hyperf/command": "required hyperf/command ~2.2.0",
  5947. "hyperf/config": "required hyperf/config ~2.2.0",
  5948. "hyperf/di": "required hyperf/di ~2.2.0"
  5949. },
  5950. "type": "library",
  5951. "extra": {
  5952. "hyperf": {
  5953. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5954. }
  5955. },
  5956. "autoload": {
  5957. "files": [
  5958. "src/Functions.php"
  5959. ],
  5960. "psr-4": {
  5961. "Phper666\\JWTAuth\\": "src/"
  5962. }
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Li Yuzhao",
  5971. "email": "562405704@qq.com",
  5972. "homepage": "https://github.com/phper666/jwt-auth",
  5973. "role": "Developer"
  5974. }
  5975. ],
  5976. "description": "jwt-auth Component",
  5977. "keywords": [
  5978. "hyperf",
  5979. "php"
  5980. ],
  5981. "support": {
  5982. "issues": "https://github.com/phper666/jwt-auth/issues",
  5983. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5984. },
  5985. "time": "2024-02-02T13:24:54+00:00"
  5986. },
  5987. {
  5988. "name": "phpoption/phpoption",
  5989. "version": "1.9.3",
  5990. "source": {
  5991. "type": "git",
  5992. "url": "https://github.com/schmittjoh/php-option.git",
  5993. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5994. },
  5995. "dist": {
  5996. "type": "zip",
  5997. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5998. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5999. "shasum": ""
  6000. },
  6001. "require": {
  6002. "php": "^7.2.5 || ^8.0"
  6003. },
  6004. "require-dev": {
  6005. "bamarni/composer-bin-plugin": "^1.8.2",
  6006. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6007. },
  6008. "type": "library",
  6009. "extra": {
  6010. "bamarni-bin": {
  6011. "bin-links": true,
  6012. "forward-command": false
  6013. },
  6014. "branch-alias": {
  6015. "dev-master": "1.9-dev"
  6016. }
  6017. },
  6018. "autoload": {
  6019. "psr-4": {
  6020. "PhpOption\\": "src/PhpOption/"
  6021. }
  6022. },
  6023. "notification-url": "https://packagist.org/downloads/",
  6024. "license": [
  6025. "Apache-2.0"
  6026. ],
  6027. "authors": [
  6028. {
  6029. "name": "Johannes M. Schmitt",
  6030. "email": "schmittjoh@gmail.com",
  6031. "homepage": "https://github.com/schmittjoh"
  6032. },
  6033. {
  6034. "name": "Graham Campbell",
  6035. "email": "hello@gjcampbell.co.uk",
  6036. "homepage": "https://github.com/GrahamCampbell"
  6037. }
  6038. ],
  6039. "description": "Option Type for PHP",
  6040. "keywords": [
  6041. "language",
  6042. "option",
  6043. "php",
  6044. "type"
  6045. ],
  6046. "support": {
  6047. "issues": "https://github.com/schmittjoh/php-option/issues",
  6048. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6049. },
  6050. "funding": [
  6051. {
  6052. "url": "https://github.com/GrahamCampbell",
  6053. "type": "github"
  6054. },
  6055. {
  6056. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6057. "type": "tidelift"
  6058. }
  6059. ],
  6060. "time": "2024-07-20T21:41:07+00:00"
  6061. },
  6062. {
  6063. "name": "phpseclib/phpseclib",
  6064. "version": "3.0.43",
  6065. "source": {
  6066. "type": "git",
  6067. "url": "https://github.com/phpseclib/phpseclib.git",
  6068. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  6069. },
  6070. "dist": {
  6071. "type": "zip",
  6072. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  6073. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  6074. "shasum": ""
  6075. },
  6076. "require": {
  6077. "paragonie/constant_time_encoding": "^1|^2|^3",
  6078. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6079. "php": ">=5.6.1"
  6080. },
  6081. "require-dev": {
  6082. "phpunit/phpunit": "*"
  6083. },
  6084. "suggest": {
  6085. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6086. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6087. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6088. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6089. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6090. },
  6091. "type": "library",
  6092. "autoload": {
  6093. "files": [
  6094. "phpseclib/bootstrap.php"
  6095. ],
  6096. "psr-4": {
  6097. "phpseclib3\\": "phpseclib/"
  6098. }
  6099. },
  6100. "notification-url": "https://packagist.org/downloads/",
  6101. "license": [
  6102. "MIT"
  6103. ],
  6104. "authors": [
  6105. {
  6106. "name": "Jim Wigginton",
  6107. "email": "terrafrost@php.net",
  6108. "role": "Lead Developer"
  6109. },
  6110. {
  6111. "name": "Patrick Monnerat",
  6112. "email": "pm@datasphere.ch",
  6113. "role": "Developer"
  6114. },
  6115. {
  6116. "name": "Andreas Fischer",
  6117. "email": "bantu@phpbb.com",
  6118. "role": "Developer"
  6119. },
  6120. {
  6121. "name": "Hans-Jürgen Petrich",
  6122. "email": "petrich@tronic-media.com",
  6123. "role": "Developer"
  6124. },
  6125. {
  6126. "name": "Graham Campbell",
  6127. "email": "graham@alt-three.com",
  6128. "role": "Developer"
  6129. }
  6130. ],
  6131. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6132. "homepage": "http://phpseclib.sourceforge.net",
  6133. "keywords": [
  6134. "BigInteger",
  6135. "aes",
  6136. "asn.1",
  6137. "asn1",
  6138. "blowfish",
  6139. "crypto",
  6140. "cryptography",
  6141. "encryption",
  6142. "rsa",
  6143. "security",
  6144. "sftp",
  6145. "signature",
  6146. "signing",
  6147. "ssh",
  6148. "twofish",
  6149. "x.509",
  6150. "x509"
  6151. ],
  6152. "support": {
  6153. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6154. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  6155. },
  6156. "funding": [
  6157. {
  6158. "url": "https://github.com/terrafrost",
  6159. "type": "github"
  6160. },
  6161. {
  6162. "url": "https://www.patreon.com/phpseclib",
  6163. "type": "patreon"
  6164. },
  6165. {
  6166. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6167. "type": "tidelift"
  6168. }
  6169. ],
  6170. "time": "2024-12-14T21:12:59+00:00"
  6171. },
  6172. {
  6173. "name": "psr/cache",
  6174. "version": "3.0.0",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/php-fig/cache.git",
  6178. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6183. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6184. "shasum": ""
  6185. },
  6186. "require": {
  6187. "php": ">=8.0.0"
  6188. },
  6189. "type": "library",
  6190. "extra": {
  6191. "branch-alias": {
  6192. "dev-master": "1.0.x-dev"
  6193. }
  6194. },
  6195. "autoload": {
  6196. "psr-4": {
  6197. "Psr\\Cache\\": "src/"
  6198. }
  6199. },
  6200. "notification-url": "https://packagist.org/downloads/",
  6201. "license": [
  6202. "MIT"
  6203. ],
  6204. "authors": [
  6205. {
  6206. "name": "PHP-FIG",
  6207. "homepage": "https://www.php-fig.org/"
  6208. }
  6209. ],
  6210. "description": "Common interface for caching libraries",
  6211. "keywords": [
  6212. "cache",
  6213. "psr",
  6214. "psr-6"
  6215. ],
  6216. "support": {
  6217. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6218. },
  6219. "time": "2021-02-03T23:26:27+00:00"
  6220. },
  6221. {
  6222. "name": "psr/clock",
  6223. "version": "1.0.0",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/php-fig/clock.git",
  6227. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6232. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "php": "^7.0 || ^8.0"
  6237. },
  6238. "type": "library",
  6239. "autoload": {
  6240. "psr-4": {
  6241. "Psr\\Clock\\": "src/"
  6242. }
  6243. },
  6244. "notification-url": "https://packagist.org/downloads/",
  6245. "license": [
  6246. "MIT"
  6247. ],
  6248. "authors": [
  6249. {
  6250. "name": "PHP-FIG",
  6251. "homepage": "https://www.php-fig.org/"
  6252. }
  6253. ],
  6254. "description": "Common interface for reading the clock.",
  6255. "homepage": "https://github.com/php-fig/clock",
  6256. "keywords": [
  6257. "clock",
  6258. "now",
  6259. "psr",
  6260. "psr-20",
  6261. "time"
  6262. ],
  6263. "support": {
  6264. "issues": "https://github.com/php-fig/clock/issues",
  6265. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6266. },
  6267. "time": "2022-11-25T14:36:26+00:00"
  6268. },
  6269. {
  6270. "name": "psr/container",
  6271. "version": "2.0.2",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/php-fig/container.git",
  6275. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6280. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6281. "shasum": ""
  6282. },
  6283. "require": {
  6284. "php": ">=7.4.0"
  6285. },
  6286. "type": "library",
  6287. "extra": {
  6288. "branch-alias": {
  6289. "dev-master": "2.0.x-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Psr\\Container\\": "src/"
  6295. }
  6296. },
  6297. "notification-url": "https://packagist.org/downloads/",
  6298. "license": [
  6299. "MIT"
  6300. ],
  6301. "authors": [
  6302. {
  6303. "name": "PHP-FIG",
  6304. "homepage": "https://www.php-fig.org/"
  6305. }
  6306. ],
  6307. "description": "Common Container Interface (PHP FIG PSR-11)",
  6308. "homepage": "https://github.com/php-fig/container",
  6309. "keywords": [
  6310. "PSR-11",
  6311. "container",
  6312. "container-interface",
  6313. "container-interop",
  6314. "psr"
  6315. ],
  6316. "support": {
  6317. "issues": "https://github.com/php-fig/container/issues",
  6318. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6319. },
  6320. "time": "2021-11-05T16:47:00+00:00"
  6321. },
  6322. {
  6323. "name": "psr/event-dispatcher",
  6324. "version": "1.0.0",
  6325. "source": {
  6326. "type": "git",
  6327. "url": "https://github.com/php-fig/event-dispatcher.git",
  6328. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6329. },
  6330. "dist": {
  6331. "type": "zip",
  6332. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6333. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6334. "shasum": ""
  6335. },
  6336. "require": {
  6337. "php": ">=7.2.0"
  6338. },
  6339. "type": "library",
  6340. "extra": {
  6341. "branch-alias": {
  6342. "dev-master": "1.0.x-dev"
  6343. }
  6344. },
  6345. "autoload": {
  6346. "psr-4": {
  6347. "Psr\\EventDispatcher\\": "src/"
  6348. }
  6349. },
  6350. "notification-url": "https://packagist.org/downloads/",
  6351. "license": [
  6352. "MIT"
  6353. ],
  6354. "authors": [
  6355. {
  6356. "name": "PHP-FIG",
  6357. "homepage": "http://www.php-fig.org/"
  6358. }
  6359. ],
  6360. "description": "Standard interfaces for event handling.",
  6361. "keywords": [
  6362. "events",
  6363. "psr",
  6364. "psr-14"
  6365. ],
  6366. "support": {
  6367. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6368. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6369. },
  6370. "time": "2019-01-08T18:20:26+00:00"
  6371. },
  6372. {
  6373. "name": "psr/http-client",
  6374. "version": "1.0.3",
  6375. "source": {
  6376. "type": "git",
  6377. "url": "https://github.com/php-fig/http-client.git",
  6378. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6379. },
  6380. "dist": {
  6381. "type": "zip",
  6382. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6383. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6384. "shasum": ""
  6385. },
  6386. "require": {
  6387. "php": "^7.0 || ^8.0",
  6388. "psr/http-message": "^1.0 || ^2.0"
  6389. },
  6390. "type": "library",
  6391. "extra": {
  6392. "branch-alias": {
  6393. "dev-master": "1.0.x-dev"
  6394. }
  6395. },
  6396. "autoload": {
  6397. "psr-4": {
  6398. "Psr\\Http\\Client\\": "src/"
  6399. }
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "MIT"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "PHP-FIG",
  6408. "homepage": "https://www.php-fig.org/"
  6409. }
  6410. ],
  6411. "description": "Common interface for HTTP clients",
  6412. "homepage": "https://github.com/php-fig/http-client",
  6413. "keywords": [
  6414. "http",
  6415. "http-client",
  6416. "psr",
  6417. "psr-18"
  6418. ],
  6419. "support": {
  6420. "source": "https://github.com/php-fig/http-client"
  6421. },
  6422. "time": "2023-09-23T14:17:50+00:00"
  6423. },
  6424. {
  6425. "name": "psr/http-factory",
  6426. "version": "1.1.0",
  6427. "source": {
  6428. "type": "git",
  6429. "url": "https://github.com/php-fig/http-factory.git",
  6430. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6431. },
  6432. "dist": {
  6433. "type": "zip",
  6434. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6435. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6436. "shasum": ""
  6437. },
  6438. "require": {
  6439. "php": ">=7.1",
  6440. "psr/http-message": "^1.0 || ^2.0"
  6441. },
  6442. "type": "library",
  6443. "extra": {
  6444. "branch-alias": {
  6445. "dev-master": "1.0.x-dev"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "psr-4": {
  6450. "Psr\\Http\\Message\\": "src/"
  6451. }
  6452. },
  6453. "notification-url": "https://packagist.org/downloads/",
  6454. "license": [
  6455. "MIT"
  6456. ],
  6457. "authors": [
  6458. {
  6459. "name": "PHP-FIG",
  6460. "homepage": "https://www.php-fig.org/"
  6461. }
  6462. ],
  6463. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6464. "keywords": [
  6465. "factory",
  6466. "http",
  6467. "message",
  6468. "psr",
  6469. "psr-17",
  6470. "psr-7",
  6471. "request",
  6472. "response"
  6473. ],
  6474. "support": {
  6475. "source": "https://github.com/php-fig/http-factory"
  6476. },
  6477. "time": "2024-04-15T12:06:14+00:00"
  6478. },
  6479. {
  6480. "name": "psr/http-message",
  6481. "version": "2.0",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/php-fig/http-message.git",
  6485. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6490. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": "^7.2 || ^8.0"
  6495. },
  6496. "type": "library",
  6497. "extra": {
  6498. "branch-alias": {
  6499. "dev-master": "2.0.x-dev"
  6500. }
  6501. },
  6502. "autoload": {
  6503. "psr-4": {
  6504. "Psr\\Http\\Message\\": "src/"
  6505. }
  6506. },
  6507. "notification-url": "https://packagist.org/downloads/",
  6508. "license": [
  6509. "MIT"
  6510. ],
  6511. "authors": [
  6512. {
  6513. "name": "PHP-FIG",
  6514. "homepage": "https://www.php-fig.org/"
  6515. }
  6516. ],
  6517. "description": "Common interface for HTTP messages",
  6518. "homepage": "https://github.com/php-fig/http-message",
  6519. "keywords": [
  6520. "http",
  6521. "http-message",
  6522. "psr",
  6523. "psr-7",
  6524. "request",
  6525. "response"
  6526. ],
  6527. "support": {
  6528. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6529. },
  6530. "time": "2023-04-04T09:54:51+00:00"
  6531. },
  6532. {
  6533. "name": "psr/http-server-handler",
  6534. "version": "1.0.2",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/php-fig/http-server-handler.git",
  6538. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6543. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6544. "shasum": ""
  6545. },
  6546. "require": {
  6547. "php": ">=7.0",
  6548. "psr/http-message": "^1.0 || ^2.0"
  6549. },
  6550. "type": "library",
  6551. "extra": {
  6552. "branch-alias": {
  6553. "dev-master": "1.0.x-dev"
  6554. }
  6555. },
  6556. "autoload": {
  6557. "psr-4": {
  6558. "Psr\\Http\\Server\\": "src/"
  6559. }
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "MIT"
  6564. ],
  6565. "authors": [
  6566. {
  6567. "name": "PHP-FIG",
  6568. "homepage": "https://www.php-fig.org/"
  6569. }
  6570. ],
  6571. "description": "Common interface for HTTP server-side request handler",
  6572. "keywords": [
  6573. "handler",
  6574. "http",
  6575. "http-interop",
  6576. "psr",
  6577. "psr-15",
  6578. "psr-7",
  6579. "request",
  6580. "response",
  6581. "server"
  6582. ],
  6583. "support": {
  6584. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6585. },
  6586. "time": "2023-04-10T20:06:20+00:00"
  6587. },
  6588. {
  6589. "name": "psr/http-server-middleware",
  6590. "version": "1.0.2",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/php-fig/http-server-middleware.git",
  6594. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6599. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6600. "shasum": ""
  6601. },
  6602. "require": {
  6603. "php": ">=7.0",
  6604. "psr/http-message": "^1.0 || ^2.0",
  6605. "psr/http-server-handler": "^1.0"
  6606. },
  6607. "type": "library",
  6608. "extra": {
  6609. "branch-alias": {
  6610. "dev-master": "1.0.x-dev"
  6611. }
  6612. },
  6613. "autoload": {
  6614. "psr-4": {
  6615. "Psr\\Http\\Server\\": "src/"
  6616. }
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "MIT"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "PHP-FIG",
  6625. "homepage": "https://www.php-fig.org/"
  6626. }
  6627. ],
  6628. "description": "Common interface for HTTP server-side middleware",
  6629. "keywords": [
  6630. "http",
  6631. "http-interop",
  6632. "middleware",
  6633. "psr",
  6634. "psr-15",
  6635. "psr-7",
  6636. "request",
  6637. "response"
  6638. ],
  6639. "support": {
  6640. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6641. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6642. },
  6643. "time": "2023-04-11T06:14:47+00:00"
  6644. },
  6645. {
  6646. "name": "psr/log",
  6647. "version": "3.0.2",
  6648. "source": {
  6649. "type": "git",
  6650. "url": "https://github.com/php-fig/log.git",
  6651. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6652. },
  6653. "dist": {
  6654. "type": "zip",
  6655. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6656. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6657. "shasum": ""
  6658. },
  6659. "require": {
  6660. "php": ">=8.0.0"
  6661. },
  6662. "type": "library",
  6663. "extra": {
  6664. "branch-alias": {
  6665. "dev-master": "3.x-dev"
  6666. }
  6667. },
  6668. "autoload": {
  6669. "psr-4": {
  6670. "Psr\\Log\\": "src"
  6671. }
  6672. },
  6673. "notification-url": "https://packagist.org/downloads/",
  6674. "license": [
  6675. "MIT"
  6676. ],
  6677. "authors": [
  6678. {
  6679. "name": "PHP-FIG",
  6680. "homepage": "https://www.php-fig.org/"
  6681. }
  6682. ],
  6683. "description": "Common interface for logging libraries",
  6684. "homepage": "https://github.com/php-fig/log",
  6685. "keywords": [
  6686. "log",
  6687. "psr",
  6688. "psr-3"
  6689. ],
  6690. "support": {
  6691. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6692. },
  6693. "time": "2024-09-11T13:17:53+00:00"
  6694. },
  6695. {
  6696. "name": "psr/simple-cache",
  6697. "version": "3.0.0",
  6698. "source": {
  6699. "type": "git",
  6700. "url": "https://github.com/php-fig/simple-cache.git",
  6701. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6702. },
  6703. "dist": {
  6704. "type": "zip",
  6705. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6706. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6707. "shasum": ""
  6708. },
  6709. "require": {
  6710. "php": ">=8.0.0"
  6711. },
  6712. "type": "library",
  6713. "extra": {
  6714. "branch-alias": {
  6715. "dev-master": "3.0.x-dev"
  6716. }
  6717. },
  6718. "autoload": {
  6719. "psr-4": {
  6720. "Psr\\SimpleCache\\": "src/"
  6721. }
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "PHP-FIG",
  6730. "homepage": "https://www.php-fig.org/"
  6731. }
  6732. ],
  6733. "description": "Common interfaces for simple caching",
  6734. "keywords": [
  6735. "cache",
  6736. "caching",
  6737. "psr",
  6738. "psr-16",
  6739. "simple-cache"
  6740. ],
  6741. "support": {
  6742. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6743. },
  6744. "time": "2021-10-29T13:26:27+00:00"
  6745. },
  6746. {
  6747. "name": "ralouphie/getallheaders",
  6748. "version": "3.0.3",
  6749. "source": {
  6750. "type": "git",
  6751. "url": "https://github.com/ralouphie/getallheaders.git",
  6752. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6753. },
  6754. "dist": {
  6755. "type": "zip",
  6756. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6757. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6758. "shasum": ""
  6759. },
  6760. "require": {
  6761. "php": ">=5.6"
  6762. },
  6763. "require-dev": {
  6764. "php-coveralls/php-coveralls": "^2.1",
  6765. "phpunit/phpunit": "^5 || ^6.5"
  6766. },
  6767. "type": "library",
  6768. "autoload": {
  6769. "files": [
  6770. "src/getallheaders.php"
  6771. ]
  6772. },
  6773. "notification-url": "https://packagist.org/downloads/",
  6774. "license": [
  6775. "MIT"
  6776. ],
  6777. "authors": [
  6778. {
  6779. "name": "Ralph Khattar",
  6780. "email": "ralph.khattar@gmail.com"
  6781. }
  6782. ],
  6783. "description": "A polyfill for getallheaders.",
  6784. "support": {
  6785. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6786. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6787. },
  6788. "time": "2019-03-08T08:55:37+00:00"
  6789. },
  6790. {
  6791. "name": "stella-maris/clock",
  6792. "version": "0.1.7",
  6793. "source": {
  6794. "type": "git",
  6795. "url": "https://github.com/stella-maris-solutions/clock.git",
  6796. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6797. },
  6798. "dist": {
  6799. "type": "zip",
  6800. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6801. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6802. "shasum": ""
  6803. },
  6804. "require": {
  6805. "php": "^7.0|^8.0",
  6806. "psr/clock": "^1.0"
  6807. },
  6808. "type": "library",
  6809. "autoload": {
  6810. "psr-4": {
  6811. "StellaMaris\\Clock\\": "src"
  6812. }
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Andreas Heigl",
  6821. "role": "Maintainer"
  6822. }
  6823. ],
  6824. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6825. "homepage": "https://gitlab.com/stella-maris/clock",
  6826. "keywords": [
  6827. "clock",
  6828. "datetime",
  6829. "point in time",
  6830. "psr20"
  6831. ],
  6832. "support": {
  6833. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6834. },
  6835. "time": "2022-11-25T16:15:06+00:00"
  6836. },
  6837. {
  6838. "name": "swow/psr7-plus",
  6839. "version": "v1.1.2",
  6840. "source": {
  6841. "type": "git",
  6842. "url": "https://github.com/swow/psr7-plus.git",
  6843. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6844. },
  6845. "dist": {
  6846. "type": "zip",
  6847. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6848. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6849. "shasum": ""
  6850. },
  6851. "require": {
  6852. "php": ">=8.0",
  6853. "psr/http-client": "^1.0",
  6854. "psr/http-factory": "^1.0",
  6855. "psr/http-message": "^1.1|^2.0"
  6856. },
  6857. "type": "library",
  6858. "autoload": {
  6859. "psr-4": {
  6860. "Swow\\Psr7\\Message\\": "src/Message/"
  6861. }
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "Apache-2.0"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "twose",
  6870. "email": "twosee@php.net"
  6871. }
  6872. ],
  6873. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6874. "keywords": [
  6875. "http",
  6876. "psr17",
  6877. "psr7",
  6878. "swow",
  6879. "websocket"
  6880. ],
  6881. "support": {
  6882. "issues": "https://github.com/swow/swow",
  6883. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6884. },
  6885. "time": "2023-06-15T09:18:11+00:00"
  6886. },
  6887. {
  6888. "name": "symfony/console",
  6889. "version": "v6.4.17",
  6890. "source": {
  6891. "type": "git",
  6892. "url": "https://github.com/symfony/console.git",
  6893. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04"
  6894. },
  6895. "dist": {
  6896. "type": "zip",
  6897. "url": "https://api.github.com/repos/symfony/console/zipball/799445db3f15768ecc382ac5699e6da0520a0a04",
  6898. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04",
  6899. "shasum": ""
  6900. },
  6901. "require": {
  6902. "php": ">=8.1",
  6903. "symfony/deprecation-contracts": "^2.5|^3",
  6904. "symfony/polyfill-mbstring": "~1.0",
  6905. "symfony/service-contracts": "^2.5|^3",
  6906. "symfony/string": "^5.4|^6.0|^7.0"
  6907. },
  6908. "conflict": {
  6909. "symfony/dependency-injection": "<5.4",
  6910. "symfony/dotenv": "<5.4",
  6911. "symfony/event-dispatcher": "<5.4",
  6912. "symfony/lock": "<5.4",
  6913. "symfony/process": "<5.4"
  6914. },
  6915. "provide": {
  6916. "psr/log-implementation": "1.0|2.0|3.0"
  6917. },
  6918. "require-dev": {
  6919. "psr/log": "^1|^2|^3",
  6920. "symfony/config": "^5.4|^6.0|^7.0",
  6921. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6922. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6923. "symfony/http-foundation": "^6.4|^7.0",
  6924. "symfony/http-kernel": "^6.4|^7.0",
  6925. "symfony/lock": "^5.4|^6.0|^7.0",
  6926. "symfony/messenger": "^5.4|^6.0|^7.0",
  6927. "symfony/process": "^5.4|^6.0|^7.0",
  6928. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6929. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6930. },
  6931. "type": "library",
  6932. "autoload": {
  6933. "psr-4": {
  6934. "Symfony\\Component\\Console\\": ""
  6935. },
  6936. "exclude-from-classmap": [
  6937. "/Tests/"
  6938. ]
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "MIT"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Fabien Potencier",
  6947. "email": "fabien@symfony.com"
  6948. },
  6949. {
  6950. "name": "Symfony Community",
  6951. "homepage": "https://symfony.com/contributors"
  6952. }
  6953. ],
  6954. "description": "Eases the creation of beautiful and testable command line interfaces",
  6955. "homepage": "https://symfony.com",
  6956. "keywords": [
  6957. "cli",
  6958. "command-line",
  6959. "console",
  6960. "terminal"
  6961. ],
  6962. "support": {
  6963. "source": "https://github.com/symfony/console/tree/v6.4.17"
  6964. },
  6965. "funding": [
  6966. {
  6967. "url": "https://symfony.com/sponsor",
  6968. "type": "custom"
  6969. },
  6970. {
  6971. "url": "https://github.com/fabpot",
  6972. "type": "github"
  6973. },
  6974. {
  6975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6976. "type": "tidelift"
  6977. }
  6978. ],
  6979. "time": "2024-12-07T12:07:30+00:00"
  6980. },
  6981. {
  6982. "name": "symfony/deprecation-contracts",
  6983. "version": "v3.5.1",
  6984. "source": {
  6985. "type": "git",
  6986. "url": "https://github.com/symfony/deprecation-contracts.git",
  6987. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6988. },
  6989. "dist": {
  6990. "type": "zip",
  6991. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6992. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6993. "shasum": ""
  6994. },
  6995. "require": {
  6996. "php": ">=8.1"
  6997. },
  6998. "type": "library",
  6999. "extra": {
  7000. "thanks": {
  7001. "url": "https://github.com/symfony/contracts",
  7002. "name": "symfony/contracts"
  7003. },
  7004. "branch-alias": {
  7005. "dev-main": "3.5-dev"
  7006. }
  7007. },
  7008. "autoload": {
  7009. "files": [
  7010. "function.php"
  7011. ]
  7012. },
  7013. "notification-url": "https://packagist.org/downloads/",
  7014. "license": [
  7015. "MIT"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "Nicolas Grekas",
  7020. "email": "p@tchwork.com"
  7021. },
  7022. {
  7023. "name": "Symfony Community",
  7024. "homepage": "https://symfony.com/contributors"
  7025. }
  7026. ],
  7027. "description": "A generic function and convention to trigger deprecation notices",
  7028. "homepage": "https://symfony.com",
  7029. "support": {
  7030. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7031. },
  7032. "funding": [
  7033. {
  7034. "url": "https://symfony.com/sponsor",
  7035. "type": "custom"
  7036. },
  7037. {
  7038. "url": "https://github.com/fabpot",
  7039. "type": "github"
  7040. },
  7041. {
  7042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7043. "type": "tidelift"
  7044. }
  7045. ],
  7046. "time": "2024-09-25T14:20:29+00:00"
  7047. },
  7048. {
  7049. "name": "symfony/finder",
  7050. "version": "v6.4.17",
  7051. "source": {
  7052. "type": "git",
  7053. "url": "https://github.com/symfony/finder.git",
  7054. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  7055. },
  7056. "dist": {
  7057. "type": "zip",
  7058. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7059. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7060. "shasum": ""
  7061. },
  7062. "require": {
  7063. "php": ">=8.1"
  7064. },
  7065. "require-dev": {
  7066. "symfony/filesystem": "^6.0|^7.0"
  7067. },
  7068. "type": "library",
  7069. "autoload": {
  7070. "psr-4": {
  7071. "Symfony\\Component\\Finder\\": ""
  7072. },
  7073. "exclude-from-classmap": [
  7074. "/Tests/"
  7075. ]
  7076. },
  7077. "notification-url": "https://packagist.org/downloads/",
  7078. "license": [
  7079. "MIT"
  7080. ],
  7081. "authors": [
  7082. {
  7083. "name": "Fabien Potencier",
  7084. "email": "fabien@symfony.com"
  7085. },
  7086. {
  7087. "name": "Symfony Community",
  7088. "homepage": "https://symfony.com/contributors"
  7089. }
  7090. ],
  7091. "description": "Finds files and directories via an intuitive fluent interface",
  7092. "homepage": "https://symfony.com",
  7093. "support": {
  7094. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://symfony.com/sponsor",
  7099. "type": "custom"
  7100. },
  7101. {
  7102. "url": "https://github.com/fabpot",
  7103. "type": "github"
  7104. },
  7105. {
  7106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7107. "type": "tidelift"
  7108. }
  7109. ],
  7110. "time": "2024-12-29T13:51:37+00:00"
  7111. },
  7112. {
  7113. "name": "symfony/polyfill-ctype",
  7114. "version": "v1.31.0",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/symfony/polyfill-ctype.git",
  7118. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7123. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "php": ">=7.2"
  7128. },
  7129. "provide": {
  7130. "ext-ctype": "*"
  7131. },
  7132. "suggest": {
  7133. "ext-ctype": "For best performance"
  7134. },
  7135. "type": "library",
  7136. "extra": {
  7137. "thanks": {
  7138. "url": "https://github.com/symfony/polyfill",
  7139. "name": "symfony/polyfill"
  7140. }
  7141. },
  7142. "autoload": {
  7143. "files": [
  7144. "bootstrap.php"
  7145. ],
  7146. "psr-4": {
  7147. "Symfony\\Polyfill\\Ctype\\": ""
  7148. }
  7149. },
  7150. "notification-url": "https://packagist.org/downloads/",
  7151. "license": [
  7152. "MIT"
  7153. ],
  7154. "authors": [
  7155. {
  7156. "name": "Gert de Pagter",
  7157. "email": "BackEndTea@gmail.com"
  7158. },
  7159. {
  7160. "name": "Symfony Community",
  7161. "homepage": "https://symfony.com/contributors"
  7162. }
  7163. ],
  7164. "description": "Symfony polyfill for ctype functions",
  7165. "homepage": "https://symfony.com",
  7166. "keywords": [
  7167. "compatibility",
  7168. "ctype",
  7169. "polyfill",
  7170. "portable"
  7171. ],
  7172. "support": {
  7173. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7174. },
  7175. "funding": [
  7176. {
  7177. "url": "https://symfony.com/sponsor",
  7178. "type": "custom"
  7179. },
  7180. {
  7181. "url": "https://github.com/fabpot",
  7182. "type": "github"
  7183. },
  7184. {
  7185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7186. "type": "tidelift"
  7187. }
  7188. ],
  7189. "time": "2024-09-09T11:45:10+00:00"
  7190. },
  7191. {
  7192. "name": "symfony/polyfill-intl-grapheme",
  7193. "version": "v1.31.0",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7197. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7202. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "php": ">=7.2"
  7207. },
  7208. "suggest": {
  7209. "ext-intl": "For best performance"
  7210. },
  7211. "type": "library",
  7212. "extra": {
  7213. "thanks": {
  7214. "url": "https://github.com/symfony/polyfill",
  7215. "name": "symfony/polyfill"
  7216. }
  7217. },
  7218. "autoload": {
  7219. "files": [
  7220. "bootstrap.php"
  7221. ],
  7222. "psr-4": {
  7223. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7224. }
  7225. },
  7226. "notification-url": "https://packagist.org/downloads/",
  7227. "license": [
  7228. "MIT"
  7229. ],
  7230. "authors": [
  7231. {
  7232. "name": "Nicolas Grekas",
  7233. "email": "p@tchwork.com"
  7234. },
  7235. {
  7236. "name": "Symfony Community",
  7237. "homepage": "https://symfony.com/contributors"
  7238. }
  7239. ],
  7240. "description": "Symfony polyfill for intl's grapheme_* functions",
  7241. "homepage": "https://symfony.com",
  7242. "keywords": [
  7243. "compatibility",
  7244. "grapheme",
  7245. "intl",
  7246. "polyfill",
  7247. "portable",
  7248. "shim"
  7249. ],
  7250. "support": {
  7251. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7252. },
  7253. "funding": [
  7254. {
  7255. "url": "https://symfony.com/sponsor",
  7256. "type": "custom"
  7257. },
  7258. {
  7259. "url": "https://github.com/fabpot",
  7260. "type": "github"
  7261. },
  7262. {
  7263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7264. "type": "tidelift"
  7265. }
  7266. ],
  7267. "time": "2024-09-09T11:45:10+00:00"
  7268. },
  7269. {
  7270. "name": "symfony/polyfill-intl-idn",
  7271. "version": "v1.31.0",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7275. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7280. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7281. "shasum": ""
  7282. },
  7283. "require": {
  7284. "php": ">=7.2",
  7285. "symfony/polyfill-intl-normalizer": "^1.10"
  7286. },
  7287. "suggest": {
  7288. "ext-intl": "For best performance"
  7289. },
  7290. "type": "library",
  7291. "extra": {
  7292. "thanks": {
  7293. "url": "https://github.com/symfony/polyfill",
  7294. "name": "symfony/polyfill"
  7295. }
  7296. },
  7297. "autoload": {
  7298. "files": [
  7299. "bootstrap.php"
  7300. ],
  7301. "psr-4": {
  7302. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7303. }
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "MIT"
  7308. ],
  7309. "authors": [
  7310. {
  7311. "name": "Laurent Bassin",
  7312. "email": "laurent@bassin.info"
  7313. },
  7314. {
  7315. "name": "Trevor Rowbotham",
  7316. "email": "trevor.rowbotham@pm.me"
  7317. },
  7318. {
  7319. "name": "Symfony Community",
  7320. "homepage": "https://symfony.com/contributors"
  7321. }
  7322. ],
  7323. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7324. "homepage": "https://symfony.com",
  7325. "keywords": [
  7326. "compatibility",
  7327. "idn",
  7328. "intl",
  7329. "polyfill",
  7330. "portable",
  7331. "shim"
  7332. ],
  7333. "support": {
  7334. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7335. },
  7336. "funding": [
  7337. {
  7338. "url": "https://symfony.com/sponsor",
  7339. "type": "custom"
  7340. },
  7341. {
  7342. "url": "https://github.com/fabpot",
  7343. "type": "github"
  7344. },
  7345. {
  7346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7347. "type": "tidelift"
  7348. }
  7349. ],
  7350. "time": "2024-09-09T11:45:10+00:00"
  7351. },
  7352. {
  7353. "name": "symfony/polyfill-intl-normalizer",
  7354. "version": "v1.31.0",
  7355. "source": {
  7356. "type": "git",
  7357. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7358. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7359. },
  7360. "dist": {
  7361. "type": "zip",
  7362. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7363. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7364. "shasum": ""
  7365. },
  7366. "require": {
  7367. "php": ">=7.2"
  7368. },
  7369. "suggest": {
  7370. "ext-intl": "For best performance"
  7371. },
  7372. "type": "library",
  7373. "extra": {
  7374. "thanks": {
  7375. "url": "https://github.com/symfony/polyfill",
  7376. "name": "symfony/polyfill"
  7377. }
  7378. },
  7379. "autoload": {
  7380. "files": [
  7381. "bootstrap.php"
  7382. ],
  7383. "psr-4": {
  7384. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7385. },
  7386. "classmap": [
  7387. "Resources/stubs"
  7388. ]
  7389. },
  7390. "notification-url": "https://packagist.org/downloads/",
  7391. "license": [
  7392. "MIT"
  7393. ],
  7394. "authors": [
  7395. {
  7396. "name": "Nicolas Grekas",
  7397. "email": "p@tchwork.com"
  7398. },
  7399. {
  7400. "name": "Symfony Community",
  7401. "homepage": "https://symfony.com/contributors"
  7402. }
  7403. ],
  7404. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7405. "homepage": "https://symfony.com",
  7406. "keywords": [
  7407. "compatibility",
  7408. "intl",
  7409. "normalizer",
  7410. "polyfill",
  7411. "portable",
  7412. "shim"
  7413. ],
  7414. "support": {
  7415. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7416. },
  7417. "funding": [
  7418. {
  7419. "url": "https://symfony.com/sponsor",
  7420. "type": "custom"
  7421. },
  7422. {
  7423. "url": "https://github.com/fabpot",
  7424. "type": "github"
  7425. },
  7426. {
  7427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7428. "type": "tidelift"
  7429. }
  7430. ],
  7431. "time": "2024-09-09T11:45:10+00:00"
  7432. },
  7433. {
  7434. "name": "symfony/polyfill-mbstring",
  7435. "version": "v1.31.0",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7439. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7444. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7445. "shasum": ""
  7446. },
  7447. "require": {
  7448. "php": ">=7.2"
  7449. },
  7450. "provide": {
  7451. "ext-mbstring": "*"
  7452. },
  7453. "suggest": {
  7454. "ext-mbstring": "For best performance"
  7455. },
  7456. "type": "library",
  7457. "extra": {
  7458. "thanks": {
  7459. "url": "https://github.com/symfony/polyfill",
  7460. "name": "symfony/polyfill"
  7461. }
  7462. },
  7463. "autoload": {
  7464. "files": [
  7465. "bootstrap.php"
  7466. ],
  7467. "psr-4": {
  7468. "Symfony\\Polyfill\\Mbstring\\": ""
  7469. }
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Nicolas Grekas",
  7478. "email": "p@tchwork.com"
  7479. },
  7480. {
  7481. "name": "Symfony Community",
  7482. "homepage": "https://symfony.com/contributors"
  7483. }
  7484. ],
  7485. "description": "Symfony polyfill for the Mbstring extension",
  7486. "homepage": "https://symfony.com",
  7487. "keywords": [
  7488. "compatibility",
  7489. "mbstring",
  7490. "polyfill",
  7491. "portable",
  7492. "shim"
  7493. ],
  7494. "support": {
  7495. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7496. },
  7497. "funding": [
  7498. {
  7499. "url": "https://symfony.com/sponsor",
  7500. "type": "custom"
  7501. },
  7502. {
  7503. "url": "https://github.com/fabpot",
  7504. "type": "github"
  7505. },
  7506. {
  7507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7508. "type": "tidelift"
  7509. }
  7510. ],
  7511. "time": "2024-09-09T11:45:10+00:00"
  7512. },
  7513. {
  7514. "name": "symfony/polyfill-php80",
  7515. "version": "v1.31.0",
  7516. "source": {
  7517. "type": "git",
  7518. "url": "https://github.com/symfony/polyfill-php80.git",
  7519. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7520. },
  7521. "dist": {
  7522. "type": "zip",
  7523. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7524. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7525. "shasum": ""
  7526. },
  7527. "require": {
  7528. "php": ">=7.2"
  7529. },
  7530. "type": "library",
  7531. "extra": {
  7532. "thanks": {
  7533. "url": "https://github.com/symfony/polyfill",
  7534. "name": "symfony/polyfill"
  7535. }
  7536. },
  7537. "autoload": {
  7538. "files": [
  7539. "bootstrap.php"
  7540. ],
  7541. "psr-4": {
  7542. "Symfony\\Polyfill\\Php80\\": ""
  7543. },
  7544. "classmap": [
  7545. "Resources/stubs"
  7546. ]
  7547. },
  7548. "notification-url": "https://packagist.org/downloads/",
  7549. "license": [
  7550. "MIT"
  7551. ],
  7552. "authors": [
  7553. {
  7554. "name": "Ion Bazan",
  7555. "email": "ion.bazan@gmail.com"
  7556. },
  7557. {
  7558. "name": "Nicolas Grekas",
  7559. "email": "p@tchwork.com"
  7560. },
  7561. {
  7562. "name": "Symfony Community",
  7563. "homepage": "https://symfony.com/contributors"
  7564. }
  7565. ],
  7566. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7567. "homepage": "https://symfony.com",
  7568. "keywords": [
  7569. "compatibility",
  7570. "polyfill",
  7571. "portable",
  7572. "shim"
  7573. ],
  7574. "support": {
  7575. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7576. },
  7577. "funding": [
  7578. {
  7579. "url": "https://symfony.com/sponsor",
  7580. "type": "custom"
  7581. },
  7582. {
  7583. "url": "https://github.com/fabpot",
  7584. "type": "github"
  7585. },
  7586. {
  7587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7588. "type": "tidelift"
  7589. }
  7590. ],
  7591. "time": "2024-09-09T11:45:10+00:00"
  7592. },
  7593. {
  7594. "name": "symfony/service-contracts",
  7595. "version": "v3.5.1",
  7596. "source": {
  7597. "type": "git",
  7598. "url": "https://github.com/symfony/service-contracts.git",
  7599. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7600. },
  7601. "dist": {
  7602. "type": "zip",
  7603. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7604. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7605. "shasum": ""
  7606. },
  7607. "require": {
  7608. "php": ">=8.1",
  7609. "psr/container": "^1.1|^2.0",
  7610. "symfony/deprecation-contracts": "^2.5|^3"
  7611. },
  7612. "conflict": {
  7613. "ext-psr": "<1.1|>=2"
  7614. },
  7615. "type": "library",
  7616. "extra": {
  7617. "thanks": {
  7618. "url": "https://github.com/symfony/contracts",
  7619. "name": "symfony/contracts"
  7620. },
  7621. "branch-alias": {
  7622. "dev-main": "3.5-dev"
  7623. }
  7624. },
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Symfony\\Contracts\\Service\\": ""
  7628. },
  7629. "exclude-from-classmap": [
  7630. "/Test/"
  7631. ]
  7632. },
  7633. "notification-url": "https://packagist.org/downloads/",
  7634. "license": [
  7635. "MIT"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Nicolas Grekas",
  7640. "email": "p@tchwork.com"
  7641. },
  7642. {
  7643. "name": "Symfony Community",
  7644. "homepage": "https://symfony.com/contributors"
  7645. }
  7646. ],
  7647. "description": "Generic abstractions related to writing services",
  7648. "homepage": "https://symfony.com",
  7649. "keywords": [
  7650. "abstractions",
  7651. "contracts",
  7652. "decoupling",
  7653. "interfaces",
  7654. "interoperability",
  7655. "standards"
  7656. ],
  7657. "support": {
  7658. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7659. },
  7660. "funding": [
  7661. {
  7662. "url": "https://symfony.com/sponsor",
  7663. "type": "custom"
  7664. },
  7665. {
  7666. "url": "https://github.com/fabpot",
  7667. "type": "github"
  7668. },
  7669. {
  7670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7671. "type": "tidelift"
  7672. }
  7673. ],
  7674. "time": "2024-09-25T14:20:29+00:00"
  7675. },
  7676. {
  7677. "name": "symfony/string",
  7678. "version": "v6.4.15",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/symfony/string.git",
  7682. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7687. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7688. "shasum": ""
  7689. },
  7690. "require": {
  7691. "php": ">=8.1",
  7692. "symfony/polyfill-ctype": "~1.8",
  7693. "symfony/polyfill-intl-grapheme": "~1.0",
  7694. "symfony/polyfill-intl-normalizer": "~1.0",
  7695. "symfony/polyfill-mbstring": "~1.0"
  7696. },
  7697. "conflict": {
  7698. "symfony/translation-contracts": "<2.5"
  7699. },
  7700. "require-dev": {
  7701. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7702. "symfony/http-client": "^5.4|^6.0|^7.0",
  7703. "symfony/intl": "^6.2|^7.0",
  7704. "symfony/translation-contracts": "^2.5|^3.0",
  7705. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7706. },
  7707. "type": "library",
  7708. "autoload": {
  7709. "files": [
  7710. "Resources/functions.php"
  7711. ],
  7712. "psr-4": {
  7713. "Symfony\\Component\\String\\": ""
  7714. },
  7715. "exclude-from-classmap": [
  7716. "/Tests/"
  7717. ]
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "MIT"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Nicolas Grekas",
  7726. "email": "p@tchwork.com"
  7727. },
  7728. {
  7729. "name": "Symfony Community",
  7730. "homepage": "https://symfony.com/contributors"
  7731. }
  7732. ],
  7733. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7734. "homepage": "https://symfony.com",
  7735. "keywords": [
  7736. "grapheme",
  7737. "i18n",
  7738. "string",
  7739. "unicode",
  7740. "utf-8",
  7741. "utf8"
  7742. ],
  7743. "support": {
  7744. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7745. },
  7746. "funding": [
  7747. {
  7748. "url": "https://symfony.com/sponsor",
  7749. "type": "custom"
  7750. },
  7751. {
  7752. "url": "https://github.com/fabpot",
  7753. "type": "github"
  7754. },
  7755. {
  7756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7757. "type": "tidelift"
  7758. }
  7759. ],
  7760. "time": "2024-11-13T13:31:12+00:00"
  7761. },
  7762. {
  7763. "name": "symfony/translation",
  7764. "version": "v6.4.13",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/symfony/translation.git",
  7768. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7773. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "php": ">=8.1",
  7778. "symfony/deprecation-contracts": "^2.5|^3",
  7779. "symfony/polyfill-mbstring": "~1.0",
  7780. "symfony/translation-contracts": "^2.5|^3.0"
  7781. },
  7782. "conflict": {
  7783. "symfony/config": "<5.4",
  7784. "symfony/console": "<5.4",
  7785. "symfony/dependency-injection": "<5.4",
  7786. "symfony/http-client-contracts": "<2.5",
  7787. "symfony/http-kernel": "<5.4",
  7788. "symfony/service-contracts": "<2.5",
  7789. "symfony/twig-bundle": "<5.4",
  7790. "symfony/yaml": "<5.4"
  7791. },
  7792. "provide": {
  7793. "symfony/translation-implementation": "2.3|3.0"
  7794. },
  7795. "require-dev": {
  7796. "nikic/php-parser": "^4.18|^5.0",
  7797. "psr/log": "^1|^2|^3",
  7798. "symfony/config": "^5.4|^6.0|^7.0",
  7799. "symfony/console": "^5.4|^6.0|^7.0",
  7800. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7801. "symfony/finder": "^5.4|^6.0|^7.0",
  7802. "symfony/http-client-contracts": "^2.5|^3.0",
  7803. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7804. "symfony/intl": "^5.4|^6.0|^7.0",
  7805. "symfony/polyfill-intl-icu": "^1.21",
  7806. "symfony/routing": "^5.4|^6.0|^7.0",
  7807. "symfony/service-contracts": "^2.5|^3",
  7808. "symfony/yaml": "^5.4|^6.0|^7.0"
  7809. },
  7810. "type": "library",
  7811. "autoload": {
  7812. "files": [
  7813. "Resources/functions.php"
  7814. ],
  7815. "psr-4": {
  7816. "Symfony\\Component\\Translation\\": ""
  7817. },
  7818. "exclude-from-classmap": [
  7819. "/Tests/"
  7820. ]
  7821. },
  7822. "notification-url": "https://packagist.org/downloads/",
  7823. "license": [
  7824. "MIT"
  7825. ],
  7826. "authors": [
  7827. {
  7828. "name": "Fabien Potencier",
  7829. "email": "fabien@symfony.com"
  7830. },
  7831. {
  7832. "name": "Symfony Community",
  7833. "homepage": "https://symfony.com/contributors"
  7834. }
  7835. ],
  7836. "description": "Provides tools to internationalize your application",
  7837. "homepage": "https://symfony.com",
  7838. "support": {
  7839. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7840. },
  7841. "funding": [
  7842. {
  7843. "url": "https://symfony.com/sponsor",
  7844. "type": "custom"
  7845. },
  7846. {
  7847. "url": "https://github.com/fabpot",
  7848. "type": "github"
  7849. },
  7850. {
  7851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7852. "type": "tidelift"
  7853. }
  7854. ],
  7855. "time": "2024-09-27T18:14:25+00:00"
  7856. },
  7857. {
  7858. "name": "symfony/translation-contracts",
  7859. "version": "v3.5.1",
  7860. "source": {
  7861. "type": "git",
  7862. "url": "https://github.com/symfony/translation-contracts.git",
  7863. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7864. },
  7865. "dist": {
  7866. "type": "zip",
  7867. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7868. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7869. "shasum": ""
  7870. },
  7871. "require": {
  7872. "php": ">=8.1"
  7873. },
  7874. "type": "library",
  7875. "extra": {
  7876. "thanks": {
  7877. "url": "https://github.com/symfony/contracts",
  7878. "name": "symfony/contracts"
  7879. },
  7880. "branch-alias": {
  7881. "dev-main": "3.5-dev"
  7882. }
  7883. },
  7884. "autoload": {
  7885. "psr-4": {
  7886. "Symfony\\Contracts\\Translation\\": ""
  7887. },
  7888. "exclude-from-classmap": [
  7889. "/Test/"
  7890. ]
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "MIT"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Nicolas Grekas",
  7899. "email": "p@tchwork.com"
  7900. },
  7901. {
  7902. "name": "Symfony Community",
  7903. "homepage": "https://symfony.com/contributors"
  7904. }
  7905. ],
  7906. "description": "Generic abstractions related to translation",
  7907. "homepage": "https://symfony.com",
  7908. "keywords": [
  7909. "abstractions",
  7910. "contracts",
  7911. "decoupling",
  7912. "interfaces",
  7913. "interoperability",
  7914. "standards"
  7915. ],
  7916. "support": {
  7917. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7918. },
  7919. "funding": [
  7920. {
  7921. "url": "https://symfony.com/sponsor",
  7922. "type": "custom"
  7923. },
  7924. {
  7925. "url": "https://github.com/fabpot",
  7926. "type": "github"
  7927. },
  7928. {
  7929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7930. "type": "tidelift"
  7931. }
  7932. ],
  7933. "time": "2024-09-25T14:20:29+00:00"
  7934. },
  7935. {
  7936. "name": "vlucas/phpdotenv",
  7937. "version": "v5.6.1",
  7938. "source": {
  7939. "type": "git",
  7940. "url": "https://github.com/vlucas/phpdotenv.git",
  7941. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7942. },
  7943. "dist": {
  7944. "type": "zip",
  7945. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7946. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7947. "shasum": ""
  7948. },
  7949. "require": {
  7950. "ext-pcre": "*",
  7951. "graham-campbell/result-type": "^1.1.3",
  7952. "php": "^7.2.5 || ^8.0",
  7953. "phpoption/phpoption": "^1.9.3",
  7954. "symfony/polyfill-ctype": "^1.24",
  7955. "symfony/polyfill-mbstring": "^1.24",
  7956. "symfony/polyfill-php80": "^1.24"
  7957. },
  7958. "require-dev": {
  7959. "bamarni/composer-bin-plugin": "^1.8.2",
  7960. "ext-filter": "*",
  7961. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7962. },
  7963. "suggest": {
  7964. "ext-filter": "Required to use the boolean validator."
  7965. },
  7966. "type": "library",
  7967. "extra": {
  7968. "bamarni-bin": {
  7969. "bin-links": true,
  7970. "forward-command": false
  7971. },
  7972. "branch-alias": {
  7973. "dev-master": "5.6-dev"
  7974. }
  7975. },
  7976. "autoload": {
  7977. "psr-4": {
  7978. "Dotenv\\": "src/"
  7979. }
  7980. },
  7981. "notification-url": "https://packagist.org/downloads/",
  7982. "license": [
  7983. "BSD-3-Clause"
  7984. ],
  7985. "authors": [
  7986. {
  7987. "name": "Graham Campbell",
  7988. "email": "hello@gjcampbell.co.uk",
  7989. "homepage": "https://github.com/GrahamCampbell"
  7990. },
  7991. {
  7992. "name": "Vance Lucas",
  7993. "email": "vance@vancelucas.com",
  7994. "homepage": "https://github.com/vlucas"
  7995. }
  7996. ],
  7997. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7998. "keywords": [
  7999. "dotenv",
  8000. "env",
  8001. "environment"
  8002. ],
  8003. "support": {
  8004. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8005. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8006. },
  8007. "funding": [
  8008. {
  8009. "url": "https://github.com/GrahamCampbell",
  8010. "type": "github"
  8011. },
  8012. {
  8013. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8014. "type": "tidelift"
  8015. }
  8016. ],
  8017. "time": "2024-07-20T21:52:34+00:00"
  8018. }
  8019. ],
  8020. "packages-dev": [
  8021. {
  8022. "name": "clue/ndjson-react",
  8023. "version": "v1.3.0",
  8024. "source": {
  8025. "type": "git",
  8026. "url": "https://github.com/clue/reactphp-ndjson.git",
  8027. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8028. },
  8029. "dist": {
  8030. "type": "zip",
  8031. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8032. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8033. "shasum": ""
  8034. },
  8035. "require": {
  8036. "php": ">=5.3",
  8037. "react/stream": "^1.2"
  8038. },
  8039. "require-dev": {
  8040. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8041. "react/event-loop": "^1.2"
  8042. },
  8043. "type": "library",
  8044. "autoload": {
  8045. "psr-4": {
  8046. "Clue\\React\\NDJson\\": "src/"
  8047. }
  8048. },
  8049. "notification-url": "https://packagist.org/downloads/",
  8050. "license": [
  8051. "MIT"
  8052. ],
  8053. "authors": [
  8054. {
  8055. "name": "Christian Lück",
  8056. "email": "christian@clue.engineering"
  8057. }
  8058. ],
  8059. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8060. "homepage": "https://github.com/clue/reactphp-ndjson",
  8061. "keywords": [
  8062. "NDJSON",
  8063. "json",
  8064. "jsonlines",
  8065. "newline",
  8066. "reactphp",
  8067. "streaming"
  8068. ],
  8069. "support": {
  8070. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8071. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8072. },
  8073. "funding": [
  8074. {
  8075. "url": "https://clue.engineering/support",
  8076. "type": "custom"
  8077. },
  8078. {
  8079. "url": "https://github.com/clue",
  8080. "type": "github"
  8081. }
  8082. ],
  8083. "time": "2022-12-23T10:58:28+00:00"
  8084. },
  8085. {
  8086. "name": "composer/pcre",
  8087. "version": "3.3.2",
  8088. "source": {
  8089. "type": "git",
  8090. "url": "https://github.com/composer/pcre.git",
  8091. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8092. },
  8093. "dist": {
  8094. "type": "zip",
  8095. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8096. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8097. "shasum": ""
  8098. },
  8099. "require": {
  8100. "php": "^7.4 || ^8.0"
  8101. },
  8102. "conflict": {
  8103. "phpstan/phpstan": "<1.11.10"
  8104. },
  8105. "require-dev": {
  8106. "phpstan/phpstan": "^1.12 || ^2",
  8107. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8108. "phpunit/phpunit": "^8 || ^9"
  8109. },
  8110. "type": "library",
  8111. "extra": {
  8112. "phpstan": {
  8113. "includes": [
  8114. "extension.neon"
  8115. ]
  8116. },
  8117. "branch-alias": {
  8118. "dev-main": "3.x-dev"
  8119. }
  8120. },
  8121. "autoload": {
  8122. "psr-4": {
  8123. "Composer\\Pcre\\": "src"
  8124. }
  8125. },
  8126. "notification-url": "https://packagist.org/downloads/",
  8127. "license": [
  8128. "MIT"
  8129. ],
  8130. "authors": [
  8131. {
  8132. "name": "Jordi Boggiano",
  8133. "email": "j.boggiano@seld.be",
  8134. "homepage": "http://seld.be"
  8135. }
  8136. ],
  8137. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8138. "keywords": [
  8139. "PCRE",
  8140. "preg",
  8141. "regex",
  8142. "regular expression"
  8143. ],
  8144. "support": {
  8145. "issues": "https://github.com/composer/pcre/issues",
  8146. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8147. },
  8148. "funding": [
  8149. {
  8150. "url": "https://packagist.com",
  8151. "type": "custom"
  8152. },
  8153. {
  8154. "url": "https://github.com/composer",
  8155. "type": "github"
  8156. },
  8157. {
  8158. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8159. "type": "tidelift"
  8160. }
  8161. ],
  8162. "time": "2024-11-12T16:29:46+00:00"
  8163. },
  8164. {
  8165. "name": "composer/semver",
  8166. "version": "3.4.3",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/composer/semver.git",
  8170. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8175. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8176. "shasum": ""
  8177. },
  8178. "require": {
  8179. "php": "^5.3.2 || ^7.0 || ^8.0"
  8180. },
  8181. "require-dev": {
  8182. "phpstan/phpstan": "^1.11",
  8183. "symfony/phpunit-bridge": "^3 || ^7"
  8184. },
  8185. "type": "library",
  8186. "extra": {
  8187. "branch-alias": {
  8188. "dev-main": "3.x-dev"
  8189. }
  8190. },
  8191. "autoload": {
  8192. "psr-4": {
  8193. "Composer\\Semver\\": "src"
  8194. }
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "Nils Adermann",
  8203. "email": "naderman@naderman.de",
  8204. "homepage": "http://www.naderman.de"
  8205. },
  8206. {
  8207. "name": "Jordi Boggiano",
  8208. "email": "j.boggiano@seld.be",
  8209. "homepage": "http://seld.be"
  8210. },
  8211. {
  8212. "name": "Rob Bast",
  8213. "email": "rob.bast@gmail.com",
  8214. "homepage": "http://robbast.nl"
  8215. }
  8216. ],
  8217. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8218. "keywords": [
  8219. "semantic",
  8220. "semver",
  8221. "validation",
  8222. "versioning"
  8223. ],
  8224. "support": {
  8225. "irc": "ircs://irc.libera.chat:6697/composer",
  8226. "issues": "https://github.com/composer/semver/issues",
  8227. "source": "https://github.com/composer/semver/tree/3.4.3"
  8228. },
  8229. "funding": [
  8230. {
  8231. "url": "https://packagist.com",
  8232. "type": "custom"
  8233. },
  8234. {
  8235. "url": "https://github.com/composer",
  8236. "type": "github"
  8237. },
  8238. {
  8239. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8240. "type": "tidelift"
  8241. }
  8242. ],
  8243. "time": "2024-09-19T14:15:21+00:00"
  8244. },
  8245. {
  8246. "name": "composer/xdebug-handler",
  8247. "version": "3.0.5",
  8248. "source": {
  8249. "type": "git",
  8250. "url": "https://github.com/composer/xdebug-handler.git",
  8251. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8252. },
  8253. "dist": {
  8254. "type": "zip",
  8255. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8256. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8257. "shasum": ""
  8258. },
  8259. "require": {
  8260. "composer/pcre": "^1 || ^2 || ^3",
  8261. "php": "^7.2.5 || ^8.0",
  8262. "psr/log": "^1 || ^2 || ^3"
  8263. },
  8264. "require-dev": {
  8265. "phpstan/phpstan": "^1.0",
  8266. "phpstan/phpstan-strict-rules": "^1.1",
  8267. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8268. },
  8269. "type": "library",
  8270. "autoload": {
  8271. "psr-4": {
  8272. "Composer\\XdebugHandler\\": "src"
  8273. }
  8274. },
  8275. "notification-url": "https://packagist.org/downloads/",
  8276. "license": [
  8277. "MIT"
  8278. ],
  8279. "authors": [
  8280. {
  8281. "name": "John Stevenson",
  8282. "email": "john-stevenson@blueyonder.co.uk"
  8283. }
  8284. ],
  8285. "description": "Restarts a process without Xdebug.",
  8286. "keywords": [
  8287. "Xdebug",
  8288. "performance"
  8289. ],
  8290. "support": {
  8291. "irc": "ircs://irc.libera.chat:6697/composer",
  8292. "issues": "https://github.com/composer/xdebug-handler/issues",
  8293. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://packagist.com",
  8298. "type": "custom"
  8299. },
  8300. {
  8301. "url": "https://github.com/composer",
  8302. "type": "github"
  8303. },
  8304. {
  8305. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8306. "type": "tidelift"
  8307. }
  8308. ],
  8309. "time": "2024-05-06T16:37:16+00:00"
  8310. },
  8311. {
  8312. "name": "evenement/evenement",
  8313. "version": "v3.0.2",
  8314. "source": {
  8315. "type": "git",
  8316. "url": "https://github.com/igorw/evenement.git",
  8317. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8318. },
  8319. "dist": {
  8320. "type": "zip",
  8321. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8322. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8323. "shasum": ""
  8324. },
  8325. "require": {
  8326. "php": ">=7.0"
  8327. },
  8328. "require-dev": {
  8329. "phpunit/phpunit": "^9 || ^6"
  8330. },
  8331. "type": "library",
  8332. "autoload": {
  8333. "psr-4": {
  8334. "Evenement\\": "src/"
  8335. }
  8336. },
  8337. "notification-url": "https://packagist.org/downloads/",
  8338. "license": [
  8339. "MIT"
  8340. ],
  8341. "authors": [
  8342. {
  8343. "name": "Igor Wiedler",
  8344. "email": "igor@wiedler.ch"
  8345. }
  8346. ],
  8347. "description": "Événement is a very simple event dispatching library for PHP",
  8348. "keywords": [
  8349. "event-dispatcher",
  8350. "event-emitter"
  8351. ],
  8352. "support": {
  8353. "issues": "https://github.com/igorw/evenement/issues",
  8354. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8355. },
  8356. "time": "2023-08-08T05:53:35+00:00"
  8357. },
  8358. {
  8359. "name": "fidry/cpu-core-counter",
  8360. "version": "1.2.0",
  8361. "source": {
  8362. "type": "git",
  8363. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8364. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8365. },
  8366. "dist": {
  8367. "type": "zip",
  8368. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8369. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8370. "shasum": ""
  8371. },
  8372. "require": {
  8373. "php": "^7.2 || ^8.0"
  8374. },
  8375. "require-dev": {
  8376. "fidry/makefile": "^0.2.0",
  8377. "fidry/php-cs-fixer-config": "^1.1.2",
  8378. "phpstan/extension-installer": "^1.2.0",
  8379. "phpstan/phpstan": "^1.9.2",
  8380. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8381. "phpstan/phpstan-phpunit": "^1.2.2",
  8382. "phpstan/phpstan-strict-rules": "^1.4.4",
  8383. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8384. "webmozarts/strict-phpunit": "^7.5"
  8385. },
  8386. "type": "library",
  8387. "autoload": {
  8388. "psr-4": {
  8389. "Fidry\\CpuCoreCounter\\": "src/"
  8390. }
  8391. },
  8392. "notification-url": "https://packagist.org/downloads/",
  8393. "license": [
  8394. "MIT"
  8395. ],
  8396. "authors": [
  8397. {
  8398. "name": "Théo FIDRY",
  8399. "email": "theo.fidry@gmail.com"
  8400. }
  8401. ],
  8402. "description": "Tiny utility to get the number of CPU cores.",
  8403. "keywords": [
  8404. "CPU",
  8405. "core"
  8406. ],
  8407. "support": {
  8408. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8409. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8410. },
  8411. "funding": [
  8412. {
  8413. "url": "https://github.com/theofidry",
  8414. "type": "github"
  8415. }
  8416. ],
  8417. "time": "2024-08-06T10:04:20+00:00"
  8418. },
  8419. {
  8420. "name": "friendsofphp/php-cs-fixer",
  8421. "version": "v3.68.5",
  8422. "source": {
  8423. "type": "git",
  8424. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8425. "reference": "7bedb718b633355272428c60736dc97fb96daf27"
  8426. },
  8427. "dist": {
  8428. "type": "zip",
  8429. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/7bedb718b633355272428c60736dc97fb96daf27",
  8430. "reference": "7bedb718b633355272428c60736dc97fb96daf27",
  8431. "shasum": ""
  8432. },
  8433. "require": {
  8434. "clue/ndjson-react": "^1.0",
  8435. "composer/semver": "^3.4",
  8436. "composer/xdebug-handler": "^3.0.3",
  8437. "ext-filter": "*",
  8438. "ext-json": "*",
  8439. "ext-tokenizer": "*",
  8440. "fidry/cpu-core-counter": "^1.2",
  8441. "php": "^7.4 || ^8.0",
  8442. "react/child-process": "^0.6.5",
  8443. "react/event-loop": "^1.0",
  8444. "react/promise": "^2.0 || ^3.0",
  8445. "react/socket": "^1.0",
  8446. "react/stream": "^1.0",
  8447. "sebastian/diff": "^4.0 || ^5.1 || ^6.0",
  8448. "symfony/console": "^5.4 || ^6.4 || ^7.0",
  8449. "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
  8450. "symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
  8451. "symfony/finder": "^5.4 || ^6.4 || ^7.0",
  8452. "symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
  8453. "symfony/polyfill-mbstring": "^1.31",
  8454. "symfony/polyfill-php80": "^1.31",
  8455. "symfony/polyfill-php81": "^1.31",
  8456. "symfony/process": "^5.4 || ^6.4 || ^7.2",
  8457. "symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
  8458. },
  8459. "require-dev": {
  8460. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8461. "infection/infection": "^0.29.8",
  8462. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8463. "keradus/cli-executor": "^2.1",
  8464. "mikey179/vfsstream": "^1.6.12",
  8465. "php-coveralls/php-coveralls": "^2.7",
  8466. "php-cs-fixer/accessible-object": "^1.1",
  8467. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8468. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8469. "phpunit/phpunit": "^9.6.22 || ^10.5.40 || ^11.5.2",
  8470. "symfony/var-dumper": "^5.4.48 || ^6.4.15 || ^7.2.0",
  8471. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.2.0"
  8472. },
  8473. "suggest": {
  8474. "ext-dom": "For handling output formats in XML",
  8475. "ext-mbstring": "For handling non-UTF8 characters."
  8476. },
  8477. "bin": [
  8478. "php-cs-fixer"
  8479. ],
  8480. "type": "application",
  8481. "autoload": {
  8482. "psr-4": {
  8483. "PhpCsFixer\\": "src/"
  8484. },
  8485. "exclude-from-classmap": [
  8486. "src/Fixer/Internal/*"
  8487. ]
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "MIT"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Fabien Potencier",
  8496. "email": "fabien@symfony.com"
  8497. },
  8498. {
  8499. "name": "Dariusz Rumiński",
  8500. "email": "dariusz.ruminski@gmail.com"
  8501. }
  8502. ],
  8503. "description": "A tool to automatically fix PHP code style",
  8504. "keywords": [
  8505. "Static code analysis",
  8506. "fixer",
  8507. "standards",
  8508. "static analysis"
  8509. ],
  8510. "support": {
  8511. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8512. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.68.5"
  8513. },
  8514. "funding": [
  8515. {
  8516. "url": "https://github.com/keradus",
  8517. "type": "github"
  8518. }
  8519. ],
  8520. "time": "2025-01-30T17:00:50+00:00"
  8521. },
  8522. {
  8523. "name": "hamcrest/hamcrest-php",
  8524. "version": "v2.0.1",
  8525. "source": {
  8526. "type": "git",
  8527. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8528. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8529. },
  8530. "dist": {
  8531. "type": "zip",
  8532. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8533. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8534. "shasum": ""
  8535. },
  8536. "require": {
  8537. "php": "^5.3|^7.0|^8.0"
  8538. },
  8539. "replace": {
  8540. "cordoval/hamcrest-php": "*",
  8541. "davedevelopment/hamcrest-php": "*",
  8542. "kodova/hamcrest-php": "*"
  8543. },
  8544. "require-dev": {
  8545. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8546. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8547. },
  8548. "type": "library",
  8549. "extra": {
  8550. "branch-alias": {
  8551. "dev-master": "2.1-dev"
  8552. }
  8553. },
  8554. "autoload": {
  8555. "classmap": [
  8556. "hamcrest"
  8557. ]
  8558. },
  8559. "notification-url": "https://packagist.org/downloads/",
  8560. "license": [
  8561. "BSD-3-Clause"
  8562. ],
  8563. "description": "This is the PHP port of Hamcrest Matchers",
  8564. "keywords": [
  8565. "test"
  8566. ],
  8567. "support": {
  8568. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8569. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8570. },
  8571. "time": "2020-07-09T08:09:16+00:00"
  8572. },
  8573. {
  8574. "name": "hyperf/devtool",
  8575. "version": "v3.1.51",
  8576. "source": {
  8577. "type": "git",
  8578. "url": "https://github.com/hyperf/devtool.git",
  8579. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  8580. },
  8581. "dist": {
  8582. "type": "zip",
  8583. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  8584. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  8585. "shasum": ""
  8586. },
  8587. "require": {
  8588. "hyperf/code-parser": "~3.1.0",
  8589. "hyperf/command": "~3.1.0",
  8590. "hyperf/contract": "~3.1.0",
  8591. "hyperf/di": "~3.1.0",
  8592. "hyperf/support": "~3.1.0",
  8593. "hyperf/utils": "~3.1.0",
  8594. "php": ">=8.1"
  8595. },
  8596. "type": "library",
  8597. "extra": {
  8598. "hyperf": {
  8599. "config": "Hyperf\\Devtool\\ConfigProvider"
  8600. },
  8601. "branch-alias": {
  8602. "dev-master": "3.1-dev"
  8603. }
  8604. },
  8605. "autoload": {
  8606. "psr-4": {
  8607. "Hyperf\\Devtool\\": "src/"
  8608. }
  8609. },
  8610. "notification-url": "https://packagist.org/downloads/",
  8611. "license": [
  8612. "MIT"
  8613. ],
  8614. "description": "A Devtool for Hyperf.",
  8615. "homepage": "https://hyperf.io",
  8616. "keywords": [
  8617. "dev",
  8618. "devtool",
  8619. "hyperf",
  8620. "php",
  8621. "swoole"
  8622. ],
  8623. "support": {
  8624. "docs": "https://hyperf.wiki",
  8625. "issues": "https://github.com/hyperf/hyperf/issues",
  8626. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8627. "source": "https://github.com/hyperf/hyperf"
  8628. },
  8629. "funding": [
  8630. {
  8631. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8632. "type": "custom"
  8633. },
  8634. {
  8635. "url": "https://opencollective.com/hyperf",
  8636. "type": "open_collective"
  8637. }
  8638. ],
  8639. "time": "2025-02-06T06:42:00+00:00"
  8640. },
  8641. {
  8642. "name": "hyperf/testing",
  8643. "version": "v3.1.48",
  8644. "source": {
  8645. "type": "git",
  8646. "url": "https://github.com/hyperf/testing.git",
  8647. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  8648. },
  8649. "dist": {
  8650. "type": "zip",
  8651. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8652. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8653. "shasum": ""
  8654. },
  8655. "require": {
  8656. "hyperf/codec": "~3.1.0",
  8657. "hyperf/collection": "~3.1.0",
  8658. "hyperf/contract": "~3.1.0",
  8659. "hyperf/coroutine": "~3.1.0",
  8660. "hyperf/http-message": "~3.1.0",
  8661. "hyperf/http-server": "~3.1.0",
  8662. "hyperf/support": "~3.1.0",
  8663. "hyperf/utils": "~3.1.0",
  8664. "php": ">=8.1",
  8665. "phpunit/phpunit": "^10.0",
  8666. "psr/container": "^1.0 || ^2.0",
  8667. "symfony/http-foundation": "^5.4 || ^6.0"
  8668. },
  8669. "suggest": {
  8670. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8671. },
  8672. "bin": [
  8673. "co-phpunit"
  8674. ],
  8675. "type": "library",
  8676. "extra": {
  8677. "branch-alias": {
  8678. "dev-master": "3.1-dev"
  8679. }
  8680. },
  8681. "autoload": {
  8682. "psr-4": {
  8683. "Hyperf\\Testing\\": "src/"
  8684. }
  8685. },
  8686. "notification-url": "https://packagist.org/downloads/",
  8687. "license": [
  8688. "MIT"
  8689. ],
  8690. "description": "Testing for hyperf",
  8691. "keywords": [
  8692. "dev",
  8693. "php",
  8694. "swoole",
  8695. "testing"
  8696. ],
  8697. "support": {
  8698. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  8699. },
  8700. "funding": [
  8701. {
  8702. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8703. "type": "custom"
  8704. },
  8705. {
  8706. "url": "https://opencollective.com/hyperf",
  8707. "type": "open_collective"
  8708. }
  8709. ],
  8710. "time": "2024-12-12T02:12:29+00:00"
  8711. },
  8712. {
  8713. "name": "hyperf/watcher",
  8714. "version": "v3.1.43",
  8715. "source": {
  8716. "type": "git",
  8717. "url": "https://github.com/hyperf/watcher.git",
  8718. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8719. },
  8720. "dist": {
  8721. "type": "zip",
  8722. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8723. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8724. "shasum": ""
  8725. },
  8726. "require": {
  8727. "ext-posix": "*",
  8728. "hyperf/codec": "~3.1.0",
  8729. "hyperf/command": "~3.1.0",
  8730. "hyperf/di": "~3.1.0",
  8731. "hyperf/framework": "~3.1.0",
  8732. "hyperf/support": "~3.1.0",
  8733. "php": ">=8.1"
  8734. },
  8735. "type": "library",
  8736. "extra": {
  8737. "hyperf": {
  8738. "config": "Hyperf\\Watcher\\ConfigProvider"
  8739. },
  8740. "branch-alias": {
  8741. "dev-master": "3.1-dev"
  8742. }
  8743. },
  8744. "autoload": {
  8745. "files": [
  8746. "src/Functions.php"
  8747. ],
  8748. "psr-4": {
  8749. "Hyperf\\Watcher\\": "src/"
  8750. }
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "MIT"
  8755. ],
  8756. "description": "Hot reload watcher for Hyperf",
  8757. "keywords": [
  8758. "dev",
  8759. "hyperf",
  8760. "php"
  8761. ],
  8762. "support": {
  8763. "issues": "https://github.com/hyperf/watcher/issues",
  8764. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8765. },
  8766. "funding": [
  8767. {
  8768. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8769. "type": "custom"
  8770. },
  8771. {
  8772. "url": "https://opencollective.com/hyperf",
  8773. "type": "open_collective"
  8774. }
  8775. ],
  8776. "time": "2024-10-06T12:33:12+00:00"
  8777. },
  8778. {
  8779. "name": "mockery/mockery",
  8780. "version": "1.6.12",
  8781. "source": {
  8782. "type": "git",
  8783. "url": "https://github.com/mockery/mockery.git",
  8784. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8785. },
  8786. "dist": {
  8787. "type": "zip",
  8788. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8789. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8790. "shasum": ""
  8791. },
  8792. "require": {
  8793. "hamcrest/hamcrest-php": "^2.0.1",
  8794. "lib-pcre": ">=7.0",
  8795. "php": ">=7.3"
  8796. },
  8797. "conflict": {
  8798. "phpunit/phpunit": "<8.0"
  8799. },
  8800. "require-dev": {
  8801. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8802. "symplify/easy-coding-standard": "^12.1.14"
  8803. },
  8804. "type": "library",
  8805. "autoload": {
  8806. "files": [
  8807. "library/helpers.php",
  8808. "library/Mockery.php"
  8809. ],
  8810. "psr-4": {
  8811. "Mockery\\": "library/Mockery"
  8812. }
  8813. },
  8814. "notification-url": "https://packagist.org/downloads/",
  8815. "license": [
  8816. "BSD-3-Clause"
  8817. ],
  8818. "authors": [
  8819. {
  8820. "name": "Pádraic Brady",
  8821. "email": "padraic.brady@gmail.com",
  8822. "homepage": "https://github.com/padraic",
  8823. "role": "Author"
  8824. },
  8825. {
  8826. "name": "Dave Marshall",
  8827. "email": "dave.marshall@atstsolutions.co.uk",
  8828. "homepage": "https://davedevelopment.co.uk",
  8829. "role": "Developer"
  8830. },
  8831. {
  8832. "name": "Nathanael Esayeas",
  8833. "email": "nathanael.esayeas@protonmail.com",
  8834. "homepage": "https://github.com/ghostwriter",
  8835. "role": "Lead Developer"
  8836. }
  8837. ],
  8838. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8839. "homepage": "https://github.com/mockery/mockery",
  8840. "keywords": [
  8841. "BDD",
  8842. "TDD",
  8843. "library",
  8844. "mock",
  8845. "mock objects",
  8846. "mockery",
  8847. "stub",
  8848. "test",
  8849. "test double",
  8850. "testing"
  8851. ],
  8852. "support": {
  8853. "docs": "https://docs.mockery.io/",
  8854. "issues": "https://github.com/mockery/mockery/issues",
  8855. "rss": "https://github.com/mockery/mockery/releases.atom",
  8856. "security": "https://github.com/mockery/mockery/security/advisories",
  8857. "source": "https://github.com/mockery/mockery"
  8858. },
  8859. "time": "2024-05-16T03:13:13+00:00"
  8860. },
  8861. {
  8862. "name": "myclabs/deep-copy",
  8863. "version": "1.12.1",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/myclabs/DeepCopy.git",
  8867. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8872. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": "^7.1 || ^8.0"
  8877. },
  8878. "conflict": {
  8879. "doctrine/collections": "<1.6.8",
  8880. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8881. },
  8882. "require-dev": {
  8883. "doctrine/collections": "^1.6.8",
  8884. "doctrine/common": "^2.13.3 || ^3.2.2",
  8885. "phpspec/prophecy": "^1.10",
  8886. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8887. },
  8888. "type": "library",
  8889. "autoload": {
  8890. "files": [
  8891. "src/DeepCopy/deep_copy.php"
  8892. ],
  8893. "psr-4": {
  8894. "DeepCopy\\": "src/DeepCopy/"
  8895. }
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "MIT"
  8900. ],
  8901. "description": "Create deep copies (clones) of your objects",
  8902. "keywords": [
  8903. "clone",
  8904. "copy",
  8905. "duplicate",
  8906. "object",
  8907. "object graph"
  8908. ],
  8909. "support": {
  8910. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8911. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8912. },
  8913. "funding": [
  8914. {
  8915. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8916. "type": "tidelift"
  8917. }
  8918. ],
  8919. "time": "2024-11-08T17:47:46+00:00"
  8920. },
  8921. {
  8922. "name": "phar-io/manifest",
  8923. "version": "2.0.4",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/phar-io/manifest.git",
  8927. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8932. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8933. "shasum": ""
  8934. },
  8935. "require": {
  8936. "ext-dom": "*",
  8937. "ext-libxml": "*",
  8938. "ext-phar": "*",
  8939. "ext-xmlwriter": "*",
  8940. "phar-io/version": "^3.0.1",
  8941. "php": "^7.2 || ^8.0"
  8942. },
  8943. "type": "library",
  8944. "extra": {
  8945. "branch-alias": {
  8946. "dev-master": "2.0.x-dev"
  8947. }
  8948. },
  8949. "autoload": {
  8950. "classmap": [
  8951. "src/"
  8952. ]
  8953. },
  8954. "notification-url": "https://packagist.org/downloads/",
  8955. "license": [
  8956. "BSD-3-Clause"
  8957. ],
  8958. "authors": [
  8959. {
  8960. "name": "Arne Blankerts",
  8961. "email": "arne@blankerts.de",
  8962. "role": "Developer"
  8963. },
  8964. {
  8965. "name": "Sebastian Heuer",
  8966. "email": "sebastian@phpeople.de",
  8967. "role": "Developer"
  8968. },
  8969. {
  8970. "name": "Sebastian Bergmann",
  8971. "email": "sebastian@phpunit.de",
  8972. "role": "Developer"
  8973. }
  8974. ],
  8975. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8976. "support": {
  8977. "issues": "https://github.com/phar-io/manifest/issues",
  8978. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8979. },
  8980. "funding": [
  8981. {
  8982. "url": "https://github.com/theseer",
  8983. "type": "github"
  8984. }
  8985. ],
  8986. "time": "2024-03-03T12:33:53+00:00"
  8987. },
  8988. {
  8989. "name": "phar-io/version",
  8990. "version": "3.2.1",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/phar-io/version.git",
  8994. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8999. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9000. "shasum": ""
  9001. },
  9002. "require": {
  9003. "php": "^7.2 || ^8.0"
  9004. },
  9005. "type": "library",
  9006. "autoload": {
  9007. "classmap": [
  9008. "src/"
  9009. ]
  9010. },
  9011. "notification-url": "https://packagist.org/downloads/",
  9012. "license": [
  9013. "BSD-3-Clause"
  9014. ],
  9015. "authors": [
  9016. {
  9017. "name": "Arne Blankerts",
  9018. "email": "arne@blankerts.de",
  9019. "role": "Developer"
  9020. },
  9021. {
  9022. "name": "Sebastian Heuer",
  9023. "email": "sebastian@phpeople.de",
  9024. "role": "Developer"
  9025. },
  9026. {
  9027. "name": "Sebastian Bergmann",
  9028. "email": "sebastian@phpunit.de",
  9029. "role": "Developer"
  9030. }
  9031. ],
  9032. "description": "Library for handling version information and constraints",
  9033. "support": {
  9034. "issues": "https://github.com/phar-io/version/issues",
  9035. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9036. },
  9037. "time": "2022-02-21T01:04:05+00:00"
  9038. },
  9039. {
  9040. "name": "phpstan/phpstan",
  9041. "version": "1.12.17",
  9042. "source": {
  9043. "type": "git",
  9044. "url": "https://github.com/phpstan/phpstan.git",
  9045. "reference": "7027b3b0270bf392de0cfba12825979768d728bf"
  9046. },
  9047. "dist": {
  9048. "type": "zip",
  9049. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/7027b3b0270bf392de0cfba12825979768d728bf",
  9050. "reference": "7027b3b0270bf392de0cfba12825979768d728bf",
  9051. "shasum": ""
  9052. },
  9053. "require": {
  9054. "php": "^7.2|^8.0"
  9055. },
  9056. "conflict": {
  9057. "phpstan/phpstan-shim": "*"
  9058. },
  9059. "bin": [
  9060. "phpstan",
  9061. "phpstan.phar"
  9062. ],
  9063. "type": "library",
  9064. "autoload": {
  9065. "files": [
  9066. "bootstrap.php"
  9067. ]
  9068. },
  9069. "notification-url": "https://packagist.org/downloads/",
  9070. "license": [
  9071. "MIT"
  9072. ],
  9073. "description": "PHPStan - PHP Static Analysis Tool",
  9074. "keywords": [
  9075. "dev",
  9076. "static analysis"
  9077. ],
  9078. "support": {
  9079. "docs": "https://phpstan.org/user-guide/getting-started",
  9080. "forum": "https://github.com/phpstan/phpstan/discussions",
  9081. "issues": "https://github.com/phpstan/phpstan/issues",
  9082. "security": "https://github.com/phpstan/phpstan/security/policy",
  9083. "source": "https://github.com/phpstan/phpstan-src"
  9084. },
  9085. "funding": [
  9086. {
  9087. "url": "https://github.com/ondrejmirtes",
  9088. "type": "github"
  9089. },
  9090. {
  9091. "url": "https://github.com/phpstan",
  9092. "type": "github"
  9093. }
  9094. ],
  9095. "time": "2025-02-07T15:01:57+00:00"
  9096. },
  9097. {
  9098. "name": "phpunit/php-code-coverage",
  9099. "version": "10.1.16",
  9100. "source": {
  9101. "type": "git",
  9102. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9103. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9104. },
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9108. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "ext-dom": "*",
  9113. "ext-libxml": "*",
  9114. "ext-xmlwriter": "*",
  9115. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9116. "php": ">=8.1",
  9117. "phpunit/php-file-iterator": "^4.1.0",
  9118. "phpunit/php-text-template": "^3.0.1",
  9119. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9120. "sebastian/complexity": "^3.2.0",
  9121. "sebastian/environment": "^6.1.0",
  9122. "sebastian/lines-of-code": "^2.0.2",
  9123. "sebastian/version": "^4.0.1",
  9124. "theseer/tokenizer": "^1.2.3"
  9125. },
  9126. "require-dev": {
  9127. "phpunit/phpunit": "^10.1"
  9128. },
  9129. "suggest": {
  9130. "ext-pcov": "PHP extension that provides line coverage",
  9131. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9132. },
  9133. "type": "library",
  9134. "extra": {
  9135. "branch-alias": {
  9136. "dev-main": "10.1.x-dev"
  9137. }
  9138. },
  9139. "autoload": {
  9140. "classmap": [
  9141. "src/"
  9142. ]
  9143. },
  9144. "notification-url": "https://packagist.org/downloads/",
  9145. "license": [
  9146. "BSD-3-Clause"
  9147. ],
  9148. "authors": [
  9149. {
  9150. "name": "Sebastian Bergmann",
  9151. "email": "sebastian@phpunit.de",
  9152. "role": "lead"
  9153. }
  9154. ],
  9155. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9156. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9157. "keywords": [
  9158. "coverage",
  9159. "testing",
  9160. "xunit"
  9161. ],
  9162. "support": {
  9163. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9164. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9165. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9166. },
  9167. "funding": [
  9168. {
  9169. "url": "https://github.com/sebastianbergmann",
  9170. "type": "github"
  9171. }
  9172. ],
  9173. "time": "2024-08-22T04:31:57+00:00"
  9174. },
  9175. {
  9176. "name": "phpunit/php-file-iterator",
  9177. "version": "4.1.0",
  9178. "source": {
  9179. "type": "git",
  9180. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9181. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9182. },
  9183. "dist": {
  9184. "type": "zip",
  9185. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9186. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9187. "shasum": ""
  9188. },
  9189. "require": {
  9190. "php": ">=8.1"
  9191. },
  9192. "require-dev": {
  9193. "phpunit/phpunit": "^10.0"
  9194. },
  9195. "type": "library",
  9196. "extra": {
  9197. "branch-alias": {
  9198. "dev-main": "4.0-dev"
  9199. }
  9200. },
  9201. "autoload": {
  9202. "classmap": [
  9203. "src/"
  9204. ]
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "BSD-3-Clause"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Sebastian Bergmann",
  9213. "email": "sebastian@phpunit.de",
  9214. "role": "lead"
  9215. }
  9216. ],
  9217. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9218. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9219. "keywords": [
  9220. "filesystem",
  9221. "iterator"
  9222. ],
  9223. "support": {
  9224. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9225. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9226. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9227. },
  9228. "funding": [
  9229. {
  9230. "url": "https://github.com/sebastianbergmann",
  9231. "type": "github"
  9232. }
  9233. ],
  9234. "time": "2023-08-31T06:24:48+00:00"
  9235. },
  9236. {
  9237. "name": "phpunit/php-invoker",
  9238. "version": "4.0.0",
  9239. "source": {
  9240. "type": "git",
  9241. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9242. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9243. },
  9244. "dist": {
  9245. "type": "zip",
  9246. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9247. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9248. "shasum": ""
  9249. },
  9250. "require": {
  9251. "php": ">=8.1"
  9252. },
  9253. "require-dev": {
  9254. "ext-pcntl": "*",
  9255. "phpunit/phpunit": "^10.0"
  9256. },
  9257. "suggest": {
  9258. "ext-pcntl": "*"
  9259. },
  9260. "type": "library",
  9261. "extra": {
  9262. "branch-alias": {
  9263. "dev-main": "4.0-dev"
  9264. }
  9265. },
  9266. "autoload": {
  9267. "classmap": [
  9268. "src/"
  9269. ]
  9270. },
  9271. "notification-url": "https://packagist.org/downloads/",
  9272. "license": [
  9273. "BSD-3-Clause"
  9274. ],
  9275. "authors": [
  9276. {
  9277. "name": "Sebastian Bergmann",
  9278. "email": "sebastian@phpunit.de",
  9279. "role": "lead"
  9280. }
  9281. ],
  9282. "description": "Invoke callables with a timeout",
  9283. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9284. "keywords": [
  9285. "process"
  9286. ],
  9287. "support": {
  9288. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9289. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9290. },
  9291. "funding": [
  9292. {
  9293. "url": "https://github.com/sebastianbergmann",
  9294. "type": "github"
  9295. }
  9296. ],
  9297. "time": "2023-02-03T06:56:09+00:00"
  9298. },
  9299. {
  9300. "name": "phpunit/php-text-template",
  9301. "version": "3.0.1",
  9302. "source": {
  9303. "type": "git",
  9304. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9305. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9306. },
  9307. "dist": {
  9308. "type": "zip",
  9309. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9310. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9311. "shasum": ""
  9312. },
  9313. "require": {
  9314. "php": ">=8.1"
  9315. },
  9316. "require-dev": {
  9317. "phpunit/phpunit": "^10.0"
  9318. },
  9319. "type": "library",
  9320. "extra": {
  9321. "branch-alias": {
  9322. "dev-main": "3.0-dev"
  9323. }
  9324. },
  9325. "autoload": {
  9326. "classmap": [
  9327. "src/"
  9328. ]
  9329. },
  9330. "notification-url": "https://packagist.org/downloads/",
  9331. "license": [
  9332. "BSD-3-Clause"
  9333. ],
  9334. "authors": [
  9335. {
  9336. "name": "Sebastian Bergmann",
  9337. "email": "sebastian@phpunit.de",
  9338. "role": "lead"
  9339. }
  9340. ],
  9341. "description": "Simple template engine.",
  9342. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9343. "keywords": [
  9344. "template"
  9345. ],
  9346. "support": {
  9347. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9348. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9349. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9350. },
  9351. "funding": [
  9352. {
  9353. "url": "https://github.com/sebastianbergmann",
  9354. "type": "github"
  9355. }
  9356. ],
  9357. "time": "2023-08-31T14:07:24+00:00"
  9358. },
  9359. {
  9360. "name": "phpunit/php-timer",
  9361. "version": "6.0.0",
  9362. "source": {
  9363. "type": "git",
  9364. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9365. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9366. },
  9367. "dist": {
  9368. "type": "zip",
  9369. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9370. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9371. "shasum": ""
  9372. },
  9373. "require": {
  9374. "php": ">=8.1"
  9375. },
  9376. "require-dev": {
  9377. "phpunit/phpunit": "^10.0"
  9378. },
  9379. "type": "library",
  9380. "extra": {
  9381. "branch-alias": {
  9382. "dev-main": "6.0-dev"
  9383. }
  9384. },
  9385. "autoload": {
  9386. "classmap": [
  9387. "src/"
  9388. ]
  9389. },
  9390. "notification-url": "https://packagist.org/downloads/",
  9391. "license": [
  9392. "BSD-3-Clause"
  9393. ],
  9394. "authors": [
  9395. {
  9396. "name": "Sebastian Bergmann",
  9397. "email": "sebastian@phpunit.de",
  9398. "role": "lead"
  9399. }
  9400. ],
  9401. "description": "Utility class for timing",
  9402. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9403. "keywords": [
  9404. "timer"
  9405. ],
  9406. "support": {
  9407. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9408. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9409. },
  9410. "funding": [
  9411. {
  9412. "url": "https://github.com/sebastianbergmann",
  9413. "type": "github"
  9414. }
  9415. ],
  9416. "time": "2023-02-03T06:57:52+00:00"
  9417. },
  9418. {
  9419. "name": "phpunit/phpunit",
  9420. "version": "10.5.45",
  9421. "source": {
  9422. "type": "git",
  9423. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9424. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8"
  9425. },
  9426. "dist": {
  9427. "type": "zip",
  9428. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8",
  9429. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8",
  9430. "shasum": ""
  9431. },
  9432. "require": {
  9433. "ext-dom": "*",
  9434. "ext-json": "*",
  9435. "ext-libxml": "*",
  9436. "ext-mbstring": "*",
  9437. "ext-xml": "*",
  9438. "ext-xmlwriter": "*",
  9439. "myclabs/deep-copy": "^1.12.1",
  9440. "phar-io/manifest": "^2.0.4",
  9441. "phar-io/version": "^3.2.1",
  9442. "php": ">=8.1",
  9443. "phpunit/php-code-coverage": "^10.1.16",
  9444. "phpunit/php-file-iterator": "^4.1.0",
  9445. "phpunit/php-invoker": "^4.0.0",
  9446. "phpunit/php-text-template": "^3.0.1",
  9447. "phpunit/php-timer": "^6.0.0",
  9448. "sebastian/cli-parser": "^2.0.1",
  9449. "sebastian/code-unit": "^2.0.0",
  9450. "sebastian/comparator": "^5.0.3",
  9451. "sebastian/diff": "^5.1.1",
  9452. "sebastian/environment": "^6.1.0",
  9453. "sebastian/exporter": "^5.1.2",
  9454. "sebastian/global-state": "^6.0.2",
  9455. "sebastian/object-enumerator": "^5.0.0",
  9456. "sebastian/recursion-context": "^5.0.0",
  9457. "sebastian/type": "^4.0.0",
  9458. "sebastian/version": "^4.0.1"
  9459. },
  9460. "suggest": {
  9461. "ext-soap": "To be able to generate mocks based on WSDL files"
  9462. },
  9463. "bin": [
  9464. "phpunit"
  9465. ],
  9466. "type": "library",
  9467. "extra": {
  9468. "branch-alias": {
  9469. "dev-main": "10.5-dev"
  9470. }
  9471. },
  9472. "autoload": {
  9473. "files": [
  9474. "src/Framework/Assert/Functions.php"
  9475. ],
  9476. "classmap": [
  9477. "src/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "BSD-3-Clause"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Sebastian Bergmann",
  9487. "email": "sebastian@phpunit.de",
  9488. "role": "lead"
  9489. }
  9490. ],
  9491. "description": "The PHP Unit Testing framework.",
  9492. "homepage": "https://phpunit.de/",
  9493. "keywords": [
  9494. "phpunit",
  9495. "testing",
  9496. "xunit"
  9497. ],
  9498. "support": {
  9499. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9500. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9501. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.45"
  9502. },
  9503. "funding": [
  9504. {
  9505. "url": "https://phpunit.de/sponsors.html",
  9506. "type": "custom"
  9507. },
  9508. {
  9509. "url": "https://github.com/sebastianbergmann",
  9510. "type": "github"
  9511. },
  9512. {
  9513. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9514. "type": "tidelift"
  9515. }
  9516. ],
  9517. "time": "2025-02-06T16:08:12+00:00"
  9518. },
  9519. {
  9520. "name": "react/cache",
  9521. "version": "v1.2.0",
  9522. "source": {
  9523. "type": "git",
  9524. "url": "https://github.com/reactphp/cache.git",
  9525. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9526. },
  9527. "dist": {
  9528. "type": "zip",
  9529. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9530. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9531. "shasum": ""
  9532. },
  9533. "require": {
  9534. "php": ">=5.3.0",
  9535. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9536. },
  9537. "require-dev": {
  9538. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9539. },
  9540. "type": "library",
  9541. "autoload": {
  9542. "psr-4": {
  9543. "React\\Cache\\": "src/"
  9544. }
  9545. },
  9546. "notification-url": "https://packagist.org/downloads/",
  9547. "license": [
  9548. "MIT"
  9549. ],
  9550. "authors": [
  9551. {
  9552. "name": "Christian Lück",
  9553. "email": "christian@clue.engineering",
  9554. "homepage": "https://clue.engineering/"
  9555. },
  9556. {
  9557. "name": "Cees-Jan Kiewiet",
  9558. "email": "reactphp@ceesjankiewiet.nl",
  9559. "homepage": "https://wyrihaximus.net/"
  9560. },
  9561. {
  9562. "name": "Jan Sorgalla",
  9563. "email": "jsorgalla@gmail.com",
  9564. "homepage": "https://sorgalla.com/"
  9565. },
  9566. {
  9567. "name": "Chris Boden",
  9568. "email": "cboden@gmail.com",
  9569. "homepage": "https://cboden.dev/"
  9570. }
  9571. ],
  9572. "description": "Async, Promise-based cache interface for ReactPHP",
  9573. "keywords": [
  9574. "cache",
  9575. "caching",
  9576. "promise",
  9577. "reactphp"
  9578. ],
  9579. "support": {
  9580. "issues": "https://github.com/reactphp/cache/issues",
  9581. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9582. },
  9583. "funding": [
  9584. {
  9585. "url": "https://opencollective.com/reactphp",
  9586. "type": "open_collective"
  9587. }
  9588. ],
  9589. "time": "2022-11-30T15:59:55+00:00"
  9590. },
  9591. {
  9592. "name": "react/child-process",
  9593. "version": "v0.6.6",
  9594. "source": {
  9595. "type": "git",
  9596. "url": "https://github.com/reactphp/child-process.git",
  9597. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  9598. },
  9599. "dist": {
  9600. "type": "zip",
  9601. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9602. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9603. "shasum": ""
  9604. },
  9605. "require": {
  9606. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9607. "php": ">=5.3.0",
  9608. "react/event-loop": "^1.2",
  9609. "react/stream": "^1.4"
  9610. },
  9611. "require-dev": {
  9612. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9613. "react/socket": "^1.16",
  9614. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9615. },
  9616. "type": "library",
  9617. "autoload": {
  9618. "psr-4": {
  9619. "React\\ChildProcess\\": "src/"
  9620. }
  9621. },
  9622. "notification-url": "https://packagist.org/downloads/",
  9623. "license": [
  9624. "MIT"
  9625. ],
  9626. "authors": [
  9627. {
  9628. "name": "Christian Lück",
  9629. "email": "christian@clue.engineering",
  9630. "homepage": "https://clue.engineering/"
  9631. },
  9632. {
  9633. "name": "Cees-Jan Kiewiet",
  9634. "email": "reactphp@ceesjankiewiet.nl",
  9635. "homepage": "https://wyrihaximus.net/"
  9636. },
  9637. {
  9638. "name": "Jan Sorgalla",
  9639. "email": "jsorgalla@gmail.com",
  9640. "homepage": "https://sorgalla.com/"
  9641. },
  9642. {
  9643. "name": "Chris Boden",
  9644. "email": "cboden@gmail.com",
  9645. "homepage": "https://cboden.dev/"
  9646. }
  9647. ],
  9648. "description": "Event-driven library for executing child processes with ReactPHP.",
  9649. "keywords": [
  9650. "event-driven",
  9651. "process",
  9652. "reactphp"
  9653. ],
  9654. "support": {
  9655. "issues": "https://github.com/reactphp/child-process/issues",
  9656. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  9657. },
  9658. "funding": [
  9659. {
  9660. "url": "https://opencollective.com/reactphp",
  9661. "type": "open_collective"
  9662. }
  9663. ],
  9664. "time": "2025-01-01T16:37:48+00:00"
  9665. },
  9666. {
  9667. "name": "react/dns",
  9668. "version": "v1.13.0",
  9669. "source": {
  9670. "type": "git",
  9671. "url": "https://github.com/reactphp/dns.git",
  9672. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9673. },
  9674. "dist": {
  9675. "type": "zip",
  9676. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9677. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9678. "shasum": ""
  9679. },
  9680. "require": {
  9681. "php": ">=5.3.0",
  9682. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9683. "react/event-loop": "^1.2",
  9684. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9685. },
  9686. "require-dev": {
  9687. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9688. "react/async": "^4.3 || ^3 || ^2",
  9689. "react/promise-timer": "^1.11"
  9690. },
  9691. "type": "library",
  9692. "autoload": {
  9693. "psr-4": {
  9694. "React\\Dns\\": "src/"
  9695. }
  9696. },
  9697. "notification-url": "https://packagist.org/downloads/",
  9698. "license": [
  9699. "MIT"
  9700. ],
  9701. "authors": [
  9702. {
  9703. "name": "Christian Lück",
  9704. "email": "christian@clue.engineering",
  9705. "homepage": "https://clue.engineering/"
  9706. },
  9707. {
  9708. "name": "Cees-Jan Kiewiet",
  9709. "email": "reactphp@ceesjankiewiet.nl",
  9710. "homepage": "https://wyrihaximus.net/"
  9711. },
  9712. {
  9713. "name": "Jan Sorgalla",
  9714. "email": "jsorgalla@gmail.com",
  9715. "homepage": "https://sorgalla.com/"
  9716. },
  9717. {
  9718. "name": "Chris Boden",
  9719. "email": "cboden@gmail.com",
  9720. "homepage": "https://cboden.dev/"
  9721. }
  9722. ],
  9723. "description": "Async DNS resolver for ReactPHP",
  9724. "keywords": [
  9725. "async",
  9726. "dns",
  9727. "dns-resolver",
  9728. "reactphp"
  9729. ],
  9730. "support": {
  9731. "issues": "https://github.com/reactphp/dns/issues",
  9732. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9733. },
  9734. "funding": [
  9735. {
  9736. "url": "https://opencollective.com/reactphp",
  9737. "type": "open_collective"
  9738. }
  9739. ],
  9740. "time": "2024-06-13T14:18:03+00:00"
  9741. },
  9742. {
  9743. "name": "react/event-loop",
  9744. "version": "v1.5.0",
  9745. "source": {
  9746. "type": "git",
  9747. "url": "https://github.com/reactphp/event-loop.git",
  9748. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9749. },
  9750. "dist": {
  9751. "type": "zip",
  9752. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9753. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9754. "shasum": ""
  9755. },
  9756. "require": {
  9757. "php": ">=5.3.0"
  9758. },
  9759. "require-dev": {
  9760. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9761. },
  9762. "suggest": {
  9763. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9764. },
  9765. "type": "library",
  9766. "autoload": {
  9767. "psr-4": {
  9768. "React\\EventLoop\\": "src/"
  9769. }
  9770. },
  9771. "notification-url": "https://packagist.org/downloads/",
  9772. "license": [
  9773. "MIT"
  9774. ],
  9775. "authors": [
  9776. {
  9777. "name": "Christian Lück",
  9778. "email": "christian@clue.engineering",
  9779. "homepage": "https://clue.engineering/"
  9780. },
  9781. {
  9782. "name": "Cees-Jan Kiewiet",
  9783. "email": "reactphp@ceesjankiewiet.nl",
  9784. "homepage": "https://wyrihaximus.net/"
  9785. },
  9786. {
  9787. "name": "Jan Sorgalla",
  9788. "email": "jsorgalla@gmail.com",
  9789. "homepage": "https://sorgalla.com/"
  9790. },
  9791. {
  9792. "name": "Chris Boden",
  9793. "email": "cboden@gmail.com",
  9794. "homepage": "https://cboden.dev/"
  9795. }
  9796. ],
  9797. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9798. "keywords": [
  9799. "asynchronous",
  9800. "event-loop"
  9801. ],
  9802. "support": {
  9803. "issues": "https://github.com/reactphp/event-loop/issues",
  9804. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9805. },
  9806. "funding": [
  9807. {
  9808. "url": "https://opencollective.com/reactphp",
  9809. "type": "open_collective"
  9810. }
  9811. ],
  9812. "time": "2023-11-13T13:48:05+00:00"
  9813. },
  9814. {
  9815. "name": "react/promise",
  9816. "version": "v3.2.0",
  9817. "source": {
  9818. "type": "git",
  9819. "url": "https://github.com/reactphp/promise.git",
  9820. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9821. },
  9822. "dist": {
  9823. "type": "zip",
  9824. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9825. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9826. "shasum": ""
  9827. },
  9828. "require": {
  9829. "php": ">=7.1.0"
  9830. },
  9831. "require-dev": {
  9832. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9833. "phpunit/phpunit": "^9.6 || ^7.5"
  9834. },
  9835. "type": "library",
  9836. "autoload": {
  9837. "files": [
  9838. "src/functions_include.php"
  9839. ],
  9840. "psr-4": {
  9841. "React\\Promise\\": "src/"
  9842. }
  9843. },
  9844. "notification-url": "https://packagist.org/downloads/",
  9845. "license": [
  9846. "MIT"
  9847. ],
  9848. "authors": [
  9849. {
  9850. "name": "Jan Sorgalla",
  9851. "email": "jsorgalla@gmail.com",
  9852. "homepage": "https://sorgalla.com/"
  9853. },
  9854. {
  9855. "name": "Christian Lück",
  9856. "email": "christian@clue.engineering",
  9857. "homepage": "https://clue.engineering/"
  9858. },
  9859. {
  9860. "name": "Cees-Jan Kiewiet",
  9861. "email": "reactphp@ceesjankiewiet.nl",
  9862. "homepage": "https://wyrihaximus.net/"
  9863. },
  9864. {
  9865. "name": "Chris Boden",
  9866. "email": "cboden@gmail.com",
  9867. "homepage": "https://cboden.dev/"
  9868. }
  9869. ],
  9870. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9871. "keywords": [
  9872. "promise",
  9873. "promises"
  9874. ],
  9875. "support": {
  9876. "issues": "https://github.com/reactphp/promise/issues",
  9877. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9878. },
  9879. "funding": [
  9880. {
  9881. "url": "https://opencollective.com/reactphp",
  9882. "type": "open_collective"
  9883. }
  9884. ],
  9885. "time": "2024-05-24T10:39:05+00:00"
  9886. },
  9887. {
  9888. "name": "react/socket",
  9889. "version": "v1.16.0",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/reactphp/socket.git",
  9893. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9898. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9899. "shasum": ""
  9900. },
  9901. "require": {
  9902. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9903. "php": ">=5.3.0",
  9904. "react/dns": "^1.13",
  9905. "react/event-loop": "^1.2",
  9906. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9907. "react/stream": "^1.4"
  9908. },
  9909. "require-dev": {
  9910. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9911. "react/async": "^4.3 || ^3.3 || ^2",
  9912. "react/promise-stream": "^1.4",
  9913. "react/promise-timer": "^1.11"
  9914. },
  9915. "type": "library",
  9916. "autoload": {
  9917. "psr-4": {
  9918. "React\\Socket\\": "src/"
  9919. }
  9920. },
  9921. "notification-url": "https://packagist.org/downloads/",
  9922. "license": [
  9923. "MIT"
  9924. ],
  9925. "authors": [
  9926. {
  9927. "name": "Christian Lück",
  9928. "email": "christian@clue.engineering",
  9929. "homepage": "https://clue.engineering/"
  9930. },
  9931. {
  9932. "name": "Cees-Jan Kiewiet",
  9933. "email": "reactphp@ceesjankiewiet.nl",
  9934. "homepage": "https://wyrihaximus.net/"
  9935. },
  9936. {
  9937. "name": "Jan Sorgalla",
  9938. "email": "jsorgalla@gmail.com",
  9939. "homepage": "https://sorgalla.com/"
  9940. },
  9941. {
  9942. "name": "Chris Boden",
  9943. "email": "cboden@gmail.com",
  9944. "homepage": "https://cboden.dev/"
  9945. }
  9946. ],
  9947. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9948. "keywords": [
  9949. "Connection",
  9950. "Socket",
  9951. "async",
  9952. "reactphp",
  9953. "stream"
  9954. ],
  9955. "support": {
  9956. "issues": "https://github.com/reactphp/socket/issues",
  9957. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9958. },
  9959. "funding": [
  9960. {
  9961. "url": "https://opencollective.com/reactphp",
  9962. "type": "open_collective"
  9963. }
  9964. ],
  9965. "time": "2024-07-26T10:38:09+00:00"
  9966. },
  9967. {
  9968. "name": "react/stream",
  9969. "version": "v1.4.0",
  9970. "source": {
  9971. "type": "git",
  9972. "url": "https://github.com/reactphp/stream.git",
  9973. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9974. },
  9975. "dist": {
  9976. "type": "zip",
  9977. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9978. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9979. "shasum": ""
  9980. },
  9981. "require": {
  9982. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9983. "php": ">=5.3.8",
  9984. "react/event-loop": "^1.2"
  9985. },
  9986. "require-dev": {
  9987. "clue/stream-filter": "~1.2",
  9988. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9989. },
  9990. "type": "library",
  9991. "autoload": {
  9992. "psr-4": {
  9993. "React\\Stream\\": "src/"
  9994. }
  9995. },
  9996. "notification-url": "https://packagist.org/downloads/",
  9997. "license": [
  9998. "MIT"
  9999. ],
  10000. "authors": [
  10001. {
  10002. "name": "Christian Lück",
  10003. "email": "christian@clue.engineering",
  10004. "homepage": "https://clue.engineering/"
  10005. },
  10006. {
  10007. "name": "Cees-Jan Kiewiet",
  10008. "email": "reactphp@ceesjankiewiet.nl",
  10009. "homepage": "https://wyrihaximus.net/"
  10010. },
  10011. {
  10012. "name": "Jan Sorgalla",
  10013. "email": "jsorgalla@gmail.com",
  10014. "homepage": "https://sorgalla.com/"
  10015. },
  10016. {
  10017. "name": "Chris Boden",
  10018. "email": "cboden@gmail.com",
  10019. "homepage": "https://cboden.dev/"
  10020. }
  10021. ],
  10022. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10023. "keywords": [
  10024. "event-driven",
  10025. "io",
  10026. "non-blocking",
  10027. "pipe",
  10028. "reactphp",
  10029. "readable",
  10030. "stream",
  10031. "writable"
  10032. ],
  10033. "support": {
  10034. "issues": "https://github.com/reactphp/stream/issues",
  10035. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10036. },
  10037. "funding": [
  10038. {
  10039. "url": "https://opencollective.com/reactphp",
  10040. "type": "open_collective"
  10041. }
  10042. ],
  10043. "time": "2024-06-11T12:45:25+00:00"
  10044. },
  10045. {
  10046. "name": "sebastian/cli-parser",
  10047. "version": "2.0.1",
  10048. "source": {
  10049. "type": "git",
  10050. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10051. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10052. },
  10053. "dist": {
  10054. "type": "zip",
  10055. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10056. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10057. "shasum": ""
  10058. },
  10059. "require": {
  10060. "php": ">=8.1"
  10061. },
  10062. "require-dev": {
  10063. "phpunit/phpunit": "^10.0"
  10064. },
  10065. "type": "library",
  10066. "extra": {
  10067. "branch-alias": {
  10068. "dev-main": "2.0-dev"
  10069. }
  10070. },
  10071. "autoload": {
  10072. "classmap": [
  10073. "src/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "BSD-3-Clause"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Sebastian Bergmann",
  10083. "email": "sebastian@phpunit.de",
  10084. "role": "lead"
  10085. }
  10086. ],
  10087. "description": "Library for parsing CLI options",
  10088. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10089. "support": {
  10090. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10091. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10092. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10093. },
  10094. "funding": [
  10095. {
  10096. "url": "https://github.com/sebastianbergmann",
  10097. "type": "github"
  10098. }
  10099. ],
  10100. "time": "2024-03-02T07:12:49+00:00"
  10101. },
  10102. {
  10103. "name": "sebastian/code-unit",
  10104. "version": "2.0.0",
  10105. "source": {
  10106. "type": "git",
  10107. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10108. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10109. },
  10110. "dist": {
  10111. "type": "zip",
  10112. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10113. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10114. "shasum": ""
  10115. },
  10116. "require": {
  10117. "php": ">=8.1"
  10118. },
  10119. "require-dev": {
  10120. "phpunit/phpunit": "^10.0"
  10121. },
  10122. "type": "library",
  10123. "extra": {
  10124. "branch-alias": {
  10125. "dev-main": "2.0-dev"
  10126. }
  10127. },
  10128. "autoload": {
  10129. "classmap": [
  10130. "src/"
  10131. ]
  10132. },
  10133. "notification-url": "https://packagist.org/downloads/",
  10134. "license": [
  10135. "BSD-3-Clause"
  10136. ],
  10137. "authors": [
  10138. {
  10139. "name": "Sebastian Bergmann",
  10140. "email": "sebastian@phpunit.de",
  10141. "role": "lead"
  10142. }
  10143. ],
  10144. "description": "Collection of value objects that represent the PHP code units",
  10145. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10146. "support": {
  10147. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10148. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10149. },
  10150. "funding": [
  10151. {
  10152. "url": "https://github.com/sebastianbergmann",
  10153. "type": "github"
  10154. }
  10155. ],
  10156. "time": "2023-02-03T06:58:43+00:00"
  10157. },
  10158. {
  10159. "name": "sebastian/code-unit-reverse-lookup",
  10160. "version": "3.0.0",
  10161. "source": {
  10162. "type": "git",
  10163. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10164. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10165. },
  10166. "dist": {
  10167. "type": "zip",
  10168. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10169. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10170. "shasum": ""
  10171. },
  10172. "require": {
  10173. "php": ">=8.1"
  10174. },
  10175. "require-dev": {
  10176. "phpunit/phpunit": "^10.0"
  10177. },
  10178. "type": "library",
  10179. "extra": {
  10180. "branch-alias": {
  10181. "dev-main": "3.0-dev"
  10182. }
  10183. },
  10184. "autoload": {
  10185. "classmap": [
  10186. "src/"
  10187. ]
  10188. },
  10189. "notification-url": "https://packagist.org/downloads/",
  10190. "license": [
  10191. "BSD-3-Clause"
  10192. ],
  10193. "authors": [
  10194. {
  10195. "name": "Sebastian Bergmann",
  10196. "email": "sebastian@phpunit.de"
  10197. }
  10198. ],
  10199. "description": "Looks up which function or method a line of code belongs to",
  10200. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10201. "support": {
  10202. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10203. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10204. },
  10205. "funding": [
  10206. {
  10207. "url": "https://github.com/sebastianbergmann",
  10208. "type": "github"
  10209. }
  10210. ],
  10211. "time": "2023-02-03T06:59:15+00:00"
  10212. },
  10213. {
  10214. "name": "sebastian/comparator",
  10215. "version": "5.0.3",
  10216. "source": {
  10217. "type": "git",
  10218. "url": "https://github.com/sebastianbergmann/comparator.git",
  10219. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10220. },
  10221. "dist": {
  10222. "type": "zip",
  10223. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10224. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10225. "shasum": ""
  10226. },
  10227. "require": {
  10228. "ext-dom": "*",
  10229. "ext-mbstring": "*",
  10230. "php": ">=8.1",
  10231. "sebastian/diff": "^5.0",
  10232. "sebastian/exporter": "^5.0"
  10233. },
  10234. "require-dev": {
  10235. "phpunit/phpunit": "^10.5"
  10236. },
  10237. "type": "library",
  10238. "extra": {
  10239. "branch-alias": {
  10240. "dev-main": "5.0-dev"
  10241. }
  10242. },
  10243. "autoload": {
  10244. "classmap": [
  10245. "src/"
  10246. ]
  10247. },
  10248. "notification-url": "https://packagist.org/downloads/",
  10249. "license": [
  10250. "BSD-3-Clause"
  10251. ],
  10252. "authors": [
  10253. {
  10254. "name": "Sebastian Bergmann",
  10255. "email": "sebastian@phpunit.de"
  10256. },
  10257. {
  10258. "name": "Jeff Welch",
  10259. "email": "whatthejeff@gmail.com"
  10260. },
  10261. {
  10262. "name": "Volker Dusch",
  10263. "email": "github@wallbash.com"
  10264. },
  10265. {
  10266. "name": "Bernhard Schussek",
  10267. "email": "bschussek@2bepublished.at"
  10268. }
  10269. ],
  10270. "description": "Provides the functionality to compare PHP values for equality",
  10271. "homepage": "https://github.com/sebastianbergmann/comparator",
  10272. "keywords": [
  10273. "comparator",
  10274. "compare",
  10275. "equality"
  10276. ],
  10277. "support": {
  10278. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10279. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10280. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10281. },
  10282. "funding": [
  10283. {
  10284. "url": "https://github.com/sebastianbergmann",
  10285. "type": "github"
  10286. }
  10287. ],
  10288. "time": "2024-10-18T14:56:07+00:00"
  10289. },
  10290. {
  10291. "name": "sebastian/complexity",
  10292. "version": "3.2.0",
  10293. "source": {
  10294. "type": "git",
  10295. "url": "https://github.com/sebastianbergmann/complexity.git",
  10296. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10297. },
  10298. "dist": {
  10299. "type": "zip",
  10300. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10301. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10302. "shasum": ""
  10303. },
  10304. "require": {
  10305. "nikic/php-parser": "^4.18 || ^5.0",
  10306. "php": ">=8.1"
  10307. },
  10308. "require-dev": {
  10309. "phpunit/phpunit": "^10.0"
  10310. },
  10311. "type": "library",
  10312. "extra": {
  10313. "branch-alias": {
  10314. "dev-main": "3.2-dev"
  10315. }
  10316. },
  10317. "autoload": {
  10318. "classmap": [
  10319. "src/"
  10320. ]
  10321. },
  10322. "notification-url": "https://packagist.org/downloads/",
  10323. "license": [
  10324. "BSD-3-Clause"
  10325. ],
  10326. "authors": [
  10327. {
  10328. "name": "Sebastian Bergmann",
  10329. "email": "sebastian@phpunit.de",
  10330. "role": "lead"
  10331. }
  10332. ],
  10333. "description": "Library for calculating the complexity of PHP code units",
  10334. "homepage": "https://github.com/sebastianbergmann/complexity",
  10335. "support": {
  10336. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10337. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10338. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10339. },
  10340. "funding": [
  10341. {
  10342. "url": "https://github.com/sebastianbergmann",
  10343. "type": "github"
  10344. }
  10345. ],
  10346. "time": "2023-12-21T08:37:17+00:00"
  10347. },
  10348. {
  10349. "name": "sebastian/diff",
  10350. "version": "5.1.1",
  10351. "source": {
  10352. "type": "git",
  10353. "url": "https://github.com/sebastianbergmann/diff.git",
  10354. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10355. },
  10356. "dist": {
  10357. "type": "zip",
  10358. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10359. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10360. "shasum": ""
  10361. },
  10362. "require": {
  10363. "php": ">=8.1"
  10364. },
  10365. "require-dev": {
  10366. "phpunit/phpunit": "^10.0",
  10367. "symfony/process": "^6.4"
  10368. },
  10369. "type": "library",
  10370. "extra": {
  10371. "branch-alias": {
  10372. "dev-main": "5.1-dev"
  10373. }
  10374. },
  10375. "autoload": {
  10376. "classmap": [
  10377. "src/"
  10378. ]
  10379. },
  10380. "notification-url": "https://packagist.org/downloads/",
  10381. "license": [
  10382. "BSD-3-Clause"
  10383. ],
  10384. "authors": [
  10385. {
  10386. "name": "Sebastian Bergmann",
  10387. "email": "sebastian@phpunit.de"
  10388. },
  10389. {
  10390. "name": "Kore Nordmann",
  10391. "email": "mail@kore-nordmann.de"
  10392. }
  10393. ],
  10394. "description": "Diff implementation",
  10395. "homepage": "https://github.com/sebastianbergmann/diff",
  10396. "keywords": [
  10397. "diff",
  10398. "udiff",
  10399. "unidiff",
  10400. "unified diff"
  10401. ],
  10402. "support": {
  10403. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10404. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10405. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10406. },
  10407. "funding": [
  10408. {
  10409. "url": "https://github.com/sebastianbergmann",
  10410. "type": "github"
  10411. }
  10412. ],
  10413. "time": "2024-03-02T07:15:17+00:00"
  10414. },
  10415. {
  10416. "name": "sebastian/environment",
  10417. "version": "6.1.0",
  10418. "source": {
  10419. "type": "git",
  10420. "url": "https://github.com/sebastianbergmann/environment.git",
  10421. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10422. },
  10423. "dist": {
  10424. "type": "zip",
  10425. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10426. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10427. "shasum": ""
  10428. },
  10429. "require": {
  10430. "php": ">=8.1"
  10431. },
  10432. "require-dev": {
  10433. "phpunit/phpunit": "^10.0"
  10434. },
  10435. "suggest": {
  10436. "ext-posix": "*"
  10437. },
  10438. "type": "library",
  10439. "extra": {
  10440. "branch-alias": {
  10441. "dev-main": "6.1-dev"
  10442. }
  10443. },
  10444. "autoload": {
  10445. "classmap": [
  10446. "src/"
  10447. ]
  10448. },
  10449. "notification-url": "https://packagist.org/downloads/",
  10450. "license": [
  10451. "BSD-3-Clause"
  10452. ],
  10453. "authors": [
  10454. {
  10455. "name": "Sebastian Bergmann",
  10456. "email": "sebastian@phpunit.de"
  10457. }
  10458. ],
  10459. "description": "Provides functionality to handle HHVM/PHP environments",
  10460. "homepage": "https://github.com/sebastianbergmann/environment",
  10461. "keywords": [
  10462. "Xdebug",
  10463. "environment",
  10464. "hhvm"
  10465. ],
  10466. "support": {
  10467. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10468. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10469. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10470. },
  10471. "funding": [
  10472. {
  10473. "url": "https://github.com/sebastianbergmann",
  10474. "type": "github"
  10475. }
  10476. ],
  10477. "time": "2024-03-23T08:47:14+00:00"
  10478. },
  10479. {
  10480. "name": "sebastian/exporter",
  10481. "version": "5.1.2",
  10482. "source": {
  10483. "type": "git",
  10484. "url": "https://github.com/sebastianbergmann/exporter.git",
  10485. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10486. },
  10487. "dist": {
  10488. "type": "zip",
  10489. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10490. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10491. "shasum": ""
  10492. },
  10493. "require": {
  10494. "ext-mbstring": "*",
  10495. "php": ">=8.1",
  10496. "sebastian/recursion-context": "^5.0"
  10497. },
  10498. "require-dev": {
  10499. "phpunit/phpunit": "^10.0"
  10500. },
  10501. "type": "library",
  10502. "extra": {
  10503. "branch-alias": {
  10504. "dev-main": "5.1-dev"
  10505. }
  10506. },
  10507. "autoload": {
  10508. "classmap": [
  10509. "src/"
  10510. ]
  10511. },
  10512. "notification-url": "https://packagist.org/downloads/",
  10513. "license": [
  10514. "BSD-3-Clause"
  10515. ],
  10516. "authors": [
  10517. {
  10518. "name": "Sebastian Bergmann",
  10519. "email": "sebastian@phpunit.de"
  10520. },
  10521. {
  10522. "name": "Jeff Welch",
  10523. "email": "whatthejeff@gmail.com"
  10524. },
  10525. {
  10526. "name": "Volker Dusch",
  10527. "email": "github@wallbash.com"
  10528. },
  10529. {
  10530. "name": "Adam Harvey",
  10531. "email": "aharvey@php.net"
  10532. },
  10533. {
  10534. "name": "Bernhard Schussek",
  10535. "email": "bschussek@gmail.com"
  10536. }
  10537. ],
  10538. "description": "Provides the functionality to export PHP variables for visualization",
  10539. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10540. "keywords": [
  10541. "export",
  10542. "exporter"
  10543. ],
  10544. "support": {
  10545. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10546. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10547. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10548. },
  10549. "funding": [
  10550. {
  10551. "url": "https://github.com/sebastianbergmann",
  10552. "type": "github"
  10553. }
  10554. ],
  10555. "time": "2024-03-02T07:17:12+00:00"
  10556. },
  10557. {
  10558. "name": "sebastian/global-state",
  10559. "version": "6.0.2",
  10560. "source": {
  10561. "type": "git",
  10562. "url": "https://github.com/sebastianbergmann/global-state.git",
  10563. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10564. },
  10565. "dist": {
  10566. "type": "zip",
  10567. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10568. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10569. "shasum": ""
  10570. },
  10571. "require": {
  10572. "php": ">=8.1",
  10573. "sebastian/object-reflector": "^3.0",
  10574. "sebastian/recursion-context": "^5.0"
  10575. },
  10576. "require-dev": {
  10577. "ext-dom": "*",
  10578. "phpunit/phpunit": "^10.0"
  10579. },
  10580. "type": "library",
  10581. "extra": {
  10582. "branch-alias": {
  10583. "dev-main": "6.0-dev"
  10584. }
  10585. },
  10586. "autoload": {
  10587. "classmap": [
  10588. "src/"
  10589. ]
  10590. },
  10591. "notification-url": "https://packagist.org/downloads/",
  10592. "license": [
  10593. "BSD-3-Clause"
  10594. ],
  10595. "authors": [
  10596. {
  10597. "name": "Sebastian Bergmann",
  10598. "email": "sebastian@phpunit.de"
  10599. }
  10600. ],
  10601. "description": "Snapshotting of global state",
  10602. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10603. "keywords": [
  10604. "global state"
  10605. ],
  10606. "support": {
  10607. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10608. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10609. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10610. },
  10611. "funding": [
  10612. {
  10613. "url": "https://github.com/sebastianbergmann",
  10614. "type": "github"
  10615. }
  10616. ],
  10617. "time": "2024-03-02T07:19:19+00:00"
  10618. },
  10619. {
  10620. "name": "sebastian/lines-of-code",
  10621. "version": "2.0.2",
  10622. "source": {
  10623. "type": "git",
  10624. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10625. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10626. },
  10627. "dist": {
  10628. "type": "zip",
  10629. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10630. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10631. "shasum": ""
  10632. },
  10633. "require": {
  10634. "nikic/php-parser": "^4.18 || ^5.0",
  10635. "php": ">=8.1"
  10636. },
  10637. "require-dev": {
  10638. "phpunit/phpunit": "^10.0"
  10639. },
  10640. "type": "library",
  10641. "extra": {
  10642. "branch-alias": {
  10643. "dev-main": "2.0-dev"
  10644. }
  10645. },
  10646. "autoload": {
  10647. "classmap": [
  10648. "src/"
  10649. ]
  10650. },
  10651. "notification-url": "https://packagist.org/downloads/",
  10652. "license": [
  10653. "BSD-3-Clause"
  10654. ],
  10655. "authors": [
  10656. {
  10657. "name": "Sebastian Bergmann",
  10658. "email": "sebastian@phpunit.de",
  10659. "role": "lead"
  10660. }
  10661. ],
  10662. "description": "Library for counting the lines of code in PHP source code",
  10663. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10664. "support": {
  10665. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10666. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10667. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10668. },
  10669. "funding": [
  10670. {
  10671. "url": "https://github.com/sebastianbergmann",
  10672. "type": "github"
  10673. }
  10674. ],
  10675. "time": "2023-12-21T08:38:20+00:00"
  10676. },
  10677. {
  10678. "name": "sebastian/object-enumerator",
  10679. "version": "5.0.0",
  10680. "source": {
  10681. "type": "git",
  10682. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10683. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10684. },
  10685. "dist": {
  10686. "type": "zip",
  10687. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10688. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10689. "shasum": ""
  10690. },
  10691. "require": {
  10692. "php": ">=8.1",
  10693. "sebastian/object-reflector": "^3.0",
  10694. "sebastian/recursion-context": "^5.0"
  10695. },
  10696. "require-dev": {
  10697. "phpunit/phpunit": "^10.0"
  10698. },
  10699. "type": "library",
  10700. "extra": {
  10701. "branch-alias": {
  10702. "dev-main": "5.0-dev"
  10703. }
  10704. },
  10705. "autoload": {
  10706. "classmap": [
  10707. "src/"
  10708. ]
  10709. },
  10710. "notification-url": "https://packagist.org/downloads/",
  10711. "license": [
  10712. "BSD-3-Clause"
  10713. ],
  10714. "authors": [
  10715. {
  10716. "name": "Sebastian Bergmann",
  10717. "email": "sebastian@phpunit.de"
  10718. }
  10719. ],
  10720. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10721. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10722. "support": {
  10723. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10724. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10725. },
  10726. "funding": [
  10727. {
  10728. "url": "https://github.com/sebastianbergmann",
  10729. "type": "github"
  10730. }
  10731. ],
  10732. "time": "2023-02-03T07:08:32+00:00"
  10733. },
  10734. {
  10735. "name": "sebastian/object-reflector",
  10736. "version": "3.0.0",
  10737. "source": {
  10738. "type": "git",
  10739. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10740. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10741. },
  10742. "dist": {
  10743. "type": "zip",
  10744. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10745. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10746. "shasum": ""
  10747. },
  10748. "require": {
  10749. "php": ">=8.1"
  10750. },
  10751. "require-dev": {
  10752. "phpunit/phpunit": "^10.0"
  10753. },
  10754. "type": "library",
  10755. "extra": {
  10756. "branch-alias": {
  10757. "dev-main": "3.0-dev"
  10758. }
  10759. },
  10760. "autoload": {
  10761. "classmap": [
  10762. "src/"
  10763. ]
  10764. },
  10765. "notification-url": "https://packagist.org/downloads/",
  10766. "license": [
  10767. "BSD-3-Clause"
  10768. ],
  10769. "authors": [
  10770. {
  10771. "name": "Sebastian Bergmann",
  10772. "email": "sebastian@phpunit.de"
  10773. }
  10774. ],
  10775. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10776. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10777. "support": {
  10778. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10779. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10780. },
  10781. "funding": [
  10782. {
  10783. "url": "https://github.com/sebastianbergmann",
  10784. "type": "github"
  10785. }
  10786. ],
  10787. "time": "2023-02-03T07:06:18+00:00"
  10788. },
  10789. {
  10790. "name": "sebastian/recursion-context",
  10791. "version": "5.0.0",
  10792. "source": {
  10793. "type": "git",
  10794. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10795. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10796. },
  10797. "dist": {
  10798. "type": "zip",
  10799. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10800. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10801. "shasum": ""
  10802. },
  10803. "require": {
  10804. "php": ">=8.1"
  10805. },
  10806. "require-dev": {
  10807. "phpunit/phpunit": "^10.0"
  10808. },
  10809. "type": "library",
  10810. "extra": {
  10811. "branch-alias": {
  10812. "dev-main": "5.0-dev"
  10813. }
  10814. },
  10815. "autoload": {
  10816. "classmap": [
  10817. "src/"
  10818. ]
  10819. },
  10820. "notification-url": "https://packagist.org/downloads/",
  10821. "license": [
  10822. "BSD-3-Clause"
  10823. ],
  10824. "authors": [
  10825. {
  10826. "name": "Sebastian Bergmann",
  10827. "email": "sebastian@phpunit.de"
  10828. },
  10829. {
  10830. "name": "Jeff Welch",
  10831. "email": "whatthejeff@gmail.com"
  10832. },
  10833. {
  10834. "name": "Adam Harvey",
  10835. "email": "aharvey@php.net"
  10836. }
  10837. ],
  10838. "description": "Provides functionality to recursively process PHP variables",
  10839. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10840. "support": {
  10841. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10842. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10843. },
  10844. "funding": [
  10845. {
  10846. "url": "https://github.com/sebastianbergmann",
  10847. "type": "github"
  10848. }
  10849. ],
  10850. "time": "2023-02-03T07:05:40+00:00"
  10851. },
  10852. {
  10853. "name": "sebastian/type",
  10854. "version": "4.0.0",
  10855. "source": {
  10856. "type": "git",
  10857. "url": "https://github.com/sebastianbergmann/type.git",
  10858. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10859. },
  10860. "dist": {
  10861. "type": "zip",
  10862. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10863. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10864. "shasum": ""
  10865. },
  10866. "require": {
  10867. "php": ">=8.1"
  10868. },
  10869. "require-dev": {
  10870. "phpunit/phpunit": "^10.0"
  10871. },
  10872. "type": "library",
  10873. "extra": {
  10874. "branch-alias": {
  10875. "dev-main": "4.0-dev"
  10876. }
  10877. },
  10878. "autoload": {
  10879. "classmap": [
  10880. "src/"
  10881. ]
  10882. },
  10883. "notification-url": "https://packagist.org/downloads/",
  10884. "license": [
  10885. "BSD-3-Clause"
  10886. ],
  10887. "authors": [
  10888. {
  10889. "name": "Sebastian Bergmann",
  10890. "email": "sebastian@phpunit.de",
  10891. "role": "lead"
  10892. }
  10893. ],
  10894. "description": "Collection of value objects that represent the types of the PHP type system",
  10895. "homepage": "https://github.com/sebastianbergmann/type",
  10896. "support": {
  10897. "issues": "https://github.com/sebastianbergmann/type/issues",
  10898. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10899. },
  10900. "funding": [
  10901. {
  10902. "url": "https://github.com/sebastianbergmann",
  10903. "type": "github"
  10904. }
  10905. ],
  10906. "time": "2023-02-03T07:10:45+00:00"
  10907. },
  10908. {
  10909. "name": "sebastian/version",
  10910. "version": "4.0.1",
  10911. "source": {
  10912. "type": "git",
  10913. "url": "https://github.com/sebastianbergmann/version.git",
  10914. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10915. },
  10916. "dist": {
  10917. "type": "zip",
  10918. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10919. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10920. "shasum": ""
  10921. },
  10922. "require": {
  10923. "php": ">=8.1"
  10924. },
  10925. "type": "library",
  10926. "extra": {
  10927. "branch-alias": {
  10928. "dev-main": "4.0-dev"
  10929. }
  10930. },
  10931. "autoload": {
  10932. "classmap": [
  10933. "src/"
  10934. ]
  10935. },
  10936. "notification-url": "https://packagist.org/downloads/",
  10937. "license": [
  10938. "BSD-3-Clause"
  10939. ],
  10940. "authors": [
  10941. {
  10942. "name": "Sebastian Bergmann",
  10943. "email": "sebastian@phpunit.de",
  10944. "role": "lead"
  10945. }
  10946. ],
  10947. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10948. "homepage": "https://github.com/sebastianbergmann/version",
  10949. "support": {
  10950. "issues": "https://github.com/sebastianbergmann/version/issues",
  10951. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10952. },
  10953. "funding": [
  10954. {
  10955. "url": "https://github.com/sebastianbergmann",
  10956. "type": "github"
  10957. }
  10958. ],
  10959. "time": "2023-02-07T11:34:05+00:00"
  10960. },
  10961. {
  10962. "name": "swoole/ide-helper",
  10963. "version": "5.1.6",
  10964. "source": {
  10965. "type": "git",
  10966. "url": "https://github.com/swoole/ide-helper.git",
  10967. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  10968. },
  10969. "dist": {
  10970. "type": "zip",
  10971. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10972. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10973. "shasum": ""
  10974. },
  10975. "type": "library",
  10976. "notification-url": "https://packagist.org/downloads/",
  10977. "license": [
  10978. "Apache-2.0"
  10979. ],
  10980. "authors": [
  10981. {
  10982. "name": "Team Swoole",
  10983. "email": "team@swoole.com"
  10984. }
  10985. ],
  10986. "description": "IDE help files for Swoole.",
  10987. "support": {
  10988. "issues": "https://github.com/swoole/ide-helper/issues",
  10989. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  10990. },
  10991. "time": "2024-11-29T07:21:36+00:00"
  10992. },
  10993. {
  10994. "name": "symfony/event-dispatcher",
  10995. "version": "v6.4.13",
  10996. "source": {
  10997. "type": "git",
  10998. "url": "https://github.com/symfony/event-dispatcher.git",
  10999. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11000. },
  11001. "dist": {
  11002. "type": "zip",
  11003. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11004. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11005. "shasum": ""
  11006. },
  11007. "require": {
  11008. "php": ">=8.1",
  11009. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11010. },
  11011. "conflict": {
  11012. "symfony/dependency-injection": "<5.4",
  11013. "symfony/service-contracts": "<2.5"
  11014. },
  11015. "provide": {
  11016. "psr/event-dispatcher-implementation": "1.0",
  11017. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11018. },
  11019. "require-dev": {
  11020. "psr/log": "^1|^2|^3",
  11021. "symfony/config": "^5.4|^6.0|^7.0",
  11022. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11023. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11024. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11025. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11026. "symfony/service-contracts": "^2.5|^3",
  11027. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11028. },
  11029. "type": "library",
  11030. "autoload": {
  11031. "psr-4": {
  11032. "Symfony\\Component\\EventDispatcher\\": ""
  11033. },
  11034. "exclude-from-classmap": [
  11035. "/Tests/"
  11036. ]
  11037. },
  11038. "notification-url": "https://packagist.org/downloads/",
  11039. "license": [
  11040. "MIT"
  11041. ],
  11042. "authors": [
  11043. {
  11044. "name": "Fabien Potencier",
  11045. "email": "fabien@symfony.com"
  11046. },
  11047. {
  11048. "name": "Symfony Community",
  11049. "homepage": "https://symfony.com/contributors"
  11050. }
  11051. ],
  11052. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11053. "homepage": "https://symfony.com",
  11054. "support": {
  11055. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11056. },
  11057. "funding": [
  11058. {
  11059. "url": "https://symfony.com/sponsor",
  11060. "type": "custom"
  11061. },
  11062. {
  11063. "url": "https://github.com/fabpot",
  11064. "type": "github"
  11065. },
  11066. {
  11067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11068. "type": "tidelift"
  11069. }
  11070. ],
  11071. "time": "2024-09-25T14:18:03+00:00"
  11072. },
  11073. {
  11074. "name": "symfony/event-dispatcher-contracts",
  11075. "version": "v3.5.1",
  11076. "source": {
  11077. "type": "git",
  11078. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11079. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11080. },
  11081. "dist": {
  11082. "type": "zip",
  11083. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11084. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11085. "shasum": ""
  11086. },
  11087. "require": {
  11088. "php": ">=8.1",
  11089. "psr/event-dispatcher": "^1"
  11090. },
  11091. "type": "library",
  11092. "extra": {
  11093. "thanks": {
  11094. "url": "https://github.com/symfony/contracts",
  11095. "name": "symfony/contracts"
  11096. },
  11097. "branch-alias": {
  11098. "dev-main": "3.5-dev"
  11099. }
  11100. },
  11101. "autoload": {
  11102. "psr-4": {
  11103. "Symfony\\Contracts\\EventDispatcher\\": ""
  11104. }
  11105. },
  11106. "notification-url": "https://packagist.org/downloads/",
  11107. "license": [
  11108. "MIT"
  11109. ],
  11110. "authors": [
  11111. {
  11112. "name": "Nicolas Grekas",
  11113. "email": "p@tchwork.com"
  11114. },
  11115. {
  11116. "name": "Symfony Community",
  11117. "homepage": "https://symfony.com/contributors"
  11118. }
  11119. ],
  11120. "description": "Generic abstractions related to dispatching event",
  11121. "homepage": "https://symfony.com",
  11122. "keywords": [
  11123. "abstractions",
  11124. "contracts",
  11125. "decoupling",
  11126. "interfaces",
  11127. "interoperability",
  11128. "standards"
  11129. ],
  11130. "support": {
  11131. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11132. },
  11133. "funding": [
  11134. {
  11135. "url": "https://symfony.com/sponsor",
  11136. "type": "custom"
  11137. },
  11138. {
  11139. "url": "https://github.com/fabpot",
  11140. "type": "github"
  11141. },
  11142. {
  11143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11144. "type": "tidelift"
  11145. }
  11146. ],
  11147. "time": "2024-09-25T14:20:29+00:00"
  11148. },
  11149. {
  11150. "name": "symfony/filesystem",
  11151. "version": "v6.4.13",
  11152. "source": {
  11153. "type": "git",
  11154. "url": "https://github.com/symfony/filesystem.git",
  11155. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11156. },
  11157. "dist": {
  11158. "type": "zip",
  11159. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11160. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11161. "shasum": ""
  11162. },
  11163. "require": {
  11164. "php": ">=8.1",
  11165. "symfony/polyfill-ctype": "~1.8",
  11166. "symfony/polyfill-mbstring": "~1.8"
  11167. },
  11168. "require-dev": {
  11169. "symfony/process": "^5.4|^6.4|^7.0"
  11170. },
  11171. "type": "library",
  11172. "autoload": {
  11173. "psr-4": {
  11174. "Symfony\\Component\\Filesystem\\": ""
  11175. },
  11176. "exclude-from-classmap": [
  11177. "/Tests/"
  11178. ]
  11179. },
  11180. "notification-url": "https://packagist.org/downloads/",
  11181. "license": [
  11182. "MIT"
  11183. ],
  11184. "authors": [
  11185. {
  11186. "name": "Fabien Potencier",
  11187. "email": "fabien@symfony.com"
  11188. },
  11189. {
  11190. "name": "Symfony Community",
  11191. "homepage": "https://symfony.com/contributors"
  11192. }
  11193. ],
  11194. "description": "Provides basic utilities for the filesystem",
  11195. "homepage": "https://symfony.com",
  11196. "support": {
  11197. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11198. },
  11199. "funding": [
  11200. {
  11201. "url": "https://symfony.com/sponsor",
  11202. "type": "custom"
  11203. },
  11204. {
  11205. "url": "https://github.com/fabpot",
  11206. "type": "github"
  11207. },
  11208. {
  11209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11210. "type": "tidelift"
  11211. }
  11212. ],
  11213. "time": "2024-10-25T15:07:50+00:00"
  11214. },
  11215. {
  11216. "name": "symfony/http-foundation",
  11217. "version": "v6.4.18",
  11218. "source": {
  11219. "type": "git",
  11220. "url": "https://github.com/symfony/http-foundation.git",
  11221. "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db"
  11222. },
  11223. "dist": {
  11224. "type": "zip",
  11225. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0492d6217e5ab48f51fca76f64cf8e78919d0db",
  11226. "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db",
  11227. "shasum": ""
  11228. },
  11229. "require": {
  11230. "php": ">=8.1",
  11231. "symfony/deprecation-contracts": "^2.5|^3",
  11232. "symfony/polyfill-mbstring": "~1.1",
  11233. "symfony/polyfill-php83": "^1.27"
  11234. },
  11235. "conflict": {
  11236. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11237. },
  11238. "require-dev": {
  11239. "doctrine/dbal": "^2.13.1|^3|^4",
  11240. "predis/predis": "^1.1|^2.0",
  11241. "symfony/cache": "^6.4.12|^7.1.5",
  11242. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11243. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11244. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11245. "symfony/mime": "^5.4|^6.0|^7.0",
  11246. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11247. },
  11248. "type": "library",
  11249. "autoload": {
  11250. "psr-4": {
  11251. "Symfony\\Component\\HttpFoundation\\": ""
  11252. },
  11253. "exclude-from-classmap": [
  11254. "/Tests/"
  11255. ]
  11256. },
  11257. "notification-url": "https://packagist.org/downloads/",
  11258. "license": [
  11259. "MIT"
  11260. ],
  11261. "authors": [
  11262. {
  11263. "name": "Fabien Potencier",
  11264. "email": "fabien@symfony.com"
  11265. },
  11266. {
  11267. "name": "Symfony Community",
  11268. "homepage": "https://symfony.com/contributors"
  11269. }
  11270. ],
  11271. "description": "Defines an object-oriented layer for the HTTP specification",
  11272. "homepage": "https://symfony.com",
  11273. "support": {
  11274. "source": "https://github.com/symfony/http-foundation/tree/v6.4.18"
  11275. },
  11276. "funding": [
  11277. {
  11278. "url": "https://symfony.com/sponsor",
  11279. "type": "custom"
  11280. },
  11281. {
  11282. "url": "https://github.com/fabpot",
  11283. "type": "github"
  11284. },
  11285. {
  11286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11287. "type": "tidelift"
  11288. }
  11289. ],
  11290. "time": "2025-01-09T15:48:56+00:00"
  11291. },
  11292. {
  11293. "name": "symfony/options-resolver",
  11294. "version": "v6.4.16",
  11295. "source": {
  11296. "type": "git",
  11297. "url": "https://github.com/symfony/options-resolver.git",
  11298. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  11299. },
  11300. "dist": {
  11301. "type": "zip",
  11302. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  11303. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  11304. "shasum": ""
  11305. },
  11306. "require": {
  11307. "php": ">=8.1",
  11308. "symfony/deprecation-contracts": "^2.5|^3"
  11309. },
  11310. "type": "library",
  11311. "autoload": {
  11312. "psr-4": {
  11313. "Symfony\\Component\\OptionsResolver\\": ""
  11314. },
  11315. "exclude-from-classmap": [
  11316. "/Tests/"
  11317. ]
  11318. },
  11319. "notification-url": "https://packagist.org/downloads/",
  11320. "license": [
  11321. "MIT"
  11322. ],
  11323. "authors": [
  11324. {
  11325. "name": "Fabien Potencier",
  11326. "email": "fabien@symfony.com"
  11327. },
  11328. {
  11329. "name": "Symfony Community",
  11330. "homepage": "https://symfony.com/contributors"
  11331. }
  11332. ],
  11333. "description": "Provides an improved replacement for the array_replace PHP function",
  11334. "homepage": "https://symfony.com",
  11335. "keywords": [
  11336. "config",
  11337. "configuration",
  11338. "options"
  11339. ],
  11340. "support": {
  11341. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  11342. },
  11343. "funding": [
  11344. {
  11345. "url": "https://symfony.com/sponsor",
  11346. "type": "custom"
  11347. },
  11348. {
  11349. "url": "https://github.com/fabpot",
  11350. "type": "github"
  11351. },
  11352. {
  11353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11354. "type": "tidelift"
  11355. }
  11356. ],
  11357. "time": "2024-11-20T10:57:02+00:00"
  11358. },
  11359. {
  11360. "name": "symfony/polyfill-php81",
  11361. "version": "v1.31.0",
  11362. "source": {
  11363. "type": "git",
  11364. "url": "https://github.com/symfony/polyfill-php81.git",
  11365. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11366. },
  11367. "dist": {
  11368. "type": "zip",
  11369. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11370. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11371. "shasum": ""
  11372. },
  11373. "require": {
  11374. "php": ">=7.2"
  11375. },
  11376. "type": "library",
  11377. "extra": {
  11378. "thanks": {
  11379. "url": "https://github.com/symfony/polyfill",
  11380. "name": "symfony/polyfill"
  11381. }
  11382. },
  11383. "autoload": {
  11384. "files": [
  11385. "bootstrap.php"
  11386. ],
  11387. "psr-4": {
  11388. "Symfony\\Polyfill\\Php81\\": ""
  11389. },
  11390. "classmap": [
  11391. "Resources/stubs"
  11392. ]
  11393. },
  11394. "notification-url": "https://packagist.org/downloads/",
  11395. "license": [
  11396. "MIT"
  11397. ],
  11398. "authors": [
  11399. {
  11400. "name": "Nicolas Grekas",
  11401. "email": "p@tchwork.com"
  11402. },
  11403. {
  11404. "name": "Symfony Community",
  11405. "homepage": "https://symfony.com/contributors"
  11406. }
  11407. ],
  11408. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11409. "homepage": "https://symfony.com",
  11410. "keywords": [
  11411. "compatibility",
  11412. "polyfill",
  11413. "portable",
  11414. "shim"
  11415. ],
  11416. "support": {
  11417. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11418. },
  11419. "funding": [
  11420. {
  11421. "url": "https://symfony.com/sponsor",
  11422. "type": "custom"
  11423. },
  11424. {
  11425. "url": "https://github.com/fabpot",
  11426. "type": "github"
  11427. },
  11428. {
  11429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11430. "type": "tidelift"
  11431. }
  11432. ],
  11433. "time": "2024-09-09T11:45:10+00:00"
  11434. },
  11435. {
  11436. "name": "symfony/polyfill-php83",
  11437. "version": "v1.31.0",
  11438. "source": {
  11439. "type": "git",
  11440. "url": "https://github.com/symfony/polyfill-php83.git",
  11441. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11442. },
  11443. "dist": {
  11444. "type": "zip",
  11445. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11446. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11447. "shasum": ""
  11448. },
  11449. "require": {
  11450. "php": ">=7.2"
  11451. },
  11452. "type": "library",
  11453. "extra": {
  11454. "thanks": {
  11455. "url": "https://github.com/symfony/polyfill",
  11456. "name": "symfony/polyfill"
  11457. }
  11458. },
  11459. "autoload": {
  11460. "files": [
  11461. "bootstrap.php"
  11462. ],
  11463. "psr-4": {
  11464. "Symfony\\Polyfill\\Php83\\": ""
  11465. },
  11466. "classmap": [
  11467. "Resources/stubs"
  11468. ]
  11469. },
  11470. "notification-url": "https://packagist.org/downloads/",
  11471. "license": [
  11472. "MIT"
  11473. ],
  11474. "authors": [
  11475. {
  11476. "name": "Nicolas Grekas",
  11477. "email": "p@tchwork.com"
  11478. },
  11479. {
  11480. "name": "Symfony Community",
  11481. "homepage": "https://symfony.com/contributors"
  11482. }
  11483. ],
  11484. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11485. "homepage": "https://symfony.com",
  11486. "keywords": [
  11487. "compatibility",
  11488. "polyfill",
  11489. "portable",
  11490. "shim"
  11491. ],
  11492. "support": {
  11493. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11494. },
  11495. "funding": [
  11496. {
  11497. "url": "https://symfony.com/sponsor",
  11498. "type": "custom"
  11499. },
  11500. {
  11501. "url": "https://github.com/fabpot",
  11502. "type": "github"
  11503. },
  11504. {
  11505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11506. "type": "tidelift"
  11507. }
  11508. ],
  11509. "time": "2024-09-09T11:45:10+00:00"
  11510. },
  11511. {
  11512. "name": "symfony/process",
  11513. "version": "v6.4.15",
  11514. "source": {
  11515. "type": "git",
  11516. "url": "https://github.com/symfony/process.git",
  11517. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11518. },
  11519. "dist": {
  11520. "type": "zip",
  11521. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11522. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11523. "shasum": ""
  11524. },
  11525. "require": {
  11526. "php": ">=8.1"
  11527. },
  11528. "type": "library",
  11529. "autoload": {
  11530. "psr-4": {
  11531. "Symfony\\Component\\Process\\": ""
  11532. },
  11533. "exclude-from-classmap": [
  11534. "/Tests/"
  11535. ]
  11536. },
  11537. "notification-url": "https://packagist.org/downloads/",
  11538. "license": [
  11539. "MIT"
  11540. ],
  11541. "authors": [
  11542. {
  11543. "name": "Fabien Potencier",
  11544. "email": "fabien@symfony.com"
  11545. },
  11546. {
  11547. "name": "Symfony Community",
  11548. "homepage": "https://symfony.com/contributors"
  11549. }
  11550. ],
  11551. "description": "Executes commands in sub-processes",
  11552. "homepage": "https://symfony.com",
  11553. "support": {
  11554. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11555. },
  11556. "funding": [
  11557. {
  11558. "url": "https://symfony.com/sponsor",
  11559. "type": "custom"
  11560. },
  11561. {
  11562. "url": "https://github.com/fabpot",
  11563. "type": "github"
  11564. },
  11565. {
  11566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11567. "type": "tidelift"
  11568. }
  11569. ],
  11570. "time": "2024-11-06T14:19:14+00:00"
  11571. },
  11572. {
  11573. "name": "symfony/stopwatch",
  11574. "version": "v6.4.13",
  11575. "source": {
  11576. "type": "git",
  11577. "url": "https://github.com/symfony/stopwatch.git",
  11578. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11579. },
  11580. "dist": {
  11581. "type": "zip",
  11582. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11583. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11584. "shasum": ""
  11585. },
  11586. "require": {
  11587. "php": ">=8.1",
  11588. "symfony/service-contracts": "^2.5|^3"
  11589. },
  11590. "type": "library",
  11591. "autoload": {
  11592. "psr-4": {
  11593. "Symfony\\Component\\Stopwatch\\": ""
  11594. },
  11595. "exclude-from-classmap": [
  11596. "/Tests/"
  11597. ]
  11598. },
  11599. "notification-url": "https://packagist.org/downloads/",
  11600. "license": [
  11601. "MIT"
  11602. ],
  11603. "authors": [
  11604. {
  11605. "name": "Fabien Potencier",
  11606. "email": "fabien@symfony.com"
  11607. },
  11608. {
  11609. "name": "Symfony Community",
  11610. "homepage": "https://symfony.com/contributors"
  11611. }
  11612. ],
  11613. "description": "Provides a way to profile code",
  11614. "homepage": "https://symfony.com",
  11615. "support": {
  11616. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11617. },
  11618. "funding": [
  11619. {
  11620. "url": "https://symfony.com/sponsor",
  11621. "type": "custom"
  11622. },
  11623. {
  11624. "url": "https://github.com/fabpot",
  11625. "type": "github"
  11626. },
  11627. {
  11628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11629. "type": "tidelift"
  11630. }
  11631. ],
  11632. "time": "2024-09-25T14:18:03+00:00"
  11633. },
  11634. {
  11635. "name": "theseer/tokenizer",
  11636. "version": "1.2.3",
  11637. "source": {
  11638. "type": "git",
  11639. "url": "https://github.com/theseer/tokenizer.git",
  11640. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11641. },
  11642. "dist": {
  11643. "type": "zip",
  11644. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11645. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11646. "shasum": ""
  11647. },
  11648. "require": {
  11649. "ext-dom": "*",
  11650. "ext-tokenizer": "*",
  11651. "ext-xmlwriter": "*",
  11652. "php": "^7.2 || ^8.0"
  11653. },
  11654. "type": "library",
  11655. "autoload": {
  11656. "classmap": [
  11657. "src/"
  11658. ]
  11659. },
  11660. "notification-url": "https://packagist.org/downloads/",
  11661. "license": [
  11662. "BSD-3-Clause"
  11663. ],
  11664. "authors": [
  11665. {
  11666. "name": "Arne Blankerts",
  11667. "email": "arne@blankerts.de",
  11668. "role": "Developer"
  11669. }
  11670. ],
  11671. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11672. "support": {
  11673. "issues": "https://github.com/theseer/tokenizer/issues",
  11674. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11675. },
  11676. "funding": [
  11677. {
  11678. "url": "https://github.com/theseer",
  11679. "type": "github"
  11680. }
  11681. ],
  11682. "time": "2024-03-03T12:36:25+00:00"
  11683. },
  11684. {
  11685. "name": "zx/php-tools",
  11686. "version": "v0.0.1",
  11687. "source": {
  11688. "type": "git",
  11689. "url": "https://gitee.com/open-php/php-tools.git",
  11690. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11691. },
  11692. "require": {
  11693. "php": ">=7.0"
  11694. },
  11695. "type": "library",
  11696. "autoload": {
  11697. "psr-4": {
  11698. "ZX\\": "src/"
  11699. }
  11700. },
  11701. "notification-url": "https://packagist.org/downloads/",
  11702. "license": [
  11703. "mit"
  11704. ],
  11705. "authors": [
  11706. {
  11707. "name": "zx",
  11708. "email": "903464207@qq.com"
  11709. }
  11710. ],
  11711. "description": "php-tools",
  11712. "time": "2023-06-25T06:24:10+00:00"
  11713. }
  11714. ],
  11715. "aliases": [],
  11716. "minimum-stability": "dev",
  11717. "stability-flags": {},
  11718. "prefer-stable": true,
  11719. "prefer-lowest": false,
  11720. "platform": {
  11721. "php": ">=8.1"
  11722. },
  11723. "platform-dev": {},
  11724. "plugin-api-version": "2.6.0"
  11725. }