composer.lock 415 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "d5f7fd6fcee090d2a5947dfb2b5bd447",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.3",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  224. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9",
  232. "phpstan/phpstan": "1.4.10 || 1.10.15",
  233. "phpstan/phpstan-phpunit": "^1.0",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psalm/plugin-phpunit": "0.18.4",
  236. "psr/log": "^1 || ^2 || ^3",
  237. "vimeo/psalm": "4.30.0 || 5.12.0"
  238. },
  239. "suggest": {
  240. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  241. },
  242. "type": "library",
  243. "autoload": {
  244. "psr-4": {
  245. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "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.",
  253. "homepage": "https://www.doctrine-project.org/",
  254. "support": {
  255. "issues": "https://github.com/doctrine/deprecations/issues",
  256. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  257. },
  258. "time": "2024-01-30T19:34:25+00:00"
  259. },
  260. {
  261. "name": "doctrine/inflector",
  262. "version": "2.0.10",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/doctrine/inflector.git",
  266. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  271. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": "^7.2 || ^8.0"
  276. },
  277. "require-dev": {
  278. "doctrine/coding-standard": "^11.0",
  279. "phpstan/phpstan": "^1.8",
  280. "phpstan/phpstan-phpunit": "^1.1",
  281. "phpstan/phpstan-strict-rules": "^1.3",
  282. "phpunit/phpunit": "^8.5 || ^9.5",
  283. "vimeo/psalm": "^4.25 || ^5.4"
  284. },
  285. "type": "library",
  286. "autoload": {
  287. "psr-4": {
  288. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Guilherme Blanco",
  298. "email": "guilhermeblanco@gmail.com"
  299. },
  300. {
  301. "name": "Roman Borschel",
  302. "email": "roman@code-factory.org"
  303. },
  304. {
  305. "name": "Benjamin Eberlei",
  306. "email": "kontakt@beberlei.de"
  307. },
  308. {
  309. "name": "Jonathan Wage",
  310. "email": "jonwage@gmail.com"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  318. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  319. "keywords": [
  320. "inflection",
  321. "inflector",
  322. "lowercase",
  323. "manipulation",
  324. "php",
  325. "plural",
  326. "singular",
  327. "strings",
  328. "uppercase",
  329. "words"
  330. ],
  331. "support": {
  332. "issues": "https://github.com/doctrine/inflector/issues",
  333. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  334. },
  335. "funding": [
  336. {
  337. "url": "https://www.doctrine-project.org/sponsorship.html",
  338. "type": "custom"
  339. },
  340. {
  341. "url": "https://www.patreon.com/phpdoctrine",
  342. "type": "patreon"
  343. },
  344. {
  345. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  346. "type": "tidelift"
  347. }
  348. ],
  349. "time": "2024-02-18T20:23:39+00:00"
  350. },
  351. {
  352. "name": "doctrine/instantiator",
  353. "version": "1.5.0",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/doctrine/instantiator.git",
  357. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  362. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^7.1 || ^8.0"
  367. },
  368. "require-dev": {
  369. "doctrine/coding-standard": "^9 || ^11",
  370. "ext-pdo": "*",
  371. "ext-phar": "*",
  372. "phpbench/phpbench": "^0.16 || ^1",
  373. "phpstan/phpstan": "^1.4",
  374. "phpstan/phpstan-phpunit": "^1",
  375. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  376. "vimeo/psalm": "^4.30 || ^5.4"
  377. },
  378. "type": "library",
  379. "autoload": {
  380. "psr-4": {
  381. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  382. }
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "MIT"
  387. ],
  388. "authors": [
  389. {
  390. "name": "Marco Pivetta",
  391. "email": "ocramius@gmail.com",
  392. "homepage": "https://ocramius.github.io/"
  393. }
  394. ],
  395. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  396. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  397. "keywords": [
  398. "constructor",
  399. "instantiate"
  400. ],
  401. "support": {
  402. "issues": "https://github.com/doctrine/instantiator/issues",
  403. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://www.doctrine-project.org/sponsorship.html",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://www.patreon.com/phpdoctrine",
  412. "type": "patreon"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2022-12-30T00:15:36+00:00"
  420. },
  421. {
  422. "name": "doctrine/lexer",
  423. "version": "2.1.1",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/doctrine/lexer.git",
  427. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  432. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "doctrine/deprecations": "^1.0",
  437. "php": "^7.1 || ^8.0"
  438. },
  439. "require-dev": {
  440. "doctrine/coding-standard": "^9 || ^12",
  441. "phpstan/phpstan": "^1.3",
  442. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  443. "psalm/plugin-phpunit": "^0.18.3",
  444. "vimeo/psalm": "^4.11 || ^5.21"
  445. },
  446. "type": "library",
  447. "autoload": {
  448. "psr-4": {
  449. "Doctrine\\Common\\Lexer\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Guilherme Blanco",
  459. "email": "guilhermeblanco@gmail.com"
  460. },
  461. {
  462. "name": "Roman Borschel",
  463. "email": "roman@code-factory.org"
  464. },
  465. {
  466. "name": "Johannes Schmitt",
  467. "email": "schmittjoh@gmail.com"
  468. }
  469. ],
  470. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  471. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  472. "keywords": [
  473. "annotations",
  474. "docblock",
  475. "lexer",
  476. "parser",
  477. "php"
  478. ],
  479. "support": {
  480. "issues": "https://github.com/doctrine/lexer/issues",
  481. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  482. },
  483. "funding": [
  484. {
  485. "url": "https://www.doctrine-project.org/sponsorship.html",
  486. "type": "custom"
  487. },
  488. {
  489. "url": "https://www.patreon.com/phpdoctrine",
  490. "type": "patreon"
  491. },
  492. {
  493. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  494. "type": "tidelift"
  495. }
  496. ],
  497. "time": "2024-02-05T11:35:39+00:00"
  498. },
  499. {
  500. "name": "easyswoole/spl",
  501. "version": "2.1.3",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/easy-swoole/spl.git",
  505. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  510. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "ext-dom": "*",
  515. "ext-json": "*",
  516. "ext-simplexml": "*",
  517. "php": ">=8.1.0"
  518. },
  519. "require-dev": {
  520. "easyswoole/phpunit": "^1.0",
  521. "easyswoole/swoole-ide-helper": "^1.0"
  522. },
  523. "type": "library",
  524. "autoload": {
  525. "psr-4": {
  526. "EasySwoole\\Spl\\": "src/",
  527. "EasySwoole\\Spl\\Test\\": "test/"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "Apache-2.0"
  533. ],
  534. "authors": [
  535. {
  536. "name": "YF",
  537. "email": "291323003@qq.com"
  538. }
  539. ],
  540. "description": "php stander lib",
  541. "homepage": "https://www.easyswoole.com/",
  542. "keywords": [
  543. "async",
  544. "easyswoole",
  545. "framework",
  546. "swoole"
  547. ],
  548. "support": {
  549. "issues": "https://github.com/easy-swoole/spl/issues",
  550. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  551. },
  552. "time": "2024-07-09T14:44:25+00:00"
  553. },
  554. {
  555. "name": "easyswoole/verifycode",
  556. "version": "3.1.2",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/easy-swoole/verify-code.git",
  560. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  565. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "easyswoole/spl": "^2.0",
  570. "ext-gd": "*",
  571. "php": ">=8.1"
  572. },
  573. "type": "library",
  574. "autoload": {
  575. "psr-4": {
  576. "EasySwoole\\VerifyCode\\": "src"
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "Apache-2.0"
  582. ],
  583. "authors": [
  584. {
  585. "name": "YF",
  586. "email": "291323003@qq.com"
  587. },
  588. {
  589. "name": "evalor",
  590. "email": "mipone@foxmail.com"
  591. }
  592. ],
  593. "support": {
  594. "issues": "https://github.com/easy-swoole/verify-code/issues",
  595. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  596. },
  597. "time": "2023-09-06T06:45:56+00:00"
  598. },
  599. {
  600. "name": "egulias/email-validator",
  601. "version": "3.2.6",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/egulias/EmailValidator.git",
  605. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  610. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "doctrine/lexer": "^1.2|^2",
  615. "php": ">=7.2",
  616. "symfony/polyfill-intl-idn": "^1.15"
  617. },
  618. "require-dev": {
  619. "phpunit/phpunit": "^8.5.8|^9.3.3",
  620. "vimeo/psalm": "^4"
  621. },
  622. "suggest": {
  623. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-master": "3.0.x-dev"
  629. }
  630. },
  631. "autoload": {
  632. "psr-4": {
  633. "Egulias\\EmailValidator\\": "src"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Eduardo Gulias Davis"
  643. }
  644. ],
  645. "description": "A library for validating emails against several RFCs",
  646. "homepage": "https://github.com/egulias/EmailValidator",
  647. "keywords": [
  648. "email",
  649. "emailvalidation",
  650. "emailvalidator",
  651. "validation",
  652. "validator"
  653. ],
  654. "support": {
  655. "issues": "https://github.com/egulias/EmailValidator/issues",
  656. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  657. },
  658. "funding": [
  659. {
  660. "url": "https://github.com/egulias",
  661. "type": "github"
  662. }
  663. ],
  664. "time": "2023-06-01T07:04:22+00:00"
  665. },
  666. {
  667. "name": "fig/http-message-util",
  668. "version": "1.1.5",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/php-fig/http-message-util.git",
  672. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  677. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": "^5.3 || ^7.0 || ^8.0"
  682. },
  683. "suggest": {
  684. "psr/http-message": "The package containing the PSR-7 interfaces"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-master": "1.1.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Fig\\Http\\Message\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "PHP-FIG",
  704. "homepage": "https://www.php-fig.org/"
  705. }
  706. ],
  707. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  708. "keywords": [
  709. "http",
  710. "http-message",
  711. "psr",
  712. "psr-7",
  713. "request",
  714. "response"
  715. ],
  716. "support": {
  717. "issues": "https://github.com/php-fig/http-message-util/issues",
  718. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  719. },
  720. "time": "2020-11-24T22:02:12+00:00"
  721. },
  722. {
  723. "name": "graham-campbell/result-type",
  724. "version": "v1.1.3",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  728. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  733. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "php": "^7.2.5 || ^8.0",
  738. "phpoption/phpoption": "^1.9.3"
  739. },
  740. "require-dev": {
  741. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "GrahamCampbell\\ResultType\\": "src/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Graham Campbell",
  756. "email": "hello@gjcampbell.co.uk",
  757. "homepage": "https://github.com/GrahamCampbell"
  758. }
  759. ],
  760. "description": "An Implementation Of The Result Type",
  761. "keywords": [
  762. "Graham Campbell",
  763. "GrahamCampbell",
  764. "Result Type",
  765. "Result-Type",
  766. "result"
  767. ],
  768. "support": {
  769. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  770. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  771. },
  772. "funding": [
  773. {
  774. "url": "https://github.com/GrahamCampbell",
  775. "type": "github"
  776. },
  777. {
  778. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  779. "type": "tidelift"
  780. }
  781. ],
  782. "time": "2024-07-20T21:45:45+00:00"
  783. },
  784. {
  785. "name": "guzzlehttp/guzzle",
  786. "version": "7.9.2",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/guzzle/guzzle.git",
  790. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  795. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "ext-json": "*",
  800. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  801. "guzzlehttp/psr7": "^2.7.0",
  802. "php": "^7.2.5 || ^8.0",
  803. "psr/http-client": "^1.0",
  804. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  805. },
  806. "provide": {
  807. "psr/http-client-implementation": "1.0"
  808. },
  809. "require-dev": {
  810. "bamarni/composer-bin-plugin": "^1.8.2",
  811. "ext-curl": "*",
  812. "guzzle/client-integration-tests": "3.0.2",
  813. "php-http/message-factory": "^1.1",
  814. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  815. "psr/log": "^1.1 || ^2.0 || ^3.0"
  816. },
  817. "suggest": {
  818. "ext-curl": "Required for CURL handler support",
  819. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  820. "psr/log": "Required for using the Log middleware"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "bamarni-bin": {
  825. "bin-links": true,
  826. "forward-command": false
  827. }
  828. },
  829. "autoload": {
  830. "files": [
  831. "src/functions_include.php"
  832. ],
  833. "psr-4": {
  834. "GuzzleHttp\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Graham Campbell",
  844. "email": "hello@gjcampbell.co.uk",
  845. "homepage": "https://github.com/GrahamCampbell"
  846. },
  847. {
  848. "name": "Michael Dowling",
  849. "email": "mtdowling@gmail.com",
  850. "homepage": "https://github.com/mtdowling"
  851. },
  852. {
  853. "name": "Jeremy Lindblom",
  854. "email": "jeremeamia@gmail.com",
  855. "homepage": "https://github.com/jeremeamia"
  856. },
  857. {
  858. "name": "George Mponos",
  859. "email": "gmponos@gmail.com",
  860. "homepage": "https://github.com/gmponos"
  861. },
  862. {
  863. "name": "Tobias Nyholm",
  864. "email": "tobias.nyholm@gmail.com",
  865. "homepage": "https://github.com/Nyholm"
  866. },
  867. {
  868. "name": "Márk Sági-Kazár",
  869. "email": "mark.sagikazar@gmail.com",
  870. "homepage": "https://github.com/sagikazarmark"
  871. },
  872. {
  873. "name": "Tobias Schultze",
  874. "email": "webmaster@tubo-world.de",
  875. "homepage": "https://github.com/Tobion"
  876. }
  877. ],
  878. "description": "Guzzle is a PHP HTTP client library",
  879. "keywords": [
  880. "client",
  881. "curl",
  882. "framework",
  883. "http",
  884. "http client",
  885. "psr-18",
  886. "psr-7",
  887. "rest",
  888. "web service"
  889. ],
  890. "support": {
  891. "issues": "https://github.com/guzzle/guzzle/issues",
  892. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://github.com/GrahamCampbell",
  897. "type": "github"
  898. },
  899. {
  900. "url": "https://github.com/Nyholm",
  901. "type": "github"
  902. },
  903. {
  904. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  905. "type": "tidelift"
  906. }
  907. ],
  908. "time": "2024-07-24T11:22:20+00:00"
  909. },
  910. {
  911. "name": "guzzlehttp/promises",
  912. "version": "2.0.4",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/guzzle/promises.git",
  916. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  921. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": "^7.2.5 || ^8.0"
  926. },
  927. "require-dev": {
  928. "bamarni/composer-bin-plugin": "^1.8.2",
  929. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  930. },
  931. "type": "library",
  932. "extra": {
  933. "bamarni-bin": {
  934. "bin-links": true,
  935. "forward-command": false
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "GuzzleHttp\\Promise\\": "src/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Graham Campbell",
  950. "email": "hello@gjcampbell.co.uk",
  951. "homepage": "https://github.com/GrahamCampbell"
  952. },
  953. {
  954. "name": "Michael Dowling",
  955. "email": "mtdowling@gmail.com",
  956. "homepage": "https://github.com/mtdowling"
  957. },
  958. {
  959. "name": "Tobias Nyholm",
  960. "email": "tobias.nyholm@gmail.com",
  961. "homepage": "https://github.com/Nyholm"
  962. },
  963. {
  964. "name": "Tobias Schultze",
  965. "email": "webmaster@tubo-world.de",
  966. "homepage": "https://github.com/Tobion"
  967. }
  968. ],
  969. "description": "Guzzle promises library",
  970. "keywords": [
  971. "promise"
  972. ],
  973. "support": {
  974. "issues": "https://github.com/guzzle/promises/issues",
  975. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  976. },
  977. "funding": [
  978. {
  979. "url": "https://github.com/GrahamCampbell",
  980. "type": "github"
  981. },
  982. {
  983. "url": "https://github.com/Nyholm",
  984. "type": "github"
  985. },
  986. {
  987. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  988. "type": "tidelift"
  989. }
  990. ],
  991. "time": "2024-10-17T10:06:22+00:00"
  992. },
  993. {
  994. "name": "guzzlehttp/psr7",
  995. "version": "2.7.0",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/guzzle/psr7.git",
  999. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1004. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": "^7.2.5 || ^8.0",
  1009. "psr/http-factory": "^1.0",
  1010. "psr/http-message": "^1.1 || ^2.0",
  1011. "ralouphie/getallheaders": "^3.0"
  1012. },
  1013. "provide": {
  1014. "psr/http-factory-implementation": "1.0",
  1015. "psr/http-message-implementation": "1.0"
  1016. },
  1017. "require-dev": {
  1018. "bamarni/composer-bin-plugin": "^1.8.2",
  1019. "http-interop/http-factory-tests": "0.9.0",
  1020. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1021. },
  1022. "suggest": {
  1023. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1024. },
  1025. "type": "library",
  1026. "extra": {
  1027. "bamarni-bin": {
  1028. "bin-links": true,
  1029. "forward-command": false
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "GuzzleHttp\\Psr7\\": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Graham Campbell",
  1044. "email": "hello@gjcampbell.co.uk",
  1045. "homepage": "https://github.com/GrahamCampbell"
  1046. },
  1047. {
  1048. "name": "Michael Dowling",
  1049. "email": "mtdowling@gmail.com",
  1050. "homepage": "https://github.com/mtdowling"
  1051. },
  1052. {
  1053. "name": "George Mponos",
  1054. "email": "gmponos@gmail.com",
  1055. "homepage": "https://github.com/gmponos"
  1056. },
  1057. {
  1058. "name": "Tobias Nyholm",
  1059. "email": "tobias.nyholm@gmail.com",
  1060. "homepage": "https://github.com/Nyholm"
  1061. },
  1062. {
  1063. "name": "Márk Sági-Kazár",
  1064. "email": "mark.sagikazar@gmail.com",
  1065. "homepage": "https://github.com/sagikazarmark"
  1066. },
  1067. {
  1068. "name": "Tobias Schultze",
  1069. "email": "webmaster@tubo-world.de",
  1070. "homepage": "https://github.com/Tobion"
  1071. },
  1072. {
  1073. "name": "Márk Sági-Kazár",
  1074. "email": "mark.sagikazar@gmail.com",
  1075. "homepage": "https://sagikazarmark.hu"
  1076. }
  1077. ],
  1078. "description": "PSR-7 message implementation that also provides common utility methods",
  1079. "keywords": [
  1080. "http",
  1081. "message",
  1082. "psr-7",
  1083. "request",
  1084. "response",
  1085. "stream",
  1086. "uri",
  1087. "url"
  1088. ],
  1089. "support": {
  1090. "issues": "https://github.com/guzzle/psr7/issues",
  1091. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://github.com/GrahamCampbell",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://github.com/Nyholm",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2024-07-18T11:15:46+00:00"
  1108. },
  1109. {
  1110. "name": "hyperf/amqp",
  1111. "version": "v3.1.42",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/hyperf/amqp.git",
  1115. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1120. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "doctrine/instantiator": "^1.2.0",
  1125. "hyperf/codec": "~3.1.0",
  1126. "hyperf/contract": "~3.1.0",
  1127. "hyperf/coroutine": "~3.1.0",
  1128. "hyperf/pool": "~3.1.0",
  1129. "hyperf/process": "~3.1.0",
  1130. "hyperf/support": "~3.1.0",
  1131. "hyperf/utils": "~3.1.0",
  1132. "php": ">=8.1",
  1133. "php-amqplib/php-amqplib": "^3.5",
  1134. "psr/container": "^1.0 || ^2.0",
  1135. "psr/event-dispatcher": "^1.0",
  1136. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1137. },
  1138. "suggest": {
  1139. "hyperf/di": "Required to use annotations.",
  1140. "hyperf/event": "Declare queue and start consumers automatically."
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-master": "3.1-dev"
  1146. },
  1147. "hyperf": {
  1148. "config": "Hyperf\\Amqp\\ConfigProvider"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Hyperf\\Amqp\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "description": "A amqplib for hyperf.",
  1161. "homepage": "https://hyperf.io",
  1162. "keywords": [
  1163. "AMQP",
  1164. "hyperf",
  1165. "php"
  1166. ],
  1167. "support": {
  1168. "docs": "https://hyperf.wiki",
  1169. "issues": "https://github.com/hyperf/hyperf/issues",
  1170. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1171. "source": "https://github.com/hyperf/hyperf"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1176. "type": "custom"
  1177. },
  1178. {
  1179. "url": "https://opencollective.com/hyperf",
  1180. "type": "open_collective"
  1181. }
  1182. ],
  1183. "time": "2024-09-25T02:54:12+00:00"
  1184. },
  1185. {
  1186. "name": "hyperf/cache",
  1187. "version": "v3.1.43",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/hyperf/cache.git",
  1191. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1196. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "hyperf/codec": "~3.1.0",
  1201. "hyperf/collection": "~3.1.0",
  1202. "hyperf/contract": "~3.1.0",
  1203. "hyperf/support": "~3.1.0",
  1204. "hyperf/utils": "~3.1.0",
  1205. "php": ">=8.1",
  1206. "psr/container": "^1.0 || ^2.0",
  1207. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1208. },
  1209. "suggest": {
  1210. "hyperf/di": "Use cache annotations.",
  1211. "hyperf/event": "Use listener to delete annotation cache."
  1212. },
  1213. "type": "library",
  1214. "extra": {
  1215. "branch-alias": {
  1216. "dev-master": "3.1-dev"
  1217. },
  1218. "hyperf": {
  1219. "config": "Hyperf\\Cache\\ConfigProvider"
  1220. }
  1221. },
  1222. "autoload": {
  1223. "psr-4": {
  1224. "Hyperf\\Cache\\": "src/"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "description": "A cache component for hyperf.",
  1232. "homepage": "https://hyperf.io",
  1233. "keywords": [
  1234. "cache",
  1235. "hyperf",
  1236. "php"
  1237. ],
  1238. "support": {
  1239. "docs": "https://hyperf.wiki",
  1240. "issues": "https://github.com/hyperf/hyperf/issues",
  1241. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1242. "source": "https://github.com/hyperf/hyperf"
  1243. },
  1244. "funding": [
  1245. {
  1246. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1247. "type": "custom"
  1248. },
  1249. {
  1250. "url": "https://opencollective.com/hyperf",
  1251. "type": "open_collective"
  1252. }
  1253. ],
  1254. "time": "2024-10-09T10:22:39+00:00"
  1255. },
  1256. {
  1257. "name": "hyperf/code-parser",
  1258. "version": "v3.1.42",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/hyperf/code-parser.git",
  1262. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1267. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "hyperf/collection": "~3.1.0",
  1272. "hyperf/stringable": "~3.1.0",
  1273. "hyperf/support": "~3.1.0",
  1274. "php": ">=8.1"
  1275. },
  1276. "suggest": {
  1277. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1278. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1279. },
  1280. "type": "library",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-master": "3.1-dev"
  1284. }
  1285. },
  1286. "autoload": {
  1287. "psr-4": {
  1288. "Hyperf\\CodeParser\\": "src/"
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "description": "A code parser component for Hyperf.",
  1296. "homepage": "https://hyperf.io",
  1297. "keywords": [
  1298. "code-parser",
  1299. "hyperf",
  1300. "php",
  1301. "swoole"
  1302. ],
  1303. "support": {
  1304. "docs": "https://hyperf.wiki",
  1305. "issues": "https://github.com/hyperf/hyperf/issues",
  1306. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1307. "source": "https://github.com/hyperf/hyperf"
  1308. },
  1309. "funding": [
  1310. {
  1311. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1312. "type": "custom"
  1313. },
  1314. {
  1315. "url": "https://opencollective.com/hyperf",
  1316. "type": "open_collective"
  1317. }
  1318. ],
  1319. "time": "2024-09-25T02:54:12+00:00"
  1320. },
  1321. {
  1322. "name": "hyperf/codec",
  1323. "version": "v3.1.42",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/hyperf/codec.git",
  1327. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1332. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1333. "shasum": ""
  1334. },
  1335. "require": {
  1336. "ext-json": "*",
  1337. "ext-xml": "*",
  1338. "hyperf/contract": "~3.1.0",
  1339. "php": ">=8.1"
  1340. },
  1341. "suggest": {
  1342. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1343. },
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-master": "3.1-dev"
  1348. }
  1349. },
  1350. "autoload": {
  1351. "psr-4": {
  1352. "Hyperf\\Codec\\": "src/"
  1353. }
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "description": "A codec component for Hyperf.",
  1360. "homepage": "https://hyperf.io",
  1361. "keywords": [
  1362. "codec",
  1363. "hyperf",
  1364. "php",
  1365. "swoole"
  1366. ],
  1367. "support": {
  1368. "docs": "https://hyperf.wiki",
  1369. "issues": "https://github.com/hyperf/hyperf/issues",
  1370. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1371. "source": "https://github.com/hyperf/hyperf"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://opencollective.com/hyperf",
  1380. "type": "open_collective"
  1381. }
  1382. ],
  1383. "time": "2024-09-25T02:54:12+00:00"
  1384. },
  1385. {
  1386. "name": "hyperf/collection",
  1387. "version": "v3.1.44",
  1388. "source": {
  1389. "type": "git",
  1390. "url": "https://github.com/hyperf/collection.git",
  1391. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1392. },
  1393. "dist": {
  1394. "type": "zip",
  1395. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1396. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  1397. "shasum": ""
  1398. },
  1399. "require": {
  1400. "hyperf/conditionable": "~3.1.0",
  1401. "hyperf/contract": "~3.1.0",
  1402. "hyperf/macroable": "~3.1.0",
  1403. "hyperf/stringable": "~3.1.0",
  1404. "php": ">=8.1"
  1405. },
  1406. "type": "library",
  1407. "extra": {
  1408. "branch-alias": {
  1409. "dev-master": "3.1-dev"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "files": [
  1414. "src/Functions.php"
  1415. ],
  1416. "psr-4": {
  1417. "Hyperf\\Collection\\": "src/"
  1418. }
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "MIT"
  1423. ],
  1424. "description": "Hyperf Collection package which come from illuminate/collections",
  1425. "homepage": "https://hyperf.io",
  1426. "keywords": [
  1427. "collection",
  1428. "hyperf",
  1429. "php",
  1430. "swoole"
  1431. ],
  1432. "support": {
  1433. "docs": "https://hyperf.wiki",
  1434. "issues": "https://github.com/hyperf/hyperf/issues",
  1435. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1436. "source": "https://github.com/hyperf/hyperf"
  1437. },
  1438. "funding": [
  1439. {
  1440. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1441. "type": "custom"
  1442. },
  1443. {
  1444. "url": "https://opencollective.com/hyperf",
  1445. "type": "open_collective"
  1446. }
  1447. ],
  1448. "time": "2024-10-23T10:12:23+00:00"
  1449. },
  1450. {
  1451. "name": "hyperf/command",
  1452. "version": "v3.1.42",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/hyperf/command.git",
  1456. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1461. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1462. "shasum": ""
  1463. },
  1464. "require": {
  1465. "hyperf/collection": "~3.1.0",
  1466. "hyperf/context": "~3.1.0",
  1467. "hyperf/contract": "~3.1.0",
  1468. "hyperf/coroutine": "~3.1.0",
  1469. "hyperf/di": "~3.1.0",
  1470. "hyperf/stringable": "~3.1.0",
  1471. "hyperf/support": "~3.1.0",
  1472. "hyperf/tappable": "~3.1.0",
  1473. "php": ">=8.1",
  1474. "psr/event-dispatcher": "^1.0",
  1475. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1476. },
  1477. "suggest": {
  1478. "hyperf/di": "Required to use annotations.",
  1479. "hyperf/event": "Required to use listeners."
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "branch-alias": {
  1484. "dev-master": "3.1-dev"
  1485. },
  1486. "hyperf": {
  1487. "config": "Hyperf\\Command\\ConfigProvider"
  1488. }
  1489. },
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Hyperf\\Command\\": "src/"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "description": "Command for hyperf",
  1500. "keywords": [
  1501. "command",
  1502. "php",
  1503. "swoole"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/hyperf/command/issues",
  1507. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1512. "type": "custom"
  1513. },
  1514. {
  1515. "url": "https://opencollective.com/hyperf",
  1516. "type": "open_collective"
  1517. }
  1518. ],
  1519. "time": "2024-09-25T02:54:12+00:00"
  1520. },
  1521. {
  1522. "name": "hyperf/conditionable",
  1523. "version": "v3.1.42",
  1524. "source": {
  1525. "type": "git",
  1526. "url": "https://github.com/hyperf/conditionable.git",
  1527. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1528. },
  1529. "dist": {
  1530. "type": "zip",
  1531. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1532. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1533. "shasum": ""
  1534. },
  1535. "require": {
  1536. "php": ">=8.1"
  1537. },
  1538. "type": "library",
  1539. "extra": {
  1540. "branch-alias": {
  1541. "dev-master": "3.1-dev"
  1542. }
  1543. },
  1544. "autoload": {
  1545. "psr-4": {
  1546. "Hyperf\\Conditionable\\": "src/"
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1554. "homepage": "https://hyperf.io",
  1555. "keywords": [
  1556. "conditionable",
  1557. "hyperf",
  1558. "php",
  1559. "swoole"
  1560. ],
  1561. "support": {
  1562. "docs": "https://hyperf.wiki",
  1563. "issues": "https://github.com/hyperf/hyperf/issues",
  1564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1565. "source": "https://github.com/hyperf/hyperf"
  1566. },
  1567. "funding": [
  1568. {
  1569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1570. "type": "custom"
  1571. },
  1572. {
  1573. "url": "https://opencollective.com/hyperf",
  1574. "type": "open_collective"
  1575. }
  1576. ],
  1577. "time": "2024-09-25T02:54:12+00:00"
  1578. },
  1579. {
  1580. "name": "hyperf/config",
  1581. "version": "v3.1.42",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/hyperf/config.git",
  1585. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1590. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "hyperf/collection": "~3.1.0",
  1595. "hyperf/contract": "~3.1.0",
  1596. "hyperf/support": "~3.1.0",
  1597. "php": ">=8.1",
  1598. "psr/container": "^1.0 || ^2.0",
  1599. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1600. },
  1601. "suggest": {
  1602. "hyperf/context": "Required to use config()",
  1603. "hyperf/di": "Allows using @Value annotation",
  1604. "hyperf/event": "Allows using @Value annotation",
  1605. "hyperf/framework": "Allows using @Value annotation",
  1606. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "3.1-dev"
  1612. },
  1613. "hyperf": {
  1614. "config": "Hyperf\\Config\\ConfigProvider"
  1615. }
  1616. },
  1617. "autoload": {
  1618. "files": [
  1619. "./src/Functions.php"
  1620. ],
  1621. "psr-4": {
  1622. "Hyperf\\Config\\": "src/"
  1623. }
  1624. },
  1625. "notification-url": "https://packagist.org/downloads/",
  1626. "license": [
  1627. "MIT"
  1628. ],
  1629. "description": "An independent component that provides configuration container.",
  1630. "homepage": "https://hyperf.io",
  1631. "keywords": [
  1632. "config",
  1633. "configuration",
  1634. "hyperf",
  1635. "php",
  1636. "swoole"
  1637. ],
  1638. "support": {
  1639. "docs": "https://hyperf.wiki",
  1640. "issues": "https://github.com/hyperf/hyperf/issues",
  1641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1642. "source": "https://github.com/hyperf/hyperf"
  1643. },
  1644. "funding": [
  1645. {
  1646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1647. "type": "custom"
  1648. },
  1649. {
  1650. "url": "https://opencollective.com/hyperf",
  1651. "type": "open_collective"
  1652. }
  1653. ],
  1654. "time": "2024-09-25T02:54:12+00:00"
  1655. },
  1656. {
  1657. "name": "hyperf/config-center",
  1658. "version": "v3.1.42",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/hyperf/config-center.git",
  1662. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1667. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1668. "shasum": ""
  1669. },
  1670. "require": {
  1671. "hyperf/support": "~3.1.0",
  1672. "php": ">=8.1"
  1673. },
  1674. "suggest": {
  1675. "hyperf/process": "^2.1"
  1676. },
  1677. "type": "library",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-master": "3.1-dev"
  1681. },
  1682. "hyperf": {
  1683. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "psr-4": {
  1688. "Hyperf\\ConfigCenter\\": "src/"
  1689. }
  1690. },
  1691. "notification-url": "https://packagist.org/downloads/",
  1692. "license": [
  1693. "MIT"
  1694. ],
  1695. "description": "The abstraction component of config center",
  1696. "homepage": "https://hyperf.io",
  1697. "keywords": [
  1698. "config-center",
  1699. "hyperf",
  1700. "php"
  1701. ],
  1702. "support": {
  1703. "docs": "https://hyperf.wiki",
  1704. "issues": "https://github.com/hyperf/hyperf/issues",
  1705. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1706. "source": "https://github.com/hyperf/hyperf"
  1707. },
  1708. "funding": [
  1709. {
  1710. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1711. "type": "custom"
  1712. },
  1713. {
  1714. "url": "https://opencollective.com/hyperf",
  1715. "type": "open_collective"
  1716. }
  1717. ],
  1718. "time": "2024-09-25T02:54:12+00:00"
  1719. },
  1720. {
  1721. "name": "hyperf/config-nacos",
  1722. "version": "v3.1.42",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://github.com/hyperf/config-nacos.git",
  1726. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1731. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1732. "shasum": ""
  1733. },
  1734. "require": {
  1735. "hyperf/codec": "~3.1.0",
  1736. "hyperf/config-center": "~3.1.0",
  1737. "hyperf/contract": "~3.1.0",
  1738. "hyperf/guzzle": "~3.1.0",
  1739. "hyperf/nacos": "~3.1.0",
  1740. "hyperf/support": "~3.1.0",
  1741. "hyperf/utils": "~3.1.0",
  1742. "jetbrains/phpstorm-attributes": "^1.0",
  1743. "php": ">=8.1"
  1744. },
  1745. "suggest": {
  1746. "ext-json": "*",
  1747. "ext-simplexml": "*",
  1748. "ext-yaml": "*",
  1749. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1750. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1751. "hyperf/process": "Required to use processes. (~2.2.0)"
  1752. },
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-master": "3.1-dev"
  1757. },
  1758. "hyperf": {
  1759. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "Hyperf\\ConfigNacos\\": "src/"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "description": "A nacos adapter for config center component.",
  1772. "homepage": "https://hyperf.io",
  1773. "keywords": [
  1774. "hyperf",
  1775. "nacos",
  1776. "php",
  1777. "swoole"
  1778. ],
  1779. "support": {
  1780. "docs": "https://hyperf.wiki",
  1781. "issues": "https://github.com/hyperf/hyperf/issues",
  1782. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1783. "source": "https://github.com/hyperf/hyperf"
  1784. },
  1785. "funding": [
  1786. {
  1787. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1788. "type": "custom"
  1789. },
  1790. {
  1791. "url": "https://opencollective.com/hyperf",
  1792. "type": "open_collective"
  1793. }
  1794. ],
  1795. "time": "2024-09-25T02:54:12+00:00"
  1796. },
  1797. {
  1798. "name": "hyperf/constants",
  1799. "version": "v3.1.42",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/hyperf/constants.git",
  1803. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1808. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1809. "shasum": ""
  1810. },
  1811. "require": {
  1812. "hyperf/di": "~3.1.0",
  1813. "hyperf/support": "~3.1.0",
  1814. "hyperf/utils": "~3.1.0",
  1815. "php": ">=8.1"
  1816. },
  1817. "suggest": {
  1818. "hyperf/translation": "Required to use translation."
  1819. },
  1820. "type": "library",
  1821. "extra": {
  1822. "branch-alias": {
  1823. "dev-master": "3.1-dev"
  1824. },
  1825. "hyperf": {
  1826. "config": "Hyperf\\Constants\\ConfigProvider"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Hyperf\\Constants\\": "src/"
  1832. }
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "MIT"
  1837. ],
  1838. "description": "A constants component for hyperf.",
  1839. "homepage": "https://hyperf.io",
  1840. "keywords": [
  1841. "constants",
  1842. "hyperf",
  1843. "php"
  1844. ],
  1845. "support": {
  1846. "docs": "https://hyperf.wiki",
  1847. "issues": "https://github.com/hyperf/hyperf/issues",
  1848. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1849. "source": "https://github.com/hyperf/hyperf"
  1850. },
  1851. "funding": [
  1852. {
  1853. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1854. "type": "custom"
  1855. },
  1856. {
  1857. "url": "https://opencollective.com/hyperf",
  1858. "type": "open_collective"
  1859. }
  1860. ],
  1861. "time": "2024-09-25T02:54:12+00:00"
  1862. },
  1863. {
  1864. "name": "hyperf/consul",
  1865. "version": "v3.1.42",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/hyperf/consul.git",
  1869. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1874. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1879. "php": ">=8.1"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "branch-alias": {
  1884. "dev-master": "3.1-dev"
  1885. },
  1886. "hyperf": {
  1887. "config": "Hyperf\\Consul\\ConfigProvider"
  1888. }
  1889. },
  1890. "autoload": {
  1891. "psr-4": {
  1892. "Hyperf\\Consul\\": "src/"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "description": "A Consul Client for Hyperf.",
  1900. "homepage": "https://hyperf.io",
  1901. "keywords": [
  1902. "consul",
  1903. "consul-client",
  1904. "hyperf",
  1905. "php",
  1906. "swoole"
  1907. ],
  1908. "support": {
  1909. "docs": "https://hyperf.wiki",
  1910. "issues": "https://github.com/hyperf/hyperf/issues",
  1911. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1912. "source": "https://github.com/hyperf/hyperf"
  1913. },
  1914. "funding": [
  1915. {
  1916. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1917. "type": "custom"
  1918. },
  1919. {
  1920. "url": "https://opencollective.com/hyperf",
  1921. "type": "open_collective"
  1922. }
  1923. ],
  1924. "time": "2024-09-25T02:54:12+00:00"
  1925. },
  1926. {
  1927. "name": "hyperf/context",
  1928. "version": "v3.1.42",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://github.com/hyperf/context.git",
  1932. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1937. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1938. "shasum": ""
  1939. },
  1940. "require": {
  1941. "hyperf/engine": "^2.0",
  1942. "php": ">=8.1"
  1943. },
  1944. "suggest": {
  1945. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "3.1-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Hyperf\\Context\\": "src/"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "description": "A coroutine/application context library.",
  1963. "homepage": "https://hyperf.io",
  1964. "keywords": [
  1965. "Context",
  1966. "hyperf",
  1967. "php",
  1968. "swoole"
  1969. ],
  1970. "support": {
  1971. "docs": "https://hyperf.wiki",
  1972. "issues": "https://github.com/hyperf/hyperf/issues",
  1973. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1974. "source": "https://github.com/hyperf/hyperf"
  1975. },
  1976. "funding": [
  1977. {
  1978. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1979. "type": "custom"
  1980. },
  1981. {
  1982. "url": "https://opencollective.com/hyperf",
  1983. "type": "open_collective"
  1984. }
  1985. ],
  1986. "time": "2024-09-25T02:54:12+00:00"
  1987. },
  1988. {
  1989. "name": "hyperf/contract",
  1990. "version": "v3.1.42",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://github.com/hyperf/contract.git",
  1994. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1999. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2000. "shasum": ""
  2001. },
  2002. "require": {
  2003. "php": ">=8.1"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "3.1-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "psr-4": {
  2013. "Hyperf\\Contract\\": "src/"
  2014. }
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "description": "The contracts of Hyperf.",
  2021. "homepage": "https://hyperf.io",
  2022. "keywords": [
  2023. "hyperf",
  2024. "php",
  2025. "swoole"
  2026. ],
  2027. "support": {
  2028. "docs": "https://hyperf.wiki",
  2029. "issues": "https://github.com/hyperf/hyperf/issues",
  2030. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2031. "source": "https://github.com/hyperf/hyperf"
  2032. },
  2033. "funding": [
  2034. {
  2035. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2036. "type": "custom"
  2037. },
  2038. {
  2039. "url": "https://opencollective.com/hyperf",
  2040. "type": "open_collective"
  2041. }
  2042. ],
  2043. "time": "2024-09-25T02:54:12+00:00"
  2044. },
  2045. {
  2046. "name": "hyperf/coordinator",
  2047. "version": "v3.1.42",
  2048. "source": {
  2049. "type": "git",
  2050. "url": "https://github.com/hyperf/coordinator.git",
  2051. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2052. },
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2056. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "hyperf/engine": "^2.0",
  2061. "php": ">=8.1"
  2062. },
  2063. "type": "library",
  2064. "extra": {
  2065. "branch-alias": {
  2066. "dev-master": "3.1-dev"
  2067. }
  2068. },
  2069. "autoload": {
  2070. "files": [
  2071. "src/Functions.php"
  2072. ],
  2073. "psr-4": {
  2074. "Hyperf\\Coordinator\\": "src/"
  2075. }
  2076. },
  2077. "notification-url": "https://packagist.org/downloads/",
  2078. "license": [
  2079. "MIT"
  2080. ],
  2081. "description": "Hyperf Coordinator",
  2082. "homepage": "https://hyperf.io",
  2083. "keywords": [
  2084. "Coordinator",
  2085. "hyperf",
  2086. "php",
  2087. "swoole"
  2088. ],
  2089. "support": {
  2090. "docs": "https://hyperf.wiki",
  2091. "issues": "https://github.com/hyperf/hyperf/issues",
  2092. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2093. "source": "https://github.com/hyperf/hyperf"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2098. "type": "custom"
  2099. },
  2100. {
  2101. "url": "https://opencollective.com/hyperf",
  2102. "type": "open_collective"
  2103. }
  2104. ],
  2105. "time": "2024-09-25T02:54:12+00:00"
  2106. },
  2107. {
  2108. "name": "hyperf/coroutine",
  2109. "version": "v3.1.42",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/hyperf/coroutine.git",
  2113. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2118. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2119. "shasum": ""
  2120. },
  2121. "require": {
  2122. "hyperf/context": "~3.1.0",
  2123. "hyperf/contract": "~3.1.0",
  2124. "hyperf/engine": "^2.0",
  2125. "php": ">=8.1"
  2126. },
  2127. "type": "library",
  2128. "extra": {
  2129. "branch-alias": {
  2130. "dev-master": "3.1-dev"
  2131. }
  2132. },
  2133. "autoload": {
  2134. "files": [
  2135. "src/Functions.php"
  2136. ],
  2137. "psr-4": {
  2138. "Hyperf\\Coroutine\\": "src/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "description": "Hyperf Coroutine",
  2146. "homepage": "https://hyperf.io",
  2147. "keywords": [
  2148. "coroutine",
  2149. "hyperf",
  2150. "php",
  2151. "swoole"
  2152. ],
  2153. "support": {
  2154. "docs": "https://hyperf.wiki",
  2155. "issues": "https://github.com/hyperf/hyperf/issues",
  2156. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2157. "source": "https://github.com/hyperf/hyperf"
  2158. },
  2159. "funding": [
  2160. {
  2161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2162. "type": "custom"
  2163. },
  2164. {
  2165. "url": "https://opencollective.com/hyperf",
  2166. "type": "open_collective"
  2167. }
  2168. ],
  2169. "time": "2024-09-25T02:54:12+00:00"
  2170. },
  2171. {
  2172. "name": "hyperf/database",
  2173. "version": "v3.1.44",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/hyperf/database.git",
  2177. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  2182. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "hyperf/code-parser": "~3.1.0",
  2187. "hyperf/collection": "~3.1.23",
  2188. "hyperf/conditionable": "~3.1.0",
  2189. "hyperf/macroable": "~3.1.0",
  2190. "hyperf/support": "~3.1.0",
  2191. "hyperf/tappable": "~3.1.0",
  2192. "hyperf/utils": "~3.1.0",
  2193. "nesbot/carbon": "^2.0",
  2194. "php": ">=8.1",
  2195. "psr/container": "^1.0 || ^2.0",
  2196. "psr/event-dispatcher": "^1.0"
  2197. },
  2198. "suggest": {
  2199. "doctrine/dbal": "Required to rename columns (^3.0).",
  2200. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2201. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2202. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-master": "3.1-dev"
  2208. }
  2209. },
  2210. "autoload": {
  2211. "psr-4": {
  2212. "Hyperf\\Database\\": "src/"
  2213. }
  2214. },
  2215. "notification-url": "https://packagist.org/downloads/",
  2216. "license": [
  2217. "MIT"
  2218. ],
  2219. "description": "A flexible database library.",
  2220. "homepage": "https://hyperf.io",
  2221. "keywords": [
  2222. "database",
  2223. "hyperf",
  2224. "php"
  2225. ],
  2226. "support": {
  2227. "docs": "https://hyperf.wiki",
  2228. "issues": "https://github.com/hyperf/hyperf/issues",
  2229. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2230. "source": "https://github.com/hyperf/hyperf"
  2231. },
  2232. "funding": [
  2233. {
  2234. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2235. "type": "custom"
  2236. },
  2237. {
  2238. "url": "https://opencollective.com/hyperf",
  2239. "type": "open_collective"
  2240. }
  2241. ],
  2242. "time": "2024-10-11T10:25:57+00:00"
  2243. },
  2244. {
  2245. "name": "hyperf/db-connection",
  2246. "version": "v3.1.44",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://github.com/hyperf/db-connection.git",
  2250. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2255. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2256. "shasum": ""
  2257. },
  2258. "require": {
  2259. "hyperf/database": "~3.1.0",
  2260. "hyperf/di": "~3.1.0",
  2261. "hyperf/framework": "~3.1.0",
  2262. "hyperf/model-listener": "~3.1.0",
  2263. "hyperf/pool": "~3.1.0",
  2264. "hyperf/support": "~3.1.0",
  2265. "hyperf/utils": "~3.1.0",
  2266. "php": ">=8.1",
  2267. "psr/container": "^1.0 || ^2.0"
  2268. },
  2269. "type": "library",
  2270. "extra": {
  2271. "branch-alias": {
  2272. "dev-master": "3.1-dev"
  2273. },
  2274. "hyperf": {
  2275. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2276. }
  2277. },
  2278. "autoload": {
  2279. "psr-4": {
  2280. "Hyperf\\DbConnection\\": "src/"
  2281. }
  2282. },
  2283. "notification-url": "https://packagist.org/downloads/",
  2284. "license": [
  2285. "MIT"
  2286. ],
  2287. "description": "A hyperf db connection handler for hyperf/database.",
  2288. "homepage": "https://hyperf.io",
  2289. "keywords": [
  2290. "Connection",
  2291. "database",
  2292. "hyperf",
  2293. "php"
  2294. ],
  2295. "support": {
  2296. "docs": "https://hyperf.wiki",
  2297. "issues": "https://github.com/hyperf/hyperf/issues",
  2298. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2299. "source": "https://github.com/hyperf/hyperf"
  2300. },
  2301. "funding": [
  2302. {
  2303. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2304. "type": "custom"
  2305. },
  2306. {
  2307. "url": "https://opencollective.com/hyperf",
  2308. "type": "open_collective"
  2309. }
  2310. ],
  2311. "time": "2024-10-11T08:58:16+00:00"
  2312. },
  2313. {
  2314. "name": "hyperf/di",
  2315. "version": "v3.1.42",
  2316. "source": {
  2317. "type": "git",
  2318. "url": "https://github.com/hyperf/di.git",
  2319. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2320. },
  2321. "dist": {
  2322. "type": "zip",
  2323. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2324. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2325. "shasum": ""
  2326. },
  2327. "require": {
  2328. "doctrine/instantiator": "^1.0",
  2329. "hyperf/code-parser": "~3.1.0",
  2330. "hyperf/pipeline": "~3.1.0",
  2331. "hyperf/stdlib": "~3.1.0",
  2332. "hyperf/support": "~3.1.0",
  2333. "nikic/php-parser": "^4.1",
  2334. "php": ">=8.1",
  2335. "php-di/phpdoc-reader": "^2.2",
  2336. "psr/container": "^1.0 || ^2.0",
  2337. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2338. "vlucas/phpdotenv": "^5.0"
  2339. },
  2340. "suggest": {
  2341. "ext-pcntl": "Required to scan annotations.",
  2342. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2343. },
  2344. "type": "library",
  2345. "extra": {
  2346. "branch-alias": {
  2347. "dev-master": "3.1-dev"
  2348. },
  2349. "hyperf": {
  2350. "config": "Hyperf\\Di\\ConfigProvider"
  2351. }
  2352. },
  2353. "autoload": {
  2354. "psr-4": {
  2355. "Hyperf\\Di\\": "src/"
  2356. }
  2357. },
  2358. "notification-url": "https://packagist.org/downloads/",
  2359. "license": [
  2360. "MIT"
  2361. ],
  2362. "description": "A DI for Hyperf.",
  2363. "homepage": "https://hyperf.io",
  2364. "keywords": [
  2365. "annotation",
  2366. "di",
  2367. "hyperf",
  2368. "php",
  2369. "swoole"
  2370. ],
  2371. "support": {
  2372. "docs": "https://hyperf.wiki",
  2373. "issues": "https://github.com/hyperf/hyperf/issues",
  2374. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2375. "source": "https://github.com/hyperf/hyperf"
  2376. },
  2377. "funding": [
  2378. {
  2379. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2380. "type": "custom"
  2381. },
  2382. {
  2383. "url": "https://opencollective.com/hyperf",
  2384. "type": "open_collective"
  2385. }
  2386. ],
  2387. "time": "2024-09-25T02:54:12+00:00"
  2388. },
  2389. {
  2390. "name": "hyperf/dispatcher",
  2391. "version": "v3.1.42",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/hyperf/dispatcher.git",
  2395. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2400. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "hyperf/contract": "~3.1.0",
  2405. "php": ">=8.1",
  2406. "psr/container": "^1.0 || ^2.0",
  2407. "psr/http-message": "^1.0 || ^2.0",
  2408. "psr/http-server-middleware": "^1.0"
  2409. },
  2410. "type": "library",
  2411. "extra": {
  2412. "branch-alias": {
  2413. "dev-master": "3.1-dev"
  2414. },
  2415. "hyperf": {
  2416. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2417. }
  2418. },
  2419. "autoload": {
  2420. "psr-4": {
  2421. "Hyperf\\Dispatcher\\": "src/"
  2422. }
  2423. },
  2424. "notification-url": "https://packagist.org/downloads/",
  2425. "license": [
  2426. "MIT"
  2427. ],
  2428. "description": "A HTTP Server for Hyperf.",
  2429. "homepage": "https://hyperf.io",
  2430. "keywords": [
  2431. "dispatcher",
  2432. "filter",
  2433. "hyperf",
  2434. "middleware",
  2435. "php",
  2436. "swoole"
  2437. ],
  2438. "support": {
  2439. "docs": "https://hyperf.wiki",
  2440. "issues": "https://github.com/hyperf/hyperf/issues",
  2441. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2442. "source": "https://github.com/hyperf/hyperf"
  2443. },
  2444. "funding": [
  2445. {
  2446. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2447. "type": "custom"
  2448. },
  2449. {
  2450. "url": "https://opencollective.com/hyperf",
  2451. "type": "open_collective"
  2452. }
  2453. ],
  2454. "time": "2024-09-25T02:54:12+00:00"
  2455. },
  2456. {
  2457. "name": "hyperf/engine",
  2458. "version": "v2.11.0",
  2459. "source": {
  2460. "type": "git",
  2461. "url": "https://github.com/hyperf/engine.git",
  2462. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2463. },
  2464. "dist": {
  2465. "type": "zip",
  2466. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2467. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2468. "shasum": ""
  2469. },
  2470. "require": {
  2471. "hyperf/engine-contract": "~1.10.0",
  2472. "php": ">=8.0"
  2473. },
  2474. "conflict": {
  2475. "ext-swoole": "<5.0"
  2476. },
  2477. "require-dev": {
  2478. "friendsofphp/php-cs-fixer": "^3.0",
  2479. "hyperf/guzzle": "^3.0",
  2480. "hyperf/http-message": "^3.0",
  2481. "mockery/mockery": "^1.5",
  2482. "phpstan/phpstan": "^1.0",
  2483. "phpunit/phpunit": "^9.4",
  2484. "swoole/ide-helper": "5.*"
  2485. },
  2486. "suggest": {
  2487. "ext-sockets": "*",
  2488. "ext-swoole": ">=5.0",
  2489. "hyperf/http-message": "Required to use ResponseEmitter.",
  2490. "psr/http-message": "Required to use WebSocket Frame."
  2491. },
  2492. "type": "library",
  2493. "extra": {
  2494. "branch-alias": {
  2495. "dev-master": "2.11-dev"
  2496. },
  2497. "hyperf": {
  2498. "config": "Hyperf\\Engine\\ConfigProvider"
  2499. }
  2500. },
  2501. "autoload": {
  2502. "files": [
  2503. "src/Functions.php"
  2504. ],
  2505. "psr-4": {
  2506. "Hyperf\\Engine\\": "src/"
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "MIT"
  2512. ],
  2513. "description": "Coroutine engine provided by swoole.",
  2514. "keywords": [
  2515. "engine",
  2516. "hyperf",
  2517. "php",
  2518. "swoole"
  2519. ],
  2520. "support": {
  2521. "issues": "https://github.com/hyperf/engine/issues",
  2522. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2523. },
  2524. "funding": [
  2525. {
  2526. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2527. "type": "custom"
  2528. },
  2529. {
  2530. "url": "https://opencollective.com/hyperf",
  2531. "type": "open_collective"
  2532. }
  2533. ],
  2534. "time": "2024-04-17T13:36:28+00:00"
  2535. },
  2536. {
  2537. "name": "hyperf/engine-contract",
  2538. "version": "v1.10.1",
  2539. "source": {
  2540. "type": "git",
  2541. "url": "https://github.com/hyperf/engine-contract.git",
  2542. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2543. },
  2544. "dist": {
  2545. "type": "zip",
  2546. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2547. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2548. "shasum": ""
  2549. },
  2550. "require": {
  2551. "php": ">=8.0"
  2552. },
  2553. "require-dev": {
  2554. "friendsofphp/php-cs-fixer": "^3.0",
  2555. "mockery/mockery": "^1.0",
  2556. "phpstan/phpstan": "^1.0",
  2557. "phpunit/phpunit": ">=7.0",
  2558. "psr/http-message": "^1.0",
  2559. "swoole/ide-helper": "^4.5"
  2560. },
  2561. "suggest": {
  2562. "psr/http-message": "Required to use WebSocket Frame."
  2563. },
  2564. "type": "library",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "1.9-dev"
  2568. }
  2569. },
  2570. "autoload": {
  2571. "psr-4": {
  2572. "Hyperf\\Engine\\Contract\\": "src/"
  2573. }
  2574. },
  2575. "notification-url": "https://packagist.org/downloads/",
  2576. "license": [
  2577. "MIT"
  2578. ],
  2579. "description": "Contract for Coroutine Engine",
  2580. "keywords": [
  2581. "contract",
  2582. "coroutine",
  2583. "engine",
  2584. "hyperf",
  2585. "php"
  2586. ],
  2587. "support": {
  2588. "issues": "https://github.com/hyperf/engine-contract/issues",
  2589. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2590. },
  2591. "funding": [
  2592. {
  2593. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2594. "type": "custom"
  2595. },
  2596. {
  2597. "url": "https://opencollective.com/hyperf",
  2598. "type": "open_collective"
  2599. }
  2600. ],
  2601. "time": "2024-04-17T13:34:51+00:00"
  2602. },
  2603. {
  2604. "name": "hyperf/event",
  2605. "version": "v3.1.42",
  2606. "source": {
  2607. "type": "git",
  2608. "url": "https://github.com/hyperf/event.git",
  2609. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2610. },
  2611. "dist": {
  2612. "type": "zip",
  2613. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2614. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2615. "shasum": ""
  2616. },
  2617. "require": {
  2618. "hyperf/contract": "~3.1.0",
  2619. "hyperf/stdlib": "~3.1.0",
  2620. "php": ">=8.1",
  2621. "psr/event-dispatcher": "^1.0"
  2622. },
  2623. "suggest": {
  2624. "hyperf/di": "Required to use annotatioins."
  2625. },
  2626. "type": "library",
  2627. "extra": {
  2628. "branch-alias": {
  2629. "dev-master": "3.1-dev"
  2630. },
  2631. "hyperf": {
  2632. "config": "Hyperf\\Event\\ConfigProvider"
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Hyperf\\Event\\": "src/"
  2638. }
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "MIT"
  2643. ],
  2644. "description": "an event manager that implements PSR-14.",
  2645. "homepage": "https://hyperf.io",
  2646. "keywords": [
  2647. "event",
  2648. "hyperf",
  2649. "php",
  2650. "swoole"
  2651. ],
  2652. "support": {
  2653. "docs": "https://hyperf.wiki",
  2654. "issues": "https://github.com/hyperf/hyperf/issues",
  2655. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2656. "source": "https://github.com/hyperf/hyperf"
  2657. },
  2658. "funding": [
  2659. {
  2660. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2661. "type": "custom"
  2662. },
  2663. {
  2664. "url": "https://opencollective.com/hyperf",
  2665. "type": "open_collective"
  2666. }
  2667. ],
  2668. "time": "2024-09-25T02:54:12+00:00"
  2669. },
  2670. {
  2671. "name": "hyperf/exception-handler",
  2672. "version": "v3.1.42",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/hyperf/exception-handler.git",
  2676. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2681. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2682. "shasum": ""
  2683. },
  2684. "require": {
  2685. "hyperf/context": "~3.1.0",
  2686. "hyperf/contract": "~3.1.0",
  2687. "hyperf/dispatcher": "~3.1.0",
  2688. "hyperf/http-message": "~3.1.0",
  2689. "hyperf/stdlib": "~3.1.0",
  2690. "hyperf/support": "~3.1.0",
  2691. "php": ">=8.1",
  2692. "psr/container": "^1.0 || ^2.0",
  2693. "psr/http-message": "^1.0 || ^2.0",
  2694. "swow/psr7-plus": "^1.0"
  2695. },
  2696. "suggest": {
  2697. "hyperf/di": "Required to use #[ExceptionHandler]",
  2698. "hyperf/event": "Required to use listeners",
  2699. "hyperf/framework": "Required to use listeners",
  2700. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2701. },
  2702. "type": "library",
  2703. "extra": {
  2704. "branch-alias": {
  2705. "dev-master": "3.1-dev"
  2706. },
  2707. "hyperf": {
  2708. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2709. }
  2710. },
  2711. "autoload": {
  2712. "psr-4": {
  2713. "Hyperf\\ExceptionHandler\\": "src/"
  2714. }
  2715. },
  2716. "notification-url": "https://packagist.org/downloads/",
  2717. "license": [
  2718. "MIT"
  2719. ],
  2720. "description": "Exception handler for hyperf",
  2721. "homepage": "https://hyperf.io",
  2722. "keywords": [
  2723. "exception-handler",
  2724. "php",
  2725. "swoole"
  2726. ],
  2727. "support": {
  2728. "docs": "https://hyperf.wiki",
  2729. "issues": "https://github.com/hyperf/hyperf/issues",
  2730. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2731. "source": "https://github.com/hyperf/hyperf"
  2732. },
  2733. "funding": [
  2734. {
  2735. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2736. "type": "custom"
  2737. },
  2738. {
  2739. "url": "https://opencollective.com/hyperf",
  2740. "type": "open_collective"
  2741. }
  2742. ],
  2743. "time": "2024-09-25T02:54:12+00:00"
  2744. },
  2745. {
  2746. "name": "hyperf/framework",
  2747. "version": "v3.1.42",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/hyperf/framework.git",
  2751. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2756. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "fig/http-message-util": "^1.1.2",
  2761. "hyperf/contract": "~3.1.0",
  2762. "hyperf/coordinator": "~3.1.0",
  2763. "hyperf/coroutine": "~3.1.0",
  2764. "php": ">=8.1",
  2765. "psr/container": "^1.0 || ^2.0",
  2766. "psr/event-dispatcher": "^1.0",
  2767. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2768. },
  2769. "suggest": {
  2770. "ext-swoole": "Required to use swoole engine.",
  2771. "hyperf/command": "Required to use Command annotation.",
  2772. "hyperf/di": "Required to use Command annotation.",
  2773. "hyperf/dispatcher": "Required to use BootApplication event.",
  2774. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2775. },
  2776. "type": "library",
  2777. "extra": {
  2778. "branch-alias": {
  2779. "dev-master": "3.1-dev"
  2780. },
  2781. "hyperf": {
  2782. "config": "Hyperf\\Framework\\ConfigProvider"
  2783. }
  2784. },
  2785. "autoload": {
  2786. "psr-4": {
  2787. "Hyperf\\Framework\\": "src/"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2795. "homepage": "https://hyperf.io",
  2796. "keywords": [
  2797. "Microservice",
  2798. "framework",
  2799. "hyperf",
  2800. "middleware",
  2801. "php",
  2802. "swoole"
  2803. ],
  2804. "support": {
  2805. "docs": "https://hyperf.wiki",
  2806. "issues": "https://github.com/hyperf/hyperf/issues",
  2807. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2808. "source": "https://github.com/hyperf/hyperf"
  2809. },
  2810. "funding": [
  2811. {
  2812. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2813. "type": "custom"
  2814. },
  2815. {
  2816. "url": "https://opencollective.com/hyperf",
  2817. "type": "open_collective"
  2818. }
  2819. ],
  2820. "time": "2024-09-25T02:54:12+00:00"
  2821. },
  2822. {
  2823. "name": "hyperf/guzzle",
  2824. "version": "v3.1.42",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/hyperf/guzzle.git",
  2828. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2833. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2838. "php": ">=8.1",
  2839. "psr/container": "^1.0 || ^2.0",
  2840. "psr/http-message": "^1.0 || ^2.0"
  2841. },
  2842. "suggest": {
  2843. "ext-curl": "Required for CURL handler support",
  2844. "hyperf/pool": "Required to use pool handler."
  2845. },
  2846. "type": "library",
  2847. "extra": {
  2848. "branch-alias": {
  2849. "dev-master": "3.1-dev"
  2850. },
  2851. "hyperf": {
  2852. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2853. }
  2854. },
  2855. "autoload": {
  2856. "psr-4": {
  2857. "Hyperf\\Guzzle\\": "src/"
  2858. }
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "MIT"
  2863. ],
  2864. "description": "Swoole coroutine handler for guzzle",
  2865. "keywords": [
  2866. "Guzzle",
  2867. "handler",
  2868. "php",
  2869. "swoole"
  2870. ],
  2871. "support": {
  2872. "issues": "https://github.com/hyperf/guzzle/issues",
  2873. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2874. },
  2875. "funding": [
  2876. {
  2877. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2878. "type": "custom"
  2879. },
  2880. {
  2881. "url": "https://opencollective.com/hyperf",
  2882. "type": "open_collective"
  2883. }
  2884. ],
  2885. "time": "2024-09-25T02:54:12+00:00"
  2886. },
  2887. {
  2888. "name": "hyperf/http-message",
  2889. "version": "v3.1.42",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://github.com/hyperf/http-message.git",
  2893. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2898. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2899. "shasum": ""
  2900. },
  2901. "require": {
  2902. "hyperf/codec": "~3.1.0",
  2903. "hyperf/engine": "^2.11",
  2904. "hyperf/support": "~3.1.0",
  2905. "laminas/laminas-mime": "^2.7",
  2906. "php": ">=8.1",
  2907. "psr/http-message": "^1.0 || ^2.0",
  2908. "swow/psr7-plus": "^1.0"
  2909. },
  2910. "suggest": {
  2911. "psr/container": "Required to replace RequestParserInterface."
  2912. },
  2913. "type": "library",
  2914. "extra": {
  2915. "branch-alias": {
  2916. "dev-master": "3.1-dev"
  2917. },
  2918. "hyperf": {
  2919. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2920. }
  2921. },
  2922. "autoload": {
  2923. "psr-4": {
  2924. "Hyperf\\HttpMessage\\": "src/"
  2925. }
  2926. },
  2927. "notification-url": "https://packagist.org/downloads/",
  2928. "license": [
  2929. "MIT"
  2930. ],
  2931. "description": "microservice framework base on swoole",
  2932. "keywords": [
  2933. "http-message",
  2934. "hyperf",
  2935. "php",
  2936. "swoole"
  2937. ],
  2938. "support": {
  2939. "issues": "https://github.com/hyperf/http-message/issues",
  2940. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  2941. },
  2942. "funding": [
  2943. {
  2944. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2945. "type": "custom"
  2946. },
  2947. {
  2948. "url": "https://opencollective.com/hyperf",
  2949. "type": "open_collective"
  2950. }
  2951. ],
  2952. "time": "2024-09-25T02:54:12+00:00"
  2953. },
  2954. {
  2955. "name": "hyperf/http-server",
  2956. "version": "v3.1.42",
  2957. "source": {
  2958. "type": "git",
  2959. "url": "https://github.com/hyperf/http-server.git",
  2960. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2961. },
  2962. "dist": {
  2963. "type": "zip",
  2964. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2965. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2966. "shasum": ""
  2967. },
  2968. "require": {
  2969. "hyperf/codec": "~3.1.0",
  2970. "hyperf/collection": "~3.1.0",
  2971. "hyperf/context": "~3.1.0",
  2972. "hyperf/contract": "~3.1.0",
  2973. "hyperf/coroutine": "~3.1.0",
  2974. "hyperf/dispatcher": "~3.1.0",
  2975. "hyperf/event": "~3.1.0",
  2976. "hyperf/exception-handler": "~3.1.0",
  2977. "hyperf/http-message": "~3.1.0",
  2978. "hyperf/macroable": "~3.1.0",
  2979. "hyperf/serializer": "~3.1.0",
  2980. "hyperf/server": "~3.1.0",
  2981. "hyperf/stdlib": "~3.1.0",
  2982. "hyperf/support": "~3.1.0",
  2983. "nikic/fast-route": "^1.3",
  2984. "php": ">=8.1",
  2985. "psr/container": "^1.0 || ^2.0",
  2986. "swow/psr7-plus": "^1.0"
  2987. },
  2988. "suggest": {
  2989. "hyperf/di": "Required to use annotations."
  2990. },
  2991. "type": "library",
  2992. "extra": {
  2993. "branch-alias": {
  2994. "dev-master": "3.1-dev"
  2995. },
  2996. "hyperf": {
  2997. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2998. }
  2999. },
  3000. "autoload": {
  3001. "psr-4": {
  3002. "Hyperf\\HttpServer\\": "src/"
  3003. }
  3004. },
  3005. "notification-url": "https://packagist.org/downloads/",
  3006. "license": [
  3007. "MIT"
  3008. ],
  3009. "description": "A HTTP Server for Hyperf.",
  3010. "homepage": "https://hyperf.io",
  3011. "keywords": [
  3012. "http",
  3013. "http-server",
  3014. "hyperf",
  3015. "php",
  3016. "swoole"
  3017. ],
  3018. "support": {
  3019. "docs": "https://hyperf.wiki",
  3020. "issues": "https://github.com/hyperf/hyperf/issues",
  3021. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3022. "source": "https://github.com/hyperf/hyperf"
  3023. },
  3024. "funding": [
  3025. {
  3026. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3027. "type": "custom"
  3028. },
  3029. {
  3030. "url": "https://opencollective.com/hyperf",
  3031. "type": "open_collective"
  3032. }
  3033. ],
  3034. "time": "2024-09-25T02:54:12+00:00"
  3035. },
  3036. {
  3037. "name": "hyperf/json-rpc",
  3038. "version": "v3.1.42",
  3039. "source": {
  3040. "type": "git",
  3041. "url": "https://github.com/hyperf/json-rpc.git",
  3042. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  3043. },
  3044. "dist": {
  3045. "type": "zip",
  3046. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3047. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3048. "shasum": ""
  3049. },
  3050. "require": {
  3051. "hyperf/codec": "~3.1.0",
  3052. "hyperf/context": "~3.1.0",
  3053. "hyperf/contract": "~3.1.0",
  3054. "hyperf/engine": "^2.0",
  3055. "hyperf/http-message": "~3.1.0",
  3056. "hyperf/load-balancer": "~3.1.0",
  3057. "hyperf/rpc": "~3.1.0",
  3058. "hyperf/serializer": "~3.1.0",
  3059. "hyperf/support": "~3.1.0",
  3060. "hyperf/utils": "~3.1.0",
  3061. "php": ">=8.1",
  3062. "psr/container": "^1.0 || ^2.0",
  3063. "swow/psr7-plus": "^1.0"
  3064. },
  3065. "suggest": {
  3066. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3067. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3068. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3069. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3070. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3071. },
  3072. "type": "library",
  3073. "extra": {
  3074. "branch-alias": {
  3075. "dev-master": "3.1-dev"
  3076. },
  3077. "hyperf": {
  3078. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "Hyperf\\JsonRpc\\": "src/"
  3084. }
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3091. "homepage": "https://hyperf.io",
  3092. "keywords": [
  3093. "hyperf",
  3094. "json-rpc",
  3095. "php",
  3096. "swoole"
  3097. ],
  3098. "support": {
  3099. "docs": "https://hyperf.wiki",
  3100. "issues": "https://github.com/hyperf/hyperf/issues",
  3101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3102. "source": "https://github.com/hyperf/hyperf"
  3103. },
  3104. "funding": [
  3105. {
  3106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3107. "type": "custom"
  3108. },
  3109. {
  3110. "url": "https://opencollective.com/hyperf",
  3111. "type": "open_collective"
  3112. }
  3113. ],
  3114. "time": "2024-09-25T02:54:12+00:00"
  3115. },
  3116. {
  3117. "name": "hyperf/load-balancer",
  3118. "version": "v3.1.42",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/hyperf/load-balancer.git",
  3122. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3127. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "hyperf/coordinator": "~3.1.0",
  3132. "hyperf/coroutine": "~3.1.0",
  3133. "markrogoyski/math-php": "^2.0",
  3134. "php": ">=8.1",
  3135. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3136. },
  3137. "type": "library",
  3138. "extra": {
  3139. "branch-alias": {
  3140. "dev-master": "3.1-dev"
  3141. },
  3142. "hyperf": {
  3143. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3144. }
  3145. },
  3146. "autoload": {
  3147. "psr-4": {
  3148. "Hyperf\\LoadBalancer\\": "src/"
  3149. }
  3150. },
  3151. "notification-url": "https://packagist.org/downloads/",
  3152. "license": [
  3153. "MIT"
  3154. ],
  3155. "description": "A load balancer library for Hyperf.",
  3156. "homepage": "https://hyperf.io",
  3157. "keywords": [
  3158. "hyperf",
  3159. "load-balancer",
  3160. "php",
  3161. "swoole"
  3162. ],
  3163. "support": {
  3164. "docs": "https://hyperf.wiki",
  3165. "issues": "https://github.com/hyperf/hyperf/issues",
  3166. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3167. "source": "https://github.com/hyperf/hyperf"
  3168. },
  3169. "funding": [
  3170. {
  3171. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3172. "type": "custom"
  3173. },
  3174. {
  3175. "url": "https://opencollective.com/hyperf",
  3176. "type": "open_collective"
  3177. }
  3178. ],
  3179. "time": "2024-09-25T02:54:12+00:00"
  3180. },
  3181. {
  3182. "name": "hyperf/logger",
  3183. "version": "v3.1.42",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/hyperf/logger.git",
  3187. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3192. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "hyperf/contract": "~3.1.0",
  3197. "hyperf/support": "~3.1.0",
  3198. "hyperf/utils": "~3.1.0",
  3199. "monolog/monolog": "^2.7 || ^3.1",
  3200. "php": ">=8.1",
  3201. "psr/container": "^1.0 || ^2.0",
  3202. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3203. },
  3204. "type": "library",
  3205. "extra": {
  3206. "branch-alias": {
  3207. "dev-master": "3.1-dev"
  3208. },
  3209. "hyperf": {
  3210. "config": "Hyperf\\Logger\\ConfigProvider"
  3211. }
  3212. },
  3213. "autoload": {
  3214. "psr-4": {
  3215. "Hyperf\\Logger\\": "src/"
  3216. }
  3217. },
  3218. "notification-url": "https://packagist.org/downloads/",
  3219. "license": [
  3220. "MIT"
  3221. ],
  3222. "description": "A logger component for hyperf.",
  3223. "homepage": "https://hyperf.io",
  3224. "keywords": [
  3225. "hyperf",
  3226. "logger",
  3227. "php"
  3228. ],
  3229. "support": {
  3230. "docs": "https://hyperf.wiki",
  3231. "issues": "https://github.com/hyperf/hyperf/issues",
  3232. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3233. "source": "https://github.com/hyperf/hyperf"
  3234. },
  3235. "funding": [
  3236. {
  3237. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3238. "type": "custom"
  3239. },
  3240. {
  3241. "url": "https://opencollective.com/hyperf",
  3242. "type": "open_collective"
  3243. }
  3244. ],
  3245. "time": "2024-09-25T02:54:12+00:00"
  3246. },
  3247. {
  3248. "name": "hyperf/macroable",
  3249. "version": "v3.1.42",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/hyperf/macroable.git",
  3253. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3258. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3259. "shasum": ""
  3260. },
  3261. "require": {
  3262. "php": ">=8.1"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "branch-alias": {
  3267. "dev-master": "3.1-dev"
  3268. }
  3269. },
  3270. "autoload": {
  3271. "psr-4": {
  3272. "Hyperf\\Macroable\\": "src/"
  3273. }
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3280. "homepage": "https://hyperf.io",
  3281. "keywords": [
  3282. "hyperf",
  3283. "macroable",
  3284. "php",
  3285. "swoole"
  3286. ],
  3287. "support": {
  3288. "docs": "https://hyperf.wiki",
  3289. "issues": "https://github.com/hyperf/hyperf/issues",
  3290. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3291. "source": "https://github.com/hyperf/hyperf"
  3292. },
  3293. "funding": [
  3294. {
  3295. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3296. "type": "custom"
  3297. },
  3298. {
  3299. "url": "https://opencollective.com/hyperf",
  3300. "type": "open_collective"
  3301. }
  3302. ],
  3303. "time": "2024-09-25T02:54:12+00:00"
  3304. },
  3305. {
  3306. "name": "hyperf/memory",
  3307. "version": "v3.1.42",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://github.com/hyperf/memory.git",
  3311. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3316. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3317. "shasum": ""
  3318. },
  3319. "require": {
  3320. "php": ">=8.1"
  3321. },
  3322. "type": "library",
  3323. "extra": {
  3324. "branch-alias": {
  3325. "dev-master": "3.1-dev"
  3326. },
  3327. "hyperf": {
  3328. "config": "Hyperf\\Memory\\ConfigProvider"
  3329. }
  3330. },
  3331. "autoload": {
  3332. "psr-4": {
  3333. "Hyperf\\Memory\\": "src/"
  3334. }
  3335. },
  3336. "notification-url": "https://packagist.org/downloads/",
  3337. "license": [
  3338. "MIT"
  3339. ],
  3340. "description": "An independent component that use to operate and manage memory.",
  3341. "homepage": "https://hyperf.io",
  3342. "keywords": [
  3343. "hyperf",
  3344. "memory",
  3345. "php",
  3346. "swoole"
  3347. ],
  3348. "support": {
  3349. "docs": "https://hyperf.wiki",
  3350. "issues": "https://github.com/hyperf/hyperf/issues",
  3351. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3352. "source": "https://github.com/hyperf/hyperf"
  3353. },
  3354. "funding": [
  3355. {
  3356. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3357. "type": "custom"
  3358. },
  3359. {
  3360. "url": "https://opencollective.com/hyperf",
  3361. "type": "open_collective"
  3362. }
  3363. ],
  3364. "time": "2024-09-25T02:54:12+00:00"
  3365. },
  3366. {
  3367. "name": "hyperf/model-listener",
  3368. "version": "v3.1.42",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/hyperf/model-listener.git",
  3372. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3377. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3378. "shasum": ""
  3379. },
  3380. "require": {
  3381. "hyperf/contract": "~3.1.0",
  3382. "hyperf/database": "~3.1.0",
  3383. "hyperf/di": "~3.1.0",
  3384. "hyperf/event": "~3.1.0",
  3385. "hyperf/support": "~3.1.0",
  3386. "hyperf/utils": "~3.1.0",
  3387. "php": ">=8.1",
  3388. "psr/container": "^1.0 || ^2.0"
  3389. },
  3390. "type": "library",
  3391. "extra": {
  3392. "branch-alias": {
  3393. "dev-master": "3.1-dev"
  3394. },
  3395. "hyperf": {
  3396. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3397. }
  3398. },
  3399. "autoload": {
  3400. "psr-4": {
  3401. "Hyperf\\ModelListener\\": "src/"
  3402. }
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "MIT"
  3407. ],
  3408. "description": "A model listener for Hyperf.",
  3409. "homepage": "https://hyperf.io",
  3410. "keywords": [
  3411. "hyperf",
  3412. "model-listener",
  3413. "php",
  3414. "swoole"
  3415. ],
  3416. "support": {
  3417. "docs": "https://hyperf.wiki",
  3418. "issues": "https://github.com/hyperf/hyperf/issues",
  3419. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3420. "source": "https://github.com/hyperf/hyperf"
  3421. },
  3422. "funding": [
  3423. {
  3424. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3425. "type": "custom"
  3426. },
  3427. {
  3428. "url": "https://opencollective.com/hyperf",
  3429. "type": "open_collective"
  3430. }
  3431. ],
  3432. "time": "2024-09-25T02:54:12+00:00"
  3433. },
  3434. {
  3435. "name": "hyperf/nacos",
  3436. "version": "v3.1.42",
  3437. "source": {
  3438. "type": "git",
  3439. "url": "https://github.com/hyperf/nacos.git",
  3440. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3441. },
  3442. "dist": {
  3443. "type": "zip",
  3444. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3445. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3446. "shasum": ""
  3447. },
  3448. "require": {
  3449. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3450. "hyperf/codec": "~3.1.0",
  3451. "hyperf/contract": "~3.1.0",
  3452. "hyperf/support": "~3.1.0",
  3453. "hyperf/utils": "~3.1.0",
  3454. "jetbrains/phpstorm-attributes": "^1.0",
  3455. "php": ">=8.1"
  3456. },
  3457. "type": "library",
  3458. "extra": {
  3459. "branch-alias": {
  3460. "dev-master": "3.1-dev"
  3461. },
  3462. "hyperf": {
  3463. "config": "Hyperf\\Nacos\\ConfigProvider"
  3464. }
  3465. },
  3466. "autoload": {
  3467. "psr-4": {
  3468. "Hyperf\\Nacos\\": "src/"
  3469. }
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "MIT"
  3474. ],
  3475. "description": "Nacos SDK",
  3476. "keywords": [
  3477. "hyperf",
  3478. "nacos",
  3479. "php"
  3480. ],
  3481. "support": {
  3482. "issues": "https://github.com/hyperf/nacos/issues",
  3483. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3484. },
  3485. "funding": [
  3486. {
  3487. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3488. "type": "custom"
  3489. },
  3490. {
  3491. "url": "https://opencollective.com/hyperf",
  3492. "type": "open_collective"
  3493. }
  3494. ],
  3495. "time": "2024-09-25T02:54:12+00:00"
  3496. },
  3497. {
  3498. "name": "hyperf/paginator",
  3499. "version": "v3.1.42",
  3500. "source": {
  3501. "type": "git",
  3502. "url": "https://github.com/hyperf/paginator.git",
  3503. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3504. },
  3505. "dist": {
  3506. "type": "zip",
  3507. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3508. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3509. "shasum": ""
  3510. },
  3511. "require": {
  3512. "hyperf/contract": "~3.1.0",
  3513. "hyperf/support": "~3.1.0",
  3514. "hyperf/utils": "~3.1.0",
  3515. "php": ">=8.1"
  3516. },
  3517. "suggest": {
  3518. "hyperf/event": "Reqiured to use PageResolverListener.",
  3519. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3520. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3521. },
  3522. "type": "library",
  3523. "extra": {
  3524. "branch-alias": {
  3525. "dev-master": "3.1-dev"
  3526. },
  3527. "hyperf": {
  3528. "config": "Hyperf\\Paginator\\ConfigProvider"
  3529. }
  3530. },
  3531. "autoload": {
  3532. "psr-4": {
  3533. "Hyperf\\Paginator\\": "src/"
  3534. }
  3535. },
  3536. "notification-url": "https://packagist.org/downloads/",
  3537. "license": [
  3538. "MIT"
  3539. ],
  3540. "description": "A paginator component for hyperf.",
  3541. "homepage": "https://hyperf.io",
  3542. "keywords": [
  3543. "hyperf",
  3544. "paginator",
  3545. "php"
  3546. ],
  3547. "support": {
  3548. "docs": "https://hyperf.wiki",
  3549. "issues": "https://github.com/hyperf/hyperf/issues",
  3550. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3551. "source": "https://github.com/hyperf/hyperf"
  3552. },
  3553. "funding": [
  3554. {
  3555. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3556. "type": "custom"
  3557. },
  3558. {
  3559. "url": "https://opencollective.com/hyperf",
  3560. "type": "open_collective"
  3561. }
  3562. ],
  3563. "time": "2024-09-25T02:54:12+00:00"
  3564. },
  3565. {
  3566. "name": "hyperf/pipeline",
  3567. "version": "v3.1.42",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/hyperf/pipeline.git",
  3571. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3576. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3577. "shasum": ""
  3578. },
  3579. "require": {
  3580. "php": ">=8.1",
  3581. "psr/container": "^1.0 || ^2.0"
  3582. },
  3583. "type": "library",
  3584. "extra": {
  3585. "branch-alias": {
  3586. "dev-master": "3.1-dev"
  3587. }
  3588. },
  3589. "autoload": {
  3590. "psr-4": {
  3591. "Hyperf\\Pipeline\\": "src/"
  3592. }
  3593. },
  3594. "notification-url": "https://packagist.org/downloads/",
  3595. "license": [
  3596. "MIT"
  3597. ],
  3598. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3599. "homepage": "https://hyperf.io",
  3600. "keywords": [
  3601. "hyperf",
  3602. "php",
  3603. "pipeline",
  3604. "swoole"
  3605. ],
  3606. "support": {
  3607. "docs": "https://hyperf.wiki",
  3608. "issues": "https://github.com/hyperf/hyperf/issues",
  3609. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3610. "source": "https://github.com/hyperf/hyperf"
  3611. },
  3612. "funding": [
  3613. {
  3614. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3615. "type": "custom"
  3616. },
  3617. {
  3618. "url": "https://opencollective.com/hyperf",
  3619. "type": "open_collective"
  3620. }
  3621. ],
  3622. "time": "2024-09-25T02:54:12+00:00"
  3623. },
  3624. {
  3625. "name": "hyperf/pool",
  3626. "version": "v3.1.42",
  3627. "source": {
  3628. "type": "git",
  3629. "url": "https://github.com/hyperf/pool.git",
  3630. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3631. },
  3632. "dist": {
  3633. "type": "zip",
  3634. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3635. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3636. "shasum": ""
  3637. },
  3638. "require": {
  3639. "hyperf/contract": "~3.1.0",
  3640. "hyperf/support": "~3.1.0",
  3641. "hyperf/utils": "~3.1.0",
  3642. "php": ">=8.1",
  3643. "psr/container": "^1.0 || ^2.0"
  3644. },
  3645. "suggest": {
  3646. "psr/event-dispatcher": "Required to use events."
  3647. },
  3648. "type": "library",
  3649. "extra": {
  3650. "branch-alias": {
  3651. "dev-master": "3.1-dev"
  3652. },
  3653. "hyperf": {
  3654. "config": "Hyperf\\Pool\\ConfigProvider"
  3655. }
  3656. },
  3657. "autoload": {
  3658. "psr-4": {
  3659. "Hyperf\\Pool\\": "src/"
  3660. }
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "MIT"
  3665. ],
  3666. "description": "An independent universal connection pool component.",
  3667. "homepage": "https://hyperf.io",
  3668. "keywords": [
  3669. "connection-pool",
  3670. "hyperf",
  3671. "php",
  3672. "swoole"
  3673. ],
  3674. "support": {
  3675. "docs": "https://hyperf.wiki",
  3676. "issues": "https://github.com/hyperf/hyperf/issues",
  3677. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3678. "source": "https://github.com/hyperf/hyperf"
  3679. },
  3680. "funding": [
  3681. {
  3682. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3683. "type": "custom"
  3684. },
  3685. {
  3686. "url": "https://opencollective.com/hyperf",
  3687. "type": "open_collective"
  3688. }
  3689. ],
  3690. "time": "2024-09-25T02:54:12+00:00"
  3691. },
  3692. {
  3693. "name": "hyperf/process",
  3694. "version": "v3.1.42",
  3695. "source": {
  3696. "type": "git",
  3697. "url": "https://github.com/hyperf/process.git",
  3698. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3699. },
  3700. "dist": {
  3701. "type": "zip",
  3702. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3703. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3704. "shasum": ""
  3705. },
  3706. "require": {
  3707. "hyperf/contract": "~3.1.0",
  3708. "hyperf/support": "~3.1.0",
  3709. "hyperf/utils": "~3.1.0",
  3710. "php": ">=8.1",
  3711. "psr/container": "^1.0 || ^2.0",
  3712. "psr/event-dispatcher": "^1.0"
  3713. },
  3714. "suggest": {
  3715. "hyperf/di": "Required to use annotations.",
  3716. "hyperf/event": "Required to dump the message before and after process.",
  3717. "hyperf/framework": "Required to use BootProcessListener."
  3718. },
  3719. "type": "library",
  3720. "extra": {
  3721. "branch-alias": {
  3722. "dev-master": "3.1-dev"
  3723. },
  3724. "hyperf": {
  3725. "config": "Hyperf\\Process\\ConfigProvider"
  3726. }
  3727. },
  3728. "autoload": {
  3729. "psr-4": {
  3730. "Hyperf\\Process\\": "src/"
  3731. }
  3732. },
  3733. "notification-url": "https://packagist.org/downloads/",
  3734. "license": [
  3735. "MIT"
  3736. ],
  3737. "description": "A process component for hyperf.",
  3738. "homepage": "https://hyperf.io",
  3739. "keywords": [
  3740. "hyperf",
  3741. "php",
  3742. "process"
  3743. ],
  3744. "support": {
  3745. "docs": "https://hyperf.wiki",
  3746. "issues": "https://github.com/hyperf/hyperf/issues",
  3747. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3748. "source": "https://github.com/hyperf/hyperf"
  3749. },
  3750. "funding": [
  3751. {
  3752. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3753. "type": "custom"
  3754. },
  3755. {
  3756. "url": "https://opencollective.com/hyperf",
  3757. "type": "open_collective"
  3758. }
  3759. ],
  3760. "time": "2024-09-25T02:54:12+00:00"
  3761. },
  3762. {
  3763. "name": "hyperf/redis",
  3764. "version": "v3.1.42",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://github.com/hyperf/redis.git",
  3768. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3773. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3774. "shasum": ""
  3775. },
  3776. "require": {
  3777. "ext-redis": "^5.0 || ^6.0",
  3778. "hyperf/contract": "~3.1.0",
  3779. "hyperf/pool": "~3.1.0",
  3780. "hyperf/support": "~3.1.0",
  3781. "hyperf/tappable": "~3.1.0",
  3782. "hyperf/utils": "~3.1.0",
  3783. "php": ">=8.1",
  3784. "psr/container": "^1.0 || ^2.0"
  3785. },
  3786. "suggest": {
  3787. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3788. "hyperf/di": "Create the RedisPool via dependency injection."
  3789. },
  3790. "type": "library",
  3791. "extra": {
  3792. "branch-alias": {
  3793. "dev-master": "3.1-dev"
  3794. },
  3795. "hyperf": {
  3796. "config": "Hyperf\\Redis\\ConfigProvider"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "psr-4": {
  3801. "Hyperf\\Redis\\": "src/"
  3802. }
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "description": "A redis component for hyperf.",
  3809. "homepage": "https://hyperf.io",
  3810. "keywords": [
  3811. "hyperf",
  3812. "php",
  3813. "pool",
  3814. "redis"
  3815. ],
  3816. "support": {
  3817. "docs": "https://hyperf.wiki",
  3818. "issues": "https://github.com/hyperf/hyperf/issues",
  3819. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3820. "source": "https://github.com/hyperf/hyperf"
  3821. },
  3822. "funding": [
  3823. {
  3824. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3825. "type": "custom"
  3826. },
  3827. {
  3828. "url": "https://opencollective.com/hyperf",
  3829. "type": "open_collective"
  3830. }
  3831. ],
  3832. "time": "2024-09-25T02:54:12+00:00"
  3833. },
  3834. {
  3835. "name": "hyperf/rpc",
  3836. "version": "v3.1.42",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://github.com/hyperf/rpc.git",
  3840. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3845. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3846. "shasum": ""
  3847. },
  3848. "require": {
  3849. "hyperf/codec": "~3.1.0",
  3850. "hyperf/contract": "~3.1.0",
  3851. "hyperf/support": "~3.1.0",
  3852. "jetbrains/phpstorm-attributes": "^1.0",
  3853. "php": ">=8.1"
  3854. },
  3855. "type": "library",
  3856. "extra": {
  3857. "branch-alias": {
  3858. "dev-master": "3.1-dev"
  3859. },
  3860. "hyperf": []
  3861. },
  3862. "autoload": {
  3863. "psr-4": {
  3864. "Hyperf\\Rpc\\": "src/"
  3865. }
  3866. },
  3867. "notification-url": "https://packagist.org/downloads/",
  3868. "license": [
  3869. "MIT"
  3870. ],
  3871. "description": "A rpc basic library for Hyperf.",
  3872. "homepage": "https://hyperf.io",
  3873. "keywords": [
  3874. "hyperf",
  3875. "php",
  3876. "rpc",
  3877. "swoole"
  3878. ],
  3879. "support": {
  3880. "docs": "https://hyperf.wiki",
  3881. "issues": "https://github.com/hyperf/hyperf/issues",
  3882. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3883. "source": "https://github.com/hyperf/hyperf"
  3884. },
  3885. "funding": [
  3886. {
  3887. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3888. "type": "custom"
  3889. },
  3890. {
  3891. "url": "https://opencollective.com/hyperf",
  3892. "type": "open_collective"
  3893. }
  3894. ],
  3895. "time": "2024-09-25T02:54:12+00:00"
  3896. },
  3897. {
  3898. "name": "hyperf/rpc-client",
  3899. "version": "v3.1.42",
  3900. "source": {
  3901. "type": "git",
  3902. "url": "https://github.com/hyperf/rpc-client.git",
  3903. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3904. },
  3905. "dist": {
  3906. "type": "zip",
  3907. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3908. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3909. "shasum": ""
  3910. },
  3911. "require": {
  3912. "hyperf/code-parser": "~3.1.0",
  3913. "hyperf/load-balancer": "~3.1.0",
  3914. "hyperf/rpc": "~3.1.0",
  3915. "hyperf/support": "~3.1.0",
  3916. "hyperf/utils": "~3.1.0",
  3917. "jetbrains/phpstorm-attributes": "^1.0",
  3918. "php": ">=8.1",
  3919. "psr/container": "^1.0 || ^2.0"
  3920. },
  3921. "suggest": {
  3922. "hyperf/di": "For better container experience.",
  3923. "hyperf/pool": "Required to use connection pool.",
  3924. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3925. },
  3926. "type": "library",
  3927. "extra": {
  3928. "branch-alias": {
  3929. "dev-master": "3.1-dev"
  3930. },
  3931. "hyperf": {
  3932. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3933. }
  3934. },
  3935. "autoload": {
  3936. "psr-4": {
  3937. "Hyperf\\RpcClient\\": "src/"
  3938. }
  3939. },
  3940. "notification-url": "https://packagist.org/downloads/",
  3941. "license": [
  3942. "MIT"
  3943. ],
  3944. "description": "An abstract rpc server component for Hyperf.",
  3945. "homepage": "https://hyperf.io",
  3946. "keywords": [
  3947. "hyperf",
  3948. "json-rpc",
  3949. "php",
  3950. "rpc",
  3951. "rpc-client",
  3952. "swoole"
  3953. ],
  3954. "support": {
  3955. "docs": "https://hyperf.wiki",
  3956. "issues": "https://github.com/hyperf/hyperf/issues",
  3957. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3958. "source": "https://github.com/hyperf/hyperf"
  3959. },
  3960. "funding": [
  3961. {
  3962. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3963. "type": "custom"
  3964. },
  3965. {
  3966. "url": "https://opencollective.com/hyperf",
  3967. "type": "open_collective"
  3968. }
  3969. ],
  3970. "time": "2024-09-25T02:54:12+00:00"
  3971. },
  3972. {
  3973. "name": "hyperf/rpc-server",
  3974. "version": "v3.1.42",
  3975. "source": {
  3976. "type": "git",
  3977. "url": "https://github.com/hyperf/rpc-server.git",
  3978. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3979. },
  3980. "dist": {
  3981. "type": "zip",
  3982. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3983. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3984. "shasum": ""
  3985. },
  3986. "require": {
  3987. "hyperf/http-server": "~3.1.0",
  3988. "hyperf/rpc": "~3.1.0",
  3989. "php": ">=8.1"
  3990. },
  3991. "suggest": {
  3992. "hyperf/di": "Required to use annotations."
  3993. },
  3994. "type": "library",
  3995. "extra": {
  3996. "branch-alias": {
  3997. "dev-master": "3.1-dev"
  3998. },
  3999. "hyperf": {
  4000. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4001. }
  4002. },
  4003. "autoload": {
  4004. "psr-4": {
  4005. "Hyperf\\RpcServer\\": "src/"
  4006. }
  4007. },
  4008. "notification-url": "https://packagist.org/downloads/",
  4009. "license": [
  4010. "MIT"
  4011. ],
  4012. "description": "An abstract rpc server component for Hyperf.",
  4013. "homepage": "https://hyperf.io",
  4014. "keywords": [
  4015. "hyperf",
  4016. "php",
  4017. "rpc",
  4018. "rpc-server",
  4019. "swoole"
  4020. ],
  4021. "support": {
  4022. "docs": "https://hyperf.wiki",
  4023. "issues": "https://github.com/hyperf/hyperf/issues",
  4024. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4025. "source": "https://github.com/hyperf/hyperf"
  4026. },
  4027. "funding": [
  4028. {
  4029. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4030. "type": "custom"
  4031. },
  4032. {
  4033. "url": "https://opencollective.com/hyperf",
  4034. "type": "open_collective"
  4035. }
  4036. ],
  4037. "time": "2024-09-25T02:54:12+00:00"
  4038. },
  4039. {
  4040. "name": "hyperf/serializer",
  4041. "version": "v3.1.42",
  4042. "source": {
  4043. "type": "git",
  4044. "url": "https://github.com/hyperf/serializer.git",
  4045. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4046. },
  4047. "dist": {
  4048. "type": "zip",
  4049. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4050. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4051. "shasum": ""
  4052. },
  4053. "require": {
  4054. "hyperf/contract": "~3.1.0",
  4055. "php": ">=8.1"
  4056. },
  4057. "suggest": {
  4058. "hyperf/di": "Required to use ExceptionNormalizer",
  4059. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4060. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4061. },
  4062. "type": "library",
  4063. "extra": {
  4064. "branch-alias": {
  4065. "dev-master": "3.1-dev"
  4066. },
  4067. "hyperf": {
  4068. "config": "Hyperf\\Serializer\\ConfigProvider"
  4069. }
  4070. },
  4071. "autoload": {
  4072. "psr-4": {
  4073. "Hyperf\\Serializer\\": "src/"
  4074. }
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "MIT"
  4079. ],
  4080. "description": "A serializer component for Hyperf.",
  4081. "homepage": "https://hyperf.io",
  4082. "keywords": [
  4083. "hyperf",
  4084. "php",
  4085. "swoole",
  4086. "tappable"
  4087. ],
  4088. "support": {
  4089. "docs": "https://hyperf.wiki",
  4090. "issues": "https://github.com/hyperf/hyperf/issues",
  4091. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4092. "source": "https://github.com/hyperf/hyperf"
  4093. },
  4094. "funding": [
  4095. {
  4096. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4097. "type": "custom"
  4098. },
  4099. {
  4100. "url": "https://opencollective.com/hyperf",
  4101. "type": "open_collective"
  4102. }
  4103. ],
  4104. "time": "2024-09-25T02:54:12+00:00"
  4105. },
  4106. {
  4107. "name": "hyperf/server",
  4108. "version": "v3.1.42",
  4109. "source": {
  4110. "type": "git",
  4111. "url": "https://github.com/hyperf/server.git",
  4112. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4113. },
  4114. "dist": {
  4115. "type": "zip",
  4116. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4117. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4118. "shasum": ""
  4119. },
  4120. "require": {
  4121. "hyperf/contract": "~3.1.0",
  4122. "hyperf/coordinator": "~3.1.0",
  4123. "hyperf/engine": "^2.8",
  4124. "hyperf/support": "~3.1.0",
  4125. "hyperf/tappable": "~3.1.0",
  4126. "php": ">=8.1",
  4127. "psr/container": "^1.0 || ^2.0",
  4128. "psr/event-dispatcher": "^1.0",
  4129. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4130. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4131. },
  4132. "suggest": {
  4133. "hyperf/event": "Dump the info after server start.",
  4134. "hyperf/framework": "Dump the info after server start."
  4135. },
  4136. "type": "library",
  4137. "extra": {
  4138. "branch-alias": {
  4139. "dev-master": "3.1-dev"
  4140. },
  4141. "hyperf": {
  4142. "config": "Hyperf\\Server\\ConfigProvider"
  4143. }
  4144. },
  4145. "autoload": {
  4146. "psr-4": {
  4147. "Hyperf\\Server\\": "src/"
  4148. }
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "description": "A base server library for Hyperf.",
  4155. "homepage": "https://hyperf.io",
  4156. "keywords": [
  4157. "hyperf",
  4158. "php",
  4159. "server",
  4160. "swoole"
  4161. ],
  4162. "support": {
  4163. "docs": "https://hyperf.wiki",
  4164. "issues": "https://github.com/hyperf/hyperf/issues",
  4165. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4166. "source": "https://github.com/hyperf/hyperf"
  4167. },
  4168. "funding": [
  4169. {
  4170. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4171. "type": "custom"
  4172. },
  4173. {
  4174. "url": "https://opencollective.com/hyperf",
  4175. "type": "open_collective"
  4176. }
  4177. ],
  4178. "time": "2024-09-25T02:54:12+00:00"
  4179. },
  4180. {
  4181. "name": "hyperf/service-governance",
  4182. "version": "v3.1.42",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://github.com/hyperf/service-governance.git",
  4186. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4191. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4192. "shasum": ""
  4193. },
  4194. "require": {
  4195. "hyperf/contract": "~3.1.0",
  4196. "hyperf/support": "~3.1.0",
  4197. "jetbrains/phpstorm-attributes": "^1.0",
  4198. "php": ">=8.1"
  4199. },
  4200. "suggest": {
  4201. "hyperf/event": "Required to use RegisterServiceListener.",
  4202. "hyperf/framework": "Required to use RegisterServiceListener.",
  4203. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4204. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4205. },
  4206. "type": "library",
  4207. "extra": {
  4208. "branch-alias": {
  4209. "dev-master": "3.1-dev"
  4210. },
  4211. "hyperf": {
  4212. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4213. }
  4214. },
  4215. "autoload": {
  4216. "psr-4": {
  4217. "Hyperf\\ServiceGovernance\\": "src/"
  4218. }
  4219. },
  4220. "notification-url": "https://packagist.org/downloads/",
  4221. "license": [
  4222. "MIT"
  4223. ],
  4224. "description": "A service governance component for Hyperf.",
  4225. "homepage": "https://hyperf.io",
  4226. "keywords": [
  4227. "hyperf",
  4228. "php",
  4229. "service-governance",
  4230. "swoole"
  4231. ],
  4232. "support": {
  4233. "docs": "https://hyperf.wiki",
  4234. "issues": "https://github.com/hyperf/hyperf/issues",
  4235. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4236. "source": "https://github.com/hyperf/hyperf"
  4237. },
  4238. "funding": [
  4239. {
  4240. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4241. "type": "custom"
  4242. },
  4243. {
  4244. "url": "https://opencollective.com/hyperf",
  4245. "type": "open_collective"
  4246. }
  4247. ],
  4248. "time": "2024-09-25T02:54:12+00:00"
  4249. },
  4250. {
  4251. "name": "hyperf/service-governance-consul",
  4252. "version": "v3.1.42",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/hyperf/service-governance-consul.git",
  4256. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4261. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "hyperf/consul": "~3.1.0",
  4266. "hyperf/contract": "~3.1.0",
  4267. "hyperf/service-governance": "~3.1.0",
  4268. "hyperf/support": "~3.1.0",
  4269. "hyperf/utils": "~3.1.0",
  4270. "php": ">=8.1"
  4271. },
  4272. "type": "library",
  4273. "extra": {
  4274. "branch-alias": {
  4275. "dev-master": "3.1-dev"
  4276. },
  4277. "hyperf": {
  4278. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4279. }
  4280. },
  4281. "autoload": {
  4282. "psr-4": {
  4283. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4284. }
  4285. },
  4286. "notification-url": "https://packagist.org/downloads/",
  4287. "license": [
  4288. "MIT"
  4289. ],
  4290. "description": "A consul adapter for service governance.",
  4291. "homepage": "https://hyperf.io",
  4292. "keywords": [
  4293. "consul-adapter",
  4294. "hyperf",
  4295. "php",
  4296. "service-governance",
  4297. "swoole"
  4298. ],
  4299. "support": {
  4300. "docs": "https://hyperf.wiki",
  4301. "issues": "https://github.com/hyperf/hyperf/issues",
  4302. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4303. "source": "https://github.com/hyperf/hyperf"
  4304. },
  4305. "funding": [
  4306. {
  4307. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4308. "type": "custom"
  4309. },
  4310. {
  4311. "url": "https://opencollective.com/hyperf",
  4312. "type": "open_collective"
  4313. }
  4314. ],
  4315. "time": "2024-09-25T02:54:12+00:00"
  4316. },
  4317. {
  4318. "name": "hyperf/service-governance-nacos",
  4319. "version": "v3.1.42",
  4320. "source": {
  4321. "type": "git",
  4322. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4323. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4324. },
  4325. "dist": {
  4326. "type": "zip",
  4327. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4328. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4329. "shasum": ""
  4330. },
  4331. "require": {
  4332. "hyperf/codec": "~3.1.0",
  4333. "hyperf/contract": "~3.1.0",
  4334. "hyperf/nacos": "~3.1.0",
  4335. "hyperf/service-governance": "~3.1.0",
  4336. "hyperf/support": "~3.1.0",
  4337. "hyperf/utils": "~3.1.0",
  4338. "php": ">=8.1"
  4339. },
  4340. "type": "library",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-master": "3.1-dev"
  4344. },
  4345. "hyperf": {
  4346. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4347. }
  4348. },
  4349. "autoload": {
  4350. "psr-4": {
  4351. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4352. }
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "MIT"
  4357. ],
  4358. "description": "A nacos adapter for service governance.",
  4359. "homepage": "https://hyperf.io",
  4360. "keywords": [
  4361. "hyperf",
  4362. "nacos-adapter",
  4363. "php",
  4364. "service-governance",
  4365. "swoole"
  4366. ],
  4367. "support": {
  4368. "docs": "https://hyperf.wiki",
  4369. "issues": "https://github.com/hyperf/hyperf/issues",
  4370. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4371. "source": "https://github.com/hyperf/hyperf"
  4372. },
  4373. "funding": [
  4374. {
  4375. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4376. "type": "custom"
  4377. },
  4378. {
  4379. "url": "https://opencollective.com/hyperf",
  4380. "type": "open_collective"
  4381. }
  4382. ],
  4383. "time": "2024-09-25T02:54:12+00:00"
  4384. },
  4385. {
  4386. "name": "hyperf/snowflake",
  4387. "version": "v3.1.42",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://github.com/hyperf/snowflake.git",
  4391. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4396. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4397. "shasum": ""
  4398. },
  4399. "require": {
  4400. "hyperf/contract": "~3.1.0",
  4401. "php": ">=8.1"
  4402. },
  4403. "suggest": {
  4404. "hyperf/config": "Required to read snowflake config.",
  4405. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4406. "psr/container": "Required to use MetaGeneratorFactory."
  4407. },
  4408. "type": "library",
  4409. "extra": {
  4410. "branch-alias": {
  4411. "dev-master": "3.1-dev"
  4412. },
  4413. "hyperf": {
  4414. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4415. }
  4416. },
  4417. "autoload": {
  4418. "psr-4": {
  4419. "Hyperf\\Snowflake\\": "src/"
  4420. }
  4421. },
  4422. "notification-url": "https://packagist.org/downloads/",
  4423. "license": [
  4424. "MIT"
  4425. ],
  4426. "description": "A snowflake library",
  4427. "homepage": "https://hyperf.io",
  4428. "keywords": [
  4429. "php",
  4430. "snowflake"
  4431. ],
  4432. "support": {
  4433. "docs": "https://hyperf.wiki",
  4434. "issues": "https://github.com/hyperf/hyperf/issues",
  4435. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4436. "source": "https://github.com/hyperf/hyperf"
  4437. },
  4438. "funding": [
  4439. {
  4440. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4441. "type": "custom"
  4442. },
  4443. {
  4444. "url": "https://opencollective.com/hyperf",
  4445. "type": "open_collective"
  4446. }
  4447. ],
  4448. "time": "2024-09-25T02:54:12+00:00"
  4449. },
  4450. {
  4451. "name": "hyperf/stdlib",
  4452. "version": "v3.1.42",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/hyperf/stdlib.git",
  4456. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4461. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4462. "shasum": ""
  4463. },
  4464. "require": {
  4465. "php": ">=8.1"
  4466. },
  4467. "type": "library",
  4468. "extra": {
  4469. "branch-alias": {
  4470. "dev-master": "3.1-dev"
  4471. }
  4472. },
  4473. "autoload": {
  4474. "psr-4": {
  4475. "Hyperf\\Stdlib\\": "src/"
  4476. }
  4477. },
  4478. "notification-url": "https://packagist.org/downloads/",
  4479. "license": [
  4480. "MIT"
  4481. ],
  4482. "description": "A stdlib component for Hyperf.",
  4483. "homepage": "https://hyperf.io",
  4484. "keywords": [
  4485. "hyperf",
  4486. "php",
  4487. "stdlib",
  4488. "swoole"
  4489. ],
  4490. "support": {
  4491. "docs": "https://hyperf.wiki",
  4492. "issues": "https://github.com/hyperf/hyperf/issues",
  4493. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4494. "source": "https://github.com/hyperf/hyperf"
  4495. },
  4496. "funding": [
  4497. {
  4498. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4499. "type": "custom"
  4500. },
  4501. {
  4502. "url": "https://opencollective.com/hyperf",
  4503. "type": "open_collective"
  4504. }
  4505. ],
  4506. "time": "2024-09-25T02:54:12+00:00"
  4507. },
  4508. {
  4509. "name": "hyperf/stringable",
  4510. "version": "v3.1.43",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://github.com/hyperf/stringable.git",
  4514. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4519. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4520. "shasum": ""
  4521. },
  4522. "require": {
  4523. "ext-mbstring": "*",
  4524. "hyperf/collection": "~3.1.0",
  4525. "hyperf/conditionable": "~3.1.0",
  4526. "hyperf/macroable": "~3.1.0",
  4527. "hyperf/tappable": "~3.1.0",
  4528. "php": ">=8.1"
  4529. },
  4530. "suggest": {
  4531. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4532. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4533. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4534. },
  4535. "type": "library",
  4536. "extra": {
  4537. "branch-alias": {
  4538. "dev-master": "3.1-dev"
  4539. }
  4540. },
  4541. "autoload": {
  4542. "files": [
  4543. "src/Functions.php"
  4544. ],
  4545. "psr-4": {
  4546. "Hyperf\\Stringable\\": "src/"
  4547. }
  4548. },
  4549. "notification-url": "https://packagist.org/downloads/",
  4550. "license": [
  4551. "MIT"
  4552. ],
  4553. "description": "Hyperf Stringable package which come from illuminate/support",
  4554. "homepage": "https://hyperf.io",
  4555. "keywords": [
  4556. "hyperf",
  4557. "php",
  4558. "stringable",
  4559. "swoole"
  4560. ],
  4561. "support": {
  4562. "docs": "https://hyperf.wiki",
  4563. "issues": "https://github.com/hyperf/hyperf/issues",
  4564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4565. "source": "https://github.com/hyperf/hyperf"
  4566. },
  4567. "funding": [
  4568. {
  4569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4570. "type": "custom"
  4571. },
  4572. {
  4573. "url": "https://opencollective.com/hyperf",
  4574. "type": "open_collective"
  4575. }
  4576. ],
  4577. "time": "2024-10-09T02:28:40+00:00"
  4578. },
  4579. {
  4580. "name": "hyperf/support",
  4581. "version": "v3.1.42",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/hyperf/support.git",
  4585. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4590. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4591. "shasum": ""
  4592. },
  4593. "require": {
  4594. "hyperf/collection": "~3.1.0",
  4595. "hyperf/context": "~3.1.0",
  4596. "hyperf/contract": "~3.1.0",
  4597. "hyperf/coroutine": "~3.1.0",
  4598. "hyperf/macroable": "~3.1.0",
  4599. "hyperf/stringable": "~3.1.0",
  4600. "php": ">=8.1"
  4601. },
  4602. "suggest": {
  4603. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4604. },
  4605. "type": "library",
  4606. "extra": {
  4607. "branch-alias": {
  4608. "dev-master": "3.1-dev"
  4609. }
  4610. },
  4611. "autoload": {
  4612. "files": [
  4613. "src/Functions.php"
  4614. ],
  4615. "psr-4": {
  4616. "Hyperf\\Support\\": "src/"
  4617. }
  4618. },
  4619. "notification-url": "https://packagist.org/downloads/",
  4620. "license": [
  4621. "MIT"
  4622. ],
  4623. "description": "A support component for Hyperf.",
  4624. "homepage": "https://hyperf.io",
  4625. "keywords": [
  4626. "hyperf",
  4627. "php",
  4628. "support",
  4629. "swoole"
  4630. ],
  4631. "support": {
  4632. "docs": "https://hyperf.wiki",
  4633. "issues": "https://github.com/hyperf/hyperf/issues",
  4634. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4635. "source": "https://github.com/hyperf/hyperf"
  4636. },
  4637. "funding": [
  4638. {
  4639. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4640. "type": "custom"
  4641. },
  4642. {
  4643. "url": "https://opencollective.com/hyperf",
  4644. "type": "open_collective"
  4645. }
  4646. ],
  4647. "time": "2024-09-25T02:54:12+00:00"
  4648. },
  4649. {
  4650. "name": "hyperf/tappable",
  4651. "version": "v3.1.42",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://github.com/hyperf/tappable.git",
  4655. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4656. },
  4657. "dist": {
  4658. "type": "zip",
  4659. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4660. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4661. "shasum": ""
  4662. },
  4663. "require": {
  4664. "php": ">=8.1"
  4665. },
  4666. "type": "library",
  4667. "extra": {
  4668. "branch-alias": {
  4669. "dev-master": "3.1-dev"
  4670. }
  4671. },
  4672. "autoload": {
  4673. "files": [
  4674. "src/Functions.php"
  4675. ],
  4676. "psr-4": {
  4677. "Hyperf\\Tappable\\": "src/"
  4678. }
  4679. },
  4680. "notification-url": "https://packagist.org/downloads/",
  4681. "license": [
  4682. "MIT"
  4683. ],
  4684. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4685. "homepage": "https://hyperf.io",
  4686. "keywords": [
  4687. "hyperf",
  4688. "php",
  4689. "swoole",
  4690. "tappable"
  4691. ],
  4692. "support": {
  4693. "docs": "https://hyperf.wiki",
  4694. "issues": "https://github.com/hyperf/hyperf/issues",
  4695. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4696. "source": "https://github.com/hyperf/hyperf"
  4697. },
  4698. "funding": [
  4699. {
  4700. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4701. "type": "custom"
  4702. },
  4703. {
  4704. "url": "https://opencollective.com/hyperf",
  4705. "type": "open_collective"
  4706. }
  4707. ],
  4708. "time": "2024-09-25T02:54:12+00:00"
  4709. },
  4710. {
  4711. "name": "hyperf/translation",
  4712. "version": "v3.1.42",
  4713. "source": {
  4714. "type": "git",
  4715. "url": "https://github.com/hyperf/translation.git",
  4716. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4717. },
  4718. "dist": {
  4719. "type": "zip",
  4720. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4721. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4722. "shasum": ""
  4723. },
  4724. "require": {
  4725. "hyperf/contract": "~3.1.0",
  4726. "hyperf/macroable": "~3.1.0",
  4727. "hyperf/support": "~3.1.0",
  4728. "hyperf/utils": "~3.1.0",
  4729. "php": ">=8.1",
  4730. "psr/container": "^1.0 || ^2.0"
  4731. },
  4732. "type": "library",
  4733. "extra": {
  4734. "branch-alias": {
  4735. "dev-master": "3.1-dev"
  4736. },
  4737. "hyperf": {
  4738. "config": "Hyperf\\Translation\\ConfigProvider"
  4739. }
  4740. },
  4741. "autoload": {
  4742. "files": [
  4743. "src/Functions.php"
  4744. ],
  4745. "psr-4": {
  4746. "Hyperf\\Translation\\": "src/"
  4747. }
  4748. },
  4749. "notification-url": "https://packagist.org/downloads/",
  4750. "license": [
  4751. "MIT"
  4752. ],
  4753. "description": "An independent translation component, forked by illuminate/translation.",
  4754. "keywords": [
  4755. "hyperf",
  4756. "translation"
  4757. ],
  4758. "support": {
  4759. "issues": "https://github.com/hyperf/translation/issues",
  4760. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4761. },
  4762. "funding": [
  4763. {
  4764. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4765. "type": "custom"
  4766. },
  4767. {
  4768. "url": "https://opencollective.com/hyperf",
  4769. "type": "open_collective"
  4770. }
  4771. ],
  4772. "time": "2024-09-25T02:54:12+00:00"
  4773. },
  4774. {
  4775. "name": "hyperf/utils",
  4776. "version": "v3.1.42",
  4777. "source": {
  4778. "type": "git",
  4779. "url": "https://github.com/hyperf/utils.git",
  4780. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4781. },
  4782. "dist": {
  4783. "type": "zip",
  4784. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4785. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4786. "shasum": ""
  4787. },
  4788. "require": {
  4789. "doctrine/inflector": "^2.0",
  4790. "hyperf/code-parser": "~3.1.0",
  4791. "hyperf/codec": "~3.1.0",
  4792. "hyperf/collection": "~3.1.0",
  4793. "hyperf/context": "~3.1.0",
  4794. "hyperf/contract": "~3.1.0",
  4795. "hyperf/coordinator": "~3.1.0",
  4796. "hyperf/coroutine": "~3.1.0",
  4797. "hyperf/engine": "^2.0",
  4798. "hyperf/macroable": "~3.1.0",
  4799. "hyperf/serializer": "~3.1.0",
  4800. "hyperf/stringable": "~3.1.0",
  4801. "hyperf/support": "~3.1.0",
  4802. "php": ">=8.1"
  4803. },
  4804. "type": "library",
  4805. "extra": {
  4806. "branch-alias": {
  4807. "dev-master": "3.1-dev"
  4808. }
  4809. },
  4810. "notification-url": "https://packagist.org/downloads/",
  4811. "license": [
  4812. "MIT"
  4813. ],
  4814. "description": "A tools package that could help developer solved the problem quickly.",
  4815. "homepage": "https://hyperf.io",
  4816. "keywords": [
  4817. "hyperf",
  4818. "php",
  4819. "swoole",
  4820. "utils"
  4821. ],
  4822. "support": {
  4823. "docs": "https://hyperf.wiki",
  4824. "issues": "https://github.com/hyperf/hyperf/issues",
  4825. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4826. "source": "https://github.com/hyperf/hyperf"
  4827. },
  4828. "funding": [
  4829. {
  4830. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4831. "type": "custom"
  4832. },
  4833. {
  4834. "url": "https://opencollective.com/hyperf",
  4835. "type": "open_collective"
  4836. }
  4837. ],
  4838. "time": "2024-09-25T02:54:12+00:00"
  4839. },
  4840. {
  4841. "name": "hyperf/validation",
  4842. "version": "v3.1.42",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://github.com/hyperf/validation.git",
  4846. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://api.github.com/repos/hyperf/validation/zipball/917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4851. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4852. "shasum": ""
  4853. },
  4854. "require": {
  4855. "egulias/email-validator": "^3.0",
  4856. "hyperf/collection": "~3.1.0",
  4857. "hyperf/conditionable": "~3.1.0",
  4858. "hyperf/contract": "~3.1.0",
  4859. "hyperf/di": "~3.1.0",
  4860. "hyperf/framework": "~3.1.0",
  4861. "hyperf/macroable": "~3.1.0",
  4862. "hyperf/stringable": "~3.1.0",
  4863. "hyperf/support": "~3.1.0",
  4864. "hyperf/tappable": "~3.1.0",
  4865. "hyperf/translation": "~3.1.0",
  4866. "hyperf/utils": "~3.1.0",
  4867. "nesbot/carbon": "^2.21",
  4868. "php": ">=8.1",
  4869. "psr/container": "^1.0 || ^2.0",
  4870. "psr/event-dispatcher": "^1.0",
  4871. "psr/http-message": "^1.0 || ^2.0"
  4872. },
  4873. "suggest": {
  4874. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4875. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4876. },
  4877. "type": "library",
  4878. "extra": {
  4879. "branch-alias": {
  4880. "dev-master": "3.1-dev"
  4881. },
  4882. "hyperf": {
  4883. "config": "Hyperf\\Validation\\ConfigProvider"
  4884. }
  4885. },
  4886. "autoload": {
  4887. "psr-4": {
  4888. "Hyperf\\Validation\\": "src/"
  4889. }
  4890. },
  4891. "notification-url": "https://packagist.org/downloads/",
  4892. "license": [
  4893. "MIT"
  4894. ],
  4895. "description": "hyperf validation",
  4896. "keywords": [
  4897. "hyperf",
  4898. "validation"
  4899. ],
  4900. "support": {
  4901. "issues": "https://github.com/hyperf/validation/issues",
  4902. "source": "https://github.com/hyperf/validation/tree/v3.1.42"
  4903. },
  4904. "funding": [
  4905. {
  4906. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4907. "type": "custom"
  4908. },
  4909. {
  4910. "url": "https://opencollective.com/hyperf",
  4911. "type": "open_collective"
  4912. }
  4913. ],
  4914. "time": "2024-09-25T02:54:12+00:00"
  4915. },
  4916. {
  4917. "name": "hyperf/websocket-server",
  4918. "version": "v3.1.42",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/hyperf/websocket-server.git",
  4922. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  4927. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  4928. "shasum": ""
  4929. },
  4930. "require": {
  4931. "hyperf/collection": "~3.1.0",
  4932. "hyperf/contract": "~3.1.0",
  4933. "hyperf/exception-handler": "~3.1.0",
  4934. "hyperf/http-server": "~3.1.0",
  4935. "hyperf/support": "~3.1.0",
  4936. "hyperf/utils": "~3.1.0",
  4937. "php": ">=8.1",
  4938. "psr/container": "^1.0 || ^2.0",
  4939. "psr/event-dispatcher": "^1.0"
  4940. },
  4941. "type": "library",
  4942. "extra": {
  4943. "branch-alias": {
  4944. "dev-master": "3.1-dev"
  4945. },
  4946. "hyperf": {
  4947. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4948. }
  4949. },
  4950. "autoload": {
  4951. "psr-4": {
  4952. "Hyperf\\WebSocketServer\\": "src/"
  4953. }
  4954. },
  4955. "notification-url": "https://packagist.org/downloads/",
  4956. "license": [
  4957. "MIT"
  4958. ],
  4959. "description": "A websocket server library for Hyperf.",
  4960. "homepage": "https://hyperf.io",
  4961. "keywords": [
  4962. "hyperf",
  4963. "php",
  4964. "swoole",
  4965. "websocket"
  4966. ],
  4967. "support": {
  4968. "docs": "https://hyperf.wiki",
  4969. "issues": "https://github.com/hyperf/hyperf/issues",
  4970. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4971. "source": "https://github.com/hyperf/hyperf"
  4972. },
  4973. "funding": [
  4974. {
  4975. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4976. "type": "custom"
  4977. },
  4978. {
  4979. "url": "https://opencollective.com/hyperf",
  4980. "type": "open_collective"
  4981. }
  4982. ],
  4983. "time": "2024-09-25T02:54:12+00:00"
  4984. },
  4985. {
  4986. "name": "jetbrains/phpstorm-attributes",
  4987. "version": "1.1",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4991. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4996. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4997. "shasum": ""
  4998. },
  4999. "type": "library",
  5000. "autoload": {
  5001. "psr-4": {
  5002. "JetBrains\\PhpStorm\\": "src/"
  5003. }
  5004. },
  5005. "notification-url": "https://packagist.org/downloads/",
  5006. "license": [
  5007. "Apache-2.0"
  5008. ],
  5009. "authors": [
  5010. {
  5011. "name": "JetBrains",
  5012. "homepage": "https://www.jetbrains.com"
  5013. }
  5014. ],
  5015. "description": "PhpStorm specific attributes",
  5016. "keywords": [
  5017. "attributes",
  5018. "jetbrains",
  5019. "phpstorm"
  5020. ],
  5021. "support": {
  5022. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5023. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  5024. },
  5025. "time": "2023-09-01T08:50:25+00:00"
  5026. },
  5027. {
  5028. "name": "laminas/laminas-mime",
  5029. "version": "2.12.0",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/laminas/laminas-mime.git",
  5033. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5038. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5039. "shasum": ""
  5040. },
  5041. "require": {
  5042. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5043. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5044. },
  5045. "conflict": {
  5046. "zendframework/zend-mime": "*"
  5047. },
  5048. "require-dev": {
  5049. "laminas/laminas-coding-standard": "~2.4.0",
  5050. "laminas/laminas-mail": "^2.19.0",
  5051. "phpunit/phpunit": "~9.5.25"
  5052. },
  5053. "suggest": {
  5054. "laminas/laminas-mail": "Laminas\\Mail component"
  5055. },
  5056. "type": "library",
  5057. "autoload": {
  5058. "psr-4": {
  5059. "Laminas\\Mime\\": "src/"
  5060. }
  5061. },
  5062. "notification-url": "https://packagist.org/downloads/",
  5063. "license": [
  5064. "BSD-3-Clause"
  5065. ],
  5066. "description": "Create and parse MIME messages and parts",
  5067. "homepage": "https://laminas.dev",
  5068. "keywords": [
  5069. "laminas",
  5070. "mime"
  5071. ],
  5072. "support": {
  5073. "chat": "https://laminas.dev/chat",
  5074. "docs": "https://docs.laminas.dev/laminas-mime/",
  5075. "forum": "https://discourse.laminas.dev",
  5076. "issues": "https://github.com/laminas/laminas-mime/issues",
  5077. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5078. "source": "https://github.com/laminas/laminas-mime"
  5079. },
  5080. "funding": [
  5081. {
  5082. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5083. "type": "community_bridge"
  5084. }
  5085. ],
  5086. "time": "2023-11-02T16:47:19+00:00"
  5087. },
  5088. {
  5089. "name": "laminas/laminas-stdlib",
  5090. "version": "3.20.0",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/laminas/laminas-stdlib.git",
  5094. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5099. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5100. "shasum": ""
  5101. },
  5102. "require": {
  5103. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5104. },
  5105. "conflict": {
  5106. "zendframework/zend-stdlib": "*"
  5107. },
  5108. "require-dev": {
  5109. "laminas/laminas-coding-standard": "^3.0",
  5110. "phpbench/phpbench": "^1.3.1",
  5111. "phpunit/phpunit": "^10.5.38",
  5112. "psalm/plugin-phpunit": "^0.19.0",
  5113. "vimeo/psalm": "^5.26.1"
  5114. },
  5115. "type": "library",
  5116. "autoload": {
  5117. "psr-4": {
  5118. "Laminas\\Stdlib\\": "src/"
  5119. }
  5120. },
  5121. "notification-url": "https://packagist.org/downloads/",
  5122. "license": [
  5123. "BSD-3-Clause"
  5124. ],
  5125. "description": "SPL extensions, array utilities, error handlers, and more",
  5126. "homepage": "https://laminas.dev",
  5127. "keywords": [
  5128. "laminas",
  5129. "stdlib"
  5130. ],
  5131. "support": {
  5132. "chat": "https://laminas.dev/chat",
  5133. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5134. "forum": "https://discourse.laminas.dev",
  5135. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5136. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5137. "source": "https://github.com/laminas/laminas-stdlib"
  5138. },
  5139. "funding": [
  5140. {
  5141. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5142. "type": "community_bridge"
  5143. }
  5144. ],
  5145. "time": "2024-10-29T13:46:07+00:00"
  5146. },
  5147. {
  5148. "name": "lcobucci/clock",
  5149. "version": "2.3.0",
  5150. "source": {
  5151. "type": "git",
  5152. "url": "https://github.com/lcobucci/clock.git",
  5153. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5154. },
  5155. "dist": {
  5156. "type": "zip",
  5157. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5158. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5159. "shasum": ""
  5160. },
  5161. "require": {
  5162. "php": "~8.1.0 || ~8.2.0",
  5163. "stella-maris/clock": "^0.1.7"
  5164. },
  5165. "provide": {
  5166. "psr/clock-implementation": "1.0"
  5167. },
  5168. "require-dev": {
  5169. "infection/infection": "^0.26",
  5170. "lcobucci/coding-standard": "^9.0",
  5171. "phpstan/extension-installer": "^1.2",
  5172. "phpstan/phpstan": "^1.9.4",
  5173. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5174. "phpstan/phpstan-phpunit": "^1.3.2",
  5175. "phpstan/phpstan-strict-rules": "^1.4.4",
  5176. "phpunit/phpunit": "^9.5.27"
  5177. },
  5178. "type": "library",
  5179. "autoload": {
  5180. "psr-4": {
  5181. "Lcobucci\\Clock\\": "src"
  5182. }
  5183. },
  5184. "notification-url": "https://packagist.org/downloads/",
  5185. "license": [
  5186. "MIT"
  5187. ],
  5188. "authors": [
  5189. {
  5190. "name": "Luís Cobucci",
  5191. "email": "lcobucci@gmail.com"
  5192. }
  5193. ],
  5194. "description": "Yet another clock abstraction",
  5195. "support": {
  5196. "issues": "https://github.com/lcobucci/clock/issues",
  5197. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5198. },
  5199. "funding": [
  5200. {
  5201. "url": "https://github.com/lcobucci",
  5202. "type": "github"
  5203. },
  5204. {
  5205. "url": "https://www.patreon.com/lcobucci",
  5206. "type": "patreon"
  5207. }
  5208. ],
  5209. "time": "2022-12-19T14:38:11+00:00"
  5210. },
  5211. {
  5212. "name": "lcobucci/jwt",
  5213. "version": "4.1.5",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/lcobucci/jwt.git",
  5217. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5222. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5223. "shasum": ""
  5224. },
  5225. "require": {
  5226. "ext-hash": "*",
  5227. "ext-json": "*",
  5228. "ext-mbstring": "*",
  5229. "ext-openssl": "*",
  5230. "ext-sodium": "*",
  5231. "lcobucci/clock": "^2.0",
  5232. "php": "^7.4 || ^8.0"
  5233. },
  5234. "require-dev": {
  5235. "infection/infection": "^0.21",
  5236. "lcobucci/coding-standard": "^6.0",
  5237. "mikey179/vfsstream": "^1.6.7",
  5238. "phpbench/phpbench": "^1.0",
  5239. "phpstan/extension-installer": "^1.0",
  5240. "phpstan/phpstan": "^0.12",
  5241. "phpstan/phpstan-deprecation-rules": "^0.12",
  5242. "phpstan/phpstan-phpunit": "^0.12",
  5243. "phpstan/phpstan-strict-rules": "^0.12",
  5244. "phpunit/php-invoker": "^3.1",
  5245. "phpunit/phpunit": "^9.5"
  5246. },
  5247. "type": "library",
  5248. "autoload": {
  5249. "psr-4": {
  5250. "Lcobucci\\JWT\\": "src"
  5251. }
  5252. },
  5253. "notification-url": "https://packagist.org/downloads/",
  5254. "license": [
  5255. "BSD-3-Clause"
  5256. ],
  5257. "authors": [
  5258. {
  5259. "name": "Luís Cobucci",
  5260. "email": "lcobucci@gmail.com",
  5261. "role": "Developer"
  5262. }
  5263. ],
  5264. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5265. "keywords": [
  5266. "JWS",
  5267. "jwt"
  5268. ],
  5269. "support": {
  5270. "issues": "https://github.com/lcobucci/jwt/issues",
  5271. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5272. },
  5273. "funding": [
  5274. {
  5275. "url": "https://github.com/lcobucci",
  5276. "type": "github"
  5277. },
  5278. {
  5279. "url": "https://www.patreon.com/lcobucci",
  5280. "type": "patreon"
  5281. }
  5282. ],
  5283. "time": "2021-09-28T19:34:56+00:00"
  5284. },
  5285. {
  5286. "name": "markrogoyski/math-php",
  5287. "version": "v2.10.0",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://github.com/markrogoyski/math-php.git",
  5291. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5296. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5297. "shasum": ""
  5298. },
  5299. "require": {
  5300. "ext-json": "*",
  5301. "php": ">=7.2.0"
  5302. },
  5303. "require-dev": {
  5304. "php-coveralls/php-coveralls": "^2.0",
  5305. "php-parallel-lint/php-parallel-lint": "^1.2",
  5306. "phploc/phploc": "*",
  5307. "phpmd/phpmd": "^2.6",
  5308. "phpstan/phpstan": "^1.10",
  5309. "phpunit/phpunit": "^8.5",
  5310. "squizlabs/php_codesniffer": "3.*"
  5311. },
  5312. "type": "library",
  5313. "autoload": {
  5314. "psr-4": {
  5315. "MathPHP\\": "src/"
  5316. }
  5317. },
  5318. "notification-url": "https://packagist.org/downloads/",
  5319. "license": [
  5320. "MIT"
  5321. ],
  5322. "authors": [
  5323. {
  5324. "name": "Mark Rogoyski",
  5325. "email": "mark@rogoyski.com",
  5326. "homepage": "https://github.com/markrogoyski",
  5327. "role": "Lead developer"
  5328. },
  5329. {
  5330. "name": "Kevin Nowaczyk",
  5331. "homepage": "https://github.com/Beakerboy",
  5332. "role": "Developer"
  5333. },
  5334. {
  5335. "name": "MathPHP Community of Contributors",
  5336. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5337. }
  5338. ],
  5339. "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",
  5340. "homepage": "https://github.com/markrogoyski/math-php/",
  5341. "keywords": [
  5342. "algebra",
  5343. "combinatorics",
  5344. "distributions",
  5345. "linear algebra",
  5346. "math",
  5347. "mathematics",
  5348. "matrix",
  5349. "numerical analysis",
  5350. "probability",
  5351. "regressions",
  5352. "statistics"
  5353. ],
  5354. "support": {
  5355. "issues": "https://github.com/markrogoyski/math-php/issues",
  5356. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5357. },
  5358. "time": "2024-04-17T00:09:51+00:00"
  5359. },
  5360. {
  5361. "name": "monolog/monolog",
  5362. "version": "3.7.0",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/Seldaek/monolog.git",
  5366. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  5371. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  5372. "shasum": ""
  5373. },
  5374. "require": {
  5375. "php": ">=8.1",
  5376. "psr/log": "^2.0 || ^3.0"
  5377. },
  5378. "provide": {
  5379. "psr/log-implementation": "3.0.0"
  5380. },
  5381. "require-dev": {
  5382. "aws/aws-sdk-php": "^3.0",
  5383. "doctrine/couchdb": "~1.0@dev",
  5384. "elasticsearch/elasticsearch": "^7 || ^8",
  5385. "ext-json": "*",
  5386. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5387. "guzzlehttp/guzzle": "^7.4.5",
  5388. "guzzlehttp/psr7": "^2.2",
  5389. "mongodb/mongodb": "^1.8",
  5390. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5391. "phpstan/phpstan": "^1.9",
  5392. "phpstan/phpstan-deprecation-rules": "^1.0",
  5393. "phpstan/phpstan-strict-rules": "^1.4",
  5394. "phpunit/phpunit": "^10.5.17",
  5395. "predis/predis": "^1.1 || ^2",
  5396. "ruflin/elastica": "^7",
  5397. "symfony/mailer": "^5.4 || ^6",
  5398. "symfony/mime": "^5.4 || ^6"
  5399. },
  5400. "suggest": {
  5401. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5402. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5403. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5404. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5405. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5406. "ext-mbstring": "Allow to work properly with unicode symbols",
  5407. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5408. "ext-openssl": "Required to send log messages using SSL",
  5409. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5410. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5411. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5412. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5413. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5414. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5415. },
  5416. "type": "library",
  5417. "extra": {
  5418. "branch-alias": {
  5419. "dev-main": "3.x-dev"
  5420. }
  5421. },
  5422. "autoload": {
  5423. "psr-4": {
  5424. "Monolog\\": "src/Monolog"
  5425. }
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "MIT"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Jordi Boggiano",
  5434. "email": "j.boggiano@seld.be",
  5435. "homepage": "https://seld.be"
  5436. }
  5437. ],
  5438. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5439. "homepage": "https://github.com/Seldaek/monolog",
  5440. "keywords": [
  5441. "log",
  5442. "logging",
  5443. "psr-3"
  5444. ],
  5445. "support": {
  5446. "issues": "https://github.com/Seldaek/monolog/issues",
  5447. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  5448. },
  5449. "funding": [
  5450. {
  5451. "url": "https://github.com/Seldaek",
  5452. "type": "github"
  5453. },
  5454. {
  5455. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5456. "type": "tidelift"
  5457. }
  5458. ],
  5459. "time": "2024-06-28T09:40:51+00:00"
  5460. },
  5461. {
  5462. "name": "nesbot/carbon",
  5463. "version": "2.72.5",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://github.com/briannesbitt/Carbon.git",
  5467. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5472. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5473. "shasum": ""
  5474. },
  5475. "require": {
  5476. "carbonphp/carbon-doctrine-types": "*",
  5477. "ext-json": "*",
  5478. "php": "^7.1.8 || ^8.0",
  5479. "psr/clock": "^1.0",
  5480. "symfony/polyfill-mbstring": "^1.0",
  5481. "symfony/polyfill-php80": "^1.16",
  5482. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5483. },
  5484. "provide": {
  5485. "psr/clock-implementation": "1.0"
  5486. },
  5487. "require-dev": {
  5488. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5489. "doctrine/orm": "^2.7 || ^3.0",
  5490. "friendsofphp/php-cs-fixer": "^3.0",
  5491. "kylekatarnls/multi-tester": "^2.0",
  5492. "ondrejmirtes/better-reflection": "*",
  5493. "phpmd/phpmd": "^2.9",
  5494. "phpstan/extension-installer": "^1.0",
  5495. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5496. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5497. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5498. "squizlabs/php_codesniffer": "^3.4"
  5499. },
  5500. "bin": [
  5501. "bin/carbon"
  5502. ],
  5503. "type": "library",
  5504. "extra": {
  5505. "branch-alias": {
  5506. "dev-master": "3.x-dev",
  5507. "dev-2.x": "2.x-dev"
  5508. },
  5509. "laravel": {
  5510. "providers": [
  5511. "Carbon\\Laravel\\ServiceProvider"
  5512. ]
  5513. },
  5514. "phpstan": {
  5515. "includes": [
  5516. "extension.neon"
  5517. ]
  5518. }
  5519. },
  5520. "autoload": {
  5521. "psr-4": {
  5522. "Carbon\\": "src/Carbon/"
  5523. }
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "MIT"
  5528. ],
  5529. "authors": [
  5530. {
  5531. "name": "Brian Nesbitt",
  5532. "email": "brian@nesbot.com",
  5533. "homepage": "https://markido.com"
  5534. },
  5535. {
  5536. "name": "kylekatarnls",
  5537. "homepage": "https://github.com/kylekatarnls"
  5538. }
  5539. ],
  5540. "description": "An API extension for DateTime that supports 281 different languages.",
  5541. "homepage": "https://carbon.nesbot.com",
  5542. "keywords": [
  5543. "date",
  5544. "datetime",
  5545. "time"
  5546. ],
  5547. "support": {
  5548. "docs": "https://carbon.nesbot.com/docs",
  5549. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5550. "source": "https://github.com/briannesbitt/Carbon"
  5551. },
  5552. "funding": [
  5553. {
  5554. "url": "https://github.com/sponsors/kylekatarnls",
  5555. "type": "github"
  5556. },
  5557. {
  5558. "url": "https://opencollective.com/Carbon#sponsor",
  5559. "type": "opencollective"
  5560. },
  5561. {
  5562. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5563. "type": "tidelift"
  5564. }
  5565. ],
  5566. "time": "2024-06-03T19:18:41+00:00"
  5567. },
  5568. {
  5569. "name": "nikic/fast-route",
  5570. "version": "v1.3.0",
  5571. "source": {
  5572. "type": "git",
  5573. "url": "https://github.com/nikic/FastRoute.git",
  5574. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5575. },
  5576. "dist": {
  5577. "type": "zip",
  5578. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5579. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5580. "shasum": ""
  5581. },
  5582. "require": {
  5583. "php": ">=5.4.0"
  5584. },
  5585. "require-dev": {
  5586. "phpunit/phpunit": "^4.8.35|~5.7"
  5587. },
  5588. "type": "library",
  5589. "autoload": {
  5590. "files": [
  5591. "src/functions.php"
  5592. ],
  5593. "psr-4": {
  5594. "FastRoute\\": "src/"
  5595. }
  5596. },
  5597. "notification-url": "https://packagist.org/downloads/",
  5598. "license": [
  5599. "BSD-3-Clause"
  5600. ],
  5601. "authors": [
  5602. {
  5603. "name": "Nikita Popov",
  5604. "email": "nikic@php.net"
  5605. }
  5606. ],
  5607. "description": "Fast request router for PHP",
  5608. "keywords": [
  5609. "router",
  5610. "routing"
  5611. ],
  5612. "support": {
  5613. "issues": "https://github.com/nikic/FastRoute/issues",
  5614. "source": "https://github.com/nikic/FastRoute/tree/master"
  5615. },
  5616. "time": "2018-02-13T20:26:39+00:00"
  5617. },
  5618. {
  5619. "name": "nikic/php-parser",
  5620. "version": "v4.19.4",
  5621. "source": {
  5622. "type": "git",
  5623. "url": "https://github.com/nikic/PHP-Parser.git",
  5624. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5625. },
  5626. "dist": {
  5627. "type": "zip",
  5628. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5629. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5630. "shasum": ""
  5631. },
  5632. "require": {
  5633. "ext-tokenizer": "*",
  5634. "php": ">=7.1"
  5635. },
  5636. "require-dev": {
  5637. "ircmaxell/php-yacc": "^0.0.7",
  5638. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5639. },
  5640. "bin": [
  5641. "bin/php-parse"
  5642. ],
  5643. "type": "library",
  5644. "extra": {
  5645. "branch-alias": {
  5646. "dev-master": "4.9-dev"
  5647. }
  5648. },
  5649. "autoload": {
  5650. "psr-4": {
  5651. "PhpParser\\": "lib/PhpParser"
  5652. }
  5653. },
  5654. "notification-url": "https://packagist.org/downloads/",
  5655. "license": [
  5656. "BSD-3-Clause"
  5657. ],
  5658. "authors": [
  5659. {
  5660. "name": "Nikita Popov"
  5661. }
  5662. ],
  5663. "description": "A PHP parser written in PHP",
  5664. "keywords": [
  5665. "parser",
  5666. "php"
  5667. ],
  5668. "support": {
  5669. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5670. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5671. },
  5672. "time": "2024-09-29T15:01:53+00:00"
  5673. },
  5674. {
  5675. "name": "paragonie/constant_time_encoding",
  5676. "version": "v3.0.0",
  5677. "source": {
  5678. "type": "git",
  5679. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5680. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5681. },
  5682. "dist": {
  5683. "type": "zip",
  5684. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5685. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5686. "shasum": ""
  5687. },
  5688. "require": {
  5689. "php": "^8"
  5690. },
  5691. "require-dev": {
  5692. "phpunit/phpunit": "^9",
  5693. "vimeo/psalm": "^4|^5"
  5694. },
  5695. "type": "library",
  5696. "autoload": {
  5697. "psr-4": {
  5698. "ParagonIE\\ConstantTime\\": "src/"
  5699. }
  5700. },
  5701. "notification-url": "https://packagist.org/downloads/",
  5702. "license": [
  5703. "MIT"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Paragon Initiative Enterprises",
  5708. "email": "security@paragonie.com",
  5709. "homepage": "https://paragonie.com",
  5710. "role": "Maintainer"
  5711. },
  5712. {
  5713. "name": "Steve 'Sc00bz' Thomas",
  5714. "email": "steve@tobtu.com",
  5715. "homepage": "https://www.tobtu.com",
  5716. "role": "Original Developer"
  5717. }
  5718. ],
  5719. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5720. "keywords": [
  5721. "base16",
  5722. "base32",
  5723. "base32_decode",
  5724. "base32_encode",
  5725. "base64",
  5726. "base64_decode",
  5727. "base64_encode",
  5728. "bin2hex",
  5729. "encoding",
  5730. "hex",
  5731. "hex2bin",
  5732. "rfc4648"
  5733. ],
  5734. "support": {
  5735. "email": "info@paragonie.com",
  5736. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5737. "source": "https://github.com/paragonie/constant_time_encoding"
  5738. },
  5739. "time": "2024-05-08T12:36:18+00:00"
  5740. },
  5741. {
  5742. "name": "paragonie/random_compat",
  5743. "version": "v9.99.100",
  5744. "source": {
  5745. "type": "git",
  5746. "url": "https://github.com/paragonie/random_compat.git",
  5747. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5748. },
  5749. "dist": {
  5750. "type": "zip",
  5751. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5752. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5753. "shasum": ""
  5754. },
  5755. "require": {
  5756. "php": ">= 7"
  5757. },
  5758. "require-dev": {
  5759. "phpunit/phpunit": "4.*|5.*",
  5760. "vimeo/psalm": "^1"
  5761. },
  5762. "suggest": {
  5763. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5764. },
  5765. "type": "library",
  5766. "notification-url": "https://packagist.org/downloads/",
  5767. "license": [
  5768. "MIT"
  5769. ],
  5770. "authors": [
  5771. {
  5772. "name": "Paragon Initiative Enterprises",
  5773. "email": "security@paragonie.com",
  5774. "homepage": "https://paragonie.com"
  5775. }
  5776. ],
  5777. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5778. "keywords": [
  5779. "csprng",
  5780. "polyfill",
  5781. "pseudorandom",
  5782. "random"
  5783. ],
  5784. "support": {
  5785. "email": "info@paragonie.com",
  5786. "issues": "https://github.com/paragonie/random_compat/issues",
  5787. "source": "https://github.com/paragonie/random_compat"
  5788. },
  5789. "time": "2020-10-15T08:29:30+00:00"
  5790. },
  5791. {
  5792. "name": "php-amqplib/php-amqplib",
  5793. "version": "v3.7.1",
  5794. "source": {
  5795. "type": "git",
  5796. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5797. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65"
  5798. },
  5799. "dist": {
  5800. "type": "zip",
  5801. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5802. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5803. "shasum": ""
  5804. },
  5805. "require": {
  5806. "ext-mbstring": "*",
  5807. "ext-sockets": "*",
  5808. "php": "^7.2||^8.0",
  5809. "phpseclib/phpseclib": "^2.0|^3.0"
  5810. },
  5811. "conflict": {
  5812. "php": "7.4.0 - 7.4.1"
  5813. },
  5814. "replace": {
  5815. "videlalvaro/php-amqplib": "self.version"
  5816. },
  5817. "require-dev": {
  5818. "ext-curl": "*",
  5819. "nategood/httpful": "^0.2.20",
  5820. "phpunit/phpunit": "^7.5|^9.5",
  5821. "squizlabs/php_codesniffer": "^3.6"
  5822. },
  5823. "type": "library",
  5824. "extra": {
  5825. "branch-alias": {
  5826. "dev-master": "3.0-dev"
  5827. }
  5828. },
  5829. "autoload": {
  5830. "psr-4": {
  5831. "PhpAmqpLib\\": "PhpAmqpLib/"
  5832. }
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "LGPL-2.1-or-later"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Alvaro Videla",
  5841. "role": "Original Maintainer"
  5842. },
  5843. {
  5844. "name": "Raúl Araya",
  5845. "email": "nubeiro@gmail.com",
  5846. "role": "Maintainer"
  5847. },
  5848. {
  5849. "name": "Luke Bakken",
  5850. "email": "luke@bakken.io",
  5851. "role": "Maintainer"
  5852. },
  5853. {
  5854. "name": "Ramūnas Dronga",
  5855. "email": "github@ramuno.lt",
  5856. "role": "Maintainer"
  5857. }
  5858. ],
  5859. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5860. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5861. "keywords": [
  5862. "message",
  5863. "queue",
  5864. "rabbitmq"
  5865. ],
  5866. "support": {
  5867. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5868. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.1"
  5869. },
  5870. "time": "2024-09-03T19:18:03+00:00"
  5871. },
  5872. {
  5873. "name": "php-di/phpdoc-reader",
  5874. "version": "2.2.1",
  5875. "source": {
  5876. "type": "git",
  5877. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5878. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5879. },
  5880. "dist": {
  5881. "type": "zip",
  5882. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5883. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5884. "shasum": ""
  5885. },
  5886. "require": {
  5887. "php": ">=7.2.0"
  5888. },
  5889. "require-dev": {
  5890. "mnapoli/hard-mode": "~0.3.0",
  5891. "phpunit/phpunit": "^8.5|^9.0"
  5892. },
  5893. "type": "library",
  5894. "autoload": {
  5895. "psr-4": {
  5896. "PhpDocReader\\": "src/PhpDocReader"
  5897. }
  5898. },
  5899. "notification-url": "https://packagist.org/downloads/",
  5900. "license": [
  5901. "MIT"
  5902. ],
  5903. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5904. "keywords": [
  5905. "phpdoc",
  5906. "reflection"
  5907. ],
  5908. "support": {
  5909. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5910. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5911. },
  5912. "time": "2020-10-12T12:39:22+00:00"
  5913. },
  5914. {
  5915. "name": "phper666/jwt-auth",
  5916. "version": "v4.0.11",
  5917. "source": {
  5918. "type": "git",
  5919. "url": "https://github.com/phper666/jwt-auth.git",
  5920. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5921. },
  5922. "dist": {
  5923. "type": "zip",
  5924. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5925. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5926. "shasum": ""
  5927. },
  5928. "require": {
  5929. "ext-swoole": ">=4.4",
  5930. "lcobucci/jwt": "4.1.5",
  5931. "nesbot/carbon": "^1.0 || ^2.0",
  5932. "php": ">=7.4"
  5933. },
  5934. "suggest": {
  5935. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5936. "hyperf/command": "required hyperf/command ~2.2.0",
  5937. "hyperf/config": "required hyperf/config ~2.2.0",
  5938. "hyperf/di": "required hyperf/di ~2.2.0"
  5939. },
  5940. "type": "library",
  5941. "extra": {
  5942. "hyperf": {
  5943. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5944. }
  5945. },
  5946. "autoload": {
  5947. "files": [
  5948. "src/Functions.php"
  5949. ],
  5950. "psr-4": {
  5951. "Phper666\\JWTAuth\\": "src/"
  5952. }
  5953. },
  5954. "notification-url": "https://packagist.org/downloads/",
  5955. "license": [
  5956. "MIT"
  5957. ],
  5958. "authors": [
  5959. {
  5960. "name": "Li Yuzhao",
  5961. "email": "562405704@qq.com",
  5962. "homepage": "https://github.com/phper666/jwt-auth",
  5963. "role": "Developer"
  5964. }
  5965. ],
  5966. "description": "jwt-auth Component",
  5967. "keywords": [
  5968. "hyperf",
  5969. "php"
  5970. ],
  5971. "support": {
  5972. "issues": "https://github.com/phper666/jwt-auth/issues",
  5973. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5974. },
  5975. "time": "2024-02-02T13:24:54+00:00"
  5976. },
  5977. {
  5978. "name": "phpoption/phpoption",
  5979. "version": "1.9.3",
  5980. "source": {
  5981. "type": "git",
  5982. "url": "https://github.com/schmittjoh/php-option.git",
  5983. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5984. },
  5985. "dist": {
  5986. "type": "zip",
  5987. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5988. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5989. "shasum": ""
  5990. },
  5991. "require": {
  5992. "php": "^7.2.5 || ^8.0"
  5993. },
  5994. "require-dev": {
  5995. "bamarni/composer-bin-plugin": "^1.8.2",
  5996. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5997. },
  5998. "type": "library",
  5999. "extra": {
  6000. "bamarni-bin": {
  6001. "bin-links": true,
  6002. "forward-command": false
  6003. },
  6004. "branch-alias": {
  6005. "dev-master": "1.9-dev"
  6006. }
  6007. },
  6008. "autoload": {
  6009. "psr-4": {
  6010. "PhpOption\\": "src/PhpOption/"
  6011. }
  6012. },
  6013. "notification-url": "https://packagist.org/downloads/",
  6014. "license": [
  6015. "Apache-2.0"
  6016. ],
  6017. "authors": [
  6018. {
  6019. "name": "Johannes M. Schmitt",
  6020. "email": "schmittjoh@gmail.com",
  6021. "homepage": "https://github.com/schmittjoh"
  6022. },
  6023. {
  6024. "name": "Graham Campbell",
  6025. "email": "hello@gjcampbell.co.uk",
  6026. "homepage": "https://github.com/GrahamCampbell"
  6027. }
  6028. ],
  6029. "description": "Option Type for PHP",
  6030. "keywords": [
  6031. "language",
  6032. "option",
  6033. "php",
  6034. "type"
  6035. ],
  6036. "support": {
  6037. "issues": "https://github.com/schmittjoh/php-option/issues",
  6038. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6039. },
  6040. "funding": [
  6041. {
  6042. "url": "https://github.com/GrahamCampbell",
  6043. "type": "github"
  6044. },
  6045. {
  6046. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6047. "type": "tidelift"
  6048. }
  6049. ],
  6050. "time": "2024-07-20T21:41:07+00:00"
  6051. },
  6052. {
  6053. "name": "phpseclib/phpseclib",
  6054. "version": "3.0.42",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://github.com/phpseclib/phpseclib.git",
  6058. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6063. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6064. "shasum": ""
  6065. },
  6066. "require": {
  6067. "paragonie/constant_time_encoding": "^1|^2|^3",
  6068. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6069. "php": ">=5.6.1"
  6070. },
  6071. "require-dev": {
  6072. "phpunit/phpunit": "*"
  6073. },
  6074. "suggest": {
  6075. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6076. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6077. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6078. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6079. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6080. },
  6081. "type": "library",
  6082. "autoload": {
  6083. "files": [
  6084. "phpseclib/bootstrap.php"
  6085. ],
  6086. "psr-4": {
  6087. "phpseclib3\\": "phpseclib/"
  6088. }
  6089. },
  6090. "notification-url": "https://packagist.org/downloads/",
  6091. "license": [
  6092. "MIT"
  6093. ],
  6094. "authors": [
  6095. {
  6096. "name": "Jim Wigginton",
  6097. "email": "terrafrost@php.net",
  6098. "role": "Lead Developer"
  6099. },
  6100. {
  6101. "name": "Patrick Monnerat",
  6102. "email": "pm@datasphere.ch",
  6103. "role": "Developer"
  6104. },
  6105. {
  6106. "name": "Andreas Fischer",
  6107. "email": "bantu@phpbb.com",
  6108. "role": "Developer"
  6109. },
  6110. {
  6111. "name": "Hans-Jürgen Petrich",
  6112. "email": "petrich@tronic-media.com",
  6113. "role": "Developer"
  6114. },
  6115. {
  6116. "name": "Graham Campbell",
  6117. "email": "graham@alt-three.com",
  6118. "role": "Developer"
  6119. }
  6120. ],
  6121. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6122. "homepage": "http://phpseclib.sourceforge.net",
  6123. "keywords": [
  6124. "BigInteger",
  6125. "aes",
  6126. "asn.1",
  6127. "asn1",
  6128. "blowfish",
  6129. "crypto",
  6130. "cryptography",
  6131. "encryption",
  6132. "rsa",
  6133. "security",
  6134. "sftp",
  6135. "signature",
  6136. "signing",
  6137. "ssh",
  6138. "twofish",
  6139. "x.509",
  6140. "x509"
  6141. ],
  6142. "support": {
  6143. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6144. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  6145. },
  6146. "funding": [
  6147. {
  6148. "url": "https://github.com/terrafrost",
  6149. "type": "github"
  6150. },
  6151. {
  6152. "url": "https://www.patreon.com/phpseclib",
  6153. "type": "patreon"
  6154. },
  6155. {
  6156. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6157. "type": "tidelift"
  6158. }
  6159. ],
  6160. "time": "2024-09-16T03:06:04+00:00"
  6161. },
  6162. {
  6163. "name": "psr/cache",
  6164. "version": "3.0.0",
  6165. "source": {
  6166. "type": "git",
  6167. "url": "https://github.com/php-fig/cache.git",
  6168. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6169. },
  6170. "dist": {
  6171. "type": "zip",
  6172. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6173. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6174. "shasum": ""
  6175. },
  6176. "require": {
  6177. "php": ">=8.0.0"
  6178. },
  6179. "type": "library",
  6180. "extra": {
  6181. "branch-alias": {
  6182. "dev-master": "1.0.x-dev"
  6183. }
  6184. },
  6185. "autoload": {
  6186. "psr-4": {
  6187. "Psr\\Cache\\": "src/"
  6188. }
  6189. },
  6190. "notification-url": "https://packagist.org/downloads/",
  6191. "license": [
  6192. "MIT"
  6193. ],
  6194. "authors": [
  6195. {
  6196. "name": "PHP-FIG",
  6197. "homepage": "https://www.php-fig.org/"
  6198. }
  6199. ],
  6200. "description": "Common interface for caching libraries",
  6201. "keywords": [
  6202. "cache",
  6203. "psr",
  6204. "psr-6"
  6205. ],
  6206. "support": {
  6207. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6208. },
  6209. "time": "2021-02-03T23:26:27+00:00"
  6210. },
  6211. {
  6212. "name": "psr/clock",
  6213. "version": "1.0.0",
  6214. "source": {
  6215. "type": "git",
  6216. "url": "https://github.com/php-fig/clock.git",
  6217. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6218. },
  6219. "dist": {
  6220. "type": "zip",
  6221. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6222. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6223. "shasum": ""
  6224. },
  6225. "require": {
  6226. "php": "^7.0 || ^8.0"
  6227. },
  6228. "type": "library",
  6229. "autoload": {
  6230. "psr-4": {
  6231. "Psr\\Clock\\": "src/"
  6232. }
  6233. },
  6234. "notification-url": "https://packagist.org/downloads/",
  6235. "license": [
  6236. "MIT"
  6237. ],
  6238. "authors": [
  6239. {
  6240. "name": "PHP-FIG",
  6241. "homepage": "https://www.php-fig.org/"
  6242. }
  6243. ],
  6244. "description": "Common interface for reading the clock.",
  6245. "homepage": "https://github.com/php-fig/clock",
  6246. "keywords": [
  6247. "clock",
  6248. "now",
  6249. "psr",
  6250. "psr-20",
  6251. "time"
  6252. ],
  6253. "support": {
  6254. "issues": "https://github.com/php-fig/clock/issues",
  6255. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6256. },
  6257. "time": "2022-11-25T14:36:26+00:00"
  6258. },
  6259. {
  6260. "name": "psr/container",
  6261. "version": "2.0.2",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/php-fig/container.git",
  6265. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6270. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": ">=7.4.0"
  6275. },
  6276. "type": "library",
  6277. "extra": {
  6278. "branch-alias": {
  6279. "dev-master": "2.0.x-dev"
  6280. }
  6281. },
  6282. "autoload": {
  6283. "psr-4": {
  6284. "Psr\\Container\\": "src/"
  6285. }
  6286. },
  6287. "notification-url": "https://packagist.org/downloads/",
  6288. "license": [
  6289. "MIT"
  6290. ],
  6291. "authors": [
  6292. {
  6293. "name": "PHP-FIG",
  6294. "homepage": "https://www.php-fig.org/"
  6295. }
  6296. ],
  6297. "description": "Common Container Interface (PHP FIG PSR-11)",
  6298. "homepage": "https://github.com/php-fig/container",
  6299. "keywords": [
  6300. "PSR-11",
  6301. "container",
  6302. "container-interface",
  6303. "container-interop",
  6304. "psr"
  6305. ],
  6306. "support": {
  6307. "issues": "https://github.com/php-fig/container/issues",
  6308. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6309. },
  6310. "time": "2021-11-05T16:47:00+00:00"
  6311. },
  6312. {
  6313. "name": "psr/event-dispatcher",
  6314. "version": "1.0.0",
  6315. "source": {
  6316. "type": "git",
  6317. "url": "https://github.com/php-fig/event-dispatcher.git",
  6318. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6319. },
  6320. "dist": {
  6321. "type": "zip",
  6322. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6323. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6324. "shasum": ""
  6325. },
  6326. "require": {
  6327. "php": ">=7.2.0"
  6328. },
  6329. "type": "library",
  6330. "extra": {
  6331. "branch-alias": {
  6332. "dev-master": "1.0.x-dev"
  6333. }
  6334. },
  6335. "autoload": {
  6336. "psr-4": {
  6337. "Psr\\EventDispatcher\\": "src/"
  6338. }
  6339. },
  6340. "notification-url": "https://packagist.org/downloads/",
  6341. "license": [
  6342. "MIT"
  6343. ],
  6344. "authors": [
  6345. {
  6346. "name": "PHP-FIG",
  6347. "homepage": "http://www.php-fig.org/"
  6348. }
  6349. ],
  6350. "description": "Standard interfaces for event handling.",
  6351. "keywords": [
  6352. "events",
  6353. "psr",
  6354. "psr-14"
  6355. ],
  6356. "support": {
  6357. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6358. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6359. },
  6360. "time": "2019-01-08T18:20:26+00:00"
  6361. },
  6362. {
  6363. "name": "psr/http-client",
  6364. "version": "1.0.3",
  6365. "source": {
  6366. "type": "git",
  6367. "url": "https://github.com/php-fig/http-client.git",
  6368. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6369. },
  6370. "dist": {
  6371. "type": "zip",
  6372. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6373. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6374. "shasum": ""
  6375. },
  6376. "require": {
  6377. "php": "^7.0 || ^8.0",
  6378. "psr/http-message": "^1.0 || ^2.0"
  6379. },
  6380. "type": "library",
  6381. "extra": {
  6382. "branch-alias": {
  6383. "dev-master": "1.0.x-dev"
  6384. }
  6385. },
  6386. "autoload": {
  6387. "psr-4": {
  6388. "Psr\\Http\\Client\\": "src/"
  6389. }
  6390. },
  6391. "notification-url": "https://packagist.org/downloads/",
  6392. "license": [
  6393. "MIT"
  6394. ],
  6395. "authors": [
  6396. {
  6397. "name": "PHP-FIG",
  6398. "homepage": "https://www.php-fig.org/"
  6399. }
  6400. ],
  6401. "description": "Common interface for HTTP clients",
  6402. "homepage": "https://github.com/php-fig/http-client",
  6403. "keywords": [
  6404. "http",
  6405. "http-client",
  6406. "psr",
  6407. "psr-18"
  6408. ],
  6409. "support": {
  6410. "source": "https://github.com/php-fig/http-client"
  6411. },
  6412. "time": "2023-09-23T14:17:50+00:00"
  6413. },
  6414. {
  6415. "name": "psr/http-factory",
  6416. "version": "1.1.0",
  6417. "source": {
  6418. "type": "git",
  6419. "url": "https://github.com/php-fig/http-factory.git",
  6420. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6421. },
  6422. "dist": {
  6423. "type": "zip",
  6424. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6425. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6426. "shasum": ""
  6427. },
  6428. "require": {
  6429. "php": ">=7.1",
  6430. "psr/http-message": "^1.0 || ^2.0"
  6431. },
  6432. "type": "library",
  6433. "extra": {
  6434. "branch-alias": {
  6435. "dev-master": "1.0.x-dev"
  6436. }
  6437. },
  6438. "autoload": {
  6439. "psr-4": {
  6440. "Psr\\Http\\Message\\": "src/"
  6441. }
  6442. },
  6443. "notification-url": "https://packagist.org/downloads/",
  6444. "license": [
  6445. "MIT"
  6446. ],
  6447. "authors": [
  6448. {
  6449. "name": "PHP-FIG",
  6450. "homepage": "https://www.php-fig.org/"
  6451. }
  6452. ],
  6453. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6454. "keywords": [
  6455. "factory",
  6456. "http",
  6457. "message",
  6458. "psr",
  6459. "psr-17",
  6460. "psr-7",
  6461. "request",
  6462. "response"
  6463. ],
  6464. "support": {
  6465. "source": "https://github.com/php-fig/http-factory"
  6466. },
  6467. "time": "2024-04-15T12:06:14+00:00"
  6468. },
  6469. {
  6470. "name": "psr/http-message",
  6471. "version": "2.0",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/php-fig/http-message.git",
  6475. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6480. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6481. "shasum": ""
  6482. },
  6483. "require": {
  6484. "php": "^7.2 || ^8.0"
  6485. },
  6486. "type": "library",
  6487. "extra": {
  6488. "branch-alias": {
  6489. "dev-master": "2.0.x-dev"
  6490. }
  6491. },
  6492. "autoload": {
  6493. "psr-4": {
  6494. "Psr\\Http\\Message\\": "src/"
  6495. }
  6496. },
  6497. "notification-url": "https://packagist.org/downloads/",
  6498. "license": [
  6499. "MIT"
  6500. ],
  6501. "authors": [
  6502. {
  6503. "name": "PHP-FIG",
  6504. "homepage": "https://www.php-fig.org/"
  6505. }
  6506. ],
  6507. "description": "Common interface for HTTP messages",
  6508. "homepage": "https://github.com/php-fig/http-message",
  6509. "keywords": [
  6510. "http",
  6511. "http-message",
  6512. "psr",
  6513. "psr-7",
  6514. "request",
  6515. "response"
  6516. ],
  6517. "support": {
  6518. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6519. },
  6520. "time": "2023-04-04T09:54:51+00:00"
  6521. },
  6522. {
  6523. "name": "psr/http-server-handler",
  6524. "version": "1.0.2",
  6525. "source": {
  6526. "type": "git",
  6527. "url": "https://github.com/php-fig/http-server-handler.git",
  6528. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6529. },
  6530. "dist": {
  6531. "type": "zip",
  6532. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6533. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6534. "shasum": ""
  6535. },
  6536. "require": {
  6537. "php": ">=7.0",
  6538. "psr/http-message": "^1.0 || ^2.0"
  6539. },
  6540. "type": "library",
  6541. "extra": {
  6542. "branch-alias": {
  6543. "dev-master": "1.0.x-dev"
  6544. }
  6545. },
  6546. "autoload": {
  6547. "psr-4": {
  6548. "Psr\\Http\\Server\\": "src/"
  6549. }
  6550. },
  6551. "notification-url": "https://packagist.org/downloads/",
  6552. "license": [
  6553. "MIT"
  6554. ],
  6555. "authors": [
  6556. {
  6557. "name": "PHP-FIG",
  6558. "homepage": "https://www.php-fig.org/"
  6559. }
  6560. ],
  6561. "description": "Common interface for HTTP server-side request handler",
  6562. "keywords": [
  6563. "handler",
  6564. "http",
  6565. "http-interop",
  6566. "psr",
  6567. "psr-15",
  6568. "psr-7",
  6569. "request",
  6570. "response",
  6571. "server"
  6572. ],
  6573. "support": {
  6574. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6575. },
  6576. "time": "2023-04-10T20:06:20+00:00"
  6577. },
  6578. {
  6579. "name": "psr/http-server-middleware",
  6580. "version": "1.0.2",
  6581. "source": {
  6582. "type": "git",
  6583. "url": "https://github.com/php-fig/http-server-middleware.git",
  6584. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6585. },
  6586. "dist": {
  6587. "type": "zip",
  6588. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6589. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6590. "shasum": ""
  6591. },
  6592. "require": {
  6593. "php": ">=7.0",
  6594. "psr/http-message": "^1.0 || ^2.0",
  6595. "psr/http-server-handler": "^1.0"
  6596. },
  6597. "type": "library",
  6598. "extra": {
  6599. "branch-alias": {
  6600. "dev-master": "1.0.x-dev"
  6601. }
  6602. },
  6603. "autoload": {
  6604. "psr-4": {
  6605. "Psr\\Http\\Server\\": "src/"
  6606. }
  6607. },
  6608. "notification-url": "https://packagist.org/downloads/",
  6609. "license": [
  6610. "MIT"
  6611. ],
  6612. "authors": [
  6613. {
  6614. "name": "PHP-FIG",
  6615. "homepage": "https://www.php-fig.org/"
  6616. }
  6617. ],
  6618. "description": "Common interface for HTTP server-side middleware",
  6619. "keywords": [
  6620. "http",
  6621. "http-interop",
  6622. "middleware",
  6623. "psr",
  6624. "psr-15",
  6625. "psr-7",
  6626. "request",
  6627. "response"
  6628. ],
  6629. "support": {
  6630. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6631. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6632. },
  6633. "time": "2023-04-11T06:14:47+00:00"
  6634. },
  6635. {
  6636. "name": "psr/log",
  6637. "version": "3.0.2",
  6638. "source": {
  6639. "type": "git",
  6640. "url": "https://github.com/php-fig/log.git",
  6641. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6642. },
  6643. "dist": {
  6644. "type": "zip",
  6645. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6646. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6647. "shasum": ""
  6648. },
  6649. "require": {
  6650. "php": ">=8.0.0"
  6651. },
  6652. "type": "library",
  6653. "extra": {
  6654. "branch-alias": {
  6655. "dev-master": "3.x-dev"
  6656. }
  6657. },
  6658. "autoload": {
  6659. "psr-4": {
  6660. "Psr\\Log\\": "src"
  6661. }
  6662. },
  6663. "notification-url": "https://packagist.org/downloads/",
  6664. "license": [
  6665. "MIT"
  6666. ],
  6667. "authors": [
  6668. {
  6669. "name": "PHP-FIG",
  6670. "homepage": "https://www.php-fig.org/"
  6671. }
  6672. ],
  6673. "description": "Common interface for logging libraries",
  6674. "homepage": "https://github.com/php-fig/log",
  6675. "keywords": [
  6676. "log",
  6677. "psr",
  6678. "psr-3"
  6679. ],
  6680. "support": {
  6681. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6682. },
  6683. "time": "2024-09-11T13:17:53+00:00"
  6684. },
  6685. {
  6686. "name": "psr/simple-cache",
  6687. "version": "3.0.0",
  6688. "source": {
  6689. "type": "git",
  6690. "url": "https://github.com/php-fig/simple-cache.git",
  6691. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6692. },
  6693. "dist": {
  6694. "type": "zip",
  6695. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6696. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6697. "shasum": ""
  6698. },
  6699. "require": {
  6700. "php": ">=8.0.0"
  6701. },
  6702. "type": "library",
  6703. "extra": {
  6704. "branch-alias": {
  6705. "dev-master": "3.0.x-dev"
  6706. }
  6707. },
  6708. "autoload": {
  6709. "psr-4": {
  6710. "Psr\\SimpleCache\\": "src/"
  6711. }
  6712. },
  6713. "notification-url": "https://packagist.org/downloads/",
  6714. "license": [
  6715. "MIT"
  6716. ],
  6717. "authors": [
  6718. {
  6719. "name": "PHP-FIG",
  6720. "homepage": "https://www.php-fig.org/"
  6721. }
  6722. ],
  6723. "description": "Common interfaces for simple caching",
  6724. "keywords": [
  6725. "cache",
  6726. "caching",
  6727. "psr",
  6728. "psr-16",
  6729. "simple-cache"
  6730. ],
  6731. "support": {
  6732. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6733. },
  6734. "time": "2021-10-29T13:26:27+00:00"
  6735. },
  6736. {
  6737. "name": "ralouphie/getallheaders",
  6738. "version": "3.0.3",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/ralouphie/getallheaders.git",
  6742. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6747. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6748. "shasum": ""
  6749. },
  6750. "require": {
  6751. "php": ">=5.6"
  6752. },
  6753. "require-dev": {
  6754. "php-coveralls/php-coveralls": "^2.1",
  6755. "phpunit/phpunit": "^5 || ^6.5"
  6756. },
  6757. "type": "library",
  6758. "autoload": {
  6759. "files": [
  6760. "src/getallheaders.php"
  6761. ]
  6762. },
  6763. "notification-url": "https://packagist.org/downloads/",
  6764. "license": [
  6765. "MIT"
  6766. ],
  6767. "authors": [
  6768. {
  6769. "name": "Ralph Khattar",
  6770. "email": "ralph.khattar@gmail.com"
  6771. }
  6772. ],
  6773. "description": "A polyfill for getallheaders.",
  6774. "support": {
  6775. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6776. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6777. },
  6778. "time": "2019-03-08T08:55:37+00:00"
  6779. },
  6780. {
  6781. "name": "stella-maris/clock",
  6782. "version": "0.1.7",
  6783. "source": {
  6784. "type": "git",
  6785. "url": "https://github.com/stella-maris-solutions/clock.git",
  6786. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6787. },
  6788. "dist": {
  6789. "type": "zip",
  6790. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6791. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6792. "shasum": ""
  6793. },
  6794. "require": {
  6795. "php": "^7.0|^8.0",
  6796. "psr/clock": "^1.0"
  6797. },
  6798. "type": "library",
  6799. "autoload": {
  6800. "psr-4": {
  6801. "StellaMaris\\Clock\\": "src"
  6802. }
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "MIT"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Andreas Heigl",
  6811. "role": "Maintainer"
  6812. }
  6813. ],
  6814. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6815. "homepage": "https://gitlab.com/stella-maris/clock",
  6816. "keywords": [
  6817. "clock",
  6818. "datetime",
  6819. "point in time",
  6820. "psr20"
  6821. ],
  6822. "support": {
  6823. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6824. },
  6825. "time": "2022-11-25T16:15:06+00:00"
  6826. },
  6827. {
  6828. "name": "swow/psr7-plus",
  6829. "version": "v1.1.2",
  6830. "source": {
  6831. "type": "git",
  6832. "url": "https://github.com/swow/psr7-plus.git",
  6833. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6834. },
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6838. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6839. "shasum": ""
  6840. },
  6841. "require": {
  6842. "php": ">=8.0",
  6843. "psr/http-client": "^1.0",
  6844. "psr/http-factory": "^1.0",
  6845. "psr/http-message": "^1.1|^2.0"
  6846. },
  6847. "type": "library",
  6848. "autoload": {
  6849. "psr-4": {
  6850. "Swow\\Psr7\\Message\\": "src/Message/"
  6851. }
  6852. },
  6853. "notification-url": "https://packagist.org/downloads/",
  6854. "license": [
  6855. "Apache-2.0"
  6856. ],
  6857. "authors": [
  6858. {
  6859. "name": "twose",
  6860. "email": "twosee@php.net"
  6861. }
  6862. ],
  6863. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6864. "keywords": [
  6865. "http",
  6866. "psr17",
  6867. "psr7",
  6868. "swow",
  6869. "websocket"
  6870. ],
  6871. "support": {
  6872. "issues": "https://github.com/swow/swow",
  6873. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6874. },
  6875. "time": "2023-06-15T09:18:11+00:00"
  6876. },
  6877. {
  6878. "name": "symfony/console",
  6879. "version": "v6.4.14",
  6880. "source": {
  6881. "type": "git",
  6882. "url": "https://github.com/symfony/console.git",
  6883. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b"
  6884. },
  6885. "dist": {
  6886. "type": "zip",
  6887. "url": "https://api.github.com/repos/symfony/console/zipball/897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  6888. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  6889. "shasum": ""
  6890. },
  6891. "require": {
  6892. "php": ">=8.1",
  6893. "symfony/deprecation-contracts": "^2.5|^3",
  6894. "symfony/polyfill-mbstring": "~1.0",
  6895. "symfony/service-contracts": "^2.5|^3",
  6896. "symfony/string": "^5.4|^6.0|^7.0"
  6897. },
  6898. "conflict": {
  6899. "symfony/dependency-injection": "<5.4",
  6900. "symfony/dotenv": "<5.4",
  6901. "symfony/event-dispatcher": "<5.4",
  6902. "symfony/lock": "<5.4",
  6903. "symfony/process": "<5.4"
  6904. },
  6905. "provide": {
  6906. "psr/log-implementation": "1.0|2.0|3.0"
  6907. },
  6908. "require-dev": {
  6909. "psr/log": "^1|^2|^3",
  6910. "symfony/config": "^5.4|^6.0|^7.0",
  6911. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6912. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6913. "symfony/http-foundation": "^6.4|^7.0",
  6914. "symfony/http-kernel": "^6.4|^7.0",
  6915. "symfony/lock": "^5.4|^6.0|^7.0",
  6916. "symfony/messenger": "^5.4|^6.0|^7.0",
  6917. "symfony/process": "^5.4|^6.0|^7.0",
  6918. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6919. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6920. },
  6921. "type": "library",
  6922. "autoload": {
  6923. "psr-4": {
  6924. "Symfony\\Component\\Console\\": ""
  6925. },
  6926. "exclude-from-classmap": [
  6927. "/Tests/"
  6928. ]
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Fabien Potencier",
  6937. "email": "fabien@symfony.com"
  6938. },
  6939. {
  6940. "name": "Symfony Community",
  6941. "homepage": "https://symfony.com/contributors"
  6942. }
  6943. ],
  6944. "description": "Eases the creation of beautiful and testable command line interfaces",
  6945. "homepage": "https://symfony.com",
  6946. "keywords": [
  6947. "cli",
  6948. "command-line",
  6949. "console",
  6950. "terminal"
  6951. ],
  6952. "support": {
  6953. "source": "https://github.com/symfony/console/tree/v6.4.14"
  6954. },
  6955. "funding": [
  6956. {
  6957. "url": "https://symfony.com/sponsor",
  6958. "type": "custom"
  6959. },
  6960. {
  6961. "url": "https://github.com/fabpot",
  6962. "type": "github"
  6963. },
  6964. {
  6965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6966. "type": "tidelift"
  6967. }
  6968. ],
  6969. "time": "2024-11-05T15:34:40+00:00"
  6970. },
  6971. {
  6972. "name": "symfony/deprecation-contracts",
  6973. "version": "v3.5.0",
  6974. "source": {
  6975. "type": "git",
  6976. "url": "https://github.com/symfony/deprecation-contracts.git",
  6977. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6978. },
  6979. "dist": {
  6980. "type": "zip",
  6981. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6982. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6983. "shasum": ""
  6984. },
  6985. "require": {
  6986. "php": ">=8.1"
  6987. },
  6988. "type": "library",
  6989. "extra": {
  6990. "branch-alias": {
  6991. "dev-main": "3.5-dev"
  6992. },
  6993. "thanks": {
  6994. "name": "symfony/contracts",
  6995. "url": "https://github.com/symfony/contracts"
  6996. }
  6997. },
  6998. "autoload": {
  6999. "files": [
  7000. "function.php"
  7001. ]
  7002. },
  7003. "notification-url": "https://packagist.org/downloads/",
  7004. "license": [
  7005. "MIT"
  7006. ],
  7007. "authors": [
  7008. {
  7009. "name": "Nicolas Grekas",
  7010. "email": "p@tchwork.com"
  7011. },
  7012. {
  7013. "name": "Symfony Community",
  7014. "homepage": "https://symfony.com/contributors"
  7015. }
  7016. ],
  7017. "description": "A generic function and convention to trigger deprecation notices",
  7018. "homepage": "https://symfony.com",
  7019. "support": {
  7020. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7021. },
  7022. "funding": [
  7023. {
  7024. "url": "https://symfony.com/sponsor",
  7025. "type": "custom"
  7026. },
  7027. {
  7028. "url": "https://github.com/fabpot",
  7029. "type": "github"
  7030. },
  7031. {
  7032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7033. "type": "tidelift"
  7034. }
  7035. ],
  7036. "time": "2024-04-18T09:32:20+00:00"
  7037. },
  7038. {
  7039. "name": "symfony/finder",
  7040. "version": "v6.4.13",
  7041. "source": {
  7042. "type": "git",
  7043. "url": "https://github.com/symfony/finder.git",
  7044. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  7045. },
  7046. "dist": {
  7047. "type": "zip",
  7048. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7049. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7050. "shasum": ""
  7051. },
  7052. "require": {
  7053. "php": ">=8.1"
  7054. },
  7055. "require-dev": {
  7056. "symfony/filesystem": "^6.0|^7.0"
  7057. },
  7058. "type": "library",
  7059. "autoload": {
  7060. "psr-4": {
  7061. "Symfony\\Component\\Finder\\": ""
  7062. },
  7063. "exclude-from-classmap": [
  7064. "/Tests/"
  7065. ]
  7066. },
  7067. "notification-url": "https://packagist.org/downloads/",
  7068. "license": [
  7069. "MIT"
  7070. ],
  7071. "authors": [
  7072. {
  7073. "name": "Fabien Potencier",
  7074. "email": "fabien@symfony.com"
  7075. },
  7076. {
  7077. "name": "Symfony Community",
  7078. "homepage": "https://symfony.com/contributors"
  7079. }
  7080. ],
  7081. "description": "Finds files and directories via an intuitive fluent interface",
  7082. "homepage": "https://symfony.com",
  7083. "support": {
  7084. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7085. },
  7086. "funding": [
  7087. {
  7088. "url": "https://symfony.com/sponsor",
  7089. "type": "custom"
  7090. },
  7091. {
  7092. "url": "https://github.com/fabpot",
  7093. "type": "github"
  7094. },
  7095. {
  7096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7097. "type": "tidelift"
  7098. }
  7099. ],
  7100. "time": "2024-10-01T08:30:56+00:00"
  7101. },
  7102. {
  7103. "name": "symfony/polyfill-ctype",
  7104. "version": "v1.31.0",
  7105. "source": {
  7106. "type": "git",
  7107. "url": "https://github.com/symfony/polyfill-ctype.git",
  7108. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7109. },
  7110. "dist": {
  7111. "type": "zip",
  7112. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7113. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7114. "shasum": ""
  7115. },
  7116. "require": {
  7117. "php": ">=7.2"
  7118. },
  7119. "provide": {
  7120. "ext-ctype": "*"
  7121. },
  7122. "suggest": {
  7123. "ext-ctype": "For best performance"
  7124. },
  7125. "type": "library",
  7126. "extra": {
  7127. "thanks": {
  7128. "name": "symfony/polyfill",
  7129. "url": "https://github.com/symfony/polyfill"
  7130. }
  7131. },
  7132. "autoload": {
  7133. "files": [
  7134. "bootstrap.php"
  7135. ],
  7136. "psr-4": {
  7137. "Symfony\\Polyfill\\Ctype\\": ""
  7138. }
  7139. },
  7140. "notification-url": "https://packagist.org/downloads/",
  7141. "license": [
  7142. "MIT"
  7143. ],
  7144. "authors": [
  7145. {
  7146. "name": "Gert de Pagter",
  7147. "email": "BackEndTea@gmail.com"
  7148. },
  7149. {
  7150. "name": "Symfony Community",
  7151. "homepage": "https://symfony.com/contributors"
  7152. }
  7153. ],
  7154. "description": "Symfony polyfill for ctype functions",
  7155. "homepage": "https://symfony.com",
  7156. "keywords": [
  7157. "compatibility",
  7158. "ctype",
  7159. "polyfill",
  7160. "portable"
  7161. ],
  7162. "support": {
  7163. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7164. },
  7165. "funding": [
  7166. {
  7167. "url": "https://symfony.com/sponsor",
  7168. "type": "custom"
  7169. },
  7170. {
  7171. "url": "https://github.com/fabpot",
  7172. "type": "github"
  7173. },
  7174. {
  7175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7176. "type": "tidelift"
  7177. }
  7178. ],
  7179. "time": "2024-09-09T11:45:10+00:00"
  7180. },
  7181. {
  7182. "name": "symfony/polyfill-intl-grapheme",
  7183. "version": "v1.31.0",
  7184. "source": {
  7185. "type": "git",
  7186. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7187. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7188. },
  7189. "dist": {
  7190. "type": "zip",
  7191. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7192. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7193. "shasum": ""
  7194. },
  7195. "require": {
  7196. "php": ">=7.2"
  7197. },
  7198. "suggest": {
  7199. "ext-intl": "For best performance"
  7200. },
  7201. "type": "library",
  7202. "extra": {
  7203. "thanks": {
  7204. "name": "symfony/polyfill",
  7205. "url": "https://github.com/symfony/polyfill"
  7206. }
  7207. },
  7208. "autoload": {
  7209. "files": [
  7210. "bootstrap.php"
  7211. ],
  7212. "psr-4": {
  7213. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7214. }
  7215. },
  7216. "notification-url": "https://packagist.org/downloads/",
  7217. "license": [
  7218. "MIT"
  7219. ],
  7220. "authors": [
  7221. {
  7222. "name": "Nicolas Grekas",
  7223. "email": "p@tchwork.com"
  7224. },
  7225. {
  7226. "name": "Symfony Community",
  7227. "homepage": "https://symfony.com/contributors"
  7228. }
  7229. ],
  7230. "description": "Symfony polyfill for intl's grapheme_* functions",
  7231. "homepage": "https://symfony.com",
  7232. "keywords": [
  7233. "compatibility",
  7234. "grapheme",
  7235. "intl",
  7236. "polyfill",
  7237. "portable",
  7238. "shim"
  7239. ],
  7240. "support": {
  7241. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7242. },
  7243. "funding": [
  7244. {
  7245. "url": "https://symfony.com/sponsor",
  7246. "type": "custom"
  7247. },
  7248. {
  7249. "url": "https://github.com/fabpot",
  7250. "type": "github"
  7251. },
  7252. {
  7253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7254. "type": "tidelift"
  7255. }
  7256. ],
  7257. "time": "2024-09-09T11:45:10+00:00"
  7258. },
  7259. {
  7260. "name": "symfony/polyfill-intl-idn",
  7261. "version": "v1.31.0",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7265. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7270. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7271. "shasum": ""
  7272. },
  7273. "require": {
  7274. "php": ">=7.2",
  7275. "symfony/polyfill-intl-normalizer": "^1.10"
  7276. },
  7277. "suggest": {
  7278. "ext-intl": "For best performance"
  7279. },
  7280. "type": "library",
  7281. "extra": {
  7282. "thanks": {
  7283. "name": "symfony/polyfill",
  7284. "url": "https://github.com/symfony/polyfill"
  7285. }
  7286. },
  7287. "autoload": {
  7288. "files": [
  7289. "bootstrap.php"
  7290. ],
  7291. "psr-4": {
  7292. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7293. }
  7294. },
  7295. "notification-url": "https://packagist.org/downloads/",
  7296. "license": [
  7297. "MIT"
  7298. ],
  7299. "authors": [
  7300. {
  7301. "name": "Laurent Bassin",
  7302. "email": "laurent@bassin.info"
  7303. },
  7304. {
  7305. "name": "Trevor Rowbotham",
  7306. "email": "trevor.rowbotham@pm.me"
  7307. },
  7308. {
  7309. "name": "Symfony Community",
  7310. "homepage": "https://symfony.com/contributors"
  7311. }
  7312. ],
  7313. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7314. "homepage": "https://symfony.com",
  7315. "keywords": [
  7316. "compatibility",
  7317. "idn",
  7318. "intl",
  7319. "polyfill",
  7320. "portable",
  7321. "shim"
  7322. ],
  7323. "support": {
  7324. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7325. },
  7326. "funding": [
  7327. {
  7328. "url": "https://symfony.com/sponsor",
  7329. "type": "custom"
  7330. },
  7331. {
  7332. "url": "https://github.com/fabpot",
  7333. "type": "github"
  7334. },
  7335. {
  7336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7337. "type": "tidelift"
  7338. }
  7339. ],
  7340. "time": "2024-09-09T11:45:10+00:00"
  7341. },
  7342. {
  7343. "name": "symfony/polyfill-intl-normalizer",
  7344. "version": "v1.31.0",
  7345. "source": {
  7346. "type": "git",
  7347. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7348. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7349. },
  7350. "dist": {
  7351. "type": "zip",
  7352. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7353. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7354. "shasum": ""
  7355. },
  7356. "require": {
  7357. "php": ">=7.2"
  7358. },
  7359. "suggest": {
  7360. "ext-intl": "For best performance"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "thanks": {
  7365. "name": "symfony/polyfill",
  7366. "url": "https://github.com/symfony/polyfill"
  7367. }
  7368. },
  7369. "autoload": {
  7370. "files": [
  7371. "bootstrap.php"
  7372. ],
  7373. "psr-4": {
  7374. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7375. },
  7376. "classmap": [
  7377. "Resources/stubs"
  7378. ]
  7379. },
  7380. "notification-url": "https://packagist.org/downloads/",
  7381. "license": [
  7382. "MIT"
  7383. ],
  7384. "authors": [
  7385. {
  7386. "name": "Nicolas Grekas",
  7387. "email": "p@tchwork.com"
  7388. },
  7389. {
  7390. "name": "Symfony Community",
  7391. "homepage": "https://symfony.com/contributors"
  7392. }
  7393. ],
  7394. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7395. "homepage": "https://symfony.com",
  7396. "keywords": [
  7397. "compatibility",
  7398. "intl",
  7399. "normalizer",
  7400. "polyfill",
  7401. "portable",
  7402. "shim"
  7403. ],
  7404. "support": {
  7405. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7406. },
  7407. "funding": [
  7408. {
  7409. "url": "https://symfony.com/sponsor",
  7410. "type": "custom"
  7411. },
  7412. {
  7413. "url": "https://github.com/fabpot",
  7414. "type": "github"
  7415. },
  7416. {
  7417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7418. "type": "tidelift"
  7419. }
  7420. ],
  7421. "time": "2024-09-09T11:45:10+00:00"
  7422. },
  7423. {
  7424. "name": "symfony/polyfill-mbstring",
  7425. "version": "v1.31.0",
  7426. "source": {
  7427. "type": "git",
  7428. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7429. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7430. },
  7431. "dist": {
  7432. "type": "zip",
  7433. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7434. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7435. "shasum": ""
  7436. },
  7437. "require": {
  7438. "php": ">=7.2"
  7439. },
  7440. "provide": {
  7441. "ext-mbstring": "*"
  7442. },
  7443. "suggest": {
  7444. "ext-mbstring": "For best performance"
  7445. },
  7446. "type": "library",
  7447. "extra": {
  7448. "thanks": {
  7449. "name": "symfony/polyfill",
  7450. "url": "https://github.com/symfony/polyfill"
  7451. }
  7452. },
  7453. "autoload": {
  7454. "files": [
  7455. "bootstrap.php"
  7456. ],
  7457. "psr-4": {
  7458. "Symfony\\Polyfill\\Mbstring\\": ""
  7459. }
  7460. },
  7461. "notification-url": "https://packagist.org/downloads/",
  7462. "license": [
  7463. "MIT"
  7464. ],
  7465. "authors": [
  7466. {
  7467. "name": "Nicolas Grekas",
  7468. "email": "p@tchwork.com"
  7469. },
  7470. {
  7471. "name": "Symfony Community",
  7472. "homepage": "https://symfony.com/contributors"
  7473. }
  7474. ],
  7475. "description": "Symfony polyfill for the Mbstring extension",
  7476. "homepage": "https://symfony.com",
  7477. "keywords": [
  7478. "compatibility",
  7479. "mbstring",
  7480. "polyfill",
  7481. "portable",
  7482. "shim"
  7483. ],
  7484. "support": {
  7485. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7486. },
  7487. "funding": [
  7488. {
  7489. "url": "https://symfony.com/sponsor",
  7490. "type": "custom"
  7491. },
  7492. {
  7493. "url": "https://github.com/fabpot",
  7494. "type": "github"
  7495. },
  7496. {
  7497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7498. "type": "tidelift"
  7499. }
  7500. ],
  7501. "time": "2024-09-09T11:45:10+00:00"
  7502. },
  7503. {
  7504. "name": "symfony/polyfill-php80",
  7505. "version": "v1.31.0",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/symfony/polyfill-php80.git",
  7509. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7514. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "php": ">=7.2"
  7519. },
  7520. "type": "library",
  7521. "extra": {
  7522. "thanks": {
  7523. "name": "symfony/polyfill",
  7524. "url": "https://github.com/symfony/polyfill"
  7525. }
  7526. },
  7527. "autoload": {
  7528. "files": [
  7529. "bootstrap.php"
  7530. ],
  7531. "psr-4": {
  7532. "Symfony\\Polyfill\\Php80\\": ""
  7533. },
  7534. "classmap": [
  7535. "Resources/stubs"
  7536. ]
  7537. },
  7538. "notification-url": "https://packagist.org/downloads/",
  7539. "license": [
  7540. "MIT"
  7541. ],
  7542. "authors": [
  7543. {
  7544. "name": "Ion Bazan",
  7545. "email": "ion.bazan@gmail.com"
  7546. },
  7547. {
  7548. "name": "Nicolas Grekas",
  7549. "email": "p@tchwork.com"
  7550. },
  7551. {
  7552. "name": "Symfony Community",
  7553. "homepage": "https://symfony.com/contributors"
  7554. }
  7555. ],
  7556. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7557. "homepage": "https://symfony.com",
  7558. "keywords": [
  7559. "compatibility",
  7560. "polyfill",
  7561. "portable",
  7562. "shim"
  7563. ],
  7564. "support": {
  7565. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7566. },
  7567. "funding": [
  7568. {
  7569. "url": "https://symfony.com/sponsor",
  7570. "type": "custom"
  7571. },
  7572. {
  7573. "url": "https://github.com/fabpot",
  7574. "type": "github"
  7575. },
  7576. {
  7577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7578. "type": "tidelift"
  7579. }
  7580. ],
  7581. "time": "2024-09-09T11:45:10+00:00"
  7582. },
  7583. {
  7584. "name": "symfony/service-contracts",
  7585. "version": "v3.5.0",
  7586. "source": {
  7587. "type": "git",
  7588. "url": "https://github.com/symfony/service-contracts.git",
  7589. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7590. },
  7591. "dist": {
  7592. "type": "zip",
  7593. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7594. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7595. "shasum": ""
  7596. },
  7597. "require": {
  7598. "php": ">=8.1",
  7599. "psr/container": "^1.1|^2.0",
  7600. "symfony/deprecation-contracts": "^2.5|^3"
  7601. },
  7602. "conflict": {
  7603. "ext-psr": "<1.1|>=2"
  7604. },
  7605. "type": "library",
  7606. "extra": {
  7607. "branch-alias": {
  7608. "dev-main": "3.5-dev"
  7609. },
  7610. "thanks": {
  7611. "name": "symfony/contracts",
  7612. "url": "https://github.com/symfony/contracts"
  7613. }
  7614. },
  7615. "autoload": {
  7616. "psr-4": {
  7617. "Symfony\\Contracts\\Service\\": ""
  7618. },
  7619. "exclude-from-classmap": [
  7620. "/Test/"
  7621. ]
  7622. },
  7623. "notification-url": "https://packagist.org/downloads/",
  7624. "license": [
  7625. "MIT"
  7626. ],
  7627. "authors": [
  7628. {
  7629. "name": "Nicolas Grekas",
  7630. "email": "p@tchwork.com"
  7631. },
  7632. {
  7633. "name": "Symfony Community",
  7634. "homepage": "https://symfony.com/contributors"
  7635. }
  7636. ],
  7637. "description": "Generic abstractions related to writing services",
  7638. "homepage": "https://symfony.com",
  7639. "keywords": [
  7640. "abstractions",
  7641. "contracts",
  7642. "decoupling",
  7643. "interfaces",
  7644. "interoperability",
  7645. "standards"
  7646. ],
  7647. "support": {
  7648. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7649. },
  7650. "funding": [
  7651. {
  7652. "url": "https://symfony.com/sponsor",
  7653. "type": "custom"
  7654. },
  7655. {
  7656. "url": "https://github.com/fabpot",
  7657. "type": "github"
  7658. },
  7659. {
  7660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7661. "type": "tidelift"
  7662. }
  7663. ],
  7664. "time": "2024-04-18T09:32:20+00:00"
  7665. },
  7666. {
  7667. "name": "symfony/string",
  7668. "version": "v6.4.13",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/symfony/string.git",
  7672. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7677. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7678. "shasum": ""
  7679. },
  7680. "require": {
  7681. "php": ">=8.1",
  7682. "symfony/polyfill-ctype": "~1.8",
  7683. "symfony/polyfill-intl-grapheme": "~1.0",
  7684. "symfony/polyfill-intl-normalizer": "~1.0",
  7685. "symfony/polyfill-mbstring": "~1.0"
  7686. },
  7687. "conflict": {
  7688. "symfony/translation-contracts": "<2.5"
  7689. },
  7690. "require-dev": {
  7691. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7692. "symfony/http-client": "^5.4|^6.0|^7.0",
  7693. "symfony/intl": "^6.2|^7.0",
  7694. "symfony/translation-contracts": "^2.5|^3.0",
  7695. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7696. },
  7697. "type": "library",
  7698. "autoload": {
  7699. "files": [
  7700. "Resources/functions.php"
  7701. ],
  7702. "psr-4": {
  7703. "Symfony\\Component\\String\\": ""
  7704. },
  7705. "exclude-from-classmap": [
  7706. "/Tests/"
  7707. ]
  7708. },
  7709. "notification-url": "https://packagist.org/downloads/",
  7710. "license": [
  7711. "MIT"
  7712. ],
  7713. "authors": [
  7714. {
  7715. "name": "Nicolas Grekas",
  7716. "email": "p@tchwork.com"
  7717. },
  7718. {
  7719. "name": "Symfony Community",
  7720. "homepage": "https://symfony.com/contributors"
  7721. }
  7722. ],
  7723. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7724. "homepage": "https://symfony.com",
  7725. "keywords": [
  7726. "grapheme",
  7727. "i18n",
  7728. "string",
  7729. "unicode",
  7730. "utf-8",
  7731. "utf8"
  7732. ],
  7733. "support": {
  7734. "source": "https://github.com/symfony/string/tree/v6.4.13"
  7735. },
  7736. "funding": [
  7737. {
  7738. "url": "https://symfony.com/sponsor",
  7739. "type": "custom"
  7740. },
  7741. {
  7742. "url": "https://github.com/fabpot",
  7743. "type": "github"
  7744. },
  7745. {
  7746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7747. "type": "tidelift"
  7748. }
  7749. ],
  7750. "time": "2024-09-25T14:18:03+00:00"
  7751. },
  7752. {
  7753. "name": "symfony/translation",
  7754. "version": "v6.4.13",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/symfony/translation.git",
  7758. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7763. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "php": ">=8.1",
  7768. "symfony/deprecation-contracts": "^2.5|^3",
  7769. "symfony/polyfill-mbstring": "~1.0",
  7770. "symfony/translation-contracts": "^2.5|^3.0"
  7771. },
  7772. "conflict": {
  7773. "symfony/config": "<5.4",
  7774. "symfony/console": "<5.4",
  7775. "symfony/dependency-injection": "<5.4",
  7776. "symfony/http-client-contracts": "<2.5",
  7777. "symfony/http-kernel": "<5.4",
  7778. "symfony/service-contracts": "<2.5",
  7779. "symfony/twig-bundle": "<5.4",
  7780. "symfony/yaml": "<5.4"
  7781. },
  7782. "provide": {
  7783. "symfony/translation-implementation": "2.3|3.0"
  7784. },
  7785. "require-dev": {
  7786. "nikic/php-parser": "^4.18|^5.0",
  7787. "psr/log": "^1|^2|^3",
  7788. "symfony/config": "^5.4|^6.0|^7.0",
  7789. "symfony/console": "^5.4|^6.0|^7.0",
  7790. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7791. "symfony/finder": "^5.4|^6.0|^7.0",
  7792. "symfony/http-client-contracts": "^2.5|^3.0",
  7793. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7794. "symfony/intl": "^5.4|^6.0|^7.0",
  7795. "symfony/polyfill-intl-icu": "^1.21",
  7796. "symfony/routing": "^5.4|^6.0|^7.0",
  7797. "symfony/service-contracts": "^2.5|^3",
  7798. "symfony/yaml": "^5.4|^6.0|^7.0"
  7799. },
  7800. "type": "library",
  7801. "autoload": {
  7802. "files": [
  7803. "Resources/functions.php"
  7804. ],
  7805. "psr-4": {
  7806. "Symfony\\Component\\Translation\\": ""
  7807. },
  7808. "exclude-from-classmap": [
  7809. "/Tests/"
  7810. ]
  7811. },
  7812. "notification-url": "https://packagist.org/downloads/",
  7813. "license": [
  7814. "MIT"
  7815. ],
  7816. "authors": [
  7817. {
  7818. "name": "Fabien Potencier",
  7819. "email": "fabien@symfony.com"
  7820. },
  7821. {
  7822. "name": "Symfony Community",
  7823. "homepage": "https://symfony.com/contributors"
  7824. }
  7825. ],
  7826. "description": "Provides tools to internationalize your application",
  7827. "homepage": "https://symfony.com",
  7828. "support": {
  7829. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7830. },
  7831. "funding": [
  7832. {
  7833. "url": "https://symfony.com/sponsor",
  7834. "type": "custom"
  7835. },
  7836. {
  7837. "url": "https://github.com/fabpot",
  7838. "type": "github"
  7839. },
  7840. {
  7841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7842. "type": "tidelift"
  7843. }
  7844. ],
  7845. "time": "2024-09-27T18:14:25+00:00"
  7846. },
  7847. {
  7848. "name": "symfony/translation-contracts",
  7849. "version": "v3.5.0",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/symfony/translation-contracts.git",
  7853. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7858. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "php": ">=8.1"
  7863. },
  7864. "type": "library",
  7865. "extra": {
  7866. "branch-alias": {
  7867. "dev-main": "3.5-dev"
  7868. },
  7869. "thanks": {
  7870. "name": "symfony/contracts",
  7871. "url": "https://github.com/symfony/contracts"
  7872. }
  7873. },
  7874. "autoload": {
  7875. "psr-4": {
  7876. "Symfony\\Contracts\\Translation\\": ""
  7877. },
  7878. "exclude-from-classmap": [
  7879. "/Test/"
  7880. ]
  7881. },
  7882. "notification-url": "https://packagist.org/downloads/",
  7883. "license": [
  7884. "MIT"
  7885. ],
  7886. "authors": [
  7887. {
  7888. "name": "Nicolas Grekas",
  7889. "email": "p@tchwork.com"
  7890. },
  7891. {
  7892. "name": "Symfony Community",
  7893. "homepage": "https://symfony.com/contributors"
  7894. }
  7895. ],
  7896. "description": "Generic abstractions related to translation",
  7897. "homepage": "https://symfony.com",
  7898. "keywords": [
  7899. "abstractions",
  7900. "contracts",
  7901. "decoupling",
  7902. "interfaces",
  7903. "interoperability",
  7904. "standards"
  7905. ],
  7906. "support": {
  7907. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7908. },
  7909. "funding": [
  7910. {
  7911. "url": "https://symfony.com/sponsor",
  7912. "type": "custom"
  7913. },
  7914. {
  7915. "url": "https://github.com/fabpot",
  7916. "type": "github"
  7917. },
  7918. {
  7919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7920. "type": "tidelift"
  7921. }
  7922. ],
  7923. "time": "2024-04-18T09:32:20+00:00"
  7924. },
  7925. {
  7926. "name": "vlucas/phpdotenv",
  7927. "version": "v5.6.1",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/vlucas/phpdotenv.git",
  7931. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7936. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "ext-pcre": "*",
  7941. "graham-campbell/result-type": "^1.1.3",
  7942. "php": "^7.2.5 || ^8.0",
  7943. "phpoption/phpoption": "^1.9.3",
  7944. "symfony/polyfill-ctype": "^1.24",
  7945. "symfony/polyfill-mbstring": "^1.24",
  7946. "symfony/polyfill-php80": "^1.24"
  7947. },
  7948. "require-dev": {
  7949. "bamarni/composer-bin-plugin": "^1.8.2",
  7950. "ext-filter": "*",
  7951. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7952. },
  7953. "suggest": {
  7954. "ext-filter": "Required to use the boolean validator."
  7955. },
  7956. "type": "library",
  7957. "extra": {
  7958. "bamarni-bin": {
  7959. "bin-links": true,
  7960. "forward-command": false
  7961. },
  7962. "branch-alias": {
  7963. "dev-master": "5.6-dev"
  7964. }
  7965. },
  7966. "autoload": {
  7967. "psr-4": {
  7968. "Dotenv\\": "src/"
  7969. }
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "BSD-3-Clause"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Graham Campbell",
  7978. "email": "hello@gjcampbell.co.uk",
  7979. "homepage": "https://github.com/GrahamCampbell"
  7980. },
  7981. {
  7982. "name": "Vance Lucas",
  7983. "email": "vance@vancelucas.com",
  7984. "homepage": "https://github.com/vlucas"
  7985. }
  7986. ],
  7987. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7988. "keywords": [
  7989. "dotenv",
  7990. "env",
  7991. "environment"
  7992. ],
  7993. "support": {
  7994. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7995. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7996. },
  7997. "funding": [
  7998. {
  7999. "url": "https://github.com/GrahamCampbell",
  8000. "type": "github"
  8001. },
  8002. {
  8003. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8004. "type": "tidelift"
  8005. }
  8006. ],
  8007. "time": "2024-07-20T21:52:34+00:00"
  8008. }
  8009. ],
  8010. "packages-dev": [
  8011. {
  8012. "name": "clue/ndjson-react",
  8013. "version": "v1.3.0",
  8014. "source": {
  8015. "type": "git",
  8016. "url": "https://github.com/clue/reactphp-ndjson.git",
  8017. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8018. },
  8019. "dist": {
  8020. "type": "zip",
  8021. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8022. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8023. "shasum": ""
  8024. },
  8025. "require": {
  8026. "php": ">=5.3",
  8027. "react/stream": "^1.2"
  8028. },
  8029. "require-dev": {
  8030. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8031. "react/event-loop": "^1.2"
  8032. },
  8033. "type": "library",
  8034. "autoload": {
  8035. "psr-4": {
  8036. "Clue\\React\\NDJson\\": "src/"
  8037. }
  8038. },
  8039. "notification-url": "https://packagist.org/downloads/",
  8040. "license": [
  8041. "MIT"
  8042. ],
  8043. "authors": [
  8044. {
  8045. "name": "Christian Lück",
  8046. "email": "christian@clue.engineering"
  8047. }
  8048. ],
  8049. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8050. "homepage": "https://github.com/clue/reactphp-ndjson",
  8051. "keywords": [
  8052. "NDJSON",
  8053. "json",
  8054. "jsonlines",
  8055. "newline",
  8056. "reactphp",
  8057. "streaming"
  8058. ],
  8059. "support": {
  8060. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8061. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8062. },
  8063. "funding": [
  8064. {
  8065. "url": "https://clue.engineering/support",
  8066. "type": "custom"
  8067. },
  8068. {
  8069. "url": "https://github.com/clue",
  8070. "type": "github"
  8071. }
  8072. ],
  8073. "time": "2022-12-23T10:58:28+00:00"
  8074. },
  8075. {
  8076. "name": "composer/pcre",
  8077. "version": "3.3.1",
  8078. "source": {
  8079. "type": "git",
  8080. "url": "https://github.com/composer/pcre.git",
  8081. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  8082. },
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  8086. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  8087. "shasum": ""
  8088. },
  8089. "require": {
  8090. "php": "^7.4 || ^8.0"
  8091. },
  8092. "conflict": {
  8093. "phpstan/phpstan": "<1.11.10"
  8094. },
  8095. "require-dev": {
  8096. "phpstan/phpstan": "^1.11.10",
  8097. "phpstan/phpstan-strict-rules": "^1.1",
  8098. "phpunit/phpunit": "^8 || ^9"
  8099. },
  8100. "type": "library",
  8101. "extra": {
  8102. "branch-alias": {
  8103. "dev-main": "3.x-dev"
  8104. },
  8105. "phpstan": {
  8106. "includes": [
  8107. "extension.neon"
  8108. ]
  8109. }
  8110. },
  8111. "autoload": {
  8112. "psr-4": {
  8113. "Composer\\Pcre\\": "src"
  8114. }
  8115. },
  8116. "notification-url": "https://packagist.org/downloads/",
  8117. "license": [
  8118. "MIT"
  8119. ],
  8120. "authors": [
  8121. {
  8122. "name": "Jordi Boggiano",
  8123. "email": "j.boggiano@seld.be",
  8124. "homepage": "http://seld.be"
  8125. }
  8126. ],
  8127. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8128. "keywords": [
  8129. "PCRE",
  8130. "preg",
  8131. "regex",
  8132. "regular expression"
  8133. ],
  8134. "support": {
  8135. "issues": "https://github.com/composer/pcre/issues",
  8136. "source": "https://github.com/composer/pcre/tree/3.3.1"
  8137. },
  8138. "funding": [
  8139. {
  8140. "url": "https://packagist.com",
  8141. "type": "custom"
  8142. },
  8143. {
  8144. "url": "https://github.com/composer",
  8145. "type": "github"
  8146. },
  8147. {
  8148. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8149. "type": "tidelift"
  8150. }
  8151. ],
  8152. "time": "2024-08-27T18:44:43+00:00"
  8153. },
  8154. {
  8155. "name": "composer/semver",
  8156. "version": "3.4.3",
  8157. "source": {
  8158. "type": "git",
  8159. "url": "https://github.com/composer/semver.git",
  8160. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8161. },
  8162. "dist": {
  8163. "type": "zip",
  8164. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8165. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8166. "shasum": ""
  8167. },
  8168. "require": {
  8169. "php": "^5.3.2 || ^7.0 || ^8.0"
  8170. },
  8171. "require-dev": {
  8172. "phpstan/phpstan": "^1.11",
  8173. "symfony/phpunit-bridge": "^3 || ^7"
  8174. },
  8175. "type": "library",
  8176. "extra": {
  8177. "branch-alias": {
  8178. "dev-main": "3.x-dev"
  8179. }
  8180. },
  8181. "autoload": {
  8182. "psr-4": {
  8183. "Composer\\Semver\\": "src"
  8184. }
  8185. },
  8186. "notification-url": "https://packagist.org/downloads/",
  8187. "license": [
  8188. "MIT"
  8189. ],
  8190. "authors": [
  8191. {
  8192. "name": "Nils Adermann",
  8193. "email": "naderman@naderman.de",
  8194. "homepage": "http://www.naderman.de"
  8195. },
  8196. {
  8197. "name": "Jordi Boggiano",
  8198. "email": "j.boggiano@seld.be",
  8199. "homepage": "http://seld.be"
  8200. },
  8201. {
  8202. "name": "Rob Bast",
  8203. "email": "rob.bast@gmail.com",
  8204. "homepage": "http://robbast.nl"
  8205. }
  8206. ],
  8207. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8208. "keywords": [
  8209. "semantic",
  8210. "semver",
  8211. "validation",
  8212. "versioning"
  8213. ],
  8214. "support": {
  8215. "irc": "ircs://irc.libera.chat:6697/composer",
  8216. "issues": "https://github.com/composer/semver/issues",
  8217. "source": "https://github.com/composer/semver/tree/3.4.3"
  8218. },
  8219. "funding": [
  8220. {
  8221. "url": "https://packagist.com",
  8222. "type": "custom"
  8223. },
  8224. {
  8225. "url": "https://github.com/composer",
  8226. "type": "github"
  8227. },
  8228. {
  8229. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8230. "type": "tidelift"
  8231. }
  8232. ],
  8233. "time": "2024-09-19T14:15:21+00:00"
  8234. },
  8235. {
  8236. "name": "composer/xdebug-handler",
  8237. "version": "3.0.5",
  8238. "source": {
  8239. "type": "git",
  8240. "url": "https://github.com/composer/xdebug-handler.git",
  8241. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8242. },
  8243. "dist": {
  8244. "type": "zip",
  8245. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8246. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8247. "shasum": ""
  8248. },
  8249. "require": {
  8250. "composer/pcre": "^1 || ^2 || ^3",
  8251. "php": "^7.2.5 || ^8.0",
  8252. "psr/log": "^1 || ^2 || ^3"
  8253. },
  8254. "require-dev": {
  8255. "phpstan/phpstan": "^1.0",
  8256. "phpstan/phpstan-strict-rules": "^1.1",
  8257. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8258. },
  8259. "type": "library",
  8260. "autoload": {
  8261. "psr-4": {
  8262. "Composer\\XdebugHandler\\": "src"
  8263. }
  8264. },
  8265. "notification-url": "https://packagist.org/downloads/",
  8266. "license": [
  8267. "MIT"
  8268. ],
  8269. "authors": [
  8270. {
  8271. "name": "John Stevenson",
  8272. "email": "john-stevenson@blueyonder.co.uk"
  8273. }
  8274. ],
  8275. "description": "Restarts a process without Xdebug.",
  8276. "keywords": [
  8277. "Xdebug",
  8278. "performance"
  8279. ],
  8280. "support": {
  8281. "irc": "ircs://irc.libera.chat:6697/composer",
  8282. "issues": "https://github.com/composer/xdebug-handler/issues",
  8283. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8284. },
  8285. "funding": [
  8286. {
  8287. "url": "https://packagist.com",
  8288. "type": "custom"
  8289. },
  8290. {
  8291. "url": "https://github.com/composer",
  8292. "type": "github"
  8293. },
  8294. {
  8295. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8296. "type": "tidelift"
  8297. }
  8298. ],
  8299. "time": "2024-05-06T16:37:16+00:00"
  8300. },
  8301. {
  8302. "name": "evenement/evenement",
  8303. "version": "v3.0.2",
  8304. "source": {
  8305. "type": "git",
  8306. "url": "https://github.com/igorw/evenement.git",
  8307. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8308. },
  8309. "dist": {
  8310. "type": "zip",
  8311. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8312. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8313. "shasum": ""
  8314. },
  8315. "require": {
  8316. "php": ">=7.0"
  8317. },
  8318. "require-dev": {
  8319. "phpunit/phpunit": "^9 || ^6"
  8320. },
  8321. "type": "library",
  8322. "autoload": {
  8323. "psr-4": {
  8324. "Evenement\\": "src/"
  8325. }
  8326. },
  8327. "notification-url": "https://packagist.org/downloads/",
  8328. "license": [
  8329. "MIT"
  8330. ],
  8331. "authors": [
  8332. {
  8333. "name": "Igor Wiedler",
  8334. "email": "igor@wiedler.ch"
  8335. }
  8336. ],
  8337. "description": "Événement is a very simple event dispatching library for PHP",
  8338. "keywords": [
  8339. "event-dispatcher",
  8340. "event-emitter"
  8341. ],
  8342. "support": {
  8343. "issues": "https://github.com/igorw/evenement/issues",
  8344. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8345. },
  8346. "time": "2023-08-08T05:53:35+00:00"
  8347. },
  8348. {
  8349. "name": "fidry/cpu-core-counter",
  8350. "version": "1.2.0",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8354. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8359. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8360. "shasum": ""
  8361. },
  8362. "require": {
  8363. "php": "^7.2 || ^8.0"
  8364. },
  8365. "require-dev": {
  8366. "fidry/makefile": "^0.2.0",
  8367. "fidry/php-cs-fixer-config": "^1.1.2",
  8368. "phpstan/extension-installer": "^1.2.0",
  8369. "phpstan/phpstan": "^1.9.2",
  8370. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8371. "phpstan/phpstan-phpunit": "^1.2.2",
  8372. "phpstan/phpstan-strict-rules": "^1.4.4",
  8373. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8374. "webmozarts/strict-phpunit": "^7.5"
  8375. },
  8376. "type": "library",
  8377. "autoload": {
  8378. "psr-4": {
  8379. "Fidry\\CpuCoreCounter\\": "src/"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "MIT"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "Théo FIDRY",
  8389. "email": "theo.fidry@gmail.com"
  8390. }
  8391. ],
  8392. "description": "Tiny utility to get the number of CPU cores.",
  8393. "keywords": [
  8394. "CPU",
  8395. "core"
  8396. ],
  8397. "support": {
  8398. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8399. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8400. },
  8401. "funding": [
  8402. {
  8403. "url": "https://github.com/theofidry",
  8404. "type": "github"
  8405. }
  8406. ],
  8407. "time": "2024-08-06T10:04:20+00:00"
  8408. },
  8409. {
  8410. "name": "friendsofphp/php-cs-fixer",
  8411. "version": "v3.64.0",
  8412. "source": {
  8413. "type": "git",
  8414. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8415. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8416. },
  8417. "dist": {
  8418. "type": "zip",
  8419. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8420. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8421. "shasum": ""
  8422. },
  8423. "require": {
  8424. "clue/ndjson-react": "^1.0",
  8425. "composer/semver": "^3.4",
  8426. "composer/xdebug-handler": "^3.0.3",
  8427. "ext-filter": "*",
  8428. "ext-json": "*",
  8429. "ext-tokenizer": "*",
  8430. "fidry/cpu-core-counter": "^1.0",
  8431. "php": "^7.4 || ^8.0",
  8432. "react/child-process": "^0.6.5",
  8433. "react/event-loop": "^1.0",
  8434. "react/promise": "^2.0 || ^3.0",
  8435. "react/socket": "^1.0",
  8436. "react/stream": "^1.0",
  8437. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8438. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8439. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8440. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8441. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8442. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8443. "symfony/polyfill-mbstring": "^1.28",
  8444. "symfony/polyfill-php80": "^1.28",
  8445. "symfony/polyfill-php81": "^1.28",
  8446. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8447. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8448. },
  8449. "require-dev": {
  8450. "facile-it/paraunit": "^1.3 || ^2.3",
  8451. "infection/infection": "^0.29.5",
  8452. "justinrainbow/json-schema": "^5.2",
  8453. "keradus/cli-executor": "^2.1",
  8454. "mikey179/vfsstream": "^1.6.11",
  8455. "php-coveralls/php-coveralls": "^2.7",
  8456. "php-cs-fixer/accessible-object": "^1.1",
  8457. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8458. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8459. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8460. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8461. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8462. },
  8463. "suggest": {
  8464. "ext-dom": "For handling output formats in XML",
  8465. "ext-mbstring": "For handling non-UTF8 characters."
  8466. },
  8467. "bin": [
  8468. "php-cs-fixer"
  8469. ],
  8470. "type": "application",
  8471. "autoload": {
  8472. "psr-4": {
  8473. "PhpCsFixer\\": "src/"
  8474. },
  8475. "exclude-from-classmap": [
  8476. "src/Fixer/Internal/*"
  8477. ]
  8478. },
  8479. "notification-url": "https://packagist.org/downloads/",
  8480. "license": [
  8481. "MIT"
  8482. ],
  8483. "authors": [
  8484. {
  8485. "name": "Fabien Potencier",
  8486. "email": "fabien@symfony.com"
  8487. },
  8488. {
  8489. "name": "Dariusz Rumiński",
  8490. "email": "dariusz.ruminski@gmail.com"
  8491. }
  8492. ],
  8493. "description": "A tool to automatically fix PHP code style",
  8494. "keywords": [
  8495. "Static code analysis",
  8496. "fixer",
  8497. "standards",
  8498. "static analysis"
  8499. ],
  8500. "support": {
  8501. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8502. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8503. },
  8504. "funding": [
  8505. {
  8506. "url": "https://github.com/keradus",
  8507. "type": "github"
  8508. }
  8509. ],
  8510. "time": "2024-08-30T23:09:38+00:00"
  8511. },
  8512. {
  8513. "name": "hamcrest/hamcrest-php",
  8514. "version": "v2.0.1",
  8515. "source": {
  8516. "type": "git",
  8517. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8518. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8519. },
  8520. "dist": {
  8521. "type": "zip",
  8522. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8523. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8524. "shasum": ""
  8525. },
  8526. "require": {
  8527. "php": "^5.3|^7.0|^8.0"
  8528. },
  8529. "replace": {
  8530. "cordoval/hamcrest-php": "*",
  8531. "davedevelopment/hamcrest-php": "*",
  8532. "kodova/hamcrest-php": "*"
  8533. },
  8534. "require-dev": {
  8535. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8536. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8537. },
  8538. "type": "library",
  8539. "extra": {
  8540. "branch-alias": {
  8541. "dev-master": "2.1-dev"
  8542. }
  8543. },
  8544. "autoload": {
  8545. "classmap": [
  8546. "hamcrest"
  8547. ]
  8548. },
  8549. "notification-url": "https://packagist.org/downloads/",
  8550. "license": [
  8551. "BSD-3-Clause"
  8552. ],
  8553. "description": "This is the PHP port of Hamcrest Matchers",
  8554. "keywords": [
  8555. "test"
  8556. ],
  8557. "support": {
  8558. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8559. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8560. },
  8561. "time": "2020-07-09T08:09:16+00:00"
  8562. },
  8563. {
  8564. "name": "hyperf/devtool",
  8565. "version": "v3.1.42",
  8566. "source": {
  8567. "type": "git",
  8568. "url": "https://github.com/hyperf/devtool.git",
  8569. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8570. },
  8571. "dist": {
  8572. "type": "zip",
  8573. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8574. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8575. "shasum": ""
  8576. },
  8577. "require": {
  8578. "hyperf/code-parser": "~3.1.0",
  8579. "hyperf/command": "~3.1.0",
  8580. "hyperf/contract": "~3.1.0",
  8581. "hyperf/di": "~3.1.0",
  8582. "hyperf/support": "~3.1.0",
  8583. "hyperf/utils": "~3.1.0",
  8584. "php": ">=8.1"
  8585. },
  8586. "type": "library",
  8587. "extra": {
  8588. "branch-alias": {
  8589. "dev-master": "3.1-dev"
  8590. },
  8591. "hyperf": {
  8592. "config": "Hyperf\\Devtool\\ConfigProvider"
  8593. }
  8594. },
  8595. "autoload": {
  8596. "psr-4": {
  8597. "Hyperf\\Devtool\\": "src/"
  8598. }
  8599. },
  8600. "notification-url": "https://packagist.org/downloads/",
  8601. "license": [
  8602. "MIT"
  8603. ],
  8604. "description": "A Devtool for Hyperf.",
  8605. "homepage": "https://hyperf.io",
  8606. "keywords": [
  8607. "dev",
  8608. "devtool",
  8609. "hyperf",
  8610. "php",
  8611. "swoole"
  8612. ],
  8613. "support": {
  8614. "docs": "https://hyperf.wiki",
  8615. "issues": "https://github.com/hyperf/hyperf/issues",
  8616. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8617. "source": "https://github.com/hyperf/hyperf"
  8618. },
  8619. "funding": [
  8620. {
  8621. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8622. "type": "custom"
  8623. },
  8624. {
  8625. "url": "https://opencollective.com/hyperf",
  8626. "type": "open_collective"
  8627. }
  8628. ],
  8629. "time": "2024-09-25T02:54:12+00:00"
  8630. },
  8631. {
  8632. "name": "hyperf/testing",
  8633. "version": "v3.1.44",
  8634. "source": {
  8635. "type": "git",
  8636. "url": "https://github.com/hyperf/testing.git",
  8637. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  8638. },
  8639. "dist": {
  8640. "type": "zip",
  8641. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8642. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8643. "shasum": ""
  8644. },
  8645. "require": {
  8646. "hyperf/codec": "~3.1.0",
  8647. "hyperf/collection": "~3.1.0",
  8648. "hyperf/contract": "~3.1.0",
  8649. "hyperf/coroutine": "~3.1.0",
  8650. "hyperf/http-message": "~3.1.0",
  8651. "hyperf/http-server": "~3.1.0",
  8652. "hyperf/support": "~3.1.0",
  8653. "hyperf/utils": "~3.1.0",
  8654. "php": ">=8.1",
  8655. "phpunit/phpunit": "^10.0",
  8656. "psr/container": "^1.0 || ^2.0",
  8657. "symfony/http-foundation": "^5.4 || ^6.0"
  8658. },
  8659. "suggest": {
  8660. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8661. },
  8662. "bin": [
  8663. "co-phpunit"
  8664. ],
  8665. "type": "library",
  8666. "extra": {
  8667. "branch-alias": {
  8668. "dev-master": "3.1-dev"
  8669. }
  8670. },
  8671. "autoload": {
  8672. "psr-4": {
  8673. "Hyperf\\Testing\\": "src/"
  8674. }
  8675. },
  8676. "notification-url": "https://packagist.org/downloads/",
  8677. "license": [
  8678. "MIT"
  8679. ],
  8680. "description": "Testing for hyperf",
  8681. "keywords": [
  8682. "dev",
  8683. "php",
  8684. "swoole",
  8685. "testing"
  8686. ],
  8687. "support": {
  8688. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  8689. },
  8690. "funding": [
  8691. {
  8692. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8693. "type": "custom"
  8694. },
  8695. {
  8696. "url": "https://opencollective.com/hyperf",
  8697. "type": "open_collective"
  8698. }
  8699. ],
  8700. "time": "2024-10-23T10:24:12+00:00"
  8701. },
  8702. {
  8703. "name": "hyperf/watcher",
  8704. "version": "v3.1.43",
  8705. "source": {
  8706. "type": "git",
  8707. "url": "https://github.com/hyperf/watcher.git",
  8708. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8709. },
  8710. "dist": {
  8711. "type": "zip",
  8712. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8713. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8714. "shasum": ""
  8715. },
  8716. "require": {
  8717. "ext-posix": "*",
  8718. "hyperf/codec": "~3.1.0",
  8719. "hyperf/command": "~3.1.0",
  8720. "hyperf/di": "~3.1.0",
  8721. "hyperf/framework": "~3.1.0",
  8722. "hyperf/support": "~3.1.0",
  8723. "php": ">=8.1"
  8724. },
  8725. "type": "library",
  8726. "extra": {
  8727. "branch-alias": {
  8728. "dev-master": "3.1-dev"
  8729. },
  8730. "hyperf": {
  8731. "config": "Hyperf\\Watcher\\ConfigProvider"
  8732. }
  8733. },
  8734. "autoload": {
  8735. "files": [
  8736. "src/Functions.php"
  8737. ],
  8738. "psr-4": {
  8739. "Hyperf\\Watcher\\": "src/"
  8740. }
  8741. },
  8742. "notification-url": "https://packagist.org/downloads/",
  8743. "license": [
  8744. "MIT"
  8745. ],
  8746. "description": "Hot reload watcher for Hyperf",
  8747. "keywords": [
  8748. "dev",
  8749. "hyperf",
  8750. "php"
  8751. ],
  8752. "support": {
  8753. "issues": "https://github.com/hyperf/watcher/issues",
  8754. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8755. },
  8756. "funding": [
  8757. {
  8758. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8759. "type": "custom"
  8760. },
  8761. {
  8762. "url": "https://opencollective.com/hyperf",
  8763. "type": "open_collective"
  8764. }
  8765. ],
  8766. "time": "2024-10-06T12:33:12+00:00"
  8767. },
  8768. {
  8769. "name": "mockery/mockery",
  8770. "version": "1.6.12",
  8771. "source": {
  8772. "type": "git",
  8773. "url": "https://github.com/mockery/mockery.git",
  8774. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8775. },
  8776. "dist": {
  8777. "type": "zip",
  8778. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8779. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8780. "shasum": ""
  8781. },
  8782. "require": {
  8783. "hamcrest/hamcrest-php": "^2.0.1",
  8784. "lib-pcre": ">=7.0",
  8785. "php": ">=7.3"
  8786. },
  8787. "conflict": {
  8788. "phpunit/phpunit": "<8.0"
  8789. },
  8790. "require-dev": {
  8791. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8792. "symplify/easy-coding-standard": "^12.1.14"
  8793. },
  8794. "type": "library",
  8795. "autoload": {
  8796. "files": [
  8797. "library/helpers.php",
  8798. "library/Mockery.php"
  8799. ],
  8800. "psr-4": {
  8801. "Mockery\\": "library/Mockery"
  8802. }
  8803. },
  8804. "notification-url": "https://packagist.org/downloads/",
  8805. "license": [
  8806. "BSD-3-Clause"
  8807. ],
  8808. "authors": [
  8809. {
  8810. "name": "Pádraic Brady",
  8811. "email": "padraic.brady@gmail.com",
  8812. "homepage": "https://github.com/padraic",
  8813. "role": "Author"
  8814. },
  8815. {
  8816. "name": "Dave Marshall",
  8817. "email": "dave.marshall@atstsolutions.co.uk",
  8818. "homepage": "https://davedevelopment.co.uk",
  8819. "role": "Developer"
  8820. },
  8821. {
  8822. "name": "Nathanael Esayeas",
  8823. "email": "nathanael.esayeas@protonmail.com",
  8824. "homepage": "https://github.com/ghostwriter",
  8825. "role": "Lead Developer"
  8826. }
  8827. ],
  8828. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8829. "homepage": "https://github.com/mockery/mockery",
  8830. "keywords": [
  8831. "BDD",
  8832. "TDD",
  8833. "library",
  8834. "mock",
  8835. "mock objects",
  8836. "mockery",
  8837. "stub",
  8838. "test",
  8839. "test double",
  8840. "testing"
  8841. ],
  8842. "support": {
  8843. "docs": "https://docs.mockery.io/",
  8844. "issues": "https://github.com/mockery/mockery/issues",
  8845. "rss": "https://github.com/mockery/mockery/releases.atom",
  8846. "security": "https://github.com/mockery/mockery/security/advisories",
  8847. "source": "https://github.com/mockery/mockery"
  8848. },
  8849. "time": "2024-05-16T03:13:13+00:00"
  8850. },
  8851. {
  8852. "name": "myclabs/deep-copy",
  8853. "version": "1.12.1",
  8854. "source": {
  8855. "type": "git",
  8856. "url": "https://github.com/myclabs/DeepCopy.git",
  8857. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8858. },
  8859. "dist": {
  8860. "type": "zip",
  8861. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8862. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8863. "shasum": ""
  8864. },
  8865. "require": {
  8866. "php": "^7.1 || ^8.0"
  8867. },
  8868. "conflict": {
  8869. "doctrine/collections": "<1.6.8",
  8870. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8871. },
  8872. "require-dev": {
  8873. "doctrine/collections": "^1.6.8",
  8874. "doctrine/common": "^2.13.3 || ^3.2.2",
  8875. "phpspec/prophecy": "^1.10",
  8876. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8877. },
  8878. "type": "library",
  8879. "autoload": {
  8880. "files": [
  8881. "src/DeepCopy/deep_copy.php"
  8882. ],
  8883. "psr-4": {
  8884. "DeepCopy\\": "src/DeepCopy/"
  8885. }
  8886. },
  8887. "notification-url": "https://packagist.org/downloads/",
  8888. "license": [
  8889. "MIT"
  8890. ],
  8891. "description": "Create deep copies (clones) of your objects",
  8892. "keywords": [
  8893. "clone",
  8894. "copy",
  8895. "duplicate",
  8896. "object",
  8897. "object graph"
  8898. ],
  8899. "support": {
  8900. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8901. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8902. },
  8903. "funding": [
  8904. {
  8905. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8906. "type": "tidelift"
  8907. }
  8908. ],
  8909. "time": "2024-11-08T17:47:46+00:00"
  8910. },
  8911. {
  8912. "name": "phar-io/manifest",
  8913. "version": "2.0.4",
  8914. "source": {
  8915. "type": "git",
  8916. "url": "https://github.com/phar-io/manifest.git",
  8917. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8918. },
  8919. "dist": {
  8920. "type": "zip",
  8921. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8922. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8923. "shasum": ""
  8924. },
  8925. "require": {
  8926. "ext-dom": "*",
  8927. "ext-libxml": "*",
  8928. "ext-phar": "*",
  8929. "ext-xmlwriter": "*",
  8930. "phar-io/version": "^3.0.1",
  8931. "php": "^7.2 || ^8.0"
  8932. },
  8933. "type": "library",
  8934. "extra": {
  8935. "branch-alias": {
  8936. "dev-master": "2.0.x-dev"
  8937. }
  8938. },
  8939. "autoload": {
  8940. "classmap": [
  8941. "src/"
  8942. ]
  8943. },
  8944. "notification-url": "https://packagist.org/downloads/",
  8945. "license": [
  8946. "BSD-3-Clause"
  8947. ],
  8948. "authors": [
  8949. {
  8950. "name": "Arne Blankerts",
  8951. "email": "arne@blankerts.de",
  8952. "role": "Developer"
  8953. },
  8954. {
  8955. "name": "Sebastian Heuer",
  8956. "email": "sebastian@phpeople.de",
  8957. "role": "Developer"
  8958. },
  8959. {
  8960. "name": "Sebastian Bergmann",
  8961. "email": "sebastian@phpunit.de",
  8962. "role": "Developer"
  8963. }
  8964. ],
  8965. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8966. "support": {
  8967. "issues": "https://github.com/phar-io/manifest/issues",
  8968. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8969. },
  8970. "funding": [
  8971. {
  8972. "url": "https://github.com/theseer",
  8973. "type": "github"
  8974. }
  8975. ],
  8976. "time": "2024-03-03T12:33:53+00:00"
  8977. },
  8978. {
  8979. "name": "phar-io/version",
  8980. "version": "3.2.1",
  8981. "source": {
  8982. "type": "git",
  8983. "url": "https://github.com/phar-io/version.git",
  8984. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8985. },
  8986. "dist": {
  8987. "type": "zip",
  8988. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8989. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8990. "shasum": ""
  8991. },
  8992. "require": {
  8993. "php": "^7.2 || ^8.0"
  8994. },
  8995. "type": "library",
  8996. "autoload": {
  8997. "classmap": [
  8998. "src/"
  8999. ]
  9000. },
  9001. "notification-url": "https://packagist.org/downloads/",
  9002. "license": [
  9003. "BSD-3-Clause"
  9004. ],
  9005. "authors": [
  9006. {
  9007. "name": "Arne Blankerts",
  9008. "email": "arne@blankerts.de",
  9009. "role": "Developer"
  9010. },
  9011. {
  9012. "name": "Sebastian Heuer",
  9013. "email": "sebastian@phpeople.de",
  9014. "role": "Developer"
  9015. },
  9016. {
  9017. "name": "Sebastian Bergmann",
  9018. "email": "sebastian@phpunit.de",
  9019. "role": "Developer"
  9020. }
  9021. ],
  9022. "description": "Library for handling version information and constraints",
  9023. "support": {
  9024. "issues": "https://github.com/phar-io/version/issues",
  9025. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9026. },
  9027. "time": "2022-02-21T01:04:05+00:00"
  9028. },
  9029. {
  9030. "name": "phpstan/phpstan",
  9031. "version": "1.12.9",
  9032. "source": {
  9033. "type": "git",
  9034. "url": "https://github.com/phpstan/phpstan.git",
  9035. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c"
  9036. },
  9037. "dist": {
  9038. "type": "zip",
  9039. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ceb937fb39a92deabc02d20709cf14b2c452502c",
  9040. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c",
  9041. "shasum": ""
  9042. },
  9043. "require": {
  9044. "php": "^7.2|^8.0"
  9045. },
  9046. "conflict": {
  9047. "phpstan/phpstan-shim": "*"
  9048. },
  9049. "bin": [
  9050. "phpstan",
  9051. "phpstan.phar"
  9052. ],
  9053. "type": "library",
  9054. "autoload": {
  9055. "files": [
  9056. "bootstrap.php"
  9057. ]
  9058. },
  9059. "notification-url": "https://packagist.org/downloads/",
  9060. "license": [
  9061. "MIT"
  9062. ],
  9063. "description": "PHPStan - PHP Static Analysis Tool",
  9064. "keywords": [
  9065. "dev",
  9066. "static analysis"
  9067. ],
  9068. "support": {
  9069. "docs": "https://phpstan.org/user-guide/getting-started",
  9070. "forum": "https://github.com/phpstan/phpstan/discussions",
  9071. "issues": "https://github.com/phpstan/phpstan/issues",
  9072. "security": "https://github.com/phpstan/phpstan/security/policy",
  9073. "source": "https://github.com/phpstan/phpstan-src"
  9074. },
  9075. "funding": [
  9076. {
  9077. "url": "https://github.com/ondrejmirtes",
  9078. "type": "github"
  9079. },
  9080. {
  9081. "url": "https://github.com/phpstan",
  9082. "type": "github"
  9083. }
  9084. ],
  9085. "time": "2024-11-10T17:10:04+00:00"
  9086. },
  9087. {
  9088. "name": "phpunit/php-code-coverage",
  9089. "version": "10.1.16",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9093. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9098. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9099. "shasum": ""
  9100. },
  9101. "require": {
  9102. "ext-dom": "*",
  9103. "ext-libxml": "*",
  9104. "ext-xmlwriter": "*",
  9105. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9106. "php": ">=8.1",
  9107. "phpunit/php-file-iterator": "^4.1.0",
  9108. "phpunit/php-text-template": "^3.0.1",
  9109. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9110. "sebastian/complexity": "^3.2.0",
  9111. "sebastian/environment": "^6.1.0",
  9112. "sebastian/lines-of-code": "^2.0.2",
  9113. "sebastian/version": "^4.0.1",
  9114. "theseer/tokenizer": "^1.2.3"
  9115. },
  9116. "require-dev": {
  9117. "phpunit/phpunit": "^10.1"
  9118. },
  9119. "suggest": {
  9120. "ext-pcov": "PHP extension that provides line coverage",
  9121. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9122. },
  9123. "type": "library",
  9124. "extra": {
  9125. "branch-alias": {
  9126. "dev-main": "10.1.x-dev"
  9127. }
  9128. },
  9129. "autoload": {
  9130. "classmap": [
  9131. "src/"
  9132. ]
  9133. },
  9134. "notification-url": "https://packagist.org/downloads/",
  9135. "license": [
  9136. "BSD-3-Clause"
  9137. ],
  9138. "authors": [
  9139. {
  9140. "name": "Sebastian Bergmann",
  9141. "email": "sebastian@phpunit.de",
  9142. "role": "lead"
  9143. }
  9144. ],
  9145. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9146. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9147. "keywords": [
  9148. "coverage",
  9149. "testing",
  9150. "xunit"
  9151. ],
  9152. "support": {
  9153. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9154. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9155. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9156. },
  9157. "funding": [
  9158. {
  9159. "url": "https://github.com/sebastianbergmann",
  9160. "type": "github"
  9161. }
  9162. ],
  9163. "time": "2024-08-22T04:31:57+00:00"
  9164. },
  9165. {
  9166. "name": "phpunit/php-file-iterator",
  9167. "version": "4.1.0",
  9168. "source": {
  9169. "type": "git",
  9170. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9171. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9172. },
  9173. "dist": {
  9174. "type": "zip",
  9175. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9176. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9177. "shasum": ""
  9178. },
  9179. "require": {
  9180. "php": ">=8.1"
  9181. },
  9182. "require-dev": {
  9183. "phpunit/phpunit": "^10.0"
  9184. },
  9185. "type": "library",
  9186. "extra": {
  9187. "branch-alias": {
  9188. "dev-main": "4.0-dev"
  9189. }
  9190. },
  9191. "autoload": {
  9192. "classmap": [
  9193. "src/"
  9194. ]
  9195. },
  9196. "notification-url": "https://packagist.org/downloads/",
  9197. "license": [
  9198. "BSD-3-Clause"
  9199. ],
  9200. "authors": [
  9201. {
  9202. "name": "Sebastian Bergmann",
  9203. "email": "sebastian@phpunit.de",
  9204. "role": "lead"
  9205. }
  9206. ],
  9207. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9208. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9209. "keywords": [
  9210. "filesystem",
  9211. "iterator"
  9212. ],
  9213. "support": {
  9214. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9215. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9216. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9217. },
  9218. "funding": [
  9219. {
  9220. "url": "https://github.com/sebastianbergmann",
  9221. "type": "github"
  9222. }
  9223. ],
  9224. "time": "2023-08-31T06:24:48+00:00"
  9225. },
  9226. {
  9227. "name": "phpunit/php-invoker",
  9228. "version": "4.0.0",
  9229. "source": {
  9230. "type": "git",
  9231. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9232. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9233. },
  9234. "dist": {
  9235. "type": "zip",
  9236. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9237. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9238. "shasum": ""
  9239. },
  9240. "require": {
  9241. "php": ">=8.1"
  9242. },
  9243. "require-dev": {
  9244. "ext-pcntl": "*",
  9245. "phpunit/phpunit": "^10.0"
  9246. },
  9247. "suggest": {
  9248. "ext-pcntl": "*"
  9249. },
  9250. "type": "library",
  9251. "extra": {
  9252. "branch-alias": {
  9253. "dev-main": "4.0-dev"
  9254. }
  9255. },
  9256. "autoload": {
  9257. "classmap": [
  9258. "src/"
  9259. ]
  9260. },
  9261. "notification-url": "https://packagist.org/downloads/",
  9262. "license": [
  9263. "BSD-3-Clause"
  9264. ],
  9265. "authors": [
  9266. {
  9267. "name": "Sebastian Bergmann",
  9268. "email": "sebastian@phpunit.de",
  9269. "role": "lead"
  9270. }
  9271. ],
  9272. "description": "Invoke callables with a timeout",
  9273. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9274. "keywords": [
  9275. "process"
  9276. ],
  9277. "support": {
  9278. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9279. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9280. },
  9281. "funding": [
  9282. {
  9283. "url": "https://github.com/sebastianbergmann",
  9284. "type": "github"
  9285. }
  9286. ],
  9287. "time": "2023-02-03T06:56:09+00:00"
  9288. },
  9289. {
  9290. "name": "phpunit/php-text-template",
  9291. "version": "3.0.1",
  9292. "source": {
  9293. "type": "git",
  9294. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9295. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9296. },
  9297. "dist": {
  9298. "type": "zip",
  9299. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9300. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9301. "shasum": ""
  9302. },
  9303. "require": {
  9304. "php": ">=8.1"
  9305. },
  9306. "require-dev": {
  9307. "phpunit/phpunit": "^10.0"
  9308. },
  9309. "type": "library",
  9310. "extra": {
  9311. "branch-alias": {
  9312. "dev-main": "3.0-dev"
  9313. }
  9314. },
  9315. "autoload": {
  9316. "classmap": [
  9317. "src/"
  9318. ]
  9319. },
  9320. "notification-url": "https://packagist.org/downloads/",
  9321. "license": [
  9322. "BSD-3-Clause"
  9323. ],
  9324. "authors": [
  9325. {
  9326. "name": "Sebastian Bergmann",
  9327. "email": "sebastian@phpunit.de",
  9328. "role": "lead"
  9329. }
  9330. ],
  9331. "description": "Simple template engine.",
  9332. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9333. "keywords": [
  9334. "template"
  9335. ],
  9336. "support": {
  9337. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9338. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9339. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9340. },
  9341. "funding": [
  9342. {
  9343. "url": "https://github.com/sebastianbergmann",
  9344. "type": "github"
  9345. }
  9346. ],
  9347. "time": "2023-08-31T14:07:24+00:00"
  9348. },
  9349. {
  9350. "name": "phpunit/php-timer",
  9351. "version": "6.0.0",
  9352. "source": {
  9353. "type": "git",
  9354. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9355. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9356. },
  9357. "dist": {
  9358. "type": "zip",
  9359. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9360. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9361. "shasum": ""
  9362. },
  9363. "require": {
  9364. "php": ">=8.1"
  9365. },
  9366. "require-dev": {
  9367. "phpunit/phpunit": "^10.0"
  9368. },
  9369. "type": "library",
  9370. "extra": {
  9371. "branch-alias": {
  9372. "dev-main": "6.0-dev"
  9373. }
  9374. },
  9375. "autoload": {
  9376. "classmap": [
  9377. "src/"
  9378. ]
  9379. },
  9380. "notification-url": "https://packagist.org/downloads/",
  9381. "license": [
  9382. "BSD-3-Clause"
  9383. ],
  9384. "authors": [
  9385. {
  9386. "name": "Sebastian Bergmann",
  9387. "email": "sebastian@phpunit.de",
  9388. "role": "lead"
  9389. }
  9390. ],
  9391. "description": "Utility class for timing",
  9392. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9393. "keywords": [
  9394. "timer"
  9395. ],
  9396. "support": {
  9397. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9398. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9399. },
  9400. "funding": [
  9401. {
  9402. "url": "https://github.com/sebastianbergmann",
  9403. "type": "github"
  9404. }
  9405. ],
  9406. "time": "2023-02-03T06:57:52+00:00"
  9407. },
  9408. {
  9409. "name": "phpunit/phpunit",
  9410. "version": "10.5.38",
  9411. "source": {
  9412. "type": "git",
  9413. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9414. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  9415. },
  9416. "dist": {
  9417. "type": "zip",
  9418. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9419. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9420. "shasum": ""
  9421. },
  9422. "require": {
  9423. "ext-dom": "*",
  9424. "ext-json": "*",
  9425. "ext-libxml": "*",
  9426. "ext-mbstring": "*",
  9427. "ext-xml": "*",
  9428. "ext-xmlwriter": "*",
  9429. "myclabs/deep-copy": "^1.12.0",
  9430. "phar-io/manifest": "^2.0.4",
  9431. "phar-io/version": "^3.2.1",
  9432. "php": ">=8.1",
  9433. "phpunit/php-code-coverage": "^10.1.16",
  9434. "phpunit/php-file-iterator": "^4.1.0",
  9435. "phpunit/php-invoker": "^4.0.0",
  9436. "phpunit/php-text-template": "^3.0.1",
  9437. "phpunit/php-timer": "^6.0.0",
  9438. "sebastian/cli-parser": "^2.0.1",
  9439. "sebastian/code-unit": "^2.0.0",
  9440. "sebastian/comparator": "^5.0.3",
  9441. "sebastian/diff": "^5.1.1",
  9442. "sebastian/environment": "^6.1.0",
  9443. "sebastian/exporter": "^5.1.2",
  9444. "sebastian/global-state": "^6.0.2",
  9445. "sebastian/object-enumerator": "^5.0.0",
  9446. "sebastian/recursion-context": "^5.0.0",
  9447. "sebastian/type": "^4.0.0",
  9448. "sebastian/version": "^4.0.1"
  9449. },
  9450. "suggest": {
  9451. "ext-soap": "To be able to generate mocks based on WSDL files"
  9452. },
  9453. "bin": [
  9454. "phpunit"
  9455. ],
  9456. "type": "library",
  9457. "extra": {
  9458. "branch-alias": {
  9459. "dev-main": "10.5-dev"
  9460. }
  9461. },
  9462. "autoload": {
  9463. "files": [
  9464. "src/Framework/Assert/Functions.php"
  9465. ],
  9466. "classmap": [
  9467. "src/"
  9468. ]
  9469. },
  9470. "notification-url": "https://packagist.org/downloads/",
  9471. "license": [
  9472. "BSD-3-Clause"
  9473. ],
  9474. "authors": [
  9475. {
  9476. "name": "Sebastian Bergmann",
  9477. "email": "sebastian@phpunit.de",
  9478. "role": "lead"
  9479. }
  9480. ],
  9481. "description": "The PHP Unit Testing framework.",
  9482. "homepage": "https://phpunit.de/",
  9483. "keywords": [
  9484. "phpunit",
  9485. "testing",
  9486. "xunit"
  9487. ],
  9488. "support": {
  9489. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9490. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9491. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9492. },
  9493. "funding": [
  9494. {
  9495. "url": "https://phpunit.de/sponsors.html",
  9496. "type": "custom"
  9497. },
  9498. {
  9499. "url": "https://github.com/sebastianbergmann",
  9500. "type": "github"
  9501. },
  9502. {
  9503. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9504. "type": "tidelift"
  9505. }
  9506. ],
  9507. "time": "2024-10-28T13:06:21+00:00"
  9508. },
  9509. {
  9510. "name": "react/cache",
  9511. "version": "v1.2.0",
  9512. "source": {
  9513. "type": "git",
  9514. "url": "https://github.com/reactphp/cache.git",
  9515. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9516. },
  9517. "dist": {
  9518. "type": "zip",
  9519. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9520. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9521. "shasum": ""
  9522. },
  9523. "require": {
  9524. "php": ">=5.3.0",
  9525. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9526. },
  9527. "require-dev": {
  9528. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9529. },
  9530. "type": "library",
  9531. "autoload": {
  9532. "psr-4": {
  9533. "React\\Cache\\": "src/"
  9534. }
  9535. },
  9536. "notification-url": "https://packagist.org/downloads/",
  9537. "license": [
  9538. "MIT"
  9539. ],
  9540. "authors": [
  9541. {
  9542. "name": "Christian Lück",
  9543. "email": "christian@clue.engineering",
  9544. "homepage": "https://clue.engineering/"
  9545. },
  9546. {
  9547. "name": "Cees-Jan Kiewiet",
  9548. "email": "reactphp@ceesjankiewiet.nl",
  9549. "homepage": "https://wyrihaximus.net/"
  9550. },
  9551. {
  9552. "name": "Jan Sorgalla",
  9553. "email": "jsorgalla@gmail.com",
  9554. "homepage": "https://sorgalla.com/"
  9555. },
  9556. {
  9557. "name": "Chris Boden",
  9558. "email": "cboden@gmail.com",
  9559. "homepage": "https://cboden.dev/"
  9560. }
  9561. ],
  9562. "description": "Async, Promise-based cache interface for ReactPHP",
  9563. "keywords": [
  9564. "cache",
  9565. "caching",
  9566. "promise",
  9567. "reactphp"
  9568. ],
  9569. "support": {
  9570. "issues": "https://github.com/reactphp/cache/issues",
  9571. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9572. },
  9573. "funding": [
  9574. {
  9575. "url": "https://opencollective.com/reactphp",
  9576. "type": "open_collective"
  9577. }
  9578. ],
  9579. "time": "2022-11-30T15:59:55+00:00"
  9580. },
  9581. {
  9582. "name": "react/child-process",
  9583. "version": "v0.6.5",
  9584. "source": {
  9585. "type": "git",
  9586. "url": "https://github.com/reactphp/child-process.git",
  9587. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9588. },
  9589. "dist": {
  9590. "type": "zip",
  9591. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9592. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9593. "shasum": ""
  9594. },
  9595. "require": {
  9596. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9597. "php": ">=5.3.0",
  9598. "react/event-loop": "^1.2",
  9599. "react/stream": "^1.2"
  9600. },
  9601. "require-dev": {
  9602. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9603. "react/socket": "^1.8",
  9604. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9605. },
  9606. "type": "library",
  9607. "autoload": {
  9608. "psr-4": {
  9609. "React\\ChildProcess\\": "src"
  9610. }
  9611. },
  9612. "notification-url": "https://packagist.org/downloads/",
  9613. "license": [
  9614. "MIT"
  9615. ],
  9616. "authors": [
  9617. {
  9618. "name": "Christian Lück",
  9619. "email": "christian@clue.engineering",
  9620. "homepage": "https://clue.engineering/"
  9621. },
  9622. {
  9623. "name": "Cees-Jan Kiewiet",
  9624. "email": "reactphp@ceesjankiewiet.nl",
  9625. "homepage": "https://wyrihaximus.net/"
  9626. },
  9627. {
  9628. "name": "Jan Sorgalla",
  9629. "email": "jsorgalla@gmail.com",
  9630. "homepage": "https://sorgalla.com/"
  9631. },
  9632. {
  9633. "name": "Chris Boden",
  9634. "email": "cboden@gmail.com",
  9635. "homepage": "https://cboden.dev/"
  9636. }
  9637. ],
  9638. "description": "Event-driven library for executing child processes with ReactPHP.",
  9639. "keywords": [
  9640. "event-driven",
  9641. "process",
  9642. "reactphp"
  9643. ],
  9644. "support": {
  9645. "issues": "https://github.com/reactphp/child-process/issues",
  9646. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9647. },
  9648. "funding": [
  9649. {
  9650. "url": "https://github.com/WyriHaximus",
  9651. "type": "github"
  9652. },
  9653. {
  9654. "url": "https://github.com/clue",
  9655. "type": "github"
  9656. }
  9657. ],
  9658. "time": "2022-09-16T13:41:56+00:00"
  9659. },
  9660. {
  9661. "name": "react/dns",
  9662. "version": "v1.13.0",
  9663. "source": {
  9664. "type": "git",
  9665. "url": "https://github.com/reactphp/dns.git",
  9666. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9667. },
  9668. "dist": {
  9669. "type": "zip",
  9670. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9671. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9672. "shasum": ""
  9673. },
  9674. "require": {
  9675. "php": ">=5.3.0",
  9676. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9677. "react/event-loop": "^1.2",
  9678. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9679. },
  9680. "require-dev": {
  9681. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9682. "react/async": "^4.3 || ^3 || ^2",
  9683. "react/promise-timer": "^1.11"
  9684. },
  9685. "type": "library",
  9686. "autoload": {
  9687. "psr-4": {
  9688. "React\\Dns\\": "src/"
  9689. }
  9690. },
  9691. "notification-url": "https://packagist.org/downloads/",
  9692. "license": [
  9693. "MIT"
  9694. ],
  9695. "authors": [
  9696. {
  9697. "name": "Christian Lück",
  9698. "email": "christian@clue.engineering",
  9699. "homepage": "https://clue.engineering/"
  9700. },
  9701. {
  9702. "name": "Cees-Jan Kiewiet",
  9703. "email": "reactphp@ceesjankiewiet.nl",
  9704. "homepage": "https://wyrihaximus.net/"
  9705. },
  9706. {
  9707. "name": "Jan Sorgalla",
  9708. "email": "jsorgalla@gmail.com",
  9709. "homepage": "https://sorgalla.com/"
  9710. },
  9711. {
  9712. "name": "Chris Boden",
  9713. "email": "cboden@gmail.com",
  9714. "homepage": "https://cboden.dev/"
  9715. }
  9716. ],
  9717. "description": "Async DNS resolver for ReactPHP",
  9718. "keywords": [
  9719. "async",
  9720. "dns",
  9721. "dns-resolver",
  9722. "reactphp"
  9723. ],
  9724. "support": {
  9725. "issues": "https://github.com/reactphp/dns/issues",
  9726. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9727. },
  9728. "funding": [
  9729. {
  9730. "url": "https://opencollective.com/reactphp",
  9731. "type": "open_collective"
  9732. }
  9733. ],
  9734. "time": "2024-06-13T14:18:03+00:00"
  9735. },
  9736. {
  9737. "name": "react/event-loop",
  9738. "version": "v1.5.0",
  9739. "source": {
  9740. "type": "git",
  9741. "url": "https://github.com/reactphp/event-loop.git",
  9742. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9743. },
  9744. "dist": {
  9745. "type": "zip",
  9746. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9747. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9748. "shasum": ""
  9749. },
  9750. "require": {
  9751. "php": ">=5.3.0"
  9752. },
  9753. "require-dev": {
  9754. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9755. },
  9756. "suggest": {
  9757. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9758. },
  9759. "type": "library",
  9760. "autoload": {
  9761. "psr-4": {
  9762. "React\\EventLoop\\": "src/"
  9763. }
  9764. },
  9765. "notification-url": "https://packagist.org/downloads/",
  9766. "license": [
  9767. "MIT"
  9768. ],
  9769. "authors": [
  9770. {
  9771. "name": "Christian Lück",
  9772. "email": "christian@clue.engineering",
  9773. "homepage": "https://clue.engineering/"
  9774. },
  9775. {
  9776. "name": "Cees-Jan Kiewiet",
  9777. "email": "reactphp@ceesjankiewiet.nl",
  9778. "homepage": "https://wyrihaximus.net/"
  9779. },
  9780. {
  9781. "name": "Jan Sorgalla",
  9782. "email": "jsorgalla@gmail.com",
  9783. "homepage": "https://sorgalla.com/"
  9784. },
  9785. {
  9786. "name": "Chris Boden",
  9787. "email": "cboden@gmail.com",
  9788. "homepage": "https://cboden.dev/"
  9789. }
  9790. ],
  9791. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9792. "keywords": [
  9793. "asynchronous",
  9794. "event-loop"
  9795. ],
  9796. "support": {
  9797. "issues": "https://github.com/reactphp/event-loop/issues",
  9798. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9799. },
  9800. "funding": [
  9801. {
  9802. "url": "https://opencollective.com/reactphp",
  9803. "type": "open_collective"
  9804. }
  9805. ],
  9806. "time": "2023-11-13T13:48:05+00:00"
  9807. },
  9808. {
  9809. "name": "react/promise",
  9810. "version": "v3.2.0",
  9811. "source": {
  9812. "type": "git",
  9813. "url": "https://github.com/reactphp/promise.git",
  9814. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9815. },
  9816. "dist": {
  9817. "type": "zip",
  9818. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9819. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9820. "shasum": ""
  9821. },
  9822. "require": {
  9823. "php": ">=7.1.0"
  9824. },
  9825. "require-dev": {
  9826. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9827. "phpunit/phpunit": "^9.6 || ^7.5"
  9828. },
  9829. "type": "library",
  9830. "autoload": {
  9831. "files": [
  9832. "src/functions_include.php"
  9833. ],
  9834. "psr-4": {
  9835. "React\\Promise\\": "src/"
  9836. }
  9837. },
  9838. "notification-url": "https://packagist.org/downloads/",
  9839. "license": [
  9840. "MIT"
  9841. ],
  9842. "authors": [
  9843. {
  9844. "name": "Jan Sorgalla",
  9845. "email": "jsorgalla@gmail.com",
  9846. "homepage": "https://sorgalla.com/"
  9847. },
  9848. {
  9849. "name": "Christian Lück",
  9850. "email": "christian@clue.engineering",
  9851. "homepage": "https://clue.engineering/"
  9852. },
  9853. {
  9854. "name": "Cees-Jan Kiewiet",
  9855. "email": "reactphp@ceesjankiewiet.nl",
  9856. "homepage": "https://wyrihaximus.net/"
  9857. },
  9858. {
  9859. "name": "Chris Boden",
  9860. "email": "cboden@gmail.com",
  9861. "homepage": "https://cboden.dev/"
  9862. }
  9863. ],
  9864. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9865. "keywords": [
  9866. "promise",
  9867. "promises"
  9868. ],
  9869. "support": {
  9870. "issues": "https://github.com/reactphp/promise/issues",
  9871. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9872. },
  9873. "funding": [
  9874. {
  9875. "url": "https://opencollective.com/reactphp",
  9876. "type": "open_collective"
  9877. }
  9878. ],
  9879. "time": "2024-05-24T10:39:05+00:00"
  9880. },
  9881. {
  9882. "name": "react/socket",
  9883. "version": "v1.16.0",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/reactphp/socket.git",
  9887. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9892. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9893. "shasum": ""
  9894. },
  9895. "require": {
  9896. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9897. "php": ">=5.3.0",
  9898. "react/dns": "^1.13",
  9899. "react/event-loop": "^1.2",
  9900. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9901. "react/stream": "^1.4"
  9902. },
  9903. "require-dev": {
  9904. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9905. "react/async": "^4.3 || ^3.3 || ^2",
  9906. "react/promise-stream": "^1.4",
  9907. "react/promise-timer": "^1.11"
  9908. },
  9909. "type": "library",
  9910. "autoload": {
  9911. "psr-4": {
  9912. "React\\Socket\\": "src/"
  9913. }
  9914. },
  9915. "notification-url": "https://packagist.org/downloads/",
  9916. "license": [
  9917. "MIT"
  9918. ],
  9919. "authors": [
  9920. {
  9921. "name": "Christian Lück",
  9922. "email": "christian@clue.engineering",
  9923. "homepage": "https://clue.engineering/"
  9924. },
  9925. {
  9926. "name": "Cees-Jan Kiewiet",
  9927. "email": "reactphp@ceesjankiewiet.nl",
  9928. "homepage": "https://wyrihaximus.net/"
  9929. },
  9930. {
  9931. "name": "Jan Sorgalla",
  9932. "email": "jsorgalla@gmail.com",
  9933. "homepage": "https://sorgalla.com/"
  9934. },
  9935. {
  9936. "name": "Chris Boden",
  9937. "email": "cboden@gmail.com",
  9938. "homepage": "https://cboden.dev/"
  9939. }
  9940. ],
  9941. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9942. "keywords": [
  9943. "Connection",
  9944. "Socket",
  9945. "async",
  9946. "reactphp",
  9947. "stream"
  9948. ],
  9949. "support": {
  9950. "issues": "https://github.com/reactphp/socket/issues",
  9951. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9952. },
  9953. "funding": [
  9954. {
  9955. "url": "https://opencollective.com/reactphp",
  9956. "type": "open_collective"
  9957. }
  9958. ],
  9959. "time": "2024-07-26T10:38:09+00:00"
  9960. },
  9961. {
  9962. "name": "react/stream",
  9963. "version": "v1.4.0",
  9964. "source": {
  9965. "type": "git",
  9966. "url": "https://github.com/reactphp/stream.git",
  9967. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9968. },
  9969. "dist": {
  9970. "type": "zip",
  9971. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9972. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9973. "shasum": ""
  9974. },
  9975. "require": {
  9976. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9977. "php": ">=5.3.8",
  9978. "react/event-loop": "^1.2"
  9979. },
  9980. "require-dev": {
  9981. "clue/stream-filter": "~1.2",
  9982. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9983. },
  9984. "type": "library",
  9985. "autoload": {
  9986. "psr-4": {
  9987. "React\\Stream\\": "src/"
  9988. }
  9989. },
  9990. "notification-url": "https://packagist.org/downloads/",
  9991. "license": [
  9992. "MIT"
  9993. ],
  9994. "authors": [
  9995. {
  9996. "name": "Christian Lück",
  9997. "email": "christian@clue.engineering",
  9998. "homepage": "https://clue.engineering/"
  9999. },
  10000. {
  10001. "name": "Cees-Jan Kiewiet",
  10002. "email": "reactphp@ceesjankiewiet.nl",
  10003. "homepage": "https://wyrihaximus.net/"
  10004. },
  10005. {
  10006. "name": "Jan Sorgalla",
  10007. "email": "jsorgalla@gmail.com",
  10008. "homepage": "https://sorgalla.com/"
  10009. },
  10010. {
  10011. "name": "Chris Boden",
  10012. "email": "cboden@gmail.com",
  10013. "homepage": "https://cboden.dev/"
  10014. }
  10015. ],
  10016. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10017. "keywords": [
  10018. "event-driven",
  10019. "io",
  10020. "non-blocking",
  10021. "pipe",
  10022. "reactphp",
  10023. "readable",
  10024. "stream",
  10025. "writable"
  10026. ],
  10027. "support": {
  10028. "issues": "https://github.com/reactphp/stream/issues",
  10029. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10030. },
  10031. "funding": [
  10032. {
  10033. "url": "https://opencollective.com/reactphp",
  10034. "type": "open_collective"
  10035. }
  10036. ],
  10037. "time": "2024-06-11T12:45:25+00:00"
  10038. },
  10039. {
  10040. "name": "sebastian/cli-parser",
  10041. "version": "2.0.1",
  10042. "source": {
  10043. "type": "git",
  10044. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10045. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10046. },
  10047. "dist": {
  10048. "type": "zip",
  10049. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10050. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10051. "shasum": ""
  10052. },
  10053. "require": {
  10054. "php": ">=8.1"
  10055. },
  10056. "require-dev": {
  10057. "phpunit/phpunit": "^10.0"
  10058. },
  10059. "type": "library",
  10060. "extra": {
  10061. "branch-alias": {
  10062. "dev-main": "2.0-dev"
  10063. }
  10064. },
  10065. "autoload": {
  10066. "classmap": [
  10067. "src/"
  10068. ]
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "BSD-3-Clause"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Sebastian Bergmann",
  10077. "email": "sebastian@phpunit.de",
  10078. "role": "lead"
  10079. }
  10080. ],
  10081. "description": "Library for parsing CLI options",
  10082. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10083. "support": {
  10084. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10085. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10086. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10087. },
  10088. "funding": [
  10089. {
  10090. "url": "https://github.com/sebastianbergmann",
  10091. "type": "github"
  10092. }
  10093. ],
  10094. "time": "2024-03-02T07:12:49+00:00"
  10095. },
  10096. {
  10097. "name": "sebastian/code-unit",
  10098. "version": "2.0.0",
  10099. "source": {
  10100. "type": "git",
  10101. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10102. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10103. },
  10104. "dist": {
  10105. "type": "zip",
  10106. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10107. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10108. "shasum": ""
  10109. },
  10110. "require": {
  10111. "php": ">=8.1"
  10112. },
  10113. "require-dev": {
  10114. "phpunit/phpunit": "^10.0"
  10115. },
  10116. "type": "library",
  10117. "extra": {
  10118. "branch-alias": {
  10119. "dev-main": "2.0-dev"
  10120. }
  10121. },
  10122. "autoload": {
  10123. "classmap": [
  10124. "src/"
  10125. ]
  10126. },
  10127. "notification-url": "https://packagist.org/downloads/",
  10128. "license": [
  10129. "BSD-3-Clause"
  10130. ],
  10131. "authors": [
  10132. {
  10133. "name": "Sebastian Bergmann",
  10134. "email": "sebastian@phpunit.de",
  10135. "role": "lead"
  10136. }
  10137. ],
  10138. "description": "Collection of value objects that represent the PHP code units",
  10139. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10140. "support": {
  10141. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10142. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10143. },
  10144. "funding": [
  10145. {
  10146. "url": "https://github.com/sebastianbergmann",
  10147. "type": "github"
  10148. }
  10149. ],
  10150. "time": "2023-02-03T06:58:43+00:00"
  10151. },
  10152. {
  10153. "name": "sebastian/code-unit-reverse-lookup",
  10154. "version": "3.0.0",
  10155. "source": {
  10156. "type": "git",
  10157. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10158. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10159. },
  10160. "dist": {
  10161. "type": "zip",
  10162. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10163. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10164. "shasum": ""
  10165. },
  10166. "require": {
  10167. "php": ">=8.1"
  10168. },
  10169. "require-dev": {
  10170. "phpunit/phpunit": "^10.0"
  10171. },
  10172. "type": "library",
  10173. "extra": {
  10174. "branch-alias": {
  10175. "dev-main": "3.0-dev"
  10176. }
  10177. },
  10178. "autoload": {
  10179. "classmap": [
  10180. "src/"
  10181. ]
  10182. },
  10183. "notification-url": "https://packagist.org/downloads/",
  10184. "license": [
  10185. "BSD-3-Clause"
  10186. ],
  10187. "authors": [
  10188. {
  10189. "name": "Sebastian Bergmann",
  10190. "email": "sebastian@phpunit.de"
  10191. }
  10192. ],
  10193. "description": "Looks up which function or method a line of code belongs to",
  10194. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10195. "support": {
  10196. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10197. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10198. },
  10199. "funding": [
  10200. {
  10201. "url": "https://github.com/sebastianbergmann",
  10202. "type": "github"
  10203. }
  10204. ],
  10205. "time": "2023-02-03T06:59:15+00:00"
  10206. },
  10207. {
  10208. "name": "sebastian/comparator",
  10209. "version": "5.0.3",
  10210. "source": {
  10211. "type": "git",
  10212. "url": "https://github.com/sebastianbergmann/comparator.git",
  10213. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10214. },
  10215. "dist": {
  10216. "type": "zip",
  10217. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10218. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10219. "shasum": ""
  10220. },
  10221. "require": {
  10222. "ext-dom": "*",
  10223. "ext-mbstring": "*",
  10224. "php": ">=8.1",
  10225. "sebastian/diff": "^5.0",
  10226. "sebastian/exporter": "^5.0"
  10227. },
  10228. "require-dev": {
  10229. "phpunit/phpunit": "^10.5"
  10230. },
  10231. "type": "library",
  10232. "extra": {
  10233. "branch-alias": {
  10234. "dev-main": "5.0-dev"
  10235. }
  10236. },
  10237. "autoload": {
  10238. "classmap": [
  10239. "src/"
  10240. ]
  10241. },
  10242. "notification-url": "https://packagist.org/downloads/",
  10243. "license": [
  10244. "BSD-3-Clause"
  10245. ],
  10246. "authors": [
  10247. {
  10248. "name": "Sebastian Bergmann",
  10249. "email": "sebastian@phpunit.de"
  10250. },
  10251. {
  10252. "name": "Jeff Welch",
  10253. "email": "whatthejeff@gmail.com"
  10254. },
  10255. {
  10256. "name": "Volker Dusch",
  10257. "email": "github@wallbash.com"
  10258. },
  10259. {
  10260. "name": "Bernhard Schussek",
  10261. "email": "bschussek@2bepublished.at"
  10262. }
  10263. ],
  10264. "description": "Provides the functionality to compare PHP values for equality",
  10265. "homepage": "https://github.com/sebastianbergmann/comparator",
  10266. "keywords": [
  10267. "comparator",
  10268. "compare",
  10269. "equality"
  10270. ],
  10271. "support": {
  10272. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10273. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10274. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10275. },
  10276. "funding": [
  10277. {
  10278. "url": "https://github.com/sebastianbergmann",
  10279. "type": "github"
  10280. }
  10281. ],
  10282. "time": "2024-10-18T14:56:07+00:00"
  10283. },
  10284. {
  10285. "name": "sebastian/complexity",
  10286. "version": "3.2.0",
  10287. "source": {
  10288. "type": "git",
  10289. "url": "https://github.com/sebastianbergmann/complexity.git",
  10290. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10291. },
  10292. "dist": {
  10293. "type": "zip",
  10294. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10295. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10296. "shasum": ""
  10297. },
  10298. "require": {
  10299. "nikic/php-parser": "^4.18 || ^5.0",
  10300. "php": ">=8.1"
  10301. },
  10302. "require-dev": {
  10303. "phpunit/phpunit": "^10.0"
  10304. },
  10305. "type": "library",
  10306. "extra": {
  10307. "branch-alias": {
  10308. "dev-main": "3.2-dev"
  10309. }
  10310. },
  10311. "autoload": {
  10312. "classmap": [
  10313. "src/"
  10314. ]
  10315. },
  10316. "notification-url": "https://packagist.org/downloads/",
  10317. "license": [
  10318. "BSD-3-Clause"
  10319. ],
  10320. "authors": [
  10321. {
  10322. "name": "Sebastian Bergmann",
  10323. "email": "sebastian@phpunit.de",
  10324. "role": "lead"
  10325. }
  10326. ],
  10327. "description": "Library for calculating the complexity of PHP code units",
  10328. "homepage": "https://github.com/sebastianbergmann/complexity",
  10329. "support": {
  10330. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10331. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10332. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10333. },
  10334. "funding": [
  10335. {
  10336. "url": "https://github.com/sebastianbergmann",
  10337. "type": "github"
  10338. }
  10339. ],
  10340. "time": "2023-12-21T08:37:17+00:00"
  10341. },
  10342. {
  10343. "name": "sebastian/diff",
  10344. "version": "5.1.1",
  10345. "source": {
  10346. "type": "git",
  10347. "url": "https://github.com/sebastianbergmann/diff.git",
  10348. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10349. },
  10350. "dist": {
  10351. "type": "zip",
  10352. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10353. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10354. "shasum": ""
  10355. },
  10356. "require": {
  10357. "php": ">=8.1"
  10358. },
  10359. "require-dev": {
  10360. "phpunit/phpunit": "^10.0",
  10361. "symfony/process": "^6.4"
  10362. },
  10363. "type": "library",
  10364. "extra": {
  10365. "branch-alias": {
  10366. "dev-main": "5.1-dev"
  10367. }
  10368. },
  10369. "autoload": {
  10370. "classmap": [
  10371. "src/"
  10372. ]
  10373. },
  10374. "notification-url": "https://packagist.org/downloads/",
  10375. "license": [
  10376. "BSD-3-Clause"
  10377. ],
  10378. "authors": [
  10379. {
  10380. "name": "Sebastian Bergmann",
  10381. "email": "sebastian@phpunit.de"
  10382. },
  10383. {
  10384. "name": "Kore Nordmann",
  10385. "email": "mail@kore-nordmann.de"
  10386. }
  10387. ],
  10388. "description": "Diff implementation",
  10389. "homepage": "https://github.com/sebastianbergmann/diff",
  10390. "keywords": [
  10391. "diff",
  10392. "udiff",
  10393. "unidiff",
  10394. "unified diff"
  10395. ],
  10396. "support": {
  10397. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10398. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10399. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10400. },
  10401. "funding": [
  10402. {
  10403. "url": "https://github.com/sebastianbergmann",
  10404. "type": "github"
  10405. }
  10406. ],
  10407. "time": "2024-03-02T07:15:17+00:00"
  10408. },
  10409. {
  10410. "name": "sebastian/environment",
  10411. "version": "6.1.0",
  10412. "source": {
  10413. "type": "git",
  10414. "url": "https://github.com/sebastianbergmann/environment.git",
  10415. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10416. },
  10417. "dist": {
  10418. "type": "zip",
  10419. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10420. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10421. "shasum": ""
  10422. },
  10423. "require": {
  10424. "php": ">=8.1"
  10425. },
  10426. "require-dev": {
  10427. "phpunit/phpunit": "^10.0"
  10428. },
  10429. "suggest": {
  10430. "ext-posix": "*"
  10431. },
  10432. "type": "library",
  10433. "extra": {
  10434. "branch-alias": {
  10435. "dev-main": "6.1-dev"
  10436. }
  10437. },
  10438. "autoload": {
  10439. "classmap": [
  10440. "src/"
  10441. ]
  10442. },
  10443. "notification-url": "https://packagist.org/downloads/",
  10444. "license": [
  10445. "BSD-3-Clause"
  10446. ],
  10447. "authors": [
  10448. {
  10449. "name": "Sebastian Bergmann",
  10450. "email": "sebastian@phpunit.de"
  10451. }
  10452. ],
  10453. "description": "Provides functionality to handle HHVM/PHP environments",
  10454. "homepage": "https://github.com/sebastianbergmann/environment",
  10455. "keywords": [
  10456. "Xdebug",
  10457. "environment",
  10458. "hhvm"
  10459. ],
  10460. "support": {
  10461. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10462. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10463. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10464. },
  10465. "funding": [
  10466. {
  10467. "url": "https://github.com/sebastianbergmann",
  10468. "type": "github"
  10469. }
  10470. ],
  10471. "time": "2024-03-23T08:47:14+00:00"
  10472. },
  10473. {
  10474. "name": "sebastian/exporter",
  10475. "version": "5.1.2",
  10476. "source": {
  10477. "type": "git",
  10478. "url": "https://github.com/sebastianbergmann/exporter.git",
  10479. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10480. },
  10481. "dist": {
  10482. "type": "zip",
  10483. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10484. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10485. "shasum": ""
  10486. },
  10487. "require": {
  10488. "ext-mbstring": "*",
  10489. "php": ">=8.1",
  10490. "sebastian/recursion-context": "^5.0"
  10491. },
  10492. "require-dev": {
  10493. "phpunit/phpunit": "^10.0"
  10494. },
  10495. "type": "library",
  10496. "extra": {
  10497. "branch-alias": {
  10498. "dev-main": "5.1-dev"
  10499. }
  10500. },
  10501. "autoload": {
  10502. "classmap": [
  10503. "src/"
  10504. ]
  10505. },
  10506. "notification-url": "https://packagist.org/downloads/",
  10507. "license": [
  10508. "BSD-3-Clause"
  10509. ],
  10510. "authors": [
  10511. {
  10512. "name": "Sebastian Bergmann",
  10513. "email": "sebastian@phpunit.de"
  10514. },
  10515. {
  10516. "name": "Jeff Welch",
  10517. "email": "whatthejeff@gmail.com"
  10518. },
  10519. {
  10520. "name": "Volker Dusch",
  10521. "email": "github@wallbash.com"
  10522. },
  10523. {
  10524. "name": "Adam Harvey",
  10525. "email": "aharvey@php.net"
  10526. },
  10527. {
  10528. "name": "Bernhard Schussek",
  10529. "email": "bschussek@gmail.com"
  10530. }
  10531. ],
  10532. "description": "Provides the functionality to export PHP variables for visualization",
  10533. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10534. "keywords": [
  10535. "export",
  10536. "exporter"
  10537. ],
  10538. "support": {
  10539. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10540. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10541. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10542. },
  10543. "funding": [
  10544. {
  10545. "url": "https://github.com/sebastianbergmann",
  10546. "type": "github"
  10547. }
  10548. ],
  10549. "time": "2024-03-02T07:17:12+00:00"
  10550. },
  10551. {
  10552. "name": "sebastian/global-state",
  10553. "version": "6.0.2",
  10554. "source": {
  10555. "type": "git",
  10556. "url": "https://github.com/sebastianbergmann/global-state.git",
  10557. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10558. },
  10559. "dist": {
  10560. "type": "zip",
  10561. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10562. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10563. "shasum": ""
  10564. },
  10565. "require": {
  10566. "php": ">=8.1",
  10567. "sebastian/object-reflector": "^3.0",
  10568. "sebastian/recursion-context": "^5.0"
  10569. },
  10570. "require-dev": {
  10571. "ext-dom": "*",
  10572. "phpunit/phpunit": "^10.0"
  10573. },
  10574. "type": "library",
  10575. "extra": {
  10576. "branch-alias": {
  10577. "dev-main": "6.0-dev"
  10578. }
  10579. },
  10580. "autoload": {
  10581. "classmap": [
  10582. "src/"
  10583. ]
  10584. },
  10585. "notification-url": "https://packagist.org/downloads/",
  10586. "license": [
  10587. "BSD-3-Clause"
  10588. ],
  10589. "authors": [
  10590. {
  10591. "name": "Sebastian Bergmann",
  10592. "email": "sebastian@phpunit.de"
  10593. }
  10594. ],
  10595. "description": "Snapshotting of global state",
  10596. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10597. "keywords": [
  10598. "global state"
  10599. ],
  10600. "support": {
  10601. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10602. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10603. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10604. },
  10605. "funding": [
  10606. {
  10607. "url": "https://github.com/sebastianbergmann",
  10608. "type": "github"
  10609. }
  10610. ],
  10611. "time": "2024-03-02T07:19:19+00:00"
  10612. },
  10613. {
  10614. "name": "sebastian/lines-of-code",
  10615. "version": "2.0.2",
  10616. "source": {
  10617. "type": "git",
  10618. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10619. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10620. },
  10621. "dist": {
  10622. "type": "zip",
  10623. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10624. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10625. "shasum": ""
  10626. },
  10627. "require": {
  10628. "nikic/php-parser": "^4.18 || ^5.0",
  10629. "php": ">=8.1"
  10630. },
  10631. "require-dev": {
  10632. "phpunit/phpunit": "^10.0"
  10633. },
  10634. "type": "library",
  10635. "extra": {
  10636. "branch-alias": {
  10637. "dev-main": "2.0-dev"
  10638. }
  10639. },
  10640. "autoload": {
  10641. "classmap": [
  10642. "src/"
  10643. ]
  10644. },
  10645. "notification-url": "https://packagist.org/downloads/",
  10646. "license": [
  10647. "BSD-3-Clause"
  10648. ],
  10649. "authors": [
  10650. {
  10651. "name": "Sebastian Bergmann",
  10652. "email": "sebastian@phpunit.de",
  10653. "role": "lead"
  10654. }
  10655. ],
  10656. "description": "Library for counting the lines of code in PHP source code",
  10657. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10658. "support": {
  10659. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10660. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10661. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10662. },
  10663. "funding": [
  10664. {
  10665. "url": "https://github.com/sebastianbergmann",
  10666. "type": "github"
  10667. }
  10668. ],
  10669. "time": "2023-12-21T08:38:20+00:00"
  10670. },
  10671. {
  10672. "name": "sebastian/object-enumerator",
  10673. "version": "5.0.0",
  10674. "source": {
  10675. "type": "git",
  10676. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10677. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10678. },
  10679. "dist": {
  10680. "type": "zip",
  10681. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10682. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10683. "shasum": ""
  10684. },
  10685. "require": {
  10686. "php": ">=8.1",
  10687. "sebastian/object-reflector": "^3.0",
  10688. "sebastian/recursion-context": "^5.0"
  10689. },
  10690. "require-dev": {
  10691. "phpunit/phpunit": "^10.0"
  10692. },
  10693. "type": "library",
  10694. "extra": {
  10695. "branch-alias": {
  10696. "dev-main": "5.0-dev"
  10697. }
  10698. },
  10699. "autoload": {
  10700. "classmap": [
  10701. "src/"
  10702. ]
  10703. },
  10704. "notification-url": "https://packagist.org/downloads/",
  10705. "license": [
  10706. "BSD-3-Clause"
  10707. ],
  10708. "authors": [
  10709. {
  10710. "name": "Sebastian Bergmann",
  10711. "email": "sebastian@phpunit.de"
  10712. }
  10713. ],
  10714. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10715. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10716. "support": {
  10717. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10718. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10719. },
  10720. "funding": [
  10721. {
  10722. "url": "https://github.com/sebastianbergmann",
  10723. "type": "github"
  10724. }
  10725. ],
  10726. "time": "2023-02-03T07:08:32+00:00"
  10727. },
  10728. {
  10729. "name": "sebastian/object-reflector",
  10730. "version": "3.0.0",
  10731. "source": {
  10732. "type": "git",
  10733. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10734. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10735. },
  10736. "dist": {
  10737. "type": "zip",
  10738. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10739. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10740. "shasum": ""
  10741. },
  10742. "require": {
  10743. "php": ">=8.1"
  10744. },
  10745. "require-dev": {
  10746. "phpunit/phpunit": "^10.0"
  10747. },
  10748. "type": "library",
  10749. "extra": {
  10750. "branch-alias": {
  10751. "dev-main": "3.0-dev"
  10752. }
  10753. },
  10754. "autoload": {
  10755. "classmap": [
  10756. "src/"
  10757. ]
  10758. },
  10759. "notification-url": "https://packagist.org/downloads/",
  10760. "license": [
  10761. "BSD-3-Clause"
  10762. ],
  10763. "authors": [
  10764. {
  10765. "name": "Sebastian Bergmann",
  10766. "email": "sebastian@phpunit.de"
  10767. }
  10768. ],
  10769. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10770. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10771. "support": {
  10772. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10773. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10774. },
  10775. "funding": [
  10776. {
  10777. "url": "https://github.com/sebastianbergmann",
  10778. "type": "github"
  10779. }
  10780. ],
  10781. "time": "2023-02-03T07:06:18+00:00"
  10782. },
  10783. {
  10784. "name": "sebastian/recursion-context",
  10785. "version": "5.0.0",
  10786. "source": {
  10787. "type": "git",
  10788. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10789. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10790. },
  10791. "dist": {
  10792. "type": "zip",
  10793. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10794. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10795. "shasum": ""
  10796. },
  10797. "require": {
  10798. "php": ">=8.1"
  10799. },
  10800. "require-dev": {
  10801. "phpunit/phpunit": "^10.0"
  10802. },
  10803. "type": "library",
  10804. "extra": {
  10805. "branch-alias": {
  10806. "dev-main": "5.0-dev"
  10807. }
  10808. },
  10809. "autoload": {
  10810. "classmap": [
  10811. "src/"
  10812. ]
  10813. },
  10814. "notification-url": "https://packagist.org/downloads/",
  10815. "license": [
  10816. "BSD-3-Clause"
  10817. ],
  10818. "authors": [
  10819. {
  10820. "name": "Sebastian Bergmann",
  10821. "email": "sebastian@phpunit.de"
  10822. },
  10823. {
  10824. "name": "Jeff Welch",
  10825. "email": "whatthejeff@gmail.com"
  10826. },
  10827. {
  10828. "name": "Adam Harvey",
  10829. "email": "aharvey@php.net"
  10830. }
  10831. ],
  10832. "description": "Provides functionality to recursively process PHP variables",
  10833. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10834. "support": {
  10835. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10836. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10837. },
  10838. "funding": [
  10839. {
  10840. "url": "https://github.com/sebastianbergmann",
  10841. "type": "github"
  10842. }
  10843. ],
  10844. "time": "2023-02-03T07:05:40+00:00"
  10845. },
  10846. {
  10847. "name": "sebastian/type",
  10848. "version": "4.0.0",
  10849. "source": {
  10850. "type": "git",
  10851. "url": "https://github.com/sebastianbergmann/type.git",
  10852. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10853. },
  10854. "dist": {
  10855. "type": "zip",
  10856. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10857. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10858. "shasum": ""
  10859. },
  10860. "require": {
  10861. "php": ">=8.1"
  10862. },
  10863. "require-dev": {
  10864. "phpunit/phpunit": "^10.0"
  10865. },
  10866. "type": "library",
  10867. "extra": {
  10868. "branch-alias": {
  10869. "dev-main": "4.0-dev"
  10870. }
  10871. },
  10872. "autoload": {
  10873. "classmap": [
  10874. "src/"
  10875. ]
  10876. },
  10877. "notification-url": "https://packagist.org/downloads/",
  10878. "license": [
  10879. "BSD-3-Clause"
  10880. ],
  10881. "authors": [
  10882. {
  10883. "name": "Sebastian Bergmann",
  10884. "email": "sebastian@phpunit.de",
  10885. "role": "lead"
  10886. }
  10887. ],
  10888. "description": "Collection of value objects that represent the types of the PHP type system",
  10889. "homepage": "https://github.com/sebastianbergmann/type",
  10890. "support": {
  10891. "issues": "https://github.com/sebastianbergmann/type/issues",
  10892. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10893. },
  10894. "funding": [
  10895. {
  10896. "url": "https://github.com/sebastianbergmann",
  10897. "type": "github"
  10898. }
  10899. ],
  10900. "time": "2023-02-03T07:10:45+00:00"
  10901. },
  10902. {
  10903. "name": "sebastian/version",
  10904. "version": "4.0.1",
  10905. "source": {
  10906. "type": "git",
  10907. "url": "https://github.com/sebastianbergmann/version.git",
  10908. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10909. },
  10910. "dist": {
  10911. "type": "zip",
  10912. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10913. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10914. "shasum": ""
  10915. },
  10916. "require": {
  10917. "php": ">=8.1"
  10918. },
  10919. "type": "library",
  10920. "extra": {
  10921. "branch-alias": {
  10922. "dev-main": "4.0-dev"
  10923. }
  10924. },
  10925. "autoload": {
  10926. "classmap": [
  10927. "src/"
  10928. ]
  10929. },
  10930. "notification-url": "https://packagist.org/downloads/",
  10931. "license": [
  10932. "BSD-3-Clause"
  10933. ],
  10934. "authors": [
  10935. {
  10936. "name": "Sebastian Bergmann",
  10937. "email": "sebastian@phpunit.de",
  10938. "role": "lead"
  10939. }
  10940. ],
  10941. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10942. "homepage": "https://github.com/sebastianbergmann/version",
  10943. "support": {
  10944. "issues": "https://github.com/sebastianbergmann/version/issues",
  10945. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10946. },
  10947. "funding": [
  10948. {
  10949. "url": "https://github.com/sebastianbergmann",
  10950. "type": "github"
  10951. }
  10952. ],
  10953. "time": "2023-02-07T11:34:05+00:00"
  10954. },
  10955. {
  10956. "name": "swoole/ide-helper",
  10957. "version": "5.1.5",
  10958. "source": {
  10959. "type": "git",
  10960. "url": "https://github.com/swoole/ide-helper.git",
  10961. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  10962. },
  10963. "dist": {
  10964. "type": "zip",
  10965. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10966. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10967. "shasum": ""
  10968. },
  10969. "type": "library",
  10970. "notification-url": "https://packagist.org/downloads/",
  10971. "license": [
  10972. "Apache-2.0"
  10973. ],
  10974. "authors": [
  10975. {
  10976. "name": "Team Swoole",
  10977. "email": "team@swoole.com"
  10978. }
  10979. ],
  10980. "description": "IDE help files for Swoole.",
  10981. "support": {
  10982. "issues": "https://github.com/swoole/ide-helper/issues",
  10983. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  10984. },
  10985. "time": "2024-11-05T07:35:30+00:00"
  10986. },
  10987. {
  10988. "name": "symfony/event-dispatcher",
  10989. "version": "v6.4.13",
  10990. "source": {
  10991. "type": "git",
  10992. "url": "https://github.com/symfony/event-dispatcher.git",
  10993. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10994. },
  10995. "dist": {
  10996. "type": "zip",
  10997. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10998. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10999. "shasum": ""
  11000. },
  11001. "require": {
  11002. "php": ">=8.1",
  11003. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11004. },
  11005. "conflict": {
  11006. "symfony/dependency-injection": "<5.4",
  11007. "symfony/service-contracts": "<2.5"
  11008. },
  11009. "provide": {
  11010. "psr/event-dispatcher-implementation": "1.0",
  11011. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11012. },
  11013. "require-dev": {
  11014. "psr/log": "^1|^2|^3",
  11015. "symfony/config": "^5.4|^6.0|^7.0",
  11016. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11017. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11018. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11019. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11020. "symfony/service-contracts": "^2.5|^3",
  11021. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11022. },
  11023. "type": "library",
  11024. "autoload": {
  11025. "psr-4": {
  11026. "Symfony\\Component\\EventDispatcher\\": ""
  11027. },
  11028. "exclude-from-classmap": [
  11029. "/Tests/"
  11030. ]
  11031. },
  11032. "notification-url": "https://packagist.org/downloads/",
  11033. "license": [
  11034. "MIT"
  11035. ],
  11036. "authors": [
  11037. {
  11038. "name": "Fabien Potencier",
  11039. "email": "fabien@symfony.com"
  11040. },
  11041. {
  11042. "name": "Symfony Community",
  11043. "homepage": "https://symfony.com/contributors"
  11044. }
  11045. ],
  11046. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11047. "homepage": "https://symfony.com",
  11048. "support": {
  11049. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11050. },
  11051. "funding": [
  11052. {
  11053. "url": "https://symfony.com/sponsor",
  11054. "type": "custom"
  11055. },
  11056. {
  11057. "url": "https://github.com/fabpot",
  11058. "type": "github"
  11059. },
  11060. {
  11061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11062. "type": "tidelift"
  11063. }
  11064. ],
  11065. "time": "2024-09-25T14:18:03+00:00"
  11066. },
  11067. {
  11068. "name": "symfony/event-dispatcher-contracts",
  11069. "version": "v3.5.0",
  11070. "source": {
  11071. "type": "git",
  11072. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11073. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  11074. },
  11075. "dist": {
  11076. "type": "zip",
  11077. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  11078. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  11079. "shasum": ""
  11080. },
  11081. "require": {
  11082. "php": ">=8.1",
  11083. "psr/event-dispatcher": "^1"
  11084. },
  11085. "type": "library",
  11086. "extra": {
  11087. "branch-alias": {
  11088. "dev-main": "3.5-dev"
  11089. },
  11090. "thanks": {
  11091. "name": "symfony/contracts",
  11092. "url": "https://github.com/symfony/contracts"
  11093. }
  11094. },
  11095. "autoload": {
  11096. "psr-4": {
  11097. "Symfony\\Contracts\\EventDispatcher\\": ""
  11098. }
  11099. },
  11100. "notification-url": "https://packagist.org/downloads/",
  11101. "license": [
  11102. "MIT"
  11103. ],
  11104. "authors": [
  11105. {
  11106. "name": "Nicolas Grekas",
  11107. "email": "p@tchwork.com"
  11108. },
  11109. {
  11110. "name": "Symfony Community",
  11111. "homepage": "https://symfony.com/contributors"
  11112. }
  11113. ],
  11114. "description": "Generic abstractions related to dispatching event",
  11115. "homepage": "https://symfony.com",
  11116. "keywords": [
  11117. "abstractions",
  11118. "contracts",
  11119. "decoupling",
  11120. "interfaces",
  11121. "interoperability",
  11122. "standards"
  11123. ],
  11124. "support": {
  11125. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  11126. },
  11127. "funding": [
  11128. {
  11129. "url": "https://symfony.com/sponsor",
  11130. "type": "custom"
  11131. },
  11132. {
  11133. "url": "https://github.com/fabpot",
  11134. "type": "github"
  11135. },
  11136. {
  11137. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11138. "type": "tidelift"
  11139. }
  11140. ],
  11141. "time": "2024-04-18T09:32:20+00:00"
  11142. },
  11143. {
  11144. "name": "symfony/filesystem",
  11145. "version": "v6.4.13",
  11146. "source": {
  11147. "type": "git",
  11148. "url": "https://github.com/symfony/filesystem.git",
  11149. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11150. },
  11151. "dist": {
  11152. "type": "zip",
  11153. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11154. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11155. "shasum": ""
  11156. },
  11157. "require": {
  11158. "php": ">=8.1",
  11159. "symfony/polyfill-ctype": "~1.8",
  11160. "symfony/polyfill-mbstring": "~1.8"
  11161. },
  11162. "require-dev": {
  11163. "symfony/process": "^5.4|^6.4|^7.0"
  11164. },
  11165. "type": "library",
  11166. "autoload": {
  11167. "psr-4": {
  11168. "Symfony\\Component\\Filesystem\\": ""
  11169. },
  11170. "exclude-from-classmap": [
  11171. "/Tests/"
  11172. ]
  11173. },
  11174. "notification-url": "https://packagist.org/downloads/",
  11175. "license": [
  11176. "MIT"
  11177. ],
  11178. "authors": [
  11179. {
  11180. "name": "Fabien Potencier",
  11181. "email": "fabien@symfony.com"
  11182. },
  11183. {
  11184. "name": "Symfony Community",
  11185. "homepage": "https://symfony.com/contributors"
  11186. }
  11187. ],
  11188. "description": "Provides basic utilities for the filesystem",
  11189. "homepage": "https://symfony.com",
  11190. "support": {
  11191. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11192. },
  11193. "funding": [
  11194. {
  11195. "url": "https://symfony.com/sponsor",
  11196. "type": "custom"
  11197. },
  11198. {
  11199. "url": "https://github.com/fabpot",
  11200. "type": "github"
  11201. },
  11202. {
  11203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11204. "type": "tidelift"
  11205. }
  11206. ],
  11207. "time": "2024-10-25T15:07:50+00:00"
  11208. },
  11209. {
  11210. "name": "symfony/http-foundation",
  11211. "version": "v6.4.14",
  11212. "source": {
  11213. "type": "git",
  11214. "url": "https://github.com/symfony/http-foundation.git",
  11215. "reference": "ba020a321a95519303a3f09ec2824d34d601c388"
  11216. },
  11217. "dist": {
  11218. "type": "zip",
  11219. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ba020a321a95519303a3f09ec2824d34d601c388",
  11220. "reference": "ba020a321a95519303a3f09ec2824d34d601c388",
  11221. "shasum": ""
  11222. },
  11223. "require": {
  11224. "php": ">=8.1",
  11225. "symfony/deprecation-contracts": "^2.5|^3",
  11226. "symfony/polyfill-mbstring": "~1.1",
  11227. "symfony/polyfill-php83": "^1.27"
  11228. },
  11229. "conflict": {
  11230. "symfony/cache": "<6.3"
  11231. },
  11232. "require-dev": {
  11233. "doctrine/dbal": "^2.13.1|^3|^4",
  11234. "predis/predis": "^1.1|^2.0",
  11235. "symfony/cache": "^6.3|^7.0",
  11236. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11237. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11238. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11239. "symfony/mime": "^5.4|^6.0|^7.0",
  11240. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11241. },
  11242. "type": "library",
  11243. "autoload": {
  11244. "psr-4": {
  11245. "Symfony\\Component\\HttpFoundation\\": ""
  11246. },
  11247. "exclude-from-classmap": [
  11248. "/Tests/"
  11249. ]
  11250. },
  11251. "notification-url": "https://packagist.org/downloads/",
  11252. "license": [
  11253. "MIT"
  11254. ],
  11255. "authors": [
  11256. {
  11257. "name": "Fabien Potencier",
  11258. "email": "fabien@symfony.com"
  11259. },
  11260. {
  11261. "name": "Symfony Community",
  11262. "homepage": "https://symfony.com/contributors"
  11263. }
  11264. ],
  11265. "description": "Defines an object-oriented layer for the HTTP specification",
  11266. "homepage": "https://symfony.com",
  11267. "support": {
  11268. "source": "https://github.com/symfony/http-foundation/tree/v6.4.14"
  11269. },
  11270. "funding": [
  11271. {
  11272. "url": "https://symfony.com/sponsor",
  11273. "type": "custom"
  11274. },
  11275. {
  11276. "url": "https://github.com/fabpot",
  11277. "type": "github"
  11278. },
  11279. {
  11280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11281. "type": "tidelift"
  11282. }
  11283. ],
  11284. "time": "2024-11-05T16:39:55+00:00"
  11285. },
  11286. {
  11287. "name": "symfony/options-resolver",
  11288. "version": "v6.4.13",
  11289. "source": {
  11290. "type": "git",
  11291. "url": "https://github.com/symfony/options-resolver.git",
  11292. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11293. },
  11294. "dist": {
  11295. "type": "zip",
  11296. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11297. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11298. "shasum": ""
  11299. },
  11300. "require": {
  11301. "php": ">=8.1",
  11302. "symfony/deprecation-contracts": "^2.5|^3"
  11303. },
  11304. "type": "library",
  11305. "autoload": {
  11306. "psr-4": {
  11307. "Symfony\\Component\\OptionsResolver\\": ""
  11308. },
  11309. "exclude-from-classmap": [
  11310. "/Tests/"
  11311. ]
  11312. },
  11313. "notification-url": "https://packagist.org/downloads/",
  11314. "license": [
  11315. "MIT"
  11316. ],
  11317. "authors": [
  11318. {
  11319. "name": "Fabien Potencier",
  11320. "email": "fabien@symfony.com"
  11321. },
  11322. {
  11323. "name": "Symfony Community",
  11324. "homepage": "https://symfony.com/contributors"
  11325. }
  11326. ],
  11327. "description": "Provides an improved replacement for the array_replace PHP function",
  11328. "homepage": "https://symfony.com",
  11329. "keywords": [
  11330. "config",
  11331. "configuration",
  11332. "options"
  11333. ],
  11334. "support": {
  11335. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11336. },
  11337. "funding": [
  11338. {
  11339. "url": "https://symfony.com/sponsor",
  11340. "type": "custom"
  11341. },
  11342. {
  11343. "url": "https://github.com/fabpot",
  11344. "type": "github"
  11345. },
  11346. {
  11347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11348. "type": "tidelift"
  11349. }
  11350. ],
  11351. "time": "2024-09-25T14:18:03+00:00"
  11352. },
  11353. {
  11354. "name": "symfony/polyfill-php81",
  11355. "version": "v1.31.0",
  11356. "source": {
  11357. "type": "git",
  11358. "url": "https://github.com/symfony/polyfill-php81.git",
  11359. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11360. },
  11361. "dist": {
  11362. "type": "zip",
  11363. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11364. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11365. "shasum": ""
  11366. },
  11367. "require": {
  11368. "php": ">=7.2"
  11369. },
  11370. "type": "library",
  11371. "extra": {
  11372. "thanks": {
  11373. "name": "symfony/polyfill",
  11374. "url": "https://github.com/symfony/polyfill"
  11375. }
  11376. },
  11377. "autoload": {
  11378. "files": [
  11379. "bootstrap.php"
  11380. ],
  11381. "psr-4": {
  11382. "Symfony\\Polyfill\\Php81\\": ""
  11383. },
  11384. "classmap": [
  11385. "Resources/stubs"
  11386. ]
  11387. },
  11388. "notification-url": "https://packagist.org/downloads/",
  11389. "license": [
  11390. "MIT"
  11391. ],
  11392. "authors": [
  11393. {
  11394. "name": "Nicolas Grekas",
  11395. "email": "p@tchwork.com"
  11396. },
  11397. {
  11398. "name": "Symfony Community",
  11399. "homepage": "https://symfony.com/contributors"
  11400. }
  11401. ],
  11402. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11403. "homepage": "https://symfony.com",
  11404. "keywords": [
  11405. "compatibility",
  11406. "polyfill",
  11407. "portable",
  11408. "shim"
  11409. ],
  11410. "support": {
  11411. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11412. },
  11413. "funding": [
  11414. {
  11415. "url": "https://symfony.com/sponsor",
  11416. "type": "custom"
  11417. },
  11418. {
  11419. "url": "https://github.com/fabpot",
  11420. "type": "github"
  11421. },
  11422. {
  11423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11424. "type": "tidelift"
  11425. }
  11426. ],
  11427. "time": "2024-09-09T11:45:10+00:00"
  11428. },
  11429. {
  11430. "name": "symfony/polyfill-php83",
  11431. "version": "v1.31.0",
  11432. "source": {
  11433. "type": "git",
  11434. "url": "https://github.com/symfony/polyfill-php83.git",
  11435. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11436. },
  11437. "dist": {
  11438. "type": "zip",
  11439. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11440. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11441. "shasum": ""
  11442. },
  11443. "require": {
  11444. "php": ">=7.2"
  11445. },
  11446. "type": "library",
  11447. "extra": {
  11448. "thanks": {
  11449. "name": "symfony/polyfill",
  11450. "url": "https://github.com/symfony/polyfill"
  11451. }
  11452. },
  11453. "autoload": {
  11454. "files": [
  11455. "bootstrap.php"
  11456. ],
  11457. "psr-4": {
  11458. "Symfony\\Polyfill\\Php83\\": ""
  11459. },
  11460. "classmap": [
  11461. "Resources/stubs"
  11462. ]
  11463. },
  11464. "notification-url": "https://packagist.org/downloads/",
  11465. "license": [
  11466. "MIT"
  11467. ],
  11468. "authors": [
  11469. {
  11470. "name": "Nicolas Grekas",
  11471. "email": "p@tchwork.com"
  11472. },
  11473. {
  11474. "name": "Symfony Community",
  11475. "homepage": "https://symfony.com/contributors"
  11476. }
  11477. ],
  11478. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11479. "homepage": "https://symfony.com",
  11480. "keywords": [
  11481. "compatibility",
  11482. "polyfill",
  11483. "portable",
  11484. "shim"
  11485. ],
  11486. "support": {
  11487. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11488. },
  11489. "funding": [
  11490. {
  11491. "url": "https://symfony.com/sponsor",
  11492. "type": "custom"
  11493. },
  11494. {
  11495. "url": "https://github.com/fabpot",
  11496. "type": "github"
  11497. },
  11498. {
  11499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11500. "type": "tidelift"
  11501. }
  11502. ],
  11503. "time": "2024-09-09T11:45:10+00:00"
  11504. },
  11505. {
  11506. "name": "symfony/process",
  11507. "version": "v6.4.14",
  11508. "source": {
  11509. "type": "git",
  11510. "url": "https://github.com/symfony/process.git",
  11511. "reference": "25214adbb0996d18112548de20c281be9f27279f"
  11512. },
  11513. "dist": {
  11514. "type": "zip",
  11515. "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f",
  11516. "reference": "25214adbb0996d18112548de20c281be9f27279f",
  11517. "shasum": ""
  11518. },
  11519. "require": {
  11520. "php": ">=8.1"
  11521. },
  11522. "type": "library",
  11523. "autoload": {
  11524. "psr-4": {
  11525. "Symfony\\Component\\Process\\": ""
  11526. },
  11527. "exclude-from-classmap": [
  11528. "/Tests/"
  11529. ]
  11530. },
  11531. "notification-url": "https://packagist.org/downloads/",
  11532. "license": [
  11533. "MIT"
  11534. ],
  11535. "authors": [
  11536. {
  11537. "name": "Fabien Potencier",
  11538. "email": "fabien@symfony.com"
  11539. },
  11540. {
  11541. "name": "Symfony Community",
  11542. "homepage": "https://symfony.com/contributors"
  11543. }
  11544. ],
  11545. "description": "Executes commands in sub-processes",
  11546. "homepage": "https://symfony.com",
  11547. "support": {
  11548. "source": "https://github.com/symfony/process/tree/v6.4.14"
  11549. },
  11550. "funding": [
  11551. {
  11552. "url": "https://symfony.com/sponsor",
  11553. "type": "custom"
  11554. },
  11555. {
  11556. "url": "https://github.com/fabpot",
  11557. "type": "github"
  11558. },
  11559. {
  11560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11561. "type": "tidelift"
  11562. }
  11563. ],
  11564. "time": "2024-11-06T09:25:01+00:00"
  11565. },
  11566. {
  11567. "name": "symfony/stopwatch",
  11568. "version": "v6.4.13",
  11569. "source": {
  11570. "type": "git",
  11571. "url": "https://github.com/symfony/stopwatch.git",
  11572. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11573. },
  11574. "dist": {
  11575. "type": "zip",
  11576. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11577. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11578. "shasum": ""
  11579. },
  11580. "require": {
  11581. "php": ">=8.1",
  11582. "symfony/service-contracts": "^2.5|^3"
  11583. },
  11584. "type": "library",
  11585. "autoload": {
  11586. "psr-4": {
  11587. "Symfony\\Component\\Stopwatch\\": ""
  11588. },
  11589. "exclude-from-classmap": [
  11590. "/Tests/"
  11591. ]
  11592. },
  11593. "notification-url": "https://packagist.org/downloads/",
  11594. "license": [
  11595. "MIT"
  11596. ],
  11597. "authors": [
  11598. {
  11599. "name": "Fabien Potencier",
  11600. "email": "fabien@symfony.com"
  11601. },
  11602. {
  11603. "name": "Symfony Community",
  11604. "homepage": "https://symfony.com/contributors"
  11605. }
  11606. ],
  11607. "description": "Provides a way to profile code",
  11608. "homepage": "https://symfony.com",
  11609. "support": {
  11610. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11611. },
  11612. "funding": [
  11613. {
  11614. "url": "https://symfony.com/sponsor",
  11615. "type": "custom"
  11616. },
  11617. {
  11618. "url": "https://github.com/fabpot",
  11619. "type": "github"
  11620. },
  11621. {
  11622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11623. "type": "tidelift"
  11624. }
  11625. ],
  11626. "time": "2024-09-25T14:18:03+00:00"
  11627. },
  11628. {
  11629. "name": "theseer/tokenizer",
  11630. "version": "1.2.3",
  11631. "source": {
  11632. "type": "git",
  11633. "url": "https://github.com/theseer/tokenizer.git",
  11634. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11635. },
  11636. "dist": {
  11637. "type": "zip",
  11638. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11639. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11640. "shasum": ""
  11641. },
  11642. "require": {
  11643. "ext-dom": "*",
  11644. "ext-tokenizer": "*",
  11645. "ext-xmlwriter": "*",
  11646. "php": "^7.2 || ^8.0"
  11647. },
  11648. "type": "library",
  11649. "autoload": {
  11650. "classmap": [
  11651. "src/"
  11652. ]
  11653. },
  11654. "notification-url": "https://packagist.org/downloads/",
  11655. "license": [
  11656. "BSD-3-Clause"
  11657. ],
  11658. "authors": [
  11659. {
  11660. "name": "Arne Blankerts",
  11661. "email": "arne@blankerts.de",
  11662. "role": "Developer"
  11663. }
  11664. ],
  11665. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11666. "support": {
  11667. "issues": "https://github.com/theseer/tokenizer/issues",
  11668. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11669. },
  11670. "funding": [
  11671. {
  11672. "url": "https://github.com/theseer",
  11673. "type": "github"
  11674. }
  11675. ],
  11676. "time": "2024-03-03T12:36:25+00:00"
  11677. },
  11678. {
  11679. "name": "zx/php-tools",
  11680. "version": "v0.0.1",
  11681. "source": {
  11682. "type": "git",
  11683. "url": "https://gitee.com/open-php/php-tools.git",
  11684. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11685. },
  11686. "require": {
  11687. "php": ">=7.0"
  11688. },
  11689. "type": "library",
  11690. "autoload": {
  11691. "psr-4": {
  11692. "ZX\\": "src/"
  11693. }
  11694. },
  11695. "notification-url": "https://packagist.org/downloads/",
  11696. "license": [
  11697. "mit"
  11698. ],
  11699. "authors": [
  11700. {
  11701. "name": "zx",
  11702. "email": "903464207@qq.com"
  11703. }
  11704. ],
  11705. "description": "php-tools",
  11706. "time": "2023-06-25T06:24:10+00:00"
  11707. }
  11708. ],
  11709. "aliases": [],
  11710. "minimum-stability": "dev",
  11711. "stability-flags": {},
  11712. "prefer-stable": true,
  11713. "prefer-lowest": false,
  11714. "platform": {
  11715. "php": ">=8.1"
  11716. },
  11717. "platform-dev": {},
  11718. "plugin-api-version": "2.6.0"
  11719. }