composer.lock 416 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. <<<<<<< HEAD
  8. "content-hash": "408b8e53c4a0d313ed75355b91296895",
  9. =======
  10. "content-hash": "4a54c2fdd37817347cb2a2874b90a274",
  11. >>>>>>> 20241106_lj_chat
  12. "packages": [
  13. {
  14. "name": "carbonphp/carbon-doctrine-types",
  15. "version": "3.2.0",
  16. "source": {
  17. "type": "git",
  18. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  19. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  20. },
  21. "dist": {
  22. "type": "zip",
  23. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  24. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  25. "shasum": ""
  26. },
  27. "require": {
  28. "php": "^8.1"
  29. },
  30. "conflict": {
  31. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  32. },
  33. "require-dev": {
  34. "doctrine/dbal": "^4.0.0",
  35. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  36. "phpunit/phpunit": "^10.3"
  37. },
  38. "type": "library",
  39. "autoload": {
  40. "psr-4": {
  41. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "KyleKatarn",
  51. "email": "kylekatarnls@gmail.com"
  52. }
  53. ],
  54. "description": "Types to use Carbon in Doctrine",
  55. "keywords": [
  56. "carbon",
  57. "date",
  58. "datetime",
  59. "doctrine",
  60. "time"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  64. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://github.com/kylekatarnls",
  69. "type": "github"
  70. },
  71. {
  72. "url": "https://opencollective.com/Carbon",
  73. "type": "open_collective"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2024-02-09T16:56:22+00:00"
  81. },
  82. {
  83. "name": "death_satan/hyperf-validate",
  84. "version": "v3.71",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  88. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  93. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "hyperf/config": "~3.0",
  98. "hyperf/db-connection": "~3.0",
  99. "hyperf/di": "~3.0",
  100. "hyperf/framework": "~3.0",
  101. "hyperf/validation": "~3.0",
  102. "php": ">=8.0"
  103. },
  104. "require-dev": {
  105. "friendsofphp/php-cs-fixer": "^3.0",
  106. "hyperf/testing": "~3.0",
  107. "mockery/mockery": "^1.0",
  108. "phpstan/phpstan": "^1.0",
  109. "swoole/ide-helper": "^4.5"
  110. },
  111. "suggest": {
  112. "swow/swow": "Required to create swow components."
  113. },
  114. "type": "library",
  115. "extra": {
  116. "hyperf": {
  117. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  118. }
  119. },
  120. "autoload": {
  121. "psr-4": {
  122. "DeathSatan\\Hyperf\\Validate\\": "src/"
  123. }
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "MIT"
  128. ],
  129. "description": "Hyperf Validate",
  130. "keywords": [
  131. "hyperf",
  132. "php",
  133. "validate"
  134. ],
  135. "support": {
  136. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  137. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  138. },
  139. "time": "2023-04-03T17:22:13+00:00"
  140. },
  141. {
  142. "name": "doctrine/annotations",
  143. "version": "2.0.2",
  144. "source": {
  145. "type": "git",
  146. "url": "https://github.com/doctrine/annotations.git",
  147. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  148. },
  149. "dist": {
  150. "type": "zip",
  151. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  152. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  153. "shasum": ""
  154. },
  155. "require": {
  156. "doctrine/lexer": "^2 || ^3",
  157. "ext-tokenizer": "*",
  158. "php": "^7.2 || ^8.0",
  159. "psr/cache": "^1 || ^2 || ^3"
  160. },
  161. "require-dev": {
  162. "doctrine/cache": "^2.0",
  163. "doctrine/coding-standard": "^10",
  164. "phpstan/phpstan": "^1.10.28",
  165. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  166. "symfony/cache": "^5.4 || ^6.4 || ^7",
  167. "vimeo/psalm": "^4.30 || ^5.14"
  168. },
  169. "suggest": {
  170. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  171. },
  172. "type": "library",
  173. "autoload": {
  174. "psr-4": {
  175. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  176. }
  177. },
  178. "notification-url": "https://packagist.org/downloads/",
  179. "license": [
  180. "MIT"
  181. ],
  182. "authors": [
  183. {
  184. "name": "Guilherme Blanco",
  185. "email": "guilhermeblanco@gmail.com"
  186. },
  187. {
  188. "name": "Roman Borschel",
  189. "email": "roman@code-factory.org"
  190. },
  191. {
  192. "name": "Benjamin Eberlei",
  193. "email": "kontakt@beberlei.de"
  194. },
  195. {
  196. "name": "Jonathan Wage",
  197. "email": "jonwage@gmail.com"
  198. },
  199. {
  200. "name": "Johannes Schmitt",
  201. "email": "schmittjoh@gmail.com"
  202. }
  203. ],
  204. "description": "Docblock Annotations Parser",
  205. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  206. "keywords": [
  207. "annotations",
  208. "docblock",
  209. "parser"
  210. ],
  211. "support": {
  212. "issues": "https://github.com/doctrine/annotations/issues",
  213. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  214. },
  215. "time": "2024-09-05T10:17:24+00:00"
  216. },
  217. {
  218. "name": "doctrine/deprecations",
  219. "version": "1.1.3",
  220. "source": {
  221. "type": "git",
  222. "url": "https://github.com/doctrine/deprecations.git",
  223. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  228. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  229. "shasum": ""
  230. },
  231. "require": {
  232. "php": "^7.1 || ^8.0"
  233. },
  234. "require-dev": {
  235. "doctrine/coding-standard": "^9",
  236. "phpstan/phpstan": "1.4.10 || 1.10.15",
  237. "phpstan/phpstan-phpunit": "^1.0",
  238. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  239. "psalm/plugin-phpunit": "0.18.4",
  240. "psr/log": "^1 || ^2 || ^3",
  241. "vimeo/psalm": "4.30.0 || 5.12.0"
  242. },
  243. "suggest": {
  244. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  245. },
  246. "type": "library",
  247. "autoload": {
  248. "psr-4": {
  249. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  250. }
  251. },
  252. "notification-url": "https://packagist.org/downloads/",
  253. "license": [
  254. "MIT"
  255. ],
  256. "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.",
  257. "homepage": "https://www.doctrine-project.org/",
  258. "support": {
  259. "issues": "https://github.com/doctrine/deprecations/issues",
  260. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  261. },
  262. "time": "2024-01-30T19:34:25+00:00"
  263. },
  264. {
  265. "name": "doctrine/inflector",
  266. "version": "2.0.10",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/doctrine/inflector.git",
  270. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  275. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "php": "^7.2 || ^8.0"
  280. },
  281. "require-dev": {
  282. "doctrine/coding-standard": "^11.0",
  283. "phpstan/phpstan": "^1.8",
  284. "phpstan/phpstan-phpunit": "^1.1",
  285. "phpstan/phpstan-strict-rules": "^1.3",
  286. "phpunit/phpunit": "^8.5 || ^9.5",
  287. "vimeo/psalm": "^4.25 || ^5.4"
  288. },
  289. "type": "library",
  290. "autoload": {
  291. "psr-4": {
  292. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  293. }
  294. },
  295. "notification-url": "https://packagist.org/downloads/",
  296. "license": [
  297. "MIT"
  298. ],
  299. "authors": [
  300. {
  301. "name": "Guilherme Blanco",
  302. "email": "guilhermeblanco@gmail.com"
  303. },
  304. {
  305. "name": "Roman Borschel",
  306. "email": "roman@code-factory.org"
  307. },
  308. {
  309. "name": "Benjamin Eberlei",
  310. "email": "kontakt@beberlei.de"
  311. },
  312. {
  313. "name": "Jonathan Wage",
  314. "email": "jonwage@gmail.com"
  315. },
  316. {
  317. "name": "Johannes Schmitt",
  318. "email": "schmittjoh@gmail.com"
  319. }
  320. ],
  321. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  322. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  323. "keywords": [
  324. "inflection",
  325. "inflector",
  326. "lowercase",
  327. "manipulation",
  328. "php",
  329. "plural",
  330. "singular",
  331. "strings",
  332. "uppercase",
  333. "words"
  334. ],
  335. "support": {
  336. "issues": "https://github.com/doctrine/inflector/issues",
  337. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  338. },
  339. "funding": [
  340. {
  341. "url": "https://www.doctrine-project.org/sponsorship.html",
  342. "type": "custom"
  343. },
  344. {
  345. "url": "https://www.patreon.com/phpdoctrine",
  346. "type": "patreon"
  347. },
  348. {
  349. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  350. "type": "tidelift"
  351. }
  352. ],
  353. "time": "2024-02-18T20:23:39+00:00"
  354. },
  355. {
  356. "name": "doctrine/instantiator",
  357. "version": "1.5.0",
  358. "source": {
  359. "type": "git",
  360. "url": "https://github.com/doctrine/instantiator.git",
  361. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  362. },
  363. "dist": {
  364. "type": "zip",
  365. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  366. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  367. "shasum": ""
  368. },
  369. "require": {
  370. "php": "^7.1 || ^8.0"
  371. },
  372. "require-dev": {
  373. "doctrine/coding-standard": "^9 || ^11",
  374. "ext-pdo": "*",
  375. "ext-phar": "*",
  376. "phpbench/phpbench": "^0.16 || ^1",
  377. "phpstan/phpstan": "^1.4",
  378. "phpstan/phpstan-phpunit": "^1",
  379. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  380. "vimeo/psalm": "^4.30 || ^5.4"
  381. },
  382. "type": "library",
  383. "autoload": {
  384. "psr-4": {
  385. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "Marco Pivetta",
  395. "email": "ocramius@gmail.com",
  396. "homepage": "https://ocramius.github.io/"
  397. }
  398. ],
  399. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  400. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  401. "keywords": [
  402. "constructor",
  403. "instantiate"
  404. ],
  405. "support": {
  406. "issues": "https://github.com/doctrine/instantiator/issues",
  407. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://www.doctrine-project.org/sponsorship.html",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://www.patreon.com/phpdoctrine",
  416. "type": "patreon"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2022-12-30T00:15:36+00:00"
  424. },
  425. {
  426. "name": "doctrine/lexer",
  427. "version": "2.1.1",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/doctrine/lexer.git",
  431. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  436. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "doctrine/deprecations": "^1.0",
  441. "php": "^7.1 || ^8.0"
  442. },
  443. "require-dev": {
  444. "doctrine/coding-standard": "^9 || ^12",
  445. "phpstan/phpstan": "^1.3",
  446. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  447. "psalm/plugin-phpunit": "^0.18.3",
  448. "vimeo/psalm": "^4.11 || ^5.21"
  449. },
  450. "type": "library",
  451. "autoload": {
  452. "psr-4": {
  453. "Doctrine\\Common\\Lexer\\": "src"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Guilherme Blanco",
  463. "email": "guilhermeblanco@gmail.com"
  464. },
  465. {
  466. "name": "Roman Borschel",
  467. "email": "roman@code-factory.org"
  468. },
  469. {
  470. "name": "Johannes Schmitt",
  471. "email": "schmittjoh@gmail.com"
  472. }
  473. ],
  474. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  475. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  476. "keywords": [
  477. "annotations",
  478. "docblock",
  479. "lexer",
  480. "parser",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/lexer/issues",
  485. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2024-02-05T11:35:39+00:00"
  502. },
  503. {
  504. "name": "easyswoole/spl",
  505. "version": "2.1.3",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/easy-swoole/spl.git",
  509. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  514. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "ext-dom": "*",
  519. "ext-json": "*",
  520. "ext-simplexml": "*",
  521. "php": ">=8.1.0"
  522. },
  523. "require-dev": {
  524. "easyswoole/phpunit": "^1.0",
  525. "easyswoole/swoole-ide-helper": "^1.0"
  526. },
  527. "type": "library",
  528. "autoload": {
  529. "psr-4": {
  530. "EasySwoole\\Spl\\": "src/",
  531. "EasySwoole\\Spl\\Test\\": "test/"
  532. }
  533. },
  534. "notification-url": "https://packagist.org/downloads/",
  535. "license": [
  536. "Apache-2.0"
  537. ],
  538. "authors": [
  539. {
  540. "name": "YF",
  541. "email": "291323003@qq.com"
  542. }
  543. ],
  544. "description": "php stander lib",
  545. "homepage": "https://www.easyswoole.com/",
  546. "keywords": [
  547. "async",
  548. "easyswoole",
  549. "framework",
  550. "swoole"
  551. ],
  552. "support": {
  553. "issues": "https://github.com/easy-swoole/spl/issues",
  554. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  555. },
  556. "time": "2024-07-09T14:44:25+00:00"
  557. },
  558. {
  559. "name": "easyswoole/verifycode",
  560. "version": "3.1.2",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/easy-swoole/verify-code.git",
  564. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  569. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  570. "shasum": ""
  571. },
  572. "require": {
  573. "easyswoole/spl": "^2.0",
  574. "ext-gd": "*",
  575. "php": ">=8.1"
  576. },
  577. "type": "library",
  578. "autoload": {
  579. "psr-4": {
  580. "EasySwoole\\VerifyCode\\": "src"
  581. }
  582. },
  583. "notification-url": "https://packagist.org/downloads/",
  584. "license": [
  585. "Apache-2.0"
  586. ],
  587. "authors": [
  588. {
  589. "name": "YF",
  590. "email": "291323003@qq.com"
  591. },
  592. {
  593. "name": "evalor",
  594. "email": "mipone@foxmail.com"
  595. }
  596. ],
  597. "support": {
  598. "issues": "https://github.com/easy-swoole/verify-code/issues",
  599. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  600. },
  601. "time": "2023-09-06T06:45:56+00:00"
  602. },
  603. {
  604. "name": "egulias/email-validator",
  605. "version": "3.2.6",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/egulias/EmailValidator.git",
  609. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  614. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  615. "shasum": ""
  616. },
  617. "require": {
  618. "doctrine/lexer": "^1.2|^2",
  619. "php": ">=7.2",
  620. "symfony/polyfill-intl-idn": "^1.15"
  621. },
  622. "require-dev": {
  623. "phpunit/phpunit": "^8.5.8|^9.3.3",
  624. "vimeo/psalm": "^4"
  625. },
  626. "suggest": {
  627. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  628. },
  629. "type": "library",
  630. "extra": {
  631. "branch-alias": {
  632. "dev-master": "3.0.x-dev"
  633. }
  634. },
  635. "autoload": {
  636. "psr-4": {
  637. "Egulias\\EmailValidator\\": "src"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "MIT"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Eduardo Gulias Davis"
  647. }
  648. ],
  649. "description": "A library for validating emails against several RFCs",
  650. "homepage": "https://github.com/egulias/EmailValidator",
  651. "keywords": [
  652. "email",
  653. "emailvalidation",
  654. "emailvalidator",
  655. "validation",
  656. "validator"
  657. ],
  658. "support": {
  659. "issues": "https://github.com/egulias/EmailValidator/issues",
  660. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  661. },
  662. "funding": [
  663. {
  664. "url": "https://github.com/egulias",
  665. "type": "github"
  666. }
  667. ],
  668. "time": "2023-06-01T07:04:22+00:00"
  669. },
  670. {
  671. "name": "fig/http-message-util",
  672. "version": "1.1.5",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/php-fig/http-message-util.git",
  676. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  681. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  682. "shasum": ""
  683. },
  684. "require": {
  685. "php": "^5.3 || ^7.0 || ^8.0"
  686. },
  687. "suggest": {
  688. "psr/http-message": "The package containing the PSR-7 interfaces"
  689. },
  690. "type": "library",
  691. "extra": {
  692. "branch-alias": {
  693. "dev-master": "1.1.x-dev"
  694. }
  695. },
  696. "autoload": {
  697. "psr-4": {
  698. "Fig\\Http\\Message\\": "src/"
  699. }
  700. },
  701. "notification-url": "https://packagist.org/downloads/",
  702. "license": [
  703. "MIT"
  704. ],
  705. "authors": [
  706. {
  707. "name": "PHP-FIG",
  708. "homepage": "https://www.php-fig.org/"
  709. }
  710. ],
  711. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  712. "keywords": [
  713. "http",
  714. "http-message",
  715. "psr",
  716. "psr-7",
  717. "request",
  718. "response"
  719. ],
  720. "support": {
  721. "issues": "https://github.com/php-fig/http-message-util/issues",
  722. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  723. },
  724. "time": "2020-11-24T22:02:12+00:00"
  725. },
  726. {
  727. "name": "graham-campbell/result-type",
  728. "version": "v1.1.3",
  729. "source": {
  730. "type": "git",
  731. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  732. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  733. },
  734. "dist": {
  735. "type": "zip",
  736. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  737. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  738. "shasum": ""
  739. },
  740. "require": {
  741. "php": "^7.2.5 || ^8.0",
  742. "phpoption/phpoption": "^1.9.3"
  743. },
  744. "require-dev": {
  745. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  746. },
  747. "type": "library",
  748. "autoload": {
  749. "psr-4": {
  750. "GrahamCampbell\\ResultType\\": "src/"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Graham Campbell",
  760. "email": "hello@gjcampbell.co.uk",
  761. "homepage": "https://github.com/GrahamCampbell"
  762. }
  763. ],
  764. "description": "An Implementation Of The Result Type",
  765. "keywords": [
  766. "Graham Campbell",
  767. "GrahamCampbell",
  768. "Result Type",
  769. "Result-Type",
  770. "result"
  771. ],
  772. "support": {
  773. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  774. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  775. },
  776. "funding": [
  777. {
  778. "url": "https://github.com/GrahamCampbell",
  779. "type": "github"
  780. },
  781. {
  782. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  783. "type": "tidelift"
  784. }
  785. ],
  786. "time": "2024-07-20T21:45:45+00:00"
  787. },
  788. {
  789. "name": "guzzlehttp/guzzle",
  790. "version": "7.9.2",
  791. "source": {
  792. "type": "git",
  793. "url": "https://github.com/guzzle/guzzle.git",
  794. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  795. },
  796. "dist": {
  797. "type": "zip",
  798. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  799. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  800. "shasum": ""
  801. },
  802. "require": {
  803. "ext-json": "*",
  804. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  805. "guzzlehttp/psr7": "^2.7.0",
  806. "php": "^7.2.5 || ^8.0",
  807. "psr/http-client": "^1.0",
  808. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  809. },
  810. "provide": {
  811. "psr/http-client-implementation": "1.0"
  812. },
  813. "require-dev": {
  814. "bamarni/composer-bin-plugin": "^1.8.2",
  815. "ext-curl": "*",
  816. "guzzle/client-integration-tests": "3.0.2",
  817. "php-http/message-factory": "^1.1",
  818. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  819. "psr/log": "^1.1 || ^2.0 || ^3.0"
  820. },
  821. "suggest": {
  822. "ext-curl": "Required for CURL handler support",
  823. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  824. "psr/log": "Required for using the Log middleware"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "bamarni-bin": {
  829. "bin-links": true,
  830. "forward-command": false
  831. }
  832. },
  833. "autoload": {
  834. "files": [
  835. "src/functions_include.php"
  836. ],
  837. "psr-4": {
  838. "GuzzleHttp\\": "src/"
  839. }
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Graham Campbell",
  848. "email": "hello@gjcampbell.co.uk",
  849. "homepage": "https://github.com/GrahamCampbell"
  850. },
  851. {
  852. "name": "Michael Dowling",
  853. "email": "mtdowling@gmail.com",
  854. "homepage": "https://github.com/mtdowling"
  855. },
  856. {
  857. "name": "Jeremy Lindblom",
  858. "email": "jeremeamia@gmail.com",
  859. "homepage": "https://github.com/jeremeamia"
  860. },
  861. {
  862. "name": "George Mponos",
  863. "email": "gmponos@gmail.com",
  864. "homepage": "https://github.com/gmponos"
  865. },
  866. {
  867. "name": "Tobias Nyholm",
  868. "email": "tobias.nyholm@gmail.com",
  869. "homepage": "https://github.com/Nyholm"
  870. },
  871. {
  872. "name": "Márk Sági-Kazár",
  873. "email": "mark.sagikazar@gmail.com",
  874. "homepage": "https://github.com/sagikazarmark"
  875. },
  876. {
  877. "name": "Tobias Schultze",
  878. "email": "webmaster@tubo-world.de",
  879. "homepage": "https://github.com/Tobion"
  880. }
  881. ],
  882. "description": "Guzzle is a PHP HTTP client library",
  883. "keywords": [
  884. "client",
  885. "curl",
  886. "framework",
  887. "http",
  888. "http client",
  889. "psr-18",
  890. "psr-7",
  891. "rest",
  892. "web service"
  893. ],
  894. "support": {
  895. "issues": "https://github.com/guzzle/guzzle/issues",
  896. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  897. },
  898. "funding": [
  899. {
  900. "url": "https://github.com/GrahamCampbell",
  901. "type": "github"
  902. },
  903. {
  904. "url": "https://github.com/Nyholm",
  905. "type": "github"
  906. },
  907. {
  908. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  909. "type": "tidelift"
  910. }
  911. ],
  912. "time": "2024-07-24T11:22:20+00:00"
  913. },
  914. {
  915. "name": "guzzlehttp/promises",
  916. "version": "2.0.4",
  917. "source": {
  918. "type": "git",
  919. "url": "https://github.com/guzzle/promises.git",
  920. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  921. },
  922. "dist": {
  923. "type": "zip",
  924. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  925. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  926. "shasum": ""
  927. },
  928. "require": {
  929. "php": "^7.2.5 || ^8.0"
  930. },
  931. "require-dev": {
  932. "bamarni/composer-bin-plugin": "^1.8.2",
  933. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  934. },
  935. "type": "library",
  936. "extra": {
  937. "bamarni-bin": {
  938. "bin-links": true,
  939. "forward-command": false
  940. }
  941. },
  942. "autoload": {
  943. "psr-4": {
  944. "GuzzleHttp\\Promise\\": "src/"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "MIT"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Graham Campbell",
  954. "email": "hello@gjcampbell.co.uk",
  955. "homepage": "https://github.com/GrahamCampbell"
  956. },
  957. {
  958. "name": "Michael Dowling",
  959. "email": "mtdowling@gmail.com",
  960. "homepage": "https://github.com/mtdowling"
  961. },
  962. {
  963. "name": "Tobias Nyholm",
  964. "email": "tobias.nyholm@gmail.com",
  965. "homepage": "https://github.com/Nyholm"
  966. },
  967. {
  968. "name": "Tobias Schultze",
  969. "email": "webmaster@tubo-world.de",
  970. "homepage": "https://github.com/Tobion"
  971. }
  972. ],
  973. "description": "Guzzle promises library",
  974. "keywords": [
  975. "promise"
  976. ],
  977. "support": {
  978. "issues": "https://github.com/guzzle/promises/issues",
  979. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  980. },
  981. "funding": [
  982. {
  983. "url": "https://github.com/GrahamCampbell",
  984. "type": "github"
  985. },
  986. {
  987. "url": "https://github.com/Nyholm",
  988. "type": "github"
  989. },
  990. {
  991. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  992. "type": "tidelift"
  993. }
  994. ],
  995. "time": "2024-10-17T10:06:22+00:00"
  996. },
  997. {
  998. "name": "guzzlehttp/psr7",
  999. "version": "2.7.0",
  1000. "source": {
  1001. "type": "git",
  1002. "url": "https://github.com/guzzle/psr7.git",
  1003. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1004. },
  1005. "dist": {
  1006. "type": "zip",
  1007. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1008. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1009. "shasum": ""
  1010. },
  1011. "require": {
  1012. "php": "^7.2.5 || ^8.0",
  1013. "psr/http-factory": "^1.0",
  1014. "psr/http-message": "^1.1 || ^2.0",
  1015. "ralouphie/getallheaders": "^3.0"
  1016. },
  1017. "provide": {
  1018. "psr/http-factory-implementation": "1.0",
  1019. "psr/http-message-implementation": "1.0"
  1020. },
  1021. "require-dev": {
  1022. "bamarni/composer-bin-plugin": "^1.8.2",
  1023. "http-interop/http-factory-tests": "0.9.0",
  1024. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1025. },
  1026. "suggest": {
  1027. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1028. },
  1029. "type": "library",
  1030. "extra": {
  1031. "bamarni-bin": {
  1032. "bin-links": true,
  1033. "forward-command": false
  1034. }
  1035. },
  1036. "autoload": {
  1037. "psr-4": {
  1038. "GuzzleHttp\\Psr7\\": "src/"
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "Graham Campbell",
  1048. "email": "hello@gjcampbell.co.uk",
  1049. "homepage": "https://github.com/GrahamCampbell"
  1050. },
  1051. {
  1052. "name": "Michael Dowling",
  1053. "email": "mtdowling@gmail.com",
  1054. "homepage": "https://github.com/mtdowling"
  1055. },
  1056. {
  1057. "name": "George Mponos",
  1058. "email": "gmponos@gmail.com",
  1059. "homepage": "https://github.com/gmponos"
  1060. },
  1061. {
  1062. "name": "Tobias Nyholm",
  1063. "email": "tobias.nyholm@gmail.com",
  1064. "homepage": "https://github.com/Nyholm"
  1065. },
  1066. {
  1067. "name": "Márk Sági-Kazár",
  1068. "email": "mark.sagikazar@gmail.com",
  1069. "homepage": "https://github.com/sagikazarmark"
  1070. },
  1071. {
  1072. "name": "Tobias Schultze",
  1073. "email": "webmaster@tubo-world.de",
  1074. "homepage": "https://github.com/Tobion"
  1075. },
  1076. {
  1077. "name": "Márk Sági-Kazár",
  1078. "email": "mark.sagikazar@gmail.com",
  1079. "homepage": "https://sagikazarmark.hu"
  1080. }
  1081. ],
  1082. "description": "PSR-7 message implementation that also provides common utility methods",
  1083. "keywords": [
  1084. "http",
  1085. "message",
  1086. "psr-7",
  1087. "request",
  1088. "response",
  1089. "stream",
  1090. "uri",
  1091. "url"
  1092. ],
  1093. "support": {
  1094. "issues": "https://github.com/guzzle/psr7/issues",
  1095. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1096. },
  1097. "funding": [
  1098. {
  1099. "url": "https://github.com/GrahamCampbell",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://github.com/Nyholm",
  1104. "type": "github"
  1105. },
  1106. {
  1107. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1108. "type": "tidelift"
  1109. }
  1110. ],
  1111. "time": "2024-07-18T11:15:46+00:00"
  1112. },
  1113. {
  1114. "name": "hyperf/amqp",
  1115. "version": "v3.1.42",
  1116. "source": {
  1117. "type": "git",
  1118. "url": "https://github.com/hyperf/amqp.git",
  1119. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1120. },
  1121. "dist": {
  1122. "type": "zip",
  1123. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1124. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1125. "shasum": ""
  1126. },
  1127. "require": {
  1128. "doctrine/instantiator": "^1.2.0",
  1129. "hyperf/codec": "~3.1.0",
  1130. "hyperf/contract": "~3.1.0",
  1131. "hyperf/coroutine": "~3.1.0",
  1132. "hyperf/pool": "~3.1.0",
  1133. "hyperf/process": "~3.1.0",
  1134. "hyperf/support": "~3.1.0",
  1135. "hyperf/utils": "~3.1.0",
  1136. "php": ">=8.1",
  1137. "php-amqplib/php-amqplib": "^3.5",
  1138. "psr/container": "^1.0 || ^2.0",
  1139. "psr/event-dispatcher": "^1.0",
  1140. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1141. },
  1142. "suggest": {
  1143. "hyperf/di": "Required to use annotations.",
  1144. "hyperf/event": "Declare queue and start consumers automatically."
  1145. },
  1146. "type": "library",
  1147. "extra": {
  1148. "branch-alias": {
  1149. "dev-master": "3.1-dev"
  1150. },
  1151. "hyperf": {
  1152. "config": "Hyperf\\Amqp\\ConfigProvider"
  1153. }
  1154. },
  1155. "autoload": {
  1156. "psr-4": {
  1157. "Hyperf\\Amqp\\": "src/"
  1158. }
  1159. },
  1160. "notification-url": "https://packagist.org/downloads/",
  1161. "license": [
  1162. "MIT"
  1163. ],
  1164. "description": "A amqplib for hyperf.",
  1165. "homepage": "https://hyperf.io",
  1166. "keywords": [
  1167. "AMQP",
  1168. "hyperf",
  1169. "php"
  1170. ],
  1171. "support": {
  1172. "docs": "https://hyperf.wiki",
  1173. "issues": "https://github.com/hyperf/hyperf/issues",
  1174. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1175. "source": "https://github.com/hyperf/hyperf"
  1176. },
  1177. "funding": [
  1178. {
  1179. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1180. "type": "custom"
  1181. },
  1182. {
  1183. "url": "https://opencollective.com/hyperf",
  1184. "type": "open_collective"
  1185. }
  1186. ],
  1187. "time": "2024-09-25T02:54:12+00:00"
  1188. },
  1189. {
  1190. "name": "hyperf/async-queue",
  1191. "version": "v3.1.42",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/hyperf/async-queue.git",
  1195. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1200. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "hyperf/codec": "~3.1.0",
  1205. "hyperf/collection": "~3.1.0",
  1206. "hyperf/command": "~3.1.0",
  1207. "hyperf/contract": "~3.1.0",
  1208. "hyperf/support": "~3.1.0",
  1209. "hyperf/utils": "~3.1.0",
  1210. "php": ">=8.1",
  1211. "psr/container": "^1.0 || ^2.0",
  1212. "psr/event-dispatcher": "^1.0"
  1213. },
  1214. "suggest": {
  1215. "hyperf/di": "Required to use annotations.",
  1216. "hyperf/event": "Required to dispatch a event.",
  1217. "hyperf/logger": "Required to use QueueHandleListener.",
  1218. "hyperf/process": "Auto register the consumer process for server."
  1219. },
  1220. "type": "library",
  1221. "extra": {
  1222. "branch-alias": {
  1223. "dev-master": "3.1-dev"
  1224. },
  1225. "hyperf": {
  1226. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1227. }
  1228. },
  1229. "autoload": {
  1230. "files": [
  1231. "src/Functions.php"
  1232. ],
  1233. "psr-4": {
  1234. "Hyperf\\AsyncQueue\\": "src/"
  1235. }
  1236. },
  1237. "notification-url": "https://packagist.org/downloads/",
  1238. "license": [
  1239. "MIT"
  1240. ],
  1241. "description": "A async queue component for hyperf.",
  1242. "homepage": "https://hyperf.io",
  1243. "keywords": [
  1244. "async-queue",
  1245. "hyperf",
  1246. "php"
  1247. ],
  1248. "support": {
  1249. "docs": "https://hyperf.wiki",
  1250. "issues": "https://github.com/hyperf/hyperf/issues",
  1251. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1252. "source": "https://github.com/hyperf/hyperf"
  1253. },
  1254. "funding": [
  1255. {
  1256. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1257. "type": "custom"
  1258. },
  1259. {
  1260. "url": "https://opencollective.com/hyperf",
  1261. "type": "open_collective"
  1262. }
  1263. ],
  1264. "time": "2024-09-25T02:54:12+00:00"
  1265. },
  1266. {
  1267. "name": "hyperf/cache",
  1268. "version": "v3.1.43",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/hyperf/cache.git",
  1272. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1277. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1278. "shasum": ""
  1279. },
  1280. "require": {
  1281. "hyperf/codec": "~3.1.0",
  1282. "hyperf/collection": "~3.1.0",
  1283. "hyperf/contract": "~3.1.0",
  1284. "hyperf/support": "~3.1.0",
  1285. "hyperf/utils": "~3.1.0",
  1286. "php": ">=8.1",
  1287. "psr/container": "^1.0 || ^2.0",
  1288. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1289. },
  1290. "suggest": {
  1291. "hyperf/di": "Use cache annotations.",
  1292. "hyperf/event": "Use listener to delete annotation cache."
  1293. },
  1294. "type": "library",
  1295. "extra": {
  1296. "branch-alias": {
  1297. "dev-master": "3.1-dev"
  1298. },
  1299. "hyperf": {
  1300. "config": "Hyperf\\Cache\\ConfigProvider"
  1301. }
  1302. },
  1303. "autoload": {
  1304. "psr-4": {
  1305. "Hyperf\\Cache\\": "src/"
  1306. }
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "MIT"
  1311. ],
  1312. "description": "A cache component for hyperf.",
  1313. "homepage": "https://hyperf.io",
  1314. "keywords": [
  1315. "cache",
  1316. "hyperf",
  1317. "php"
  1318. ],
  1319. "support": {
  1320. "docs": "https://hyperf.wiki",
  1321. "issues": "https://github.com/hyperf/hyperf/issues",
  1322. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1323. "source": "https://github.com/hyperf/hyperf"
  1324. },
  1325. "funding": [
  1326. {
  1327. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1328. "type": "custom"
  1329. },
  1330. {
  1331. "url": "https://opencollective.com/hyperf",
  1332. "type": "open_collective"
  1333. }
  1334. ],
  1335. "time": "2024-10-09T10:22:39+00:00"
  1336. },
  1337. {
  1338. "name": "hyperf/code-parser",
  1339. "version": "v3.1.42",
  1340. "source": {
  1341. "type": "git",
  1342. "url": "https://github.com/hyperf/code-parser.git",
  1343. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1344. },
  1345. "dist": {
  1346. "type": "zip",
  1347. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1348. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1349. "shasum": ""
  1350. },
  1351. "require": {
  1352. "hyperf/collection": "~3.1.0",
  1353. "hyperf/stringable": "~3.1.0",
  1354. "hyperf/support": "~3.1.0",
  1355. "php": ">=8.1"
  1356. },
  1357. "suggest": {
  1358. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1359. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1360. },
  1361. "type": "library",
  1362. "extra": {
  1363. "branch-alias": {
  1364. "dev-master": "3.1-dev"
  1365. }
  1366. },
  1367. "autoload": {
  1368. "psr-4": {
  1369. "Hyperf\\CodeParser\\": "src/"
  1370. }
  1371. },
  1372. "notification-url": "https://packagist.org/downloads/",
  1373. "license": [
  1374. "MIT"
  1375. ],
  1376. "description": "A code parser component for Hyperf.",
  1377. "homepage": "https://hyperf.io",
  1378. "keywords": [
  1379. "code-parser",
  1380. "hyperf",
  1381. "php",
  1382. "swoole"
  1383. ],
  1384. "support": {
  1385. "docs": "https://hyperf.wiki",
  1386. "issues": "https://github.com/hyperf/hyperf/issues",
  1387. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1388. "source": "https://github.com/hyperf/hyperf"
  1389. },
  1390. "funding": [
  1391. {
  1392. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1393. "type": "custom"
  1394. },
  1395. {
  1396. "url": "https://opencollective.com/hyperf",
  1397. "type": "open_collective"
  1398. }
  1399. ],
  1400. "time": "2024-09-25T02:54:12+00:00"
  1401. },
  1402. {
  1403. "name": "hyperf/codec",
  1404. "version": "v3.1.42",
  1405. "source": {
  1406. "type": "git",
  1407. "url": "https://github.com/hyperf/codec.git",
  1408. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1409. },
  1410. "dist": {
  1411. "type": "zip",
  1412. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1413. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1414. "shasum": ""
  1415. },
  1416. "require": {
  1417. "ext-json": "*",
  1418. "ext-xml": "*",
  1419. "hyperf/contract": "~3.1.0",
  1420. "php": ">=8.1"
  1421. },
  1422. "suggest": {
  1423. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1424. },
  1425. "type": "library",
  1426. "extra": {
  1427. "branch-alias": {
  1428. "dev-master": "3.1-dev"
  1429. }
  1430. },
  1431. "autoload": {
  1432. "psr-4": {
  1433. "Hyperf\\Codec\\": "src/"
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "MIT"
  1439. ],
  1440. "description": "A codec component for Hyperf.",
  1441. "homepage": "https://hyperf.io",
  1442. "keywords": [
  1443. "codec",
  1444. "hyperf",
  1445. "php",
  1446. "swoole"
  1447. ],
  1448. "support": {
  1449. "docs": "https://hyperf.wiki",
  1450. "issues": "https://github.com/hyperf/hyperf/issues",
  1451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1452. "source": "https://github.com/hyperf/hyperf"
  1453. },
  1454. "funding": [
  1455. {
  1456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1457. "type": "custom"
  1458. },
  1459. {
  1460. "url": "https://opencollective.com/hyperf",
  1461. "type": "open_collective"
  1462. }
  1463. ],
  1464. "time": "2024-09-25T02:54:12+00:00"
  1465. },
  1466. {
  1467. "name": "hyperf/collection",
  1468. "version": "v3.1.45",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/hyperf/collection.git",
  1472. "reference": "884b2b84e4f33481f7c4ac8822c5cc854b43582d"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/hyperf/collection/zipball/884b2b84e4f33481f7c4ac8822c5cc854b43582d",
  1477. "reference": "884b2b84e4f33481f7c4ac8822c5cc854b43582d",
  1478. "shasum": ""
  1479. },
  1480. "require": {
  1481. "hyperf/conditionable": "~3.1.0",
  1482. "hyperf/contract": "~3.1.0",
  1483. "hyperf/macroable": "~3.1.0",
  1484. "hyperf/stringable": "~3.1.0",
  1485. "php": ">=8.1"
  1486. },
  1487. "type": "library",
  1488. "extra": {
  1489. "branch-alias": {
  1490. "dev-master": "3.1-dev"
  1491. }
  1492. },
  1493. "autoload": {
  1494. "files": [
  1495. "src/Functions.php"
  1496. ],
  1497. "psr-4": {
  1498. "Hyperf\\Collection\\": "src/"
  1499. }
  1500. },
  1501. "notification-url": "https://packagist.org/downloads/",
  1502. "license": [
  1503. "MIT"
  1504. ],
  1505. "description": "Hyperf Collection package which come from illuminate/collections",
  1506. "homepage": "https://hyperf.io",
  1507. "keywords": [
  1508. "collection",
  1509. "hyperf",
  1510. "php",
  1511. "swoole"
  1512. ],
  1513. "support": {
  1514. "docs": "https://hyperf.wiki",
  1515. "issues": "https://github.com/hyperf/hyperf/issues",
  1516. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1517. "source": "https://github.com/hyperf/hyperf"
  1518. },
  1519. "funding": [
  1520. {
  1521. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1522. "type": "custom"
  1523. },
  1524. {
  1525. "url": "https://opencollective.com/hyperf",
  1526. "type": "open_collective"
  1527. }
  1528. ],
  1529. "time": "2024-11-14T02:27:55+00:00"
  1530. },
  1531. {
  1532. "name": "hyperf/command",
  1533. "version": "v3.1.42",
  1534. "source": {
  1535. "type": "git",
  1536. "url": "https://github.com/hyperf/command.git",
  1537. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1538. },
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1542. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1543. "shasum": ""
  1544. },
  1545. "require": {
  1546. "hyperf/collection": "~3.1.0",
  1547. "hyperf/context": "~3.1.0",
  1548. "hyperf/contract": "~3.1.0",
  1549. "hyperf/coroutine": "~3.1.0",
  1550. "hyperf/di": "~3.1.0",
  1551. "hyperf/stringable": "~3.1.0",
  1552. "hyperf/support": "~3.1.0",
  1553. "hyperf/tappable": "~3.1.0",
  1554. "php": ">=8.1",
  1555. "psr/event-dispatcher": "^1.0",
  1556. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1557. },
  1558. "suggest": {
  1559. "hyperf/di": "Required to use annotations.",
  1560. "hyperf/event": "Required to use listeners."
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "branch-alias": {
  1565. "dev-master": "3.1-dev"
  1566. },
  1567. "hyperf": {
  1568. "config": "Hyperf\\Command\\ConfigProvider"
  1569. }
  1570. },
  1571. "autoload": {
  1572. "psr-4": {
  1573. "Hyperf\\Command\\": "src/"
  1574. }
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "MIT"
  1579. ],
  1580. "description": "Command for hyperf",
  1581. "keywords": [
  1582. "command",
  1583. "php",
  1584. "swoole"
  1585. ],
  1586. "support": {
  1587. "issues": "https://github.com/hyperf/command/issues",
  1588. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1589. },
  1590. "funding": [
  1591. {
  1592. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1593. "type": "custom"
  1594. },
  1595. {
  1596. "url": "https://opencollective.com/hyperf",
  1597. "type": "open_collective"
  1598. }
  1599. ],
  1600. "time": "2024-09-25T02:54:12+00:00"
  1601. },
  1602. {
  1603. "name": "hyperf/conditionable",
  1604. "version": "v3.1.42",
  1605. "source": {
  1606. "type": "git",
  1607. "url": "https://github.com/hyperf/conditionable.git",
  1608. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1609. },
  1610. "dist": {
  1611. "type": "zip",
  1612. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1613. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1614. "shasum": ""
  1615. },
  1616. "require": {
  1617. "php": ">=8.1"
  1618. },
  1619. "type": "library",
  1620. "extra": {
  1621. "branch-alias": {
  1622. "dev-master": "3.1-dev"
  1623. }
  1624. },
  1625. "autoload": {
  1626. "psr-4": {
  1627. "Hyperf\\Conditionable\\": "src/"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1635. "homepage": "https://hyperf.io",
  1636. "keywords": [
  1637. "conditionable",
  1638. "hyperf",
  1639. "php",
  1640. "swoole"
  1641. ],
  1642. "support": {
  1643. "docs": "https://hyperf.wiki",
  1644. "issues": "https://github.com/hyperf/hyperf/issues",
  1645. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1646. "source": "https://github.com/hyperf/hyperf"
  1647. },
  1648. "funding": [
  1649. {
  1650. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1651. "type": "custom"
  1652. },
  1653. {
  1654. "url": "https://opencollective.com/hyperf",
  1655. "type": "open_collective"
  1656. }
  1657. ],
  1658. "time": "2024-09-25T02:54:12+00:00"
  1659. },
  1660. {
  1661. "name": "hyperf/config",
  1662. "version": "v3.1.42",
  1663. "source": {
  1664. "type": "git",
  1665. "url": "https://github.com/hyperf/config.git",
  1666. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1667. },
  1668. "dist": {
  1669. "type": "zip",
  1670. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1671. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1672. "shasum": ""
  1673. },
  1674. "require": {
  1675. "hyperf/collection": "~3.1.0",
  1676. "hyperf/contract": "~3.1.0",
  1677. "hyperf/support": "~3.1.0",
  1678. "php": ">=8.1",
  1679. "psr/container": "^1.0 || ^2.0",
  1680. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1681. },
  1682. "suggest": {
  1683. "hyperf/context": "Required to use config()",
  1684. "hyperf/di": "Allows using @Value annotation",
  1685. "hyperf/event": "Allows using @Value annotation",
  1686. "hyperf/framework": "Allows using @Value annotation",
  1687. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1688. },
  1689. "type": "library",
  1690. "extra": {
  1691. "branch-alias": {
  1692. "dev-master": "3.1-dev"
  1693. },
  1694. "hyperf": {
  1695. "config": "Hyperf\\Config\\ConfigProvider"
  1696. }
  1697. },
  1698. "autoload": {
  1699. "files": [
  1700. "./src/Functions.php"
  1701. ],
  1702. "psr-4": {
  1703. "Hyperf\\Config\\": "src/"
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "MIT"
  1709. ],
  1710. "description": "An independent component that provides configuration container.",
  1711. "homepage": "https://hyperf.io",
  1712. "keywords": [
  1713. "config",
  1714. "configuration",
  1715. "hyperf",
  1716. "php",
  1717. "swoole"
  1718. ],
  1719. "support": {
  1720. "docs": "https://hyperf.wiki",
  1721. "issues": "https://github.com/hyperf/hyperf/issues",
  1722. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1723. "source": "https://github.com/hyperf/hyperf"
  1724. },
  1725. "funding": [
  1726. {
  1727. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1728. "type": "custom"
  1729. },
  1730. {
  1731. "url": "https://opencollective.com/hyperf",
  1732. "type": "open_collective"
  1733. }
  1734. ],
  1735. "time": "2024-09-25T02:54:12+00:00"
  1736. },
  1737. {
  1738. "name": "hyperf/config-center",
  1739. "version": "v3.1.42",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/hyperf/config-center.git",
  1743. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1748. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1749. "shasum": ""
  1750. },
  1751. "require": {
  1752. "hyperf/support": "~3.1.0",
  1753. "php": ">=8.1"
  1754. },
  1755. "suggest": {
  1756. "hyperf/process": "^2.1"
  1757. },
  1758. "type": "library",
  1759. "extra": {
  1760. "branch-alias": {
  1761. "dev-master": "3.1-dev"
  1762. },
  1763. "hyperf": {
  1764. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1765. }
  1766. },
  1767. "autoload": {
  1768. "psr-4": {
  1769. "Hyperf\\ConfigCenter\\": "src/"
  1770. }
  1771. },
  1772. "notification-url": "https://packagist.org/downloads/",
  1773. "license": [
  1774. "MIT"
  1775. ],
  1776. "description": "The abstraction component of config center",
  1777. "homepage": "https://hyperf.io",
  1778. "keywords": [
  1779. "config-center",
  1780. "hyperf",
  1781. "php"
  1782. ],
  1783. "support": {
  1784. "docs": "https://hyperf.wiki",
  1785. "issues": "https://github.com/hyperf/hyperf/issues",
  1786. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1787. "source": "https://github.com/hyperf/hyperf"
  1788. },
  1789. "funding": [
  1790. {
  1791. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1792. "type": "custom"
  1793. },
  1794. {
  1795. "url": "https://opencollective.com/hyperf",
  1796. "type": "open_collective"
  1797. }
  1798. ],
  1799. "time": "2024-09-25T02:54:12+00:00"
  1800. },
  1801. {
  1802. "name": "hyperf/config-nacos",
  1803. "version": "v3.1.42",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/hyperf/config-nacos.git",
  1807. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1812. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1813. "shasum": ""
  1814. },
  1815. "require": {
  1816. "hyperf/codec": "~3.1.0",
  1817. "hyperf/config-center": "~3.1.0",
  1818. "hyperf/contract": "~3.1.0",
  1819. "hyperf/guzzle": "~3.1.0",
  1820. "hyperf/nacos": "~3.1.0",
  1821. "hyperf/support": "~3.1.0",
  1822. "hyperf/utils": "~3.1.0",
  1823. "jetbrains/phpstorm-attributes": "^1.0",
  1824. "php": ">=8.1"
  1825. },
  1826. "suggest": {
  1827. "ext-json": "*",
  1828. "ext-simplexml": "*",
  1829. "ext-yaml": "*",
  1830. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1831. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1832. "hyperf/process": "Required to use processes. (~2.2.0)"
  1833. },
  1834. "type": "library",
  1835. "extra": {
  1836. "branch-alias": {
  1837. "dev-master": "3.1-dev"
  1838. },
  1839. "hyperf": {
  1840. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1841. }
  1842. },
  1843. "autoload": {
  1844. "psr-4": {
  1845. "Hyperf\\ConfigNacos\\": "src/"
  1846. }
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "description": "A nacos adapter for config center component.",
  1853. "homepage": "https://hyperf.io",
  1854. "keywords": [
  1855. "hyperf",
  1856. "nacos",
  1857. "php",
  1858. "swoole"
  1859. ],
  1860. "support": {
  1861. "docs": "https://hyperf.wiki",
  1862. "issues": "https://github.com/hyperf/hyperf/issues",
  1863. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1864. "source": "https://github.com/hyperf/hyperf"
  1865. },
  1866. "funding": [
  1867. {
  1868. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1869. "type": "custom"
  1870. },
  1871. {
  1872. "url": "https://opencollective.com/hyperf",
  1873. "type": "open_collective"
  1874. }
  1875. ],
  1876. "time": "2024-09-25T02:54:12+00:00"
  1877. },
  1878. {
  1879. "name": "hyperf/constants",
  1880. "version": "v3.1.42",
  1881. "source": {
  1882. "type": "git",
  1883. "url": "https://github.com/hyperf/constants.git",
  1884. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1885. },
  1886. "dist": {
  1887. "type": "zip",
  1888. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1889. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1890. "shasum": ""
  1891. },
  1892. "require": {
  1893. "hyperf/di": "~3.1.0",
  1894. "hyperf/support": "~3.1.0",
  1895. "hyperf/utils": "~3.1.0",
  1896. "php": ">=8.1"
  1897. },
  1898. "suggest": {
  1899. "hyperf/translation": "Required to use translation."
  1900. },
  1901. "type": "library",
  1902. "extra": {
  1903. "branch-alias": {
  1904. "dev-master": "3.1-dev"
  1905. },
  1906. "hyperf": {
  1907. "config": "Hyperf\\Constants\\ConfigProvider"
  1908. }
  1909. },
  1910. "autoload": {
  1911. "psr-4": {
  1912. "Hyperf\\Constants\\": "src/"
  1913. }
  1914. },
  1915. "notification-url": "https://packagist.org/downloads/",
  1916. "license": [
  1917. "MIT"
  1918. ],
  1919. "description": "A constants component for hyperf.",
  1920. "homepage": "https://hyperf.io",
  1921. "keywords": [
  1922. "constants",
  1923. "hyperf",
  1924. "php"
  1925. ],
  1926. "support": {
  1927. "docs": "https://hyperf.wiki",
  1928. "issues": "https://github.com/hyperf/hyperf/issues",
  1929. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1930. "source": "https://github.com/hyperf/hyperf"
  1931. },
  1932. "funding": [
  1933. {
  1934. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1935. "type": "custom"
  1936. },
  1937. {
  1938. "url": "https://opencollective.com/hyperf",
  1939. "type": "open_collective"
  1940. }
  1941. ],
  1942. "time": "2024-09-25T02:54:12+00:00"
  1943. },
  1944. {
  1945. "name": "hyperf/consul",
  1946. "version": "v3.1.42",
  1947. "source": {
  1948. "type": "git",
  1949. "url": "https://github.com/hyperf/consul.git",
  1950. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1951. },
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1955. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1960. "php": ">=8.1"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-master": "3.1-dev"
  1966. },
  1967. "hyperf": {
  1968. "config": "Hyperf\\Consul\\ConfigProvider"
  1969. }
  1970. },
  1971. "autoload": {
  1972. "psr-4": {
  1973. "Hyperf\\Consul\\": "src/"
  1974. }
  1975. },
  1976. "notification-url": "https://packagist.org/downloads/",
  1977. "license": [
  1978. "MIT"
  1979. ],
  1980. "description": "A Consul Client for Hyperf.",
  1981. "homepage": "https://hyperf.io",
  1982. "keywords": [
  1983. "consul",
  1984. "consul-client",
  1985. "hyperf",
  1986. "php",
  1987. "swoole"
  1988. ],
  1989. "support": {
  1990. "docs": "https://hyperf.wiki",
  1991. "issues": "https://github.com/hyperf/hyperf/issues",
  1992. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1993. "source": "https://github.com/hyperf/hyperf"
  1994. },
  1995. "funding": [
  1996. {
  1997. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1998. "type": "custom"
  1999. },
  2000. {
  2001. "url": "https://opencollective.com/hyperf",
  2002. "type": "open_collective"
  2003. }
  2004. ],
  2005. "time": "2024-09-25T02:54:12+00:00"
  2006. },
  2007. {
  2008. "name": "hyperf/context",
  2009. "version": "v3.1.42",
  2010. "source": {
  2011. "type": "git",
  2012. "url": "https://github.com/hyperf/context.git",
  2013. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2014. },
  2015. "dist": {
  2016. "type": "zip",
  2017. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2018. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2019. "shasum": ""
  2020. },
  2021. "require": {
  2022. "hyperf/engine": "^2.0",
  2023. "php": ">=8.1"
  2024. },
  2025. "suggest": {
  2026. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2027. },
  2028. "type": "library",
  2029. "extra": {
  2030. "branch-alias": {
  2031. "dev-master": "3.1-dev"
  2032. }
  2033. },
  2034. "autoload": {
  2035. "psr-4": {
  2036. "Hyperf\\Context\\": "src/"
  2037. }
  2038. },
  2039. "notification-url": "https://packagist.org/downloads/",
  2040. "license": [
  2041. "MIT"
  2042. ],
  2043. "description": "A coroutine/application context library.",
  2044. "homepage": "https://hyperf.io",
  2045. "keywords": [
  2046. "Context",
  2047. "hyperf",
  2048. "php",
  2049. "swoole"
  2050. ],
  2051. "support": {
  2052. "docs": "https://hyperf.wiki",
  2053. "issues": "https://github.com/hyperf/hyperf/issues",
  2054. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2055. "source": "https://github.com/hyperf/hyperf"
  2056. },
  2057. "funding": [
  2058. {
  2059. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2060. "type": "custom"
  2061. },
  2062. {
  2063. "url": "https://opencollective.com/hyperf",
  2064. "type": "open_collective"
  2065. }
  2066. ],
  2067. "time": "2024-09-25T02:54:12+00:00"
  2068. },
  2069. {
  2070. "name": "hyperf/contract",
  2071. "version": "v3.1.42",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://github.com/hyperf/contract.git",
  2075. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2080. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2081. "shasum": ""
  2082. },
  2083. "require": {
  2084. "php": ">=8.1"
  2085. },
  2086. "type": "library",
  2087. "extra": {
  2088. "branch-alias": {
  2089. "dev-master": "3.1-dev"
  2090. }
  2091. },
  2092. "autoload": {
  2093. "psr-4": {
  2094. "Hyperf\\Contract\\": "src/"
  2095. }
  2096. },
  2097. "notification-url": "https://packagist.org/downloads/",
  2098. "license": [
  2099. "MIT"
  2100. ],
  2101. "description": "The contracts of Hyperf.",
  2102. "homepage": "https://hyperf.io",
  2103. "keywords": [
  2104. "hyperf",
  2105. "php",
  2106. "swoole"
  2107. ],
  2108. "support": {
  2109. "docs": "https://hyperf.wiki",
  2110. "issues": "https://github.com/hyperf/hyperf/issues",
  2111. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2112. "source": "https://github.com/hyperf/hyperf"
  2113. },
  2114. "funding": [
  2115. {
  2116. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2117. "type": "custom"
  2118. },
  2119. {
  2120. "url": "https://opencollective.com/hyperf",
  2121. "type": "open_collective"
  2122. }
  2123. ],
  2124. "time": "2024-09-25T02:54:12+00:00"
  2125. },
  2126. {
  2127. "name": "hyperf/coordinator",
  2128. "version": "v3.1.42",
  2129. "source": {
  2130. "type": "git",
  2131. "url": "https://github.com/hyperf/coordinator.git",
  2132. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2133. },
  2134. "dist": {
  2135. "type": "zip",
  2136. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2137. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2138. "shasum": ""
  2139. },
  2140. "require": {
  2141. "hyperf/engine": "^2.0",
  2142. "php": ">=8.1"
  2143. },
  2144. "type": "library",
  2145. "extra": {
  2146. "branch-alias": {
  2147. "dev-master": "3.1-dev"
  2148. }
  2149. },
  2150. "autoload": {
  2151. "files": [
  2152. "src/Functions.php"
  2153. ],
  2154. "psr-4": {
  2155. "Hyperf\\Coordinator\\": "src/"
  2156. }
  2157. },
  2158. "notification-url": "https://packagist.org/downloads/",
  2159. "license": [
  2160. "MIT"
  2161. ],
  2162. "description": "Hyperf Coordinator",
  2163. "homepage": "https://hyperf.io",
  2164. "keywords": [
  2165. "Coordinator",
  2166. "hyperf",
  2167. "php",
  2168. "swoole"
  2169. ],
  2170. "support": {
  2171. "docs": "https://hyperf.wiki",
  2172. "issues": "https://github.com/hyperf/hyperf/issues",
  2173. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2174. "source": "https://github.com/hyperf/hyperf"
  2175. },
  2176. "funding": [
  2177. {
  2178. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2179. "type": "custom"
  2180. },
  2181. {
  2182. "url": "https://opencollective.com/hyperf",
  2183. "type": "open_collective"
  2184. }
  2185. ],
  2186. "time": "2024-09-25T02:54:12+00:00"
  2187. },
  2188. {
  2189. "name": "hyperf/coroutine",
  2190. "version": "v3.1.42",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://github.com/hyperf/coroutine.git",
  2194. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2199. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2200. "shasum": ""
  2201. },
  2202. "require": {
  2203. "hyperf/context": "~3.1.0",
  2204. "hyperf/contract": "~3.1.0",
  2205. "hyperf/engine": "^2.0",
  2206. "php": ">=8.1"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "3.1-dev"
  2212. }
  2213. },
  2214. "autoload": {
  2215. "files": [
  2216. "src/Functions.php"
  2217. ],
  2218. "psr-4": {
  2219. "Hyperf\\Coroutine\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "description": "Hyperf Coroutine",
  2227. "homepage": "https://hyperf.io",
  2228. "keywords": [
  2229. "coroutine",
  2230. "hyperf",
  2231. "php",
  2232. "swoole"
  2233. ],
  2234. "support": {
  2235. "docs": "https://hyperf.wiki",
  2236. "issues": "https://github.com/hyperf/hyperf/issues",
  2237. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2238. "source": "https://github.com/hyperf/hyperf"
  2239. },
  2240. "funding": [
  2241. {
  2242. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2243. "type": "custom"
  2244. },
  2245. {
  2246. "url": "https://opencollective.com/hyperf",
  2247. "type": "open_collective"
  2248. }
  2249. ],
  2250. "time": "2024-09-25T02:54:12+00:00"
  2251. },
  2252. {
  2253. "name": "hyperf/database",
  2254. "version": "v3.1.45",
  2255. "source": {
  2256. "type": "git",
  2257. "url": "https://github.com/hyperf/database.git",
  2258. "reference": "6632bbd7a118416cfecfc80fe0f85c650aa0941e"
  2259. },
  2260. "dist": {
  2261. "type": "zip",
  2262. "url": "https://api.github.com/repos/hyperf/database/zipball/6632bbd7a118416cfecfc80fe0f85c650aa0941e",
  2263. "reference": "6632bbd7a118416cfecfc80fe0f85c650aa0941e",
  2264. "shasum": ""
  2265. },
  2266. "require": {
  2267. "hyperf/code-parser": "~3.1.0",
  2268. "hyperf/collection": "~3.1.23",
  2269. "hyperf/conditionable": "~3.1.0",
  2270. "hyperf/macroable": "~3.1.0",
  2271. "hyperf/support": "~3.1.0",
  2272. "hyperf/tappable": "~3.1.0",
  2273. "hyperf/utils": "~3.1.0",
  2274. "nesbot/carbon": "^2.0",
  2275. "php": ">=8.1",
  2276. "psr/container": "^1.0 || ^2.0",
  2277. "psr/event-dispatcher": "^1.0"
  2278. },
  2279. "suggest": {
  2280. "doctrine/dbal": "Required to rename columns (^3.0).",
  2281. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2282. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2283. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2284. },
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-master": "3.1-dev"
  2289. }
  2290. },
  2291. "autoload": {
  2292. "psr-4": {
  2293. "Hyperf\\Database\\": "src/"
  2294. }
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "MIT"
  2299. ],
  2300. "description": "A flexible database library.",
  2301. "homepage": "https://hyperf.io",
  2302. "keywords": [
  2303. "database",
  2304. "hyperf",
  2305. "php"
  2306. ],
  2307. "support": {
  2308. "docs": "https://hyperf.wiki",
  2309. "issues": "https://github.com/hyperf/hyperf/issues",
  2310. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2311. "source": "https://github.com/hyperf/hyperf"
  2312. },
  2313. "funding": [
  2314. {
  2315. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2316. "type": "custom"
  2317. },
  2318. {
  2319. "url": "https://opencollective.com/hyperf",
  2320. "type": "open_collective"
  2321. }
  2322. ],
  2323. "time": "2024-11-11T05:55:47+00:00"
  2324. },
  2325. {
  2326. "name": "hyperf/db-connection",
  2327. "version": "v3.1.44",
  2328. "source": {
  2329. "type": "git",
  2330. "url": "https://github.com/hyperf/db-connection.git",
  2331. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2332. },
  2333. "dist": {
  2334. "type": "zip",
  2335. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2336. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2337. "shasum": ""
  2338. },
  2339. "require": {
  2340. "hyperf/database": "~3.1.0",
  2341. "hyperf/di": "~3.1.0",
  2342. "hyperf/framework": "~3.1.0",
  2343. "hyperf/model-listener": "~3.1.0",
  2344. "hyperf/pool": "~3.1.0",
  2345. "hyperf/support": "~3.1.0",
  2346. "hyperf/utils": "~3.1.0",
  2347. "php": ">=8.1",
  2348. "psr/container": "^1.0 || ^2.0"
  2349. },
  2350. "type": "library",
  2351. "extra": {
  2352. "branch-alias": {
  2353. "dev-master": "3.1-dev"
  2354. },
  2355. "hyperf": {
  2356. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2357. }
  2358. },
  2359. "autoload": {
  2360. "psr-4": {
  2361. "Hyperf\\DbConnection\\": "src/"
  2362. }
  2363. },
  2364. "notification-url": "https://packagist.org/downloads/",
  2365. "license": [
  2366. "MIT"
  2367. ],
  2368. "description": "A hyperf db connection handler for hyperf/database.",
  2369. "homepage": "https://hyperf.io",
  2370. "keywords": [
  2371. "Connection",
  2372. "database",
  2373. "hyperf",
  2374. "php"
  2375. ],
  2376. "support": {
  2377. "docs": "https://hyperf.wiki",
  2378. "issues": "https://github.com/hyperf/hyperf/issues",
  2379. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2380. "source": "https://github.com/hyperf/hyperf"
  2381. },
  2382. "funding": [
  2383. {
  2384. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2385. "type": "custom"
  2386. },
  2387. {
  2388. "url": "https://opencollective.com/hyperf",
  2389. "type": "open_collective"
  2390. }
  2391. ],
  2392. "time": "2024-10-11T08:58:16+00:00"
  2393. },
  2394. {
  2395. "name": "hyperf/di",
  2396. "version": "v3.1.42",
  2397. "source": {
  2398. "type": "git",
  2399. "url": "https://github.com/hyperf/di.git",
  2400. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2401. },
  2402. "dist": {
  2403. "type": "zip",
  2404. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2405. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2406. "shasum": ""
  2407. },
  2408. "require": {
  2409. "doctrine/instantiator": "^1.0",
  2410. "hyperf/code-parser": "~3.1.0",
  2411. "hyperf/pipeline": "~3.1.0",
  2412. "hyperf/stdlib": "~3.1.0",
  2413. "hyperf/support": "~3.1.0",
  2414. "nikic/php-parser": "^4.1",
  2415. "php": ">=8.1",
  2416. "php-di/phpdoc-reader": "^2.2",
  2417. "psr/container": "^1.0 || ^2.0",
  2418. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2419. "vlucas/phpdotenv": "^5.0"
  2420. },
  2421. "suggest": {
  2422. "ext-pcntl": "Required to scan annotations.",
  2423. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2424. },
  2425. "type": "library",
  2426. "extra": {
  2427. "branch-alias": {
  2428. "dev-master": "3.1-dev"
  2429. },
  2430. "hyperf": {
  2431. "config": "Hyperf\\Di\\ConfigProvider"
  2432. }
  2433. },
  2434. "autoload": {
  2435. "psr-4": {
  2436. "Hyperf\\Di\\": "src/"
  2437. }
  2438. },
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "MIT"
  2442. ],
  2443. "description": "A DI for Hyperf.",
  2444. "homepage": "https://hyperf.io",
  2445. "keywords": [
  2446. "annotation",
  2447. "di",
  2448. "hyperf",
  2449. "php",
  2450. "swoole"
  2451. ],
  2452. "support": {
  2453. "docs": "https://hyperf.wiki",
  2454. "issues": "https://github.com/hyperf/hyperf/issues",
  2455. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2456. "source": "https://github.com/hyperf/hyperf"
  2457. },
  2458. "funding": [
  2459. {
  2460. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2461. "type": "custom"
  2462. },
  2463. {
  2464. "url": "https://opencollective.com/hyperf",
  2465. "type": "open_collective"
  2466. }
  2467. ],
  2468. "time": "2024-09-25T02:54:12+00:00"
  2469. },
  2470. {
  2471. "name": "hyperf/dispatcher",
  2472. "version": "v3.1.42",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/hyperf/dispatcher.git",
  2476. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2481. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "hyperf/contract": "~3.1.0",
  2486. "php": ">=8.1",
  2487. "psr/container": "^1.0 || ^2.0",
  2488. "psr/http-message": "^1.0 || ^2.0",
  2489. "psr/http-server-middleware": "^1.0"
  2490. },
  2491. "type": "library",
  2492. "extra": {
  2493. "branch-alias": {
  2494. "dev-master": "3.1-dev"
  2495. },
  2496. "hyperf": {
  2497. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2498. }
  2499. },
  2500. "autoload": {
  2501. "psr-4": {
  2502. "Hyperf\\Dispatcher\\": "src/"
  2503. }
  2504. },
  2505. "notification-url": "https://packagist.org/downloads/",
  2506. "license": [
  2507. "MIT"
  2508. ],
  2509. "description": "A HTTP Server for Hyperf.",
  2510. "homepage": "https://hyperf.io",
  2511. "keywords": [
  2512. "dispatcher",
  2513. "filter",
  2514. "hyperf",
  2515. "middleware",
  2516. "php",
  2517. "swoole"
  2518. ],
  2519. "support": {
  2520. "docs": "https://hyperf.wiki",
  2521. "issues": "https://github.com/hyperf/hyperf/issues",
  2522. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2523. "source": "https://github.com/hyperf/hyperf"
  2524. },
  2525. "funding": [
  2526. {
  2527. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2528. "type": "custom"
  2529. },
  2530. {
  2531. "url": "https://opencollective.com/hyperf",
  2532. "type": "open_collective"
  2533. }
  2534. ],
  2535. "time": "2024-09-25T02:54:12+00:00"
  2536. },
  2537. {
  2538. "name": "hyperf/engine",
  2539. "version": "v2.11.0",
  2540. "source": {
  2541. "type": "git",
  2542. "url": "https://github.com/hyperf/engine.git",
  2543. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2544. },
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2548. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2549. "shasum": ""
  2550. },
  2551. "require": {
  2552. "hyperf/engine-contract": "~1.10.0",
  2553. "php": ">=8.0"
  2554. },
  2555. "conflict": {
  2556. "ext-swoole": "<5.0"
  2557. },
  2558. "require-dev": {
  2559. "friendsofphp/php-cs-fixer": "^3.0",
  2560. "hyperf/guzzle": "^3.0",
  2561. "hyperf/http-message": "^3.0",
  2562. "mockery/mockery": "^1.5",
  2563. "phpstan/phpstan": "^1.0",
  2564. "phpunit/phpunit": "^9.4",
  2565. "swoole/ide-helper": "5.*"
  2566. },
  2567. "suggest": {
  2568. "ext-sockets": "*",
  2569. "ext-swoole": ">=5.0",
  2570. "hyperf/http-message": "Required to use ResponseEmitter.",
  2571. "psr/http-message": "Required to use WebSocket Frame."
  2572. },
  2573. "type": "library",
  2574. "extra": {
  2575. "branch-alias": {
  2576. "dev-master": "2.11-dev"
  2577. },
  2578. "hyperf": {
  2579. "config": "Hyperf\\Engine\\ConfigProvider"
  2580. }
  2581. },
  2582. "autoload": {
  2583. "files": [
  2584. "src/Functions.php"
  2585. ],
  2586. "psr-4": {
  2587. "Hyperf\\Engine\\": "src/"
  2588. }
  2589. },
  2590. "notification-url": "https://packagist.org/downloads/",
  2591. "license": [
  2592. "MIT"
  2593. ],
  2594. "description": "Coroutine engine provided by swoole.",
  2595. "keywords": [
  2596. "engine",
  2597. "hyperf",
  2598. "php",
  2599. "swoole"
  2600. ],
  2601. "support": {
  2602. "issues": "https://github.com/hyperf/engine/issues",
  2603. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2604. },
  2605. "funding": [
  2606. {
  2607. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2608. "type": "custom"
  2609. },
  2610. {
  2611. "url": "https://opencollective.com/hyperf",
  2612. "type": "open_collective"
  2613. }
  2614. ],
  2615. "time": "2024-04-17T13:36:28+00:00"
  2616. },
  2617. {
  2618. "name": "hyperf/engine-contract",
  2619. "version": "v1.10.1",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://github.com/hyperf/engine-contract.git",
  2623. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2628. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2629. "shasum": ""
  2630. },
  2631. "require": {
  2632. "php": ">=8.0"
  2633. },
  2634. "require-dev": {
  2635. "friendsofphp/php-cs-fixer": "^3.0",
  2636. "mockery/mockery": "^1.0",
  2637. "phpstan/phpstan": "^1.0",
  2638. "phpunit/phpunit": ">=7.0",
  2639. "psr/http-message": "^1.0",
  2640. "swoole/ide-helper": "^4.5"
  2641. },
  2642. "suggest": {
  2643. "psr/http-message": "Required to use WebSocket Frame."
  2644. },
  2645. "type": "library",
  2646. "extra": {
  2647. "branch-alias": {
  2648. "dev-master": "1.9-dev"
  2649. }
  2650. },
  2651. "autoload": {
  2652. "psr-4": {
  2653. "Hyperf\\Engine\\Contract\\": "src/"
  2654. }
  2655. },
  2656. "notification-url": "https://packagist.org/downloads/",
  2657. "license": [
  2658. "MIT"
  2659. ],
  2660. "description": "Contract for Coroutine Engine",
  2661. "keywords": [
  2662. "contract",
  2663. "coroutine",
  2664. "engine",
  2665. "hyperf",
  2666. "php"
  2667. ],
  2668. "support": {
  2669. "issues": "https://github.com/hyperf/engine-contract/issues",
  2670. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2671. },
  2672. "funding": [
  2673. {
  2674. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2675. "type": "custom"
  2676. },
  2677. {
  2678. "url": "https://opencollective.com/hyperf",
  2679. "type": "open_collective"
  2680. }
  2681. ],
  2682. "time": "2024-04-17T13:34:51+00:00"
  2683. },
  2684. {
  2685. "name": "hyperf/event",
  2686. "version": "v3.1.42",
  2687. "source": {
  2688. "type": "git",
  2689. "url": "https://github.com/hyperf/event.git",
  2690. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2691. },
  2692. "dist": {
  2693. "type": "zip",
  2694. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2695. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2696. "shasum": ""
  2697. },
  2698. "require": {
  2699. "hyperf/contract": "~3.1.0",
  2700. "hyperf/stdlib": "~3.1.0",
  2701. "php": ">=8.1",
  2702. "psr/event-dispatcher": "^1.0"
  2703. },
  2704. "suggest": {
  2705. "hyperf/di": "Required to use annotatioins."
  2706. },
  2707. "type": "library",
  2708. "extra": {
  2709. "branch-alias": {
  2710. "dev-master": "3.1-dev"
  2711. },
  2712. "hyperf": {
  2713. "config": "Hyperf\\Event\\ConfigProvider"
  2714. }
  2715. },
  2716. "autoload": {
  2717. "psr-4": {
  2718. "Hyperf\\Event\\": "src/"
  2719. }
  2720. },
  2721. "notification-url": "https://packagist.org/downloads/",
  2722. "license": [
  2723. "MIT"
  2724. ],
  2725. "description": "an event manager that implements PSR-14.",
  2726. "homepage": "https://hyperf.io",
  2727. "keywords": [
  2728. "event",
  2729. "hyperf",
  2730. "php",
  2731. "swoole"
  2732. ],
  2733. "support": {
  2734. "docs": "https://hyperf.wiki",
  2735. "issues": "https://github.com/hyperf/hyperf/issues",
  2736. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2737. "source": "https://github.com/hyperf/hyperf"
  2738. },
  2739. "funding": [
  2740. {
  2741. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2742. "type": "custom"
  2743. },
  2744. {
  2745. "url": "https://opencollective.com/hyperf",
  2746. "type": "open_collective"
  2747. }
  2748. ],
  2749. "time": "2024-09-25T02:54:12+00:00"
  2750. },
  2751. {
  2752. "name": "hyperf/exception-handler",
  2753. "version": "v3.1.42",
  2754. "source": {
  2755. "type": "git",
  2756. "url": "https://github.com/hyperf/exception-handler.git",
  2757. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2758. },
  2759. "dist": {
  2760. "type": "zip",
  2761. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2762. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2763. "shasum": ""
  2764. },
  2765. "require": {
  2766. "hyperf/context": "~3.1.0",
  2767. "hyperf/contract": "~3.1.0",
  2768. "hyperf/dispatcher": "~3.1.0",
  2769. "hyperf/http-message": "~3.1.0",
  2770. "hyperf/stdlib": "~3.1.0",
  2771. "hyperf/support": "~3.1.0",
  2772. "php": ">=8.1",
  2773. "psr/container": "^1.0 || ^2.0",
  2774. "psr/http-message": "^1.0 || ^2.0",
  2775. "swow/psr7-plus": "^1.0"
  2776. },
  2777. "suggest": {
  2778. "hyperf/di": "Required to use #[ExceptionHandler]",
  2779. "hyperf/event": "Required to use listeners",
  2780. "hyperf/framework": "Required to use listeners",
  2781. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2782. },
  2783. "type": "library",
  2784. "extra": {
  2785. "branch-alias": {
  2786. "dev-master": "3.1-dev"
  2787. },
  2788. "hyperf": {
  2789. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2790. }
  2791. },
  2792. "autoload": {
  2793. "psr-4": {
  2794. "Hyperf\\ExceptionHandler\\": "src/"
  2795. }
  2796. },
  2797. "notification-url": "https://packagist.org/downloads/",
  2798. "license": [
  2799. "MIT"
  2800. ],
  2801. "description": "Exception handler for hyperf",
  2802. "homepage": "https://hyperf.io",
  2803. "keywords": [
  2804. "exception-handler",
  2805. "php",
  2806. "swoole"
  2807. ],
  2808. "support": {
  2809. "docs": "https://hyperf.wiki",
  2810. "issues": "https://github.com/hyperf/hyperf/issues",
  2811. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2812. "source": "https://github.com/hyperf/hyperf"
  2813. },
  2814. "funding": [
  2815. {
  2816. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2817. "type": "custom"
  2818. },
  2819. {
  2820. "url": "https://opencollective.com/hyperf",
  2821. "type": "open_collective"
  2822. }
  2823. ],
  2824. "time": "2024-09-25T02:54:12+00:00"
  2825. },
  2826. {
  2827. "name": "hyperf/framework",
  2828. "version": "v3.1.42",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/hyperf/framework.git",
  2832. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2837. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "fig/http-message-util": "^1.1.2",
  2842. "hyperf/contract": "~3.1.0",
  2843. "hyperf/coordinator": "~3.1.0",
  2844. "hyperf/coroutine": "~3.1.0",
  2845. "php": ">=8.1",
  2846. "psr/container": "^1.0 || ^2.0",
  2847. "psr/event-dispatcher": "^1.0",
  2848. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2849. },
  2850. "suggest": {
  2851. "ext-swoole": "Required to use swoole engine.",
  2852. "hyperf/command": "Required to use Command annotation.",
  2853. "hyperf/di": "Required to use Command annotation.",
  2854. "hyperf/dispatcher": "Required to use BootApplication event.",
  2855. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2856. },
  2857. "type": "library",
  2858. "extra": {
  2859. "branch-alias": {
  2860. "dev-master": "3.1-dev"
  2861. },
  2862. "hyperf": {
  2863. "config": "Hyperf\\Framework\\ConfigProvider"
  2864. }
  2865. },
  2866. "autoload": {
  2867. "psr-4": {
  2868. "Hyperf\\Framework\\": "src/"
  2869. }
  2870. },
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "MIT"
  2874. ],
  2875. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2876. "homepage": "https://hyperf.io",
  2877. "keywords": [
  2878. "Microservice",
  2879. "framework",
  2880. "hyperf",
  2881. "middleware",
  2882. "php",
  2883. "swoole"
  2884. ],
  2885. "support": {
  2886. "docs": "https://hyperf.wiki",
  2887. "issues": "https://github.com/hyperf/hyperf/issues",
  2888. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2889. "source": "https://github.com/hyperf/hyperf"
  2890. },
  2891. "funding": [
  2892. {
  2893. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2894. "type": "custom"
  2895. },
  2896. {
  2897. "url": "https://opencollective.com/hyperf",
  2898. "type": "open_collective"
  2899. }
  2900. ],
  2901. "time": "2024-09-25T02:54:12+00:00"
  2902. },
  2903. {
  2904. "name": "hyperf/guzzle",
  2905. "version": "v3.1.42",
  2906. "source": {
  2907. "type": "git",
  2908. "url": "https://github.com/hyperf/guzzle.git",
  2909. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2910. },
  2911. "dist": {
  2912. "type": "zip",
  2913. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2914. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2915. "shasum": ""
  2916. },
  2917. "require": {
  2918. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2919. "php": ">=8.1",
  2920. "psr/container": "^1.0 || ^2.0",
  2921. "psr/http-message": "^1.0 || ^2.0"
  2922. },
  2923. "suggest": {
  2924. "ext-curl": "Required for CURL handler support",
  2925. "hyperf/pool": "Required to use pool handler."
  2926. },
  2927. "type": "library",
  2928. "extra": {
  2929. "branch-alias": {
  2930. "dev-master": "3.1-dev"
  2931. },
  2932. "hyperf": {
  2933. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2934. }
  2935. },
  2936. "autoload": {
  2937. "psr-4": {
  2938. "Hyperf\\Guzzle\\": "src/"
  2939. }
  2940. },
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "description": "Swoole coroutine handler for guzzle",
  2946. "keywords": [
  2947. "Guzzle",
  2948. "handler",
  2949. "php",
  2950. "swoole"
  2951. ],
  2952. "support": {
  2953. "issues": "https://github.com/hyperf/guzzle/issues",
  2954. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2955. },
  2956. "funding": [
  2957. {
  2958. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2959. "type": "custom"
  2960. },
  2961. {
  2962. "url": "https://opencollective.com/hyperf",
  2963. "type": "open_collective"
  2964. }
  2965. ],
  2966. "time": "2024-09-25T02:54:12+00:00"
  2967. },
  2968. {
  2969. "name": "hyperf/http-message",
  2970. "version": "v3.1.42",
  2971. "source": {
  2972. "type": "git",
  2973. "url": "https://github.com/hyperf/http-message.git",
  2974. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2975. },
  2976. "dist": {
  2977. "type": "zip",
  2978. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2979. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2980. "shasum": ""
  2981. },
  2982. "require": {
  2983. "hyperf/codec": "~3.1.0",
  2984. "hyperf/engine": "^2.11",
  2985. "hyperf/support": "~3.1.0",
  2986. "laminas/laminas-mime": "^2.7",
  2987. "php": ">=8.1",
  2988. "psr/http-message": "^1.0 || ^2.0",
  2989. "swow/psr7-plus": "^1.0"
  2990. },
  2991. "suggest": {
  2992. "psr/container": "Required to replace RequestParserInterface."
  2993. },
  2994. "type": "library",
  2995. "extra": {
  2996. "branch-alias": {
  2997. "dev-master": "3.1-dev"
  2998. },
  2999. "hyperf": {
  3000. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  3001. }
  3002. },
  3003. "autoload": {
  3004. "psr-4": {
  3005. "Hyperf\\HttpMessage\\": "src/"
  3006. }
  3007. },
  3008. "notification-url": "https://packagist.org/downloads/",
  3009. "license": [
  3010. "MIT"
  3011. ],
  3012. "description": "microservice framework base on swoole",
  3013. "keywords": [
  3014. "http-message",
  3015. "hyperf",
  3016. "php",
  3017. "swoole"
  3018. ],
  3019. "support": {
  3020. "issues": "https://github.com/hyperf/http-message/issues",
  3021. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  3022. },
  3023. "funding": [
  3024. {
  3025. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3026. "type": "custom"
  3027. },
  3028. {
  3029. "url": "https://opencollective.com/hyperf",
  3030. "type": "open_collective"
  3031. }
  3032. ],
  3033. "time": "2024-09-25T02:54:12+00:00"
  3034. },
  3035. {
  3036. "name": "hyperf/http-server",
  3037. "version": "v3.1.42",
  3038. "source": {
  3039. "type": "git",
  3040. "url": "https://github.com/hyperf/http-server.git",
  3041. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3042. },
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3046. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3047. "shasum": ""
  3048. },
  3049. "require": {
  3050. "hyperf/codec": "~3.1.0",
  3051. "hyperf/collection": "~3.1.0",
  3052. "hyperf/context": "~3.1.0",
  3053. "hyperf/contract": "~3.1.0",
  3054. "hyperf/coroutine": "~3.1.0",
  3055. "hyperf/dispatcher": "~3.1.0",
  3056. "hyperf/event": "~3.1.0",
  3057. "hyperf/exception-handler": "~3.1.0",
  3058. "hyperf/http-message": "~3.1.0",
  3059. "hyperf/macroable": "~3.1.0",
  3060. "hyperf/serializer": "~3.1.0",
  3061. "hyperf/server": "~3.1.0",
  3062. "hyperf/stdlib": "~3.1.0",
  3063. "hyperf/support": "~3.1.0",
  3064. "nikic/fast-route": "^1.3",
  3065. "php": ">=8.1",
  3066. "psr/container": "^1.0 || ^2.0",
  3067. "swow/psr7-plus": "^1.0"
  3068. },
  3069. "suggest": {
  3070. "hyperf/di": "Required to use annotations."
  3071. },
  3072. "type": "library",
  3073. "extra": {
  3074. "branch-alias": {
  3075. "dev-master": "3.1-dev"
  3076. },
  3077. "hyperf": {
  3078. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "Hyperf\\HttpServer\\": "src/"
  3084. }
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "description": "A HTTP Server for Hyperf.",
  3091. "homepage": "https://hyperf.io",
  3092. "keywords": [
  3093. "http",
  3094. "http-server",
  3095. "hyperf",
  3096. "php",
  3097. "swoole"
  3098. ],
  3099. "support": {
  3100. "docs": "https://hyperf.wiki",
  3101. "issues": "https://github.com/hyperf/hyperf/issues",
  3102. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3103. "source": "https://github.com/hyperf/hyperf"
  3104. },
  3105. "funding": [
  3106. {
  3107. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3108. "type": "custom"
  3109. },
  3110. {
  3111. "url": "https://opencollective.com/hyperf",
  3112. "type": "open_collective"
  3113. }
  3114. ],
  3115. "time": "2024-09-25T02:54:12+00:00"
  3116. },
  3117. {
  3118. "name": "hyperf/json-rpc",
  3119. "version": "v3.1.42",
  3120. "source": {
  3121. "type": "git",
  3122. "url": "https://github.com/hyperf/json-rpc.git",
  3123. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  3124. },
  3125. "dist": {
  3126. "type": "zip",
  3127. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3128. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3129. "shasum": ""
  3130. },
  3131. "require": {
  3132. "hyperf/codec": "~3.1.0",
  3133. "hyperf/context": "~3.1.0",
  3134. "hyperf/contract": "~3.1.0",
  3135. "hyperf/engine": "^2.0",
  3136. "hyperf/http-message": "~3.1.0",
  3137. "hyperf/load-balancer": "~3.1.0",
  3138. "hyperf/rpc": "~3.1.0",
  3139. "hyperf/serializer": "~3.1.0",
  3140. "hyperf/support": "~3.1.0",
  3141. "hyperf/utils": "~3.1.0",
  3142. "php": ">=8.1",
  3143. "psr/container": "^1.0 || ^2.0",
  3144. "swow/psr7-plus": "^1.0"
  3145. },
  3146. "suggest": {
  3147. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3148. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3149. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3150. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3151. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3152. },
  3153. "type": "library",
  3154. "extra": {
  3155. "branch-alias": {
  3156. "dev-master": "3.1-dev"
  3157. },
  3158. "hyperf": {
  3159. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3160. }
  3161. },
  3162. "autoload": {
  3163. "psr-4": {
  3164. "Hyperf\\JsonRpc\\": "src/"
  3165. }
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "MIT"
  3170. ],
  3171. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3172. "homepage": "https://hyperf.io",
  3173. "keywords": [
  3174. "hyperf",
  3175. "json-rpc",
  3176. "php",
  3177. "swoole"
  3178. ],
  3179. "support": {
  3180. "docs": "https://hyperf.wiki",
  3181. "issues": "https://github.com/hyperf/hyperf/issues",
  3182. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3183. "source": "https://github.com/hyperf/hyperf"
  3184. },
  3185. "funding": [
  3186. {
  3187. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3188. "type": "custom"
  3189. },
  3190. {
  3191. "url": "https://opencollective.com/hyperf",
  3192. "type": "open_collective"
  3193. }
  3194. ],
  3195. "time": "2024-09-25T02:54:12+00:00"
  3196. },
  3197. {
  3198. "name": "hyperf/load-balancer",
  3199. "version": "v3.1.42",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/hyperf/load-balancer.git",
  3203. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3208. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3209. "shasum": ""
  3210. },
  3211. "require": {
  3212. "hyperf/coordinator": "~3.1.0",
  3213. "hyperf/coroutine": "~3.1.0",
  3214. "markrogoyski/math-php": "^2.0",
  3215. "php": ">=8.1",
  3216. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3217. },
  3218. "type": "library",
  3219. "extra": {
  3220. "branch-alias": {
  3221. "dev-master": "3.1-dev"
  3222. },
  3223. "hyperf": {
  3224. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3225. }
  3226. },
  3227. "autoload": {
  3228. "psr-4": {
  3229. "Hyperf\\LoadBalancer\\": "src/"
  3230. }
  3231. },
  3232. "notification-url": "https://packagist.org/downloads/",
  3233. "license": [
  3234. "MIT"
  3235. ],
  3236. "description": "A load balancer library for Hyperf.",
  3237. "homepage": "https://hyperf.io",
  3238. "keywords": [
  3239. "hyperf",
  3240. "load-balancer",
  3241. "php",
  3242. "swoole"
  3243. ],
  3244. "support": {
  3245. "docs": "https://hyperf.wiki",
  3246. "issues": "https://github.com/hyperf/hyperf/issues",
  3247. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3248. "source": "https://github.com/hyperf/hyperf"
  3249. },
  3250. "funding": [
  3251. {
  3252. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3253. "type": "custom"
  3254. },
  3255. {
  3256. "url": "https://opencollective.com/hyperf",
  3257. "type": "open_collective"
  3258. }
  3259. ],
  3260. "time": "2024-09-25T02:54:12+00:00"
  3261. },
  3262. {
  3263. "name": "hyperf/logger",
  3264. "version": "v3.1.42",
  3265. "source": {
  3266. "type": "git",
  3267. "url": "https://github.com/hyperf/logger.git",
  3268. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3269. },
  3270. "dist": {
  3271. "type": "zip",
  3272. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3273. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3274. "shasum": ""
  3275. },
  3276. "require": {
  3277. "hyperf/contract": "~3.1.0",
  3278. "hyperf/support": "~3.1.0",
  3279. "hyperf/utils": "~3.1.0",
  3280. "monolog/monolog": "^2.7 || ^3.1",
  3281. "php": ">=8.1",
  3282. "psr/container": "^1.0 || ^2.0",
  3283. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3284. },
  3285. "type": "library",
  3286. "extra": {
  3287. "branch-alias": {
  3288. "dev-master": "3.1-dev"
  3289. },
  3290. "hyperf": {
  3291. "config": "Hyperf\\Logger\\ConfigProvider"
  3292. }
  3293. },
  3294. "autoload": {
  3295. "psr-4": {
  3296. "Hyperf\\Logger\\": "src/"
  3297. }
  3298. },
  3299. "notification-url": "https://packagist.org/downloads/",
  3300. "license": [
  3301. "MIT"
  3302. ],
  3303. "description": "A logger component for hyperf.",
  3304. "homepage": "https://hyperf.io",
  3305. "keywords": [
  3306. "hyperf",
  3307. "logger",
  3308. "php"
  3309. ],
  3310. "support": {
  3311. "docs": "https://hyperf.wiki",
  3312. "issues": "https://github.com/hyperf/hyperf/issues",
  3313. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3314. "source": "https://github.com/hyperf/hyperf"
  3315. },
  3316. "funding": [
  3317. {
  3318. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3319. "type": "custom"
  3320. },
  3321. {
  3322. "url": "https://opencollective.com/hyperf",
  3323. "type": "open_collective"
  3324. }
  3325. ],
  3326. "time": "2024-09-25T02:54:12+00:00"
  3327. },
  3328. {
  3329. "name": "hyperf/macroable",
  3330. "version": "v3.1.42",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://github.com/hyperf/macroable.git",
  3334. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3339. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3340. "shasum": ""
  3341. },
  3342. "require": {
  3343. "php": ">=8.1"
  3344. },
  3345. "type": "library",
  3346. "extra": {
  3347. "branch-alias": {
  3348. "dev-master": "3.1-dev"
  3349. }
  3350. },
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Hyperf\\Macroable\\": "src/"
  3354. }
  3355. },
  3356. "notification-url": "https://packagist.org/downloads/",
  3357. "license": [
  3358. "MIT"
  3359. ],
  3360. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3361. "homepage": "https://hyperf.io",
  3362. "keywords": [
  3363. "hyperf",
  3364. "macroable",
  3365. "php",
  3366. "swoole"
  3367. ],
  3368. "support": {
  3369. "docs": "https://hyperf.wiki",
  3370. "issues": "https://github.com/hyperf/hyperf/issues",
  3371. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3372. "source": "https://github.com/hyperf/hyperf"
  3373. },
  3374. "funding": [
  3375. {
  3376. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3377. "type": "custom"
  3378. },
  3379. {
  3380. "url": "https://opencollective.com/hyperf",
  3381. "type": "open_collective"
  3382. }
  3383. ],
  3384. "time": "2024-09-25T02:54:12+00:00"
  3385. },
  3386. {
  3387. "name": "hyperf/memory",
  3388. "version": "v3.1.42",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/hyperf/memory.git",
  3392. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3397. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3398. "shasum": ""
  3399. },
  3400. "require": {
  3401. "php": ">=8.1"
  3402. },
  3403. "type": "library",
  3404. "extra": {
  3405. "branch-alias": {
  3406. "dev-master": "3.1-dev"
  3407. },
  3408. "hyperf": {
  3409. "config": "Hyperf\\Memory\\ConfigProvider"
  3410. }
  3411. },
  3412. "autoload": {
  3413. "psr-4": {
  3414. "Hyperf\\Memory\\": "src/"
  3415. }
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "MIT"
  3420. ],
  3421. "description": "An independent component that use to operate and manage memory.",
  3422. "homepage": "https://hyperf.io",
  3423. "keywords": [
  3424. "hyperf",
  3425. "memory",
  3426. "php",
  3427. "swoole"
  3428. ],
  3429. "support": {
  3430. "docs": "https://hyperf.wiki",
  3431. "issues": "https://github.com/hyperf/hyperf/issues",
  3432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3433. "source": "https://github.com/hyperf/hyperf"
  3434. },
  3435. "funding": [
  3436. {
  3437. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3438. "type": "custom"
  3439. },
  3440. {
  3441. "url": "https://opencollective.com/hyperf",
  3442. "type": "open_collective"
  3443. }
  3444. ],
  3445. "time": "2024-09-25T02:54:12+00:00"
  3446. },
  3447. {
  3448. "name": "hyperf/model-listener",
  3449. "version": "v3.1.42",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://github.com/hyperf/model-listener.git",
  3453. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3458. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3459. "shasum": ""
  3460. },
  3461. "require": {
  3462. "hyperf/contract": "~3.1.0",
  3463. "hyperf/database": "~3.1.0",
  3464. "hyperf/di": "~3.1.0",
  3465. "hyperf/event": "~3.1.0",
  3466. "hyperf/support": "~3.1.0",
  3467. "hyperf/utils": "~3.1.0",
  3468. "php": ">=8.1",
  3469. "psr/container": "^1.0 || ^2.0"
  3470. },
  3471. "type": "library",
  3472. "extra": {
  3473. "branch-alias": {
  3474. "dev-master": "3.1-dev"
  3475. },
  3476. "hyperf": {
  3477. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3478. }
  3479. },
  3480. "autoload": {
  3481. "psr-4": {
  3482. "Hyperf\\ModelListener\\": "src/"
  3483. }
  3484. },
  3485. "notification-url": "https://packagist.org/downloads/",
  3486. "license": [
  3487. "MIT"
  3488. ],
  3489. "description": "A model listener for Hyperf.",
  3490. "homepage": "https://hyperf.io",
  3491. "keywords": [
  3492. "hyperf",
  3493. "model-listener",
  3494. "php",
  3495. "swoole"
  3496. ],
  3497. "support": {
  3498. "docs": "https://hyperf.wiki",
  3499. "issues": "https://github.com/hyperf/hyperf/issues",
  3500. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3501. "source": "https://github.com/hyperf/hyperf"
  3502. },
  3503. "funding": [
  3504. {
  3505. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3506. "type": "custom"
  3507. },
  3508. {
  3509. "url": "https://opencollective.com/hyperf",
  3510. "type": "open_collective"
  3511. }
  3512. ],
  3513. "time": "2024-09-25T02:54:12+00:00"
  3514. },
  3515. {
  3516. "name": "hyperf/nacos",
  3517. "version": "v3.1.42",
  3518. "source": {
  3519. "type": "git",
  3520. "url": "https://github.com/hyperf/nacos.git",
  3521. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3522. },
  3523. "dist": {
  3524. "type": "zip",
  3525. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3526. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3527. "shasum": ""
  3528. },
  3529. "require": {
  3530. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3531. "hyperf/codec": "~3.1.0",
  3532. "hyperf/contract": "~3.1.0",
  3533. "hyperf/support": "~3.1.0",
  3534. "hyperf/utils": "~3.1.0",
  3535. "jetbrains/phpstorm-attributes": "^1.0",
  3536. "php": ">=8.1"
  3537. },
  3538. "type": "library",
  3539. "extra": {
  3540. "branch-alias": {
  3541. "dev-master": "3.1-dev"
  3542. },
  3543. "hyperf": {
  3544. "config": "Hyperf\\Nacos\\ConfigProvider"
  3545. }
  3546. },
  3547. "autoload": {
  3548. "psr-4": {
  3549. "Hyperf\\Nacos\\": "src/"
  3550. }
  3551. },
  3552. "notification-url": "https://packagist.org/downloads/",
  3553. "license": [
  3554. "MIT"
  3555. ],
  3556. "description": "Nacos SDK",
  3557. "keywords": [
  3558. "hyperf",
  3559. "nacos",
  3560. "php"
  3561. ],
  3562. "support": {
  3563. "issues": "https://github.com/hyperf/nacos/issues",
  3564. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3565. },
  3566. "funding": [
  3567. {
  3568. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3569. "type": "custom"
  3570. },
  3571. {
  3572. "url": "https://opencollective.com/hyperf",
  3573. "type": "open_collective"
  3574. }
  3575. ],
  3576. "time": "2024-09-25T02:54:12+00:00"
  3577. },
  3578. {
  3579. "name": "hyperf/pipeline",
  3580. "version": "v3.1.42",
  3581. "source": {
  3582. "type": "git",
  3583. "url": "https://github.com/hyperf/pipeline.git",
  3584. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3585. },
  3586. "dist": {
  3587. "type": "zip",
  3588. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3589. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3590. "shasum": ""
  3591. },
  3592. "require": {
  3593. "php": ">=8.1",
  3594. "psr/container": "^1.0 || ^2.0"
  3595. },
  3596. "type": "library",
  3597. "extra": {
  3598. "branch-alias": {
  3599. "dev-master": "3.1-dev"
  3600. }
  3601. },
  3602. "autoload": {
  3603. "psr-4": {
  3604. "Hyperf\\Pipeline\\": "src/"
  3605. }
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "MIT"
  3610. ],
  3611. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3612. "homepage": "https://hyperf.io",
  3613. "keywords": [
  3614. "hyperf",
  3615. "php",
  3616. "pipeline",
  3617. "swoole"
  3618. ],
  3619. "support": {
  3620. "docs": "https://hyperf.wiki",
  3621. "issues": "https://github.com/hyperf/hyperf/issues",
  3622. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3623. "source": "https://github.com/hyperf/hyperf"
  3624. },
  3625. "funding": [
  3626. {
  3627. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3628. "type": "custom"
  3629. },
  3630. {
  3631. "url": "https://opencollective.com/hyperf",
  3632. "type": "open_collective"
  3633. }
  3634. ],
  3635. "time": "2024-09-25T02:54:12+00:00"
  3636. },
  3637. {
  3638. "name": "hyperf/pool",
  3639. "version": "v3.1.42",
  3640. "source": {
  3641. "type": "git",
  3642. "url": "https://github.com/hyperf/pool.git",
  3643. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3644. },
  3645. "dist": {
  3646. "type": "zip",
  3647. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3648. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3649. "shasum": ""
  3650. },
  3651. "require": {
  3652. "hyperf/contract": "~3.1.0",
  3653. "hyperf/support": "~3.1.0",
  3654. "hyperf/utils": "~3.1.0",
  3655. "php": ">=8.1",
  3656. "psr/container": "^1.0 || ^2.0"
  3657. },
  3658. "suggest": {
  3659. "psr/event-dispatcher": "Required to use events."
  3660. },
  3661. "type": "library",
  3662. "extra": {
  3663. "branch-alias": {
  3664. "dev-master": "3.1-dev"
  3665. },
  3666. "hyperf": {
  3667. "config": "Hyperf\\Pool\\ConfigProvider"
  3668. }
  3669. },
  3670. "autoload": {
  3671. "psr-4": {
  3672. "Hyperf\\Pool\\": "src/"
  3673. }
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "description": "An independent universal connection pool component.",
  3680. "homepage": "https://hyperf.io",
  3681. "keywords": [
  3682. "connection-pool",
  3683. "hyperf",
  3684. "php",
  3685. "swoole"
  3686. ],
  3687. "support": {
  3688. "docs": "https://hyperf.wiki",
  3689. "issues": "https://github.com/hyperf/hyperf/issues",
  3690. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3691. "source": "https://github.com/hyperf/hyperf"
  3692. },
  3693. "funding": [
  3694. {
  3695. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3696. "type": "custom"
  3697. },
  3698. {
  3699. "url": "https://opencollective.com/hyperf",
  3700. "type": "open_collective"
  3701. }
  3702. ],
  3703. "time": "2024-09-25T02:54:12+00:00"
  3704. },
  3705. {
  3706. "name": "hyperf/process",
  3707. "version": "v3.1.42",
  3708. "source": {
  3709. "type": "git",
  3710. "url": "https://github.com/hyperf/process.git",
  3711. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3712. },
  3713. "dist": {
  3714. "type": "zip",
  3715. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3716. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3717. "shasum": ""
  3718. },
  3719. "require": {
  3720. "hyperf/contract": "~3.1.0",
  3721. "hyperf/support": "~3.1.0",
  3722. "hyperf/utils": "~3.1.0",
  3723. "php": ">=8.1",
  3724. "psr/container": "^1.0 || ^2.0",
  3725. "psr/event-dispatcher": "^1.0"
  3726. },
  3727. "suggest": {
  3728. "hyperf/di": "Required to use annotations.",
  3729. "hyperf/event": "Required to dump the message before and after process.",
  3730. "hyperf/framework": "Required to use BootProcessListener."
  3731. },
  3732. "type": "library",
  3733. "extra": {
  3734. "branch-alias": {
  3735. "dev-master": "3.1-dev"
  3736. },
  3737. "hyperf": {
  3738. "config": "Hyperf\\Process\\ConfigProvider"
  3739. }
  3740. },
  3741. "autoload": {
  3742. "psr-4": {
  3743. "Hyperf\\Process\\": "src/"
  3744. }
  3745. },
  3746. "notification-url": "https://packagist.org/downloads/",
  3747. "license": [
  3748. "MIT"
  3749. ],
  3750. "description": "A process component for hyperf.",
  3751. "homepage": "https://hyperf.io",
  3752. "keywords": [
  3753. "hyperf",
  3754. "php",
  3755. "process"
  3756. ],
  3757. "support": {
  3758. "docs": "https://hyperf.wiki",
  3759. "issues": "https://github.com/hyperf/hyperf/issues",
  3760. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3761. "source": "https://github.com/hyperf/hyperf"
  3762. },
  3763. "funding": [
  3764. {
  3765. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3766. "type": "custom"
  3767. },
  3768. {
  3769. "url": "https://opencollective.com/hyperf",
  3770. "type": "open_collective"
  3771. }
  3772. ],
  3773. "time": "2024-09-25T02:54:12+00:00"
  3774. },
  3775. {
  3776. "name": "hyperf/redis",
  3777. "version": "v3.1.42",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://github.com/hyperf/redis.git",
  3781. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3786. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3787. "shasum": ""
  3788. },
  3789. "require": {
  3790. "ext-redis": "^5.0 || ^6.0",
  3791. "hyperf/contract": "~3.1.0",
  3792. "hyperf/pool": "~3.1.0",
  3793. "hyperf/support": "~3.1.0",
  3794. "hyperf/tappable": "~3.1.0",
  3795. "hyperf/utils": "~3.1.0",
  3796. "php": ">=8.1",
  3797. "psr/container": "^1.0 || ^2.0"
  3798. },
  3799. "suggest": {
  3800. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3801. "hyperf/di": "Create the RedisPool via dependency injection."
  3802. },
  3803. "type": "library",
  3804. "extra": {
  3805. "branch-alias": {
  3806. "dev-master": "3.1-dev"
  3807. },
  3808. "hyperf": {
  3809. "config": "Hyperf\\Redis\\ConfigProvider"
  3810. }
  3811. },
  3812. "autoload": {
  3813. "psr-4": {
  3814. "Hyperf\\Redis\\": "src/"
  3815. }
  3816. },
  3817. "notification-url": "https://packagist.org/downloads/",
  3818. "license": [
  3819. "MIT"
  3820. ],
  3821. "description": "A redis component for hyperf.",
  3822. "homepage": "https://hyperf.io",
  3823. "keywords": [
  3824. "hyperf",
  3825. "php",
  3826. "pool",
  3827. "redis"
  3828. ],
  3829. "support": {
  3830. "docs": "https://hyperf.wiki",
  3831. "issues": "https://github.com/hyperf/hyperf/issues",
  3832. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3833. "source": "https://github.com/hyperf/hyperf"
  3834. },
  3835. "funding": [
  3836. {
  3837. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3838. "type": "custom"
  3839. },
  3840. {
  3841. "url": "https://opencollective.com/hyperf",
  3842. "type": "open_collective"
  3843. }
  3844. ],
  3845. "time": "2024-09-25T02:54:12+00:00"
  3846. },
  3847. {
  3848. "name": "hyperf/rpc",
  3849. "version": "v3.1.42",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://github.com/hyperf/rpc.git",
  3853. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3858. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3859. "shasum": ""
  3860. },
  3861. "require": {
  3862. "hyperf/codec": "~3.1.0",
  3863. "hyperf/contract": "~3.1.0",
  3864. "hyperf/support": "~3.1.0",
  3865. "jetbrains/phpstorm-attributes": "^1.0",
  3866. "php": ">=8.1"
  3867. },
  3868. "type": "library",
  3869. "extra": {
  3870. "branch-alias": {
  3871. "dev-master": "3.1-dev"
  3872. },
  3873. "hyperf": []
  3874. },
  3875. "autoload": {
  3876. "psr-4": {
  3877. "Hyperf\\Rpc\\": "src/"
  3878. }
  3879. },
  3880. "notification-url": "https://packagist.org/downloads/",
  3881. "license": [
  3882. "MIT"
  3883. ],
  3884. "description": "A rpc basic library for Hyperf.",
  3885. "homepage": "https://hyperf.io",
  3886. "keywords": [
  3887. "hyperf",
  3888. "php",
  3889. "rpc",
  3890. "swoole"
  3891. ],
  3892. "support": {
  3893. "docs": "https://hyperf.wiki",
  3894. "issues": "https://github.com/hyperf/hyperf/issues",
  3895. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3896. "source": "https://github.com/hyperf/hyperf"
  3897. },
  3898. "funding": [
  3899. {
  3900. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3901. "type": "custom"
  3902. },
  3903. {
  3904. "url": "https://opencollective.com/hyperf",
  3905. "type": "open_collective"
  3906. }
  3907. ],
  3908. "time": "2024-09-25T02:54:12+00:00"
  3909. },
  3910. {
  3911. "name": "hyperf/rpc-client",
  3912. "version": "v3.1.42",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/hyperf/rpc-client.git",
  3916. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3921. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3922. "shasum": ""
  3923. },
  3924. "require": {
  3925. "hyperf/code-parser": "~3.1.0",
  3926. "hyperf/load-balancer": "~3.1.0",
  3927. "hyperf/rpc": "~3.1.0",
  3928. "hyperf/support": "~3.1.0",
  3929. "hyperf/utils": "~3.1.0",
  3930. "jetbrains/phpstorm-attributes": "^1.0",
  3931. "php": ">=8.1",
  3932. "psr/container": "^1.0 || ^2.0"
  3933. },
  3934. "suggest": {
  3935. "hyperf/di": "For better container experience.",
  3936. "hyperf/pool": "Required to use connection pool.",
  3937. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3938. },
  3939. "type": "library",
  3940. "extra": {
  3941. "branch-alias": {
  3942. "dev-master": "3.1-dev"
  3943. },
  3944. "hyperf": {
  3945. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3946. }
  3947. },
  3948. "autoload": {
  3949. "psr-4": {
  3950. "Hyperf\\RpcClient\\": "src/"
  3951. }
  3952. },
  3953. "notification-url": "https://packagist.org/downloads/",
  3954. "license": [
  3955. "MIT"
  3956. ],
  3957. "description": "An abstract rpc server component for Hyperf.",
  3958. "homepage": "https://hyperf.io",
  3959. "keywords": [
  3960. "hyperf",
  3961. "json-rpc",
  3962. "php",
  3963. "rpc",
  3964. "rpc-client",
  3965. "swoole"
  3966. ],
  3967. "support": {
  3968. "docs": "https://hyperf.wiki",
  3969. "issues": "https://github.com/hyperf/hyperf/issues",
  3970. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3971. "source": "https://github.com/hyperf/hyperf"
  3972. },
  3973. "funding": [
  3974. {
  3975. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3976. "type": "custom"
  3977. },
  3978. {
  3979. "url": "https://opencollective.com/hyperf",
  3980. "type": "open_collective"
  3981. }
  3982. ],
  3983. "time": "2024-09-25T02:54:12+00:00"
  3984. },
  3985. {
  3986. "name": "hyperf/rpc-server",
  3987. "version": "v3.1.42",
  3988. "source": {
  3989. "type": "git",
  3990. "url": "https://github.com/hyperf/rpc-server.git",
  3991. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3992. },
  3993. "dist": {
  3994. "type": "zip",
  3995. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3996. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3997. "shasum": ""
  3998. },
  3999. "require": {
  4000. "hyperf/http-server": "~3.1.0",
  4001. "hyperf/rpc": "~3.1.0",
  4002. "php": ">=8.1"
  4003. },
  4004. "suggest": {
  4005. "hyperf/di": "Required to use annotations."
  4006. },
  4007. "type": "library",
  4008. "extra": {
  4009. "branch-alias": {
  4010. "dev-master": "3.1-dev"
  4011. },
  4012. "hyperf": {
  4013. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4014. }
  4015. },
  4016. "autoload": {
  4017. "psr-4": {
  4018. "Hyperf\\RpcServer\\": "src/"
  4019. }
  4020. },
  4021. "notification-url": "https://packagist.org/downloads/",
  4022. "license": [
  4023. "MIT"
  4024. ],
  4025. "description": "An abstract rpc server component for Hyperf.",
  4026. "homepage": "https://hyperf.io",
  4027. "keywords": [
  4028. "hyperf",
  4029. "php",
  4030. "rpc",
  4031. "rpc-server",
  4032. "swoole"
  4033. ],
  4034. "support": {
  4035. "docs": "https://hyperf.wiki",
  4036. "issues": "https://github.com/hyperf/hyperf/issues",
  4037. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4038. "source": "https://github.com/hyperf/hyperf"
  4039. },
  4040. "funding": [
  4041. {
  4042. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4043. "type": "custom"
  4044. },
  4045. {
  4046. "url": "https://opencollective.com/hyperf",
  4047. "type": "open_collective"
  4048. }
  4049. ],
  4050. "time": "2024-09-25T02:54:12+00:00"
  4051. },
  4052. {
  4053. "name": "hyperf/serializer",
  4054. "version": "v3.1.42",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/hyperf/serializer.git",
  4058. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4063. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4064. "shasum": ""
  4065. },
  4066. "require": {
  4067. "hyperf/contract": "~3.1.0",
  4068. "php": ">=8.1"
  4069. },
  4070. "suggest": {
  4071. "hyperf/di": "Required to use ExceptionNormalizer",
  4072. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4073. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4074. },
  4075. "type": "library",
  4076. "extra": {
  4077. "branch-alias": {
  4078. "dev-master": "3.1-dev"
  4079. },
  4080. "hyperf": {
  4081. "config": "Hyperf\\Serializer\\ConfigProvider"
  4082. }
  4083. },
  4084. "autoload": {
  4085. "psr-4": {
  4086. "Hyperf\\Serializer\\": "src/"
  4087. }
  4088. },
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "MIT"
  4092. ],
  4093. "description": "A serializer component for Hyperf.",
  4094. "homepage": "https://hyperf.io",
  4095. "keywords": [
  4096. "hyperf",
  4097. "php",
  4098. "swoole",
  4099. "tappable"
  4100. ],
  4101. "support": {
  4102. "docs": "https://hyperf.wiki",
  4103. "issues": "https://github.com/hyperf/hyperf/issues",
  4104. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4105. "source": "https://github.com/hyperf/hyperf"
  4106. },
  4107. "funding": [
  4108. {
  4109. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4110. "type": "custom"
  4111. },
  4112. {
  4113. "url": "https://opencollective.com/hyperf",
  4114. "type": "open_collective"
  4115. }
  4116. ],
  4117. "time": "2024-09-25T02:54:12+00:00"
  4118. },
  4119. {
  4120. "name": "hyperf/server",
  4121. "version": "v3.1.42",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/hyperf/server.git",
  4125. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4130. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4131. "shasum": ""
  4132. },
  4133. "require": {
  4134. "hyperf/contract": "~3.1.0",
  4135. "hyperf/coordinator": "~3.1.0",
  4136. "hyperf/engine": "^2.8",
  4137. "hyperf/support": "~3.1.0",
  4138. "hyperf/tappable": "~3.1.0",
  4139. "php": ">=8.1",
  4140. "psr/container": "^1.0 || ^2.0",
  4141. "psr/event-dispatcher": "^1.0",
  4142. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4143. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4144. },
  4145. "suggest": {
  4146. "hyperf/event": "Dump the info after server start.",
  4147. "hyperf/framework": "Dump the info after server start."
  4148. },
  4149. "type": "library",
  4150. "extra": {
  4151. "branch-alias": {
  4152. "dev-master": "3.1-dev"
  4153. },
  4154. "hyperf": {
  4155. "config": "Hyperf\\Server\\ConfigProvider"
  4156. }
  4157. },
  4158. "autoload": {
  4159. "psr-4": {
  4160. "Hyperf\\Server\\": "src/"
  4161. }
  4162. },
  4163. "notification-url": "https://packagist.org/downloads/",
  4164. "license": [
  4165. "MIT"
  4166. ],
  4167. "description": "A base server library for Hyperf.",
  4168. "homepage": "https://hyperf.io",
  4169. "keywords": [
  4170. "hyperf",
  4171. "php",
  4172. "server",
  4173. "swoole"
  4174. ],
  4175. "support": {
  4176. "docs": "https://hyperf.wiki",
  4177. "issues": "https://github.com/hyperf/hyperf/issues",
  4178. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4179. "source": "https://github.com/hyperf/hyperf"
  4180. },
  4181. "funding": [
  4182. {
  4183. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4184. "type": "custom"
  4185. },
  4186. {
  4187. "url": "https://opencollective.com/hyperf",
  4188. "type": "open_collective"
  4189. }
  4190. ],
  4191. "time": "2024-09-25T02:54:12+00:00"
  4192. },
  4193. {
  4194. "name": "hyperf/service-governance",
  4195. "version": "v3.1.42",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/hyperf/service-governance.git",
  4199. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4204. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4205. "shasum": ""
  4206. },
  4207. "require": {
  4208. "hyperf/contract": "~3.1.0",
  4209. "hyperf/support": "~3.1.0",
  4210. "jetbrains/phpstorm-attributes": "^1.0",
  4211. "php": ">=8.1"
  4212. },
  4213. "suggest": {
  4214. "hyperf/event": "Required to use RegisterServiceListener.",
  4215. "hyperf/framework": "Required to use RegisterServiceListener.",
  4216. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4217. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4218. },
  4219. "type": "library",
  4220. "extra": {
  4221. "branch-alias": {
  4222. "dev-master": "3.1-dev"
  4223. },
  4224. "hyperf": {
  4225. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4226. }
  4227. },
  4228. "autoload": {
  4229. "psr-4": {
  4230. "Hyperf\\ServiceGovernance\\": "src/"
  4231. }
  4232. },
  4233. "notification-url": "https://packagist.org/downloads/",
  4234. "license": [
  4235. "MIT"
  4236. ],
  4237. "description": "A service governance component for Hyperf.",
  4238. "homepage": "https://hyperf.io",
  4239. "keywords": [
  4240. "hyperf",
  4241. "php",
  4242. "service-governance",
  4243. "swoole"
  4244. ],
  4245. "support": {
  4246. "docs": "https://hyperf.wiki",
  4247. "issues": "https://github.com/hyperf/hyperf/issues",
  4248. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4249. "source": "https://github.com/hyperf/hyperf"
  4250. },
  4251. "funding": [
  4252. {
  4253. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4254. "type": "custom"
  4255. },
  4256. {
  4257. "url": "https://opencollective.com/hyperf",
  4258. "type": "open_collective"
  4259. }
  4260. ],
  4261. "time": "2024-09-25T02:54:12+00:00"
  4262. },
  4263. {
  4264. "name": "hyperf/service-governance-consul",
  4265. "version": "v3.1.42",
  4266. "source": {
  4267. "type": "git",
  4268. "url": "https://github.com/hyperf/service-governance-consul.git",
  4269. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4270. },
  4271. "dist": {
  4272. "type": "zip",
  4273. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4274. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4275. "shasum": ""
  4276. },
  4277. "require": {
  4278. "hyperf/consul": "~3.1.0",
  4279. "hyperf/contract": "~3.1.0",
  4280. "hyperf/service-governance": "~3.1.0",
  4281. "hyperf/support": "~3.1.0",
  4282. "hyperf/utils": "~3.1.0",
  4283. "php": ">=8.1"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "3.1-dev"
  4289. },
  4290. "hyperf": {
  4291. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4292. }
  4293. },
  4294. "autoload": {
  4295. "psr-4": {
  4296. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4297. }
  4298. },
  4299. "notification-url": "https://packagist.org/downloads/",
  4300. "license": [
  4301. "MIT"
  4302. ],
  4303. "description": "A consul adapter for service governance.",
  4304. "homepage": "https://hyperf.io",
  4305. "keywords": [
  4306. "consul-adapter",
  4307. "hyperf",
  4308. "php",
  4309. "service-governance",
  4310. "swoole"
  4311. ],
  4312. "support": {
  4313. "docs": "https://hyperf.wiki",
  4314. "issues": "https://github.com/hyperf/hyperf/issues",
  4315. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4316. "source": "https://github.com/hyperf/hyperf"
  4317. },
  4318. "funding": [
  4319. {
  4320. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4321. "type": "custom"
  4322. },
  4323. {
  4324. "url": "https://opencollective.com/hyperf",
  4325. "type": "open_collective"
  4326. }
  4327. ],
  4328. "time": "2024-09-25T02:54:12+00:00"
  4329. },
  4330. {
  4331. "name": "hyperf/service-governance-nacos",
  4332. "version": "v3.1.42",
  4333. "source": {
  4334. "type": "git",
  4335. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4336. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4337. },
  4338. "dist": {
  4339. "type": "zip",
  4340. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4341. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4342. "shasum": ""
  4343. },
  4344. "require": {
  4345. "hyperf/codec": "~3.1.0",
  4346. "hyperf/contract": "~3.1.0",
  4347. "hyperf/nacos": "~3.1.0",
  4348. "hyperf/service-governance": "~3.1.0",
  4349. "hyperf/support": "~3.1.0",
  4350. "hyperf/utils": "~3.1.0",
  4351. "php": ">=8.1"
  4352. },
  4353. "type": "library",
  4354. "extra": {
  4355. "branch-alias": {
  4356. "dev-master": "3.1-dev"
  4357. },
  4358. "hyperf": {
  4359. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4360. }
  4361. },
  4362. "autoload": {
  4363. "psr-4": {
  4364. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4365. }
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "description": "A nacos adapter for service governance.",
  4372. "homepage": "https://hyperf.io",
  4373. "keywords": [
  4374. "hyperf",
  4375. "nacos-adapter",
  4376. "php",
  4377. "service-governance",
  4378. "swoole"
  4379. ],
  4380. "support": {
  4381. "docs": "https://hyperf.wiki",
  4382. "issues": "https://github.com/hyperf/hyperf/issues",
  4383. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4384. "source": "https://github.com/hyperf/hyperf"
  4385. },
  4386. "funding": [
  4387. {
  4388. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4389. "type": "custom"
  4390. },
  4391. {
  4392. "url": "https://opencollective.com/hyperf",
  4393. "type": "open_collective"
  4394. }
  4395. ],
  4396. "time": "2024-09-25T02:54:12+00:00"
  4397. },
  4398. {
  4399. "name": "hyperf/snowflake",
  4400. "version": "v3.1.42",
  4401. "source": {
  4402. "type": "git",
  4403. "url": "https://github.com/hyperf/snowflake.git",
  4404. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4405. },
  4406. "dist": {
  4407. "type": "zip",
  4408. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4409. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4410. "shasum": ""
  4411. },
  4412. "require": {
  4413. "hyperf/contract": "~3.1.0",
  4414. "php": ">=8.1"
  4415. },
  4416. "suggest": {
  4417. "hyperf/config": "Required to read snowflake config.",
  4418. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4419. "psr/container": "Required to use MetaGeneratorFactory."
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-master": "3.1-dev"
  4425. },
  4426. "hyperf": {
  4427. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4428. }
  4429. },
  4430. "autoload": {
  4431. "psr-4": {
  4432. "Hyperf\\Snowflake\\": "src/"
  4433. }
  4434. },
  4435. "notification-url": "https://packagist.org/downloads/",
  4436. "license": [
  4437. "MIT"
  4438. ],
  4439. "description": "A snowflake library",
  4440. "homepage": "https://hyperf.io",
  4441. "keywords": [
  4442. "php",
  4443. "snowflake"
  4444. ],
  4445. "support": {
  4446. "docs": "https://hyperf.wiki",
  4447. "issues": "https://github.com/hyperf/hyperf/issues",
  4448. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4449. "source": "https://github.com/hyperf/hyperf"
  4450. },
  4451. "funding": [
  4452. {
  4453. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4454. "type": "custom"
  4455. },
  4456. {
  4457. "url": "https://opencollective.com/hyperf",
  4458. "type": "open_collective"
  4459. }
  4460. ],
  4461. "time": "2024-09-25T02:54:12+00:00"
  4462. },
  4463. {
  4464. "name": "hyperf/stdlib",
  4465. "version": "v3.1.42",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/hyperf/stdlib.git",
  4469. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4474. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4475. "shasum": ""
  4476. },
  4477. "require": {
  4478. "php": ">=8.1"
  4479. },
  4480. "type": "library",
  4481. "extra": {
  4482. "branch-alias": {
  4483. "dev-master": "3.1-dev"
  4484. }
  4485. },
  4486. "autoload": {
  4487. "psr-4": {
  4488. "Hyperf\\Stdlib\\": "src/"
  4489. }
  4490. },
  4491. "notification-url": "https://packagist.org/downloads/",
  4492. "license": [
  4493. "MIT"
  4494. ],
  4495. "description": "A stdlib component for Hyperf.",
  4496. "homepage": "https://hyperf.io",
  4497. "keywords": [
  4498. "hyperf",
  4499. "php",
  4500. "stdlib",
  4501. "swoole"
  4502. ],
  4503. "support": {
  4504. "docs": "https://hyperf.wiki",
  4505. "issues": "https://github.com/hyperf/hyperf/issues",
  4506. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4507. "source": "https://github.com/hyperf/hyperf"
  4508. },
  4509. "funding": [
  4510. {
  4511. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4512. "type": "custom"
  4513. },
  4514. {
  4515. "url": "https://opencollective.com/hyperf",
  4516. "type": "open_collective"
  4517. }
  4518. ],
  4519. "time": "2024-09-25T02:54:12+00:00"
  4520. },
  4521. {
  4522. "name": "hyperf/stringable",
  4523. "version": "v3.1.43",
  4524. "source": {
  4525. "type": "git",
  4526. "url": "https://github.com/hyperf/stringable.git",
  4527. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4528. },
  4529. "dist": {
  4530. "type": "zip",
  4531. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4532. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4533. "shasum": ""
  4534. },
  4535. "require": {
  4536. "ext-mbstring": "*",
  4537. "hyperf/collection": "~3.1.0",
  4538. "hyperf/conditionable": "~3.1.0",
  4539. "hyperf/macroable": "~3.1.0",
  4540. "hyperf/tappable": "~3.1.0",
  4541. "php": ">=8.1"
  4542. },
  4543. "suggest": {
  4544. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4545. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4546. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4547. },
  4548. "type": "library",
  4549. "extra": {
  4550. "branch-alias": {
  4551. "dev-master": "3.1-dev"
  4552. }
  4553. },
  4554. "autoload": {
  4555. "files": [
  4556. "src/Functions.php"
  4557. ],
  4558. "psr-4": {
  4559. "Hyperf\\Stringable\\": "src/"
  4560. }
  4561. },
  4562. "notification-url": "https://packagist.org/downloads/",
  4563. "license": [
  4564. "MIT"
  4565. ],
  4566. "description": "Hyperf Stringable package which come from illuminate/support",
  4567. "homepage": "https://hyperf.io",
  4568. "keywords": [
  4569. "hyperf",
  4570. "php",
  4571. "stringable",
  4572. "swoole"
  4573. ],
  4574. "support": {
  4575. "docs": "https://hyperf.wiki",
  4576. "issues": "https://github.com/hyperf/hyperf/issues",
  4577. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4578. "source": "https://github.com/hyperf/hyperf"
  4579. },
  4580. "funding": [
  4581. {
  4582. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4583. "type": "custom"
  4584. },
  4585. {
  4586. "url": "https://opencollective.com/hyperf",
  4587. "type": "open_collective"
  4588. }
  4589. ],
  4590. "time": "2024-10-09T02:28:40+00:00"
  4591. },
  4592. {
  4593. "name": "hyperf/support",
  4594. "version": "v3.1.42",
  4595. "source": {
  4596. "type": "git",
  4597. "url": "https://github.com/hyperf/support.git",
  4598. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4599. },
  4600. "dist": {
  4601. "type": "zip",
  4602. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4603. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4604. "shasum": ""
  4605. },
  4606. "require": {
  4607. "hyperf/collection": "~3.1.0",
  4608. "hyperf/context": "~3.1.0",
  4609. "hyperf/contract": "~3.1.0",
  4610. "hyperf/coroutine": "~3.1.0",
  4611. "hyperf/macroable": "~3.1.0",
  4612. "hyperf/stringable": "~3.1.0",
  4613. "php": ">=8.1"
  4614. },
  4615. "suggest": {
  4616. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4617. },
  4618. "type": "library",
  4619. "extra": {
  4620. "branch-alias": {
  4621. "dev-master": "3.1-dev"
  4622. }
  4623. },
  4624. "autoload": {
  4625. "files": [
  4626. "src/Functions.php"
  4627. ],
  4628. "psr-4": {
  4629. "Hyperf\\Support\\": "src/"
  4630. }
  4631. },
  4632. "notification-url": "https://packagist.org/downloads/",
  4633. "license": [
  4634. "MIT"
  4635. ],
  4636. "description": "A support component for Hyperf.",
  4637. "homepage": "https://hyperf.io",
  4638. "keywords": [
  4639. "hyperf",
  4640. "php",
  4641. "support",
  4642. "swoole"
  4643. ],
  4644. "support": {
  4645. "docs": "https://hyperf.wiki",
  4646. "issues": "https://github.com/hyperf/hyperf/issues",
  4647. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4648. "source": "https://github.com/hyperf/hyperf"
  4649. },
  4650. "funding": [
  4651. {
  4652. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4653. "type": "custom"
  4654. },
  4655. {
  4656. "url": "https://opencollective.com/hyperf",
  4657. "type": "open_collective"
  4658. }
  4659. ],
  4660. "time": "2024-09-25T02:54:12+00:00"
  4661. },
  4662. {
  4663. "name": "hyperf/tappable",
  4664. "version": "v3.1.42",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://github.com/hyperf/tappable.git",
  4668. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4673. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4674. "shasum": ""
  4675. },
  4676. "require": {
  4677. "php": ">=8.1"
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-master": "3.1-dev"
  4683. }
  4684. },
  4685. "autoload": {
  4686. "files": [
  4687. "src/Functions.php"
  4688. ],
  4689. "psr-4": {
  4690. "Hyperf\\Tappable\\": "src/"
  4691. }
  4692. },
  4693. "notification-url": "https://packagist.org/downloads/",
  4694. "license": [
  4695. "MIT"
  4696. ],
  4697. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4698. "homepage": "https://hyperf.io",
  4699. "keywords": [
  4700. "hyperf",
  4701. "php",
  4702. "swoole",
  4703. "tappable"
  4704. ],
  4705. "support": {
  4706. "docs": "https://hyperf.wiki",
  4707. "issues": "https://github.com/hyperf/hyperf/issues",
  4708. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4709. "source": "https://github.com/hyperf/hyperf"
  4710. },
  4711. "funding": [
  4712. {
  4713. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4714. "type": "custom"
  4715. },
  4716. {
  4717. "url": "https://opencollective.com/hyperf",
  4718. "type": "open_collective"
  4719. }
  4720. ],
  4721. "time": "2024-09-25T02:54:12+00:00"
  4722. },
  4723. {
  4724. "name": "hyperf/translation",
  4725. "version": "v3.1.42",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://github.com/hyperf/translation.git",
  4729. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4734. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4735. "shasum": ""
  4736. },
  4737. "require": {
  4738. "hyperf/contract": "~3.1.0",
  4739. "hyperf/macroable": "~3.1.0",
  4740. "hyperf/support": "~3.1.0",
  4741. "hyperf/utils": "~3.1.0",
  4742. "php": ">=8.1",
  4743. "psr/container": "^1.0 || ^2.0"
  4744. },
  4745. "type": "library",
  4746. "extra": {
  4747. "branch-alias": {
  4748. "dev-master": "3.1-dev"
  4749. },
  4750. "hyperf": {
  4751. "config": "Hyperf\\Translation\\ConfigProvider"
  4752. }
  4753. },
  4754. "autoload": {
  4755. "files": [
  4756. "src/Functions.php"
  4757. ],
  4758. "psr-4": {
  4759. "Hyperf\\Translation\\": "src/"
  4760. }
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "description": "An independent translation component, forked by illuminate/translation.",
  4767. "keywords": [
  4768. "hyperf",
  4769. "translation"
  4770. ],
  4771. "support": {
  4772. "issues": "https://github.com/hyperf/translation/issues",
  4773. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4774. },
  4775. "funding": [
  4776. {
  4777. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4778. "type": "custom"
  4779. },
  4780. {
  4781. "url": "https://opencollective.com/hyperf",
  4782. "type": "open_collective"
  4783. }
  4784. ],
  4785. "time": "2024-09-25T02:54:12+00:00"
  4786. },
  4787. {
  4788. "name": "hyperf/utils",
  4789. "version": "v3.1.42",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://github.com/hyperf/utils.git",
  4793. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4798. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4799. "shasum": ""
  4800. },
  4801. "require": {
  4802. "doctrine/inflector": "^2.0",
  4803. "hyperf/code-parser": "~3.1.0",
  4804. "hyperf/codec": "~3.1.0",
  4805. "hyperf/collection": "~3.1.0",
  4806. "hyperf/context": "~3.1.0",
  4807. "hyperf/contract": "~3.1.0",
  4808. "hyperf/coordinator": "~3.1.0",
  4809. "hyperf/coroutine": "~3.1.0",
  4810. "hyperf/engine": "^2.0",
  4811. "hyperf/macroable": "~3.1.0",
  4812. "hyperf/serializer": "~3.1.0",
  4813. "hyperf/stringable": "~3.1.0",
  4814. "hyperf/support": "~3.1.0",
  4815. "php": ">=8.1"
  4816. },
  4817. "type": "library",
  4818. "extra": {
  4819. "branch-alias": {
  4820. "dev-master": "3.1-dev"
  4821. }
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "MIT"
  4826. ],
  4827. "description": "A tools package that could help developer solved the problem quickly.",
  4828. "homepage": "https://hyperf.io",
  4829. "keywords": [
  4830. "hyperf",
  4831. "php",
  4832. "swoole",
  4833. "utils"
  4834. ],
  4835. "support": {
  4836. "docs": "https://hyperf.wiki",
  4837. "issues": "https://github.com/hyperf/hyperf/issues",
  4838. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4839. "source": "https://github.com/hyperf/hyperf"
  4840. },
  4841. "funding": [
  4842. {
  4843. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4844. "type": "custom"
  4845. },
  4846. {
  4847. "url": "https://opencollective.com/hyperf",
  4848. "type": "open_collective"
  4849. }
  4850. ],
  4851. "time": "2024-09-25T02:54:12+00:00"
  4852. },
  4853. {
  4854. "name": "hyperf/validation",
  4855. "version": "v3.1.42",
  4856. "source": {
  4857. "type": "git",
  4858. "url": "https://github.com/hyperf/validation.git",
  4859. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40"
  4860. },
  4861. "dist": {
  4862. "type": "zip",
  4863. "url": "https://api.github.com/repos/hyperf/validation/zipball/917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4864. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4865. "shasum": ""
  4866. },
  4867. "require": {
  4868. "egulias/email-validator": "^3.0",
  4869. "hyperf/collection": "~3.1.0",
  4870. "hyperf/conditionable": "~3.1.0",
  4871. "hyperf/contract": "~3.1.0",
  4872. "hyperf/di": "~3.1.0",
  4873. "hyperf/framework": "~3.1.0",
  4874. "hyperf/macroable": "~3.1.0",
  4875. "hyperf/stringable": "~3.1.0",
  4876. "hyperf/support": "~3.1.0",
  4877. "hyperf/tappable": "~3.1.0",
  4878. "hyperf/translation": "~3.1.0",
  4879. "hyperf/utils": "~3.1.0",
  4880. "nesbot/carbon": "^2.21",
  4881. "php": ">=8.1",
  4882. "psr/container": "^1.0 || ^2.0",
  4883. "psr/event-dispatcher": "^1.0",
  4884. "psr/http-message": "^1.0 || ^2.0"
  4885. },
  4886. "suggest": {
  4887. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4888. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4889. },
  4890. "type": "library",
  4891. "extra": {
  4892. "branch-alias": {
  4893. "dev-master": "3.1-dev"
  4894. },
  4895. "hyperf": {
  4896. "config": "Hyperf\\Validation\\ConfigProvider"
  4897. }
  4898. },
  4899. "autoload": {
  4900. "psr-4": {
  4901. "Hyperf\\Validation\\": "src/"
  4902. }
  4903. },
  4904. "notification-url": "https://packagist.org/downloads/",
  4905. "license": [
  4906. "MIT"
  4907. ],
  4908. "description": "hyperf validation",
  4909. "keywords": [
  4910. "hyperf",
  4911. "validation"
  4912. ],
  4913. "support": {
  4914. "issues": "https://github.com/hyperf/validation/issues",
  4915. "source": "https://github.com/hyperf/validation/tree/v3.1.42"
  4916. },
  4917. "funding": [
  4918. {
  4919. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4920. "type": "custom"
  4921. },
  4922. {
  4923. "url": "https://opencollective.com/hyperf",
  4924. "type": "open_collective"
  4925. }
  4926. ],
  4927. "time": "2024-09-25T02:54:12+00:00"
  4928. },
  4929. {
  4930. "name": "hyperf/websocket-server",
  4931. "version": "v3.1.42",
  4932. "source": {
  4933. "type": "git",
  4934. "url": "https://github.com/hyperf/websocket-server.git",
  4935. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  4936. },
  4937. "dist": {
  4938. "type": "zip",
  4939. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  4940. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  4941. "shasum": ""
  4942. },
  4943. "require": {
  4944. "hyperf/collection": "~3.1.0",
  4945. "hyperf/contract": "~3.1.0",
  4946. "hyperf/exception-handler": "~3.1.0",
  4947. "hyperf/http-server": "~3.1.0",
  4948. "hyperf/support": "~3.1.0",
  4949. "hyperf/utils": "~3.1.0",
  4950. "php": ">=8.1",
  4951. "psr/container": "^1.0 || ^2.0",
  4952. "psr/event-dispatcher": "^1.0"
  4953. },
  4954. "type": "library",
  4955. "extra": {
  4956. "branch-alias": {
  4957. "dev-master": "3.1-dev"
  4958. },
  4959. "hyperf": {
  4960. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Hyperf\\WebSocketServer\\": "src/"
  4966. }
  4967. },
  4968. "notification-url": "https://packagist.org/downloads/",
  4969. "license": [
  4970. "MIT"
  4971. ],
  4972. "description": "A websocket server library for Hyperf.",
  4973. "homepage": "https://hyperf.io",
  4974. "keywords": [
  4975. "hyperf",
  4976. "php",
  4977. "swoole",
  4978. "websocket"
  4979. ],
  4980. "support": {
  4981. "docs": "https://hyperf.wiki",
  4982. "issues": "https://github.com/hyperf/hyperf/issues",
  4983. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4984. "source": "https://github.com/hyperf/hyperf"
  4985. },
  4986. "funding": [
  4987. {
  4988. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4989. "type": "custom"
  4990. },
  4991. {
  4992. "url": "https://opencollective.com/hyperf",
  4993. "type": "open_collective"
  4994. }
  4995. ],
  4996. "time": "2024-09-25T02:54:12+00:00"
  4997. },
  4998. {
  4999. "name": "jetbrains/phpstorm-attributes",
  5000. "version": "1.2",
  5001. "source": {
  5002. "type": "git",
  5003. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5004. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5005. },
  5006. "dist": {
  5007. "type": "zip",
  5008. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5009. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5010. "shasum": ""
  5011. },
  5012. "type": "library",
  5013. "autoload": {
  5014. "psr-4": {
  5015. "JetBrains\\PhpStorm\\": "src/"
  5016. }
  5017. },
  5018. "notification-url": "https://packagist.org/downloads/",
  5019. "license": [
  5020. "Apache-2.0"
  5021. ],
  5022. "authors": [
  5023. {
  5024. "name": "JetBrains",
  5025. "homepage": "https://www.jetbrains.com"
  5026. }
  5027. ],
  5028. "description": "PhpStorm specific attributes",
  5029. "keywords": [
  5030. "attributes",
  5031. "jetbrains",
  5032. "phpstorm"
  5033. ],
  5034. "support": {
  5035. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5036. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5037. },
  5038. "time": "2024-10-11T10:46:19+00:00"
  5039. },
  5040. {
  5041. "name": "laminas/laminas-mime",
  5042. "version": "2.12.0",
  5043. "source": {
  5044. "type": "git",
  5045. "url": "https://github.com/laminas/laminas-mime.git",
  5046. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5047. },
  5048. "dist": {
  5049. "type": "zip",
  5050. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5051. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5052. "shasum": ""
  5053. },
  5054. "require": {
  5055. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5056. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5057. },
  5058. "conflict": {
  5059. "zendframework/zend-mime": "*"
  5060. },
  5061. "require-dev": {
  5062. "laminas/laminas-coding-standard": "~2.4.0",
  5063. "laminas/laminas-mail": "^2.19.0",
  5064. "phpunit/phpunit": "~9.5.25"
  5065. },
  5066. "suggest": {
  5067. "laminas/laminas-mail": "Laminas\\Mail component"
  5068. },
  5069. "type": "library",
  5070. "autoload": {
  5071. "psr-4": {
  5072. "Laminas\\Mime\\": "src/"
  5073. }
  5074. },
  5075. "notification-url": "https://packagist.org/downloads/",
  5076. "license": [
  5077. "BSD-3-Clause"
  5078. ],
  5079. "description": "Create and parse MIME messages and parts",
  5080. "homepage": "https://laminas.dev",
  5081. "keywords": [
  5082. "laminas",
  5083. "mime"
  5084. ],
  5085. "support": {
  5086. "chat": "https://laminas.dev/chat",
  5087. "docs": "https://docs.laminas.dev/laminas-mime/",
  5088. "forum": "https://discourse.laminas.dev",
  5089. "issues": "https://github.com/laminas/laminas-mime/issues",
  5090. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5091. "source": "https://github.com/laminas/laminas-mime"
  5092. },
  5093. "funding": [
  5094. {
  5095. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5096. "type": "community_bridge"
  5097. }
  5098. ],
  5099. "time": "2023-11-02T16:47:19+00:00"
  5100. },
  5101. {
  5102. "name": "laminas/laminas-stdlib",
  5103. "version": "3.20.0",
  5104. "source": {
  5105. "type": "git",
  5106. "url": "https://github.com/laminas/laminas-stdlib.git",
  5107. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5108. },
  5109. "dist": {
  5110. "type": "zip",
  5111. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5112. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5113. "shasum": ""
  5114. },
  5115. "require": {
  5116. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5117. },
  5118. "conflict": {
  5119. "zendframework/zend-stdlib": "*"
  5120. },
  5121. "require-dev": {
  5122. "laminas/laminas-coding-standard": "^3.0",
  5123. "phpbench/phpbench": "^1.3.1",
  5124. "phpunit/phpunit": "^10.5.38",
  5125. "psalm/plugin-phpunit": "^0.19.0",
  5126. "vimeo/psalm": "^5.26.1"
  5127. },
  5128. "type": "library",
  5129. "autoload": {
  5130. "psr-4": {
  5131. "Laminas\\Stdlib\\": "src/"
  5132. }
  5133. },
  5134. "notification-url": "https://packagist.org/downloads/",
  5135. "license": [
  5136. "BSD-3-Clause"
  5137. ],
  5138. "description": "SPL extensions, array utilities, error handlers, and more",
  5139. "homepage": "https://laminas.dev",
  5140. "keywords": [
  5141. "laminas",
  5142. "stdlib"
  5143. ],
  5144. "support": {
  5145. "chat": "https://laminas.dev/chat",
  5146. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5147. "forum": "https://discourse.laminas.dev",
  5148. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5149. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5150. "source": "https://github.com/laminas/laminas-stdlib"
  5151. },
  5152. "funding": [
  5153. {
  5154. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5155. "type": "community_bridge"
  5156. }
  5157. ],
  5158. "time": "2024-10-29T13:46:07+00:00"
  5159. },
  5160. {
  5161. "name": "lcobucci/clock",
  5162. "version": "2.3.0",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://github.com/lcobucci/clock.git",
  5166. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5171. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5172. "shasum": ""
  5173. },
  5174. "require": {
  5175. "php": "~8.1.0 || ~8.2.0",
  5176. "stella-maris/clock": "^0.1.7"
  5177. },
  5178. "provide": {
  5179. "psr/clock-implementation": "1.0"
  5180. },
  5181. "require-dev": {
  5182. "infection/infection": "^0.26",
  5183. "lcobucci/coding-standard": "^9.0",
  5184. "phpstan/extension-installer": "^1.2",
  5185. "phpstan/phpstan": "^1.9.4",
  5186. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5187. "phpstan/phpstan-phpunit": "^1.3.2",
  5188. "phpstan/phpstan-strict-rules": "^1.4.4",
  5189. "phpunit/phpunit": "^9.5.27"
  5190. },
  5191. "type": "library",
  5192. "autoload": {
  5193. "psr-4": {
  5194. "Lcobucci\\Clock\\": "src"
  5195. }
  5196. },
  5197. "notification-url": "https://packagist.org/downloads/",
  5198. "license": [
  5199. "MIT"
  5200. ],
  5201. "authors": [
  5202. {
  5203. "name": "Luís Cobucci",
  5204. "email": "lcobucci@gmail.com"
  5205. }
  5206. ],
  5207. "description": "Yet another clock abstraction",
  5208. "support": {
  5209. "issues": "https://github.com/lcobucci/clock/issues",
  5210. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5211. },
  5212. "funding": [
  5213. {
  5214. "url": "https://github.com/lcobucci",
  5215. "type": "github"
  5216. },
  5217. {
  5218. "url": "https://www.patreon.com/lcobucci",
  5219. "type": "patreon"
  5220. }
  5221. ],
  5222. "time": "2022-12-19T14:38:11+00:00"
  5223. },
  5224. {
  5225. "name": "lcobucci/jwt",
  5226. "version": "4.1.5",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://github.com/lcobucci/jwt.git",
  5230. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5231. },
  5232. "dist": {
  5233. "type": "zip",
  5234. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5235. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5236. "shasum": ""
  5237. },
  5238. "require": {
  5239. "ext-hash": "*",
  5240. "ext-json": "*",
  5241. "ext-mbstring": "*",
  5242. "ext-openssl": "*",
  5243. "ext-sodium": "*",
  5244. "lcobucci/clock": "^2.0",
  5245. "php": "^7.4 || ^8.0"
  5246. },
  5247. "require-dev": {
  5248. "infection/infection": "^0.21",
  5249. "lcobucci/coding-standard": "^6.0",
  5250. "mikey179/vfsstream": "^1.6.7",
  5251. "phpbench/phpbench": "^1.0",
  5252. "phpstan/extension-installer": "^1.0",
  5253. "phpstan/phpstan": "^0.12",
  5254. "phpstan/phpstan-deprecation-rules": "^0.12",
  5255. "phpstan/phpstan-phpunit": "^0.12",
  5256. "phpstan/phpstan-strict-rules": "^0.12",
  5257. "phpunit/php-invoker": "^3.1",
  5258. "phpunit/phpunit": "^9.5"
  5259. },
  5260. "type": "library",
  5261. "autoload": {
  5262. "psr-4": {
  5263. "Lcobucci\\JWT\\": "src"
  5264. }
  5265. },
  5266. "notification-url": "https://packagist.org/downloads/",
  5267. "license": [
  5268. "BSD-3-Clause"
  5269. ],
  5270. "authors": [
  5271. {
  5272. "name": "Luís Cobucci",
  5273. "email": "lcobucci@gmail.com",
  5274. "role": "Developer"
  5275. }
  5276. ],
  5277. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5278. "keywords": [
  5279. "JWS",
  5280. "jwt"
  5281. ],
  5282. "support": {
  5283. "issues": "https://github.com/lcobucci/jwt/issues",
  5284. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5285. },
  5286. "funding": [
  5287. {
  5288. "url": "https://github.com/lcobucci",
  5289. "type": "github"
  5290. },
  5291. {
  5292. "url": "https://www.patreon.com/lcobucci",
  5293. "type": "patreon"
  5294. }
  5295. ],
  5296. "time": "2021-09-28T19:34:56+00:00"
  5297. },
  5298. {
  5299. "name": "markrogoyski/math-php",
  5300. "version": "v2.10.0",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/markrogoyski/math-php.git",
  5304. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5309. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "ext-json": "*",
  5314. "php": ">=7.2.0"
  5315. },
  5316. "require-dev": {
  5317. "php-coveralls/php-coveralls": "^2.0",
  5318. "php-parallel-lint/php-parallel-lint": "^1.2",
  5319. "phploc/phploc": "*",
  5320. "phpmd/phpmd": "^2.6",
  5321. "phpstan/phpstan": "^1.10",
  5322. "phpunit/phpunit": "^8.5",
  5323. "squizlabs/php_codesniffer": "3.*"
  5324. },
  5325. "type": "library",
  5326. "autoload": {
  5327. "psr-4": {
  5328. "MathPHP\\": "src/"
  5329. }
  5330. },
  5331. "notification-url": "https://packagist.org/downloads/",
  5332. "license": [
  5333. "MIT"
  5334. ],
  5335. "authors": [
  5336. {
  5337. "name": "Mark Rogoyski",
  5338. "email": "mark@rogoyski.com",
  5339. "homepage": "https://github.com/markrogoyski",
  5340. "role": "Lead developer"
  5341. },
  5342. {
  5343. "name": "Kevin Nowaczyk",
  5344. "homepage": "https://github.com/Beakerboy",
  5345. "role": "Developer"
  5346. },
  5347. {
  5348. "name": "MathPHP Community of Contributors",
  5349. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5350. }
  5351. ],
  5352. "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",
  5353. "homepage": "https://github.com/markrogoyski/math-php/",
  5354. "keywords": [
  5355. "algebra",
  5356. "combinatorics",
  5357. "distributions",
  5358. "linear algebra",
  5359. "math",
  5360. "mathematics",
  5361. "matrix",
  5362. "numerical analysis",
  5363. "probability",
  5364. "regressions",
  5365. "statistics"
  5366. ],
  5367. "support": {
  5368. "issues": "https://github.com/markrogoyski/math-php/issues",
  5369. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5370. },
  5371. "time": "2024-04-17T00:09:51+00:00"
  5372. },
  5373. {
  5374. "name": "monolog/monolog",
  5375. "version": "3.8.0",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://github.com/Seldaek/monolog.git",
  5379. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  5384. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  5385. "shasum": ""
  5386. },
  5387. "require": {
  5388. "php": ">=8.1",
  5389. "psr/log": "^2.0 || ^3.0"
  5390. },
  5391. "provide": {
  5392. "psr/log-implementation": "3.0.0"
  5393. },
  5394. "require-dev": {
  5395. "aws/aws-sdk-php": "^3.0",
  5396. "doctrine/couchdb": "~1.0@dev",
  5397. "elasticsearch/elasticsearch": "^7 || ^8",
  5398. "ext-json": "*",
  5399. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5400. "guzzlehttp/guzzle": "^7.4.5",
  5401. "guzzlehttp/psr7": "^2.2",
  5402. "mongodb/mongodb": "^1.8",
  5403. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5404. "php-console/php-console": "^3.1.8",
  5405. "phpstan/phpstan": "^2",
  5406. "phpstan/phpstan-deprecation-rules": "^2",
  5407. "phpstan/phpstan-strict-rules": "^2",
  5408. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5409. "predis/predis": "^1.1 || ^2",
  5410. "rollbar/rollbar": "^4.0",
  5411. "ruflin/elastica": "^7 || ^8",
  5412. "symfony/mailer": "^5.4 || ^6",
  5413. "symfony/mime": "^5.4 || ^6"
  5414. },
  5415. "suggest": {
  5416. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5417. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5418. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5419. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5420. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5421. "ext-mbstring": "Allow to work properly with unicode symbols",
  5422. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5423. "ext-openssl": "Required to send log messages using SSL",
  5424. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5425. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5426. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5427. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5428. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5429. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5430. },
  5431. "type": "library",
  5432. "extra": {
  5433. "branch-alias": {
  5434. "dev-main": "3.x-dev"
  5435. }
  5436. },
  5437. "autoload": {
  5438. "psr-4": {
  5439. "Monolog\\": "src/Monolog"
  5440. }
  5441. },
  5442. "notification-url": "https://packagist.org/downloads/",
  5443. "license": [
  5444. "MIT"
  5445. ],
  5446. "authors": [
  5447. {
  5448. "name": "Jordi Boggiano",
  5449. "email": "j.boggiano@seld.be",
  5450. "homepage": "https://seld.be"
  5451. }
  5452. ],
  5453. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5454. "homepage": "https://github.com/Seldaek/monolog",
  5455. "keywords": [
  5456. "log",
  5457. "logging",
  5458. "psr-3"
  5459. ],
  5460. "support": {
  5461. "issues": "https://github.com/Seldaek/monolog/issues",
  5462. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  5463. },
  5464. "funding": [
  5465. {
  5466. "url": "https://github.com/Seldaek",
  5467. "type": "github"
  5468. },
  5469. {
  5470. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5471. "type": "tidelift"
  5472. }
  5473. ],
  5474. "time": "2024-11-12T13:57:08+00:00"
  5475. },
  5476. {
  5477. "name": "nesbot/carbon",
  5478. "version": "2.72.5",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://github.com/briannesbitt/Carbon.git",
  5482. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5487. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5488. "shasum": ""
  5489. },
  5490. "require": {
  5491. "carbonphp/carbon-doctrine-types": "*",
  5492. "ext-json": "*",
  5493. "php": "^7.1.8 || ^8.0",
  5494. "psr/clock": "^1.0",
  5495. "symfony/polyfill-mbstring": "^1.0",
  5496. "symfony/polyfill-php80": "^1.16",
  5497. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5498. },
  5499. "provide": {
  5500. "psr/clock-implementation": "1.0"
  5501. },
  5502. "require-dev": {
  5503. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5504. "doctrine/orm": "^2.7 || ^3.0",
  5505. "friendsofphp/php-cs-fixer": "^3.0",
  5506. "kylekatarnls/multi-tester": "^2.0",
  5507. "ondrejmirtes/better-reflection": "*",
  5508. "phpmd/phpmd": "^2.9",
  5509. "phpstan/extension-installer": "^1.0",
  5510. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5511. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5512. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5513. "squizlabs/php_codesniffer": "^3.4"
  5514. },
  5515. "bin": [
  5516. "bin/carbon"
  5517. ],
  5518. "type": "library",
  5519. "extra": {
  5520. "branch-alias": {
  5521. "dev-master": "3.x-dev",
  5522. "dev-2.x": "2.x-dev"
  5523. },
  5524. "laravel": {
  5525. "providers": [
  5526. "Carbon\\Laravel\\ServiceProvider"
  5527. ]
  5528. },
  5529. "phpstan": {
  5530. "includes": [
  5531. "extension.neon"
  5532. ]
  5533. }
  5534. },
  5535. "autoload": {
  5536. "psr-4": {
  5537. "Carbon\\": "src/Carbon/"
  5538. }
  5539. },
  5540. "notification-url": "https://packagist.org/downloads/",
  5541. "license": [
  5542. "MIT"
  5543. ],
  5544. "authors": [
  5545. {
  5546. "name": "Brian Nesbitt",
  5547. "email": "brian@nesbot.com",
  5548. "homepage": "https://markido.com"
  5549. },
  5550. {
  5551. "name": "kylekatarnls",
  5552. "homepage": "https://github.com/kylekatarnls"
  5553. }
  5554. ],
  5555. "description": "An API extension for DateTime that supports 281 different languages.",
  5556. "homepage": "https://carbon.nesbot.com",
  5557. "keywords": [
  5558. "date",
  5559. "datetime",
  5560. "time"
  5561. ],
  5562. "support": {
  5563. "docs": "https://carbon.nesbot.com/docs",
  5564. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5565. "source": "https://github.com/briannesbitt/Carbon"
  5566. },
  5567. "funding": [
  5568. {
  5569. "url": "https://github.com/sponsors/kylekatarnls",
  5570. "type": "github"
  5571. },
  5572. {
  5573. "url": "https://opencollective.com/Carbon#sponsor",
  5574. "type": "opencollective"
  5575. },
  5576. {
  5577. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5578. "type": "tidelift"
  5579. }
  5580. ],
  5581. "time": "2024-06-03T19:18:41+00:00"
  5582. },
  5583. {
  5584. "name": "nikic/fast-route",
  5585. "version": "v1.3.0",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://github.com/nikic/FastRoute.git",
  5589. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5594. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5595. "shasum": ""
  5596. },
  5597. "require": {
  5598. "php": ">=5.4.0"
  5599. },
  5600. "require-dev": {
  5601. "phpunit/phpunit": "^4.8.35|~5.7"
  5602. },
  5603. "type": "library",
  5604. "autoload": {
  5605. "files": [
  5606. "src/functions.php"
  5607. ],
  5608. "psr-4": {
  5609. "FastRoute\\": "src/"
  5610. }
  5611. },
  5612. "notification-url": "https://packagist.org/downloads/",
  5613. "license": [
  5614. "BSD-3-Clause"
  5615. ],
  5616. "authors": [
  5617. {
  5618. "name": "Nikita Popov",
  5619. "email": "nikic@php.net"
  5620. }
  5621. ],
  5622. "description": "Fast request router for PHP",
  5623. "keywords": [
  5624. "router",
  5625. "routing"
  5626. ],
  5627. "support": {
  5628. "issues": "https://github.com/nikic/FastRoute/issues",
  5629. "source": "https://github.com/nikic/FastRoute/tree/master"
  5630. },
  5631. "time": "2018-02-13T20:26:39+00:00"
  5632. },
  5633. {
  5634. "name": "nikic/php-parser",
  5635. "version": "v4.19.4",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/nikic/PHP-Parser.git",
  5639. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5644. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5645. "shasum": ""
  5646. },
  5647. "require": {
  5648. "ext-tokenizer": "*",
  5649. "php": ">=7.1"
  5650. },
  5651. "require-dev": {
  5652. "ircmaxell/php-yacc": "^0.0.7",
  5653. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5654. },
  5655. "bin": [
  5656. "bin/php-parse"
  5657. ],
  5658. "type": "library",
  5659. "extra": {
  5660. "branch-alias": {
  5661. "dev-master": "4.9-dev"
  5662. }
  5663. },
  5664. "autoload": {
  5665. "psr-4": {
  5666. "PhpParser\\": "lib/PhpParser"
  5667. }
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "BSD-3-Clause"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Nikita Popov"
  5676. }
  5677. ],
  5678. "description": "A PHP parser written in PHP",
  5679. "keywords": [
  5680. "parser",
  5681. "php"
  5682. ],
  5683. "support": {
  5684. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5685. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5686. },
  5687. "time": "2024-09-29T15:01:53+00:00"
  5688. },
  5689. {
  5690. "name": "paragonie/constant_time_encoding",
  5691. "version": "v3.0.0",
  5692. "source": {
  5693. "type": "git",
  5694. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5695. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5696. },
  5697. "dist": {
  5698. "type": "zip",
  5699. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5700. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5701. "shasum": ""
  5702. },
  5703. "require": {
  5704. "php": "^8"
  5705. },
  5706. "require-dev": {
  5707. "phpunit/phpunit": "^9",
  5708. "vimeo/psalm": "^4|^5"
  5709. },
  5710. "type": "library",
  5711. "autoload": {
  5712. "psr-4": {
  5713. "ParagonIE\\ConstantTime\\": "src/"
  5714. }
  5715. },
  5716. "notification-url": "https://packagist.org/downloads/",
  5717. "license": [
  5718. "MIT"
  5719. ],
  5720. "authors": [
  5721. {
  5722. "name": "Paragon Initiative Enterprises",
  5723. "email": "security@paragonie.com",
  5724. "homepage": "https://paragonie.com",
  5725. "role": "Maintainer"
  5726. },
  5727. {
  5728. "name": "Steve 'Sc00bz' Thomas",
  5729. "email": "steve@tobtu.com",
  5730. "homepage": "https://www.tobtu.com",
  5731. "role": "Original Developer"
  5732. }
  5733. ],
  5734. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5735. "keywords": [
  5736. "base16",
  5737. "base32",
  5738. "base32_decode",
  5739. "base32_encode",
  5740. "base64",
  5741. "base64_decode",
  5742. "base64_encode",
  5743. "bin2hex",
  5744. "encoding",
  5745. "hex",
  5746. "hex2bin",
  5747. "rfc4648"
  5748. ],
  5749. "support": {
  5750. "email": "info@paragonie.com",
  5751. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5752. "source": "https://github.com/paragonie/constant_time_encoding"
  5753. },
  5754. "time": "2024-05-08T12:36:18+00:00"
  5755. },
  5756. {
  5757. "name": "paragonie/random_compat",
  5758. "version": "v9.99.100",
  5759. "source": {
  5760. "type": "git",
  5761. "url": "https://github.com/paragonie/random_compat.git",
  5762. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5763. },
  5764. "dist": {
  5765. "type": "zip",
  5766. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5767. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5768. "shasum": ""
  5769. },
  5770. "require": {
  5771. "php": ">= 7"
  5772. },
  5773. "require-dev": {
  5774. "phpunit/phpunit": "4.*|5.*",
  5775. "vimeo/psalm": "^1"
  5776. },
  5777. "suggest": {
  5778. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5779. },
  5780. "type": "library",
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "MIT"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "Paragon Initiative Enterprises",
  5788. "email": "security@paragonie.com",
  5789. "homepage": "https://paragonie.com"
  5790. }
  5791. ],
  5792. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5793. "keywords": [
  5794. "csprng",
  5795. "polyfill",
  5796. "pseudorandom",
  5797. "random"
  5798. ],
  5799. "support": {
  5800. "email": "info@paragonie.com",
  5801. "issues": "https://github.com/paragonie/random_compat/issues",
  5802. "source": "https://github.com/paragonie/random_compat"
  5803. },
  5804. "time": "2020-10-15T08:29:30+00:00"
  5805. },
  5806. {
  5807. "name": "php-amqplib/php-amqplib",
  5808. "version": "v3.7.1",
  5809. "source": {
  5810. "type": "git",
  5811. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5812. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65"
  5813. },
  5814. "dist": {
  5815. "type": "zip",
  5816. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5817. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5818. "shasum": ""
  5819. },
  5820. "require": {
  5821. "ext-mbstring": "*",
  5822. "ext-sockets": "*",
  5823. "php": "^7.2||^8.0",
  5824. "phpseclib/phpseclib": "^2.0|^3.0"
  5825. },
  5826. "conflict": {
  5827. "php": "7.4.0 - 7.4.1"
  5828. },
  5829. "replace": {
  5830. "videlalvaro/php-amqplib": "self.version"
  5831. },
  5832. "require-dev": {
  5833. "ext-curl": "*",
  5834. "nategood/httpful": "^0.2.20",
  5835. "phpunit/phpunit": "^7.5|^9.5",
  5836. "squizlabs/php_codesniffer": "^3.6"
  5837. },
  5838. "type": "library",
  5839. "extra": {
  5840. "branch-alias": {
  5841. "dev-master": "3.0-dev"
  5842. }
  5843. },
  5844. "autoload": {
  5845. "psr-4": {
  5846. "PhpAmqpLib\\": "PhpAmqpLib/"
  5847. }
  5848. },
  5849. "notification-url": "https://packagist.org/downloads/",
  5850. "license": [
  5851. "LGPL-2.1-or-later"
  5852. ],
  5853. "authors": [
  5854. {
  5855. "name": "Alvaro Videla",
  5856. "role": "Original Maintainer"
  5857. },
  5858. {
  5859. "name": "Raúl Araya",
  5860. "email": "nubeiro@gmail.com",
  5861. "role": "Maintainer"
  5862. },
  5863. {
  5864. "name": "Luke Bakken",
  5865. "email": "luke@bakken.io",
  5866. "role": "Maintainer"
  5867. },
  5868. {
  5869. "name": "Ramūnas Dronga",
  5870. "email": "github@ramuno.lt",
  5871. "role": "Maintainer"
  5872. }
  5873. ],
  5874. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5875. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5876. "keywords": [
  5877. "message",
  5878. "queue",
  5879. "rabbitmq"
  5880. ],
  5881. "support": {
  5882. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5883. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.1"
  5884. },
  5885. "time": "2024-09-03T19:18:03+00:00"
  5886. },
  5887. {
  5888. "name": "php-di/phpdoc-reader",
  5889. "version": "2.2.1",
  5890. "source": {
  5891. "type": "git",
  5892. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5893. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5894. },
  5895. "dist": {
  5896. "type": "zip",
  5897. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5898. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5899. "shasum": ""
  5900. },
  5901. "require": {
  5902. "php": ">=7.2.0"
  5903. },
  5904. "require-dev": {
  5905. "mnapoli/hard-mode": "~0.3.0",
  5906. "phpunit/phpunit": "^8.5|^9.0"
  5907. },
  5908. "type": "library",
  5909. "autoload": {
  5910. "psr-4": {
  5911. "PhpDocReader\\": "src/PhpDocReader"
  5912. }
  5913. },
  5914. "notification-url": "https://packagist.org/downloads/",
  5915. "license": [
  5916. "MIT"
  5917. ],
  5918. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5919. "keywords": [
  5920. "phpdoc",
  5921. "reflection"
  5922. ],
  5923. "support": {
  5924. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5925. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5926. },
  5927. "time": "2020-10-12T12:39:22+00:00"
  5928. },
  5929. {
  5930. "name": "phper666/jwt-auth",
  5931. "version": "v4.0.11",
  5932. "source": {
  5933. "type": "git",
  5934. "url": "https://github.com/phper666/jwt-auth.git",
  5935. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5936. },
  5937. "dist": {
  5938. "type": "zip",
  5939. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5940. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5941. "shasum": ""
  5942. },
  5943. "require": {
  5944. "ext-swoole": ">=4.4",
  5945. "lcobucci/jwt": "4.1.5",
  5946. "nesbot/carbon": "^1.0 || ^2.0",
  5947. "php": ">=7.4"
  5948. },
  5949. "suggest": {
  5950. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5951. "hyperf/command": "required hyperf/command ~2.2.0",
  5952. "hyperf/config": "required hyperf/config ~2.2.0",
  5953. "hyperf/di": "required hyperf/di ~2.2.0"
  5954. },
  5955. "type": "library",
  5956. "extra": {
  5957. "hyperf": {
  5958. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5959. }
  5960. },
  5961. "autoload": {
  5962. "files": [
  5963. "src/Functions.php"
  5964. ],
  5965. "psr-4": {
  5966. "Phper666\\JWTAuth\\": "src/"
  5967. }
  5968. },
  5969. "notification-url": "https://packagist.org/downloads/",
  5970. "license": [
  5971. "MIT"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "Li Yuzhao",
  5976. "email": "562405704@qq.com",
  5977. "homepage": "https://github.com/phper666/jwt-auth",
  5978. "role": "Developer"
  5979. }
  5980. ],
  5981. "description": "jwt-auth Component",
  5982. "keywords": [
  5983. "hyperf",
  5984. "php"
  5985. ],
  5986. "support": {
  5987. "issues": "https://github.com/phper666/jwt-auth/issues",
  5988. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5989. },
  5990. "time": "2024-02-02T13:24:54+00:00"
  5991. },
  5992. {
  5993. "name": "phpoption/phpoption",
  5994. "version": "1.9.3",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/schmittjoh/php-option.git",
  5998. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6003. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6004. "shasum": ""
  6005. },
  6006. "require": {
  6007. "php": "^7.2.5 || ^8.0"
  6008. },
  6009. "require-dev": {
  6010. "bamarni/composer-bin-plugin": "^1.8.2",
  6011. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6012. },
  6013. "type": "library",
  6014. "extra": {
  6015. "bamarni-bin": {
  6016. "bin-links": true,
  6017. "forward-command": false
  6018. },
  6019. "branch-alias": {
  6020. "dev-master": "1.9-dev"
  6021. }
  6022. },
  6023. "autoload": {
  6024. "psr-4": {
  6025. "PhpOption\\": "src/PhpOption/"
  6026. }
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "Apache-2.0"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Johannes M. Schmitt",
  6035. "email": "schmittjoh@gmail.com",
  6036. "homepage": "https://github.com/schmittjoh"
  6037. },
  6038. {
  6039. "name": "Graham Campbell",
  6040. "email": "hello@gjcampbell.co.uk",
  6041. "homepage": "https://github.com/GrahamCampbell"
  6042. }
  6043. ],
  6044. "description": "Option Type for PHP",
  6045. "keywords": [
  6046. "language",
  6047. "option",
  6048. "php",
  6049. "type"
  6050. ],
  6051. "support": {
  6052. "issues": "https://github.com/schmittjoh/php-option/issues",
  6053. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6054. },
  6055. "funding": [
  6056. {
  6057. "url": "https://github.com/GrahamCampbell",
  6058. "type": "github"
  6059. },
  6060. {
  6061. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6062. "type": "tidelift"
  6063. }
  6064. ],
  6065. "time": "2024-07-20T21:41:07+00:00"
  6066. },
  6067. {
  6068. "name": "phpseclib/phpseclib",
  6069. "version": "3.0.42",
  6070. "source": {
  6071. "type": "git",
  6072. "url": "https://github.com/phpseclib/phpseclib.git",
  6073. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  6074. },
  6075. "dist": {
  6076. "type": "zip",
  6077. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6078. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6079. "shasum": ""
  6080. },
  6081. "require": {
  6082. "paragonie/constant_time_encoding": "^1|^2|^3",
  6083. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6084. "php": ">=5.6.1"
  6085. },
  6086. "require-dev": {
  6087. "phpunit/phpunit": "*"
  6088. },
  6089. "suggest": {
  6090. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6091. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6092. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6093. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6094. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6095. },
  6096. "type": "library",
  6097. "autoload": {
  6098. "files": [
  6099. "phpseclib/bootstrap.php"
  6100. ],
  6101. "psr-4": {
  6102. "phpseclib3\\": "phpseclib/"
  6103. }
  6104. },
  6105. "notification-url": "https://packagist.org/downloads/",
  6106. "license": [
  6107. "MIT"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Jim Wigginton",
  6112. "email": "terrafrost@php.net",
  6113. "role": "Lead Developer"
  6114. },
  6115. {
  6116. "name": "Patrick Monnerat",
  6117. "email": "pm@datasphere.ch",
  6118. "role": "Developer"
  6119. },
  6120. {
  6121. "name": "Andreas Fischer",
  6122. "email": "bantu@phpbb.com",
  6123. "role": "Developer"
  6124. },
  6125. {
  6126. "name": "Hans-Jürgen Petrich",
  6127. "email": "petrich@tronic-media.com",
  6128. "role": "Developer"
  6129. },
  6130. {
  6131. "name": "Graham Campbell",
  6132. "email": "graham@alt-three.com",
  6133. "role": "Developer"
  6134. }
  6135. ],
  6136. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6137. "homepage": "http://phpseclib.sourceforge.net",
  6138. "keywords": [
  6139. "BigInteger",
  6140. "aes",
  6141. "asn.1",
  6142. "asn1",
  6143. "blowfish",
  6144. "crypto",
  6145. "cryptography",
  6146. "encryption",
  6147. "rsa",
  6148. "security",
  6149. "sftp",
  6150. "signature",
  6151. "signing",
  6152. "ssh",
  6153. "twofish",
  6154. "x.509",
  6155. "x509"
  6156. ],
  6157. "support": {
  6158. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6159. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  6160. },
  6161. "funding": [
  6162. {
  6163. "url": "https://github.com/terrafrost",
  6164. "type": "github"
  6165. },
  6166. {
  6167. "url": "https://www.patreon.com/phpseclib",
  6168. "type": "patreon"
  6169. },
  6170. {
  6171. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6172. "type": "tidelift"
  6173. }
  6174. ],
  6175. "time": "2024-09-16T03:06:04+00:00"
  6176. },
  6177. {
  6178. "name": "psr/cache",
  6179. "version": "3.0.0",
  6180. "source": {
  6181. "type": "git",
  6182. "url": "https://github.com/php-fig/cache.git",
  6183. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6184. },
  6185. "dist": {
  6186. "type": "zip",
  6187. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6188. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6189. "shasum": ""
  6190. },
  6191. "require": {
  6192. "php": ">=8.0.0"
  6193. },
  6194. "type": "library",
  6195. "extra": {
  6196. "branch-alias": {
  6197. "dev-master": "1.0.x-dev"
  6198. }
  6199. },
  6200. "autoload": {
  6201. "psr-4": {
  6202. "Psr\\Cache\\": "src/"
  6203. }
  6204. },
  6205. "notification-url": "https://packagist.org/downloads/",
  6206. "license": [
  6207. "MIT"
  6208. ],
  6209. "authors": [
  6210. {
  6211. "name": "PHP-FIG",
  6212. "homepage": "https://www.php-fig.org/"
  6213. }
  6214. ],
  6215. "description": "Common interface for caching libraries",
  6216. "keywords": [
  6217. "cache",
  6218. "psr",
  6219. "psr-6"
  6220. ],
  6221. "support": {
  6222. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6223. },
  6224. "time": "2021-02-03T23:26:27+00:00"
  6225. },
  6226. {
  6227. "name": "psr/clock",
  6228. "version": "1.0.0",
  6229. "source": {
  6230. "type": "git",
  6231. "url": "https://github.com/php-fig/clock.git",
  6232. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6233. },
  6234. "dist": {
  6235. "type": "zip",
  6236. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6237. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6238. "shasum": ""
  6239. },
  6240. "require": {
  6241. "php": "^7.0 || ^8.0"
  6242. },
  6243. "type": "library",
  6244. "autoload": {
  6245. "psr-4": {
  6246. "Psr\\Clock\\": "src/"
  6247. }
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "MIT"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "PHP-FIG",
  6256. "homepage": "https://www.php-fig.org/"
  6257. }
  6258. ],
  6259. "description": "Common interface for reading the clock.",
  6260. "homepage": "https://github.com/php-fig/clock",
  6261. "keywords": [
  6262. "clock",
  6263. "now",
  6264. "psr",
  6265. "psr-20",
  6266. "time"
  6267. ],
  6268. "support": {
  6269. "issues": "https://github.com/php-fig/clock/issues",
  6270. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6271. },
  6272. "time": "2022-11-25T14:36:26+00:00"
  6273. },
  6274. {
  6275. "name": "psr/container",
  6276. "version": "2.0.2",
  6277. "source": {
  6278. "type": "git",
  6279. "url": "https://github.com/php-fig/container.git",
  6280. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6281. },
  6282. "dist": {
  6283. "type": "zip",
  6284. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6285. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6286. "shasum": ""
  6287. },
  6288. "require": {
  6289. "php": ">=7.4.0"
  6290. },
  6291. "type": "library",
  6292. "extra": {
  6293. "branch-alias": {
  6294. "dev-master": "2.0.x-dev"
  6295. }
  6296. },
  6297. "autoload": {
  6298. "psr-4": {
  6299. "Psr\\Container\\": "src/"
  6300. }
  6301. },
  6302. "notification-url": "https://packagist.org/downloads/",
  6303. "license": [
  6304. "MIT"
  6305. ],
  6306. "authors": [
  6307. {
  6308. "name": "PHP-FIG",
  6309. "homepage": "https://www.php-fig.org/"
  6310. }
  6311. ],
  6312. "description": "Common Container Interface (PHP FIG PSR-11)",
  6313. "homepage": "https://github.com/php-fig/container",
  6314. "keywords": [
  6315. "PSR-11",
  6316. "container",
  6317. "container-interface",
  6318. "container-interop",
  6319. "psr"
  6320. ],
  6321. "support": {
  6322. "issues": "https://github.com/php-fig/container/issues",
  6323. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6324. },
  6325. "time": "2021-11-05T16:47:00+00:00"
  6326. },
  6327. {
  6328. "name": "psr/event-dispatcher",
  6329. "version": "1.0.0",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/php-fig/event-dispatcher.git",
  6333. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6338. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6339. "shasum": ""
  6340. },
  6341. "require": {
  6342. "php": ">=7.2.0"
  6343. },
  6344. "type": "library",
  6345. "extra": {
  6346. "branch-alias": {
  6347. "dev-master": "1.0.x-dev"
  6348. }
  6349. },
  6350. "autoload": {
  6351. "psr-4": {
  6352. "Psr\\EventDispatcher\\": "src/"
  6353. }
  6354. },
  6355. "notification-url": "https://packagist.org/downloads/",
  6356. "license": [
  6357. "MIT"
  6358. ],
  6359. "authors": [
  6360. {
  6361. "name": "PHP-FIG",
  6362. "homepage": "http://www.php-fig.org/"
  6363. }
  6364. ],
  6365. "description": "Standard interfaces for event handling.",
  6366. "keywords": [
  6367. "events",
  6368. "psr",
  6369. "psr-14"
  6370. ],
  6371. "support": {
  6372. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6373. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6374. },
  6375. "time": "2019-01-08T18:20:26+00:00"
  6376. },
  6377. {
  6378. "name": "psr/http-client",
  6379. "version": "1.0.3",
  6380. "source": {
  6381. "type": "git",
  6382. "url": "https://github.com/php-fig/http-client.git",
  6383. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6384. },
  6385. "dist": {
  6386. "type": "zip",
  6387. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6388. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6389. "shasum": ""
  6390. },
  6391. "require": {
  6392. "php": "^7.0 || ^8.0",
  6393. "psr/http-message": "^1.0 || ^2.0"
  6394. },
  6395. "type": "library",
  6396. "extra": {
  6397. "branch-alias": {
  6398. "dev-master": "1.0.x-dev"
  6399. }
  6400. },
  6401. "autoload": {
  6402. "psr-4": {
  6403. "Psr\\Http\\Client\\": "src/"
  6404. }
  6405. },
  6406. "notification-url": "https://packagist.org/downloads/",
  6407. "license": [
  6408. "MIT"
  6409. ],
  6410. "authors": [
  6411. {
  6412. "name": "PHP-FIG",
  6413. "homepage": "https://www.php-fig.org/"
  6414. }
  6415. ],
  6416. "description": "Common interface for HTTP clients",
  6417. "homepage": "https://github.com/php-fig/http-client",
  6418. "keywords": [
  6419. "http",
  6420. "http-client",
  6421. "psr",
  6422. "psr-18"
  6423. ],
  6424. "support": {
  6425. "source": "https://github.com/php-fig/http-client"
  6426. },
  6427. "time": "2023-09-23T14:17:50+00:00"
  6428. },
  6429. {
  6430. "name": "psr/http-factory",
  6431. "version": "1.1.0",
  6432. "source": {
  6433. "type": "git",
  6434. "url": "https://github.com/php-fig/http-factory.git",
  6435. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6436. },
  6437. "dist": {
  6438. "type": "zip",
  6439. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6440. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6441. "shasum": ""
  6442. },
  6443. "require": {
  6444. "php": ">=7.1",
  6445. "psr/http-message": "^1.0 || ^2.0"
  6446. },
  6447. "type": "library",
  6448. "extra": {
  6449. "branch-alias": {
  6450. "dev-master": "1.0.x-dev"
  6451. }
  6452. },
  6453. "autoload": {
  6454. "psr-4": {
  6455. "Psr\\Http\\Message\\": "src/"
  6456. }
  6457. },
  6458. "notification-url": "https://packagist.org/downloads/",
  6459. "license": [
  6460. "MIT"
  6461. ],
  6462. "authors": [
  6463. {
  6464. "name": "PHP-FIG",
  6465. "homepage": "https://www.php-fig.org/"
  6466. }
  6467. ],
  6468. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6469. "keywords": [
  6470. "factory",
  6471. "http",
  6472. "message",
  6473. "psr",
  6474. "psr-17",
  6475. "psr-7",
  6476. "request",
  6477. "response"
  6478. ],
  6479. "support": {
  6480. "source": "https://github.com/php-fig/http-factory"
  6481. },
  6482. "time": "2024-04-15T12:06:14+00:00"
  6483. },
  6484. {
  6485. "name": "psr/http-message",
  6486. "version": "2.0",
  6487. "source": {
  6488. "type": "git",
  6489. "url": "https://github.com/php-fig/http-message.git",
  6490. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6491. },
  6492. "dist": {
  6493. "type": "zip",
  6494. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6495. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6496. "shasum": ""
  6497. },
  6498. "require": {
  6499. "php": "^7.2 || ^8.0"
  6500. },
  6501. "type": "library",
  6502. "extra": {
  6503. "branch-alias": {
  6504. "dev-master": "2.0.x-dev"
  6505. }
  6506. },
  6507. "autoload": {
  6508. "psr-4": {
  6509. "Psr\\Http\\Message\\": "src/"
  6510. }
  6511. },
  6512. "notification-url": "https://packagist.org/downloads/",
  6513. "license": [
  6514. "MIT"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "PHP-FIG",
  6519. "homepage": "https://www.php-fig.org/"
  6520. }
  6521. ],
  6522. "description": "Common interface for HTTP messages",
  6523. "homepage": "https://github.com/php-fig/http-message",
  6524. "keywords": [
  6525. "http",
  6526. "http-message",
  6527. "psr",
  6528. "psr-7",
  6529. "request",
  6530. "response"
  6531. ],
  6532. "support": {
  6533. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6534. },
  6535. "time": "2023-04-04T09:54:51+00:00"
  6536. },
  6537. {
  6538. "name": "psr/http-server-handler",
  6539. "version": "1.0.2",
  6540. "source": {
  6541. "type": "git",
  6542. "url": "https://github.com/php-fig/http-server-handler.git",
  6543. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6544. },
  6545. "dist": {
  6546. "type": "zip",
  6547. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6548. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6549. "shasum": ""
  6550. },
  6551. "require": {
  6552. "php": ">=7.0",
  6553. "psr/http-message": "^1.0 || ^2.0"
  6554. },
  6555. "type": "library",
  6556. "extra": {
  6557. "branch-alias": {
  6558. "dev-master": "1.0.x-dev"
  6559. }
  6560. },
  6561. "autoload": {
  6562. "psr-4": {
  6563. "Psr\\Http\\Server\\": "src/"
  6564. }
  6565. },
  6566. "notification-url": "https://packagist.org/downloads/",
  6567. "license": [
  6568. "MIT"
  6569. ],
  6570. "authors": [
  6571. {
  6572. "name": "PHP-FIG",
  6573. "homepage": "https://www.php-fig.org/"
  6574. }
  6575. ],
  6576. "description": "Common interface for HTTP server-side request handler",
  6577. "keywords": [
  6578. "handler",
  6579. "http",
  6580. "http-interop",
  6581. "psr",
  6582. "psr-15",
  6583. "psr-7",
  6584. "request",
  6585. "response",
  6586. "server"
  6587. ],
  6588. "support": {
  6589. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6590. },
  6591. "time": "2023-04-10T20:06:20+00:00"
  6592. },
  6593. {
  6594. "name": "psr/http-server-middleware",
  6595. "version": "1.0.2",
  6596. "source": {
  6597. "type": "git",
  6598. "url": "https://github.com/php-fig/http-server-middleware.git",
  6599. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6600. },
  6601. "dist": {
  6602. "type": "zip",
  6603. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6604. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6605. "shasum": ""
  6606. },
  6607. "require": {
  6608. "php": ">=7.0",
  6609. "psr/http-message": "^1.0 || ^2.0",
  6610. "psr/http-server-handler": "^1.0"
  6611. },
  6612. "type": "library",
  6613. "extra": {
  6614. "branch-alias": {
  6615. "dev-master": "1.0.x-dev"
  6616. }
  6617. },
  6618. "autoload": {
  6619. "psr-4": {
  6620. "Psr\\Http\\Server\\": "src/"
  6621. }
  6622. },
  6623. "notification-url": "https://packagist.org/downloads/",
  6624. "license": [
  6625. "MIT"
  6626. ],
  6627. "authors": [
  6628. {
  6629. "name": "PHP-FIG",
  6630. "homepage": "https://www.php-fig.org/"
  6631. }
  6632. ],
  6633. "description": "Common interface for HTTP server-side middleware",
  6634. "keywords": [
  6635. "http",
  6636. "http-interop",
  6637. "middleware",
  6638. "psr",
  6639. "psr-15",
  6640. "psr-7",
  6641. "request",
  6642. "response"
  6643. ],
  6644. "support": {
  6645. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6646. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6647. },
  6648. "time": "2023-04-11T06:14:47+00:00"
  6649. },
  6650. {
  6651. "name": "psr/log",
  6652. "version": "3.0.2",
  6653. "source": {
  6654. "type": "git",
  6655. "url": "https://github.com/php-fig/log.git",
  6656. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6657. },
  6658. "dist": {
  6659. "type": "zip",
  6660. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6661. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6662. "shasum": ""
  6663. },
  6664. "require": {
  6665. "php": ">=8.0.0"
  6666. },
  6667. "type": "library",
  6668. "extra": {
  6669. "branch-alias": {
  6670. "dev-master": "3.x-dev"
  6671. }
  6672. },
  6673. "autoload": {
  6674. "psr-4": {
  6675. "Psr\\Log\\": "src"
  6676. }
  6677. },
  6678. "notification-url": "https://packagist.org/downloads/",
  6679. "license": [
  6680. "MIT"
  6681. ],
  6682. "authors": [
  6683. {
  6684. "name": "PHP-FIG",
  6685. "homepage": "https://www.php-fig.org/"
  6686. }
  6687. ],
  6688. "description": "Common interface for logging libraries",
  6689. "homepage": "https://github.com/php-fig/log",
  6690. "keywords": [
  6691. "log",
  6692. "psr",
  6693. "psr-3"
  6694. ],
  6695. "support": {
  6696. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6697. },
  6698. "time": "2024-09-11T13:17:53+00:00"
  6699. },
  6700. {
  6701. "name": "psr/simple-cache",
  6702. "version": "3.0.0",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://github.com/php-fig/simple-cache.git",
  6706. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6711. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6712. "shasum": ""
  6713. },
  6714. "require": {
  6715. "php": ">=8.0.0"
  6716. },
  6717. "type": "library",
  6718. "extra": {
  6719. "branch-alias": {
  6720. "dev-master": "3.0.x-dev"
  6721. }
  6722. },
  6723. "autoload": {
  6724. "psr-4": {
  6725. "Psr\\SimpleCache\\": "src/"
  6726. }
  6727. },
  6728. "notification-url": "https://packagist.org/downloads/",
  6729. "license": [
  6730. "MIT"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "PHP-FIG",
  6735. "homepage": "https://www.php-fig.org/"
  6736. }
  6737. ],
  6738. "description": "Common interfaces for simple caching",
  6739. "keywords": [
  6740. "cache",
  6741. "caching",
  6742. "psr",
  6743. "psr-16",
  6744. "simple-cache"
  6745. ],
  6746. "support": {
  6747. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6748. },
  6749. "time": "2021-10-29T13:26:27+00:00"
  6750. },
  6751. {
  6752. "name": "ralouphie/getallheaders",
  6753. "version": "3.0.3",
  6754. "source": {
  6755. "type": "git",
  6756. "url": "https://github.com/ralouphie/getallheaders.git",
  6757. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6758. },
  6759. "dist": {
  6760. "type": "zip",
  6761. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6762. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6763. "shasum": ""
  6764. },
  6765. "require": {
  6766. "php": ">=5.6"
  6767. },
  6768. "require-dev": {
  6769. "php-coveralls/php-coveralls": "^2.1",
  6770. "phpunit/phpunit": "^5 || ^6.5"
  6771. },
  6772. "type": "library",
  6773. "autoload": {
  6774. "files": [
  6775. "src/getallheaders.php"
  6776. ]
  6777. },
  6778. "notification-url": "https://packagist.org/downloads/",
  6779. "license": [
  6780. "MIT"
  6781. ],
  6782. "authors": [
  6783. {
  6784. "name": "Ralph Khattar",
  6785. "email": "ralph.khattar@gmail.com"
  6786. }
  6787. ],
  6788. "description": "A polyfill for getallheaders.",
  6789. "support": {
  6790. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6791. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6792. },
  6793. "time": "2019-03-08T08:55:37+00:00"
  6794. },
  6795. {
  6796. "name": "stella-maris/clock",
  6797. "version": "0.1.7",
  6798. "source": {
  6799. "type": "git",
  6800. "url": "https://github.com/stella-maris-solutions/clock.git",
  6801. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6802. },
  6803. "dist": {
  6804. "type": "zip",
  6805. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6806. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6807. "shasum": ""
  6808. },
  6809. "require": {
  6810. "php": "^7.0|^8.0",
  6811. "psr/clock": "^1.0"
  6812. },
  6813. "type": "library",
  6814. "autoload": {
  6815. "psr-4": {
  6816. "StellaMaris\\Clock\\": "src"
  6817. }
  6818. },
  6819. "notification-url": "https://packagist.org/downloads/",
  6820. "license": [
  6821. "MIT"
  6822. ],
  6823. "authors": [
  6824. {
  6825. "name": "Andreas Heigl",
  6826. "role": "Maintainer"
  6827. }
  6828. ],
  6829. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6830. "homepage": "https://gitlab.com/stella-maris/clock",
  6831. "keywords": [
  6832. "clock",
  6833. "datetime",
  6834. "point in time",
  6835. "psr20"
  6836. ],
  6837. "support": {
  6838. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6839. },
  6840. "time": "2022-11-25T16:15:06+00:00"
  6841. },
  6842. {
  6843. "name": "swow/psr7-plus",
  6844. "version": "v1.1.2",
  6845. "source": {
  6846. "type": "git",
  6847. "url": "https://github.com/swow/psr7-plus.git",
  6848. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6849. },
  6850. "dist": {
  6851. "type": "zip",
  6852. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6853. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6854. "shasum": ""
  6855. },
  6856. "require": {
  6857. "php": ">=8.0",
  6858. "psr/http-client": "^1.0",
  6859. "psr/http-factory": "^1.0",
  6860. "psr/http-message": "^1.1|^2.0"
  6861. },
  6862. "type": "library",
  6863. "autoload": {
  6864. "psr-4": {
  6865. "Swow\\Psr7\\Message\\": "src/Message/"
  6866. }
  6867. },
  6868. "notification-url": "https://packagist.org/downloads/",
  6869. "license": [
  6870. "Apache-2.0"
  6871. ],
  6872. "authors": [
  6873. {
  6874. "name": "twose",
  6875. "email": "twosee@php.net"
  6876. }
  6877. ],
  6878. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6879. "keywords": [
  6880. "http",
  6881. "psr17",
  6882. "psr7",
  6883. "swow",
  6884. "websocket"
  6885. ],
  6886. "support": {
  6887. "issues": "https://github.com/swow/swow",
  6888. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6889. },
  6890. "time": "2023-06-15T09:18:11+00:00"
  6891. },
  6892. {
  6893. "name": "symfony/console",
  6894. "version": "v6.4.15",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/symfony/console.git",
  6898. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6903. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": ">=8.1",
  6908. "symfony/deprecation-contracts": "^2.5|^3",
  6909. "symfony/polyfill-mbstring": "~1.0",
  6910. "symfony/service-contracts": "^2.5|^3",
  6911. "symfony/string": "^5.4|^6.0|^7.0"
  6912. },
  6913. "conflict": {
  6914. "symfony/dependency-injection": "<5.4",
  6915. "symfony/dotenv": "<5.4",
  6916. "symfony/event-dispatcher": "<5.4",
  6917. "symfony/lock": "<5.4",
  6918. "symfony/process": "<5.4"
  6919. },
  6920. "provide": {
  6921. "psr/log-implementation": "1.0|2.0|3.0"
  6922. },
  6923. "require-dev": {
  6924. "psr/log": "^1|^2|^3",
  6925. "symfony/config": "^5.4|^6.0|^7.0",
  6926. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6927. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6928. "symfony/http-foundation": "^6.4|^7.0",
  6929. "symfony/http-kernel": "^6.4|^7.0",
  6930. "symfony/lock": "^5.4|^6.0|^7.0",
  6931. "symfony/messenger": "^5.4|^6.0|^7.0",
  6932. "symfony/process": "^5.4|^6.0|^7.0",
  6933. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6934. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6935. },
  6936. "type": "library",
  6937. "autoload": {
  6938. "psr-4": {
  6939. "Symfony\\Component\\Console\\": ""
  6940. },
  6941. "exclude-from-classmap": [
  6942. "/Tests/"
  6943. ]
  6944. },
  6945. "notification-url": "https://packagist.org/downloads/",
  6946. "license": [
  6947. "MIT"
  6948. ],
  6949. "authors": [
  6950. {
  6951. "name": "Fabien Potencier",
  6952. "email": "fabien@symfony.com"
  6953. },
  6954. {
  6955. "name": "Symfony Community",
  6956. "homepage": "https://symfony.com/contributors"
  6957. }
  6958. ],
  6959. "description": "Eases the creation of beautiful and testable command line interfaces",
  6960. "homepage": "https://symfony.com",
  6961. "keywords": [
  6962. "cli",
  6963. "command-line",
  6964. "console",
  6965. "terminal"
  6966. ],
  6967. "support": {
  6968. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6969. },
  6970. "funding": [
  6971. {
  6972. "url": "https://symfony.com/sponsor",
  6973. "type": "custom"
  6974. },
  6975. {
  6976. "url": "https://github.com/fabpot",
  6977. "type": "github"
  6978. },
  6979. {
  6980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6981. "type": "tidelift"
  6982. }
  6983. ],
  6984. "time": "2024-11-06T14:19:14+00:00"
  6985. },
  6986. {
  6987. "name": "symfony/deprecation-contracts",
  6988. "version": "v3.5.0",
  6989. "source": {
  6990. "type": "git",
  6991. "url": "https://github.com/symfony/deprecation-contracts.git",
  6992. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6993. },
  6994. "dist": {
  6995. "type": "zip",
  6996. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6997. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6998. "shasum": ""
  6999. },
  7000. "require": {
  7001. "php": ">=8.1"
  7002. },
  7003. "type": "library",
  7004. "extra": {
  7005. "branch-alias": {
  7006. "dev-main": "3.5-dev"
  7007. },
  7008. "thanks": {
  7009. "name": "symfony/contracts",
  7010. "url": "https://github.com/symfony/contracts"
  7011. }
  7012. },
  7013. "autoload": {
  7014. "files": [
  7015. "function.php"
  7016. ]
  7017. },
  7018. "notification-url": "https://packagist.org/downloads/",
  7019. "license": [
  7020. "MIT"
  7021. ],
  7022. "authors": [
  7023. {
  7024. "name": "Nicolas Grekas",
  7025. "email": "p@tchwork.com"
  7026. },
  7027. {
  7028. "name": "Symfony Community",
  7029. "homepage": "https://symfony.com/contributors"
  7030. }
  7031. ],
  7032. "description": "A generic function and convention to trigger deprecation notices",
  7033. "homepage": "https://symfony.com",
  7034. "support": {
  7035. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7036. },
  7037. "funding": [
  7038. {
  7039. "url": "https://symfony.com/sponsor",
  7040. "type": "custom"
  7041. },
  7042. {
  7043. "url": "https://github.com/fabpot",
  7044. "type": "github"
  7045. },
  7046. {
  7047. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7048. "type": "tidelift"
  7049. }
  7050. ],
  7051. "time": "2024-04-18T09:32:20+00:00"
  7052. },
  7053. {
  7054. "name": "symfony/finder",
  7055. "version": "v6.4.13",
  7056. "source": {
  7057. "type": "git",
  7058. "url": "https://github.com/symfony/finder.git",
  7059. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  7060. },
  7061. "dist": {
  7062. "type": "zip",
  7063. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7064. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7065. "shasum": ""
  7066. },
  7067. "require": {
  7068. "php": ">=8.1"
  7069. },
  7070. "require-dev": {
  7071. "symfony/filesystem": "^6.0|^7.0"
  7072. },
  7073. "type": "library",
  7074. "autoload": {
  7075. "psr-4": {
  7076. "Symfony\\Component\\Finder\\": ""
  7077. },
  7078. "exclude-from-classmap": [
  7079. "/Tests/"
  7080. ]
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Fabien Potencier",
  7089. "email": "fabien@symfony.com"
  7090. },
  7091. {
  7092. "name": "Symfony Community",
  7093. "homepage": "https://symfony.com/contributors"
  7094. }
  7095. ],
  7096. "description": "Finds files and directories via an intuitive fluent interface",
  7097. "homepage": "https://symfony.com",
  7098. "support": {
  7099. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7100. },
  7101. "funding": [
  7102. {
  7103. "url": "https://symfony.com/sponsor",
  7104. "type": "custom"
  7105. },
  7106. {
  7107. "url": "https://github.com/fabpot",
  7108. "type": "github"
  7109. },
  7110. {
  7111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7112. "type": "tidelift"
  7113. }
  7114. ],
  7115. "time": "2024-10-01T08:30:56+00:00"
  7116. },
  7117. {
  7118. "name": "symfony/polyfill-ctype",
  7119. "version": "v1.31.0",
  7120. "source": {
  7121. "type": "git",
  7122. "url": "https://github.com/symfony/polyfill-ctype.git",
  7123. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7124. },
  7125. "dist": {
  7126. "type": "zip",
  7127. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7128. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7129. "shasum": ""
  7130. },
  7131. "require": {
  7132. "php": ">=7.2"
  7133. },
  7134. "provide": {
  7135. "ext-ctype": "*"
  7136. },
  7137. "suggest": {
  7138. "ext-ctype": "For best performance"
  7139. },
  7140. "type": "library",
  7141. "extra": {
  7142. "thanks": {
  7143. "name": "symfony/polyfill",
  7144. "url": "https://github.com/symfony/polyfill"
  7145. }
  7146. },
  7147. "autoload": {
  7148. "files": [
  7149. "bootstrap.php"
  7150. ],
  7151. "psr-4": {
  7152. "Symfony\\Polyfill\\Ctype\\": ""
  7153. }
  7154. },
  7155. "notification-url": "https://packagist.org/downloads/",
  7156. "license": [
  7157. "MIT"
  7158. ],
  7159. "authors": [
  7160. {
  7161. "name": "Gert de Pagter",
  7162. "email": "BackEndTea@gmail.com"
  7163. },
  7164. {
  7165. "name": "Symfony Community",
  7166. "homepage": "https://symfony.com/contributors"
  7167. }
  7168. ],
  7169. "description": "Symfony polyfill for ctype functions",
  7170. "homepage": "https://symfony.com",
  7171. "keywords": [
  7172. "compatibility",
  7173. "ctype",
  7174. "polyfill",
  7175. "portable"
  7176. ],
  7177. "support": {
  7178. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7179. },
  7180. "funding": [
  7181. {
  7182. "url": "https://symfony.com/sponsor",
  7183. "type": "custom"
  7184. },
  7185. {
  7186. "url": "https://github.com/fabpot",
  7187. "type": "github"
  7188. },
  7189. {
  7190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7191. "type": "tidelift"
  7192. }
  7193. ],
  7194. "time": "2024-09-09T11:45:10+00:00"
  7195. },
  7196. {
  7197. "name": "symfony/polyfill-intl-grapheme",
  7198. "version": "v1.31.0",
  7199. "source": {
  7200. "type": "git",
  7201. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7202. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7203. },
  7204. "dist": {
  7205. "type": "zip",
  7206. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7207. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7208. "shasum": ""
  7209. },
  7210. "require": {
  7211. "php": ">=7.2"
  7212. },
  7213. "suggest": {
  7214. "ext-intl": "For best performance"
  7215. },
  7216. "type": "library",
  7217. "extra": {
  7218. "thanks": {
  7219. "name": "symfony/polyfill",
  7220. "url": "https://github.com/symfony/polyfill"
  7221. }
  7222. },
  7223. "autoload": {
  7224. "files": [
  7225. "bootstrap.php"
  7226. ],
  7227. "psr-4": {
  7228. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7229. }
  7230. },
  7231. "notification-url": "https://packagist.org/downloads/",
  7232. "license": [
  7233. "MIT"
  7234. ],
  7235. "authors": [
  7236. {
  7237. "name": "Nicolas Grekas",
  7238. "email": "p@tchwork.com"
  7239. },
  7240. {
  7241. "name": "Symfony Community",
  7242. "homepage": "https://symfony.com/contributors"
  7243. }
  7244. ],
  7245. "description": "Symfony polyfill for intl's grapheme_* functions",
  7246. "homepage": "https://symfony.com",
  7247. "keywords": [
  7248. "compatibility",
  7249. "grapheme",
  7250. "intl",
  7251. "polyfill",
  7252. "portable",
  7253. "shim"
  7254. ],
  7255. "support": {
  7256. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7257. },
  7258. "funding": [
  7259. {
  7260. "url": "https://symfony.com/sponsor",
  7261. "type": "custom"
  7262. },
  7263. {
  7264. "url": "https://github.com/fabpot",
  7265. "type": "github"
  7266. },
  7267. {
  7268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7269. "type": "tidelift"
  7270. }
  7271. ],
  7272. "time": "2024-09-09T11:45:10+00:00"
  7273. },
  7274. {
  7275. "name": "symfony/polyfill-intl-idn",
  7276. "version": "v1.31.0",
  7277. "source": {
  7278. "type": "git",
  7279. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7280. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7281. },
  7282. "dist": {
  7283. "type": "zip",
  7284. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7285. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7286. "shasum": ""
  7287. },
  7288. "require": {
  7289. "php": ">=7.2",
  7290. "symfony/polyfill-intl-normalizer": "^1.10"
  7291. },
  7292. "suggest": {
  7293. "ext-intl": "For best performance"
  7294. },
  7295. "type": "library",
  7296. "extra": {
  7297. "thanks": {
  7298. "name": "symfony/polyfill",
  7299. "url": "https://github.com/symfony/polyfill"
  7300. }
  7301. },
  7302. "autoload": {
  7303. "files": [
  7304. "bootstrap.php"
  7305. ],
  7306. "psr-4": {
  7307. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7308. }
  7309. },
  7310. "notification-url": "https://packagist.org/downloads/",
  7311. "license": [
  7312. "MIT"
  7313. ],
  7314. "authors": [
  7315. {
  7316. "name": "Laurent Bassin",
  7317. "email": "laurent@bassin.info"
  7318. },
  7319. {
  7320. "name": "Trevor Rowbotham",
  7321. "email": "trevor.rowbotham@pm.me"
  7322. },
  7323. {
  7324. "name": "Symfony Community",
  7325. "homepage": "https://symfony.com/contributors"
  7326. }
  7327. ],
  7328. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7329. "homepage": "https://symfony.com",
  7330. "keywords": [
  7331. "compatibility",
  7332. "idn",
  7333. "intl",
  7334. "polyfill",
  7335. "portable",
  7336. "shim"
  7337. ],
  7338. "support": {
  7339. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7340. },
  7341. "funding": [
  7342. {
  7343. "url": "https://symfony.com/sponsor",
  7344. "type": "custom"
  7345. },
  7346. {
  7347. "url": "https://github.com/fabpot",
  7348. "type": "github"
  7349. },
  7350. {
  7351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7352. "type": "tidelift"
  7353. }
  7354. ],
  7355. "time": "2024-09-09T11:45:10+00:00"
  7356. },
  7357. {
  7358. "name": "symfony/polyfill-intl-normalizer",
  7359. "version": "v1.31.0",
  7360. "source": {
  7361. "type": "git",
  7362. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7363. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7364. },
  7365. "dist": {
  7366. "type": "zip",
  7367. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7368. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7369. "shasum": ""
  7370. },
  7371. "require": {
  7372. "php": ">=7.2"
  7373. },
  7374. "suggest": {
  7375. "ext-intl": "For best performance"
  7376. },
  7377. "type": "library",
  7378. "extra": {
  7379. "thanks": {
  7380. "name": "symfony/polyfill",
  7381. "url": "https://github.com/symfony/polyfill"
  7382. }
  7383. },
  7384. "autoload": {
  7385. "files": [
  7386. "bootstrap.php"
  7387. ],
  7388. "psr-4": {
  7389. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7390. },
  7391. "classmap": [
  7392. "Resources/stubs"
  7393. ]
  7394. },
  7395. "notification-url": "https://packagist.org/downloads/",
  7396. "license": [
  7397. "MIT"
  7398. ],
  7399. "authors": [
  7400. {
  7401. "name": "Nicolas Grekas",
  7402. "email": "p@tchwork.com"
  7403. },
  7404. {
  7405. "name": "Symfony Community",
  7406. "homepage": "https://symfony.com/contributors"
  7407. }
  7408. ],
  7409. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7410. "homepage": "https://symfony.com",
  7411. "keywords": [
  7412. "compatibility",
  7413. "intl",
  7414. "normalizer",
  7415. "polyfill",
  7416. "portable",
  7417. "shim"
  7418. ],
  7419. "support": {
  7420. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7421. },
  7422. "funding": [
  7423. {
  7424. "url": "https://symfony.com/sponsor",
  7425. "type": "custom"
  7426. },
  7427. {
  7428. "url": "https://github.com/fabpot",
  7429. "type": "github"
  7430. },
  7431. {
  7432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7433. "type": "tidelift"
  7434. }
  7435. ],
  7436. "time": "2024-09-09T11:45:10+00:00"
  7437. },
  7438. {
  7439. "name": "symfony/polyfill-mbstring",
  7440. "version": "v1.31.0",
  7441. "source": {
  7442. "type": "git",
  7443. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7444. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7445. },
  7446. "dist": {
  7447. "type": "zip",
  7448. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7449. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7450. "shasum": ""
  7451. },
  7452. "require": {
  7453. "php": ">=7.2"
  7454. },
  7455. "provide": {
  7456. "ext-mbstring": "*"
  7457. },
  7458. "suggest": {
  7459. "ext-mbstring": "For best performance"
  7460. },
  7461. "type": "library",
  7462. "extra": {
  7463. "thanks": {
  7464. "name": "symfony/polyfill",
  7465. "url": "https://github.com/symfony/polyfill"
  7466. }
  7467. },
  7468. "autoload": {
  7469. "files": [
  7470. "bootstrap.php"
  7471. ],
  7472. "psr-4": {
  7473. "Symfony\\Polyfill\\Mbstring\\": ""
  7474. }
  7475. },
  7476. "notification-url": "https://packagist.org/downloads/",
  7477. "license": [
  7478. "MIT"
  7479. ],
  7480. "authors": [
  7481. {
  7482. "name": "Nicolas Grekas",
  7483. "email": "p@tchwork.com"
  7484. },
  7485. {
  7486. "name": "Symfony Community",
  7487. "homepage": "https://symfony.com/contributors"
  7488. }
  7489. ],
  7490. "description": "Symfony polyfill for the Mbstring extension",
  7491. "homepage": "https://symfony.com",
  7492. "keywords": [
  7493. "compatibility",
  7494. "mbstring",
  7495. "polyfill",
  7496. "portable",
  7497. "shim"
  7498. ],
  7499. "support": {
  7500. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7501. },
  7502. "funding": [
  7503. {
  7504. "url": "https://symfony.com/sponsor",
  7505. "type": "custom"
  7506. },
  7507. {
  7508. "url": "https://github.com/fabpot",
  7509. "type": "github"
  7510. },
  7511. {
  7512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7513. "type": "tidelift"
  7514. }
  7515. ],
  7516. "time": "2024-09-09T11:45:10+00:00"
  7517. },
  7518. {
  7519. "name": "symfony/polyfill-php80",
  7520. "version": "v1.31.0",
  7521. "source": {
  7522. "type": "git",
  7523. "url": "https://github.com/symfony/polyfill-php80.git",
  7524. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7525. },
  7526. "dist": {
  7527. "type": "zip",
  7528. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7529. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7530. "shasum": ""
  7531. },
  7532. "require": {
  7533. "php": ">=7.2"
  7534. },
  7535. "type": "library",
  7536. "extra": {
  7537. "thanks": {
  7538. "name": "symfony/polyfill",
  7539. "url": "https://github.com/symfony/polyfill"
  7540. }
  7541. },
  7542. "autoload": {
  7543. "files": [
  7544. "bootstrap.php"
  7545. ],
  7546. "psr-4": {
  7547. "Symfony\\Polyfill\\Php80\\": ""
  7548. },
  7549. "classmap": [
  7550. "Resources/stubs"
  7551. ]
  7552. },
  7553. "notification-url": "https://packagist.org/downloads/",
  7554. "license": [
  7555. "MIT"
  7556. ],
  7557. "authors": [
  7558. {
  7559. "name": "Ion Bazan",
  7560. "email": "ion.bazan@gmail.com"
  7561. },
  7562. {
  7563. "name": "Nicolas Grekas",
  7564. "email": "p@tchwork.com"
  7565. },
  7566. {
  7567. "name": "Symfony Community",
  7568. "homepage": "https://symfony.com/contributors"
  7569. }
  7570. ],
  7571. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7572. "homepage": "https://symfony.com",
  7573. "keywords": [
  7574. "compatibility",
  7575. "polyfill",
  7576. "portable",
  7577. "shim"
  7578. ],
  7579. "support": {
  7580. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2024-09-09T11:45:10+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/service-contracts",
  7600. "version": "v3.5.0",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/service-contracts.git",
  7604. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7609. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "php": ">=8.1",
  7614. "psr/container": "^1.1|^2.0",
  7615. "symfony/deprecation-contracts": "^2.5|^3"
  7616. },
  7617. "conflict": {
  7618. "ext-psr": "<1.1|>=2"
  7619. },
  7620. "type": "library",
  7621. "extra": {
  7622. "branch-alias": {
  7623. "dev-main": "3.5-dev"
  7624. },
  7625. "thanks": {
  7626. "name": "symfony/contracts",
  7627. "url": "https://github.com/symfony/contracts"
  7628. }
  7629. },
  7630. "autoload": {
  7631. "psr-4": {
  7632. "Symfony\\Contracts\\Service\\": ""
  7633. },
  7634. "exclude-from-classmap": [
  7635. "/Test/"
  7636. ]
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "MIT"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "Nicolas Grekas",
  7645. "email": "p@tchwork.com"
  7646. },
  7647. {
  7648. "name": "Symfony Community",
  7649. "homepage": "https://symfony.com/contributors"
  7650. }
  7651. ],
  7652. "description": "Generic abstractions related to writing services",
  7653. "homepage": "https://symfony.com",
  7654. "keywords": [
  7655. "abstractions",
  7656. "contracts",
  7657. "decoupling",
  7658. "interfaces",
  7659. "interoperability",
  7660. "standards"
  7661. ],
  7662. "support": {
  7663. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7664. },
  7665. "funding": [
  7666. {
  7667. "url": "https://symfony.com/sponsor",
  7668. "type": "custom"
  7669. },
  7670. {
  7671. "url": "https://github.com/fabpot",
  7672. "type": "github"
  7673. },
  7674. {
  7675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7676. "type": "tidelift"
  7677. }
  7678. ],
  7679. "time": "2024-04-18T09:32:20+00:00"
  7680. },
  7681. {
  7682. "name": "symfony/string",
  7683. "version": "v6.4.15",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/symfony/string.git",
  7687. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7692. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7693. "shasum": ""
  7694. },
  7695. "require": {
  7696. "php": ">=8.1",
  7697. "symfony/polyfill-ctype": "~1.8",
  7698. "symfony/polyfill-intl-grapheme": "~1.0",
  7699. "symfony/polyfill-intl-normalizer": "~1.0",
  7700. "symfony/polyfill-mbstring": "~1.0"
  7701. },
  7702. "conflict": {
  7703. "symfony/translation-contracts": "<2.5"
  7704. },
  7705. "require-dev": {
  7706. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7707. "symfony/http-client": "^5.4|^6.0|^7.0",
  7708. "symfony/intl": "^6.2|^7.0",
  7709. "symfony/translation-contracts": "^2.5|^3.0",
  7710. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7711. },
  7712. "type": "library",
  7713. "autoload": {
  7714. "files": [
  7715. "Resources/functions.php"
  7716. ],
  7717. "psr-4": {
  7718. "Symfony\\Component\\String\\": ""
  7719. },
  7720. "exclude-from-classmap": [
  7721. "/Tests/"
  7722. ]
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "MIT"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Nicolas Grekas",
  7731. "email": "p@tchwork.com"
  7732. },
  7733. {
  7734. "name": "Symfony Community",
  7735. "homepage": "https://symfony.com/contributors"
  7736. }
  7737. ],
  7738. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7739. "homepage": "https://symfony.com",
  7740. "keywords": [
  7741. "grapheme",
  7742. "i18n",
  7743. "string",
  7744. "unicode",
  7745. "utf-8",
  7746. "utf8"
  7747. ],
  7748. "support": {
  7749. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7750. },
  7751. "funding": [
  7752. {
  7753. "url": "https://symfony.com/sponsor",
  7754. "type": "custom"
  7755. },
  7756. {
  7757. "url": "https://github.com/fabpot",
  7758. "type": "github"
  7759. },
  7760. {
  7761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7762. "type": "tidelift"
  7763. }
  7764. ],
  7765. "time": "2024-11-13T13:31:12+00:00"
  7766. },
  7767. {
  7768. "name": "symfony/translation",
  7769. "version": "v6.4.13",
  7770. "source": {
  7771. "type": "git",
  7772. "url": "https://github.com/symfony/translation.git",
  7773. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7774. },
  7775. "dist": {
  7776. "type": "zip",
  7777. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7778. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7779. "shasum": ""
  7780. },
  7781. "require": {
  7782. "php": ">=8.1",
  7783. "symfony/deprecation-contracts": "^2.5|^3",
  7784. "symfony/polyfill-mbstring": "~1.0",
  7785. "symfony/translation-contracts": "^2.5|^3.0"
  7786. },
  7787. "conflict": {
  7788. "symfony/config": "<5.4",
  7789. "symfony/console": "<5.4",
  7790. "symfony/dependency-injection": "<5.4",
  7791. "symfony/http-client-contracts": "<2.5",
  7792. "symfony/http-kernel": "<5.4",
  7793. "symfony/service-contracts": "<2.5",
  7794. "symfony/twig-bundle": "<5.4",
  7795. "symfony/yaml": "<5.4"
  7796. },
  7797. "provide": {
  7798. "symfony/translation-implementation": "2.3|3.0"
  7799. },
  7800. "require-dev": {
  7801. "nikic/php-parser": "^4.18|^5.0",
  7802. "psr/log": "^1|^2|^3",
  7803. "symfony/config": "^5.4|^6.0|^7.0",
  7804. "symfony/console": "^5.4|^6.0|^7.0",
  7805. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7806. "symfony/finder": "^5.4|^6.0|^7.0",
  7807. "symfony/http-client-contracts": "^2.5|^3.0",
  7808. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7809. "symfony/intl": "^5.4|^6.0|^7.0",
  7810. "symfony/polyfill-intl-icu": "^1.21",
  7811. "symfony/routing": "^5.4|^6.0|^7.0",
  7812. "symfony/service-contracts": "^2.5|^3",
  7813. "symfony/yaml": "^5.4|^6.0|^7.0"
  7814. },
  7815. "type": "library",
  7816. "autoload": {
  7817. "files": [
  7818. "Resources/functions.php"
  7819. ],
  7820. "psr-4": {
  7821. "Symfony\\Component\\Translation\\": ""
  7822. },
  7823. "exclude-from-classmap": [
  7824. "/Tests/"
  7825. ]
  7826. },
  7827. "notification-url": "https://packagist.org/downloads/",
  7828. "license": [
  7829. "MIT"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Fabien Potencier",
  7834. "email": "fabien@symfony.com"
  7835. },
  7836. {
  7837. "name": "Symfony Community",
  7838. "homepage": "https://symfony.com/contributors"
  7839. }
  7840. ],
  7841. "description": "Provides tools to internationalize your application",
  7842. "homepage": "https://symfony.com",
  7843. "support": {
  7844. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7845. },
  7846. "funding": [
  7847. {
  7848. "url": "https://symfony.com/sponsor",
  7849. "type": "custom"
  7850. },
  7851. {
  7852. "url": "https://github.com/fabpot",
  7853. "type": "github"
  7854. },
  7855. {
  7856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7857. "type": "tidelift"
  7858. }
  7859. ],
  7860. "time": "2024-09-27T18:14:25+00:00"
  7861. },
  7862. {
  7863. "name": "symfony/translation-contracts",
  7864. "version": "v3.5.0",
  7865. "source": {
  7866. "type": "git",
  7867. "url": "https://github.com/symfony/translation-contracts.git",
  7868. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7869. },
  7870. "dist": {
  7871. "type": "zip",
  7872. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7873. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7874. "shasum": ""
  7875. },
  7876. "require": {
  7877. "php": ">=8.1"
  7878. },
  7879. "type": "library",
  7880. "extra": {
  7881. "branch-alias": {
  7882. "dev-main": "3.5-dev"
  7883. },
  7884. "thanks": {
  7885. "name": "symfony/contracts",
  7886. "url": "https://github.com/symfony/contracts"
  7887. }
  7888. },
  7889. "autoload": {
  7890. "psr-4": {
  7891. "Symfony\\Contracts\\Translation\\": ""
  7892. },
  7893. "exclude-from-classmap": [
  7894. "/Test/"
  7895. ]
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Nicolas Grekas",
  7904. "email": "p@tchwork.com"
  7905. },
  7906. {
  7907. "name": "Symfony Community",
  7908. "homepage": "https://symfony.com/contributors"
  7909. }
  7910. ],
  7911. "description": "Generic abstractions related to translation",
  7912. "homepage": "https://symfony.com",
  7913. "keywords": [
  7914. "abstractions",
  7915. "contracts",
  7916. "decoupling",
  7917. "interfaces",
  7918. "interoperability",
  7919. "standards"
  7920. ],
  7921. "support": {
  7922. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7923. },
  7924. "funding": [
  7925. {
  7926. "url": "https://symfony.com/sponsor",
  7927. "type": "custom"
  7928. },
  7929. {
  7930. "url": "https://github.com/fabpot",
  7931. "type": "github"
  7932. },
  7933. {
  7934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7935. "type": "tidelift"
  7936. }
  7937. ],
  7938. "time": "2024-04-18T09:32:20+00:00"
  7939. },
  7940. {
  7941. "name": "vlucas/phpdotenv",
  7942. "version": "v5.6.1",
  7943. "source": {
  7944. "type": "git",
  7945. "url": "https://github.com/vlucas/phpdotenv.git",
  7946. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7947. },
  7948. "dist": {
  7949. "type": "zip",
  7950. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7951. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7952. "shasum": ""
  7953. },
  7954. "require": {
  7955. "ext-pcre": "*",
  7956. "graham-campbell/result-type": "^1.1.3",
  7957. "php": "^7.2.5 || ^8.0",
  7958. "phpoption/phpoption": "^1.9.3",
  7959. "symfony/polyfill-ctype": "^1.24",
  7960. "symfony/polyfill-mbstring": "^1.24",
  7961. "symfony/polyfill-php80": "^1.24"
  7962. },
  7963. "require-dev": {
  7964. "bamarni/composer-bin-plugin": "^1.8.2",
  7965. "ext-filter": "*",
  7966. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7967. },
  7968. "suggest": {
  7969. "ext-filter": "Required to use the boolean validator."
  7970. },
  7971. "type": "library",
  7972. "extra": {
  7973. "bamarni-bin": {
  7974. "bin-links": true,
  7975. "forward-command": false
  7976. },
  7977. "branch-alias": {
  7978. "dev-master": "5.6-dev"
  7979. }
  7980. },
  7981. "autoload": {
  7982. "psr-4": {
  7983. "Dotenv\\": "src/"
  7984. }
  7985. },
  7986. "notification-url": "https://packagist.org/downloads/",
  7987. "license": [
  7988. "BSD-3-Clause"
  7989. ],
  7990. "authors": [
  7991. {
  7992. "name": "Graham Campbell",
  7993. "email": "hello@gjcampbell.co.uk",
  7994. "homepage": "https://github.com/GrahamCampbell"
  7995. },
  7996. {
  7997. "name": "Vance Lucas",
  7998. "email": "vance@vancelucas.com",
  7999. "homepage": "https://github.com/vlucas"
  8000. }
  8001. ],
  8002. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8003. "keywords": [
  8004. "dotenv",
  8005. "env",
  8006. "environment"
  8007. ],
  8008. "support": {
  8009. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8010. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8011. },
  8012. "funding": [
  8013. {
  8014. "url": "https://github.com/GrahamCampbell",
  8015. "type": "github"
  8016. },
  8017. {
  8018. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8019. "type": "tidelift"
  8020. }
  8021. ],
  8022. "time": "2024-07-20T21:52:34+00:00"
  8023. }
  8024. ],
  8025. "packages-dev": [
  8026. {
  8027. "name": "clue/ndjson-react",
  8028. "version": "v1.3.0",
  8029. "source": {
  8030. "type": "git",
  8031. "url": "https://github.com/clue/reactphp-ndjson.git",
  8032. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8033. },
  8034. "dist": {
  8035. "type": "zip",
  8036. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8037. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8038. "shasum": ""
  8039. },
  8040. "require": {
  8041. "php": ">=5.3",
  8042. "react/stream": "^1.2"
  8043. },
  8044. "require-dev": {
  8045. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8046. "react/event-loop": "^1.2"
  8047. },
  8048. "type": "library",
  8049. "autoload": {
  8050. "psr-4": {
  8051. "Clue\\React\\NDJson\\": "src/"
  8052. }
  8053. },
  8054. "notification-url": "https://packagist.org/downloads/",
  8055. "license": [
  8056. "MIT"
  8057. ],
  8058. "authors": [
  8059. {
  8060. "name": "Christian Lück",
  8061. "email": "christian@clue.engineering"
  8062. }
  8063. ],
  8064. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8065. "homepage": "https://github.com/clue/reactphp-ndjson",
  8066. "keywords": [
  8067. "NDJSON",
  8068. "json",
  8069. "jsonlines",
  8070. "newline",
  8071. "reactphp",
  8072. "streaming"
  8073. ],
  8074. "support": {
  8075. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8076. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8077. },
  8078. "funding": [
  8079. {
  8080. "url": "https://clue.engineering/support",
  8081. "type": "custom"
  8082. },
  8083. {
  8084. "url": "https://github.com/clue",
  8085. "type": "github"
  8086. }
  8087. ],
  8088. "time": "2022-12-23T10:58:28+00:00"
  8089. },
  8090. {
  8091. "name": "composer/pcre",
  8092. "version": "3.3.2",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/composer/pcre.git",
  8096. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8101. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "php": "^7.4 || ^8.0"
  8106. },
  8107. "conflict": {
  8108. "phpstan/phpstan": "<1.11.10"
  8109. },
  8110. "require-dev": {
  8111. "phpstan/phpstan": "^1.12 || ^2",
  8112. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8113. "phpunit/phpunit": "^8 || ^9"
  8114. },
  8115. "type": "library",
  8116. "extra": {
  8117. "branch-alias": {
  8118. "dev-main": "3.x-dev"
  8119. },
  8120. "phpstan": {
  8121. "includes": [
  8122. "extension.neon"
  8123. ]
  8124. }
  8125. },
  8126. "autoload": {
  8127. "psr-4": {
  8128. "Composer\\Pcre\\": "src"
  8129. }
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "MIT"
  8134. ],
  8135. "authors": [
  8136. {
  8137. "name": "Jordi Boggiano",
  8138. "email": "j.boggiano@seld.be",
  8139. "homepage": "http://seld.be"
  8140. }
  8141. ],
  8142. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8143. "keywords": [
  8144. "PCRE",
  8145. "preg",
  8146. "regex",
  8147. "regular expression"
  8148. ],
  8149. "support": {
  8150. "issues": "https://github.com/composer/pcre/issues",
  8151. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8152. },
  8153. "funding": [
  8154. {
  8155. "url": "https://packagist.com",
  8156. "type": "custom"
  8157. },
  8158. {
  8159. "url": "https://github.com/composer",
  8160. "type": "github"
  8161. },
  8162. {
  8163. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8164. "type": "tidelift"
  8165. }
  8166. ],
  8167. "time": "2024-11-12T16:29:46+00:00"
  8168. },
  8169. {
  8170. "name": "composer/semver",
  8171. "version": "3.4.3",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/composer/semver.git",
  8175. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8180. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8181. "shasum": ""
  8182. },
  8183. "require": {
  8184. "php": "^5.3.2 || ^7.0 || ^8.0"
  8185. },
  8186. "require-dev": {
  8187. "phpstan/phpstan": "^1.11",
  8188. "symfony/phpunit-bridge": "^3 || ^7"
  8189. },
  8190. "type": "library",
  8191. "extra": {
  8192. "branch-alias": {
  8193. "dev-main": "3.x-dev"
  8194. }
  8195. },
  8196. "autoload": {
  8197. "psr-4": {
  8198. "Composer\\Semver\\": "src"
  8199. }
  8200. },
  8201. "notification-url": "https://packagist.org/downloads/",
  8202. "license": [
  8203. "MIT"
  8204. ],
  8205. "authors": [
  8206. {
  8207. "name": "Nils Adermann",
  8208. "email": "naderman@naderman.de",
  8209. "homepage": "http://www.naderman.de"
  8210. },
  8211. {
  8212. "name": "Jordi Boggiano",
  8213. "email": "j.boggiano@seld.be",
  8214. "homepage": "http://seld.be"
  8215. },
  8216. {
  8217. "name": "Rob Bast",
  8218. "email": "rob.bast@gmail.com",
  8219. "homepage": "http://robbast.nl"
  8220. }
  8221. ],
  8222. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8223. "keywords": [
  8224. "semantic",
  8225. "semver",
  8226. "validation",
  8227. "versioning"
  8228. ],
  8229. "support": {
  8230. "irc": "ircs://irc.libera.chat:6697/composer",
  8231. "issues": "https://github.com/composer/semver/issues",
  8232. "source": "https://github.com/composer/semver/tree/3.4.3"
  8233. },
  8234. "funding": [
  8235. {
  8236. "url": "https://packagist.com",
  8237. "type": "custom"
  8238. },
  8239. {
  8240. "url": "https://github.com/composer",
  8241. "type": "github"
  8242. },
  8243. {
  8244. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8245. "type": "tidelift"
  8246. }
  8247. ],
  8248. "time": "2024-09-19T14:15:21+00:00"
  8249. },
  8250. {
  8251. "name": "composer/xdebug-handler",
  8252. "version": "3.0.5",
  8253. "source": {
  8254. "type": "git",
  8255. "url": "https://github.com/composer/xdebug-handler.git",
  8256. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8257. },
  8258. "dist": {
  8259. "type": "zip",
  8260. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8261. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8262. "shasum": ""
  8263. },
  8264. "require": {
  8265. "composer/pcre": "^1 || ^2 || ^3",
  8266. "php": "^7.2.5 || ^8.0",
  8267. "psr/log": "^1 || ^2 || ^3"
  8268. },
  8269. "require-dev": {
  8270. "phpstan/phpstan": "^1.0",
  8271. "phpstan/phpstan-strict-rules": "^1.1",
  8272. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8273. },
  8274. "type": "library",
  8275. "autoload": {
  8276. "psr-4": {
  8277. "Composer\\XdebugHandler\\": "src"
  8278. }
  8279. },
  8280. "notification-url": "https://packagist.org/downloads/",
  8281. "license": [
  8282. "MIT"
  8283. ],
  8284. "authors": [
  8285. {
  8286. "name": "John Stevenson",
  8287. "email": "john-stevenson@blueyonder.co.uk"
  8288. }
  8289. ],
  8290. "description": "Restarts a process without Xdebug.",
  8291. "keywords": [
  8292. "Xdebug",
  8293. "performance"
  8294. ],
  8295. "support": {
  8296. "irc": "ircs://irc.libera.chat:6697/composer",
  8297. "issues": "https://github.com/composer/xdebug-handler/issues",
  8298. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8299. },
  8300. "funding": [
  8301. {
  8302. "url": "https://packagist.com",
  8303. "type": "custom"
  8304. },
  8305. {
  8306. "url": "https://github.com/composer",
  8307. "type": "github"
  8308. },
  8309. {
  8310. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8311. "type": "tidelift"
  8312. }
  8313. ],
  8314. "time": "2024-05-06T16:37:16+00:00"
  8315. },
  8316. {
  8317. "name": "evenement/evenement",
  8318. "version": "v3.0.2",
  8319. "source": {
  8320. "type": "git",
  8321. "url": "https://github.com/igorw/evenement.git",
  8322. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8323. },
  8324. "dist": {
  8325. "type": "zip",
  8326. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8327. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8328. "shasum": ""
  8329. },
  8330. "require": {
  8331. "php": ">=7.0"
  8332. },
  8333. "require-dev": {
  8334. "phpunit/phpunit": "^9 || ^6"
  8335. },
  8336. "type": "library",
  8337. "autoload": {
  8338. "psr-4": {
  8339. "Evenement\\": "src/"
  8340. }
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "MIT"
  8345. ],
  8346. "authors": [
  8347. {
  8348. "name": "Igor Wiedler",
  8349. "email": "igor@wiedler.ch"
  8350. }
  8351. ],
  8352. "description": "Événement is a very simple event dispatching library for PHP",
  8353. "keywords": [
  8354. "event-dispatcher",
  8355. "event-emitter"
  8356. ],
  8357. "support": {
  8358. "issues": "https://github.com/igorw/evenement/issues",
  8359. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8360. },
  8361. "time": "2023-08-08T05:53:35+00:00"
  8362. },
  8363. {
  8364. "name": "fidry/cpu-core-counter",
  8365. "version": "1.2.0",
  8366. "source": {
  8367. "type": "git",
  8368. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8369. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8370. },
  8371. "dist": {
  8372. "type": "zip",
  8373. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8374. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8375. "shasum": ""
  8376. },
  8377. "require": {
  8378. "php": "^7.2 || ^8.0"
  8379. },
  8380. "require-dev": {
  8381. "fidry/makefile": "^0.2.0",
  8382. "fidry/php-cs-fixer-config": "^1.1.2",
  8383. "phpstan/extension-installer": "^1.2.0",
  8384. "phpstan/phpstan": "^1.9.2",
  8385. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8386. "phpstan/phpstan-phpunit": "^1.2.2",
  8387. "phpstan/phpstan-strict-rules": "^1.4.4",
  8388. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8389. "webmozarts/strict-phpunit": "^7.5"
  8390. },
  8391. "type": "library",
  8392. "autoload": {
  8393. "psr-4": {
  8394. "Fidry\\CpuCoreCounter\\": "src/"
  8395. }
  8396. },
  8397. "notification-url": "https://packagist.org/downloads/",
  8398. "license": [
  8399. "MIT"
  8400. ],
  8401. "authors": [
  8402. {
  8403. "name": "Théo FIDRY",
  8404. "email": "theo.fidry@gmail.com"
  8405. }
  8406. ],
  8407. "description": "Tiny utility to get the number of CPU cores.",
  8408. "keywords": [
  8409. "CPU",
  8410. "core"
  8411. ],
  8412. "support": {
  8413. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8414. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8415. },
  8416. "funding": [
  8417. {
  8418. "url": "https://github.com/theofidry",
  8419. "type": "github"
  8420. }
  8421. ],
  8422. "time": "2024-08-06T10:04:20+00:00"
  8423. },
  8424. {
  8425. "name": "friendsofphp/php-cs-fixer",
  8426. "version": "v3.64.0",
  8427. "source": {
  8428. "type": "git",
  8429. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8430. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8431. },
  8432. "dist": {
  8433. "type": "zip",
  8434. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8435. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8436. "shasum": ""
  8437. },
  8438. "require": {
  8439. "clue/ndjson-react": "^1.0",
  8440. "composer/semver": "^3.4",
  8441. "composer/xdebug-handler": "^3.0.3",
  8442. "ext-filter": "*",
  8443. "ext-json": "*",
  8444. "ext-tokenizer": "*",
  8445. "fidry/cpu-core-counter": "^1.0",
  8446. "php": "^7.4 || ^8.0",
  8447. "react/child-process": "^0.6.5",
  8448. "react/event-loop": "^1.0",
  8449. "react/promise": "^2.0 || ^3.0",
  8450. "react/socket": "^1.0",
  8451. "react/stream": "^1.0",
  8452. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8453. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8454. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8455. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8456. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8457. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8458. "symfony/polyfill-mbstring": "^1.28",
  8459. "symfony/polyfill-php80": "^1.28",
  8460. "symfony/polyfill-php81": "^1.28",
  8461. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8462. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8463. },
  8464. "require-dev": {
  8465. "facile-it/paraunit": "^1.3 || ^2.3",
  8466. "infection/infection": "^0.29.5",
  8467. "justinrainbow/json-schema": "^5.2",
  8468. "keradus/cli-executor": "^2.1",
  8469. "mikey179/vfsstream": "^1.6.11",
  8470. "php-coveralls/php-coveralls": "^2.7",
  8471. "php-cs-fixer/accessible-object": "^1.1",
  8472. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8473. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8474. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8475. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8476. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8477. },
  8478. "suggest": {
  8479. "ext-dom": "For handling output formats in XML",
  8480. "ext-mbstring": "For handling non-UTF8 characters."
  8481. },
  8482. "bin": [
  8483. "php-cs-fixer"
  8484. ],
  8485. "type": "application",
  8486. "autoload": {
  8487. "psr-4": {
  8488. "PhpCsFixer\\": "src/"
  8489. },
  8490. "exclude-from-classmap": [
  8491. "src/Fixer/Internal/*"
  8492. ]
  8493. },
  8494. "notification-url": "https://packagist.org/downloads/",
  8495. "license": [
  8496. "MIT"
  8497. ],
  8498. "authors": [
  8499. {
  8500. "name": "Fabien Potencier",
  8501. "email": "fabien@symfony.com"
  8502. },
  8503. {
  8504. "name": "Dariusz Rumiński",
  8505. "email": "dariusz.ruminski@gmail.com"
  8506. }
  8507. ],
  8508. "description": "A tool to automatically fix PHP code style",
  8509. "keywords": [
  8510. "Static code analysis",
  8511. "fixer",
  8512. "standards",
  8513. "static analysis"
  8514. ],
  8515. "support": {
  8516. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8517. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8518. },
  8519. "funding": [
  8520. {
  8521. "url": "https://github.com/keradus",
  8522. "type": "github"
  8523. }
  8524. ],
  8525. "time": "2024-08-30T23:09:38+00:00"
  8526. },
  8527. {
  8528. "name": "hamcrest/hamcrest-php",
  8529. "version": "v2.0.1",
  8530. "source": {
  8531. "type": "git",
  8532. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8533. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8534. },
  8535. "dist": {
  8536. "type": "zip",
  8537. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8538. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8539. "shasum": ""
  8540. },
  8541. "require": {
  8542. "php": "^5.3|^7.0|^8.0"
  8543. },
  8544. "replace": {
  8545. "cordoval/hamcrest-php": "*",
  8546. "davedevelopment/hamcrest-php": "*",
  8547. "kodova/hamcrest-php": "*"
  8548. },
  8549. "require-dev": {
  8550. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8551. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8552. },
  8553. "type": "library",
  8554. "extra": {
  8555. "branch-alias": {
  8556. "dev-master": "2.1-dev"
  8557. }
  8558. },
  8559. "autoload": {
  8560. "classmap": [
  8561. "hamcrest"
  8562. ]
  8563. },
  8564. "notification-url": "https://packagist.org/downloads/",
  8565. "license": [
  8566. "BSD-3-Clause"
  8567. ],
  8568. "description": "This is the PHP port of Hamcrest Matchers",
  8569. "keywords": [
  8570. "test"
  8571. ],
  8572. "support": {
  8573. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8574. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8575. },
  8576. "time": "2020-07-09T08:09:16+00:00"
  8577. },
  8578. {
  8579. "name": "hyperf/devtool",
  8580. "version": "v3.1.42",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/hyperf/devtool.git",
  8584. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8589. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8590. "shasum": ""
  8591. },
  8592. "require": {
  8593. "hyperf/code-parser": "~3.1.0",
  8594. "hyperf/command": "~3.1.0",
  8595. "hyperf/contract": "~3.1.0",
  8596. "hyperf/di": "~3.1.0",
  8597. "hyperf/support": "~3.1.0",
  8598. "hyperf/utils": "~3.1.0",
  8599. "php": ">=8.1"
  8600. },
  8601. "type": "library",
  8602. "extra": {
  8603. "branch-alias": {
  8604. "dev-master": "3.1-dev"
  8605. },
  8606. "hyperf": {
  8607. "config": "Hyperf\\Devtool\\ConfigProvider"
  8608. }
  8609. },
  8610. "autoload": {
  8611. "psr-4": {
  8612. "Hyperf\\Devtool\\": "src/"
  8613. }
  8614. },
  8615. "notification-url": "https://packagist.org/downloads/",
  8616. "license": [
  8617. "MIT"
  8618. ],
  8619. "description": "A Devtool for Hyperf.",
  8620. "homepage": "https://hyperf.io",
  8621. "keywords": [
  8622. "dev",
  8623. "devtool",
  8624. "hyperf",
  8625. "php",
  8626. "swoole"
  8627. ],
  8628. "support": {
  8629. "docs": "https://hyperf.wiki",
  8630. "issues": "https://github.com/hyperf/hyperf/issues",
  8631. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8632. "source": "https://github.com/hyperf/hyperf"
  8633. },
  8634. "funding": [
  8635. {
  8636. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8637. "type": "custom"
  8638. },
  8639. {
  8640. "url": "https://opencollective.com/hyperf",
  8641. "type": "open_collective"
  8642. }
  8643. ],
  8644. "time": "2024-09-25T02:54:12+00:00"
  8645. },
  8646. {
  8647. "name": "hyperf/testing",
  8648. "version": "v3.1.44",
  8649. "source": {
  8650. "type": "git",
  8651. "url": "https://github.com/hyperf/testing.git",
  8652. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  8653. },
  8654. "dist": {
  8655. "type": "zip",
  8656. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8657. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8658. "shasum": ""
  8659. },
  8660. "require": {
  8661. "hyperf/codec": "~3.1.0",
  8662. "hyperf/collection": "~3.1.0",
  8663. "hyperf/contract": "~3.1.0",
  8664. "hyperf/coroutine": "~3.1.0",
  8665. "hyperf/http-message": "~3.1.0",
  8666. "hyperf/http-server": "~3.1.0",
  8667. "hyperf/support": "~3.1.0",
  8668. "hyperf/utils": "~3.1.0",
  8669. "php": ">=8.1",
  8670. "phpunit/phpunit": "^10.0",
  8671. "psr/container": "^1.0 || ^2.0",
  8672. "symfony/http-foundation": "^5.4 || ^6.0"
  8673. },
  8674. "suggest": {
  8675. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8676. },
  8677. "bin": [
  8678. "co-phpunit"
  8679. ],
  8680. "type": "library",
  8681. "extra": {
  8682. "branch-alias": {
  8683. "dev-master": "3.1-dev"
  8684. }
  8685. },
  8686. "autoload": {
  8687. "psr-4": {
  8688. "Hyperf\\Testing\\": "src/"
  8689. }
  8690. },
  8691. "notification-url": "https://packagist.org/downloads/",
  8692. "license": [
  8693. "MIT"
  8694. ],
  8695. "description": "Testing for hyperf",
  8696. "keywords": [
  8697. "dev",
  8698. "php",
  8699. "swoole",
  8700. "testing"
  8701. ],
  8702. "support": {
  8703. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  8704. },
  8705. "funding": [
  8706. {
  8707. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8708. "type": "custom"
  8709. },
  8710. {
  8711. "url": "https://opencollective.com/hyperf",
  8712. "type": "open_collective"
  8713. }
  8714. ],
  8715. "time": "2024-10-23T10:24:12+00:00"
  8716. },
  8717. {
  8718. "name": "hyperf/watcher",
  8719. "version": "v3.1.43",
  8720. "source": {
  8721. "type": "git",
  8722. "url": "https://github.com/hyperf/watcher.git",
  8723. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8724. },
  8725. "dist": {
  8726. "type": "zip",
  8727. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8728. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8729. "shasum": ""
  8730. },
  8731. "require": {
  8732. "ext-posix": "*",
  8733. "hyperf/codec": "~3.1.0",
  8734. "hyperf/command": "~3.1.0",
  8735. "hyperf/di": "~3.1.0",
  8736. "hyperf/framework": "~3.1.0",
  8737. "hyperf/support": "~3.1.0",
  8738. "php": ">=8.1"
  8739. },
  8740. "type": "library",
  8741. "extra": {
  8742. "branch-alias": {
  8743. "dev-master": "3.1-dev"
  8744. },
  8745. "hyperf": {
  8746. "config": "Hyperf\\Watcher\\ConfigProvider"
  8747. }
  8748. },
  8749. "autoload": {
  8750. "files": [
  8751. "src/Functions.php"
  8752. ],
  8753. "psr-4": {
  8754. "Hyperf\\Watcher\\": "src/"
  8755. }
  8756. },
  8757. "notification-url": "https://packagist.org/downloads/",
  8758. "license": [
  8759. "MIT"
  8760. ],
  8761. "description": "Hot reload watcher for Hyperf",
  8762. "keywords": [
  8763. "dev",
  8764. "hyperf",
  8765. "php"
  8766. ],
  8767. "support": {
  8768. "issues": "https://github.com/hyperf/watcher/issues",
  8769. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8770. },
  8771. "funding": [
  8772. {
  8773. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8774. "type": "custom"
  8775. },
  8776. {
  8777. "url": "https://opencollective.com/hyperf",
  8778. "type": "open_collective"
  8779. }
  8780. ],
  8781. "time": "2024-10-06T12:33:12+00:00"
  8782. },
  8783. {
  8784. "name": "mockery/mockery",
  8785. "version": "1.6.12",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/mockery/mockery.git",
  8789. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8794. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "hamcrest/hamcrest-php": "^2.0.1",
  8799. "lib-pcre": ">=7.0",
  8800. "php": ">=7.3"
  8801. },
  8802. "conflict": {
  8803. "phpunit/phpunit": "<8.0"
  8804. },
  8805. "require-dev": {
  8806. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8807. "symplify/easy-coding-standard": "^12.1.14"
  8808. },
  8809. "type": "library",
  8810. "autoload": {
  8811. "files": [
  8812. "library/helpers.php",
  8813. "library/Mockery.php"
  8814. ],
  8815. "psr-4": {
  8816. "Mockery\\": "library/Mockery"
  8817. }
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "BSD-3-Clause"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Pádraic Brady",
  8826. "email": "padraic.brady@gmail.com",
  8827. "homepage": "https://github.com/padraic",
  8828. "role": "Author"
  8829. },
  8830. {
  8831. "name": "Dave Marshall",
  8832. "email": "dave.marshall@atstsolutions.co.uk",
  8833. "homepage": "https://davedevelopment.co.uk",
  8834. "role": "Developer"
  8835. },
  8836. {
  8837. "name": "Nathanael Esayeas",
  8838. "email": "nathanael.esayeas@protonmail.com",
  8839. "homepage": "https://github.com/ghostwriter",
  8840. "role": "Lead Developer"
  8841. }
  8842. ],
  8843. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8844. "homepage": "https://github.com/mockery/mockery",
  8845. "keywords": [
  8846. "BDD",
  8847. "TDD",
  8848. "library",
  8849. "mock",
  8850. "mock objects",
  8851. "mockery",
  8852. "stub",
  8853. "test",
  8854. "test double",
  8855. "testing"
  8856. ],
  8857. "support": {
  8858. "docs": "https://docs.mockery.io/",
  8859. "issues": "https://github.com/mockery/mockery/issues",
  8860. "rss": "https://github.com/mockery/mockery/releases.atom",
  8861. "security": "https://github.com/mockery/mockery/security/advisories",
  8862. "source": "https://github.com/mockery/mockery"
  8863. },
  8864. "time": "2024-05-16T03:13:13+00:00"
  8865. },
  8866. {
  8867. "name": "myclabs/deep-copy",
  8868. "version": "1.12.1",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/myclabs/DeepCopy.git",
  8872. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8877. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8878. "shasum": ""
  8879. },
  8880. "require": {
  8881. "php": "^7.1 || ^8.0"
  8882. },
  8883. "conflict": {
  8884. "doctrine/collections": "<1.6.8",
  8885. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8886. },
  8887. "require-dev": {
  8888. "doctrine/collections": "^1.6.8",
  8889. "doctrine/common": "^2.13.3 || ^3.2.2",
  8890. "phpspec/prophecy": "^1.10",
  8891. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8892. },
  8893. "type": "library",
  8894. "autoload": {
  8895. "files": [
  8896. "src/DeepCopy/deep_copy.php"
  8897. ],
  8898. "psr-4": {
  8899. "DeepCopy\\": "src/DeepCopy/"
  8900. }
  8901. },
  8902. "notification-url": "https://packagist.org/downloads/",
  8903. "license": [
  8904. "MIT"
  8905. ],
  8906. "description": "Create deep copies (clones) of your objects",
  8907. "keywords": [
  8908. "clone",
  8909. "copy",
  8910. "duplicate",
  8911. "object",
  8912. "object graph"
  8913. ],
  8914. "support": {
  8915. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8916. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8917. },
  8918. "funding": [
  8919. {
  8920. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8921. "type": "tidelift"
  8922. }
  8923. ],
  8924. "time": "2024-11-08T17:47:46+00:00"
  8925. },
  8926. {
  8927. "name": "phar-io/manifest",
  8928. "version": "2.0.4",
  8929. "source": {
  8930. "type": "git",
  8931. "url": "https://github.com/phar-io/manifest.git",
  8932. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8933. },
  8934. "dist": {
  8935. "type": "zip",
  8936. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8937. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8938. "shasum": ""
  8939. },
  8940. "require": {
  8941. "ext-dom": "*",
  8942. "ext-libxml": "*",
  8943. "ext-phar": "*",
  8944. "ext-xmlwriter": "*",
  8945. "phar-io/version": "^3.0.1",
  8946. "php": "^7.2 || ^8.0"
  8947. },
  8948. "type": "library",
  8949. "extra": {
  8950. "branch-alias": {
  8951. "dev-master": "2.0.x-dev"
  8952. }
  8953. },
  8954. "autoload": {
  8955. "classmap": [
  8956. "src/"
  8957. ]
  8958. },
  8959. "notification-url": "https://packagist.org/downloads/",
  8960. "license": [
  8961. "BSD-3-Clause"
  8962. ],
  8963. "authors": [
  8964. {
  8965. "name": "Arne Blankerts",
  8966. "email": "arne@blankerts.de",
  8967. "role": "Developer"
  8968. },
  8969. {
  8970. "name": "Sebastian Heuer",
  8971. "email": "sebastian@phpeople.de",
  8972. "role": "Developer"
  8973. },
  8974. {
  8975. "name": "Sebastian Bergmann",
  8976. "email": "sebastian@phpunit.de",
  8977. "role": "Developer"
  8978. }
  8979. ],
  8980. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8981. "support": {
  8982. "issues": "https://github.com/phar-io/manifest/issues",
  8983. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8984. },
  8985. "funding": [
  8986. {
  8987. "url": "https://github.com/theseer",
  8988. "type": "github"
  8989. }
  8990. ],
  8991. "time": "2024-03-03T12:33:53+00:00"
  8992. },
  8993. {
  8994. "name": "phar-io/version",
  8995. "version": "3.2.1",
  8996. "source": {
  8997. "type": "git",
  8998. "url": "https://github.com/phar-io/version.git",
  8999. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9000. },
  9001. "dist": {
  9002. "type": "zip",
  9003. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9004. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9005. "shasum": ""
  9006. },
  9007. "require": {
  9008. "php": "^7.2 || ^8.0"
  9009. },
  9010. "type": "library",
  9011. "autoload": {
  9012. "classmap": [
  9013. "src/"
  9014. ]
  9015. },
  9016. "notification-url": "https://packagist.org/downloads/",
  9017. "license": [
  9018. "BSD-3-Clause"
  9019. ],
  9020. "authors": [
  9021. {
  9022. "name": "Arne Blankerts",
  9023. "email": "arne@blankerts.de",
  9024. "role": "Developer"
  9025. },
  9026. {
  9027. "name": "Sebastian Heuer",
  9028. "email": "sebastian@phpeople.de",
  9029. "role": "Developer"
  9030. },
  9031. {
  9032. "name": "Sebastian Bergmann",
  9033. "email": "sebastian@phpunit.de",
  9034. "role": "Developer"
  9035. }
  9036. ],
  9037. "description": "Library for handling version information and constraints",
  9038. "support": {
  9039. "issues": "https://github.com/phar-io/version/issues",
  9040. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9041. },
  9042. "time": "2022-02-21T01:04:05+00:00"
  9043. },
  9044. {
  9045. "name": "phpstan/phpstan",
  9046. "version": "1.12.11",
  9047. "source": {
  9048. "type": "git",
  9049. "url": "https://github.com/phpstan/phpstan.git",
  9050. "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733"
  9051. },
  9052. "dist": {
  9053. "type": "zip",
  9054. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733",
  9055. "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733",
  9056. "shasum": ""
  9057. },
  9058. "require": {
  9059. "php": "^7.2|^8.0"
  9060. },
  9061. "conflict": {
  9062. "phpstan/phpstan-shim": "*"
  9063. },
  9064. "bin": [
  9065. "phpstan",
  9066. "phpstan.phar"
  9067. ],
  9068. "type": "library",
  9069. "autoload": {
  9070. "files": [
  9071. "bootstrap.php"
  9072. ]
  9073. },
  9074. "notification-url": "https://packagist.org/downloads/",
  9075. "license": [
  9076. "MIT"
  9077. ],
  9078. "description": "PHPStan - PHP Static Analysis Tool",
  9079. "keywords": [
  9080. "dev",
  9081. "static analysis"
  9082. ],
  9083. "support": {
  9084. "docs": "https://phpstan.org/user-guide/getting-started",
  9085. "forum": "https://github.com/phpstan/phpstan/discussions",
  9086. "issues": "https://github.com/phpstan/phpstan/issues",
  9087. "security": "https://github.com/phpstan/phpstan/security/policy",
  9088. "source": "https://github.com/phpstan/phpstan-src"
  9089. },
  9090. "funding": [
  9091. {
  9092. "url": "https://github.com/ondrejmirtes",
  9093. "type": "github"
  9094. },
  9095. {
  9096. "url": "https://github.com/phpstan",
  9097. "type": "github"
  9098. }
  9099. ],
  9100. "time": "2024-11-17T14:08:01+00:00"
  9101. },
  9102. {
  9103. "name": "phpunit/php-code-coverage",
  9104. "version": "10.1.16",
  9105. "source": {
  9106. "type": "git",
  9107. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9108. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9109. },
  9110. "dist": {
  9111. "type": "zip",
  9112. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9113. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9114. "shasum": ""
  9115. },
  9116. "require": {
  9117. "ext-dom": "*",
  9118. "ext-libxml": "*",
  9119. "ext-xmlwriter": "*",
  9120. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9121. "php": ">=8.1",
  9122. "phpunit/php-file-iterator": "^4.1.0",
  9123. "phpunit/php-text-template": "^3.0.1",
  9124. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9125. "sebastian/complexity": "^3.2.0",
  9126. "sebastian/environment": "^6.1.0",
  9127. "sebastian/lines-of-code": "^2.0.2",
  9128. "sebastian/version": "^4.0.1",
  9129. "theseer/tokenizer": "^1.2.3"
  9130. },
  9131. "require-dev": {
  9132. "phpunit/phpunit": "^10.1"
  9133. },
  9134. "suggest": {
  9135. "ext-pcov": "PHP extension that provides line coverage",
  9136. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9137. },
  9138. "type": "library",
  9139. "extra": {
  9140. "branch-alias": {
  9141. "dev-main": "10.1.x-dev"
  9142. }
  9143. },
  9144. "autoload": {
  9145. "classmap": [
  9146. "src/"
  9147. ]
  9148. },
  9149. "notification-url": "https://packagist.org/downloads/",
  9150. "license": [
  9151. "BSD-3-Clause"
  9152. ],
  9153. "authors": [
  9154. {
  9155. "name": "Sebastian Bergmann",
  9156. "email": "sebastian@phpunit.de",
  9157. "role": "lead"
  9158. }
  9159. ],
  9160. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9161. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9162. "keywords": [
  9163. "coverage",
  9164. "testing",
  9165. "xunit"
  9166. ],
  9167. "support": {
  9168. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9169. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9170. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9171. },
  9172. "funding": [
  9173. {
  9174. "url": "https://github.com/sebastianbergmann",
  9175. "type": "github"
  9176. }
  9177. ],
  9178. "time": "2024-08-22T04:31:57+00:00"
  9179. },
  9180. {
  9181. "name": "phpunit/php-file-iterator",
  9182. "version": "4.1.0",
  9183. "source": {
  9184. "type": "git",
  9185. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9186. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9187. },
  9188. "dist": {
  9189. "type": "zip",
  9190. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9191. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9192. "shasum": ""
  9193. },
  9194. "require": {
  9195. "php": ">=8.1"
  9196. },
  9197. "require-dev": {
  9198. "phpunit/phpunit": "^10.0"
  9199. },
  9200. "type": "library",
  9201. "extra": {
  9202. "branch-alias": {
  9203. "dev-main": "4.0-dev"
  9204. }
  9205. },
  9206. "autoload": {
  9207. "classmap": [
  9208. "src/"
  9209. ]
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "BSD-3-Clause"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Sebastian Bergmann",
  9218. "email": "sebastian@phpunit.de",
  9219. "role": "lead"
  9220. }
  9221. ],
  9222. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9223. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9224. "keywords": [
  9225. "filesystem",
  9226. "iterator"
  9227. ],
  9228. "support": {
  9229. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9230. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9231. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9232. },
  9233. "funding": [
  9234. {
  9235. "url": "https://github.com/sebastianbergmann",
  9236. "type": "github"
  9237. }
  9238. ],
  9239. "time": "2023-08-31T06:24:48+00:00"
  9240. },
  9241. {
  9242. "name": "phpunit/php-invoker",
  9243. "version": "4.0.0",
  9244. "source": {
  9245. "type": "git",
  9246. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9247. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9248. },
  9249. "dist": {
  9250. "type": "zip",
  9251. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9252. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9253. "shasum": ""
  9254. },
  9255. "require": {
  9256. "php": ">=8.1"
  9257. },
  9258. "require-dev": {
  9259. "ext-pcntl": "*",
  9260. "phpunit/phpunit": "^10.0"
  9261. },
  9262. "suggest": {
  9263. "ext-pcntl": "*"
  9264. },
  9265. "type": "library",
  9266. "extra": {
  9267. "branch-alias": {
  9268. "dev-main": "4.0-dev"
  9269. }
  9270. },
  9271. "autoload": {
  9272. "classmap": [
  9273. "src/"
  9274. ]
  9275. },
  9276. "notification-url": "https://packagist.org/downloads/",
  9277. "license": [
  9278. "BSD-3-Clause"
  9279. ],
  9280. "authors": [
  9281. {
  9282. "name": "Sebastian Bergmann",
  9283. "email": "sebastian@phpunit.de",
  9284. "role": "lead"
  9285. }
  9286. ],
  9287. "description": "Invoke callables with a timeout",
  9288. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9289. "keywords": [
  9290. "process"
  9291. ],
  9292. "support": {
  9293. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9294. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9295. },
  9296. "funding": [
  9297. {
  9298. "url": "https://github.com/sebastianbergmann",
  9299. "type": "github"
  9300. }
  9301. ],
  9302. "time": "2023-02-03T06:56:09+00:00"
  9303. },
  9304. {
  9305. "name": "phpunit/php-text-template",
  9306. "version": "3.0.1",
  9307. "source": {
  9308. "type": "git",
  9309. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9310. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9311. },
  9312. "dist": {
  9313. "type": "zip",
  9314. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9315. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9316. "shasum": ""
  9317. },
  9318. "require": {
  9319. "php": ">=8.1"
  9320. },
  9321. "require-dev": {
  9322. "phpunit/phpunit": "^10.0"
  9323. },
  9324. "type": "library",
  9325. "extra": {
  9326. "branch-alias": {
  9327. "dev-main": "3.0-dev"
  9328. }
  9329. },
  9330. "autoload": {
  9331. "classmap": [
  9332. "src/"
  9333. ]
  9334. },
  9335. "notification-url": "https://packagist.org/downloads/",
  9336. "license": [
  9337. "BSD-3-Clause"
  9338. ],
  9339. "authors": [
  9340. {
  9341. "name": "Sebastian Bergmann",
  9342. "email": "sebastian@phpunit.de",
  9343. "role": "lead"
  9344. }
  9345. ],
  9346. "description": "Simple template engine.",
  9347. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9348. "keywords": [
  9349. "template"
  9350. ],
  9351. "support": {
  9352. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9353. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9354. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9355. },
  9356. "funding": [
  9357. {
  9358. "url": "https://github.com/sebastianbergmann",
  9359. "type": "github"
  9360. }
  9361. ],
  9362. "time": "2023-08-31T14:07:24+00:00"
  9363. },
  9364. {
  9365. "name": "phpunit/php-timer",
  9366. "version": "6.0.0",
  9367. "source": {
  9368. "type": "git",
  9369. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9370. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9371. },
  9372. "dist": {
  9373. "type": "zip",
  9374. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9375. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9376. "shasum": ""
  9377. },
  9378. "require": {
  9379. "php": ">=8.1"
  9380. },
  9381. "require-dev": {
  9382. "phpunit/phpunit": "^10.0"
  9383. },
  9384. "type": "library",
  9385. "extra": {
  9386. "branch-alias": {
  9387. "dev-main": "6.0-dev"
  9388. }
  9389. },
  9390. "autoload": {
  9391. "classmap": [
  9392. "src/"
  9393. ]
  9394. },
  9395. "notification-url": "https://packagist.org/downloads/",
  9396. "license": [
  9397. "BSD-3-Clause"
  9398. ],
  9399. "authors": [
  9400. {
  9401. "name": "Sebastian Bergmann",
  9402. "email": "sebastian@phpunit.de",
  9403. "role": "lead"
  9404. }
  9405. ],
  9406. "description": "Utility class for timing",
  9407. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9408. "keywords": [
  9409. "timer"
  9410. ],
  9411. "support": {
  9412. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9413. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9414. },
  9415. "funding": [
  9416. {
  9417. "url": "https://github.com/sebastianbergmann",
  9418. "type": "github"
  9419. }
  9420. ],
  9421. "time": "2023-02-03T06:57:52+00:00"
  9422. },
  9423. {
  9424. "name": "phpunit/phpunit",
  9425. "version": "10.5.38",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9429. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9434. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9435. "shasum": ""
  9436. },
  9437. "require": {
  9438. "ext-dom": "*",
  9439. "ext-json": "*",
  9440. "ext-libxml": "*",
  9441. "ext-mbstring": "*",
  9442. "ext-xml": "*",
  9443. "ext-xmlwriter": "*",
  9444. "myclabs/deep-copy": "^1.12.0",
  9445. "phar-io/manifest": "^2.0.4",
  9446. "phar-io/version": "^3.2.1",
  9447. "php": ">=8.1",
  9448. "phpunit/php-code-coverage": "^10.1.16",
  9449. "phpunit/php-file-iterator": "^4.1.0",
  9450. "phpunit/php-invoker": "^4.0.0",
  9451. "phpunit/php-text-template": "^3.0.1",
  9452. "phpunit/php-timer": "^6.0.0",
  9453. "sebastian/cli-parser": "^2.0.1",
  9454. "sebastian/code-unit": "^2.0.0",
  9455. "sebastian/comparator": "^5.0.3",
  9456. "sebastian/diff": "^5.1.1",
  9457. "sebastian/environment": "^6.1.0",
  9458. "sebastian/exporter": "^5.1.2",
  9459. "sebastian/global-state": "^6.0.2",
  9460. "sebastian/object-enumerator": "^5.0.0",
  9461. "sebastian/recursion-context": "^5.0.0",
  9462. "sebastian/type": "^4.0.0",
  9463. "sebastian/version": "^4.0.1"
  9464. },
  9465. "suggest": {
  9466. "ext-soap": "To be able to generate mocks based on WSDL files"
  9467. },
  9468. "bin": [
  9469. "phpunit"
  9470. ],
  9471. "type": "library",
  9472. "extra": {
  9473. "branch-alias": {
  9474. "dev-main": "10.5-dev"
  9475. }
  9476. },
  9477. "autoload": {
  9478. "files": [
  9479. "src/Framework/Assert/Functions.php"
  9480. ],
  9481. "classmap": [
  9482. "src/"
  9483. ]
  9484. },
  9485. "notification-url": "https://packagist.org/downloads/",
  9486. "license": [
  9487. "BSD-3-Clause"
  9488. ],
  9489. "authors": [
  9490. {
  9491. "name": "Sebastian Bergmann",
  9492. "email": "sebastian@phpunit.de",
  9493. "role": "lead"
  9494. }
  9495. ],
  9496. "description": "The PHP Unit Testing framework.",
  9497. "homepage": "https://phpunit.de/",
  9498. "keywords": [
  9499. "phpunit",
  9500. "testing",
  9501. "xunit"
  9502. ],
  9503. "support": {
  9504. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9505. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9506. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://phpunit.de/sponsors.html",
  9511. "type": "custom"
  9512. },
  9513. {
  9514. "url": "https://github.com/sebastianbergmann",
  9515. "type": "github"
  9516. },
  9517. {
  9518. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9519. "type": "tidelift"
  9520. }
  9521. ],
  9522. "time": "2024-10-28T13:06:21+00:00"
  9523. },
  9524. {
  9525. "name": "react/cache",
  9526. "version": "v1.2.0",
  9527. "source": {
  9528. "type": "git",
  9529. "url": "https://github.com/reactphp/cache.git",
  9530. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9531. },
  9532. "dist": {
  9533. "type": "zip",
  9534. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9535. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9536. "shasum": ""
  9537. },
  9538. "require": {
  9539. "php": ">=5.3.0",
  9540. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9541. },
  9542. "require-dev": {
  9543. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9544. },
  9545. "type": "library",
  9546. "autoload": {
  9547. "psr-4": {
  9548. "React\\Cache\\": "src/"
  9549. }
  9550. },
  9551. "notification-url": "https://packagist.org/downloads/",
  9552. "license": [
  9553. "MIT"
  9554. ],
  9555. "authors": [
  9556. {
  9557. "name": "Christian Lück",
  9558. "email": "christian@clue.engineering",
  9559. "homepage": "https://clue.engineering/"
  9560. },
  9561. {
  9562. "name": "Cees-Jan Kiewiet",
  9563. "email": "reactphp@ceesjankiewiet.nl",
  9564. "homepage": "https://wyrihaximus.net/"
  9565. },
  9566. {
  9567. "name": "Jan Sorgalla",
  9568. "email": "jsorgalla@gmail.com",
  9569. "homepage": "https://sorgalla.com/"
  9570. },
  9571. {
  9572. "name": "Chris Boden",
  9573. "email": "cboden@gmail.com",
  9574. "homepage": "https://cboden.dev/"
  9575. }
  9576. ],
  9577. "description": "Async, Promise-based cache interface for ReactPHP",
  9578. "keywords": [
  9579. "cache",
  9580. "caching",
  9581. "promise",
  9582. "reactphp"
  9583. ],
  9584. "support": {
  9585. "issues": "https://github.com/reactphp/cache/issues",
  9586. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9587. },
  9588. "funding": [
  9589. {
  9590. "url": "https://opencollective.com/reactphp",
  9591. "type": "open_collective"
  9592. }
  9593. ],
  9594. "time": "2022-11-30T15:59:55+00:00"
  9595. },
  9596. {
  9597. "name": "react/child-process",
  9598. "version": "v0.6.5",
  9599. "source": {
  9600. "type": "git",
  9601. "url": "https://github.com/reactphp/child-process.git",
  9602. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9603. },
  9604. "dist": {
  9605. "type": "zip",
  9606. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9607. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9608. "shasum": ""
  9609. },
  9610. "require": {
  9611. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9612. "php": ">=5.3.0",
  9613. "react/event-loop": "^1.2",
  9614. "react/stream": "^1.2"
  9615. },
  9616. "require-dev": {
  9617. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9618. "react/socket": "^1.8",
  9619. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9620. },
  9621. "type": "library",
  9622. "autoload": {
  9623. "psr-4": {
  9624. "React\\ChildProcess\\": "src"
  9625. }
  9626. },
  9627. "notification-url": "https://packagist.org/downloads/",
  9628. "license": [
  9629. "MIT"
  9630. ],
  9631. "authors": [
  9632. {
  9633. "name": "Christian Lück",
  9634. "email": "christian@clue.engineering",
  9635. "homepage": "https://clue.engineering/"
  9636. },
  9637. {
  9638. "name": "Cees-Jan Kiewiet",
  9639. "email": "reactphp@ceesjankiewiet.nl",
  9640. "homepage": "https://wyrihaximus.net/"
  9641. },
  9642. {
  9643. "name": "Jan Sorgalla",
  9644. "email": "jsorgalla@gmail.com",
  9645. "homepage": "https://sorgalla.com/"
  9646. },
  9647. {
  9648. "name": "Chris Boden",
  9649. "email": "cboden@gmail.com",
  9650. "homepage": "https://cboden.dev/"
  9651. }
  9652. ],
  9653. "description": "Event-driven library for executing child processes with ReactPHP.",
  9654. "keywords": [
  9655. "event-driven",
  9656. "process",
  9657. "reactphp"
  9658. ],
  9659. "support": {
  9660. "issues": "https://github.com/reactphp/child-process/issues",
  9661. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9662. },
  9663. "funding": [
  9664. {
  9665. "url": "https://github.com/WyriHaximus",
  9666. "type": "github"
  9667. },
  9668. {
  9669. "url": "https://github.com/clue",
  9670. "type": "github"
  9671. }
  9672. ],
  9673. "time": "2022-09-16T13:41:56+00:00"
  9674. },
  9675. {
  9676. "name": "react/dns",
  9677. "version": "v1.13.0",
  9678. "source": {
  9679. "type": "git",
  9680. "url": "https://github.com/reactphp/dns.git",
  9681. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9682. },
  9683. "dist": {
  9684. "type": "zip",
  9685. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9686. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9687. "shasum": ""
  9688. },
  9689. "require": {
  9690. "php": ">=5.3.0",
  9691. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9692. "react/event-loop": "^1.2",
  9693. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9694. },
  9695. "require-dev": {
  9696. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9697. "react/async": "^4.3 || ^3 || ^2",
  9698. "react/promise-timer": "^1.11"
  9699. },
  9700. "type": "library",
  9701. "autoload": {
  9702. "psr-4": {
  9703. "React\\Dns\\": "src/"
  9704. }
  9705. },
  9706. "notification-url": "https://packagist.org/downloads/",
  9707. "license": [
  9708. "MIT"
  9709. ],
  9710. "authors": [
  9711. {
  9712. "name": "Christian Lück",
  9713. "email": "christian@clue.engineering",
  9714. "homepage": "https://clue.engineering/"
  9715. },
  9716. {
  9717. "name": "Cees-Jan Kiewiet",
  9718. "email": "reactphp@ceesjankiewiet.nl",
  9719. "homepage": "https://wyrihaximus.net/"
  9720. },
  9721. {
  9722. "name": "Jan Sorgalla",
  9723. "email": "jsorgalla@gmail.com",
  9724. "homepage": "https://sorgalla.com/"
  9725. },
  9726. {
  9727. "name": "Chris Boden",
  9728. "email": "cboden@gmail.com",
  9729. "homepage": "https://cboden.dev/"
  9730. }
  9731. ],
  9732. "description": "Async DNS resolver for ReactPHP",
  9733. "keywords": [
  9734. "async",
  9735. "dns",
  9736. "dns-resolver",
  9737. "reactphp"
  9738. ],
  9739. "support": {
  9740. "issues": "https://github.com/reactphp/dns/issues",
  9741. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://opencollective.com/reactphp",
  9746. "type": "open_collective"
  9747. }
  9748. ],
  9749. "time": "2024-06-13T14:18:03+00:00"
  9750. },
  9751. {
  9752. "name": "react/event-loop",
  9753. "version": "v1.5.0",
  9754. "source": {
  9755. "type": "git",
  9756. "url": "https://github.com/reactphp/event-loop.git",
  9757. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9758. },
  9759. "dist": {
  9760. "type": "zip",
  9761. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9762. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9763. "shasum": ""
  9764. },
  9765. "require": {
  9766. "php": ">=5.3.0"
  9767. },
  9768. "require-dev": {
  9769. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9770. },
  9771. "suggest": {
  9772. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9773. },
  9774. "type": "library",
  9775. "autoload": {
  9776. "psr-4": {
  9777. "React\\EventLoop\\": "src/"
  9778. }
  9779. },
  9780. "notification-url": "https://packagist.org/downloads/",
  9781. "license": [
  9782. "MIT"
  9783. ],
  9784. "authors": [
  9785. {
  9786. "name": "Christian Lück",
  9787. "email": "christian@clue.engineering",
  9788. "homepage": "https://clue.engineering/"
  9789. },
  9790. {
  9791. "name": "Cees-Jan Kiewiet",
  9792. "email": "reactphp@ceesjankiewiet.nl",
  9793. "homepage": "https://wyrihaximus.net/"
  9794. },
  9795. {
  9796. "name": "Jan Sorgalla",
  9797. "email": "jsorgalla@gmail.com",
  9798. "homepage": "https://sorgalla.com/"
  9799. },
  9800. {
  9801. "name": "Chris Boden",
  9802. "email": "cboden@gmail.com",
  9803. "homepage": "https://cboden.dev/"
  9804. }
  9805. ],
  9806. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9807. "keywords": [
  9808. "asynchronous",
  9809. "event-loop"
  9810. ],
  9811. "support": {
  9812. "issues": "https://github.com/reactphp/event-loop/issues",
  9813. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9814. },
  9815. "funding": [
  9816. {
  9817. "url": "https://opencollective.com/reactphp",
  9818. "type": "open_collective"
  9819. }
  9820. ],
  9821. "time": "2023-11-13T13:48:05+00:00"
  9822. },
  9823. {
  9824. "name": "react/promise",
  9825. "version": "v3.2.0",
  9826. "source": {
  9827. "type": "git",
  9828. "url": "https://github.com/reactphp/promise.git",
  9829. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9830. },
  9831. "dist": {
  9832. "type": "zip",
  9833. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9834. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9835. "shasum": ""
  9836. },
  9837. "require": {
  9838. "php": ">=7.1.0"
  9839. },
  9840. "require-dev": {
  9841. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9842. "phpunit/phpunit": "^9.6 || ^7.5"
  9843. },
  9844. "type": "library",
  9845. "autoload": {
  9846. "files": [
  9847. "src/functions_include.php"
  9848. ],
  9849. "psr-4": {
  9850. "React\\Promise\\": "src/"
  9851. }
  9852. },
  9853. "notification-url": "https://packagist.org/downloads/",
  9854. "license": [
  9855. "MIT"
  9856. ],
  9857. "authors": [
  9858. {
  9859. "name": "Jan Sorgalla",
  9860. "email": "jsorgalla@gmail.com",
  9861. "homepage": "https://sorgalla.com/"
  9862. },
  9863. {
  9864. "name": "Christian Lück",
  9865. "email": "christian@clue.engineering",
  9866. "homepage": "https://clue.engineering/"
  9867. },
  9868. {
  9869. "name": "Cees-Jan Kiewiet",
  9870. "email": "reactphp@ceesjankiewiet.nl",
  9871. "homepage": "https://wyrihaximus.net/"
  9872. },
  9873. {
  9874. "name": "Chris Boden",
  9875. "email": "cboden@gmail.com",
  9876. "homepage": "https://cboden.dev/"
  9877. }
  9878. ],
  9879. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9880. "keywords": [
  9881. "promise",
  9882. "promises"
  9883. ],
  9884. "support": {
  9885. "issues": "https://github.com/reactphp/promise/issues",
  9886. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9887. },
  9888. "funding": [
  9889. {
  9890. "url": "https://opencollective.com/reactphp",
  9891. "type": "open_collective"
  9892. }
  9893. ],
  9894. "time": "2024-05-24T10:39:05+00:00"
  9895. },
  9896. {
  9897. "name": "react/socket",
  9898. "version": "v1.16.0",
  9899. "source": {
  9900. "type": "git",
  9901. "url": "https://github.com/reactphp/socket.git",
  9902. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9903. },
  9904. "dist": {
  9905. "type": "zip",
  9906. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9907. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9908. "shasum": ""
  9909. },
  9910. "require": {
  9911. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9912. "php": ">=5.3.0",
  9913. "react/dns": "^1.13",
  9914. "react/event-loop": "^1.2",
  9915. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9916. "react/stream": "^1.4"
  9917. },
  9918. "require-dev": {
  9919. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9920. "react/async": "^4.3 || ^3.3 || ^2",
  9921. "react/promise-stream": "^1.4",
  9922. "react/promise-timer": "^1.11"
  9923. },
  9924. "type": "library",
  9925. "autoload": {
  9926. "psr-4": {
  9927. "React\\Socket\\": "src/"
  9928. }
  9929. },
  9930. "notification-url": "https://packagist.org/downloads/",
  9931. "license": [
  9932. "MIT"
  9933. ],
  9934. "authors": [
  9935. {
  9936. "name": "Christian Lück",
  9937. "email": "christian@clue.engineering",
  9938. "homepage": "https://clue.engineering/"
  9939. },
  9940. {
  9941. "name": "Cees-Jan Kiewiet",
  9942. "email": "reactphp@ceesjankiewiet.nl",
  9943. "homepage": "https://wyrihaximus.net/"
  9944. },
  9945. {
  9946. "name": "Jan Sorgalla",
  9947. "email": "jsorgalla@gmail.com",
  9948. "homepage": "https://sorgalla.com/"
  9949. },
  9950. {
  9951. "name": "Chris Boden",
  9952. "email": "cboden@gmail.com",
  9953. "homepage": "https://cboden.dev/"
  9954. }
  9955. ],
  9956. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9957. "keywords": [
  9958. "Connection",
  9959. "Socket",
  9960. "async",
  9961. "reactphp",
  9962. "stream"
  9963. ],
  9964. "support": {
  9965. "issues": "https://github.com/reactphp/socket/issues",
  9966. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9967. },
  9968. "funding": [
  9969. {
  9970. "url": "https://opencollective.com/reactphp",
  9971. "type": "open_collective"
  9972. }
  9973. ],
  9974. "time": "2024-07-26T10:38:09+00:00"
  9975. },
  9976. {
  9977. "name": "react/stream",
  9978. "version": "v1.4.0",
  9979. "source": {
  9980. "type": "git",
  9981. "url": "https://github.com/reactphp/stream.git",
  9982. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9983. },
  9984. "dist": {
  9985. "type": "zip",
  9986. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9987. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9988. "shasum": ""
  9989. },
  9990. "require": {
  9991. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9992. "php": ">=5.3.8",
  9993. "react/event-loop": "^1.2"
  9994. },
  9995. "require-dev": {
  9996. "clue/stream-filter": "~1.2",
  9997. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9998. },
  9999. "type": "library",
  10000. "autoload": {
  10001. "psr-4": {
  10002. "React\\Stream\\": "src/"
  10003. }
  10004. },
  10005. "notification-url": "https://packagist.org/downloads/",
  10006. "license": [
  10007. "MIT"
  10008. ],
  10009. "authors": [
  10010. {
  10011. "name": "Christian Lück",
  10012. "email": "christian@clue.engineering",
  10013. "homepage": "https://clue.engineering/"
  10014. },
  10015. {
  10016. "name": "Cees-Jan Kiewiet",
  10017. "email": "reactphp@ceesjankiewiet.nl",
  10018. "homepage": "https://wyrihaximus.net/"
  10019. },
  10020. {
  10021. "name": "Jan Sorgalla",
  10022. "email": "jsorgalla@gmail.com",
  10023. "homepage": "https://sorgalla.com/"
  10024. },
  10025. {
  10026. "name": "Chris Boden",
  10027. "email": "cboden@gmail.com",
  10028. "homepage": "https://cboden.dev/"
  10029. }
  10030. ],
  10031. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10032. "keywords": [
  10033. "event-driven",
  10034. "io",
  10035. "non-blocking",
  10036. "pipe",
  10037. "reactphp",
  10038. "readable",
  10039. "stream",
  10040. "writable"
  10041. ],
  10042. "support": {
  10043. "issues": "https://github.com/reactphp/stream/issues",
  10044. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10045. },
  10046. "funding": [
  10047. {
  10048. "url": "https://opencollective.com/reactphp",
  10049. "type": "open_collective"
  10050. }
  10051. ],
  10052. "time": "2024-06-11T12:45:25+00:00"
  10053. },
  10054. {
  10055. "name": "sebastian/cli-parser",
  10056. "version": "2.0.1",
  10057. "source": {
  10058. "type": "git",
  10059. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10060. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10061. },
  10062. "dist": {
  10063. "type": "zip",
  10064. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10065. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10066. "shasum": ""
  10067. },
  10068. "require": {
  10069. "php": ">=8.1"
  10070. },
  10071. "require-dev": {
  10072. "phpunit/phpunit": "^10.0"
  10073. },
  10074. "type": "library",
  10075. "extra": {
  10076. "branch-alias": {
  10077. "dev-main": "2.0-dev"
  10078. }
  10079. },
  10080. "autoload": {
  10081. "classmap": [
  10082. "src/"
  10083. ]
  10084. },
  10085. "notification-url": "https://packagist.org/downloads/",
  10086. "license": [
  10087. "BSD-3-Clause"
  10088. ],
  10089. "authors": [
  10090. {
  10091. "name": "Sebastian Bergmann",
  10092. "email": "sebastian@phpunit.de",
  10093. "role": "lead"
  10094. }
  10095. ],
  10096. "description": "Library for parsing CLI options",
  10097. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10098. "support": {
  10099. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10100. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10101. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10102. },
  10103. "funding": [
  10104. {
  10105. "url": "https://github.com/sebastianbergmann",
  10106. "type": "github"
  10107. }
  10108. ],
  10109. "time": "2024-03-02T07:12:49+00:00"
  10110. },
  10111. {
  10112. "name": "sebastian/code-unit",
  10113. "version": "2.0.0",
  10114. "source": {
  10115. "type": "git",
  10116. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10117. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10118. },
  10119. "dist": {
  10120. "type": "zip",
  10121. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10122. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10123. "shasum": ""
  10124. },
  10125. "require": {
  10126. "php": ">=8.1"
  10127. },
  10128. "require-dev": {
  10129. "phpunit/phpunit": "^10.0"
  10130. },
  10131. "type": "library",
  10132. "extra": {
  10133. "branch-alias": {
  10134. "dev-main": "2.0-dev"
  10135. }
  10136. },
  10137. "autoload": {
  10138. "classmap": [
  10139. "src/"
  10140. ]
  10141. },
  10142. "notification-url": "https://packagist.org/downloads/",
  10143. "license": [
  10144. "BSD-3-Clause"
  10145. ],
  10146. "authors": [
  10147. {
  10148. "name": "Sebastian Bergmann",
  10149. "email": "sebastian@phpunit.de",
  10150. "role": "lead"
  10151. }
  10152. ],
  10153. "description": "Collection of value objects that represent the PHP code units",
  10154. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10155. "support": {
  10156. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10157. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10158. },
  10159. "funding": [
  10160. {
  10161. "url": "https://github.com/sebastianbergmann",
  10162. "type": "github"
  10163. }
  10164. ],
  10165. "time": "2023-02-03T06:58:43+00:00"
  10166. },
  10167. {
  10168. "name": "sebastian/code-unit-reverse-lookup",
  10169. "version": "3.0.0",
  10170. "source": {
  10171. "type": "git",
  10172. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10173. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10174. },
  10175. "dist": {
  10176. "type": "zip",
  10177. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10178. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10179. "shasum": ""
  10180. },
  10181. "require": {
  10182. "php": ">=8.1"
  10183. },
  10184. "require-dev": {
  10185. "phpunit/phpunit": "^10.0"
  10186. },
  10187. "type": "library",
  10188. "extra": {
  10189. "branch-alias": {
  10190. "dev-main": "3.0-dev"
  10191. }
  10192. },
  10193. "autoload": {
  10194. "classmap": [
  10195. "src/"
  10196. ]
  10197. },
  10198. "notification-url": "https://packagist.org/downloads/",
  10199. "license": [
  10200. "BSD-3-Clause"
  10201. ],
  10202. "authors": [
  10203. {
  10204. "name": "Sebastian Bergmann",
  10205. "email": "sebastian@phpunit.de"
  10206. }
  10207. ],
  10208. "description": "Looks up which function or method a line of code belongs to",
  10209. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10210. "support": {
  10211. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10212. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10213. },
  10214. "funding": [
  10215. {
  10216. "url": "https://github.com/sebastianbergmann",
  10217. "type": "github"
  10218. }
  10219. ],
  10220. "time": "2023-02-03T06:59:15+00:00"
  10221. },
  10222. {
  10223. "name": "sebastian/comparator",
  10224. "version": "5.0.3",
  10225. "source": {
  10226. "type": "git",
  10227. "url": "https://github.com/sebastianbergmann/comparator.git",
  10228. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10229. },
  10230. "dist": {
  10231. "type": "zip",
  10232. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10233. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10234. "shasum": ""
  10235. },
  10236. "require": {
  10237. "ext-dom": "*",
  10238. "ext-mbstring": "*",
  10239. "php": ">=8.1",
  10240. "sebastian/diff": "^5.0",
  10241. "sebastian/exporter": "^5.0"
  10242. },
  10243. "require-dev": {
  10244. "phpunit/phpunit": "^10.5"
  10245. },
  10246. "type": "library",
  10247. "extra": {
  10248. "branch-alias": {
  10249. "dev-main": "5.0-dev"
  10250. }
  10251. },
  10252. "autoload": {
  10253. "classmap": [
  10254. "src/"
  10255. ]
  10256. },
  10257. "notification-url": "https://packagist.org/downloads/",
  10258. "license": [
  10259. "BSD-3-Clause"
  10260. ],
  10261. "authors": [
  10262. {
  10263. "name": "Sebastian Bergmann",
  10264. "email": "sebastian@phpunit.de"
  10265. },
  10266. {
  10267. "name": "Jeff Welch",
  10268. "email": "whatthejeff@gmail.com"
  10269. },
  10270. {
  10271. "name": "Volker Dusch",
  10272. "email": "github@wallbash.com"
  10273. },
  10274. {
  10275. "name": "Bernhard Schussek",
  10276. "email": "bschussek@2bepublished.at"
  10277. }
  10278. ],
  10279. "description": "Provides the functionality to compare PHP values for equality",
  10280. "homepage": "https://github.com/sebastianbergmann/comparator",
  10281. "keywords": [
  10282. "comparator",
  10283. "compare",
  10284. "equality"
  10285. ],
  10286. "support": {
  10287. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10288. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10289. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10290. },
  10291. "funding": [
  10292. {
  10293. "url": "https://github.com/sebastianbergmann",
  10294. "type": "github"
  10295. }
  10296. ],
  10297. "time": "2024-10-18T14:56:07+00:00"
  10298. },
  10299. {
  10300. "name": "sebastian/complexity",
  10301. "version": "3.2.0",
  10302. "source": {
  10303. "type": "git",
  10304. "url": "https://github.com/sebastianbergmann/complexity.git",
  10305. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10306. },
  10307. "dist": {
  10308. "type": "zip",
  10309. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10310. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10311. "shasum": ""
  10312. },
  10313. "require": {
  10314. "nikic/php-parser": "^4.18 || ^5.0",
  10315. "php": ">=8.1"
  10316. },
  10317. "require-dev": {
  10318. "phpunit/phpunit": "^10.0"
  10319. },
  10320. "type": "library",
  10321. "extra": {
  10322. "branch-alias": {
  10323. "dev-main": "3.2-dev"
  10324. }
  10325. },
  10326. "autoload": {
  10327. "classmap": [
  10328. "src/"
  10329. ]
  10330. },
  10331. "notification-url": "https://packagist.org/downloads/",
  10332. "license": [
  10333. "BSD-3-Clause"
  10334. ],
  10335. "authors": [
  10336. {
  10337. "name": "Sebastian Bergmann",
  10338. "email": "sebastian@phpunit.de",
  10339. "role": "lead"
  10340. }
  10341. ],
  10342. "description": "Library for calculating the complexity of PHP code units",
  10343. "homepage": "https://github.com/sebastianbergmann/complexity",
  10344. "support": {
  10345. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10346. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10347. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10348. },
  10349. "funding": [
  10350. {
  10351. "url": "https://github.com/sebastianbergmann",
  10352. "type": "github"
  10353. }
  10354. ],
  10355. "time": "2023-12-21T08:37:17+00:00"
  10356. },
  10357. {
  10358. "name": "sebastian/diff",
  10359. "version": "5.1.1",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/sebastianbergmann/diff.git",
  10363. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10368. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10369. "shasum": ""
  10370. },
  10371. "require": {
  10372. "php": ">=8.1"
  10373. },
  10374. "require-dev": {
  10375. "phpunit/phpunit": "^10.0",
  10376. "symfony/process": "^6.4"
  10377. },
  10378. "type": "library",
  10379. "extra": {
  10380. "branch-alias": {
  10381. "dev-main": "5.1-dev"
  10382. }
  10383. },
  10384. "autoload": {
  10385. "classmap": [
  10386. "src/"
  10387. ]
  10388. },
  10389. "notification-url": "https://packagist.org/downloads/",
  10390. "license": [
  10391. "BSD-3-Clause"
  10392. ],
  10393. "authors": [
  10394. {
  10395. "name": "Sebastian Bergmann",
  10396. "email": "sebastian@phpunit.de"
  10397. },
  10398. {
  10399. "name": "Kore Nordmann",
  10400. "email": "mail@kore-nordmann.de"
  10401. }
  10402. ],
  10403. "description": "Diff implementation",
  10404. "homepage": "https://github.com/sebastianbergmann/diff",
  10405. "keywords": [
  10406. "diff",
  10407. "udiff",
  10408. "unidiff",
  10409. "unified diff"
  10410. ],
  10411. "support": {
  10412. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10413. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10414. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10415. },
  10416. "funding": [
  10417. {
  10418. "url": "https://github.com/sebastianbergmann",
  10419. "type": "github"
  10420. }
  10421. ],
  10422. "time": "2024-03-02T07:15:17+00:00"
  10423. },
  10424. {
  10425. "name": "sebastian/environment",
  10426. "version": "6.1.0",
  10427. "source": {
  10428. "type": "git",
  10429. "url": "https://github.com/sebastianbergmann/environment.git",
  10430. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10431. },
  10432. "dist": {
  10433. "type": "zip",
  10434. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10435. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10436. "shasum": ""
  10437. },
  10438. "require": {
  10439. "php": ">=8.1"
  10440. },
  10441. "require-dev": {
  10442. "phpunit/phpunit": "^10.0"
  10443. },
  10444. "suggest": {
  10445. "ext-posix": "*"
  10446. },
  10447. "type": "library",
  10448. "extra": {
  10449. "branch-alias": {
  10450. "dev-main": "6.1-dev"
  10451. }
  10452. },
  10453. "autoload": {
  10454. "classmap": [
  10455. "src/"
  10456. ]
  10457. },
  10458. "notification-url": "https://packagist.org/downloads/",
  10459. "license": [
  10460. "BSD-3-Clause"
  10461. ],
  10462. "authors": [
  10463. {
  10464. "name": "Sebastian Bergmann",
  10465. "email": "sebastian@phpunit.de"
  10466. }
  10467. ],
  10468. "description": "Provides functionality to handle HHVM/PHP environments",
  10469. "homepage": "https://github.com/sebastianbergmann/environment",
  10470. "keywords": [
  10471. "Xdebug",
  10472. "environment",
  10473. "hhvm"
  10474. ],
  10475. "support": {
  10476. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10477. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10478. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10479. },
  10480. "funding": [
  10481. {
  10482. "url": "https://github.com/sebastianbergmann",
  10483. "type": "github"
  10484. }
  10485. ],
  10486. "time": "2024-03-23T08:47:14+00:00"
  10487. },
  10488. {
  10489. "name": "sebastian/exporter",
  10490. "version": "5.1.2",
  10491. "source": {
  10492. "type": "git",
  10493. "url": "https://github.com/sebastianbergmann/exporter.git",
  10494. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10495. },
  10496. "dist": {
  10497. "type": "zip",
  10498. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10499. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10500. "shasum": ""
  10501. },
  10502. "require": {
  10503. "ext-mbstring": "*",
  10504. "php": ">=8.1",
  10505. "sebastian/recursion-context": "^5.0"
  10506. },
  10507. "require-dev": {
  10508. "phpunit/phpunit": "^10.0"
  10509. },
  10510. "type": "library",
  10511. "extra": {
  10512. "branch-alias": {
  10513. "dev-main": "5.1-dev"
  10514. }
  10515. },
  10516. "autoload": {
  10517. "classmap": [
  10518. "src/"
  10519. ]
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "BSD-3-Clause"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "Sebastian Bergmann",
  10528. "email": "sebastian@phpunit.de"
  10529. },
  10530. {
  10531. "name": "Jeff Welch",
  10532. "email": "whatthejeff@gmail.com"
  10533. },
  10534. {
  10535. "name": "Volker Dusch",
  10536. "email": "github@wallbash.com"
  10537. },
  10538. {
  10539. "name": "Adam Harvey",
  10540. "email": "aharvey@php.net"
  10541. },
  10542. {
  10543. "name": "Bernhard Schussek",
  10544. "email": "bschussek@gmail.com"
  10545. }
  10546. ],
  10547. "description": "Provides the functionality to export PHP variables for visualization",
  10548. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10549. "keywords": [
  10550. "export",
  10551. "exporter"
  10552. ],
  10553. "support": {
  10554. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10555. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10556. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10557. },
  10558. "funding": [
  10559. {
  10560. "url": "https://github.com/sebastianbergmann",
  10561. "type": "github"
  10562. }
  10563. ],
  10564. "time": "2024-03-02T07:17:12+00:00"
  10565. },
  10566. {
  10567. "name": "sebastian/global-state",
  10568. "version": "6.0.2",
  10569. "source": {
  10570. "type": "git",
  10571. "url": "https://github.com/sebastianbergmann/global-state.git",
  10572. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10573. },
  10574. "dist": {
  10575. "type": "zip",
  10576. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10577. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10578. "shasum": ""
  10579. },
  10580. "require": {
  10581. "php": ">=8.1",
  10582. "sebastian/object-reflector": "^3.0",
  10583. "sebastian/recursion-context": "^5.0"
  10584. },
  10585. "require-dev": {
  10586. "ext-dom": "*",
  10587. "phpunit/phpunit": "^10.0"
  10588. },
  10589. "type": "library",
  10590. "extra": {
  10591. "branch-alias": {
  10592. "dev-main": "6.0-dev"
  10593. }
  10594. },
  10595. "autoload": {
  10596. "classmap": [
  10597. "src/"
  10598. ]
  10599. },
  10600. "notification-url": "https://packagist.org/downloads/",
  10601. "license": [
  10602. "BSD-3-Clause"
  10603. ],
  10604. "authors": [
  10605. {
  10606. "name": "Sebastian Bergmann",
  10607. "email": "sebastian@phpunit.de"
  10608. }
  10609. ],
  10610. "description": "Snapshotting of global state",
  10611. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10612. "keywords": [
  10613. "global state"
  10614. ],
  10615. "support": {
  10616. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10617. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10618. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10619. },
  10620. "funding": [
  10621. {
  10622. "url": "https://github.com/sebastianbergmann",
  10623. "type": "github"
  10624. }
  10625. ],
  10626. "time": "2024-03-02T07:19:19+00:00"
  10627. },
  10628. {
  10629. "name": "sebastian/lines-of-code",
  10630. "version": "2.0.2",
  10631. "source": {
  10632. "type": "git",
  10633. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10634. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10635. },
  10636. "dist": {
  10637. "type": "zip",
  10638. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10639. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10640. "shasum": ""
  10641. },
  10642. "require": {
  10643. "nikic/php-parser": "^4.18 || ^5.0",
  10644. "php": ">=8.1"
  10645. },
  10646. "require-dev": {
  10647. "phpunit/phpunit": "^10.0"
  10648. },
  10649. "type": "library",
  10650. "extra": {
  10651. "branch-alias": {
  10652. "dev-main": "2.0-dev"
  10653. }
  10654. },
  10655. "autoload": {
  10656. "classmap": [
  10657. "src/"
  10658. ]
  10659. },
  10660. "notification-url": "https://packagist.org/downloads/",
  10661. "license": [
  10662. "BSD-3-Clause"
  10663. ],
  10664. "authors": [
  10665. {
  10666. "name": "Sebastian Bergmann",
  10667. "email": "sebastian@phpunit.de",
  10668. "role": "lead"
  10669. }
  10670. ],
  10671. "description": "Library for counting the lines of code in PHP source code",
  10672. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10673. "support": {
  10674. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10675. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10676. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10677. },
  10678. "funding": [
  10679. {
  10680. "url": "https://github.com/sebastianbergmann",
  10681. "type": "github"
  10682. }
  10683. ],
  10684. "time": "2023-12-21T08:38:20+00:00"
  10685. },
  10686. {
  10687. "name": "sebastian/object-enumerator",
  10688. "version": "5.0.0",
  10689. "source": {
  10690. "type": "git",
  10691. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10692. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10693. },
  10694. "dist": {
  10695. "type": "zip",
  10696. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10697. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10698. "shasum": ""
  10699. },
  10700. "require": {
  10701. "php": ">=8.1",
  10702. "sebastian/object-reflector": "^3.0",
  10703. "sebastian/recursion-context": "^5.0"
  10704. },
  10705. "require-dev": {
  10706. "phpunit/phpunit": "^10.0"
  10707. },
  10708. "type": "library",
  10709. "extra": {
  10710. "branch-alias": {
  10711. "dev-main": "5.0-dev"
  10712. }
  10713. },
  10714. "autoload": {
  10715. "classmap": [
  10716. "src/"
  10717. ]
  10718. },
  10719. "notification-url": "https://packagist.org/downloads/",
  10720. "license": [
  10721. "BSD-3-Clause"
  10722. ],
  10723. "authors": [
  10724. {
  10725. "name": "Sebastian Bergmann",
  10726. "email": "sebastian@phpunit.de"
  10727. }
  10728. ],
  10729. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10730. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10731. "support": {
  10732. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10733. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10734. },
  10735. "funding": [
  10736. {
  10737. "url": "https://github.com/sebastianbergmann",
  10738. "type": "github"
  10739. }
  10740. ],
  10741. "time": "2023-02-03T07:08:32+00:00"
  10742. },
  10743. {
  10744. "name": "sebastian/object-reflector",
  10745. "version": "3.0.0",
  10746. "source": {
  10747. "type": "git",
  10748. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10749. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10750. },
  10751. "dist": {
  10752. "type": "zip",
  10753. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10754. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10755. "shasum": ""
  10756. },
  10757. "require": {
  10758. "php": ">=8.1"
  10759. },
  10760. "require-dev": {
  10761. "phpunit/phpunit": "^10.0"
  10762. },
  10763. "type": "library",
  10764. "extra": {
  10765. "branch-alias": {
  10766. "dev-main": "3.0-dev"
  10767. }
  10768. },
  10769. "autoload": {
  10770. "classmap": [
  10771. "src/"
  10772. ]
  10773. },
  10774. "notification-url": "https://packagist.org/downloads/",
  10775. "license": [
  10776. "BSD-3-Clause"
  10777. ],
  10778. "authors": [
  10779. {
  10780. "name": "Sebastian Bergmann",
  10781. "email": "sebastian@phpunit.de"
  10782. }
  10783. ],
  10784. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10785. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10786. "support": {
  10787. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10788. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10789. },
  10790. "funding": [
  10791. {
  10792. "url": "https://github.com/sebastianbergmann",
  10793. "type": "github"
  10794. }
  10795. ],
  10796. "time": "2023-02-03T07:06:18+00:00"
  10797. },
  10798. {
  10799. "name": "sebastian/recursion-context",
  10800. "version": "5.0.0",
  10801. "source": {
  10802. "type": "git",
  10803. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10804. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10805. },
  10806. "dist": {
  10807. "type": "zip",
  10808. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10809. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10810. "shasum": ""
  10811. },
  10812. "require": {
  10813. "php": ">=8.1"
  10814. },
  10815. "require-dev": {
  10816. "phpunit/phpunit": "^10.0"
  10817. },
  10818. "type": "library",
  10819. "extra": {
  10820. "branch-alias": {
  10821. "dev-main": "5.0-dev"
  10822. }
  10823. },
  10824. "autoload": {
  10825. "classmap": [
  10826. "src/"
  10827. ]
  10828. },
  10829. "notification-url": "https://packagist.org/downloads/",
  10830. "license": [
  10831. "BSD-3-Clause"
  10832. ],
  10833. "authors": [
  10834. {
  10835. "name": "Sebastian Bergmann",
  10836. "email": "sebastian@phpunit.de"
  10837. },
  10838. {
  10839. "name": "Jeff Welch",
  10840. "email": "whatthejeff@gmail.com"
  10841. },
  10842. {
  10843. "name": "Adam Harvey",
  10844. "email": "aharvey@php.net"
  10845. }
  10846. ],
  10847. "description": "Provides functionality to recursively process PHP variables",
  10848. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10849. "support": {
  10850. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10851. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10852. },
  10853. "funding": [
  10854. {
  10855. "url": "https://github.com/sebastianbergmann",
  10856. "type": "github"
  10857. }
  10858. ],
  10859. "time": "2023-02-03T07:05:40+00:00"
  10860. },
  10861. {
  10862. "name": "sebastian/type",
  10863. "version": "4.0.0",
  10864. "source": {
  10865. "type": "git",
  10866. "url": "https://github.com/sebastianbergmann/type.git",
  10867. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10868. },
  10869. "dist": {
  10870. "type": "zip",
  10871. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10872. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10873. "shasum": ""
  10874. },
  10875. "require": {
  10876. "php": ">=8.1"
  10877. },
  10878. "require-dev": {
  10879. "phpunit/phpunit": "^10.0"
  10880. },
  10881. "type": "library",
  10882. "extra": {
  10883. "branch-alias": {
  10884. "dev-main": "4.0-dev"
  10885. }
  10886. },
  10887. "autoload": {
  10888. "classmap": [
  10889. "src/"
  10890. ]
  10891. },
  10892. "notification-url": "https://packagist.org/downloads/",
  10893. "license": [
  10894. "BSD-3-Clause"
  10895. ],
  10896. "authors": [
  10897. {
  10898. "name": "Sebastian Bergmann",
  10899. "email": "sebastian@phpunit.de",
  10900. "role": "lead"
  10901. }
  10902. ],
  10903. "description": "Collection of value objects that represent the types of the PHP type system",
  10904. "homepage": "https://github.com/sebastianbergmann/type",
  10905. "support": {
  10906. "issues": "https://github.com/sebastianbergmann/type/issues",
  10907. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10908. },
  10909. "funding": [
  10910. {
  10911. "url": "https://github.com/sebastianbergmann",
  10912. "type": "github"
  10913. }
  10914. ],
  10915. "time": "2023-02-03T07:10:45+00:00"
  10916. },
  10917. {
  10918. "name": "sebastian/version",
  10919. "version": "4.0.1",
  10920. "source": {
  10921. "type": "git",
  10922. "url": "https://github.com/sebastianbergmann/version.git",
  10923. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10924. },
  10925. "dist": {
  10926. "type": "zip",
  10927. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10928. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10929. "shasum": ""
  10930. },
  10931. "require": {
  10932. "php": ">=8.1"
  10933. },
  10934. "type": "library",
  10935. "extra": {
  10936. "branch-alias": {
  10937. "dev-main": "4.0-dev"
  10938. }
  10939. },
  10940. "autoload": {
  10941. "classmap": [
  10942. "src/"
  10943. ]
  10944. },
  10945. "notification-url": "https://packagist.org/downloads/",
  10946. "license": [
  10947. "BSD-3-Clause"
  10948. ],
  10949. "authors": [
  10950. {
  10951. "name": "Sebastian Bergmann",
  10952. "email": "sebastian@phpunit.de",
  10953. "role": "lead"
  10954. }
  10955. ],
  10956. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10957. "homepage": "https://github.com/sebastianbergmann/version",
  10958. "support": {
  10959. "issues": "https://github.com/sebastianbergmann/version/issues",
  10960. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10961. },
  10962. "funding": [
  10963. {
  10964. "url": "https://github.com/sebastianbergmann",
  10965. "type": "github"
  10966. }
  10967. ],
  10968. "time": "2023-02-07T11:34:05+00:00"
  10969. },
  10970. {
  10971. "name": "swoole/ide-helper",
  10972. "version": "5.1.5",
  10973. "source": {
  10974. "type": "git",
  10975. "url": "https://github.com/swoole/ide-helper.git",
  10976. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  10977. },
  10978. "dist": {
  10979. "type": "zip",
  10980. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10981. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10982. "shasum": ""
  10983. },
  10984. "type": "library",
  10985. "notification-url": "https://packagist.org/downloads/",
  10986. "license": [
  10987. "Apache-2.0"
  10988. ],
  10989. "authors": [
  10990. {
  10991. "name": "Team Swoole",
  10992. "email": "team@swoole.com"
  10993. }
  10994. ],
  10995. "description": "IDE help files for Swoole.",
  10996. "support": {
  10997. "issues": "https://github.com/swoole/ide-helper/issues",
  10998. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  10999. },
  11000. "time": "2024-11-05T07:35:30+00:00"
  11001. },
  11002. {
  11003. "name": "symfony/event-dispatcher",
  11004. "version": "v6.4.13",
  11005. "source": {
  11006. "type": "git",
  11007. "url": "https://github.com/symfony/event-dispatcher.git",
  11008. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11009. },
  11010. "dist": {
  11011. "type": "zip",
  11012. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11013. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11014. "shasum": ""
  11015. },
  11016. "require": {
  11017. "php": ">=8.1",
  11018. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11019. },
  11020. "conflict": {
  11021. "symfony/dependency-injection": "<5.4",
  11022. "symfony/service-contracts": "<2.5"
  11023. },
  11024. "provide": {
  11025. "psr/event-dispatcher-implementation": "1.0",
  11026. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11027. },
  11028. "require-dev": {
  11029. "psr/log": "^1|^2|^3",
  11030. "symfony/config": "^5.4|^6.0|^7.0",
  11031. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11032. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11033. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11034. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11035. "symfony/service-contracts": "^2.5|^3",
  11036. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11037. },
  11038. "type": "library",
  11039. "autoload": {
  11040. "psr-4": {
  11041. "Symfony\\Component\\EventDispatcher\\": ""
  11042. },
  11043. "exclude-from-classmap": [
  11044. "/Tests/"
  11045. ]
  11046. },
  11047. "notification-url": "https://packagist.org/downloads/",
  11048. "license": [
  11049. "MIT"
  11050. ],
  11051. "authors": [
  11052. {
  11053. "name": "Fabien Potencier",
  11054. "email": "fabien@symfony.com"
  11055. },
  11056. {
  11057. "name": "Symfony Community",
  11058. "homepage": "https://symfony.com/contributors"
  11059. }
  11060. ],
  11061. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11062. "homepage": "https://symfony.com",
  11063. "support": {
  11064. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11065. },
  11066. "funding": [
  11067. {
  11068. "url": "https://symfony.com/sponsor",
  11069. "type": "custom"
  11070. },
  11071. {
  11072. "url": "https://github.com/fabpot",
  11073. "type": "github"
  11074. },
  11075. {
  11076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11077. "type": "tidelift"
  11078. }
  11079. ],
  11080. "time": "2024-09-25T14:18:03+00:00"
  11081. },
  11082. {
  11083. "name": "symfony/event-dispatcher-contracts",
  11084. "version": "v3.5.0",
  11085. "source": {
  11086. "type": "git",
  11087. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11088. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  11089. },
  11090. "dist": {
  11091. "type": "zip",
  11092. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  11093. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  11094. "shasum": ""
  11095. },
  11096. "require": {
  11097. "php": ">=8.1",
  11098. "psr/event-dispatcher": "^1"
  11099. },
  11100. "type": "library",
  11101. "extra": {
  11102. "branch-alias": {
  11103. "dev-main": "3.5-dev"
  11104. },
  11105. "thanks": {
  11106. "name": "symfony/contracts",
  11107. "url": "https://github.com/symfony/contracts"
  11108. }
  11109. },
  11110. "autoload": {
  11111. "psr-4": {
  11112. "Symfony\\Contracts\\EventDispatcher\\": ""
  11113. }
  11114. },
  11115. "notification-url": "https://packagist.org/downloads/",
  11116. "license": [
  11117. "MIT"
  11118. ],
  11119. "authors": [
  11120. {
  11121. "name": "Nicolas Grekas",
  11122. "email": "p@tchwork.com"
  11123. },
  11124. {
  11125. "name": "Symfony Community",
  11126. "homepage": "https://symfony.com/contributors"
  11127. }
  11128. ],
  11129. "description": "Generic abstractions related to dispatching event",
  11130. "homepage": "https://symfony.com",
  11131. "keywords": [
  11132. "abstractions",
  11133. "contracts",
  11134. "decoupling",
  11135. "interfaces",
  11136. "interoperability",
  11137. "standards"
  11138. ],
  11139. "support": {
  11140. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  11141. },
  11142. "funding": [
  11143. {
  11144. "url": "https://symfony.com/sponsor",
  11145. "type": "custom"
  11146. },
  11147. {
  11148. "url": "https://github.com/fabpot",
  11149. "type": "github"
  11150. },
  11151. {
  11152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11153. "type": "tidelift"
  11154. }
  11155. ],
  11156. "time": "2024-04-18T09:32:20+00:00"
  11157. },
  11158. {
  11159. "name": "symfony/filesystem",
  11160. "version": "v6.4.13",
  11161. "source": {
  11162. "type": "git",
  11163. "url": "https://github.com/symfony/filesystem.git",
  11164. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11165. },
  11166. "dist": {
  11167. "type": "zip",
  11168. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11169. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11170. "shasum": ""
  11171. },
  11172. "require": {
  11173. "php": ">=8.1",
  11174. "symfony/polyfill-ctype": "~1.8",
  11175. "symfony/polyfill-mbstring": "~1.8"
  11176. },
  11177. "require-dev": {
  11178. "symfony/process": "^5.4|^6.4|^7.0"
  11179. },
  11180. "type": "library",
  11181. "autoload": {
  11182. "psr-4": {
  11183. "Symfony\\Component\\Filesystem\\": ""
  11184. },
  11185. "exclude-from-classmap": [
  11186. "/Tests/"
  11187. ]
  11188. },
  11189. "notification-url": "https://packagist.org/downloads/",
  11190. "license": [
  11191. "MIT"
  11192. ],
  11193. "authors": [
  11194. {
  11195. "name": "Fabien Potencier",
  11196. "email": "fabien@symfony.com"
  11197. },
  11198. {
  11199. "name": "Symfony Community",
  11200. "homepage": "https://symfony.com/contributors"
  11201. }
  11202. ],
  11203. "description": "Provides basic utilities for the filesystem",
  11204. "homepage": "https://symfony.com",
  11205. "support": {
  11206. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11207. },
  11208. "funding": [
  11209. {
  11210. "url": "https://symfony.com/sponsor",
  11211. "type": "custom"
  11212. },
  11213. {
  11214. "url": "https://github.com/fabpot",
  11215. "type": "github"
  11216. },
  11217. {
  11218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11219. "type": "tidelift"
  11220. }
  11221. ],
  11222. "time": "2024-10-25T15:07:50+00:00"
  11223. },
  11224. {
  11225. "name": "symfony/http-foundation",
  11226. "version": "v6.4.15",
  11227. "source": {
  11228. "type": "git",
  11229. "url": "https://github.com/symfony/http-foundation.git",
  11230. "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6"
  11231. },
  11232. "dist": {
  11233. "type": "zip",
  11234. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6",
  11235. "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6",
  11236. "shasum": ""
  11237. },
  11238. "require": {
  11239. "php": ">=8.1",
  11240. "symfony/deprecation-contracts": "^2.5|^3",
  11241. "symfony/polyfill-mbstring": "~1.1",
  11242. "symfony/polyfill-php83": "^1.27"
  11243. },
  11244. "conflict": {
  11245. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11246. },
  11247. "require-dev": {
  11248. "doctrine/dbal": "^2.13.1|^3|^4",
  11249. "predis/predis": "^1.1|^2.0",
  11250. "symfony/cache": "^6.4.12|^7.1.5",
  11251. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11252. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11253. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11254. "symfony/mime": "^5.4|^6.0|^7.0",
  11255. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11256. },
  11257. "type": "library",
  11258. "autoload": {
  11259. "psr-4": {
  11260. "Symfony\\Component\\HttpFoundation\\": ""
  11261. },
  11262. "exclude-from-classmap": [
  11263. "/Tests/"
  11264. ]
  11265. },
  11266. "notification-url": "https://packagist.org/downloads/",
  11267. "license": [
  11268. "MIT"
  11269. ],
  11270. "authors": [
  11271. {
  11272. "name": "Fabien Potencier",
  11273. "email": "fabien@symfony.com"
  11274. },
  11275. {
  11276. "name": "Symfony Community",
  11277. "homepage": "https://symfony.com/contributors"
  11278. }
  11279. ],
  11280. "description": "Defines an object-oriented layer for the HTTP specification",
  11281. "homepage": "https://symfony.com",
  11282. "support": {
  11283. "source": "https://github.com/symfony/http-foundation/tree/v6.4.15"
  11284. },
  11285. "funding": [
  11286. {
  11287. "url": "https://symfony.com/sponsor",
  11288. "type": "custom"
  11289. },
  11290. {
  11291. "url": "https://github.com/fabpot",
  11292. "type": "github"
  11293. },
  11294. {
  11295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11296. "type": "tidelift"
  11297. }
  11298. ],
  11299. "time": "2024-11-08T16:09:24+00:00"
  11300. },
  11301. {
  11302. "name": "symfony/options-resolver",
  11303. "version": "v6.4.13",
  11304. "source": {
  11305. "type": "git",
  11306. "url": "https://github.com/symfony/options-resolver.git",
  11307. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11308. },
  11309. "dist": {
  11310. "type": "zip",
  11311. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11312. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11313. "shasum": ""
  11314. },
  11315. "require": {
  11316. "php": ">=8.1",
  11317. "symfony/deprecation-contracts": "^2.5|^3"
  11318. },
  11319. "type": "library",
  11320. "autoload": {
  11321. "psr-4": {
  11322. "Symfony\\Component\\OptionsResolver\\": ""
  11323. },
  11324. "exclude-from-classmap": [
  11325. "/Tests/"
  11326. ]
  11327. },
  11328. "notification-url": "https://packagist.org/downloads/",
  11329. "license": [
  11330. "MIT"
  11331. ],
  11332. "authors": [
  11333. {
  11334. "name": "Fabien Potencier",
  11335. "email": "fabien@symfony.com"
  11336. },
  11337. {
  11338. "name": "Symfony Community",
  11339. "homepage": "https://symfony.com/contributors"
  11340. }
  11341. ],
  11342. "description": "Provides an improved replacement for the array_replace PHP function",
  11343. "homepage": "https://symfony.com",
  11344. "keywords": [
  11345. "config",
  11346. "configuration",
  11347. "options"
  11348. ],
  11349. "support": {
  11350. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11351. },
  11352. "funding": [
  11353. {
  11354. "url": "https://symfony.com/sponsor",
  11355. "type": "custom"
  11356. },
  11357. {
  11358. "url": "https://github.com/fabpot",
  11359. "type": "github"
  11360. },
  11361. {
  11362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11363. "type": "tidelift"
  11364. }
  11365. ],
  11366. "time": "2024-09-25T14:18:03+00:00"
  11367. },
  11368. {
  11369. "name": "symfony/polyfill-php81",
  11370. "version": "v1.31.0",
  11371. "source": {
  11372. "type": "git",
  11373. "url": "https://github.com/symfony/polyfill-php81.git",
  11374. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11375. },
  11376. "dist": {
  11377. "type": "zip",
  11378. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11379. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11380. "shasum": ""
  11381. },
  11382. "require": {
  11383. "php": ">=7.2"
  11384. },
  11385. "type": "library",
  11386. "extra": {
  11387. "thanks": {
  11388. "name": "symfony/polyfill",
  11389. "url": "https://github.com/symfony/polyfill"
  11390. }
  11391. },
  11392. "autoload": {
  11393. "files": [
  11394. "bootstrap.php"
  11395. ],
  11396. "psr-4": {
  11397. "Symfony\\Polyfill\\Php81\\": ""
  11398. },
  11399. "classmap": [
  11400. "Resources/stubs"
  11401. ]
  11402. },
  11403. "notification-url": "https://packagist.org/downloads/",
  11404. "license": [
  11405. "MIT"
  11406. ],
  11407. "authors": [
  11408. {
  11409. "name": "Nicolas Grekas",
  11410. "email": "p@tchwork.com"
  11411. },
  11412. {
  11413. "name": "Symfony Community",
  11414. "homepage": "https://symfony.com/contributors"
  11415. }
  11416. ],
  11417. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11418. "homepage": "https://symfony.com",
  11419. "keywords": [
  11420. "compatibility",
  11421. "polyfill",
  11422. "portable",
  11423. "shim"
  11424. ],
  11425. "support": {
  11426. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11427. },
  11428. "funding": [
  11429. {
  11430. "url": "https://symfony.com/sponsor",
  11431. "type": "custom"
  11432. },
  11433. {
  11434. "url": "https://github.com/fabpot",
  11435. "type": "github"
  11436. },
  11437. {
  11438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11439. "type": "tidelift"
  11440. }
  11441. ],
  11442. "time": "2024-09-09T11:45:10+00:00"
  11443. },
  11444. {
  11445. "name": "symfony/polyfill-php83",
  11446. "version": "v1.31.0",
  11447. "source": {
  11448. "type": "git",
  11449. "url": "https://github.com/symfony/polyfill-php83.git",
  11450. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11451. },
  11452. "dist": {
  11453. "type": "zip",
  11454. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11455. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11456. "shasum": ""
  11457. },
  11458. "require": {
  11459. "php": ">=7.2"
  11460. },
  11461. "type": "library",
  11462. "extra": {
  11463. "thanks": {
  11464. "name": "symfony/polyfill",
  11465. "url": "https://github.com/symfony/polyfill"
  11466. }
  11467. },
  11468. "autoload": {
  11469. "files": [
  11470. "bootstrap.php"
  11471. ],
  11472. "psr-4": {
  11473. "Symfony\\Polyfill\\Php83\\": ""
  11474. },
  11475. "classmap": [
  11476. "Resources/stubs"
  11477. ]
  11478. },
  11479. "notification-url": "https://packagist.org/downloads/",
  11480. "license": [
  11481. "MIT"
  11482. ],
  11483. "authors": [
  11484. {
  11485. "name": "Nicolas Grekas",
  11486. "email": "p@tchwork.com"
  11487. },
  11488. {
  11489. "name": "Symfony Community",
  11490. "homepage": "https://symfony.com/contributors"
  11491. }
  11492. ],
  11493. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11494. "homepage": "https://symfony.com",
  11495. "keywords": [
  11496. "compatibility",
  11497. "polyfill",
  11498. "portable",
  11499. "shim"
  11500. ],
  11501. "support": {
  11502. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11503. },
  11504. "funding": [
  11505. {
  11506. "url": "https://symfony.com/sponsor",
  11507. "type": "custom"
  11508. },
  11509. {
  11510. "url": "https://github.com/fabpot",
  11511. "type": "github"
  11512. },
  11513. {
  11514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11515. "type": "tidelift"
  11516. }
  11517. ],
  11518. "time": "2024-09-09T11:45:10+00:00"
  11519. },
  11520. {
  11521. "name": "symfony/process",
  11522. "version": "v6.4.15",
  11523. "source": {
  11524. "type": "git",
  11525. "url": "https://github.com/symfony/process.git",
  11526. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11527. },
  11528. "dist": {
  11529. "type": "zip",
  11530. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11531. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11532. "shasum": ""
  11533. },
  11534. "require": {
  11535. "php": ">=8.1"
  11536. },
  11537. "type": "library",
  11538. "autoload": {
  11539. "psr-4": {
  11540. "Symfony\\Component\\Process\\": ""
  11541. },
  11542. "exclude-from-classmap": [
  11543. "/Tests/"
  11544. ]
  11545. },
  11546. "notification-url": "https://packagist.org/downloads/",
  11547. "license": [
  11548. "MIT"
  11549. ],
  11550. "authors": [
  11551. {
  11552. "name": "Fabien Potencier",
  11553. "email": "fabien@symfony.com"
  11554. },
  11555. {
  11556. "name": "Symfony Community",
  11557. "homepage": "https://symfony.com/contributors"
  11558. }
  11559. ],
  11560. "description": "Executes commands in sub-processes",
  11561. "homepage": "https://symfony.com",
  11562. "support": {
  11563. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11564. },
  11565. "funding": [
  11566. {
  11567. "url": "https://symfony.com/sponsor",
  11568. "type": "custom"
  11569. },
  11570. {
  11571. "url": "https://github.com/fabpot",
  11572. "type": "github"
  11573. },
  11574. {
  11575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11576. "type": "tidelift"
  11577. }
  11578. ],
  11579. "time": "2024-11-06T14:19:14+00:00"
  11580. },
  11581. {
  11582. "name": "symfony/stopwatch",
  11583. "version": "v6.4.13",
  11584. "source": {
  11585. "type": "git",
  11586. "url": "https://github.com/symfony/stopwatch.git",
  11587. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11588. },
  11589. "dist": {
  11590. "type": "zip",
  11591. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11592. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11593. "shasum": ""
  11594. },
  11595. "require": {
  11596. "php": ">=8.1",
  11597. "symfony/service-contracts": "^2.5|^3"
  11598. },
  11599. "type": "library",
  11600. "autoload": {
  11601. "psr-4": {
  11602. "Symfony\\Component\\Stopwatch\\": ""
  11603. },
  11604. "exclude-from-classmap": [
  11605. "/Tests/"
  11606. ]
  11607. },
  11608. "notification-url": "https://packagist.org/downloads/",
  11609. "license": [
  11610. "MIT"
  11611. ],
  11612. "authors": [
  11613. {
  11614. "name": "Fabien Potencier",
  11615. "email": "fabien@symfony.com"
  11616. },
  11617. {
  11618. "name": "Symfony Community",
  11619. "homepage": "https://symfony.com/contributors"
  11620. }
  11621. ],
  11622. "description": "Provides a way to profile code",
  11623. "homepage": "https://symfony.com",
  11624. "support": {
  11625. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11626. },
  11627. "funding": [
  11628. {
  11629. "url": "https://symfony.com/sponsor",
  11630. "type": "custom"
  11631. },
  11632. {
  11633. "url": "https://github.com/fabpot",
  11634. "type": "github"
  11635. },
  11636. {
  11637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11638. "type": "tidelift"
  11639. }
  11640. ],
  11641. "time": "2024-09-25T14:18:03+00:00"
  11642. },
  11643. {
  11644. "name": "theseer/tokenizer",
  11645. "version": "1.2.3",
  11646. "source": {
  11647. "type": "git",
  11648. "url": "https://github.com/theseer/tokenizer.git",
  11649. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11650. },
  11651. "dist": {
  11652. "type": "zip",
  11653. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11654. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11655. "shasum": ""
  11656. },
  11657. "require": {
  11658. "ext-dom": "*",
  11659. "ext-tokenizer": "*",
  11660. "ext-xmlwriter": "*",
  11661. "php": "^7.2 || ^8.0"
  11662. },
  11663. "type": "library",
  11664. "autoload": {
  11665. "classmap": [
  11666. "src/"
  11667. ]
  11668. },
  11669. "notification-url": "https://packagist.org/downloads/",
  11670. "license": [
  11671. "BSD-3-Clause"
  11672. ],
  11673. "authors": [
  11674. {
  11675. "name": "Arne Blankerts",
  11676. "email": "arne@blankerts.de",
  11677. "role": "Developer"
  11678. }
  11679. ],
  11680. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11681. "support": {
  11682. "issues": "https://github.com/theseer/tokenizer/issues",
  11683. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11684. },
  11685. "funding": [
  11686. {
  11687. "url": "https://github.com/theseer",
  11688. "type": "github"
  11689. }
  11690. ],
  11691. "time": "2024-03-03T12:36:25+00:00"
  11692. },
  11693. {
  11694. "name": "zx/php-tools",
  11695. "version": "v0.0.1",
  11696. "source": {
  11697. "type": "git",
  11698. "url": "https://gitee.com/open-php/php-tools.git",
  11699. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11700. },
  11701. "require": {
  11702. "php": ">=7.0"
  11703. },
  11704. "type": "library",
  11705. "autoload": {
  11706. "psr-4": {
  11707. "ZX\\": "src/"
  11708. }
  11709. },
  11710. "notification-url": "https://packagist.org/downloads/",
  11711. "license": [
  11712. "mit"
  11713. ],
  11714. "authors": [
  11715. {
  11716. "name": "zx",
  11717. "email": "903464207@qq.com"
  11718. }
  11719. ],
  11720. "description": "php-tools",
  11721. "time": "2023-06-25T06:24:10+00:00"
  11722. }
  11723. ],
  11724. "aliases": [],
  11725. "minimum-stability": "dev",
  11726. "stability-flags": [],
  11727. "prefer-stable": true,
  11728. "prefer-lowest": false,
  11729. "platform": {
  11730. "php": ">=8.1"
  11731. },
  11732. "platform-dev": [],
  11733. "plugin-api-version": "2.6.0"
  11734. }