composer.lock 394 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131
  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": "a149cd206ffadfdf51d80918d612c3fa",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.12.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  20. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "^2.2",
  28. "phpunit/phpunit": "^10.1",
  29. "vimeo/psalm": "6.8.8"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Brick\\Math\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "description": "Arbitrary-precision arithmetic library",
  42. "keywords": [
  43. "Arbitrary-precision",
  44. "BigInteger",
  45. "BigRational",
  46. "arithmetic",
  47. "bigdecimal",
  48. "bignum",
  49. "bignumber",
  50. "brick",
  51. "decimal",
  52. "integer",
  53. "math",
  54. "mathematics",
  55. "rational"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/brick/math/issues",
  59. "source": "https://github.com/brick/math/tree/0.12.3"
  60. },
  61. "funding": [
  62. {
  63. "url": "https://github.com/BenMorel",
  64. "type": "github"
  65. }
  66. ],
  67. "time": "2025-02-28T13:11:00+00:00"
  68. },
  69. {
  70. "name": "carbonphp/carbon-doctrine-types",
  71. "version": "3.2.0",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  75. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  80. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": "^8.1"
  85. },
  86. "conflict": {
  87. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  88. },
  89. "require-dev": {
  90. "doctrine/dbal": "^4.0.0",
  91. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  92. "phpunit/phpunit": "^10.3"
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "psr-4": {
  97. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "KyleKatarn",
  107. "email": "kylekatarnls@gmail.com"
  108. }
  109. ],
  110. "description": "Types to use Carbon in Doctrine",
  111. "keywords": [
  112. "carbon",
  113. "date",
  114. "datetime",
  115. "doctrine",
  116. "time"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  120. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/kylekatarnls",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://opencollective.com/Carbon",
  129. "type": "open_collective"
  130. },
  131. {
  132. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  133. "type": "tidelift"
  134. }
  135. ],
  136. "time": "2024-02-09T16:56:22+00:00"
  137. },
  138. {
  139. "name": "doctrine/annotations",
  140. "version": "2.0.1",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/doctrine/annotations.git",
  144. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  149. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "doctrine/lexer": "^2 || ^3",
  154. "ext-tokenizer": "*",
  155. "php": "^7.2 || ^8.0",
  156. "psr/cache": "^1 || ^2 || ^3"
  157. },
  158. "require-dev": {
  159. "doctrine/cache": "^2.0",
  160. "doctrine/coding-standard": "^10",
  161. "phpstan/phpstan": "^1.8.0",
  162. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  163. "symfony/cache": "^5.4 || ^6",
  164. "vimeo/psalm": "^4.10"
  165. },
  166. "suggest": {
  167. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  168. },
  169. "type": "library",
  170. "autoload": {
  171. "psr-4": {
  172. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "Guilherme Blanco",
  182. "email": "guilhermeblanco@gmail.com"
  183. },
  184. {
  185. "name": "Roman Borschel",
  186. "email": "roman@code-factory.org"
  187. },
  188. {
  189. "name": "Benjamin Eberlei",
  190. "email": "kontakt@beberlei.de"
  191. },
  192. {
  193. "name": "Jonathan Wage",
  194. "email": "jonwage@gmail.com"
  195. },
  196. {
  197. "name": "Johannes Schmitt",
  198. "email": "schmittjoh@gmail.com"
  199. }
  200. ],
  201. "description": "Docblock Annotations Parser",
  202. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  203. "keywords": [
  204. "annotations",
  205. "docblock",
  206. "parser"
  207. ],
  208. "support": {
  209. "issues": "https://github.com/doctrine/annotations/issues",
  210. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  211. },
  212. "time": "2023-02-02T22:02:53+00:00"
  213. },
  214. {
  215. "name": "doctrine/inflector",
  216. "version": "2.0.10",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/doctrine/inflector.git",
  220. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  225. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "php": "^7.2 || ^8.0"
  230. },
  231. "require-dev": {
  232. "doctrine/coding-standard": "^11.0",
  233. "phpstan/phpstan": "^1.8",
  234. "phpstan/phpstan-phpunit": "^1.1",
  235. "phpstan/phpstan-strict-rules": "^1.3",
  236. "phpunit/phpunit": "^8.5 || ^9.5",
  237. "vimeo/psalm": "^4.25 || ^5.4"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Guilherme Blanco",
  252. "email": "guilhermeblanco@gmail.com"
  253. },
  254. {
  255. "name": "Roman Borschel",
  256. "email": "roman@code-factory.org"
  257. },
  258. {
  259. "name": "Benjamin Eberlei",
  260. "email": "kontakt@beberlei.de"
  261. },
  262. {
  263. "name": "Jonathan Wage",
  264. "email": "jonwage@gmail.com"
  265. },
  266. {
  267. "name": "Johannes Schmitt",
  268. "email": "schmittjoh@gmail.com"
  269. }
  270. ],
  271. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  272. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  273. "keywords": [
  274. "inflection",
  275. "inflector",
  276. "lowercase",
  277. "manipulation",
  278. "php",
  279. "plural",
  280. "singular",
  281. "strings",
  282. "uppercase",
  283. "words"
  284. ],
  285. "support": {
  286. "issues": "https://github.com/doctrine/inflector/issues",
  287. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  288. },
  289. "funding": [
  290. {
  291. "url": "https://www.doctrine-project.org/sponsorship.html",
  292. "type": "custom"
  293. },
  294. {
  295. "url": "https://www.patreon.com/phpdoctrine",
  296. "type": "patreon"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "time": "2024-02-18T20:23:39+00:00"
  304. },
  305. {
  306. "name": "doctrine/instantiator",
  307. "version": "1.5.0",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/doctrine/instantiator.git",
  311. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  316. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^7.1 || ^8.0"
  321. },
  322. "require-dev": {
  323. "doctrine/coding-standard": "^9 || ^11",
  324. "ext-pdo": "*",
  325. "ext-phar": "*",
  326. "phpbench/phpbench": "^0.16 || ^1",
  327. "phpstan/phpstan": "^1.4",
  328. "phpstan/phpstan-phpunit": "^1",
  329. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  330. "vimeo/psalm": "^4.30 || ^5.4"
  331. },
  332. "type": "library",
  333. "autoload": {
  334. "psr-4": {
  335. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  336. }
  337. },
  338. "notification-url": "https://packagist.org/downloads/",
  339. "license": [
  340. "MIT"
  341. ],
  342. "authors": [
  343. {
  344. "name": "Marco Pivetta",
  345. "email": "ocramius@gmail.com",
  346. "homepage": "https://ocramius.github.io/"
  347. }
  348. ],
  349. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  350. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  351. "keywords": [
  352. "constructor",
  353. "instantiate"
  354. ],
  355. "support": {
  356. "issues": "https://github.com/doctrine/instantiator/issues",
  357. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  358. },
  359. "funding": [
  360. {
  361. "url": "https://www.doctrine-project.org/sponsorship.html",
  362. "type": "custom"
  363. },
  364. {
  365. "url": "https://www.patreon.com/phpdoctrine",
  366. "type": "patreon"
  367. },
  368. {
  369. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  370. "type": "tidelift"
  371. }
  372. ],
  373. "time": "2022-12-30T00:15:36+00:00"
  374. },
  375. {
  376. "name": "doctrine/lexer",
  377. "version": "3.0.1",
  378. "source": {
  379. "type": "git",
  380. "url": "https://github.com/doctrine/lexer.git",
  381. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  382. },
  383. "dist": {
  384. "type": "zip",
  385. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  386. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  387. "shasum": ""
  388. },
  389. "require": {
  390. "php": "^8.1"
  391. },
  392. "require-dev": {
  393. "doctrine/coding-standard": "^12",
  394. "phpstan/phpstan": "^1.10",
  395. "phpunit/phpunit": "^10.5",
  396. "psalm/plugin-phpunit": "^0.18.3",
  397. "vimeo/psalm": "^5.21"
  398. },
  399. "type": "library",
  400. "autoload": {
  401. "psr-4": {
  402. "Doctrine\\Common\\Lexer\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Guilherme Blanco",
  412. "email": "guilhermeblanco@gmail.com"
  413. },
  414. {
  415. "name": "Roman Borschel",
  416. "email": "roman@code-factory.org"
  417. },
  418. {
  419. "name": "Johannes Schmitt",
  420. "email": "schmittjoh@gmail.com"
  421. }
  422. ],
  423. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  424. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  425. "keywords": [
  426. "annotations",
  427. "docblock",
  428. "lexer",
  429. "parser",
  430. "php"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/doctrine/lexer/issues",
  434. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://www.doctrine-project.org/sponsorship.html",
  439. "type": "custom"
  440. },
  441. {
  442. "url": "https://www.patreon.com/phpdoctrine",
  443. "type": "patreon"
  444. },
  445. {
  446. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  447. "type": "tidelift"
  448. }
  449. ],
  450. "time": "2024-02-05T11:56:58+00:00"
  451. },
  452. {
  453. "name": "fig/http-message-util",
  454. "version": "1.1.5",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/php-fig/http-message-util.git",
  458. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  463. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": "^5.3 || ^7.0 || ^8.0"
  468. },
  469. "suggest": {
  470. "psr/http-message": "The package containing the PSR-7 interfaces"
  471. },
  472. "type": "library",
  473. "extra": {
  474. "branch-alias": {
  475. "dev-master": "1.1.x-dev"
  476. }
  477. },
  478. "autoload": {
  479. "psr-4": {
  480. "Fig\\Http\\Message\\": "src/"
  481. }
  482. },
  483. "notification-url": "https://packagist.org/downloads/",
  484. "license": [
  485. "MIT"
  486. ],
  487. "authors": [
  488. {
  489. "name": "PHP-FIG",
  490. "homepage": "https://www.php-fig.org/"
  491. }
  492. ],
  493. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  494. "keywords": [
  495. "http",
  496. "http-message",
  497. "psr",
  498. "psr-7",
  499. "request",
  500. "response"
  501. ],
  502. "support": {
  503. "issues": "https://github.com/php-fig/http-message-util/issues",
  504. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  505. },
  506. "time": "2020-11-24T22:02:12+00:00"
  507. },
  508. {
  509. "name": "fukuball/jieba-php",
  510. "version": "0.34",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/fukuball/jieba-php.git",
  514. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/44d62bda8b80fe07ff59e8fc654f477685109a66",
  519. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66",
  520. "shasum": ""
  521. },
  522. "require": {
  523. "php": ">= 5.3"
  524. },
  525. "require-dev": {
  526. "php-coveralls/php-coveralls": "dev-master",
  527. "phpunit/phpunit": "~9.0",
  528. "squizlabs/php_codesniffer": "4.0.x-dev"
  529. },
  530. "type": "library",
  531. "autoload": {
  532. "files": [
  533. "src/vendor/multi-array/MultiArray.php",
  534. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  535. ],
  536. "psr-4": {
  537. "Fukuball\\Jieba\\": "src/class/"
  538. }
  539. },
  540. "notification-url": "https://packagist.org/downloads/",
  541. "license": [
  542. "MIT"
  543. ],
  544. "authors": [
  545. {
  546. "name": "fukuball",
  547. "email": "fukuball@gmail.com"
  548. }
  549. ],
  550. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  551. "keywords": [
  552. "Jieba",
  553. "php"
  554. ],
  555. "support": {
  556. "issues": "https://github.com/fukuball/jieba-php/issues",
  557. "source": "https://github.com/fukuball/jieba-php/tree/0.34"
  558. },
  559. "time": "2022-08-15T06:26:03+00:00"
  560. },
  561. {
  562. "name": "graham-campbell/result-type",
  563. "version": "v1.1.2",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  567. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  572. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "php": "^7.2.5 || ^8.0",
  577. "phpoption/phpoption": "^1.9.2"
  578. },
  579. "require-dev": {
  580. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  581. },
  582. "type": "library",
  583. "autoload": {
  584. "psr-4": {
  585. "GrahamCampbell\\ResultType\\": "src/"
  586. }
  587. },
  588. "notification-url": "https://packagist.org/downloads/",
  589. "license": [
  590. "MIT"
  591. ],
  592. "authors": [
  593. {
  594. "name": "Graham Campbell",
  595. "email": "hello@gjcampbell.co.uk",
  596. "homepage": "https://github.com/GrahamCampbell"
  597. }
  598. ],
  599. "description": "An Implementation Of The Result Type",
  600. "keywords": [
  601. "Graham Campbell",
  602. "GrahamCampbell",
  603. "Result Type",
  604. "Result-Type",
  605. "result"
  606. ],
  607. "support": {
  608. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  609. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  610. },
  611. "funding": [
  612. {
  613. "url": "https://github.com/GrahamCampbell",
  614. "type": "github"
  615. },
  616. {
  617. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  618. "type": "tidelift"
  619. }
  620. ],
  621. "time": "2023-11-12T22:16:48+00:00"
  622. },
  623. {
  624. "name": "guzzlehttp/guzzle",
  625. "version": "7.8.1",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/guzzle/guzzle.git",
  629. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  634. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "ext-json": "*",
  639. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  640. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  641. "php": "^7.2.5 || ^8.0",
  642. "psr/http-client": "^1.0",
  643. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  644. },
  645. "provide": {
  646. "psr/http-client-implementation": "1.0"
  647. },
  648. "require-dev": {
  649. "bamarni/composer-bin-plugin": "^1.8.2",
  650. "ext-curl": "*",
  651. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  652. "php-http/message-factory": "^1.1",
  653. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  654. "psr/log": "^1.1 || ^2.0 || ^3.0"
  655. },
  656. "suggest": {
  657. "ext-curl": "Required for CURL handler support",
  658. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  659. "psr/log": "Required for using the Log middleware"
  660. },
  661. "type": "library",
  662. "extra": {
  663. "bamarni-bin": {
  664. "bin-links": true,
  665. "forward-command": false
  666. }
  667. },
  668. "autoload": {
  669. "files": [
  670. "src/functions_include.php"
  671. ],
  672. "psr-4": {
  673. "GuzzleHttp\\": "src/"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Graham Campbell",
  683. "email": "hello@gjcampbell.co.uk",
  684. "homepage": "https://github.com/GrahamCampbell"
  685. },
  686. {
  687. "name": "Michael Dowling",
  688. "email": "mtdowling@gmail.com",
  689. "homepage": "https://github.com/mtdowling"
  690. },
  691. {
  692. "name": "Jeremy Lindblom",
  693. "email": "jeremeamia@gmail.com",
  694. "homepage": "https://github.com/jeremeamia"
  695. },
  696. {
  697. "name": "George Mponos",
  698. "email": "gmponos@gmail.com",
  699. "homepage": "https://github.com/gmponos"
  700. },
  701. {
  702. "name": "Tobias Nyholm",
  703. "email": "tobias.nyholm@gmail.com",
  704. "homepage": "https://github.com/Nyholm"
  705. },
  706. {
  707. "name": "Márk Sági-Kazár",
  708. "email": "mark.sagikazar@gmail.com",
  709. "homepage": "https://github.com/sagikazarmark"
  710. },
  711. {
  712. "name": "Tobias Schultze",
  713. "email": "webmaster@tubo-world.de",
  714. "homepage": "https://github.com/Tobion"
  715. }
  716. ],
  717. "description": "Guzzle is a PHP HTTP client library",
  718. "keywords": [
  719. "client",
  720. "curl",
  721. "framework",
  722. "http",
  723. "http client",
  724. "psr-18",
  725. "psr-7",
  726. "rest",
  727. "web service"
  728. ],
  729. "support": {
  730. "issues": "https://github.com/guzzle/guzzle/issues",
  731. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  732. },
  733. "funding": [
  734. {
  735. "url": "https://github.com/GrahamCampbell",
  736. "type": "github"
  737. },
  738. {
  739. "url": "https://github.com/Nyholm",
  740. "type": "github"
  741. },
  742. {
  743. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  744. "type": "tidelift"
  745. }
  746. ],
  747. "time": "2023-12-03T20:35:24+00:00"
  748. },
  749. {
  750. "name": "guzzlehttp/promises",
  751. "version": "2.0.2",
  752. "source": {
  753. "type": "git",
  754. "url": "https://github.com/guzzle/promises.git",
  755. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  756. },
  757. "dist": {
  758. "type": "zip",
  759. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  760. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  761. "shasum": ""
  762. },
  763. "require": {
  764. "php": "^7.2.5 || ^8.0"
  765. },
  766. "require-dev": {
  767. "bamarni/composer-bin-plugin": "^1.8.2",
  768. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  769. },
  770. "type": "library",
  771. "extra": {
  772. "bamarni-bin": {
  773. "bin-links": true,
  774. "forward-command": false
  775. }
  776. },
  777. "autoload": {
  778. "psr-4": {
  779. "GuzzleHttp\\Promise\\": "src/"
  780. }
  781. },
  782. "notification-url": "https://packagist.org/downloads/",
  783. "license": [
  784. "MIT"
  785. ],
  786. "authors": [
  787. {
  788. "name": "Graham Campbell",
  789. "email": "hello@gjcampbell.co.uk",
  790. "homepage": "https://github.com/GrahamCampbell"
  791. },
  792. {
  793. "name": "Michael Dowling",
  794. "email": "mtdowling@gmail.com",
  795. "homepage": "https://github.com/mtdowling"
  796. },
  797. {
  798. "name": "Tobias Nyholm",
  799. "email": "tobias.nyholm@gmail.com",
  800. "homepage": "https://github.com/Nyholm"
  801. },
  802. {
  803. "name": "Tobias Schultze",
  804. "email": "webmaster@tubo-world.de",
  805. "homepage": "https://github.com/Tobion"
  806. }
  807. ],
  808. "description": "Guzzle promises library",
  809. "keywords": [
  810. "promise"
  811. ],
  812. "support": {
  813. "issues": "https://github.com/guzzle/promises/issues",
  814. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  815. },
  816. "funding": [
  817. {
  818. "url": "https://github.com/GrahamCampbell",
  819. "type": "github"
  820. },
  821. {
  822. "url": "https://github.com/Nyholm",
  823. "type": "github"
  824. },
  825. {
  826. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  827. "type": "tidelift"
  828. }
  829. ],
  830. "time": "2023-12-03T20:19:20+00:00"
  831. },
  832. {
  833. "name": "guzzlehttp/psr7",
  834. "version": "2.6.2",
  835. "source": {
  836. "type": "git",
  837. "url": "https://github.com/guzzle/psr7.git",
  838. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  839. },
  840. "dist": {
  841. "type": "zip",
  842. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  843. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  844. "shasum": ""
  845. },
  846. "require": {
  847. "php": "^7.2.5 || ^8.0",
  848. "psr/http-factory": "^1.0",
  849. "psr/http-message": "^1.1 || ^2.0",
  850. "ralouphie/getallheaders": "^3.0"
  851. },
  852. "provide": {
  853. "psr/http-factory-implementation": "1.0",
  854. "psr/http-message-implementation": "1.0"
  855. },
  856. "require-dev": {
  857. "bamarni/composer-bin-plugin": "^1.8.2",
  858. "http-interop/http-factory-tests": "^0.9",
  859. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  860. },
  861. "suggest": {
  862. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  863. },
  864. "type": "library",
  865. "extra": {
  866. "bamarni-bin": {
  867. "bin-links": true,
  868. "forward-command": false
  869. }
  870. },
  871. "autoload": {
  872. "psr-4": {
  873. "GuzzleHttp\\Psr7\\": "src/"
  874. }
  875. },
  876. "notification-url": "https://packagist.org/downloads/",
  877. "license": [
  878. "MIT"
  879. ],
  880. "authors": [
  881. {
  882. "name": "Graham Campbell",
  883. "email": "hello@gjcampbell.co.uk",
  884. "homepage": "https://github.com/GrahamCampbell"
  885. },
  886. {
  887. "name": "Michael Dowling",
  888. "email": "mtdowling@gmail.com",
  889. "homepage": "https://github.com/mtdowling"
  890. },
  891. {
  892. "name": "George Mponos",
  893. "email": "gmponos@gmail.com",
  894. "homepage": "https://github.com/gmponos"
  895. },
  896. {
  897. "name": "Tobias Nyholm",
  898. "email": "tobias.nyholm@gmail.com",
  899. "homepage": "https://github.com/Nyholm"
  900. },
  901. {
  902. "name": "Márk Sági-Kazár",
  903. "email": "mark.sagikazar@gmail.com",
  904. "homepage": "https://github.com/sagikazarmark"
  905. },
  906. {
  907. "name": "Tobias Schultze",
  908. "email": "webmaster@tubo-world.de",
  909. "homepage": "https://github.com/Tobion"
  910. },
  911. {
  912. "name": "Márk Sági-Kazár",
  913. "email": "mark.sagikazar@gmail.com",
  914. "homepage": "https://sagikazarmark.hu"
  915. }
  916. ],
  917. "description": "PSR-7 message implementation that also provides common utility methods",
  918. "keywords": [
  919. "http",
  920. "message",
  921. "psr-7",
  922. "request",
  923. "response",
  924. "stream",
  925. "uri",
  926. "url"
  927. ],
  928. "support": {
  929. "issues": "https://github.com/guzzle/psr7/issues",
  930. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  931. },
  932. "funding": [
  933. {
  934. "url": "https://github.com/GrahamCampbell",
  935. "type": "github"
  936. },
  937. {
  938. "url": "https://github.com/Nyholm",
  939. "type": "github"
  940. },
  941. {
  942. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  943. "type": "tidelift"
  944. }
  945. ],
  946. "time": "2023-12-03T20:05:35+00:00"
  947. },
  948. {
  949. "name": "hyperf/cache",
  950. "version": "v3.1.23",
  951. "source": {
  952. "type": "git",
  953. "url": "https://github.com/hyperf/cache.git",
  954. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  955. },
  956. "dist": {
  957. "type": "zip",
  958. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  959. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  960. "shasum": ""
  961. },
  962. "require": {
  963. "hyperf/codec": "~3.1.0",
  964. "hyperf/collection": "~3.1.0",
  965. "hyperf/contract": "~3.1.0",
  966. "hyperf/support": "~3.1.0",
  967. "hyperf/utils": "~3.1.0",
  968. "php": ">=8.1",
  969. "psr/container": "^1.0|^2.0",
  970. "psr/simple-cache": "^1.0|^2.0|^3.0"
  971. },
  972. "suggest": {
  973. "hyperf/di": "Use cache annotations.",
  974. "hyperf/event": "Use listener to delete annotation cache."
  975. },
  976. "type": "library",
  977. "extra": {
  978. "branch-alias": {
  979. "dev-master": "3.1-dev"
  980. },
  981. "hyperf": {
  982. "config": "Hyperf\\Cache\\ConfigProvider"
  983. }
  984. },
  985. "autoload": {
  986. "psr-4": {
  987. "Hyperf\\Cache\\": "src/"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "MIT"
  993. ],
  994. "description": "A cache component for hyperf.",
  995. "homepage": "https://hyperf.io",
  996. "keywords": [
  997. "cache",
  998. "hyperf",
  999. "php"
  1000. ],
  1001. "support": {
  1002. "docs": "https://hyperf.wiki",
  1003. "issues": "https://github.com/hyperf/hyperf/issues",
  1004. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1005. "source": "https://github.com/hyperf/hyperf"
  1006. },
  1007. "funding": [
  1008. {
  1009. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1010. "type": "custom"
  1011. },
  1012. {
  1013. "url": "https://opencollective.com/hyperf",
  1014. "type": "open_collective"
  1015. }
  1016. ],
  1017. "time": "2024-05-23T03:43:58+00:00"
  1018. },
  1019. {
  1020. "name": "hyperf/code-parser",
  1021. "version": "v3.1.15",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/hyperf/code-parser.git",
  1025. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1030. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "hyperf/collection": "~3.1.0",
  1035. "hyperf/stringable": "~3.1.0",
  1036. "hyperf/support": "~3.1.0",
  1037. "php": ">=8.1"
  1038. },
  1039. "suggest": {
  1040. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1041. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1042. },
  1043. "type": "library",
  1044. "extra": {
  1045. "branch-alias": {
  1046. "dev-master": "3.1-dev"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "psr-4": {
  1051. "Hyperf\\CodeParser\\": "src/"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "description": "A code parser component for Hyperf.",
  1059. "homepage": "https://hyperf.io",
  1060. "keywords": [
  1061. "code-parser",
  1062. "hyperf",
  1063. "php",
  1064. "swoole"
  1065. ],
  1066. "support": {
  1067. "docs": "https://hyperf.wiki",
  1068. "issues": "https://github.com/hyperf/hyperf/issues",
  1069. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1070. "source": "https://github.com/hyperf/hyperf"
  1071. },
  1072. "funding": [
  1073. {
  1074. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1075. "type": "custom"
  1076. },
  1077. {
  1078. "url": "https://opencollective.com/hyperf",
  1079. "type": "open_collective"
  1080. }
  1081. ],
  1082. "time": "2024-03-23T11:28:51+00:00"
  1083. },
  1084. {
  1085. "name": "hyperf/codec",
  1086. "version": "v3.1.15",
  1087. "source": {
  1088. "type": "git",
  1089. "url": "https://github.com/hyperf/codec.git",
  1090. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1091. },
  1092. "dist": {
  1093. "type": "zip",
  1094. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1095. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1096. "shasum": ""
  1097. },
  1098. "require": {
  1099. "ext-json": "*",
  1100. "ext-xml": "*",
  1101. "hyperf/contract": "~3.1.0",
  1102. "php": ">=8.1"
  1103. },
  1104. "suggest": {
  1105. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1106. },
  1107. "type": "library",
  1108. "extra": {
  1109. "branch-alias": {
  1110. "dev-master": "3.1-dev"
  1111. }
  1112. },
  1113. "autoload": {
  1114. "psr-4": {
  1115. "Hyperf\\Codec\\": "src/"
  1116. }
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "MIT"
  1121. ],
  1122. "description": "A codec component for Hyperf.",
  1123. "homepage": "https://hyperf.io",
  1124. "keywords": [
  1125. "codec",
  1126. "hyperf",
  1127. "php",
  1128. "swoole"
  1129. ],
  1130. "support": {
  1131. "docs": "https://hyperf.wiki",
  1132. "issues": "https://github.com/hyperf/hyperf/issues",
  1133. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1134. "source": "https://github.com/hyperf/hyperf"
  1135. },
  1136. "funding": [
  1137. {
  1138. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1139. "type": "custom"
  1140. },
  1141. {
  1142. "url": "https://opencollective.com/hyperf",
  1143. "type": "open_collective"
  1144. }
  1145. ],
  1146. "time": "2024-03-23T11:28:51+00:00"
  1147. },
  1148. {
  1149. "name": "hyperf/collection",
  1150. "version": "v3.1.23.2",
  1151. "source": {
  1152. "type": "git",
  1153. "url": "https://github.com/hyperf/collection.git",
  1154. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1155. },
  1156. "dist": {
  1157. "type": "zip",
  1158. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1159. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1160. "shasum": ""
  1161. },
  1162. "require": {
  1163. "hyperf/conditionable": "~3.1.0",
  1164. "hyperf/contract": "~3.1.0",
  1165. "hyperf/macroable": "~3.1.0",
  1166. "hyperf/stringable": "~3.1.0",
  1167. "php": ">=8.1"
  1168. },
  1169. "type": "library",
  1170. "extra": {
  1171. "branch-alias": {
  1172. "dev-master": "3.1-dev"
  1173. }
  1174. },
  1175. "autoload": {
  1176. "files": [
  1177. "src/Functions.php"
  1178. ],
  1179. "psr-4": {
  1180. "Hyperf\\Collection\\": "src/"
  1181. }
  1182. },
  1183. "notification-url": "https://packagist.org/downloads/",
  1184. "license": [
  1185. "MIT"
  1186. ],
  1187. "description": "Hyperf Collection package which come from illuminate/collections",
  1188. "homepage": "https://hyperf.io",
  1189. "keywords": [
  1190. "collection",
  1191. "hyperf",
  1192. "php",
  1193. "swoole"
  1194. ],
  1195. "support": {
  1196. "docs": "https://hyperf.wiki",
  1197. "issues": "https://github.com/hyperf/hyperf/issues",
  1198. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1199. "source": "https://github.com/hyperf/hyperf"
  1200. },
  1201. "funding": [
  1202. {
  1203. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1204. "type": "custom"
  1205. },
  1206. {
  1207. "url": "https://opencollective.com/hyperf",
  1208. "type": "open_collective"
  1209. }
  1210. ],
  1211. "time": "2024-05-24T08:33:42+00:00"
  1212. },
  1213. {
  1214. "name": "hyperf/command",
  1215. "version": "v3.1.24",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/hyperf/command.git",
  1219. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1224. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1225. "shasum": ""
  1226. },
  1227. "require": {
  1228. "hyperf/collection": "~3.1.0",
  1229. "hyperf/context": "~3.1.0",
  1230. "hyperf/contract": "~3.1.0",
  1231. "hyperf/coroutine": "~3.1.0",
  1232. "hyperf/di": "~3.1.0",
  1233. "hyperf/stringable": "~3.1.0",
  1234. "hyperf/support": "~3.1.0",
  1235. "hyperf/tappable": "~3.1.0",
  1236. "php": ">=8.1",
  1237. "psr/event-dispatcher": "^1.0",
  1238. "symfony/console": "^5.0|^6.0|^7.0"
  1239. },
  1240. "suggest": {
  1241. "hyperf/di": "Required to use annotations.",
  1242. "hyperf/event": "Required to use listeners."
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "3.1-dev"
  1248. },
  1249. "hyperf": {
  1250. "config": "Hyperf\\Command\\ConfigProvider"
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-4": {
  1255. "Hyperf\\Command\\": "src/"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "MIT"
  1261. ],
  1262. "description": "Command for hyperf",
  1263. "keywords": [
  1264. "command",
  1265. "php",
  1266. "swoole"
  1267. ],
  1268. "support": {
  1269. "issues": "https://github.com/hyperf/command/issues",
  1270. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1271. },
  1272. "funding": [
  1273. {
  1274. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1275. "type": "custom"
  1276. },
  1277. {
  1278. "url": "https://opencollective.com/hyperf",
  1279. "type": "open_collective"
  1280. }
  1281. ],
  1282. "time": "2024-05-27T12:37:07+00:00"
  1283. },
  1284. {
  1285. "name": "hyperf/conditionable",
  1286. "version": "v3.1.15",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/hyperf/conditionable.git",
  1290. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1295. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "php": ">=8.1"
  1300. },
  1301. "type": "library",
  1302. "extra": {
  1303. "branch-alias": {
  1304. "dev-master": "3.1-dev"
  1305. }
  1306. },
  1307. "autoload": {
  1308. "psr-4": {
  1309. "Hyperf\\Conditionable\\": "src/"
  1310. }
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1317. "homepage": "https://hyperf.io",
  1318. "keywords": [
  1319. "conditionable",
  1320. "hyperf",
  1321. "php",
  1322. "swoole"
  1323. ],
  1324. "support": {
  1325. "docs": "https://hyperf.wiki",
  1326. "issues": "https://github.com/hyperf/hyperf/issues",
  1327. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1328. "source": "https://github.com/hyperf/hyperf"
  1329. },
  1330. "funding": [
  1331. {
  1332. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1333. "type": "custom"
  1334. },
  1335. {
  1336. "url": "https://opencollective.com/hyperf",
  1337. "type": "open_collective"
  1338. }
  1339. ],
  1340. "time": "2024-03-23T11:28:51+00:00"
  1341. },
  1342. {
  1343. "name": "hyperf/config",
  1344. "version": "v3.1.15",
  1345. "source": {
  1346. "type": "git",
  1347. "url": "https://github.com/hyperf/config.git",
  1348. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1349. },
  1350. "dist": {
  1351. "type": "zip",
  1352. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1353. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1354. "shasum": ""
  1355. },
  1356. "require": {
  1357. "hyperf/collection": "~3.1.0",
  1358. "hyperf/contract": "~3.1.0",
  1359. "hyperf/support": "~3.1.0",
  1360. "php": ">=8.1",
  1361. "psr/container": "^1.0|^2.0",
  1362. "symfony/finder": "^5.0|^6.0|^7.0"
  1363. },
  1364. "suggest": {
  1365. "hyperf/context": "Required to use config()",
  1366. "hyperf/di": "Allows using @Value annotation",
  1367. "hyperf/event": "Allows using @Value annotation",
  1368. "hyperf/framework": "Allows using @Value annotation",
  1369. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1370. },
  1371. "type": "library",
  1372. "extra": {
  1373. "branch-alias": {
  1374. "dev-master": "3.1-dev"
  1375. },
  1376. "hyperf": {
  1377. "config": "Hyperf\\Config\\ConfigProvider"
  1378. }
  1379. },
  1380. "autoload": {
  1381. "files": [
  1382. "./src/Functions.php"
  1383. ],
  1384. "psr-4": {
  1385. "Hyperf\\Config\\": "src/"
  1386. }
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "description": "An independent component that provides configuration container.",
  1393. "homepage": "https://hyperf.io",
  1394. "keywords": [
  1395. "config",
  1396. "configuration",
  1397. "hyperf",
  1398. "php",
  1399. "swoole"
  1400. ],
  1401. "support": {
  1402. "docs": "https://hyperf.wiki",
  1403. "issues": "https://github.com/hyperf/hyperf/issues",
  1404. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1405. "source": "https://github.com/hyperf/hyperf"
  1406. },
  1407. "funding": [
  1408. {
  1409. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1410. "type": "custom"
  1411. },
  1412. {
  1413. "url": "https://opencollective.com/hyperf",
  1414. "type": "open_collective"
  1415. }
  1416. ],
  1417. "time": "2024-03-23T11:28:51+00:00"
  1418. },
  1419. {
  1420. "name": "hyperf/config-center",
  1421. "version": "v3.1.15",
  1422. "source": {
  1423. "type": "git",
  1424. "url": "https://github.com/hyperf/config-center.git",
  1425. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1426. },
  1427. "dist": {
  1428. "type": "zip",
  1429. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1430. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1431. "shasum": ""
  1432. },
  1433. "require": {
  1434. "hyperf/support": "~3.1.0",
  1435. "php": ">=8.1"
  1436. },
  1437. "suggest": {
  1438. "hyperf/process": "^2.1"
  1439. },
  1440. "type": "library",
  1441. "extra": {
  1442. "branch-alias": {
  1443. "dev-master": "3.1-dev"
  1444. },
  1445. "hyperf": {
  1446. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1447. }
  1448. },
  1449. "autoload": {
  1450. "psr-4": {
  1451. "Hyperf\\ConfigCenter\\": "src/"
  1452. }
  1453. },
  1454. "notification-url": "https://packagist.org/downloads/",
  1455. "license": [
  1456. "MIT"
  1457. ],
  1458. "description": "The abstraction component of config center",
  1459. "homepage": "https://hyperf.io",
  1460. "keywords": [
  1461. "config-center",
  1462. "hyperf",
  1463. "php"
  1464. ],
  1465. "support": {
  1466. "docs": "https://hyperf.wiki",
  1467. "issues": "https://github.com/hyperf/hyperf/issues",
  1468. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1469. "source": "https://github.com/hyperf/hyperf"
  1470. },
  1471. "funding": [
  1472. {
  1473. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1474. "type": "custom"
  1475. },
  1476. {
  1477. "url": "https://opencollective.com/hyperf",
  1478. "type": "open_collective"
  1479. }
  1480. ],
  1481. "time": "2024-03-23T11:28:51+00:00"
  1482. },
  1483. {
  1484. "name": "hyperf/config-nacos",
  1485. "version": "v3.1.15",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/hyperf/config-nacos.git",
  1489. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1494. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1495. "shasum": ""
  1496. },
  1497. "require": {
  1498. "hyperf/codec": "~3.1.0",
  1499. "hyperf/config-center": "~3.1.0",
  1500. "hyperf/contract": "~3.1.0",
  1501. "hyperf/guzzle": "~3.1.0",
  1502. "hyperf/nacos": "~3.1.0",
  1503. "hyperf/support": "~3.1.0",
  1504. "hyperf/utils": "~3.1.0",
  1505. "jetbrains/phpstorm-attributes": "^1.0",
  1506. "php": ">=8.1"
  1507. },
  1508. "suggest": {
  1509. "ext-json": "*",
  1510. "ext-simplexml": "*",
  1511. "ext-yaml": "*",
  1512. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1513. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1514. "hyperf/process": "Required to use processes. (~2.2.0)"
  1515. },
  1516. "type": "library",
  1517. "extra": {
  1518. "branch-alias": {
  1519. "dev-master": "3.1-dev"
  1520. },
  1521. "hyperf": {
  1522. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1523. }
  1524. },
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Hyperf\\ConfigNacos\\": "src/"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "description": "A nacos adapter for config center component.",
  1535. "homepage": "https://hyperf.io",
  1536. "keywords": [
  1537. "hyperf",
  1538. "nacos",
  1539. "php",
  1540. "swoole"
  1541. ],
  1542. "support": {
  1543. "docs": "https://hyperf.wiki",
  1544. "issues": "https://github.com/hyperf/hyperf/issues",
  1545. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1546. "source": "https://github.com/hyperf/hyperf"
  1547. },
  1548. "funding": [
  1549. {
  1550. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1551. "type": "custom"
  1552. },
  1553. {
  1554. "url": "https://opencollective.com/hyperf",
  1555. "type": "open_collective"
  1556. }
  1557. ],
  1558. "time": "2024-03-23T11:28:51+00:00"
  1559. },
  1560. {
  1561. "name": "hyperf/constants",
  1562. "version": "v3.1.16",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/hyperf/constants.git",
  1566. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1571. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "hyperf/di": "~3.1.0",
  1576. "hyperf/support": "~3.1.0",
  1577. "hyperf/utils": "~3.1.0",
  1578. "php": ">=8.1"
  1579. },
  1580. "suggest": {
  1581. "hyperf/translation": "Required to use translation."
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "3.1-dev"
  1587. },
  1588. "hyperf": {
  1589. "config": "Hyperf\\Constants\\ConfigProvider"
  1590. }
  1591. },
  1592. "autoload": {
  1593. "psr-4": {
  1594. "Hyperf\\Constants\\": "src/"
  1595. }
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "MIT"
  1600. ],
  1601. "description": "A constants component for hyperf.",
  1602. "homepage": "https://hyperf.io",
  1603. "keywords": [
  1604. "constants",
  1605. "hyperf",
  1606. "php"
  1607. ],
  1608. "support": {
  1609. "docs": "https://hyperf.wiki",
  1610. "issues": "https://github.com/hyperf/hyperf/issues",
  1611. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1612. "source": "https://github.com/hyperf/hyperf"
  1613. },
  1614. "funding": [
  1615. {
  1616. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1617. "type": "custom"
  1618. },
  1619. {
  1620. "url": "https://opencollective.com/hyperf",
  1621. "type": "open_collective"
  1622. }
  1623. ],
  1624. "time": "2024-03-31T11:35:28+00:00"
  1625. },
  1626. {
  1627. "name": "hyperf/consul",
  1628. "version": "v3.1.22",
  1629. "source": {
  1630. "type": "git",
  1631. "url": "https://github.com/hyperf/consul.git",
  1632. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1633. },
  1634. "dist": {
  1635. "type": "zip",
  1636. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1637. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1638. "shasum": ""
  1639. },
  1640. "require": {
  1641. "guzzlehttp/guzzle": "^6.3|^7.0",
  1642. "php": ">=8.1"
  1643. },
  1644. "require-dev": {
  1645. "hyperf/guzzle": "~3.1.0"
  1646. },
  1647. "type": "library",
  1648. "extra": {
  1649. "branch-alias": {
  1650. "dev-master": "3.1-dev"
  1651. },
  1652. "hyperf": {
  1653. "config": "Hyperf\\Consul\\ConfigProvider"
  1654. }
  1655. },
  1656. "autoload": {
  1657. "psr-4": {
  1658. "Hyperf\\Consul\\": "src/"
  1659. }
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "description": "A Consul Client for Hyperf.",
  1666. "homepage": "https://hyperf.io",
  1667. "keywords": [
  1668. "consul",
  1669. "consul-client",
  1670. "hyperf",
  1671. "php",
  1672. "swoole"
  1673. ],
  1674. "support": {
  1675. "docs": "https://hyperf.wiki",
  1676. "issues": "https://github.com/hyperf/hyperf/issues",
  1677. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1678. "source": "https://github.com/hyperf/hyperf"
  1679. },
  1680. "funding": [
  1681. {
  1682. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1683. "type": "custom"
  1684. },
  1685. {
  1686. "url": "https://opencollective.com/hyperf",
  1687. "type": "open_collective"
  1688. }
  1689. ],
  1690. "time": "2024-05-15T06:42:24+00:00"
  1691. },
  1692. {
  1693. "name": "hyperf/context",
  1694. "version": "v3.1.15",
  1695. "source": {
  1696. "type": "git",
  1697. "url": "https://github.com/hyperf/context.git",
  1698. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1699. },
  1700. "dist": {
  1701. "type": "zip",
  1702. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1703. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1704. "shasum": ""
  1705. },
  1706. "require": {
  1707. "hyperf/engine": "^2.0",
  1708. "php": ">=8.1"
  1709. },
  1710. "suggest": {
  1711. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-master": "3.1-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "psr-4": {
  1721. "Hyperf\\Context\\": "src/"
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "description": "A coroutine/application context library.",
  1729. "homepage": "https://hyperf.io",
  1730. "keywords": [
  1731. "Context",
  1732. "hyperf",
  1733. "php",
  1734. "swoole"
  1735. ],
  1736. "support": {
  1737. "docs": "https://hyperf.wiki",
  1738. "issues": "https://github.com/hyperf/hyperf/issues",
  1739. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1740. "source": "https://github.com/hyperf/hyperf"
  1741. },
  1742. "funding": [
  1743. {
  1744. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1745. "type": "custom"
  1746. },
  1747. {
  1748. "url": "https://opencollective.com/hyperf",
  1749. "type": "open_collective"
  1750. }
  1751. ],
  1752. "time": "2024-03-23T11:28:51+00:00"
  1753. },
  1754. {
  1755. "name": "hyperf/contract",
  1756. "version": "v3.1.15",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/hyperf/contract.git",
  1760. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1765. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1766. "shasum": ""
  1767. },
  1768. "require": {
  1769. "php": ">=8.1"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "branch-alias": {
  1774. "dev-master": "3.1-dev"
  1775. }
  1776. },
  1777. "autoload": {
  1778. "psr-4": {
  1779. "Hyperf\\Contract\\": "src/"
  1780. }
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "description": "The contracts of Hyperf.",
  1787. "homepage": "https://hyperf.io",
  1788. "keywords": [
  1789. "hyperf",
  1790. "php",
  1791. "swoole"
  1792. ],
  1793. "support": {
  1794. "docs": "https://hyperf.wiki",
  1795. "issues": "https://github.com/hyperf/hyperf/issues",
  1796. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1797. "source": "https://github.com/hyperf/hyperf"
  1798. },
  1799. "funding": [
  1800. {
  1801. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1802. "type": "custom"
  1803. },
  1804. {
  1805. "url": "https://opencollective.com/hyperf",
  1806. "type": "open_collective"
  1807. }
  1808. ],
  1809. "time": "2024-03-23T11:28:51+00:00"
  1810. },
  1811. {
  1812. "name": "hyperf/coordinator",
  1813. "version": "v3.1.21",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://github.com/hyperf/coordinator.git",
  1817. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1822. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1823. "shasum": ""
  1824. },
  1825. "require": {
  1826. "hyperf/engine": "^2.0",
  1827. "php": ">=8.1"
  1828. },
  1829. "type": "library",
  1830. "extra": {
  1831. "branch-alias": {
  1832. "dev-master": "3.1-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "files": [
  1837. "src/Functions.php"
  1838. ],
  1839. "psr-4": {
  1840. "Hyperf\\Coordinator\\": "src/"
  1841. }
  1842. },
  1843. "notification-url": "https://packagist.org/downloads/",
  1844. "license": [
  1845. "MIT"
  1846. ],
  1847. "description": "Hyperf Coordinator",
  1848. "homepage": "https://hyperf.io",
  1849. "keywords": [
  1850. "Coordinator",
  1851. "hyperf",
  1852. "php",
  1853. "swoole"
  1854. ],
  1855. "support": {
  1856. "docs": "https://hyperf.wiki",
  1857. "issues": "https://github.com/hyperf/hyperf/issues",
  1858. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1859. "source": "https://github.com/hyperf/hyperf"
  1860. },
  1861. "funding": [
  1862. {
  1863. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1864. "type": "custom"
  1865. },
  1866. {
  1867. "url": "https://opencollective.com/hyperf",
  1868. "type": "open_collective"
  1869. }
  1870. ],
  1871. "time": "2024-05-09T02:35:08+00:00"
  1872. },
  1873. {
  1874. "name": "hyperf/coroutine",
  1875. "version": "v3.1.15",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/hyperf/coroutine.git",
  1879. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1884. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "hyperf/context": "~3.1.0",
  1889. "hyperf/contract": "~3.1.0",
  1890. "hyperf/engine": "^2.0",
  1891. "php": ">=8.1"
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "3.1-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "files": [
  1901. "src/Functions.php"
  1902. ],
  1903. "psr-4": {
  1904. "Hyperf\\Coroutine\\": "src/"
  1905. }
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "description": "Hyperf Coroutine",
  1912. "homepage": "https://hyperf.io",
  1913. "keywords": [
  1914. "coroutine",
  1915. "hyperf",
  1916. "php",
  1917. "swoole"
  1918. ],
  1919. "support": {
  1920. "docs": "https://hyperf.wiki",
  1921. "issues": "https://github.com/hyperf/hyperf/issues",
  1922. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1923. "source": "https://github.com/hyperf/hyperf"
  1924. },
  1925. "funding": [
  1926. {
  1927. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1928. "type": "custom"
  1929. },
  1930. {
  1931. "url": "https://opencollective.com/hyperf",
  1932. "type": "open_collective"
  1933. }
  1934. ],
  1935. "time": "2024-03-23T11:28:51+00:00"
  1936. },
  1937. {
  1938. "name": "hyperf/database",
  1939. "version": "v3.1.24",
  1940. "source": {
  1941. "type": "git",
  1942. "url": "https://github.com/hyperf/database.git",
  1943. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1944. },
  1945. "dist": {
  1946. "type": "zip",
  1947. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1948. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1949. "shasum": ""
  1950. },
  1951. "require": {
  1952. "hyperf/code-parser": "~3.1.0",
  1953. "hyperf/collection": "~3.1.0",
  1954. "hyperf/macroable": "~3.1.0",
  1955. "hyperf/support": "~3.1.0",
  1956. "hyperf/tappable": "~3.1.0",
  1957. "hyperf/utils": "~3.1.0",
  1958. "nesbot/carbon": "^2.0",
  1959. "php": ">=8.1",
  1960. "psr/container": "^1.0|^2.0",
  1961. "psr/event-dispatcher": "^1.0"
  1962. },
  1963. "suggest": {
  1964. "doctrine/dbal": "Required to rename columns (^3.0).",
  1965. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1966. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1967. },
  1968. "type": "library",
  1969. "extra": {
  1970. "branch-alias": {
  1971. "dev-master": "3.1-dev"
  1972. }
  1973. },
  1974. "autoload": {
  1975. "psr-4": {
  1976. "Hyperf\\Database\\": "src/"
  1977. }
  1978. },
  1979. "notification-url": "https://packagist.org/downloads/",
  1980. "license": [
  1981. "MIT"
  1982. ],
  1983. "description": "A flexible database library.",
  1984. "homepage": "https://hyperf.io",
  1985. "keywords": [
  1986. "database",
  1987. "hyperf",
  1988. "php"
  1989. ],
  1990. "support": {
  1991. "docs": "https://hyperf.wiki",
  1992. "issues": "https://github.com/hyperf/hyperf/issues",
  1993. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1994. "source": "https://github.com/hyperf/hyperf"
  1995. },
  1996. "funding": [
  1997. {
  1998. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1999. "type": "custom"
  2000. },
  2001. {
  2002. "url": "https://opencollective.com/hyperf",
  2003. "type": "open_collective"
  2004. }
  2005. ],
  2006. "time": "2024-05-24T06:14:27+00:00"
  2007. },
  2008. {
  2009. "name": "hyperf/db-connection",
  2010. "version": "v3.1.15",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/hyperf/db-connection.git",
  2014. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2019. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "hyperf/database": "~3.1.0",
  2024. "hyperf/di": "~3.1.0",
  2025. "hyperf/framework": "~3.1.0",
  2026. "hyperf/model-listener": "~3.1.0",
  2027. "hyperf/pool": "~3.1.0",
  2028. "hyperf/support": "~3.1.0",
  2029. "hyperf/utils": "~3.1.0",
  2030. "php": ">=8.1",
  2031. "psr/container": "^1.0|^2.0"
  2032. },
  2033. "type": "library",
  2034. "extra": {
  2035. "branch-alias": {
  2036. "dev-master": "3.1-dev"
  2037. },
  2038. "hyperf": {
  2039. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2040. }
  2041. },
  2042. "autoload": {
  2043. "psr-4": {
  2044. "Hyperf\\DbConnection\\": "src/"
  2045. }
  2046. },
  2047. "notification-url": "https://packagist.org/downloads/",
  2048. "license": [
  2049. "MIT"
  2050. ],
  2051. "description": "A hyperf db connection handler for hyperf/database.",
  2052. "homepage": "https://hyperf.io",
  2053. "keywords": [
  2054. "Connection",
  2055. "database",
  2056. "hyperf",
  2057. "php"
  2058. ],
  2059. "support": {
  2060. "docs": "https://hyperf.wiki",
  2061. "issues": "https://github.com/hyperf/hyperf/issues",
  2062. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2063. "source": "https://github.com/hyperf/hyperf"
  2064. },
  2065. "funding": [
  2066. {
  2067. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2068. "type": "custom"
  2069. },
  2070. {
  2071. "url": "https://opencollective.com/hyperf",
  2072. "type": "open_collective"
  2073. }
  2074. ],
  2075. "time": "2024-03-23T11:28:51+00:00"
  2076. },
  2077. {
  2078. "name": "hyperf/di",
  2079. "version": "v3.1.28",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/hyperf/di.git",
  2083. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/hyperf/di/zipball/6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2088. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "doctrine/instantiator": "^1.0",
  2093. "hyperf/code-parser": "~3.1.0",
  2094. "hyperf/pipeline": "~3.1.0",
  2095. "hyperf/stdlib": "~3.1.0",
  2096. "hyperf/support": "~3.1.0",
  2097. "nikic/php-parser": "^4.1",
  2098. "php": ">=8.1",
  2099. "php-di/phpdoc-reader": "^2.2",
  2100. "psr/container": "^1.0 || ^2.0",
  2101. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2102. "vlucas/phpdotenv": "^5.0"
  2103. },
  2104. "suggest": {
  2105. "ext-pcntl": "Required to scan annotations.",
  2106. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2107. },
  2108. "type": "library",
  2109. "extra": {
  2110. "branch-alias": {
  2111. "dev-master": "3.1-dev"
  2112. },
  2113. "hyperf": {
  2114. "config": "Hyperf\\Di\\ConfigProvider"
  2115. }
  2116. },
  2117. "autoload": {
  2118. "psr-4": {
  2119. "Hyperf\\Di\\": "src/"
  2120. }
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "MIT"
  2125. ],
  2126. "description": "A DI for Hyperf.",
  2127. "homepage": "https://hyperf.io",
  2128. "keywords": [
  2129. "annotation",
  2130. "di",
  2131. "hyperf",
  2132. "php",
  2133. "swoole"
  2134. ],
  2135. "support": {
  2136. "docs": "https://hyperf.wiki",
  2137. "issues": "https://github.com/hyperf/hyperf/issues",
  2138. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2139. "source": "https://github.com/hyperf/hyperf"
  2140. },
  2141. "funding": [
  2142. {
  2143. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2144. "type": "custom"
  2145. },
  2146. {
  2147. "url": "https://opencollective.com/hyperf",
  2148. "type": "open_collective"
  2149. }
  2150. ],
  2151. "time": "2024-06-26T03:31:21+00:00"
  2152. },
  2153. {
  2154. "name": "hyperf/dispatcher",
  2155. "version": "v3.1.15",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/hyperf/dispatcher.git",
  2159. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2164. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2165. "shasum": ""
  2166. },
  2167. "require": {
  2168. "hyperf/contract": "~3.1.0",
  2169. "php": ">=8.1",
  2170. "psr/container": "^1.0|^2.0",
  2171. "psr/http-message": "^1.0|^2.0",
  2172. "psr/http-server-middleware": "^1.0"
  2173. },
  2174. "type": "library",
  2175. "extra": {
  2176. "branch-alias": {
  2177. "dev-master": "3.1-dev"
  2178. },
  2179. "hyperf": {
  2180. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2181. }
  2182. },
  2183. "autoload": {
  2184. "psr-4": {
  2185. "Hyperf\\Dispatcher\\": "src/"
  2186. }
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "description": "A HTTP Server for Hyperf.",
  2193. "homepage": "https://hyperf.io",
  2194. "keywords": [
  2195. "dispatcher",
  2196. "filter",
  2197. "hyperf",
  2198. "middleware",
  2199. "php",
  2200. "swoole"
  2201. ],
  2202. "support": {
  2203. "docs": "https://hyperf.wiki",
  2204. "issues": "https://github.com/hyperf/hyperf/issues",
  2205. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2206. "source": "https://github.com/hyperf/hyperf"
  2207. },
  2208. "funding": [
  2209. {
  2210. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2211. "type": "custom"
  2212. },
  2213. {
  2214. "url": "https://opencollective.com/hyperf",
  2215. "type": "open_collective"
  2216. }
  2217. ],
  2218. "time": "2024-03-23T11:28:51+00:00"
  2219. },
  2220. {
  2221. "name": "hyperf/engine",
  2222. "version": "v2.11.0",
  2223. "source": {
  2224. "type": "git",
  2225. "url": "https://github.com/hyperf/engine.git",
  2226. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2227. },
  2228. "dist": {
  2229. "type": "zip",
  2230. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2231. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2232. "shasum": ""
  2233. },
  2234. "require": {
  2235. "hyperf/engine-contract": "~1.10.0",
  2236. "php": ">=8.0"
  2237. },
  2238. "conflict": {
  2239. "ext-swoole": "<5.0"
  2240. },
  2241. "require-dev": {
  2242. "friendsofphp/php-cs-fixer": "^3.0",
  2243. "hyperf/guzzle": "^3.0",
  2244. "hyperf/http-message": "^3.0",
  2245. "mockery/mockery": "^1.5",
  2246. "phpstan/phpstan": "^1.0",
  2247. "phpunit/phpunit": "^9.4",
  2248. "swoole/ide-helper": "5.*"
  2249. },
  2250. "suggest": {
  2251. "ext-sockets": "*",
  2252. "ext-swoole": ">=5.0",
  2253. "hyperf/http-message": "Required to use ResponseEmitter.",
  2254. "psr/http-message": "Required to use WebSocket Frame."
  2255. },
  2256. "type": "library",
  2257. "extra": {
  2258. "branch-alias": {
  2259. "dev-master": "2.11-dev"
  2260. },
  2261. "hyperf": {
  2262. "config": "Hyperf\\Engine\\ConfigProvider"
  2263. }
  2264. },
  2265. "autoload": {
  2266. "files": [
  2267. "src/Functions.php"
  2268. ],
  2269. "psr-4": {
  2270. "Hyperf\\Engine\\": "src/"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "description": "Coroutine engine provided by swoole.",
  2278. "keywords": [
  2279. "engine",
  2280. "hyperf",
  2281. "php",
  2282. "swoole"
  2283. ],
  2284. "support": {
  2285. "issues": "https://github.com/hyperf/engine/issues",
  2286. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2287. },
  2288. "funding": [
  2289. {
  2290. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2291. "type": "custom"
  2292. },
  2293. {
  2294. "url": "https://opencollective.com/hyperf",
  2295. "type": "open_collective"
  2296. }
  2297. ],
  2298. "time": "2024-04-17T13:36:28+00:00"
  2299. },
  2300. {
  2301. "name": "hyperf/engine-contract",
  2302. "version": "v1.10.1",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://github.com/hyperf/engine-contract.git",
  2306. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2311. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2312. "shasum": ""
  2313. },
  2314. "require": {
  2315. "php": ">=8.0"
  2316. },
  2317. "require-dev": {
  2318. "friendsofphp/php-cs-fixer": "^3.0",
  2319. "mockery/mockery": "^1.0",
  2320. "phpstan/phpstan": "^1.0",
  2321. "phpunit/phpunit": ">=7.0",
  2322. "psr/http-message": "^1.0",
  2323. "swoole/ide-helper": "^4.5"
  2324. },
  2325. "suggest": {
  2326. "psr/http-message": "Required to use WebSocket Frame."
  2327. },
  2328. "type": "library",
  2329. "extra": {
  2330. "branch-alias": {
  2331. "dev-master": "1.9-dev"
  2332. }
  2333. },
  2334. "autoload": {
  2335. "psr-4": {
  2336. "Hyperf\\Engine\\Contract\\": "src/"
  2337. }
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "MIT"
  2342. ],
  2343. "description": "Contract for Coroutine Engine",
  2344. "keywords": [
  2345. "contract",
  2346. "coroutine",
  2347. "engine",
  2348. "hyperf",
  2349. "php"
  2350. ],
  2351. "support": {
  2352. "issues": "https://github.com/hyperf/engine-contract/issues",
  2353. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2354. },
  2355. "funding": [
  2356. {
  2357. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2358. "type": "custom"
  2359. },
  2360. {
  2361. "url": "https://opencollective.com/hyperf",
  2362. "type": "open_collective"
  2363. }
  2364. ],
  2365. "time": "2024-04-17T13:34:51+00:00"
  2366. },
  2367. {
  2368. "name": "hyperf/event",
  2369. "version": "v3.1.15",
  2370. "source": {
  2371. "type": "git",
  2372. "url": "https://github.com/hyperf/event.git",
  2373. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2374. },
  2375. "dist": {
  2376. "type": "zip",
  2377. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2378. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2379. "shasum": ""
  2380. },
  2381. "require": {
  2382. "hyperf/contract": "~3.1.0",
  2383. "hyperf/stdlib": "~3.1.0",
  2384. "php": ">=8.1",
  2385. "psr/event-dispatcher": "^1.0"
  2386. },
  2387. "suggest": {
  2388. "hyperf/di": "Required to use annotatioins."
  2389. },
  2390. "type": "library",
  2391. "extra": {
  2392. "branch-alias": {
  2393. "dev-master": "3.1-dev"
  2394. },
  2395. "hyperf": {
  2396. "config": "Hyperf\\Event\\ConfigProvider"
  2397. }
  2398. },
  2399. "autoload": {
  2400. "psr-4": {
  2401. "Hyperf\\Event\\": "src/"
  2402. }
  2403. },
  2404. "notification-url": "https://packagist.org/downloads/",
  2405. "license": [
  2406. "MIT"
  2407. ],
  2408. "description": "an event manager that implements PSR-14.",
  2409. "homepage": "https://hyperf.io",
  2410. "keywords": [
  2411. "event",
  2412. "hyperf",
  2413. "php",
  2414. "swoole"
  2415. ],
  2416. "support": {
  2417. "docs": "https://hyperf.wiki",
  2418. "issues": "https://github.com/hyperf/hyperf/issues",
  2419. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2420. "source": "https://github.com/hyperf/hyperf"
  2421. },
  2422. "funding": [
  2423. {
  2424. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2425. "type": "custom"
  2426. },
  2427. {
  2428. "url": "https://opencollective.com/hyperf",
  2429. "type": "open_collective"
  2430. }
  2431. ],
  2432. "time": "2024-03-23T11:28:51+00:00"
  2433. },
  2434. {
  2435. "name": "hyperf/exception-handler",
  2436. "version": "v3.1.22",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/hyperf/exception-handler.git",
  2440. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2445. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2446. "shasum": ""
  2447. },
  2448. "require": {
  2449. "hyperf/context": "~3.1.0",
  2450. "hyperf/contract": "~3.1.0",
  2451. "hyperf/dispatcher": "~3.1.0",
  2452. "hyperf/http-message": "~3.1.0",
  2453. "hyperf/stdlib": "~3.1.0",
  2454. "hyperf/support": "~3.1.0",
  2455. "php": ">=8.1",
  2456. "psr/container": "^1.0|^2.0",
  2457. "psr/http-message": "^1.0|^2.0",
  2458. "swow/psr7-plus": "^1.0"
  2459. },
  2460. "suggest": {
  2461. "hyperf/di": "Required to use #[ExceptionHandler]",
  2462. "hyperf/event": "Required to use listeners",
  2463. "hyperf/framework": "Required to use listeners",
  2464. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2465. },
  2466. "type": "library",
  2467. "extra": {
  2468. "branch-alias": {
  2469. "dev-master": "3.1-dev"
  2470. },
  2471. "hyperf": {
  2472. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2473. }
  2474. },
  2475. "autoload": {
  2476. "psr-4": {
  2477. "Hyperf\\ExceptionHandler\\": "src/"
  2478. }
  2479. },
  2480. "notification-url": "https://packagist.org/downloads/",
  2481. "license": [
  2482. "MIT"
  2483. ],
  2484. "description": "Exception handler for hyperf",
  2485. "homepage": "https://hyperf.io",
  2486. "keywords": [
  2487. "exception-handler",
  2488. "php",
  2489. "swoole"
  2490. ],
  2491. "support": {
  2492. "docs": "https://hyperf.wiki",
  2493. "issues": "https://github.com/hyperf/hyperf/issues",
  2494. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2495. "source": "https://github.com/hyperf/hyperf"
  2496. },
  2497. "funding": [
  2498. {
  2499. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2500. "type": "custom"
  2501. },
  2502. {
  2503. "url": "https://opencollective.com/hyperf",
  2504. "type": "open_collective"
  2505. }
  2506. ],
  2507. "time": "2024-05-15T07:12:41+00:00"
  2508. },
  2509. {
  2510. "name": "hyperf/framework",
  2511. "version": "v3.1.23",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/hyperf/framework.git",
  2515. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2520. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "fig/http-message-util": "^1.1.2",
  2525. "hyperf/contract": "~3.1.0",
  2526. "hyperf/coordinator": "~3.1.0",
  2527. "hyperf/coroutine": "~3.1.0",
  2528. "php": ">=8.1",
  2529. "psr/container": "^1.0|^2.0",
  2530. "psr/event-dispatcher": "^1.0",
  2531. "psr/log": "^1.0|^2.0|^3.0"
  2532. },
  2533. "suggest": {
  2534. "ext-swoole": "Required to use swoole engine.",
  2535. "hyperf/command": "Required to use Command annotation.",
  2536. "hyperf/di": "Required to use Command annotation.",
  2537. "hyperf/dispatcher": "Required to use BootApplication event.",
  2538. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2539. },
  2540. "type": "library",
  2541. "extra": {
  2542. "branch-alias": {
  2543. "dev-master": "3.1-dev"
  2544. },
  2545. "hyperf": {
  2546. "config": "Hyperf\\Framework\\ConfigProvider"
  2547. }
  2548. },
  2549. "autoload": {
  2550. "psr-4": {
  2551. "Hyperf\\Framework\\": "src/"
  2552. }
  2553. },
  2554. "notification-url": "https://packagist.org/downloads/",
  2555. "license": [
  2556. "MIT"
  2557. ],
  2558. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2559. "homepage": "https://hyperf.io",
  2560. "keywords": [
  2561. "Microservice",
  2562. "framework",
  2563. "hyperf",
  2564. "middleware",
  2565. "php",
  2566. "swoole"
  2567. ],
  2568. "support": {
  2569. "docs": "https://hyperf.wiki",
  2570. "issues": "https://github.com/hyperf/hyperf/issues",
  2571. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2572. "source": "https://github.com/hyperf/hyperf"
  2573. },
  2574. "funding": [
  2575. {
  2576. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2577. "type": "custom"
  2578. },
  2579. {
  2580. "url": "https://opencollective.com/hyperf",
  2581. "type": "open_collective"
  2582. }
  2583. ],
  2584. "time": "2024-05-21T05:43:48+00:00"
  2585. },
  2586. {
  2587. "name": "hyperf/guzzle",
  2588. "version": "v3.1.15",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/hyperf/guzzle.git",
  2592. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2597. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "guzzlehttp/guzzle": "^6.3|^7.0",
  2602. "php": ">=8.1",
  2603. "psr/container": "^1.0|^2.0",
  2604. "psr/http-message": "^1.0|^2.0"
  2605. },
  2606. "suggest": {
  2607. "ext-curl": "Required for CURL handler support",
  2608. "hyperf/pool": "Required to use pool handler."
  2609. },
  2610. "type": "library",
  2611. "extra": {
  2612. "branch-alias": {
  2613. "dev-master": "3.1-dev"
  2614. },
  2615. "hyperf": {
  2616. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2617. }
  2618. },
  2619. "autoload": {
  2620. "psr-4": {
  2621. "Hyperf\\Guzzle\\": "src/"
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "MIT"
  2627. ],
  2628. "description": "Swoole coroutine handler for guzzle",
  2629. "keywords": [
  2630. "Guzzle",
  2631. "handler",
  2632. "php",
  2633. "swoole"
  2634. ],
  2635. "support": {
  2636. "issues": "https://github.com/hyperf/guzzle/issues",
  2637. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2638. },
  2639. "funding": [
  2640. {
  2641. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2642. "type": "custom"
  2643. },
  2644. {
  2645. "url": "https://opencollective.com/hyperf",
  2646. "type": "open_collective"
  2647. }
  2648. ],
  2649. "time": "2024-03-23T11:28:51+00:00"
  2650. },
  2651. {
  2652. "name": "hyperf/http-message",
  2653. "version": "v3.1.19",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/hyperf/http-message.git",
  2657. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2662. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2663. "shasum": ""
  2664. },
  2665. "require": {
  2666. "hyperf/codec": "~3.1.0",
  2667. "hyperf/engine": "^2.11",
  2668. "hyperf/support": "~3.1.0",
  2669. "laminas/laminas-mime": "^2.7",
  2670. "php": ">=8.1",
  2671. "psr/http-message": "^1.0|^2.0",
  2672. "swow/psr7-plus": "^1.0"
  2673. },
  2674. "suggest": {
  2675. "psr/container": "Required to replace RequestParserInterface."
  2676. },
  2677. "type": "library",
  2678. "extra": {
  2679. "branch-alias": {
  2680. "dev-master": "3.1-dev"
  2681. },
  2682. "hyperf": {
  2683. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2684. }
  2685. },
  2686. "autoload": {
  2687. "psr-4": {
  2688. "Hyperf\\HttpMessage\\": "src/"
  2689. }
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "MIT"
  2694. ],
  2695. "description": "microservice framework base on swoole",
  2696. "keywords": [
  2697. "http-message",
  2698. "hyperf",
  2699. "php",
  2700. "swoole"
  2701. ],
  2702. "support": {
  2703. "issues": "https://github.com/hyperf/http-message/issues",
  2704. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2705. },
  2706. "funding": [
  2707. {
  2708. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2709. "type": "custom"
  2710. },
  2711. {
  2712. "url": "https://opencollective.com/hyperf",
  2713. "type": "open_collective"
  2714. }
  2715. ],
  2716. "time": "2024-04-17T13:55:51+00:00"
  2717. },
  2718. {
  2719. "name": "hyperf/http-server",
  2720. "version": "v3.1.17",
  2721. "source": {
  2722. "type": "git",
  2723. "url": "https://github.com/hyperf/http-server.git",
  2724. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2725. },
  2726. "dist": {
  2727. "type": "zip",
  2728. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2729. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2730. "shasum": ""
  2731. },
  2732. "require": {
  2733. "hyperf/codec": "~3.1.0",
  2734. "hyperf/collection": "~3.1.0",
  2735. "hyperf/context": "~3.1.0",
  2736. "hyperf/contract": "~3.1.0",
  2737. "hyperf/coroutine": "~3.1.0",
  2738. "hyperf/dispatcher": "~3.1.0",
  2739. "hyperf/event": "~3.1.0",
  2740. "hyperf/exception-handler": "~3.1.0",
  2741. "hyperf/http-message": "~3.1.0",
  2742. "hyperf/macroable": "~3.1.0",
  2743. "hyperf/serializer": "~3.1.0",
  2744. "hyperf/server": "~3.1.0",
  2745. "hyperf/stdlib": "~3.1.0",
  2746. "hyperf/support": "~3.1.0",
  2747. "nikic/fast-route": "^1.3",
  2748. "php": ">=8.1",
  2749. "psr/container": "^1.0|^2.0",
  2750. "swow/psr7-plus": "^1.0"
  2751. },
  2752. "suggest": {
  2753. "hyperf/di": "Required to use annotations."
  2754. },
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-master": "3.1-dev"
  2759. },
  2760. "hyperf": {
  2761. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2762. }
  2763. },
  2764. "autoload": {
  2765. "psr-4": {
  2766. "Hyperf\\HttpServer\\": "src/"
  2767. }
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "description": "A HTTP Server for Hyperf.",
  2774. "homepage": "https://hyperf.io",
  2775. "keywords": [
  2776. "http",
  2777. "http-server",
  2778. "hyperf",
  2779. "php",
  2780. "swoole"
  2781. ],
  2782. "support": {
  2783. "docs": "https://hyperf.wiki",
  2784. "issues": "https://github.com/hyperf/hyperf/issues",
  2785. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2786. "source": "https://github.com/hyperf/hyperf"
  2787. },
  2788. "funding": [
  2789. {
  2790. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2791. "type": "custom"
  2792. },
  2793. {
  2794. "url": "https://opencollective.com/hyperf",
  2795. "type": "open_collective"
  2796. }
  2797. ],
  2798. "time": "2024-04-08T07:53:54+00:00"
  2799. },
  2800. {
  2801. "name": "hyperf/json-rpc",
  2802. "version": "v3.1.23",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://github.com/hyperf/json-rpc.git",
  2806. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2811. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2812. "shasum": ""
  2813. },
  2814. "require": {
  2815. "hyperf/codec": "~3.1.0",
  2816. "hyperf/context": "~3.1.0",
  2817. "hyperf/contract": "~3.1.0",
  2818. "hyperf/engine": "^2.0",
  2819. "hyperf/http-message": "~3.1.0",
  2820. "hyperf/load-balancer": "~3.1.0",
  2821. "hyperf/rpc": "~3.1.0",
  2822. "hyperf/serializer": "~3.1.0",
  2823. "hyperf/support": "~3.1.0",
  2824. "hyperf/utils": "~3.1.0",
  2825. "php": ">=8.1",
  2826. "psr/container": "^1.0|^2.0",
  2827. "swow/psr7-plus": "^1.0"
  2828. },
  2829. "suggest": {
  2830. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2831. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2832. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2833. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2834. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2835. },
  2836. "type": "library",
  2837. "extra": {
  2838. "branch-alias": {
  2839. "dev-master": "3.1-dev"
  2840. },
  2841. "hyperf": {
  2842. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2843. }
  2844. },
  2845. "autoload": {
  2846. "psr-4": {
  2847. "Hyperf\\JsonRpc\\": "src/"
  2848. }
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2855. "homepage": "https://hyperf.io",
  2856. "keywords": [
  2857. "hyperf",
  2858. "json-rpc",
  2859. "php",
  2860. "swoole"
  2861. ],
  2862. "support": {
  2863. "docs": "https://hyperf.wiki",
  2864. "issues": "https://github.com/hyperf/hyperf/issues",
  2865. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2866. "source": "https://github.com/hyperf/hyperf"
  2867. },
  2868. "funding": [
  2869. {
  2870. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2871. "type": "custom"
  2872. },
  2873. {
  2874. "url": "https://opencollective.com/hyperf",
  2875. "type": "open_collective"
  2876. }
  2877. ],
  2878. "time": "2024-05-23T03:43:58+00:00"
  2879. },
  2880. {
  2881. "name": "hyperf/load-balancer",
  2882. "version": "v3.1.15",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/hyperf/load-balancer.git",
  2886. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2891. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2892. "shasum": ""
  2893. },
  2894. "require": {
  2895. "hyperf/coordinator": "~3.1.0",
  2896. "hyperf/coroutine": "~3.1.0",
  2897. "markrogoyski/math-php": "^2.0",
  2898. "php": ">=8.1",
  2899. "psr/log": "^1.0|^2.0|^3.0"
  2900. },
  2901. "type": "library",
  2902. "extra": {
  2903. "branch-alias": {
  2904. "dev-master": "3.1-dev"
  2905. },
  2906. "hyperf": {
  2907. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2908. }
  2909. },
  2910. "autoload": {
  2911. "psr-4": {
  2912. "Hyperf\\LoadBalancer\\": "src/"
  2913. }
  2914. },
  2915. "notification-url": "https://packagist.org/downloads/",
  2916. "license": [
  2917. "MIT"
  2918. ],
  2919. "description": "A load balancer library for Hyperf.",
  2920. "homepage": "https://hyperf.io",
  2921. "keywords": [
  2922. "hyperf",
  2923. "load-balancer",
  2924. "php",
  2925. "swoole"
  2926. ],
  2927. "support": {
  2928. "docs": "https://hyperf.wiki",
  2929. "issues": "https://github.com/hyperf/hyperf/issues",
  2930. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2931. "source": "https://github.com/hyperf/hyperf"
  2932. },
  2933. "funding": [
  2934. {
  2935. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2936. "type": "custom"
  2937. },
  2938. {
  2939. "url": "https://opencollective.com/hyperf",
  2940. "type": "open_collective"
  2941. }
  2942. ],
  2943. "time": "2024-03-23T11:28:51+00:00"
  2944. },
  2945. {
  2946. "name": "hyperf/logger",
  2947. "version": "v3.1.15",
  2948. "source": {
  2949. "type": "git",
  2950. "url": "https://github.com/hyperf/logger.git",
  2951. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2952. },
  2953. "dist": {
  2954. "type": "zip",
  2955. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2956. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2957. "shasum": ""
  2958. },
  2959. "require": {
  2960. "hyperf/contract": "~3.1.0",
  2961. "hyperf/support": "~3.1.0",
  2962. "hyperf/utils": "~3.1.0",
  2963. "monolog/monolog": "^2.7|^3.1",
  2964. "php": ">=8.1",
  2965. "psr/container": "^1.0|^2.0",
  2966. "psr/log": "^1.0|^2.0|^3.0"
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-master": "3.1-dev"
  2972. },
  2973. "hyperf": {
  2974. "config": "Hyperf\\Logger\\ConfigProvider"
  2975. }
  2976. },
  2977. "autoload": {
  2978. "psr-4": {
  2979. "Hyperf\\Logger\\": "src/"
  2980. }
  2981. },
  2982. "notification-url": "https://packagist.org/downloads/",
  2983. "license": [
  2984. "MIT"
  2985. ],
  2986. "description": "A logger component for hyperf.",
  2987. "homepage": "https://hyperf.io",
  2988. "keywords": [
  2989. "hyperf",
  2990. "logger",
  2991. "php"
  2992. ],
  2993. "support": {
  2994. "docs": "https://hyperf.wiki",
  2995. "issues": "https://github.com/hyperf/hyperf/issues",
  2996. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2997. "source": "https://github.com/hyperf/hyperf"
  2998. },
  2999. "funding": [
  3000. {
  3001. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3002. "type": "custom"
  3003. },
  3004. {
  3005. "url": "https://opencollective.com/hyperf",
  3006. "type": "open_collective"
  3007. }
  3008. ],
  3009. "time": "2024-03-23T11:28:51+00:00"
  3010. },
  3011. {
  3012. "name": "hyperf/macroable",
  3013. "version": "v3.1.23",
  3014. "source": {
  3015. "type": "git",
  3016. "url": "https://github.com/hyperf/macroable.git",
  3017. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3018. },
  3019. "dist": {
  3020. "type": "zip",
  3021. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3022. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3023. "shasum": ""
  3024. },
  3025. "require": {
  3026. "php": ">=8.1"
  3027. },
  3028. "type": "library",
  3029. "extra": {
  3030. "branch-alias": {
  3031. "dev-master": "3.1-dev"
  3032. }
  3033. },
  3034. "autoload": {
  3035. "psr-4": {
  3036. "Hyperf\\Macroable\\": "src/"
  3037. }
  3038. },
  3039. "notification-url": "https://packagist.org/downloads/",
  3040. "license": [
  3041. "MIT"
  3042. ],
  3043. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3044. "homepage": "https://hyperf.io",
  3045. "keywords": [
  3046. "hyperf",
  3047. "macroable",
  3048. "php",
  3049. "swoole"
  3050. ],
  3051. "support": {
  3052. "docs": "https://hyperf.wiki",
  3053. "issues": "https://github.com/hyperf/hyperf/issues",
  3054. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3055. "source": "https://github.com/hyperf/hyperf"
  3056. },
  3057. "funding": [
  3058. {
  3059. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3060. "type": "custom"
  3061. },
  3062. {
  3063. "url": "https://opencollective.com/hyperf",
  3064. "type": "open_collective"
  3065. }
  3066. ],
  3067. "time": "2024-05-20T09:55:40+00:00"
  3068. },
  3069. {
  3070. "name": "hyperf/memory",
  3071. "version": "v3.1.15",
  3072. "source": {
  3073. "type": "git",
  3074. "url": "https://github.com/hyperf/memory.git",
  3075. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3076. },
  3077. "dist": {
  3078. "type": "zip",
  3079. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3080. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3081. "shasum": ""
  3082. },
  3083. "require": {
  3084. "php": ">=8.1"
  3085. },
  3086. "type": "library",
  3087. "extra": {
  3088. "branch-alias": {
  3089. "dev-master": "3.1-dev"
  3090. },
  3091. "hyperf": {
  3092. "config": "Hyperf\\Memory\\ConfigProvider"
  3093. }
  3094. },
  3095. "autoload": {
  3096. "psr-4": {
  3097. "Hyperf\\Memory\\": "src/"
  3098. }
  3099. },
  3100. "notification-url": "https://packagist.org/downloads/",
  3101. "license": [
  3102. "MIT"
  3103. ],
  3104. "description": "An independent component that use to operate and manage memory.",
  3105. "homepage": "https://hyperf.io",
  3106. "keywords": [
  3107. "hyperf",
  3108. "memory",
  3109. "php",
  3110. "swoole"
  3111. ],
  3112. "support": {
  3113. "docs": "https://hyperf.wiki",
  3114. "issues": "https://github.com/hyperf/hyperf/issues",
  3115. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3116. "source": "https://github.com/hyperf/hyperf"
  3117. },
  3118. "funding": [
  3119. {
  3120. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3121. "type": "custom"
  3122. },
  3123. {
  3124. "url": "https://opencollective.com/hyperf",
  3125. "type": "open_collective"
  3126. }
  3127. ],
  3128. "time": "2024-03-23T11:28:51+00:00"
  3129. },
  3130. {
  3131. "name": "hyperf/model-listener",
  3132. "version": "v3.1.15",
  3133. "source": {
  3134. "type": "git",
  3135. "url": "https://github.com/hyperf/model-listener.git",
  3136. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3137. },
  3138. "dist": {
  3139. "type": "zip",
  3140. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3141. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3142. "shasum": ""
  3143. },
  3144. "require": {
  3145. "hyperf/contract": "~3.1.0",
  3146. "hyperf/database": "~3.1.0",
  3147. "hyperf/di": "~3.1.0",
  3148. "hyperf/event": "~3.1.0",
  3149. "hyperf/support": "~3.1.0",
  3150. "hyperf/utils": "~3.1.0",
  3151. "php": ">=8.1",
  3152. "psr/container": "^1.0|^2.0"
  3153. },
  3154. "type": "library",
  3155. "extra": {
  3156. "branch-alias": {
  3157. "dev-master": "3.1-dev"
  3158. },
  3159. "hyperf": {
  3160. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3161. }
  3162. },
  3163. "autoload": {
  3164. "psr-4": {
  3165. "Hyperf\\ModelListener\\": "src/"
  3166. }
  3167. },
  3168. "notification-url": "https://packagist.org/downloads/",
  3169. "license": [
  3170. "MIT"
  3171. ],
  3172. "description": "A model listener for Hyperf.",
  3173. "homepage": "https://hyperf.io",
  3174. "keywords": [
  3175. "hyperf",
  3176. "model-listener",
  3177. "php",
  3178. "swoole"
  3179. ],
  3180. "support": {
  3181. "docs": "https://hyperf.wiki",
  3182. "issues": "https://github.com/hyperf/hyperf/issues",
  3183. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3184. "source": "https://github.com/hyperf/hyperf"
  3185. },
  3186. "funding": [
  3187. {
  3188. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3189. "type": "custom"
  3190. },
  3191. {
  3192. "url": "https://opencollective.com/hyperf",
  3193. "type": "open_collective"
  3194. }
  3195. ],
  3196. "time": "2024-03-23T11:28:51+00:00"
  3197. },
  3198. {
  3199. "name": "hyperf/nacos",
  3200. "version": "v3.1.15",
  3201. "source": {
  3202. "type": "git",
  3203. "url": "https://github.com/hyperf/nacos.git",
  3204. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3205. },
  3206. "dist": {
  3207. "type": "zip",
  3208. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3209. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3210. "shasum": ""
  3211. },
  3212. "require": {
  3213. "guzzlehttp/guzzle": "^6.5|^7.0",
  3214. "hyperf/codec": "~3.1.0",
  3215. "hyperf/contract": "~3.1.0",
  3216. "hyperf/support": "~3.1.0",
  3217. "hyperf/utils": "~3.1.0",
  3218. "jetbrains/phpstorm-attributes": "^1.0",
  3219. "php": ">=8.1"
  3220. },
  3221. "type": "library",
  3222. "extra": {
  3223. "branch-alias": {
  3224. "dev-master": "3.1-dev"
  3225. },
  3226. "hyperf": {
  3227. "config": "Hyperf\\Nacos\\ConfigProvider"
  3228. }
  3229. },
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Hyperf\\Nacos\\": "src/"
  3233. }
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "MIT"
  3238. ],
  3239. "description": "Nacos SDK",
  3240. "keywords": [
  3241. "hyperf",
  3242. "nacos",
  3243. "php"
  3244. ],
  3245. "support": {
  3246. "issues": "https://github.com/hyperf/nacos/issues",
  3247. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3252. "type": "custom"
  3253. },
  3254. {
  3255. "url": "https://opencollective.com/hyperf",
  3256. "type": "open_collective"
  3257. }
  3258. ],
  3259. "time": "2024-03-23T11:28:51+00:00"
  3260. },
  3261. {
  3262. "name": "hyperf/paginator",
  3263. "version": "v3.1.49",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/hyperf/paginator.git",
  3267. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3272. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3273. "shasum": ""
  3274. },
  3275. "require": {
  3276. "hyperf/contract": "~3.1.0",
  3277. "hyperf/support": "~3.1.0",
  3278. "hyperf/utils": "~3.1.0",
  3279. "php": ">=8.1"
  3280. },
  3281. "suggest": {
  3282. "hyperf/event": "Reqiured to use PageResolverListener.",
  3283. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3284. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3285. },
  3286. "type": "library",
  3287. "extra": {
  3288. "hyperf": {
  3289. "config": "Hyperf\\Paginator\\ConfigProvider"
  3290. },
  3291. "branch-alias": {
  3292. "dev-master": "3.1-dev"
  3293. }
  3294. },
  3295. "autoload": {
  3296. "psr-4": {
  3297. "Hyperf\\Paginator\\": "src/"
  3298. }
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "description": "A paginator component for hyperf.",
  3305. "homepage": "https://hyperf.io",
  3306. "keywords": [
  3307. "hyperf",
  3308. "paginator",
  3309. "php"
  3310. ],
  3311. "support": {
  3312. "docs": "https://hyperf.wiki",
  3313. "issues": "https://github.com/hyperf/hyperf/issues",
  3314. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3315. "source": "https://github.com/hyperf/hyperf"
  3316. },
  3317. "funding": [
  3318. {
  3319. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3320. "type": "custom"
  3321. },
  3322. {
  3323. "url": "https://opencollective.com/hyperf",
  3324. "type": "open_collective"
  3325. }
  3326. ],
  3327. "time": "2024-12-17T09:42:13+00:00"
  3328. },
  3329. {
  3330. "name": "hyperf/pipeline",
  3331. "version": "v3.1.15",
  3332. "source": {
  3333. "type": "git",
  3334. "url": "https://github.com/hyperf/pipeline.git",
  3335. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3336. },
  3337. "dist": {
  3338. "type": "zip",
  3339. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3340. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3341. "shasum": ""
  3342. },
  3343. "require": {
  3344. "php": ">=8.1",
  3345. "psr/container": "^1.0|^2.0"
  3346. },
  3347. "type": "library",
  3348. "extra": {
  3349. "branch-alias": {
  3350. "dev-master": "3.1-dev"
  3351. }
  3352. },
  3353. "autoload": {
  3354. "psr-4": {
  3355. "Hyperf\\Pipeline\\": "src/"
  3356. }
  3357. },
  3358. "notification-url": "https://packagist.org/downloads/",
  3359. "license": [
  3360. "MIT"
  3361. ],
  3362. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3363. "homepage": "https://hyperf.io",
  3364. "keywords": [
  3365. "hyperf",
  3366. "php",
  3367. "pipeline",
  3368. "swoole"
  3369. ],
  3370. "support": {
  3371. "docs": "https://hyperf.wiki",
  3372. "issues": "https://github.com/hyperf/hyperf/issues",
  3373. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3374. "source": "https://github.com/hyperf/hyperf"
  3375. },
  3376. "funding": [
  3377. {
  3378. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3379. "type": "custom"
  3380. },
  3381. {
  3382. "url": "https://opencollective.com/hyperf",
  3383. "type": "open_collective"
  3384. }
  3385. ],
  3386. "time": "2024-03-23T11:28:51+00:00"
  3387. },
  3388. {
  3389. "name": "hyperf/pool",
  3390. "version": "v3.1.15",
  3391. "source": {
  3392. "type": "git",
  3393. "url": "https://github.com/hyperf/pool.git",
  3394. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3395. },
  3396. "dist": {
  3397. "type": "zip",
  3398. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3399. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3400. "shasum": ""
  3401. },
  3402. "require": {
  3403. "hyperf/contract": "~3.1.0",
  3404. "hyperf/support": "~3.1.0",
  3405. "hyperf/utils": "~3.1.0",
  3406. "php": ">=8.1",
  3407. "psr/container": "^1.0|^2.0"
  3408. },
  3409. "suggest": {
  3410. "psr/event-dispatcher": "Required to use events."
  3411. },
  3412. "type": "library",
  3413. "extra": {
  3414. "branch-alias": {
  3415. "dev-master": "3.1-dev"
  3416. },
  3417. "hyperf": {
  3418. "config": "Hyperf\\Pool\\ConfigProvider"
  3419. }
  3420. },
  3421. "autoload": {
  3422. "psr-4": {
  3423. "Hyperf\\Pool\\": "src/"
  3424. }
  3425. },
  3426. "notification-url": "https://packagist.org/downloads/",
  3427. "license": [
  3428. "MIT"
  3429. ],
  3430. "description": "An independent universal connection pool component.",
  3431. "homepage": "https://hyperf.io",
  3432. "keywords": [
  3433. "connection-pool",
  3434. "hyperf",
  3435. "php",
  3436. "swoole"
  3437. ],
  3438. "support": {
  3439. "docs": "https://hyperf.wiki",
  3440. "issues": "https://github.com/hyperf/hyperf/issues",
  3441. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3442. "source": "https://github.com/hyperf/hyperf"
  3443. },
  3444. "funding": [
  3445. {
  3446. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3447. "type": "custom"
  3448. },
  3449. {
  3450. "url": "https://opencollective.com/hyperf",
  3451. "type": "open_collective"
  3452. }
  3453. ],
  3454. "time": "2024-03-23T11:28:51+00:00"
  3455. },
  3456. {
  3457. "name": "hyperf/process",
  3458. "version": "v3.1.15",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://github.com/hyperf/process.git",
  3462. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3467. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3468. "shasum": ""
  3469. },
  3470. "require": {
  3471. "hyperf/contract": "~3.1.0",
  3472. "hyperf/support": "~3.1.0",
  3473. "hyperf/utils": "~3.1.0",
  3474. "php": ">=8.1",
  3475. "psr/container": "^1.0|^2.0",
  3476. "psr/event-dispatcher": "^1.0"
  3477. },
  3478. "suggest": {
  3479. "hyperf/di": "Required to use annotations.",
  3480. "hyperf/event": "Required to dump the message before and after process.",
  3481. "hyperf/framework": "Required to use BootProcessListener."
  3482. },
  3483. "type": "library",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-master": "3.1-dev"
  3487. },
  3488. "hyperf": {
  3489. "config": "Hyperf\\Process\\ConfigProvider"
  3490. }
  3491. },
  3492. "autoload": {
  3493. "psr-4": {
  3494. "Hyperf\\Process\\": "src/"
  3495. }
  3496. },
  3497. "notification-url": "https://packagist.org/downloads/",
  3498. "license": [
  3499. "MIT"
  3500. ],
  3501. "description": "A process component for hyperf.",
  3502. "homepage": "https://hyperf.io",
  3503. "keywords": [
  3504. "hyperf",
  3505. "php",
  3506. "process"
  3507. ],
  3508. "support": {
  3509. "docs": "https://hyperf.wiki",
  3510. "issues": "https://github.com/hyperf/hyperf/issues",
  3511. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3512. "source": "https://github.com/hyperf/hyperf"
  3513. },
  3514. "funding": [
  3515. {
  3516. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3517. "type": "custom"
  3518. },
  3519. {
  3520. "url": "https://opencollective.com/hyperf",
  3521. "type": "open_collective"
  3522. }
  3523. ],
  3524. "time": "2024-03-23T11:28:51+00:00"
  3525. },
  3526. {
  3527. "name": "hyperf/redis",
  3528. "version": "v3.1.18",
  3529. "source": {
  3530. "type": "git",
  3531. "url": "https://github.com/hyperf/redis.git",
  3532. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3533. },
  3534. "dist": {
  3535. "type": "zip",
  3536. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3537. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3538. "shasum": ""
  3539. },
  3540. "require": {
  3541. "ext-redis": "^5.0|^6.0",
  3542. "hyperf/contract": "~3.1.0",
  3543. "hyperf/pool": "~3.1.0",
  3544. "hyperf/support": "~3.1.0",
  3545. "hyperf/tappable": "~3.1.0",
  3546. "hyperf/utils": "~3.1.0",
  3547. "php": ">=8.1",
  3548. "psr/container": "^1.0|^2.0"
  3549. },
  3550. "suggest": {
  3551. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3552. "hyperf/di": "Create the RedisPool via dependency injection."
  3553. },
  3554. "type": "library",
  3555. "extra": {
  3556. "branch-alias": {
  3557. "dev-master": "3.1-dev"
  3558. },
  3559. "hyperf": {
  3560. "config": "Hyperf\\Redis\\ConfigProvider"
  3561. }
  3562. },
  3563. "autoload": {
  3564. "psr-4": {
  3565. "Hyperf\\Redis\\": "src/"
  3566. }
  3567. },
  3568. "notification-url": "https://packagist.org/downloads/",
  3569. "license": [
  3570. "MIT"
  3571. ],
  3572. "description": "A redis component for hyperf.",
  3573. "homepage": "https://hyperf.io",
  3574. "keywords": [
  3575. "hyperf",
  3576. "php",
  3577. "pool",
  3578. "redis"
  3579. ],
  3580. "support": {
  3581. "docs": "https://hyperf.wiki",
  3582. "issues": "https://github.com/hyperf/hyperf/issues",
  3583. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3584. "source": "https://github.com/hyperf/hyperf"
  3585. },
  3586. "funding": [
  3587. {
  3588. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3589. "type": "custom"
  3590. },
  3591. {
  3592. "url": "https://opencollective.com/hyperf",
  3593. "type": "open_collective"
  3594. }
  3595. ],
  3596. "time": "2024-04-11T10:18:35+00:00"
  3597. },
  3598. {
  3599. "name": "hyperf/rpc",
  3600. "version": "v3.1.15",
  3601. "source": {
  3602. "type": "git",
  3603. "url": "https://github.com/hyperf/rpc.git",
  3604. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3605. },
  3606. "dist": {
  3607. "type": "zip",
  3608. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3609. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3610. "shasum": ""
  3611. },
  3612. "require": {
  3613. "hyperf/codec": "~3.1.0",
  3614. "hyperf/contract": "~3.1.0",
  3615. "hyperf/support": "~3.1.0",
  3616. "jetbrains/phpstorm-attributes": "^1.0",
  3617. "php": ">=8.1"
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "branch-alias": {
  3622. "dev-master": "3.1-dev"
  3623. },
  3624. "hyperf": []
  3625. },
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Hyperf\\Rpc\\": "src/"
  3629. }
  3630. },
  3631. "notification-url": "https://packagist.org/downloads/",
  3632. "license": [
  3633. "MIT"
  3634. ],
  3635. "description": "A rpc basic library for Hyperf.",
  3636. "homepage": "https://hyperf.io",
  3637. "keywords": [
  3638. "hyperf",
  3639. "php",
  3640. "rpc",
  3641. "swoole"
  3642. ],
  3643. "support": {
  3644. "docs": "https://hyperf.wiki",
  3645. "issues": "https://github.com/hyperf/hyperf/issues",
  3646. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3647. "source": "https://github.com/hyperf/hyperf"
  3648. },
  3649. "funding": [
  3650. {
  3651. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3652. "type": "custom"
  3653. },
  3654. {
  3655. "url": "https://opencollective.com/hyperf",
  3656. "type": "open_collective"
  3657. }
  3658. ],
  3659. "time": "2024-03-23T11:28:51+00:00"
  3660. },
  3661. {
  3662. "name": "hyperf/rpc-server",
  3663. "version": "v3.1.20",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/hyperf/rpc-server.git",
  3667. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3672. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3673. "shasum": ""
  3674. },
  3675. "require": {
  3676. "hyperf/http-server": "~3.1.0",
  3677. "hyperf/rpc": "~3.1.0",
  3678. "php": ">=8.1"
  3679. },
  3680. "suggest": {
  3681. "hyperf/di": "Required to use annotations."
  3682. },
  3683. "type": "library",
  3684. "extra": {
  3685. "branch-alias": {
  3686. "dev-master": "3.1-dev"
  3687. },
  3688. "hyperf": {
  3689. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3690. }
  3691. },
  3692. "autoload": {
  3693. "psr-4": {
  3694. "Hyperf\\RpcServer\\": "src/"
  3695. }
  3696. },
  3697. "notification-url": "https://packagist.org/downloads/",
  3698. "license": [
  3699. "MIT"
  3700. ],
  3701. "description": "An abstract rpc server component for Hyperf.",
  3702. "homepage": "https://hyperf.io",
  3703. "keywords": [
  3704. "hyperf",
  3705. "php",
  3706. "rpc",
  3707. "rpc-server",
  3708. "swoole"
  3709. ],
  3710. "support": {
  3711. "docs": "https://hyperf.wiki",
  3712. "issues": "https://github.com/hyperf/hyperf/issues",
  3713. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3714. "source": "https://github.com/hyperf/hyperf"
  3715. },
  3716. "funding": [
  3717. {
  3718. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3719. "type": "custom"
  3720. },
  3721. {
  3722. "url": "https://opencollective.com/hyperf",
  3723. "type": "open_collective"
  3724. }
  3725. ],
  3726. "time": "2024-04-22T01:46:29+00:00"
  3727. },
  3728. {
  3729. "name": "hyperf/serializer",
  3730. "version": "v3.1.23",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/hyperf/serializer.git",
  3734. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3739. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "hyperf/contract": "~3.1.0",
  3744. "php": ">=8.1"
  3745. },
  3746. "suggest": {
  3747. "hyperf/di": "Required to use ExceptionNormalizer",
  3748. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3749. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3750. },
  3751. "type": "library",
  3752. "extra": {
  3753. "branch-alias": {
  3754. "dev-master": "3.1-dev"
  3755. },
  3756. "hyperf": {
  3757. "config": "Hyperf\\Serializer\\ConfigProvider"
  3758. }
  3759. },
  3760. "autoload": {
  3761. "psr-4": {
  3762. "Hyperf\\Serializer\\": "src/"
  3763. }
  3764. },
  3765. "notification-url": "https://packagist.org/downloads/",
  3766. "license": [
  3767. "MIT"
  3768. ],
  3769. "description": "A serializer component for Hyperf.",
  3770. "homepage": "https://hyperf.io",
  3771. "keywords": [
  3772. "hyperf",
  3773. "php",
  3774. "swoole",
  3775. "tappable"
  3776. ],
  3777. "support": {
  3778. "docs": "https://hyperf.wiki",
  3779. "issues": "https://github.com/hyperf/hyperf/issues",
  3780. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3781. "source": "https://github.com/hyperf/hyperf"
  3782. },
  3783. "funding": [
  3784. {
  3785. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3786. "type": "custom"
  3787. },
  3788. {
  3789. "url": "https://opencollective.com/hyperf",
  3790. "type": "open_collective"
  3791. }
  3792. ],
  3793. "time": "2024-05-23T03:43:58+00:00"
  3794. },
  3795. {
  3796. "name": "hyperf/server",
  3797. "version": "v3.1.23",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/hyperf/server.git",
  3801. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3806. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3807. "shasum": ""
  3808. },
  3809. "require": {
  3810. "hyperf/contract": "~3.1.0",
  3811. "hyperf/coordinator": "~3.1.0",
  3812. "hyperf/engine": "^2.8",
  3813. "hyperf/support": "~3.1.0",
  3814. "hyperf/tappable": "~3.1.0",
  3815. "php": ">=8.1",
  3816. "psr/container": "^1.0|^2.0",
  3817. "psr/event-dispatcher": "^1.0",
  3818. "psr/log": "^1.0|^2.0|^3.0",
  3819. "symfony/console": "^5.0|^6.0|^7.0"
  3820. },
  3821. "suggest": {
  3822. "hyperf/event": "Dump the info after server start.",
  3823. "hyperf/framework": "Dump the info after server start."
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "branch-alias": {
  3828. "dev-master": "3.1-dev"
  3829. },
  3830. "hyperf": {
  3831. "config": "Hyperf\\Server\\ConfigProvider"
  3832. }
  3833. },
  3834. "autoload": {
  3835. "psr-4": {
  3836. "Hyperf\\Server\\": "src/"
  3837. }
  3838. },
  3839. "notification-url": "https://packagist.org/downloads/",
  3840. "license": [
  3841. "MIT"
  3842. ],
  3843. "description": "A base server library for Hyperf.",
  3844. "homepage": "https://hyperf.io",
  3845. "keywords": [
  3846. "hyperf",
  3847. "php",
  3848. "server",
  3849. "swoole"
  3850. ],
  3851. "support": {
  3852. "docs": "https://hyperf.wiki",
  3853. "issues": "https://github.com/hyperf/hyperf/issues",
  3854. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3855. "source": "https://github.com/hyperf/hyperf"
  3856. },
  3857. "funding": [
  3858. {
  3859. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3860. "type": "custom"
  3861. },
  3862. {
  3863. "url": "https://opencollective.com/hyperf",
  3864. "type": "open_collective"
  3865. }
  3866. ],
  3867. "time": "2024-05-23T03:43:58+00:00"
  3868. },
  3869. {
  3870. "name": "hyperf/service-governance",
  3871. "version": "v3.1.15",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://github.com/hyperf/service-governance.git",
  3875. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3880. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3881. "shasum": ""
  3882. },
  3883. "require": {
  3884. "hyperf/contract": "~3.1.0",
  3885. "hyperf/support": "~3.1.0",
  3886. "jetbrains/phpstorm-attributes": "^1.0",
  3887. "php": ">=8.1"
  3888. },
  3889. "suggest": {
  3890. "hyperf/event": "Required to use RegisterServiceListener.",
  3891. "hyperf/framework": "Required to use RegisterServiceListener.",
  3892. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3893. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3894. },
  3895. "type": "library",
  3896. "extra": {
  3897. "branch-alias": {
  3898. "dev-master": "3.1-dev"
  3899. },
  3900. "hyperf": {
  3901. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3902. }
  3903. },
  3904. "autoload": {
  3905. "psr-4": {
  3906. "Hyperf\\ServiceGovernance\\": "src/"
  3907. }
  3908. },
  3909. "notification-url": "https://packagist.org/downloads/",
  3910. "license": [
  3911. "MIT"
  3912. ],
  3913. "description": "A service governance component for Hyperf.",
  3914. "homepage": "https://hyperf.io",
  3915. "keywords": [
  3916. "hyperf",
  3917. "php",
  3918. "service-governance",
  3919. "swoole"
  3920. ],
  3921. "support": {
  3922. "docs": "https://hyperf.wiki",
  3923. "issues": "https://github.com/hyperf/hyperf/issues",
  3924. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3925. "source": "https://github.com/hyperf/hyperf"
  3926. },
  3927. "funding": [
  3928. {
  3929. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3930. "type": "custom"
  3931. },
  3932. {
  3933. "url": "https://opencollective.com/hyperf",
  3934. "type": "open_collective"
  3935. }
  3936. ],
  3937. "time": "2024-03-23T11:28:51+00:00"
  3938. },
  3939. {
  3940. "name": "hyperf/service-governance-consul",
  3941. "version": "v3.1.15",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/hyperf/service-governance-consul.git",
  3945. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3950. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3951. "shasum": ""
  3952. },
  3953. "require": {
  3954. "hyperf/consul": "~3.1.0",
  3955. "hyperf/contract": "~3.1.0",
  3956. "hyperf/service-governance": "~3.1.0",
  3957. "hyperf/support": "~3.1.0",
  3958. "hyperf/utils": "~3.1.0",
  3959. "php": ">=8.1"
  3960. },
  3961. "type": "library",
  3962. "extra": {
  3963. "branch-alias": {
  3964. "dev-master": "3.1-dev"
  3965. },
  3966. "hyperf": {
  3967. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3968. }
  3969. },
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3973. }
  3974. },
  3975. "notification-url": "https://packagist.org/downloads/",
  3976. "license": [
  3977. "MIT"
  3978. ],
  3979. "description": "A consul adapter for service governance.",
  3980. "homepage": "https://hyperf.io",
  3981. "keywords": [
  3982. "consul-adapter",
  3983. "hyperf",
  3984. "php",
  3985. "service-governance",
  3986. "swoole"
  3987. ],
  3988. "support": {
  3989. "docs": "https://hyperf.wiki",
  3990. "issues": "https://github.com/hyperf/hyperf/issues",
  3991. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3992. "source": "https://github.com/hyperf/hyperf"
  3993. },
  3994. "funding": [
  3995. {
  3996. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3997. "type": "custom"
  3998. },
  3999. {
  4000. "url": "https://opencollective.com/hyperf",
  4001. "type": "open_collective"
  4002. }
  4003. ],
  4004. "time": "2024-03-23T11:28:51+00:00"
  4005. },
  4006. {
  4007. "name": "hyperf/service-governance-nacos",
  4008. "version": "v3.1.15",
  4009. "source": {
  4010. "type": "git",
  4011. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4012. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4013. },
  4014. "dist": {
  4015. "type": "zip",
  4016. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4017. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4018. "shasum": ""
  4019. },
  4020. "require": {
  4021. "hyperf/codec": "~3.1.0",
  4022. "hyperf/contract": "~3.1.0",
  4023. "hyperf/nacos": "~3.1.0",
  4024. "hyperf/service-governance": "~3.1.0",
  4025. "hyperf/support": "~3.1.0",
  4026. "hyperf/utils": "~3.1.0",
  4027. "php": ">=8.1"
  4028. },
  4029. "type": "library",
  4030. "extra": {
  4031. "branch-alias": {
  4032. "dev-master": "3.1-dev"
  4033. },
  4034. "hyperf": {
  4035. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4036. }
  4037. },
  4038. "autoload": {
  4039. "psr-4": {
  4040. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4041. }
  4042. },
  4043. "notification-url": "https://packagist.org/downloads/",
  4044. "license": [
  4045. "MIT"
  4046. ],
  4047. "description": "A nacos adapter for service governance.",
  4048. "homepage": "https://hyperf.io",
  4049. "keywords": [
  4050. "hyperf",
  4051. "nacos-adapter",
  4052. "php",
  4053. "service-governance",
  4054. "swoole"
  4055. ],
  4056. "support": {
  4057. "docs": "https://hyperf.wiki",
  4058. "issues": "https://github.com/hyperf/hyperf/issues",
  4059. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4060. "source": "https://github.com/hyperf/hyperf"
  4061. },
  4062. "funding": [
  4063. {
  4064. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4065. "type": "custom"
  4066. },
  4067. {
  4068. "url": "https://opencollective.com/hyperf",
  4069. "type": "open_collective"
  4070. }
  4071. ],
  4072. "time": "2024-03-23T11:28:51+00:00"
  4073. },
  4074. {
  4075. "name": "hyperf/snowflake",
  4076. "version": "v3.1.42",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://github.com/hyperf/snowflake.git",
  4080. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4085. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4086. "shasum": ""
  4087. },
  4088. "require": {
  4089. "hyperf/contract": "~3.1.0",
  4090. "php": ">=8.1"
  4091. },
  4092. "suggest": {
  4093. "hyperf/config": "Required to read snowflake config.",
  4094. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4095. "psr/container": "Required to use MetaGeneratorFactory."
  4096. },
  4097. "type": "library",
  4098. "extra": {
  4099. "hyperf": {
  4100. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4101. },
  4102. "branch-alias": {
  4103. "dev-master": "3.1-dev"
  4104. }
  4105. },
  4106. "autoload": {
  4107. "psr-4": {
  4108. "Hyperf\\Snowflake\\": "src/"
  4109. }
  4110. },
  4111. "notification-url": "https://packagist.org/downloads/",
  4112. "license": [
  4113. "MIT"
  4114. ],
  4115. "description": "A snowflake library",
  4116. "homepage": "https://hyperf.io",
  4117. "keywords": [
  4118. "php",
  4119. "snowflake"
  4120. ],
  4121. "support": {
  4122. "docs": "https://hyperf.wiki",
  4123. "issues": "https://github.com/hyperf/hyperf/issues",
  4124. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4125. "source": "https://github.com/hyperf/hyperf"
  4126. },
  4127. "funding": [
  4128. {
  4129. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4130. "type": "custom"
  4131. },
  4132. {
  4133. "url": "https://opencollective.com/hyperf",
  4134. "type": "open_collective"
  4135. }
  4136. ],
  4137. "time": "2024-09-25T02:54:12+00:00"
  4138. },
  4139. {
  4140. "name": "hyperf/stdlib",
  4141. "version": "v3.1.15",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/hyperf/stdlib.git",
  4145. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4150. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4151. "shasum": ""
  4152. },
  4153. "require": {
  4154. "php": ">=8.1"
  4155. },
  4156. "type": "library",
  4157. "extra": {
  4158. "branch-alias": {
  4159. "dev-master": "3.1-dev"
  4160. }
  4161. },
  4162. "autoload": {
  4163. "psr-4": {
  4164. "Hyperf\\Stdlib\\": "src/"
  4165. }
  4166. },
  4167. "notification-url": "https://packagist.org/downloads/",
  4168. "license": [
  4169. "MIT"
  4170. ],
  4171. "description": "A stdlib component for Hyperf.",
  4172. "homepage": "https://hyperf.io",
  4173. "keywords": [
  4174. "hyperf",
  4175. "php",
  4176. "stdlib",
  4177. "swoole"
  4178. ],
  4179. "support": {
  4180. "docs": "https://hyperf.wiki",
  4181. "issues": "https://github.com/hyperf/hyperf/issues",
  4182. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4183. "source": "https://github.com/hyperf/hyperf"
  4184. },
  4185. "funding": [
  4186. {
  4187. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4188. "type": "custom"
  4189. },
  4190. {
  4191. "url": "https://opencollective.com/hyperf",
  4192. "type": "open_collective"
  4193. }
  4194. ],
  4195. "time": "2024-03-23T11:28:51+00:00"
  4196. },
  4197. {
  4198. "name": "hyperf/stringable",
  4199. "version": "v3.1.24",
  4200. "source": {
  4201. "type": "git",
  4202. "url": "https://github.com/hyperf/stringable.git",
  4203. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4204. },
  4205. "dist": {
  4206. "type": "zip",
  4207. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4208. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4209. "shasum": ""
  4210. },
  4211. "require": {
  4212. "ext-mbstring": "*",
  4213. "hyperf/collection": "~3.1.0",
  4214. "hyperf/conditionable": "~3.1.0",
  4215. "hyperf/macroable": "~3.1.0",
  4216. "hyperf/tappable": "~3.1.0",
  4217. "php": ">=8.1"
  4218. },
  4219. "suggest": {
  4220. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4221. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4222. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4223. },
  4224. "type": "library",
  4225. "extra": {
  4226. "branch-alias": {
  4227. "dev-master": "3.1-dev"
  4228. }
  4229. },
  4230. "autoload": {
  4231. "files": [
  4232. "src/Functions.php"
  4233. ],
  4234. "psr-4": {
  4235. "Hyperf\\Stringable\\": "src/"
  4236. }
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "MIT"
  4241. ],
  4242. "description": "Hyperf Stringable package which come from illuminate/support",
  4243. "homepage": "https://hyperf.io",
  4244. "keywords": [
  4245. "hyperf",
  4246. "php",
  4247. "stringable",
  4248. "swoole"
  4249. ],
  4250. "support": {
  4251. "docs": "https://hyperf.wiki",
  4252. "issues": "https://github.com/hyperf/hyperf/issues",
  4253. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4254. "source": "https://github.com/hyperf/hyperf"
  4255. },
  4256. "funding": [
  4257. {
  4258. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4259. "type": "custom"
  4260. },
  4261. {
  4262. "url": "https://opencollective.com/hyperf",
  4263. "type": "open_collective"
  4264. }
  4265. ],
  4266. "time": "2024-05-27T03:20:24+00:00"
  4267. },
  4268. {
  4269. "name": "hyperf/support",
  4270. "version": "v3.1.15",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/hyperf/support.git",
  4274. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4279. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4280. "shasum": ""
  4281. },
  4282. "require": {
  4283. "hyperf/collection": "~3.1.0",
  4284. "hyperf/context": "~3.1.0",
  4285. "hyperf/contract": "~3.1.0",
  4286. "hyperf/coroutine": "~3.1.0",
  4287. "hyperf/macroable": "~3.1.0",
  4288. "hyperf/stringable": "~3.1.0",
  4289. "php": ">=8.1"
  4290. },
  4291. "suggest": {
  4292. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4293. },
  4294. "type": "library",
  4295. "extra": {
  4296. "branch-alias": {
  4297. "dev-master": "3.1-dev"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "files": [
  4302. "src/Functions.php"
  4303. ],
  4304. "psr-4": {
  4305. "Hyperf\\Support\\": "src/"
  4306. }
  4307. },
  4308. "notification-url": "https://packagist.org/downloads/",
  4309. "license": [
  4310. "MIT"
  4311. ],
  4312. "description": "A support component for Hyperf.",
  4313. "homepage": "https://hyperf.io",
  4314. "keywords": [
  4315. "hyperf",
  4316. "php",
  4317. "support",
  4318. "swoole"
  4319. ],
  4320. "support": {
  4321. "docs": "https://hyperf.wiki",
  4322. "issues": "https://github.com/hyperf/hyperf/issues",
  4323. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4324. "source": "https://github.com/hyperf/hyperf"
  4325. },
  4326. "funding": [
  4327. {
  4328. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4329. "type": "custom"
  4330. },
  4331. {
  4332. "url": "https://opencollective.com/hyperf",
  4333. "type": "open_collective"
  4334. }
  4335. ],
  4336. "time": "2024-03-23T11:28:51+00:00"
  4337. },
  4338. {
  4339. "name": "hyperf/tappable",
  4340. "version": "v3.1.15",
  4341. "source": {
  4342. "type": "git",
  4343. "url": "https://github.com/hyperf/tappable.git",
  4344. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4345. },
  4346. "dist": {
  4347. "type": "zip",
  4348. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4349. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4350. "shasum": ""
  4351. },
  4352. "require": {
  4353. "php": ">=8.1"
  4354. },
  4355. "type": "library",
  4356. "extra": {
  4357. "branch-alias": {
  4358. "dev-master": "3.1-dev"
  4359. }
  4360. },
  4361. "autoload": {
  4362. "files": [
  4363. "src/Functions.php"
  4364. ],
  4365. "psr-4": {
  4366. "Hyperf\\Tappable\\": "src/"
  4367. }
  4368. },
  4369. "notification-url": "https://packagist.org/downloads/",
  4370. "license": [
  4371. "MIT"
  4372. ],
  4373. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4374. "homepage": "https://hyperf.io",
  4375. "keywords": [
  4376. "hyperf",
  4377. "php",
  4378. "swoole",
  4379. "tappable"
  4380. ],
  4381. "support": {
  4382. "docs": "https://hyperf.wiki",
  4383. "issues": "https://github.com/hyperf/hyperf/issues",
  4384. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4385. "source": "https://github.com/hyperf/hyperf"
  4386. },
  4387. "funding": [
  4388. {
  4389. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4390. "type": "custom"
  4391. },
  4392. {
  4393. "url": "https://opencollective.com/hyperf",
  4394. "type": "open_collective"
  4395. }
  4396. ],
  4397. "time": "2024-03-23T11:28:51+00:00"
  4398. },
  4399. {
  4400. "name": "hyperf/utils",
  4401. "version": "v3.1.0",
  4402. "source": {
  4403. "type": "git",
  4404. "url": "https://github.com/hyperf/utils.git",
  4405. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4406. },
  4407. "dist": {
  4408. "type": "zip",
  4409. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4410. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4411. "shasum": ""
  4412. },
  4413. "require": {
  4414. "doctrine/inflector": "^2.0",
  4415. "hyperf/code-parser": "~3.1.0",
  4416. "hyperf/codec": "~3.1.0",
  4417. "hyperf/collection": "~3.1.0",
  4418. "hyperf/context": "~3.1.0",
  4419. "hyperf/contract": "~3.1.0",
  4420. "hyperf/coordinator": "~3.1.0",
  4421. "hyperf/coroutine": "~3.1.0",
  4422. "hyperf/engine": "^2.0",
  4423. "hyperf/macroable": "~3.1.0",
  4424. "hyperf/serializer": "~3.1.0",
  4425. "hyperf/stringable": "~3.1.0",
  4426. "hyperf/support": "~3.1.0",
  4427. "php": ">=8.1"
  4428. },
  4429. "type": "library",
  4430. "extra": {
  4431. "branch-alias": {
  4432. "dev-master": "3.1-dev"
  4433. }
  4434. },
  4435. "notification-url": "https://packagist.org/downloads/",
  4436. "license": [
  4437. "MIT"
  4438. ],
  4439. "description": "A tools package that could help developer solved the problem quickly.",
  4440. "homepage": "https://hyperf.io",
  4441. "keywords": [
  4442. "hyperf",
  4443. "php",
  4444. "swoole",
  4445. "utils"
  4446. ],
  4447. "support": {
  4448. "docs": "https://hyperf.wiki",
  4449. "issues": "https://github.com/hyperf/hyperf/issues",
  4450. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4451. "source": "https://github.com/hyperf/hyperf"
  4452. },
  4453. "funding": [
  4454. {
  4455. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4456. "type": "custom"
  4457. },
  4458. {
  4459. "url": "https://opencollective.com/hyperf",
  4460. "type": "open_collective"
  4461. }
  4462. ],
  4463. "time": "2023-11-24T03:10:53+00:00"
  4464. },
  4465. {
  4466. "name": "illuminate/cache",
  4467. "version": "v10.48.28",
  4468. "source": {
  4469. "type": "git",
  4470. "url": "https://github.com/illuminate/cache.git",
  4471. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c"
  4472. },
  4473. "dist": {
  4474. "type": "zip",
  4475. "url": "https://api.github.com/repos/illuminate/cache/zipball/20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4476. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4477. "shasum": "",
  4478. "mirrors": [
  4479. {
  4480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4481. "preferred": true
  4482. }
  4483. ]
  4484. },
  4485. "require": {
  4486. "illuminate/collections": "^10.0",
  4487. "illuminate/contracts": "^10.0",
  4488. "illuminate/macroable": "^10.0",
  4489. "illuminate/support": "^10.0",
  4490. "php": "^8.1"
  4491. },
  4492. "provide": {
  4493. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  4494. },
  4495. "suggest": {
  4496. "ext-apcu": "Required to use the APC cache driver.",
  4497. "ext-filter": "Required to use the DynamoDb cache driver.",
  4498. "ext-memcached": "Required to use the memcache cache driver.",
  4499. "illuminate/database": "Required to use the database cache driver (^10.0).",
  4500. "illuminate/filesystem": "Required to use the file cache driver (^10.0).",
  4501. "illuminate/redis": "Required to use the redis cache driver (^10.0).",
  4502. "symfony/cache": "Required to use PSR-6 cache bridge (^6.2)."
  4503. },
  4504. "type": "library",
  4505. "extra": {
  4506. "branch-alias": {
  4507. "dev-master": "10.x-dev"
  4508. }
  4509. },
  4510. "autoload": {
  4511. "psr-4": {
  4512. "Illuminate\\Cache\\": ""
  4513. }
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "Taylor Otwell",
  4522. "email": "taylor@laravel.com"
  4523. }
  4524. ],
  4525. "description": "The Illuminate Cache package.",
  4526. "homepage": "https://laravel.com",
  4527. "support": {
  4528. "issues": "https://github.com/laravel/framework/issues",
  4529. "source": "https://github.com/laravel/framework"
  4530. },
  4531. "time": "2024-11-21T14:02:44+00:00"
  4532. },
  4533. {
  4534. "name": "illuminate/collections",
  4535. "version": "v10.48.28",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/illuminate/collections.git",
  4539. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/illuminate/collections/zipball/48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  4544. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  4545. "shasum": "",
  4546. "mirrors": [
  4547. {
  4548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4549. "preferred": true
  4550. }
  4551. ]
  4552. },
  4553. "require": {
  4554. "illuminate/conditionable": "^10.0",
  4555. "illuminate/contracts": "^10.0",
  4556. "illuminate/macroable": "^10.0",
  4557. "php": "^8.1"
  4558. },
  4559. "suggest": {
  4560. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  4561. },
  4562. "type": "library",
  4563. "extra": {
  4564. "branch-alias": {
  4565. "dev-master": "10.x-dev"
  4566. }
  4567. },
  4568. "autoload": {
  4569. "files": [
  4570. "helpers.php"
  4571. ],
  4572. "psr-4": {
  4573. "Illuminate\\Support\\": ""
  4574. }
  4575. },
  4576. "notification-url": "https://packagist.org/downloads/",
  4577. "license": [
  4578. "MIT"
  4579. ],
  4580. "authors": [
  4581. {
  4582. "name": "Taylor Otwell",
  4583. "email": "taylor@laravel.com"
  4584. }
  4585. ],
  4586. "description": "The Illuminate Collections package.",
  4587. "homepage": "https://laravel.com",
  4588. "support": {
  4589. "issues": "https://github.com/laravel/framework/issues",
  4590. "source": "https://github.com/laravel/framework"
  4591. },
  4592. "time": "2024-11-21T14:02:44+00:00"
  4593. },
  4594. {
  4595. "name": "illuminate/conditionable",
  4596. "version": "v10.48.28",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://github.com/illuminate/conditionable.git",
  4600. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  4605. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  4606. "shasum": "",
  4607. "mirrors": [
  4608. {
  4609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4610. "preferred": true
  4611. }
  4612. ]
  4613. },
  4614. "require": {
  4615. "php": "^8.0.2"
  4616. },
  4617. "type": "library",
  4618. "extra": {
  4619. "branch-alias": {
  4620. "dev-master": "10.x-dev"
  4621. }
  4622. },
  4623. "autoload": {
  4624. "psr-4": {
  4625. "Illuminate\\Support\\": ""
  4626. }
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "MIT"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "Taylor Otwell",
  4635. "email": "taylor@laravel.com"
  4636. }
  4637. ],
  4638. "description": "The Illuminate Conditionable package.",
  4639. "homepage": "https://laravel.com",
  4640. "support": {
  4641. "issues": "https://github.com/laravel/framework/issues",
  4642. "source": "https://github.com/laravel/framework"
  4643. },
  4644. "time": "2024-11-21T14:02:44+00:00"
  4645. },
  4646. {
  4647. "name": "illuminate/contracts",
  4648. "version": "v10.48.28",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://github.com/illuminate/contracts.git",
  4652. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://api.github.com/repos/illuminate/contracts/zipball/f90663a69f926105a70b78060a31f3c64e2d1c74",
  4657. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74",
  4658. "shasum": "",
  4659. "mirrors": [
  4660. {
  4661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4662. "preferred": true
  4663. }
  4664. ]
  4665. },
  4666. "require": {
  4667. "php": "^8.1",
  4668. "psr/container": "^1.1.1|^2.0.1",
  4669. "psr/simple-cache": "^1.0|^2.0|^3.0"
  4670. },
  4671. "type": "library",
  4672. "extra": {
  4673. "branch-alias": {
  4674. "dev-master": "10.x-dev"
  4675. }
  4676. },
  4677. "autoload": {
  4678. "psr-4": {
  4679. "Illuminate\\Contracts\\": ""
  4680. }
  4681. },
  4682. "notification-url": "https://packagist.org/downloads/",
  4683. "license": [
  4684. "MIT"
  4685. ],
  4686. "authors": [
  4687. {
  4688. "name": "Taylor Otwell",
  4689. "email": "taylor@laravel.com"
  4690. }
  4691. ],
  4692. "description": "The Illuminate Contracts package.",
  4693. "homepage": "https://laravel.com",
  4694. "support": {
  4695. "issues": "https://github.com/laravel/framework/issues",
  4696. "source": "https://github.com/laravel/framework"
  4697. },
  4698. "time": "2024-11-21T14:02:44+00:00"
  4699. },
  4700. {
  4701. "name": "illuminate/macroable",
  4702. "version": "v10.48.28",
  4703. "source": {
  4704. "type": "git",
  4705. "url": "https://github.com/illuminate/macroable.git",
  4706. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  4707. },
  4708. "dist": {
  4709. "type": "zip",
  4710. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  4711. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  4712. "shasum": "",
  4713. "mirrors": [
  4714. {
  4715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4716. "preferred": true
  4717. }
  4718. ]
  4719. },
  4720. "require": {
  4721. "php": "^8.1"
  4722. },
  4723. "type": "library",
  4724. "extra": {
  4725. "branch-alias": {
  4726. "dev-master": "10.x-dev"
  4727. }
  4728. },
  4729. "autoload": {
  4730. "psr-4": {
  4731. "Illuminate\\Support\\": ""
  4732. }
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "MIT"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Taylor Otwell",
  4741. "email": "taylor@laravel.com"
  4742. }
  4743. ],
  4744. "description": "The Illuminate Macroable package.",
  4745. "homepage": "https://laravel.com",
  4746. "support": {
  4747. "issues": "https://github.com/laravel/framework/issues",
  4748. "source": "https://github.com/laravel/framework"
  4749. },
  4750. "time": "2023-06-05T12:46:42+00:00"
  4751. },
  4752. {
  4753. "name": "illuminate/support",
  4754. "version": "v10.48.28",
  4755. "source": {
  4756. "type": "git",
  4757. "url": "https://github.com/illuminate/support.git",
  4758. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a"
  4759. },
  4760. "dist": {
  4761. "type": "zip",
  4762. "url": "https://api.github.com/repos/illuminate/support/zipball/6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  4763. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  4764. "shasum": "",
  4765. "mirrors": [
  4766. {
  4767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4768. "preferred": true
  4769. }
  4770. ]
  4771. },
  4772. "require": {
  4773. "doctrine/inflector": "^2.0",
  4774. "ext-ctype": "*",
  4775. "ext-filter": "*",
  4776. "ext-mbstring": "*",
  4777. "illuminate/collections": "^10.0",
  4778. "illuminate/conditionable": "^10.0",
  4779. "illuminate/contracts": "^10.0",
  4780. "illuminate/macroable": "^10.0",
  4781. "nesbot/carbon": "^2.67",
  4782. "php": "^8.1",
  4783. "voku/portable-ascii": "^2.0"
  4784. },
  4785. "conflict": {
  4786. "tightenco/collect": "<5.5.33"
  4787. },
  4788. "suggest": {
  4789. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  4790. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.6).",
  4791. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  4792. "symfony/process": "Required to use the composer class (^6.2).",
  4793. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  4794. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  4795. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  4796. },
  4797. "type": "library",
  4798. "extra": {
  4799. "branch-alias": {
  4800. "dev-master": "10.x-dev"
  4801. }
  4802. },
  4803. "autoload": {
  4804. "files": [
  4805. "helpers.php"
  4806. ],
  4807. "psr-4": {
  4808. "Illuminate\\Support\\": ""
  4809. }
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Taylor Otwell",
  4818. "email": "taylor@laravel.com"
  4819. }
  4820. ],
  4821. "description": "The Illuminate Support package.",
  4822. "homepage": "https://laravel.com",
  4823. "support": {
  4824. "issues": "https://github.com/laravel/framework/issues",
  4825. "source": "https://github.com/laravel/framework"
  4826. },
  4827. "time": "2024-12-10T14:47:55+00:00"
  4828. },
  4829. {
  4830. "name": "jetbrains/phpstorm-attributes",
  4831. "version": "1.1",
  4832. "source": {
  4833. "type": "git",
  4834. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4835. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4836. },
  4837. "dist": {
  4838. "type": "zip",
  4839. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4840. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4841. "shasum": ""
  4842. },
  4843. "type": "library",
  4844. "autoload": {
  4845. "psr-4": {
  4846. "JetBrains\\PhpStorm\\": "src/"
  4847. }
  4848. },
  4849. "notification-url": "https://packagist.org/downloads/",
  4850. "license": [
  4851. "Apache-2.0"
  4852. ],
  4853. "authors": [
  4854. {
  4855. "name": "JetBrains",
  4856. "homepage": "https://www.jetbrains.com"
  4857. }
  4858. ],
  4859. "description": "PhpStorm specific attributes",
  4860. "keywords": [
  4861. "attributes",
  4862. "jetbrains",
  4863. "phpstorm"
  4864. ],
  4865. "support": {
  4866. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4867. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4868. },
  4869. "time": "2023-09-01T08:50:25+00:00"
  4870. },
  4871. {
  4872. "name": "laminas/laminas-mime",
  4873. "version": "2.12.0",
  4874. "source": {
  4875. "type": "git",
  4876. "url": "https://github.com/laminas/laminas-mime.git",
  4877. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4878. },
  4879. "dist": {
  4880. "type": "zip",
  4881. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4882. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4883. "shasum": ""
  4884. },
  4885. "require": {
  4886. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4887. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4888. },
  4889. "conflict": {
  4890. "zendframework/zend-mime": "*"
  4891. },
  4892. "require-dev": {
  4893. "laminas/laminas-coding-standard": "~2.4.0",
  4894. "laminas/laminas-mail": "^2.19.0",
  4895. "phpunit/phpunit": "~9.5.25"
  4896. },
  4897. "suggest": {
  4898. "laminas/laminas-mail": "Laminas\\Mail component"
  4899. },
  4900. "type": "library",
  4901. "autoload": {
  4902. "psr-4": {
  4903. "Laminas\\Mime\\": "src/"
  4904. }
  4905. },
  4906. "notification-url": "https://packagist.org/downloads/",
  4907. "license": [
  4908. "BSD-3-Clause"
  4909. ],
  4910. "description": "Create and parse MIME messages and parts",
  4911. "homepage": "https://laminas.dev",
  4912. "keywords": [
  4913. "laminas",
  4914. "mime"
  4915. ],
  4916. "support": {
  4917. "chat": "https://laminas.dev/chat",
  4918. "docs": "https://docs.laminas.dev/laminas-mime/",
  4919. "forum": "https://discourse.laminas.dev",
  4920. "issues": "https://github.com/laminas/laminas-mime/issues",
  4921. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4922. "source": "https://github.com/laminas/laminas-mime"
  4923. },
  4924. "funding": [
  4925. {
  4926. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4927. "type": "community_bridge"
  4928. }
  4929. ],
  4930. "time": "2023-11-02T16:47:19+00:00"
  4931. },
  4932. {
  4933. "name": "laminas/laminas-stdlib",
  4934. "version": "3.19.0",
  4935. "source": {
  4936. "type": "git",
  4937. "url": "https://github.com/laminas/laminas-stdlib.git",
  4938. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4939. },
  4940. "dist": {
  4941. "type": "zip",
  4942. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4943. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4944. "shasum": ""
  4945. },
  4946. "require": {
  4947. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4948. },
  4949. "conflict": {
  4950. "zendframework/zend-stdlib": "*"
  4951. },
  4952. "require-dev": {
  4953. "laminas/laminas-coding-standard": "^2.5",
  4954. "phpbench/phpbench": "^1.2.15",
  4955. "phpunit/phpunit": "^10.5.8",
  4956. "psalm/plugin-phpunit": "^0.18.4",
  4957. "vimeo/psalm": "^5.20.0"
  4958. },
  4959. "type": "library",
  4960. "autoload": {
  4961. "psr-4": {
  4962. "Laminas\\Stdlib\\": "src/"
  4963. }
  4964. },
  4965. "notification-url": "https://packagist.org/downloads/",
  4966. "license": [
  4967. "BSD-3-Clause"
  4968. ],
  4969. "description": "SPL extensions, array utilities, error handlers, and more",
  4970. "homepage": "https://laminas.dev",
  4971. "keywords": [
  4972. "laminas",
  4973. "stdlib"
  4974. ],
  4975. "support": {
  4976. "chat": "https://laminas.dev/chat",
  4977. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4978. "forum": "https://discourse.laminas.dev",
  4979. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4980. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4981. "source": "https://github.com/laminas/laminas-stdlib"
  4982. },
  4983. "funding": [
  4984. {
  4985. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4986. "type": "community_bridge"
  4987. }
  4988. ],
  4989. "time": "2024-01-19T12:39:49+00:00"
  4990. },
  4991. {
  4992. "name": "markrogoyski/math-php",
  4993. "version": "v2.10.0",
  4994. "source": {
  4995. "type": "git",
  4996. "url": "https://github.com/markrogoyski/math-php.git",
  4997. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4998. },
  4999. "dist": {
  5000. "type": "zip",
  5001. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5002. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5003. "shasum": ""
  5004. },
  5005. "require": {
  5006. "ext-json": "*",
  5007. "php": ">=7.2.0"
  5008. },
  5009. "require-dev": {
  5010. "php-coveralls/php-coveralls": "^2.0",
  5011. "php-parallel-lint/php-parallel-lint": "^1.2",
  5012. "phploc/phploc": "*",
  5013. "phpmd/phpmd": "^2.6",
  5014. "phpstan/phpstan": "^1.10",
  5015. "phpunit/phpunit": "^8.5",
  5016. "squizlabs/php_codesniffer": "3.*"
  5017. },
  5018. "type": "library",
  5019. "autoload": {
  5020. "psr-4": {
  5021. "MathPHP\\": "src/"
  5022. }
  5023. },
  5024. "notification-url": "https://packagist.org/downloads/",
  5025. "license": [
  5026. "MIT"
  5027. ],
  5028. "authors": [
  5029. {
  5030. "name": "Mark Rogoyski",
  5031. "email": "mark@rogoyski.com",
  5032. "homepage": "https://github.com/markrogoyski",
  5033. "role": "Lead developer"
  5034. },
  5035. {
  5036. "name": "Kevin Nowaczyk",
  5037. "homepage": "https://github.com/Beakerboy",
  5038. "role": "Developer"
  5039. },
  5040. {
  5041. "name": "MathPHP Community of Contributors",
  5042. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5043. }
  5044. ],
  5045. "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",
  5046. "homepage": "https://github.com/markrogoyski/math-php/",
  5047. "keywords": [
  5048. "algebra",
  5049. "combinatorics",
  5050. "distributions",
  5051. "linear algebra",
  5052. "math",
  5053. "mathematics",
  5054. "matrix",
  5055. "numerical analysis",
  5056. "probability",
  5057. "regressions",
  5058. "statistics"
  5059. ],
  5060. "support": {
  5061. "issues": "https://github.com/markrogoyski/math-php/issues",
  5062. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5063. },
  5064. "time": "2024-04-17T00:09:51+00:00"
  5065. },
  5066. {
  5067. "name": "monolog/monolog",
  5068. "version": "3.6.0",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/Seldaek/monolog.git",
  5072. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  5077. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  5078. "shasum": ""
  5079. },
  5080. "require": {
  5081. "php": ">=8.1",
  5082. "psr/log": "^2.0 || ^3.0"
  5083. },
  5084. "provide": {
  5085. "psr/log-implementation": "3.0.0"
  5086. },
  5087. "require-dev": {
  5088. "aws/aws-sdk-php": "^3.0",
  5089. "doctrine/couchdb": "~1.0@dev",
  5090. "elasticsearch/elasticsearch": "^7 || ^8",
  5091. "ext-json": "*",
  5092. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5093. "guzzlehttp/guzzle": "^7.4.5",
  5094. "guzzlehttp/psr7": "^2.2",
  5095. "mongodb/mongodb": "^1.8",
  5096. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5097. "phpstan/phpstan": "^1.9",
  5098. "phpstan/phpstan-deprecation-rules": "^1.0",
  5099. "phpstan/phpstan-strict-rules": "^1.4",
  5100. "phpunit/phpunit": "^10.5.17",
  5101. "predis/predis": "^1.1 || ^2",
  5102. "ruflin/elastica": "^7",
  5103. "symfony/mailer": "^5.4 || ^6",
  5104. "symfony/mime": "^5.4 || ^6"
  5105. },
  5106. "suggest": {
  5107. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5108. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5109. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5110. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5111. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5112. "ext-mbstring": "Allow to work properly with unicode symbols",
  5113. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5114. "ext-openssl": "Required to send log messages using SSL",
  5115. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5116. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5117. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5118. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5119. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5120. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5121. },
  5122. "type": "library",
  5123. "extra": {
  5124. "branch-alias": {
  5125. "dev-main": "3.x-dev"
  5126. }
  5127. },
  5128. "autoload": {
  5129. "psr-4": {
  5130. "Monolog\\": "src/Monolog"
  5131. }
  5132. },
  5133. "notification-url": "https://packagist.org/downloads/",
  5134. "license": [
  5135. "MIT"
  5136. ],
  5137. "authors": [
  5138. {
  5139. "name": "Jordi Boggiano",
  5140. "email": "j.boggiano@seld.be",
  5141. "homepage": "https://seld.be"
  5142. }
  5143. ],
  5144. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5145. "homepage": "https://github.com/Seldaek/monolog",
  5146. "keywords": [
  5147. "log",
  5148. "logging",
  5149. "psr-3"
  5150. ],
  5151. "support": {
  5152. "issues": "https://github.com/Seldaek/monolog/issues",
  5153. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  5154. },
  5155. "funding": [
  5156. {
  5157. "url": "https://github.com/Seldaek",
  5158. "type": "github"
  5159. },
  5160. {
  5161. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5162. "type": "tidelift"
  5163. }
  5164. ],
  5165. "time": "2024-04-12T21:02:21+00:00"
  5166. },
  5167. {
  5168. "name": "nesbot/carbon",
  5169. "version": "2.72.5",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://github.com/briannesbitt/Carbon.git",
  5173. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5178. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5179. "shasum": ""
  5180. },
  5181. "require": {
  5182. "carbonphp/carbon-doctrine-types": "*",
  5183. "ext-json": "*",
  5184. "php": "^7.1.8 || ^8.0",
  5185. "psr/clock": "^1.0",
  5186. "symfony/polyfill-mbstring": "^1.0",
  5187. "symfony/polyfill-php80": "^1.16",
  5188. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5189. },
  5190. "provide": {
  5191. "psr/clock-implementation": "1.0"
  5192. },
  5193. "require-dev": {
  5194. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5195. "doctrine/orm": "^2.7 || ^3.0",
  5196. "friendsofphp/php-cs-fixer": "^3.0",
  5197. "kylekatarnls/multi-tester": "^2.0",
  5198. "ondrejmirtes/better-reflection": "*",
  5199. "phpmd/phpmd": "^2.9",
  5200. "phpstan/extension-installer": "^1.0",
  5201. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5202. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5203. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5204. "squizlabs/php_codesniffer": "^3.4"
  5205. },
  5206. "bin": [
  5207. "bin/carbon"
  5208. ],
  5209. "type": "library",
  5210. "extra": {
  5211. "branch-alias": {
  5212. "dev-master": "3.x-dev",
  5213. "dev-2.x": "2.x-dev"
  5214. },
  5215. "laravel": {
  5216. "providers": [
  5217. "Carbon\\Laravel\\ServiceProvider"
  5218. ]
  5219. },
  5220. "phpstan": {
  5221. "includes": [
  5222. "extension.neon"
  5223. ]
  5224. }
  5225. },
  5226. "autoload": {
  5227. "psr-4": {
  5228. "Carbon\\": "src/Carbon/"
  5229. }
  5230. },
  5231. "notification-url": "https://packagist.org/downloads/",
  5232. "license": [
  5233. "MIT"
  5234. ],
  5235. "authors": [
  5236. {
  5237. "name": "Brian Nesbitt",
  5238. "email": "brian@nesbot.com",
  5239. "homepage": "https://markido.com"
  5240. },
  5241. {
  5242. "name": "kylekatarnls",
  5243. "homepage": "https://github.com/kylekatarnls"
  5244. }
  5245. ],
  5246. "description": "An API extension for DateTime that supports 281 different languages.",
  5247. "homepage": "https://carbon.nesbot.com",
  5248. "keywords": [
  5249. "date",
  5250. "datetime",
  5251. "time"
  5252. ],
  5253. "support": {
  5254. "docs": "https://carbon.nesbot.com/docs",
  5255. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5256. "source": "https://github.com/briannesbitt/Carbon"
  5257. },
  5258. "funding": [
  5259. {
  5260. "url": "https://github.com/sponsors/kylekatarnls",
  5261. "type": "github"
  5262. },
  5263. {
  5264. "url": "https://opencollective.com/Carbon#sponsor",
  5265. "type": "opencollective"
  5266. },
  5267. {
  5268. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5269. "type": "tidelift"
  5270. }
  5271. ],
  5272. "time": "2024-06-03T19:18:41+00:00"
  5273. },
  5274. {
  5275. "name": "nikic/fast-route",
  5276. "version": "v1.3.0",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/nikic/FastRoute.git",
  5280. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5285. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5286. "shasum": ""
  5287. },
  5288. "require": {
  5289. "php": ">=5.4.0"
  5290. },
  5291. "require-dev": {
  5292. "phpunit/phpunit": "^4.8.35|~5.7"
  5293. },
  5294. "type": "library",
  5295. "autoload": {
  5296. "files": [
  5297. "src/functions.php"
  5298. ],
  5299. "psr-4": {
  5300. "FastRoute\\": "src/"
  5301. }
  5302. },
  5303. "notification-url": "https://packagist.org/downloads/",
  5304. "license": [
  5305. "BSD-3-Clause"
  5306. ],
  5307. "authors": [
  5308. {
  5309. "name": "Nikita Popov",
  5310. "email": "nikic@php.net"
  5311. }
  5312. ],
  5313. "description": "Fast request router for PHP",
  5314. "keywords": [
  5315. "router",
  5316. "routing"
  5317. ],
  5318. "support": {
  5319. "issues": "https://github.com/nikic/FastRoute/issues",
  5320. "source": "https://github.com/nikic/FastRoute/tree/master"
  5321. },
  5322. "time": "2018-02-13T20:26:39+00:00"
  5323. },
  5324. {
  5325. "name": "nikic/php-parser",
  5326. "version": "v4.19.1",
  5327. "source": {
  5328. "type": "git",
  5329. "url": "https://github.com/nikic/PHP-Parser.git",
  5330. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5331. },
  5332. "dist": {
  5333. "type": "zip",
  5334. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5335. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5336. "shasum": ""
  5337. },
  5338. "require": {
  5339. "ext-tokenizer": "*",
  5340. "php": ">=7.1"
  5341. },
  5342. "require-dev": {
  5343. "ircmaxell/php-yacc": "^0.0.7",
  5344. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5345. },
  5346. "bin": [
  5347. "bin/php-parse"
  5348. ],
  5349. "type": "library",
  5350. "extra": {
  5351. "branch-alias": {
  5352. "dev-master": "4.9-dev"
  5353. }
  5354. },
  5355. "autoload": {
  5356. "psr-4": {
  5357. "PhpParser\\": "lib/PhpParser"
  5358. }
  5359. },
  5360. "notification-url": "https://packagist.org/downloads/",
  5361. "license": [
  5362. "BSD-3-Clause"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "Nikita Popov"
  5367. }
  5368. ],
  5369. "description": "A PHP parser written in PHP",
  5370. "keywords": [
  5371. "parser",
  5372. "php"
  5373. ],
  5374. "support": {
  5375. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5376. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5377. },
  5378. "time": "2024-03-17T08:10:35+00:00"
  5379. },
  5380. {
  5381. "name": "php-di/phpdoc-reader",
  5382. "version": "2.2.1",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5386. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5391. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5392. "shasum": ""
  5393. },
  5394. "require": {
  5395. "php": ">=7.2.0"
  5396. },
  5397. "require-dev": {
  5398. "mnapoli/hard-mode": "~0.3.0",
  5399. "phpunit/phpunit": "^8.5|^9.0"
  5400. },
  5401. "type": "library",
  5402. "autoload": {
  5403. "psr-4": {
  5404. "PhpDocReader\\": "src/PhpDocReader"
  5405. }
  5406. },
  5407. "notification-url": "https://packagist.org/downloads/",
  5408. "license": [
  5409. "MIT"
  5410. ],
  5411. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5412. "keywords": [
  5413. "phpdoc",
  5414. "reflection"
  5415. ],
  5416. "support": {
  5417. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5418. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5419. },
  5420. "time": "2020-10-12T12:39:22+00:00"
  5421. },
  5422. {
  5423. "name": "phpoption/phpoption",
  5424. "version": "1.9.2",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://github.com/schmittjoh/php-option.git",
  5428. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5433. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5434. "shasum": ""
  5435. },
  5436. "require": {
  5437. "php": "^7.2.5 || ^8.0"
  5438. },
  5439. "require-dev": {
  5440. "bamarni/composer-bin-plugin": "^1.8.2",
  5441. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5442. },
  5443. "type": "library",
  5444. "extra": {
  5445. "bamarni-bin": {
  5446. "bin-links": true,
  5447. "forward-command": true
  5448. },
  5449. "branch-alias": {
  5450. "dev-master": "1.9-dev"
  5451. }
  5452. },
  5453. "autoload": {
  5454. "psr-4": {
  5455. "PhpOption\\": "src/PhpOption/"
  5456. }
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "Apache-2.0"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Johannes M. Schmitt",
  5465. "email": "schmittjoh@gmail.com",
  5466. "homepage": "https://github.com/schmittjoh"
  5467. },
  5468. {
  5469. "name": "Graham Campbell",
  5470. "email": "hello@gjcampbell.co.uk",
  5471. "homepage": "https://github.com/GrahamCampbell"
  5472. }
  5473. ],
  5474. "description": "Option Type for PHP",
  5475. "keywords": [
  5476. "language",
  5477. "option",
  5478. "php",
  5479. "type"
  5480. ],
  5481. "support": {
  5482. "issues": "https://github.com/schmittjoh/php-option/issues",
  5483. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5484. },
  5485. "funding": [
  5486. {
  5487. "url": "https://github.com/GrahamCampbell",
  5488. "type": "github"
  5489. },
  5490. {
  5491. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5492. "type": "tidelift"
  5493. }
  5494. ],
  5495. "time": "2023-11-12T21:59:55+00:00"
  5496. },
  5497. {
  5498. "name": "psr/cache",
  5499. "version": "3.0.0",
  5500. "source": {
  5501. "type": "git",
  5502. "url": "https://github.com/php-fig/cache.git",
  5503. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5504. },
  5505. "dist": {
  5506. "type": "zip",
  5507. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5508. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5509. "shasum": ""
  5510. },
  5511. "require": {
  5512. "php": ">=8.0.0"
  5513. },
  5514. "type": "library",
  5515. "extra": {
  5516. "branch-alias": {
  5517. "dev-master": "1.0.x-dev"
  5518. }
  5519. },
  5520. "autoload": {
  5521. "psr-4": {
  5522. "Psr\\Cache\\": "src/"
  5523. }
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "MIT"
  5528. ],
  5529. "authors": [
  5530. {
  5531. "name": "PHP-FIG",
  5532. "homepage": "https://www.php-fig.org/"
  5533. }
  5534. ],
  5535. "description": "Common interface for caching libraries",
  5536. "keywords": [
  5537. "cache",
  5538. "psr",
  5539. "psr-6"
  5540. ],
  5541. "support": {
  5542. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5543. },
  5544. "time": "2021-02-03T23:26:27+00:00"
  5545. },
  5546. {
  5547. "name": "psr/clock",
  5548. "version": "1.0.0",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/php-fig/clock.git",
  5552. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5557. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5558. "shasum": ""
  5559. },
  5560. "require": {
  5561. "php": "^7.0 || ^8.0"
  5562. },
  5563. "type": "library",
  5564. "autoload": {
  5565. "psr-4": {
  5566. "Psr\\Clock\\": "src/"
  5567. }
  5568. },
  5569. "notification-url": "https://packagist.org/downloads/",
  5570. "license": [
  5571. "MIT"
  5572. ],
  5573. "authors": [
  5574. {
  5575. "name": "PHP-FIG",
  5576. "homepage": "https://www.php-fig.org/"
  5577. }
  5578. ],
  5579. "description": "Common interface for reading the clock.",
  5580. "homepage": "https://github.com/php-fig/clock",
  5581. "keywords": [
  5582. "clock",
  5583. "now",
  5584. "psr",
  5585. "psr-20",
  5586. "time"
  5587. ],
  5588. "support": {
  5589. "issues": "https://github.com/php-fig/clock/issues",
  5590. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5591. },
  5592. "time": "2022-11-25T14:36:26+00:00"
  5593. },
  5594. {
  5595. "name": "psr/container",
  5596. "version": "2.0.2",
  5597. "source": {
  5598. "type": "git",
  5599. "url": "https://github.com/php-fig/container.git",
  5600. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5601. },
  5602. "dist": {
  5603. "type": "zip",
  5604. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5605. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5606. "shasum": ""
  5607. },
  5608. "require": {
  5609. "php": ">=7.4.0"
  5610. },
  5611. "type": "library",
  5612. "extra": {
  5613. "branch-alias": {
  5614. "dev-master": "2.0.x-dev"
  5615. }
  5616. },
  5617. "autoload": {
  5618. "psr-4": {
  5619. "Psr\\Container\\": "src/"
  5620. }
  5621. },
  5622. "notification-url": "https://packagist.org/downloads/",
  5623. "license": [
  5624. "MIT"
  5625. ],
  5626. "authors": [
  5627. {
  5628. "name": "PHP-FIG",
  5629. "homepage": "https://www.php-fig.org/"
  5630. }
  5631. ],
  5632. "description": "Common Container Interface (PHP FIG PSR-11)",
  5633. "homepage": "https://github.com/php-fig/container",
  5634. "keywords": [
  5635. "PSR-11",
  5636. "container",
  5637. "container-interface",
  5638. "container-interop",
  5639. "psr"
  5640. ],
  5641. "support": {
  5642. "issues": "https://github.com/php-fig/container/issues",
  5643. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5644. },
  5645. "time": "2021-11-05T16:47:00+00:00"
  5646. },
  5647. {
  5648. "name": "psr/event-dispatcher",
  5649. "version": "1.0.0",
  5650. "source": {
  5651. "type": "git",
  5652. "url": "https://github.com/php-fig/event-dispatcher.git",
  5653. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5654. },
  5655. "dist": {
  5656. "type": "zip",
  5657. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5658. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5659. "shasum": ""
  5660. },
  5661. "require": {
  5662. "php": ">=7.2.0"
  5663. },
  5664. "type": "library",
  5665. "extra": {
  5666. "branch-alias": {
  5667. "dev-master": "1.0.x-dev"
  5668. }
  5669. },
  5670. "autoload": {
  5671. "psr-4": {
  5672. "Psr\\EventDispatcher\\": "src/"
  5673. }
  5674. },
  5675. "notification-url": "https://packagist.org/downloads/",
  5676. "license": [
  5677. "MIT"
  5678. ],
  5679. "authors": [
  5680. {
  5681. "name": "PHP-FIG",
  5682. "homepage": "http://www.php-fig.org/"
  5683. }
  5684. ],
  5685. "description": "Standard interfaces for event handling.",
  5686. "keywords": [
  5687. "events",
  5688. "psr",
  5689. "psr-14"
  5690. ],
  5691. "support": {
  5692. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5693. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5694. },
  5695. "time": "2019-01-08T18:20:26+00:00"
  5696. },
  5697. {
  5698. "name": "psr/http-client",
  5699. "version": "1.0.3",
  5700. "source": {
  5701. "type": "git",
  5702. "url": "https://github.com/php-fig/http-client.git",
  5703. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5704. },
  5705. "dist": {
  5706. "type": "zip",
  5707. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5708. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5709. "shasum": ""
  5710. },
  5711. "require": {
  5712. "php": "^7.0 || ^8.0",
  5713. "psr/http-message": "^1.0 || ^2.0"
  5714. },
  5715. "type": "library",
  5716. "extra": {
  5717. "branch-alias": {
  5718. "dev-master": "1.0.x-dev"
  5719. }
  5720. },
  5721. "autoload": {
  5722. "psr-4": {
  5723. "Psr\\Http\\Client\\": "src/"
  5724. }
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "PHP-FIG",
  5733. "homepage": "https://www.php-fig.org/"
  5734. }
  5735. ],
  5736. "description": "Common interface for HTTP clients",
  5737. "homepage": "https://github.com/php-fig/http-client",
  5738. "keywords": [
  5739. "http",
  5740. "http-client",
  5741. "psr",
  5742. "psr-18"
  5743. ],
  5744. "support": {
  5745. "source": "https://github.com/php-fig/http-client"
  5746. },
  5747. "time": "2023-09-23T14:17:50+00:00"
  5748. },
  5749. {
  5750. "name": "psr/http-factory",
  5751. "version": "1.1.0",
  5752. "source": {
  5753. "type": "git",
  5754. "url": "https://github.com/php-fig/http-factory.git",
  5755. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5756. },
  5757. "dist": {
  5758. "type": "zip",
  5759. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5760. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5761. "shasum": ""
  5762. },
  5763. "require": {
  5764. "php": ">=7.1",
  5765. "psr/http-message": "^1.0 || ^2.0"
  5766. },
  5767. "type": "library",
  5768. "extra": {
  5769. "branch-alias": {
  5770. "dev-master": "1.0.x-dev"
  5771. }
  5772. },
  5773. "autoload": {
  5774. "psr-4": {
  5775. "Psr\\Http\\Message\\": "src/"
  5776. }
  5777. },
  5778. "notification-url": "https://packagist.org/downloads/",
  5779. "license": [
  5780. "MIT"
  5781. ],
  5782. "authors": [
  5783. {
  5784. "name": "PHP-FIG",
  5785. "homepage": "https://www.php-fig.org/"
  5786. }
  5787. ],
  5788. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5789. "keywords": [
  5790. "factory",
  5791. "http",
  5792. "message",
  5793. "psr",
  5794. "psr-17",
  5795. "psr-7",
  5796. "request",
  5797. "response"
  5798. ],
  5799. "support": {
  5800. "source": "https://github.com/php-fig/http-factory"
  5801. },
  5802. "time": "2024-04-15T12:06:14+00:00"
  5803. },
  5804. {
  5805. "name": "psr/http-message",
  5806. "version": "2.0",
  5807. "source": {
  5808. "type": "git",
  5809. "url": "https://github.com/php-fig/http-message.git",
  5810. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5811. },
  5812. "dist": {
  5813. "type": "zip",
  5814. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5815. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5816. "shasum": ""
  5817. },
  5818. "require": {
  5819. "php": "^7.2 || ^8.0"
  5820. },
  5821. "type": "library",
  5822. "extra": {
  5823. "branch-alias": {
  5824. "dev-master": "2.0.x-dev"
  5825. }
  5826. },
  5827. "autoload": {
  5828. "psr-4": {
  5829. "Psr\\Http\\Message\\": "src/"
  5830. }
  5831. },
  5832. "notification-url": "https://packagist.org/downloads/",
  5833. "license": [
  5834. "MIT"
  5835. ],
  5836. "authors": [
  5837. {
  5838. "name": "PHP-FIG",
  5839. "homepage": "https://www.php-fig.org/"
  5840. }
  5841. ],
  5842. "description": "Common interface for HTTP messages",
  5843. "homepage": "https://github.com/php-fig/http-message",
  5844. "keywords": [
  5845. "http",
  5846. "http-message",
  5847. "psr",
  5848. "psr-7",
  5849. "request",
  5850. "response"
  5851. ],
  5852. "support": {
  5853. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5854. },
  5855. "time": "2023-04-04T09:54:51+00:00"
  5856. },
  5857. {
  5858. "name": "psr/http-server-handler",
  5859. "version": "1.0.2",
  5860. "source": {
  5861. "type": "git",
  5862. "url": "https://github.com/php-fig/http-server-handler.git",
  5863. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5864. },
  5865. "dist": {
  5866. "type": "zip",
  5867. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5868. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5869. "shasum": ""
  5870. },
  5871. "require": {
  5872. "php": ">=7.0",
  5873. "psr/http-message": "^1.0 || ^2.0"
  5874. },
  5875. "type": "library",
  5876. "extra": {
  5877. "branch-alias": {
  5878. "dev-master": "1.0.x-dev"
  5879. }
  5880. },
  5881. "autoload": {
  5882. "psr-4": {
  5883. "Psr\\Http\\Server\\": "src/"
  5884. }
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "PHP-FIG",
  5893. "homepage": "https://www.php-fig.org/"
  5894. }
  5895. ],
  5896. "description": "Common interface for HTTP server-side request handler",
  5897. "keywords": [
  5898. "handler",
  5899. "http",
  5900. "http-interop",
  5901. "psr",
  5902. "psr-15",
  5903. "psr-7",
  5904. "request",
  5905. "response",
  5906. "server"
  5907. ],
  5908. "support": {
  5909. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5910. },
  5911. "time": "2023-04-10T20:06:20+00:00"
  5912. },
  5913. {
  5914. "name": "psr/http-server-middleware",
  5915. "version": "1.0.2",
  5916. "source": {
  5917. "type": "git",
  5918. "url": "https://github.com/php-fig/http-server-middleware.git",
  5919. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5920. },
  5921. "dist": {
  5922. "type": "zip",
  5923. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5924. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5925. "shasum": ""
  5926. },
  5927. "require": {
  5928. "php": ">=7.0",
  5929. "psr/http-message": "^1.0 || ^2.0",
  5930. "psr/http-server-handler": "^1.0"
  5931. },
  5932. "type": "library",
  5933. "extra": {
  5934. "branch-alias": {
  5935. "dev-master": "1.0.x-dev"
  5936. }
  5937. },
  5938. "autoload": {
  5939. "psr-4": {
  5940. "Psr\\Http\\Server\\": "src/"
  5941. }
  5942. },
  5943. "notification-url": "https://packagist.org/downloads/",
  5944. "license": [
  5945. "MIT"
  5946. ],
  5947. "authors": [
  5948. {
  5949. "name": "PHP-FIG",
  5950. "homepage": "https://www.php-fig.org/"
  5951. }
  5952. ],
  5953. "description": "Common interface for HTTP server-side middleware",
  5954. "keywords": [
  5955. "http",
  5956. "http-interop",
  5957. "middleware",
  5958. "psr",
  5959. "psr-15",
  5960. "psr-7",
  5961. "request",
  5962. "response"
  5963. ],
  5964. "support": {
  5965. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5966. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5967. },
  5968. "time": "2023-04-11T06:14:47+00:00"
  5969. },
  5970. {
  5971. "name": "psr/log",
  5972. "version": "3.0.0",
  5973. "source": {
  5974. "type": "git",
  5975. "url": "https://github.com/php-fig/log.git",
  5976. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5977. },
  5978. "dist": {
  5979. "type": "zip",
  5980. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5981. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5982. "shasum": ""
  5983. },
  5984. "require": {
  5985. "php": ">=8.0.0"
  5986. },
  5987. "type": "library",
  5988. "extra": {
  5989. "branch-alias": {
  5990. "dev-master": "3.x-dev"
  5991. }
  5992. },
  5993. "autoload": {
  5994. "psr-4": {
  5995. "Psr\\Log\\": "src"
  5996. }
  5997. },
  5998. "notification-url": "https://packagist.org/downloads/",
  5999. "license": [
  6000. "MIT"
  6001. ],
  6002. "authors": [
  6003. {
  6004. "name": "PHP-FIG",
  6005. "homepage": "https://www.php-fig.org/"
  6006. }
  6007. ],
  6008. "description": "Common interface for logging libraries",
  6009. "homepage": "https://github.com/php-fig/log",
  6010. "keywords": [
  6011. "log",
  6012. "psr",
  6013. "psr-3"
  6014. ],
  6015. "support": {
  6016. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6017. },
  6018. "time": "2021-07-14T16:46:02+00:00"
  6019. },
  6020. {
  6021. "name": "psr/simple-cache",
  6022. "version": "3.0.0",
  6023. "source": {
  6024. "type": "git",
  6025. "url": "https://github.com/php-fig/simple-cache.git",
  6026. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6027. },
  6028. "dist": {
  6029. "type": "zip",
  6030. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6031. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6032. "shasum": ""
  6033. },
  6034. "require": {
  6035. "php": ">=8.0.0"
  6036. },
  6037. "type": "library",
  6038. "extra": {
  6039. "branch-alias": {
  6040. "dev-master": "3.0.x-dev"
  6041. }
  6042. },
  6043. "autoload": {
  6044. "psr-4": {
  6045. "Psr\\SimpleCache\\": "src/"
  6046. }
  6047. },
  6048. "notification-url": "https://packagist.org/downloads/",
  6049. "license": [
  6050. "MIT"
  6051. ],
  6052. "authors": [
  6053. {
  6054. "name": "PHP-FIG",
  6055. "homepage": "https://www.php-fig.org/"
  6056. }
  6057. ],
  6058. "description": "Common interfaces for simple caching",
  6059. "keywords": [
  6060. "cache",
  6061. "caching",
  6062. "psr",
  6063. "psr-16",
  6064. "simple-cache"
  6065. ],
  6066. "support": {
  6067. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6068. },
  6069. "time": "2021-10-29T13:26:27+00:00"
  6070. },
  6071. {
  6072. "name": "ralouphie/getallheaders",
  6073. "version": "3.0.3",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/ralouphie/getallheaders.git",
  6077. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6082. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=5.6"
  6087. },
  6088. "require-dev": {
  6089. "php-coveralls/php-coveralls": "^2.1",
  6090. "phpunit/phpunit": "^5 || ^6.5"
  6091. },
  6092. "type": "library",
  6093. "autoload": {
  6094. "files": [
  6095. "src/getallheaders.php"
  6096. ]
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Ralph Khattar",
  6105. "email": "ralph.khattar@gmail.com"
  6106. }
  6107. ],
  6108. "description": "A polyfill for getallheaders.",
  6109. "support": {
  6110. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6111. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6112. },
  6113. "time": "2019-03-08T08:55:37+00:00"
  6114. },
  6115. {
  6116. "name": "ramsey/collection",
  6117. "version": "2.1.1",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://github.com/ramsey/collection.git",
  6121. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  6126. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  6127. "shasum": ""
  6128. },
  6129. "require": {
  6130. "php": "^8.1"
  6131. },
  6132. "require-dev": {
  6133. "captainhook/plugin-composer": "^5.3",
  6134. "ergebnis/composer-normalize": "^2.45",
  6135. "fakerphp/faker": "^1.24",
  6136. "hamcrest/hamcrest-php": "^2.0",
  6137. "jangregor/phpstan-prophecy": "^2.1",
  6138. "mockery/mockery": "^1.6",
  6139. "php-parallel-lint/php-console-highlighter": "^1.0",
  6140. "php-parallel-lint/php-parallel-lint": "^1.4",
  6141. "phpspec/prophecy-phpunit": "^2.3",
  6142. "phpstan/extension-installer": "^1.4",
  6143. "phpstan/phpstan": "^2.1",
  6144. "phpstan/phpstan-mockery": "^2.0",
  6145. "phpstan/phpstan-phpunit": "^2.0",
  6146. "phpunit/phpunit": "^10.5",
  6147. "ramsey/coding-standard": "^2.3",
  6148. "ramsey/conventional-commits": "^1.6",
  6149. "roave/security-advisories": "dev-latest"
  6150. },
  6151. "type": "library",
  6152. "extra": {
  6153. "captainhook": {
  6154. "force-install": true
  6155. },
  6156. "ramsey/conventional-commits": {
  6157. "configFile": "conventional-commits.json"
  6158. }
  6159. },
  6160. "autoload": {
  6161. "psr-4": {
  6162. "Ramsey\\Collection\\": "src/"
  6163. }
  6164. },
  6165. "notification-url": "https://packagist.org/downloads/",
  6166. "license": [
  6167. "MIT"
  6168. ],
  6169. "authors": [
  6170. {
  6171. "name": "Ben Ramsey",
  6172. "email": "ben@benramsey.com",
  6173. "homepage": "https://benramsey.com"
  6174. }
  6175. ],
  6176. "description": "A PHP library for representing and manipulating collections.",
  6177. "keywords": [
  6178. "array",
  6179. "collection",
  6180. "hash",
  6181. "map",
  6182. "queue",
  6183. "set"
  6184. ],
  6185. "support": {
  6186. "issues": "https://github.com/ramsey/collection/issues",
  6187. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  6188. },
  6189. "time": "2025-03-22T05:38:12+00:00"
  6190. },
  6191. {
  6192. "name": "ramsey/uuid",
  6193. "version": "4.7.6",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/ramsey/uuid.git",
  6197. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6202. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6207. "ext-json": "*",
  6208. "php": "^8.0",
  6209. "ramsey/collection": "^1.2 || ^2.0"
  6210. },
  6211. "replace": {
  6212. "rhumsaa/uuid": "self.version"
  6213. },
  6214. "require-dev": {
  6215. "captainhook/captainhook": "^5.10",
  6216. "captainhook/plugin-composer": "^5.3",
  6217. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6218. "doctrine/annotations": "^1.8",
  6219. "ergebnis/composer-normalize": "^2.15",
  6220. "mockery/mockery": "^1.3",
  6221. "paragonie/random-lib": "^2",
  6222. "php-mock/php-mock": "^2.2",
  6223. "php-mock/php-mock-mockery": "^1.3",
  6224. "php-parallel-lint/php-parallel-lint": "^1.1",
  6225. "phpbench/phpbench": "^1.0",
  6226. "phpstan/extension-installer": "^1.1",
  6227. "phpstan/phpstan": "^1.8",
  6228. "phpstan/phpstan-mockery": "^1.1",
  6229. "phpstan/phpstan-phpunit": "^1.1",
  6230. "phpunit/phpunit": "^8.5 || ^9",
  6231. "ramsey/composer-repl": "^1.4",
  6232. "slevomat/coding-standard": "^8.4",
  6233. "squizlabs/php_codesniffer": "^3.5",
  6234. "vimeo/psalm": "^4.9"
  6235. },
  6236. "suggest": {
  6237. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6238. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6239. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6240. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6241. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6242. },
  6243. "type": "library",
  6244. "extra": {
  6245. "captainhook": {
  6246. "force-install": true
  6247. }
  6248. },
  6249. "autoload": {
  6250. "files": [
  6251. "src/functions.php"
  6252. ],
  6253. "psr-4": {
  6254. "Ramsey\\Uuid\\": "src/"
  6255. }
  6256. },
  6257. "notification-url": "https://packagist.org/downloads/",
  6258. "license": [
  6259. "MIT"
  6260. ],
  6261. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6262. "keywords": [
  6263. "guid",
  6264. "identifier",
  6265. "uuid"
  6266. ],
  6267. "support": {
  6268. "issues": "https://github.com/ramsey/uuid/issues",
  6269. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6270. },
  6271. "funding": [
  6272. {
  6273. "url": "https://github.com/ramsey",
  6274. "type": "github"
  6275. },
  6276. {
  6277. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6278. "type": "tidelift"
  6279. }
  6280. ],
  6281. "time": "2024-04-27T21:32:50+00:00"
  6282. },
  6283. {
  6284. "name": "swow/psr7-plus",
  6285. "version": "v1.1.2",
  6286. "source": {
  6287. "type": "git",
  6288. "url": "https://github.com/swow/psr7-plus.git",
  6289. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6290. },
  6291. "dist": {
  6292. "type": "zip",
  6293. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6294. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6295. "shasum": ""
  6296. },
  6297. "require": {
  6298. "php": ">=8.0",
  6299. "psr/http-client": "^1.0",
  6300. "psr/http-factory": "^1.0",
  6301. "psr/http-message": "^1.1|^2.0"
  6302. },
  6303. "type": "library",
  6304. "autoload": {
  6305. "psr-4": {
  6306. "Swow\\Psr7\\Message\\": "src/Message/"
  6307. }
  6308. },
  6309. "notification-url": "https://packagist.org/downloads/",
  6310. "license": [
  6311. "Apache-2.0"
  6312. ],
  6313. "authors": [
  6314. {
  6315. "name": "twose",
  6316. "email": "twosee@php.net"
  6317. }
  6318. ],
  6319. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6320. "keywords": [
  6321. "http",
  6322. "psr17",
  6323. "psr7",
  6324. "swow",
  6325. "websocket"
  6326. ],
  6327. "support": {
  6328. "issues": "https://github.com/swow/swow",
  6329. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6330. },
  6331. "time": "2023-06-15T09:18:11+00:00"
  6332. },
  6333. {
  6334. "name": "symfony/console",
  6335. "version": "v6.4.8",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/symfony/console.git",
  6339. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6344. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6345. "shasum": ""
  6346. },
  6347. "require": {
  6348. "php": ">=8.1",
  6349. "symfony/deprecation-contracts": "^2.5|^3",
  6350. "symfony/polyfill-mbstring": "~1.0",
  6351. "symfony/service-contracts": "^2.5|^3",
  6352. "symfony/string": "^5.4|^6.0|^7.0"
  6353. },
  6354. "conflict": {
  6355. "symfony/dependency-injection": "<5.4",
  6356. "symfony/dotenv": "<5.4",
  6357. "symfony/event-dispatcher": "<5.4",
  6358. "symfony/lock": "<5.4",
  6359. "symfony/process": "<5.4"
  6360. },
  6361. "provide": {
  6362. "psr/log-implementation": "1.0|2.0|3.0"
  6363. },
  6364. "require-dev": {
  6365. "psr/log": "^1|^2|^3",
  6366. "symfony/config": "^5.4|^6.0|^7.0",
  6367. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6368. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6369. "symfony/http-foundation": "^6.4|^7.0",
  6370. "symfony/http-kernel": "^6.4|^7.0",
  6371. "symfony/lock": "^5.4|^6.0|^7.0",
  6372. "symfony/messenger": "^5.4|^6.0|^7.0",
  6373. "symfony/process": "^5.4|^6.0|^7.0",
  6374. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6375. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6376. },
  6377. "type": "library",
  6378. "autoload": {
  6379. "psr-4": {
  6380. "Symfony\\Component\\Console\\": ""
  6381. },
  6382. "exclude-from-classmap": [
  6383. "/Tests/"
  6384. ]
  6385. },
  6386. "notification-url": "https://packagist.org/downloads/",
  6387. "license": [
  6388. "MIT"
  6389. ],
  6390. "authors": [
  6391. {
  6392. "name": "Fabien Potencier",
  6393. "email": "fabien@symfony.com"
  6394. },
  6395. {
  6396. "name": "Symfony Community",
  6397. "homepage": "https://symfony.com/contributors"
  6398. }
  6399. ],
  6400. "description": "Eases the creation of beautiful and testable command line interfaces",
  6401. "homepage": "https://symfony.com",
  6402. "keywords": [
  6403. "cli",
  6404. "command-line",
  6405. "console",
  6406. "terminal"
  6407. ],
  6408. "support": {
  6409. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6410. },
  6411. "funding": [
  6412. {
  6413. "url": "https://symfony.com/sponsor",
  6414. "type": "custom"
  6415. },
  6416. {
  6417. "url": "https://github.com/fabpot",
  6418. "type": "github"
  6419. },
  6420. {
  6421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6422. "type": "tidelift"
  6423. }
  6424. ],
  6425. "time": "2024-05-31T14:49:08+00:00"
  6426. },
  6427. {
  6428. "name": "symfony/deprecation-contracts",
  6429. "version": "v3.5.0",
  6430. "source": {
  6431. "type": "git",
  6432. "url": "https://github.com/symfony/deprecation-contracts.git",
  6433. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6434. },
  6435. "dist": {
  6436. "type": "zip",
  6437. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6438. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6439. "shasum": ""
  6440. },
  6441. "require": {
  6442. "php": ">=8.1"
  6443. },
  6444. "type": "library",
  6445. "extra": {
  6446. "branch-alias": {
  6447. "dev-main": "3.5-dev"
  6448. },
  6449. "thanks": {
  6450. "name": "symfony/contracts",
  6451. "url": "https://github.com/symfony/contracts"
  6452. }
  6453. },
  6454. "autoload": {
  6455. "files": [
  6456. "function.php"
  6457. ]
  6458. },
  6459. "notification-url": "https://packagist.org/downloads/",
  6460. "license": [
  6461. "MIT"
  6462. ],
  6463. "authors": [
  6464. {
  6465. "name": "Nicolas Grekas",
  6466. "email": "p@tchwork.com"
  6467. },
  6468. {
  6469. "name": "Symfony Community",
  6470. "homepage": "https://symfony.com/contributors"
  6471. }
  6472. ],
  6473. "description": "A generic function and convention to trigger deprecation notices",
  6474. "homepage": "https://symfony.com",
  6475. "support": {
  6476. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6477. },
  6478. "funding": [
  6479. {
  6480. "url": "https://symfony.com/sponsor",
  6481. "type": "custom"
  6482. },
  6483. {
  6484. "url": "https://github.com/fabpot",
  6485. "type": "github"
  6486. },
  6487. {
  6488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6489. "type": "tidelift"
  6490. }
  6491. ],
  6492. "time": "2024-04-18T09:32:20+00:00"
  6493. },
  6494. {
  6495. "name": "symfony/finder",
  6496. "version": "v6.4.8",
  6497. "source": {
  6498. "type": "git",
  6499. "url": "https://github.com/symfony/finder.git",
  6500. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6501. },
  6502. "dist": {
  6503. "type": "zip",
  6504. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6505. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6506. "shasum": ""
  6507. },
  6508. "require": {
  6509. "php": ">=8.1"
  6510. },
  6511. "require-dev": {
  6512. "symfony/filesystem": "^6.0|^7.0"
  6513. },
  6514. "type": "library",
  6515. "autoload": {
  6516. "psr-4": {
  6517. "Symfony\\Component\\Finder\\": ""
  6518. },
  6519. "exclude-from-classmap": [
  6520. "/Tests/"
  6521. ]
  6522. },
  6523. "notification-url": "https://packagist.org/downloads/",
  6524. "license": [
  6525. "MIT"
  6526. ],
  6527. "authors": [
  6528. {
  6529. "name": "Fabien Potencier",
  6530. "email": "fabien@symfony.com"
  6531. },
  6532. {
  6533. "name": "Symfony Community",
  6534. "homepage": "https://symfony.com/contributors"
  6535. }
  6536. ],
  6537. "description": "Finds files and directories via an intuitive fluent interface",
  6538. "homepage": "https://symfony.com",
  6539. "support": {
  6540. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6541. },
  6542. "funding": [
  6543. {
  6544. "url": "https://symfony.com/sponsor",
  6545. "type": "custom"
  6546. },
  6547. {
  6548. "url": "https://github.com/fabpot",
  6549. "type": "github"
  6550. },
  6551. {
  6552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6553. "type": "tidelift"
  6554. }
  6555. ],
  6556. "time": "2024-05-31T14:49:08+00:00"
  6557. },
  6558. {
  6559. "name": "symfony/polyfill-ctype",
  6560. "version": "v1.29.0",
  6561. "source": {
  6562. "type": "git",
  6563. "url": "https://github.com/symfony/polyfill-ctype.git",
  6564. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6565. },
  6566. "dist": {
  6567. "type": "zip",
  6568. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6569. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6570. "shasum": ""
  6571. },
  6572. "require": {
  6573. "php": ">=7.1"
  6574. },
  6575. "provide": {
  6576. "ext-ctype": "*"
  6577. },
  6578. "suggest": {
  6579. "ext-ctype": "For best performance"
  6580. },
  6581. "type": "library",
  6582. "extra": {
  6583. "thanks": {
  6584. "name": "symfony/polyfill",
  6585. "url": "https://github.com/symfony/polyfill"
  6586. }
  6587. },
  6588. "autoload": {
  6589. "files": [
  6590. "bootstrap.php"
  6591. ],
  6592. "psr-4": {
  6593. "Symfony\\Polyfill\\Ctype\\": ""
  6594. }
  6595. },
  6596. "notification-url": "https://packagist.org/downloads/",
  6597. "license": [
  6598. "MIT"
  6599. ],
  6600. "authors": [
  6601. {
  6602. "name": "Gert de Pagter",
  6603. "email": "BackEndTea@gmail.com"
  6604. },
  6605. {
  6606. "name": "Symfony Community",
  6607. "homepage": "https://symfony.com/contributors"
  6608. }
  6609. ],
  6610. "description": "Symfony polyfill for ctype functions",
  6611. "homepage": "https://symfony.com",
  6612. "keywords": [
  6613. "compatibility",
  6614. "ctype",
  6615. "polyfill",
  6616. "portable"
  6617. ],
  6618. "support": {
  6619. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6620. },
  6621. "funding": [
  6622. {
  6623. "url": "https://symfony.com/sponsor",
  6624. "type": "custom"
  6625. },
  6626. {
  6627. "url": "https://github.com/fabpot",
  6628. "type": "github"
  6629. },
  6630. {
  6631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6632. "type": "tidelift"
  6633. }
  6634. ],
  6635. "time": "2024-01-29T20:11:03+00:00"
  6636. },
  6637. {
  6638. "name": "symfony/polyfill-intl-grapheme",
  6639. "version": "v1.29.0",
  6640. "source": {
  6641. "type": "git",
  6642. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6643. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6644. },
  6645. "dist": {
  6646. "type": "zip",
  6647. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6648. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6649. "shasum": ""
  6650. },
  6651. "require": {
  6652. "php": ">=7.1"
  6653. },
  6654. "suggest": {
  6655. "ext-intl": "For best performance"
  6656. },
  6657. "type": "library",
  6658. "extra": {
  6659. "thanks": {
  6660. "name": "symfony/polyfill",
  6661. "url": "https://github.com/symfony/polyfill"
  6662. }
  6663. },
  6664. "autoload": {
  6665. "files": [
  6666. "bootstrap.php"
  6667. ],
  6668. "psr-4": {
  6669. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6670. }
  6671. },
  6672. "notification-url": "https://packagist.org/downloads/",
  6673. "license": [
  6674. "MIT"
  6675. ],
  6676. "authors": [
  6677. {
  6678. "name": "Nicolas Grekas",
  6679. "email": "p@tchwork.com"
  6680. },
  6681. {
  6682. "name": "Symfony Community",
  6683. "homepage": "https://symfony.com/contributors"
  6684. }
  6685. ],
  6686. "description": "Symfony polyfill for intl's grapheme_* functions",
  6687. "homepage": "https://symfony.com",
  6688. "keywords": [
  6689. "compatibility",
  6690. "grapheme",
  6691. "intl",
  6692. "polyfill",
  6693. "portable",
  6694. "shim"
  6695. ],
  6696. "support": {
  6697. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6698. },
  6699. "funding": [
  6700. {
  6701. "url": "https://symfony.com/sponsor",
  6702. "type": "custom"
  6703. },
  6704. {
  6705. "url": "https://github.com/fabpot",
  6706. "type": "github"
  6707. },
  6708. {
  6709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6710. "type": "tidelift"
  6711. }
  6712. ],
  6713. "time": "2024-01-29T20:11:03+00:00"
  6714. },
  6715. {
  6716. "name": "symfony/polyfill-intl-normalizer",
  6717. "version": "v1.29.0",
  6718. "source": {
  6719. "type": "git",
  6720. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6721. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6722. },
  6723. "dist": {
  6724. "type": "zip",
  6725. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6726. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6727. "shasum": ""
  6728. },
  6729. "require": {
  6730. "php": ">=7.1"
  6731. },
  6732. "suggest": {
  6733. "ext-intl": "For best performance"
  6734. },
  6735. "type": "library",
  6736. "extra": {
  6737. "thanks": {
  6738. "name": "symfony/polyfill",
  6739. "url": "https://github.com/symfony/polyfill"
  6740. }
  6741. },
  6742. "autoload": {
  6743. "files": [
  6744. "bootstrap.php"
  6745. ],
  6746. "psr-4": {
  6747. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6748. },
  6749. "classmap": [
  6750. "Resources/stubs"
  6751. ]
  6752. },
  6753. "notification-url": "https://packagist.org/downloads/",
  6754. "license": [
  6755. "MIT"
  6756. ],
  6757. "authors": [
  6758. {
  6759. "name": "Nicolas Grekas",
  6760. "email": "p@tchwork.com"
  6761. },
  6762. {
  6763. "name": "Symfony Community",
  6764. "homepage": "https://symfony.com/contributors"
  6765. }
  6766. ],
  6767. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6768. "homepage": "https://symfony.com",
  6769. "keywords": [
  6770. "compatibility",
  6771. "intl",
  6772. "normalizer",
  6773. "polyfill",
  6774. "portable",
  6775. "shim"
  6776. ],
  6777. "support": {
  6778. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6779. },
  6780. "funding": [
  6781. {
  6782. "url": "https://symfony.com/sponsor",
  6783. "type": "custom"
  6784. },
  6785. {
  6786. "url": "https://github.com/fabpot",
  6787. "type": "github"
  6788. },
  6789. {
  6790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6791. "type": "tidelift"
  6792. }
  6793. ],
  6794. "time": "2024-01-29T20:11:03+00:00"
  6795. },
  6796. {
  6797. "name": "symfony/polyfill-mbstring",
  6798. "version": "v1.29.0",
  6799. "source": {
  6800. "type": "git",
  6801. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6802. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6803. },
  6804. "dist": {
  6805. "type": "zip",
  6806. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6807. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6808. "shasum": ""
  6809. },
  6810. "require": {
  6811. "php": ">=7.1"
  6812. },
  6813. "provide": {
  6814. "ext-mbstring": "*"
  6815. },
  6816. "suggest": {
  6817. "ext-mbstring": "For best performance"
  6818. },
  6819. "type": "library",
  6820. "extra": {
  6821. "thanks": {
  6822. "name": "symfony/polyfill",
  6823. "url": "https://github.com/symfony/polyfill"
  6824. }
  6825. },
  6826. "autoload": {
  6827. "files": [
  6828. "bootstrap.php"
  6829. ],
  6830. "psr-4": {
  6831. "Symfony\\Polyfill\\Mbstring\\": ""
  6832. }
  6833. },
  6834. "notification-url": "https://packagist.org/downloads/",
  6835. "license": [
  6836. "MIT"
  6837. ],
  6838. "authors": [
  6839. {
  6840. "name": "Nicolas Grekas",
  6841. "email": "p@tchwork.com"
  6842. },
  6843. {
  6844. "name": "Symfony Community",
  6845. "homepage": "https://symfony.com/contributors"
  6846. }
  6847. ],
  6848. "description": "Symfony polyfill for the Mbstring extension",
  6849. "homepage": "https://symfony.com",
  6850. "keywords": [
  6851. "compatibility",
  6852. "mbstring",
  6853. "polyfill",
  6854. "portable",
  6855. "shim"
  6856. ],
  6857. "support": {
  6858. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6859. },
  6860. "funding": [
  6861. {
  6862. "url": "https://symfony.com/sponsor",
  6863. "type": "custom"
  6864. },
  6865. {
  6866. "url": "https://github.com/fabpot",
  6867. "type": "github"
  6868. },
  6869. {
  6870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6871. "type": "tidelift"
  6872. }
  6873. ],
  6874. "time": "2024-01-29T20:11:03+00:00"
  6875. },
  6876. {
  6877. "name": "symfony/polyfill-php80",
  6878. "version": "v1.29.0",
  6879. "source": {
  6880. "type": "git",
  6881. "url": "https://github.com/symfony/polyfill-php80.git",
  6882. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6883. },
  6884. "dist": {
  6885. "type": "zip",
  6886. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6887. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6888. "shasum": ""
  6889. },
  6890. "require": {
  6891. "php": ">=7.1"
  6892. },
  6893. "type": "library",
  6894. "extra": {
  6895. "thanks": {
  6896. "name": "symfony/polyfill",
  6897. "url": "https://github.com/symfony/polyfill"
  6898. }
  6899. },
  6900. "autoload": {
  6901. "files": [
  6902. "bootstrap.php"
  6903. ],
  6904. "psr-4": {
  6905. "Symfony\\Polyfill\\Php80\\": ""
  6906. },
  6907. "classmap": [
  6908. "Resources/stubs"
  6909. ]
  6910. },
  6911. "notification-url": "https://packagist.org/downloads/",
  6912. "license": [
  6913. "MIT"
  6914. ],
  6915. "authors": [
  6916. {
  6917. "name": "Ion Bazan",
  6918. "email": "ion.bazan@gmail.com"
  6919. },
  6920. {
  6921. "name": "Nicolas Grekas",
  6922. "email": "p@tchwork.com"
  6923. },
  6924. {
  6925. "name": "Symfony Community",
  6926. "homepage": "https://symfony.com/contributors"
  6927. }
  6928. ],
  6929. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6930. "homepage": "https://symfony.com",
  6931. "keywords": [
  6932. "compatibility",
  6933. "polyfill",
  6934. "portable",
  6935. "shim"
  6936. ],
  6937. "support": {
  6938. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6939. },
  6940. "funding": [
  6941. {
  6942. "url": "https://symfony.com/sponsor",
  6943. "type": "custom"
  6944. },
  6945. {
  6946. "url": "https://github.com/fabpot",
  6947. "type": "github"
  6948. },
  6949. {
  6950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6951. "type": "tidelift"
  6952. }
  6953. ],
  6954. "time": "2024-01-29T20:11:03+00:00"
  6955. },
  6956. {
  6957. "name": "symfony/service-contracts",
  6958. "version": "v3.5.0",
  6959. "source": {
  6960. "type": "git",
  6961. "url": "https://github.com/symfony/service-contracts.git",
  6962. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6963. },
  6964. "dist": {
  6965. "type": "zip",
  6966. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6967. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6968. "shasum": ""
  6969. },
  6970. "require": {
  6971. "php": ">=8.1",
  6972. "psr/container": "^1.1|^2.0",
  6973. "symfony/deprecation-contracts": "^2.5|^3"
  6974. },
  6975. "conflict": {
  6976. "ext-psr": "<1.1|>=2"
  6977. },
  6978. "type": "library",
  6979. "extra": {
  6980. "branch-alias": {
  6981. "dev-main": "3.5-dev"
  6982. },
  6983. "thanks": {
  6984. "name": "symfony/contracts",
  6985. "url": "https://github.com/symfony/contracts"
  6986. }
  6987. },
  6988. "autoload": {
  6989. "psr-4": {
  6990. "Symfony\\Contracts\\Service\\": ""
  6991. },
  6992. "exclude-from-classmap": [
  6993. "/Test/"
  6994. ]
  6995. },
  6996. "notification-url": "https://packagist.org/downloads/",
  6997. "license": [
  6998. "MIT"
  6999. ],
  7000. "authors": [
  7001. {
  7002. "name": "Nicolas Grekas",
  7003. "email": "p@tchwork.com"
  7004. },
  7005. {
  7006. "name": "Symfony Community",
  7007. "homepage": "https://symfony.com/contributors"
  7008. }
  7009. ],
  7010. "description": "Generic abstractions related to writing services",
  7011. "homepage": "https://symfony.com",
  7012. "keywords": [
  7013. "abstractions",
  7014. "contracts",
  7015. "decoupling",
  7016. "interfaces",
  7017. "interoperability",
  7018. "standards"
  7019. ],
  7020. "support": {
  7021. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7022. },
  7023. "funding": [
  7024. {
  7025. "url": "https://symfony.com/sponsor",
  7026. "type": "custom"
  7027. },
  7028. {
  7029. "url": "https://github.com/fabpot",
  7030. "type": "github"
  7031. },
  7032. {
  7033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7034. "type": "tidelift"
  7035. }
  7036. ],
  7037. "time": "2024-04-18T09:32:20+00:00"
  7038. },
  7039. {
  7040. "name": "symfony/string",
  7041. "version": "v6.4.8",
  7042. "source": {
  7043. "type": "git",
  7044. "url": "https://github.com/symfony/string.git",
  7045. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  7046. },
  7047. "dist": {
  7048. "type": "zip",
  7049. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7050. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7051. "shasum": ""
  7052. },
  7053. "require": {
  7054. "php": ">=8.1",
  7055. "symfony/polyfill-ctype": "~1.8",
  7056. "symfony/polyfill-intl-grapheme": "~1.0",
  7057. "symfony/polyfill-intl-normalizer": "~1.0",
  7058. "symfony/polyfill-mbstring": "~1.0"
  7059. },
  7060. "conflict": {
  7061. "symfony/translation-contracts": "<2.5"
  7062. },
  7063. "require-dev": {
  7064. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7065. "symfony/http-client": "^5.4|^6.0|^7.0",
  7066. "symfony/intl": "^6.2|^7.0",
  7067. "symfony/translation-contracts": "^2.5|^3.0",
  7068. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7069. },
  7070. "type": "library",
  7071. "autoload": {
  7072. "files": [
  7073. "Resources/functions.php"
  7074. ],
  7075. "psr-4": {
  7076. "Symfony\\Component\\String\\": ""
  7077. },
  7078. "exclude-from-classmap": [
  7079. "/Tests/"
  7080. ]
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Nicolas Grekas",
  7089. "email": "p@tchwork.com"
  7090. },
  7091. {
  7092. "name": "Symfony Community",
  7093. "homepage": "https://symfony.com/contributors"
  7094. }
  7095. ],
  7096. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7097. "homepage": "https://symfony.com",
  7098. "keywords": [
  7099. "grapheme",
  7100. "i18n",
  7101. "string",
  7102. "unicode",
  7103. "utf-8",
  7104. "utf8"
  7105. ],
  7106. "support": {
  7107. "source": "https://github.com/symfony/string/tree/v6.4.8"
  7108. },
  7109. "funding": [
  7110. {
  7111. "url": "https://symfony.com/sponsor",
  7112. "type": "custom"
  7113. },
  7114. {
  7115. "url": "https://github.com/fabpot",
  7116. "type": "github"
  7117. },
  7118. {
  7119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7120. "type": "tidelift"
  7121. }
  7122. ],
  7123. "time": "2024-05-31T14:49:08+00:00"
  7124. },
  7125. {
  7126. "name": "symfony/translation",
  7127. "version": "v6.4.8",
  7128. "source": {
  7129. "type": "git",
  7130. "url": "https://github.com/symfony/translation.git",
  7131. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7132. },
  7133. "dist": {
  7134. "type": "zip",
  7135. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7136. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7137. "shasum": ""
  7138. },
  7139. "require": {
  7140. "php": ">=8.1",
  7141. "symfony/deprecation-contracts": "^2.5|^3",
  7142. "symfony/polyfill-mbstring": "~1.0",
  7143. "symfony/translation-contracts": "^2.5|^3.0"
  7144. },
  7145. "conflict": {
  7146. "symfony/config": "<5.4",
  7147. "symfony/console": "<5.4",
  7148. "symfony/dependency-injection": "<5.4",
  7149. "symfony/http-client-contracts": "<2.5",
  7150. "symfony/http-kernel": "<5.4",
  7151. "symfony/service-contracts": "<2.5",
  7152. "symfony/twig-bundle": "<5.4",
  7153. "symfony/yaml": "<5.4"
  7154. },
  7155. "provide": {
  7156. "symfony/translation-implementation": "2.3|3.0"
  7157. },
  7158. "require-dev": {
  7159. "nikic/php-parser": "^4.18|^5.0",
  7160. "psr/log": "^1|^2|^3",
  7161. "symfony/config": "^5.4|^6.0|^7.0",
  7162. "symfony/console": "^5.4|^6.0|^7.0",
  7163. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7164. "symfony/finder": "^5.4|^6.0|^7.0",
  7165. "symfony/http-client-contracts": "^2.5|^3.0",
  7166. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7167. "symfony/intl": "^5.4|^6.0|^7.0",
  7168. "symfony/polyfill-intl-icu": "^1.21",
  7169. "symfony/routing": "^5.4|^6.0|^7.0",
  7170. "symfony/service-contracts": "^2.5|^3",
  7171. "symfony/yaml": "^5.4|^6.0|^7.0"
  7172. },
  7173. "type": "library",
  7174. "autoload": {
  7175. "files": [
  7176. "Resources/functions.php"
  7177. ],
  7178. "psr-4": {
  7179. "Symfony\\Component\\Translation\\": ""
  7180. },
  7181. "exclude-from-classmap": [
  7182. "/Tests/"
  7183. ]
  7184. },
  7185. "notification-url": "https://packagist.org/downloads/",
  7186. "license": [
  7187. "MIT"
  7188. ],
  7189. "authors": [
  7190. {
  7191. "name": "Fabien Potencier",
  7192. "email": "fabien@symfony.com"
  7193. },
  7194. {
  7195. "name": "Symfony Community",
  7196. "homepage": "https://symfony.com/contributors"
  7197. }
  7198. ],
  7199. "description": "Provides tools to internationalize your application",
  7200. "homepage": "https://symfony.com",
  7201. "support": {
  7202. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7203. },
  7204. "funding": [
  7205. {
  7206. "url": "https://symfony.com/sponsor",
  7207. "type": "custom"
  7208. },
  7209. {
  7210. "url": "https://github.com/fabpot",
  7211. "type": "github"
  7212. },
  7213. {
  7214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7215. "type": "tidelift"
  7216. }
  7217. ],
  7218. "time": "2024-05-31T14:49:08+00:00"
  7219. },
  7220. {
  7221. "name": "symfony/translation-contracts",
  7222. "version": "v3.5.0",
  7223. "source": {
  7224. "type": "git",
  7225. "url": "https://github.com/symfony/translation-contracts.git",
  7226. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7227. },
  7228. "dist": {
  7229. "type": "zip",
  7230. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7231. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7232. "shasum": ""
  7233. },
  7234. "require": {
  7235. "php": ">=8.1"
  7236. },
  7237. "type": "library",
  7238. "extra": {
  7239. "branch-alias": {
  7240. "dev-main": "3.5-dev"
  7241. },
  7242. "thanks": {
  7243. "name": "symfony/contracts",
  7244. "url": "https://github.com/symfony/contracts"
  7245. }
  7246. },
  7247. "autoload": {
  7248. "psr-4": {
  7249. "Symfony\\Contracts\\Translation\\": ""
  7250. },
  7251. "exclude-from-classmap": [
  7252. "/Test/"
  7253. ]
  7254. },
  7255. "notification-url": "https://packagist.org/downloads/",
  7256. "license": [
  7257. "MIT"
  7258. ],
  7259. "authors": [
  7260. {
  7261. "name": "Nicolas Grekas",
  7262. "email": "p@tchwork.com"
  7263. },
  7264. {
  7265. "name": "Symfony Community",
  7266. "homepage": "https://symfony.com/contributors"
  7267. }
  7268. ],
  7269. "description": "Generic abstractions related to translation",
  7270. "homepage": "https://symfony.com",
  7271. "keywords": [
  7272. "abstractions",
  7273. "contracts",
  7274. "decoupling",
  7275. "interfaces",
  7276. "interoperability",
  7277. "standards"
  7278. ],
  7279. "support": {
  7280. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7281. },
  7282. "funding": [
  7283. {
  7284. "url": "https://symfony.com/sponsor",
  7285. "type": "custom"
  7286. },
  7287. {
  7288. "url": "https://github.com/fabpot",
  7289. "type": "github"
  7290. },
  7291. {
  7292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7293. "type": "tidelift"
  7294. }
  7295. ],
  7296. "time": "2024-04-18T09:32:20+00:00"
  7297. },
  7298. {
  7299. "name": "vlucas/phpdotenv",
  7300. "version": "v5.6.0",
  7301. "source": {
  7302. "type": "git",
  7303. "url": "https://github.com/vlucas/phpdotenv.git",
  7304. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7305. },
  7306. "dist": {
  7307. "type": "zip",
  7308. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7309. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7310. "shasum": ""
  7311. },
  7312. "require": {
  7313. "ext-pcre": "*",
  7314. "graham-campbell/result-type": "^1.1.2",
  7315. "php": "^7.2.5 || ^8.0",
  7316. "phpoption/phpoption": "^1.9.2",
  7317. "symfony/polyfill-ctype": "^1.24",
  7318. "symfony/polyfill-mbstring": "^1.24",
  7319. "symfony/polyfill-php80": "^1.24"
  7320. },
  7321. "require-dev": {
  7322. "bamarni/composer-bin-plugin": "^1.8.2",
  7323. "ext-filter": "*",
  7324. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7325. },
  7326. "suggest": {
  7327. "ext-filter": "Required to use the boolean validator."
  7328. },
  7329. "type": "library",
  7330. "extra": {
  7331. "bamarni-bin": {
  7332. "bin-links": true,
  7333. "forward-command": true
  7334. },
  7335. "branch-alias": {
  7336. "dev-master": "5.6-dev"
  7337. }
  7338. },
  7339. "autoload": {
  7340. "psr-4": {
  7341. "Dotenv\\": "src/"
  7342. }
  7343. },
  7344. "notification-url": "https://packagist.org/downloads/",
  7345. "license": [
  7346. "BSD-3-Clause"
  7347. ],
  7348. "authors": [
  7349. {
  7350. "name": "Graham Campbell",
  7351. "email": "hello@gjcampbell.co.uk",
  7352. "homepage": "https://github.com/GrahamCampbell"
  7353. },
  7354. {
  7355. "name": "Vance Lucas",
  7356. "email": "vance@vancelucas.com",
  7357. "homepage": "https://github.com/vlucas"
  7358. }
  7359. ],
  7360. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7361. "keywords": [
  7362. "dotenv",
  7363. "env",
  7364. "environment"
  7365. ],
  7366. "support": {
  7367. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7368. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7369. },
  7370. "funding": [
  7371. {
  7372. "url": "https://github.com/GrahamCampbell",
  7373. "type": "github"
  7374. },
  7375. {
  7376. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7377. "type": "tidelift"
  7378. }
  7379. ],
  7380. "time": "2023-11-12T22:43:29+00:00"
  7381. },
  7382. {
  7383. "name": "voku/portable-ascii",
  7384. "version": "2.0.2",
  7385. "source": {
  7386. "type": "git",
  7387. "url": "https://github.com/voku/portable-ascii.git",
  7388. "reference": "16c17671a804bb92602822113dd91fbc8a35d2af"
  7389. },
  7390. "dist": {
  7391. "type": "zip",
  7392. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/16c17671a804bb92602822113dd91fbc8a35d2af",
  7393. "reference": "16c17671a804bb92602822113dd91fbc8a35d2af",
  7394. "shasum": "",
  7395. "mirrors": [
  7396. {
  7397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7398. "preferred": true
  7399. }
  7400. ]
  7401. },
  7402. "require": {
  7403. "php": ">=7.0.0"
  7404. },
  7405. "require-dev": {
  7406. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7407. },
  7408. "suggest": {
  7409. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7410. },
  7411. "type": "library",
  7412. "autoload": {
  7413. "psr-4": {
  7414. "voku\\": "src/voku/"
  7415. }
  7416. },
  7417. "notification-url": "https://packagist.org/downloads/",
  7418. "license": [
  7419. "MIT"
  7420. ],
  7421. "authors": [
  7422. {
  7423. "name": "Lars Moelleken",
  7424. "homepage": "https://www.moelleken.org/"
  7425. }
  7426. ],
  7427. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7428. "homepage": "https://github.com/voku/portable-ascii",
  7429. "keywords": [
  7430. "ascii",
  7431. "clean",
  7432. "php"
  7433. ],
  7434. "support": {
  7435. "issues": "https://github.com/voku/portable-ascii/issues",
  7436. "source": "https://github.com/voku/portable-ascii/tree/2.0.2"
  7437. },
  7438. "funding": [
  7439. {
  7440. "url": "https://www.paypal.me/moelleken",
  7441. "type": "custom"
  7442. },
  7443. {
  7444. "url": "https://github.com/voku",
  7445. "type": "github"
  7446. },
  7447. {
  7448. "url": "https://opencollective.com/portable-ascii",
  7449. "type": "open_collective"
  7450. },
  7451. {
  7452. "url": "https://www.patreon.com/voku",
  7453. "type": "patreon"
  7454. },
  7455. {
  7456. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7457. "type": "tidelift"
  7458. }
  7459. ],
  7460. "time": "2024-11-21T00:49:12+00:00"
  7461. }
  7462. ],
  7463. "packages-dev": [
  7464. {
  7465. "name": "clue/ndjson-react",
  7466. "version": "v1.3.0",
  7467. "source": {
  7468. "type": "git",
  7469. "url": "https://github.com/clue/reactphp-ndjson.git",
  7470. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7471. },
  7472. "dist": {
  7473. "type": "zip",
  7474. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7475. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7476. "shasum": ""
  7477. },
  7478. "require": {
  7479. "php": ">=5.3",
  7480. "react/stream": "^1.2"
  7481. },
  7482. "require-dev": {
  7483. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7484. "react/event-loop": "^1.2"
  7485. },
  7486. "type": "library",
  7487. "autoload": {
  7488. "psr-4": {
  7489. "Clue\\React\\NDJson\\": "src/"
  7490. }
  7491. },
  7492. "notification-url": "https://packagist.org/downloads/",
  7493. "license": [
  7494. "MIT"
  7495. ],
  7496. "authors": [
  7497. {
  7498. "name": "Christian Lück",
  7499. "email": "christian@clue.engineering"
  7500. }
  7501. ],
  7502. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7503. "homepage": "https://github.com/clue/reactphp-ndjson",
  7504. "keywords": [
  7505. "NDJSON",
  7506. "json",
  7507. "jsonlines",
  7508. "newline",
  7509. "reactphp",
  7510. "streaming"
  7511. ],
  7512. "support": {
  7513. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7514. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7515. },
  7516. "funding": [
  7517. {
  7518. "url": "https://clue.engineering/support",
  7519. "type": "custom"
  7520. },
  7521. {
  7522. "url": "https://github.com/clue",
  7523. "type": "github"
  7524. }
  7525. ],
  7526. "time": "2022-12-23T10:58:28+00:00"
  7527. },
  7528. {
  7529. "name": "composer/pcre",
  7530. "version": "3.1.4",
  7531. "source": {
  7532. "type": "git",
  7533. "url": "https://github.com/composer/pcre.git",
  7534. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7535. },
  7536. "dist": {
  7537. "type": "zip",
  7538. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7539. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7540. "shasum": ""
  7541. },
  7542. "require": {
  7543. "php": "^7.4 || ^8.0"
  7544. },
  7545. "require-dev": {
  7546. "phpstan/phpstan": "^1.3",
  7547. "phpstan/phpstan-strict-rules": "^1.1",
  7548. "symfony/phpunit-bridge": "^5"
  7549. },
  7550. "type": "library",
  7551. "extra": {
  7552. "branch-alias": {
  7553. "dev-main": "3.x-dev"
  7554. }
  7555. },
  7556. "autoload": {
  7557. "psr-4": {
  7558. "Composer\\Pcre\\": "src"
  7559. }
  7560. },
  7561. "notification-url": "https://packagist.org/downloads/",
  7562. "license": [
  7563. "MIT"
  7564. ],
  7565. "authors": [
  7566. {
  7567. "name": "Jordi Boggiano",
  7568. "email": "j.boggiano@seld.be",
  7569. "homepage": "http://seld.be"
  7570. }
  7571. ],
  7572. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7573. "keywords": [
  7574. "PCRE",
  7575. "preg",
  7576. "regex",
  7577. "regular expression"
  7578. ],
  7579. "support": {
  7580. "issues": "https://github.com/composer/pcre/issues",
  7581. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7582. },
  7583. "funding": [
  7584. {
  7585. "url": "https://packagist.com",
  7586. "type": "custom"
  7587. },
  7588. {
  7589. "url": "https://github.com/composer",
  7590. "type": "github"
  7591. },
  7592. {
  7593. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7594. "type": "tidelift"
  7595. }
  7596. ],
  7597. "time": "2024-05-27T13:40:54+00:00"
  7598. },
  7599. {
  7600. "name": "composer/semver",
  7601. "version": "3.4.0",
  7602. "source": {
  7603. "type": "git",
  7604. "url": "https://github.com/composer/semver.git",
  7605. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7606. },
  7607. "dist": {
  7608. "type": "zip",
  7609. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7610. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7611. "shasum": ""
  7612. },
  7613. "require": {
  7614. "php": "^5.3.2 || ^7.0 || ^8.0"
  7615. },
  7616. "require-dev": {
  7617. "phpstan/phpstan": "^1.4",
  7618. "symfony/phpunit-bridge": "^4.2 || ^5"
  7619. },
  7620. "type": "library",
  7621. "extra": {
  7622. "branch-alias": {
  7623. "dev-main": "3.x-dev"
  7624. }
  7625. },
  7626. "autoload": {
  7627. "psr-4": {
  7628. "Composer\\Semver\\": "src"
  7629. }
  7630. },
  7631. "notification-url": "https://packagist.org/downloads/",
  7632. "license": [
  7633. "MIT"
  7634. ],
  7635. "authors": [
  7636. {
  7637. "name": "Nils Adermann",
  7638. "email": "naderman@naderman.de",
  7639. "homepage": "http://www.naderman.de"
  7640. },
  7641. {
  7642. "name": "Jordi Boggiano",
  7643. "email": "j.boggiano@seld.be",
  7644. "homepage": "http://seld.be"
  7645. },
  7646. {
  7647. "name": "Rob Bast",
  7648. "email": "rob.bast@gmail.com",
  7649. "homepage": "http://robbast.nl"
  7650. }
  7651. ],
  7652. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7653. "keywords": [
  7654. "semantic",
  7655. "semver",
  7656. "validation",
  7657. "versioning"
  7658. ],
  7659. "support": {
  7660. "irc": "ircs://irc.libera.chat:6697/composer",
  7661. "issues": "https://github.com/composer/semver/issues",
  7662. "source": "https://github.com/composer/semver/tree/3.4.0"
  7663. },
  7664. "funding": [
  7665. {
  7666. "url": "https://packagist.com",
  7667. "type": "custom"
  7668. },
  7669. {
  7670. "url": "https://github.com/composer",
  7671. "type": "github"
  7672. },
  7673. {
  7674. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7675. "type": "tidelift"
  7676. }
  7677. ],
  7678. "time": "2023-08-31T09:50:34+00:00"
  7679. },
  7680. {
  7681. "name": "composer/xdebug-handler",
  7682. "version": "3.0.5",
  7683. "source": {
  7684. "type": "git",
  7685. "url": "https://github.com/composer/xdebug-handler.git",
  7686. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7687. },
  7688. "dist": {
  7689. "type": "zip",
  7690. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7691. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7692. "shasum": ""
  7693. },
  7694. "require": {
  7695. "composer/pcre": "^1 || ^2 || ^3",
  7696. "php": "^7.2.5 || ^8.0",
  7697. "psr/log": "^1 || ^2 || ^3"
  7698. },
  7699. "require-dev": {
  7700. "phpstan/phpstan": "^1.0",
  7701. "phpstan/phpstan-strict-rules": "^1.1",
  7702. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7703. },
  7704. "type": "library",
  7705. "autoload": {
  7706. "psr-4": {
  7707. "Composer\\XdebugHandler\\": "src"
  7708. }
  7709. },
  7710. "notification-url": "https://packagist.org/downloads/",
  7711. "license": [
  7712. "MIT"
  7713. ],
  7714. "authors": [
  7715. {
  7716. "name": "John Stevenson",
  7717. "email": "john-stevenson@blueyonder.co.uk"
  7718. }
  7719. ],
  7720. "description": "Restarts a process without Xdebug.",
  7721. "keywords": [
  7722. "Xdebug",
  7723. "performance"
  7724. ],
  7725. "support": {
  7726. "irc": "ircs://irc.libera.chat:6697/composer",
  7727. "issues": "https://github.com/composer/xdebug-handler/issues",
  7728. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7729. },
  7730. "funding": [
  7731. {
  7732. "url": "https://packagist.com",
  7733. "type": "custom"
  7734. },
  7735. {
  7736. "url": "https://github.com/composer",
  7737. "type": "github"
  7738. },
  7739. {
  7740. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7741. "type": "tidelift"
  7742. }
  7743. ],
  7744. "time": "2024-05-06T16:37:16+00:00"
  7745. },
  7746. {
  7747. "name": "evenement/evenement",
  7748. "version": "v3.0.2",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/igorw/evenement.git",
  7752. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7757. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7758. "shasum": ""
  7759. },
  7760. "require": {
  7761. "php": ">=7.0"
  7762. },
  7763. "require-dev": {
  7764. "phpunit/phpunit": "^9 || ^6"
  7765. },
  7766. "type": "library",
  7767. "autoload": {
  7768. "psr-4": {
  7769. "Evenement\\": "src/"
  7770. }
  7771. },
  7772. "notification-url": "https://packagist.org/downloads/",
  7773. "license": [
  7774. "MIT"
  7775. ],
  7776. "authors": [
  7777. {
  7778. "name": "Igor Wiedler",
  7779. "email": "igor@wiedler.ch"
  7780. }
  7781. ],
  7782. "description": "Événement is a very simple event dispatching library for PHP",
  7783. "keywords": [
  7784. "event-dispatcher",
  7785. "event-emitter"
  7786. ],
  7787. "support": {
  7788. "issues": "https://github.com/igorw/evenement/issues",
  7789. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7790. },
  7791. "time": "2023-08-08T05:53:35+00:00"
  7792. },
  7793. {
  7794. "name": "fidry/cpu-core-counter",
  7795. "version": "1.1.0",
  7796. "source": {
  7797. "type": "git",
  7798. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7799. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7800. },
  7801. "dist": {
  7802. "type": "zip",
  7803. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7804. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7805. "shasum": ""
  7806. },
  7807. "require": {
  7808. "php": "^7.2 || ^8.0"
  7809. },
  7810. "require-dev": {
  7811. "fidry/makefile": "^0.2.0",
  7812. "fidry/php-cs-fixer-config": "^1.1.2",
  7813. "phpstan/extension-installer": "^1.2.0",
  7814. "phpstan/phpstan": "^1.9.2",
  7815. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7816. "phpstan/phpstan-phpunit": "^1.2.2",
  7817. "phpstan/phpstan-strict-rules": "^1.4.4",
  7818. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7819. "webmozarts/strict-phpunit": "^7.5"
  7820. },
  7821. "type": "library",
  7822. "autoload": {
  7823. "psr-4": {
  7824. "Fidry\\CpuCoreCounter\\": "src/"
  7825. }
  7826. },
  7827. "notification-url": "https://packagist.org/downloads/",
  7828. "license": [
  7829. "MIT"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Théo FIDRY",
  7834. "email": "theo.fidry@gmail.com"
  7835. }
  7836. ],
  7837. "description": "Tiny utility to get the number of CPU cores.",
  7838. "keywords": [
  7839. "CPU",
  7840. "core"
  7841. ],
  7842. "support": {
  7843. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7844. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7845. },
  7846. "funding": [
  7847. {
  7848. "url": "https://github.com/theofidry",
  7849. "type": "github"
  7850. }
  7851. ],
  7852. "time": "2024-02-07T09:43:46+00:00"
  7853. },
  7854. {
  7855. "name": "friendsofphp/php-cs-fixer",
  7856. "version": "v3.58.1",
  7857. "source": {
  7858. "type": "git",
  7859. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7860. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7861. },
  7862. "dist": {
  7863. "type": "zip",
  7864. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7865. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7866. "shasum": ""
  7867. },
  7868. "require": {
  7869. "clue/ndjson-react": "^1.0",
  7870. "composer/semver": "^3.4",
  7871. "composer/xdebug-handler": "^3.0.3",
  7872. "ext-filter": "*",
  7873. "ext-json": "*",
  7874. "ext-tokenizer": "*",
  7875. "fidry/cpu-core-counter": "^1.0",
  7876. "php": "^7.4 || ^8.0",
  7877. "react/child-process": "^0.6.5",
  7878. "react/event-loop": "^1.0",
  7879. "react/promise": "^2.0 || ^3.0",
  7880. "react/socket": "^1.0",
  7881. "react/stream": "^1.0",
  7882. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7883. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7884. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7885. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7886. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7887. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7888. "symfony/polyfill-mbstring": "^1.28",
  7889. "symfony/polyfill-php80": "^1.28",
  7890. "symfony/polyfill-php81": "^1.28",
  7891. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7892. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7893. },
  7894. "require-dev": {
  7895. "facile-it/paraunit": "^1.3 || ^2.0",
  7896. "infection/infection": "^0.27.11",
  7897. "justinrainbow/json-schema": "^5.2",
  7898. "keradus/cli-executor": "^2.1",
  7899. "mikey179/vfsstream": "^1.6.11",
  7900. "php-coveralls/php-coveralls": "^2.7",
  7901. "php-cs-fixer/accessible-object": "^1.1",
  7902. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7903. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7904. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7905. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7906. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7907. },
  7908. "suggest": {
  7909. "ext-dom": "For handling output formats in XML",
  7910. "ext-mbstring": "For handling non-UTF8 characters."
  7911. },
  7912. "bin": [
  7913. "php-cs-fixer"
  7914. ],
  7915. "type": "application",
  7916. "autoload": {
  7917. "psr-4": {
  7918. "PhpCsFixer\\": "src/"
  7919. }
  7920. },
  7921. "notification-url": "https://packagist.org/downloads/",
  7922. "license": [
  7923. "MIT"
  7924. ],
  7925. "authors": [
  7926. {
  7927. "name": "Fabien Potencier",
  7928. "email": "fabien@symfony.com"
  7929. },
  7930. {
  7931. "name": "Dariusz Rumiński",
  7932. "email": "dariusz.ruminski@gmail.com"
  7933. }
  7934. ],
  7935. "description": "A tool to automatically fix PHP code style",
  7936. "keywords": [
  7937. "Static code analysis",
  7938. "fixer",
  7939. "standards",
  7940. "static analysis"
  7941. ],
  7942. "support": {
  7943. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7944. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7945. },
  7946. "funding": [
  7947. {
  7948. "url": "https://github.com/keradus",
  7949. "type": "github"
  7950. }
  7951. ],
  7952. "time": "2024-05-29T16:39:07+00:00"
  7953. },
  7954. {
  7955. "name": "hamcrest/hamcrest-php",
  7956. "version": "v2.0.1",
  7957. "source": {
  7958. "type": "git",
  7959. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7960. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7961. },
  7962. "dist": {
  7963. "type": "zip",
  7964. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7965. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7966. "shasum": ""
  7967. },
  7968. "require": {
  7969. "php": "^5.3|^7.0|^8.0"
  7970. },
  7971. "replace": {
  7972. "cordoval/hamcrest-php": "*",
  7973. "davedevelopment/hamcrest-php": "*",
  7974. "kodova/hamcrest-php": "*"
  7975. },
  7976. "require-dev": {
  7977. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7978. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7979. },
  7980. "type": "library",
  7981. "extra": {
  7982. "branch-alias": {
  7983. "dev-master": "2.1-dev"
  7984. }
  7985. },
  7986. "autoload": {
  7987. "classmap": [
  7988. "hamcrest"
  7989. ]
  7990. },
  7991. "notification-url": "https://packagist.org/downloads/",
  7992. "license": [
  7993. "BSD-3-Clause"
  7994. ],
  7995. "description": "This is the PHP port of Hamcrest Matchers",
  7996. "keywords": [
  7997. "test"
  7998. ],
  7999. "support": {
  8000. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8001. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8002. },
  8003. "time": "2020-07-09T08:09:16+00:00"
  8004. },
  8005. {
  8006. "name": "hyperf/devtool",
  8007. "version": "v3.1.19",
  8008. "source": {
  8009. "type": "git",
  8010. "url": "https://github.com/hyperf/devtool.git",
  8011. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  8012. },
  8013. "dist": {
  8014. "type": "zip",
  8015. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8016. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8017. "shasum": ""
  8018. },
  8019. "require": {
  8020. "hyperf/code-parser": "~3.1.0",
  8021. "hyperf/command": "~3.1.0",
  8022. "hyperf/contract": "~3.1.0",
  8023. "hyperf/di": "~3.1.0",
  8024. "hyperf/support": "~3.1.0",
  8025. "hyperf/utils": "~3.1.0",
  8026. "php": ">=8.1"
  8027. },
  8028. "type": "library",
  8029. "extra": {
  8030. "branch-alias": {
  8031. "dev-master": "3.1-dev"
  8032. },
  8033. "hyperf": {
  8034. "config": "Hyperf\\Devtool\\ConfigProvider"
  8035. }
  8036. },
  8037. "autoload": {
  8038. "psr-4": {
  8039. "Hyperf\\Devtool\\": "src/"
  8040. }
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "MIT"
  8045. ],
  8046. "description": "A Devtool for Hyperf.",
  8047. "homepage": "https://hyperf.io",
  8048. "keywords": [
  8049. "dev",
  8050. "devtool",
  8051. "hyperf",
  8052. "php",
  8053. "swoole"
  8054. ],
  8055. "support": {
  8056. "docs": "https://hyperf.wiki",
  8057. "issues": "https://github.com/hyperf/hyperf/issues",
  8058. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8059. "source": "https://github.com/hyperf/hyperf"
  8060. },
  8061. "funding": [
  8062. {
  8063. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8064. "type": "custom"
  8065. },
  8066. {
  8067. "url": "https://opencollective.com/hyperf",
  8068. "type": "open_collective"
  8069. }
  8070. ],
  8071. "time": "2024-04-13T06:53:08+00:00"
  8072. },
  8073. {
  8074. "name": "hyperf/testing",
  8075. "version": "v3.1.21",
  8076. "source": {
  8077. "type": "git",
  8078. "url": "https://github.com/hyperf/testing.git",
  8079. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  8080. },
  8081. "dist": {
  8082. "type": "zip",
  8083. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8084. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8085. "shasum": ""
  8086. },
  8087. "require": {
  8088. "hyperf/codec": "~3.1.0",
  8089. "hyperf/collection": "~3.1.0",
  8090. "hyperf/contract": "~3.1.0",
  8091. "hyperf/coroutine": "~3.1.0",
  8092. "hyperf/http-message": "~3.1.0",
  8093. "hyperf/http-server": "~3.1.0",
  8094. "hyperf/support": "~3.1.0",
  8095. "hyperf/utils": "~3.1.0",
  8096. "php": ">=8.1",
  8097. "phpunit/phpunit": "^10.0",
  8098. "psr/container": "^1.0|^2.0",
  8099. "symfony/http-foundation": "^5.4|^6.0"
  8100. },
  8101. "suggest": {
  8102. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8103. },
  8104. "bin": [
  8105. "co-phpunit"
  8106. ],
  8107. "type": "library",
  8108. "extra": {
  8109. "branch-alias": {
  8110. "dev-master": "3.1-dev"
  8111. }
  8112. },
  8113. "autoload": {
  8114. "psr-4": {
  8115. "Hyperf\\Testing\\": "src/"
  8116. }
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "description": "Testing for hyperf",
  8123. "keywords": [
  8124. "dev",
  8125. "php",
  8126. "swoole",
  8127. "testing"
  8128. ],
  8129. "support": {
  8130. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  8131. },
  8132. "funding": [
  8133. {
  8134. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8135. "type": "custom"
  8136. },
  8137. {
  8138. "url": "https://opencollective.com/hyperf",
  8139. "type": "open_collective"
  8140. }
  8141. ],
  8142. "time": "2024-05-07T05:34:51+00:00"
  8143. },
  8144. {
  8145. "name": "hyperf/watcher",
  8146. "version": "v3.1.21",
  8147. "source": {
  8148. "type": "git",
  8149. "url": "https://github.com/hyperf/watcher.git",
  8150. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  8151. },
  8152. "dist": {
  8153. "type": "zip",
  8154. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8155. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8156. "shasum": ""
  8157. },
  8158. "require": {
  8159. "ext-posix": "*",
  8160. "hyperf/codec": "~3.1.0",
  8161. "hyperf/command": "~3.1.0",
  8162. "hyperf/di": "~3.1.0",
  8163. "hyperf/framework": "~3.1.0",
  8164. "hyperf/support": "~3.1.0",
  8165. "php": ">=8.1"
  8166. },
  8167. "type": "library",
  8168. "extra": {
  8169. "branch-alias": {
  8170. "dev-master": "3.1-dev"
  8171. },
  8172. "hyperf": {
  8173. "config": "Hyperf\\Watcher\\ConfigProvider"
  8174. }
  8175. },
  8176. "autoload": {
  8177. "files": [
  8178. "src/Functions.php"
  8179. ],
  8180. "psr-4": {
  8181. "Hyperf\\Watcher\\": "src/"
  8182. }
  8183. },
  8184. "notification-url": "https://packagist.org/downloads/",
  8185. "license": [
  8186. "MIT"
  8187. ],
  8188. "description": "Hot reload watcher for Hyperf",
  8189. "keywords": [
  8190. "dev",
  8191. "hyperf",
  8192. "php"
  8193. ],
  8194. "support": {
  8195. "issues": "https://github.com/hyperf/watcher/issues",
  8196. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  8197. },
  8198. "funding": [
  8199. {
  8200. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8201. "type": "custom"
  8202. },
  8203. {
  8204. "url": "https://opencollective.com/hyperf",
  8205. "type": "open_collective"
  8206. }
  8207. ],
  8208. "time": "2024-05-09T13:40:44+00:00"
  8209. },
  8210. {
  8211. "name": "mockery/mockery",
  8212. "version": "1.6.12",
  8213. "source": {
  8214. "type": "git",
  8215. "url": "https://github.com/mockery/mockery.git",
  8216. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8217. },
  8218. "dist": {
  8219. "type": "zip",
  8220. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8221. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8222. "shasum": ""
  8223. },
  8224. "require": {
  8225. "hamcrest/hamcrest-php": "^2.0.1",
  8226. "lib-pcre": ">=7.0",
  8227. "php": ">=7.3"
  8228. },
  8229. "conflict": {
  8230. "phpunit/phpunit": "<8.0"
  8231. },
  8232. "require-dev": {
  8233. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8234. "symplify/easy-coding-standard": "^12.1.14"
  8235. },
  8236. "type": "library",
  8237. "autoload": {
  8238. "files": [
  8239. "library/helpers.php",
  8240. "library/Mockery.php"
  8241. ],
  8242. "psr-4": {
  8243. "Mockery\\": "library/Mockery"
  8244. }
  8245. },
  8246. "notification-url": "https://packagist.org/downloads/",
  8247. "license": [
  8248. "BSD-3-Clause"
  8249. ],
  8250. "authors": [
  8251. {
  8252. "name": "Pádraic Brady",
  8253. "email": "padraic.brady@gmail.com",
  8254. "homepage": "https://github.com/padraic",
  8255. "role": "Author"
  8256. },
  8257. {
  8258. "name": "Dave Marshall",
  8259. "email": "dave.marshall@atstsolutions.co.uk",
  8260. "homepage": "https://davedevelopment.co.uk",
  8261. "role": "Developer"
  8262. },
  8263. {
  8264. "name": "Nathanael Esayeas",
  8265. "email": "nathanael.esayeas@protonmail.com",
  8266. "homepage": "https://github.com/ghostwriter",
  8267. "role": "Lead Developer"
  8268. }
  8269. ],
  8270. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8271. "homepage": "https://github.com/mockery/mockery",
  8272. "keywords": [
  8273. "BDD",
  8274. "TDD",
  8275. "library",
  8276. "mock",
  8277. "mock objects",
  8278. "mockery",
  8279. "stub",
  8280. "test",
  8281. "test double",
  8282. "testing"
  8283. ],
  8284. "support": {
  8285. "docs": "https://docs.mockery.io/",
  8286. "issues": "https://github.com/mockery/mockery/issues",
  8287. "rss": "https://github.com/mockery/mockery/releases.atom",
  8288. "security": "https://github.com/mockery/mockery/security/advisories",
  8289. "source": "https://github.com/mockery/mockery"
  8290. },
  8291. "time": "2024-05-16T03:13:13+00:00"
  8292. },
  8293. {
  8294. "name": "myclabs/deep-copy",
  8295. "version": "1.11.1",
  8296. "source": {
  8297. "type": "git",
  8298. "url": "https://github.com/myclabs/DeepCopy.git",
  8299. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8300. },
  8301. "dist": {
  8302. "type": "zip",
  8303. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8304. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8305. "shasum": ""
  8306. },
  8307. "require": {
  8308. "php": "^7.1 || ^8.0"
  8309. },
  8310. "conflict": {
  8311. "doctrine/collections": "<1.6.8",
  8312. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8313. },
  8314. "require-dev": {
  8315. "doctrine/collections": "^1.6.8",
  8316. "doctrine/common": "^2.13.3 || ^3.2.2",
  8317. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8318. },
  8319. "type": "library",
  8320. "autoload": {
  8321. "files": [
  8322. "src/DeepCopy/deep_copy.php"
  8323. ],
  8324. "psr-4": {
  8325. "DeepCopy\\": "src/DeepCopy/"
  8326. }
  8327. },
  8328. "notification-url": "https://packagist.org/downloads/",
  8329. "license": [
  8330. "MIT"
  8331. ],
  8332. "description": "Create deep copies (clones) of your objects",
  8333. "keywords": [
  8334. "clone",
  8335. "copy",
  8336. "duplicate",
  8337. "object",
  8338. "object graph"
  8339. ],
  8340. "support": {
  8341. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8342. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8343. },
  8344. "funding": [
  8345. {
  8346. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8347. "type": "tidelift"
  8348. }
  8349. ],
  8350. "time": "2023-03-08T13:26:56+00:00"
  8351. },
  8352. {
  8353. "name": "phar-io/manifest",
  8354. "version": "2.0.4",
  8355. "source": {
  8356. "type": "git",
  8357. "url": "https://github.com/phar-io/manifest.git",
  8358. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8359. },
  8360. "dist": {
  8361. "type": "zip",
  8362. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8363. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8364. "shasum": ""
  8365. },
  8366. "require": {
  8367. "ext-dom": "*",
  8368. "ext-libxml": "*",
  8369. "ext-phar": "*",
  8370. "ext-xmlwriter": "*",
  8371. "phar-io/version": "^3.0.1",
  8372. "php": "^7.2 || ^8.0"
  8373. },
  8374. "type": "library",
  8375. "extra": {
  8376. "branch-alias": {
  8377. "dev-master": "2.0.x-dev"
  8378. }
  8379. },
  8380. "autoload": {
  8381. "classmap": [
  8382. "src/"
  8383. ]
  8384. },
  8385. "notification-url": "https://packagist.org/downloads/",
  8386. "license": [
  8387. "BSD-3-Clause"
  8388. ],
  8389. "authors": [
  8390. {
  8391. "name": "Arne Blankerts",
  8392. "email": "arne@blankerts.de",
  8393. "role": "Developer"
  8394. },
  8395. {
  8396. "name": "Sebastian Heuer",
  8397. "email": "sebastian@phpeople.de",
  8398. "role": "Developer"
  8399. },
  8400. {
  8401. "name": "Sebastian Bergmann",
  8402. "email": "sebastian@phpunit.de",
  8403. "role": "Developer"
  8404. }
  8405. ],
  8406. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8407. "support": {
  8408. "issues": "https://github.com/phar-io/manifest/issues",
  8409. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8410. },
  8411. "funding": [
  8412. {
  8413. "url": "https://github.com/theseer",
  8414. "type": "github"
  8415. }
  8416. ],
  8417. "time": "2024-03-03T12:33:53+00:00"
  8418. },
  8419. {
  8420. "name": "phar-io/version",
  8421. "version": "3.2.1",
  8422. "source": {
  8423. "type": "git",
  8424. "url": "https://github.com/phar-io/version.git",
  8425. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8426. },
  8427. "dist": {
  8428. "type": "zip",
  8429. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8430. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8431. "shasum": ""
  8432. },
  8433. "require": {
  8434. "php": "^7.2 || ^8.0"
  8435. },
  8436. "type": "library",
  8437. "autoload": {
  8438. "classmap": [
  8439. "src/"
  8440. ]
  8441. },
  8442. "notification-url": "https://packagist.org/downloads/",
  8443. "license": [
  8444. "BSD-3-Clause"
  8445. ],
  8446. "authors": [
  8447. {
  8448. "name": "Arne Blankerts",
  8449. "email": "arne@blankerts.de",
  8450. "role": "Developer"
  8451. },
  8452. {
  8453. "name": "Sebastian Heuer",
  8454. "email": "sebastian@phpeople.de",
  8455. "role": "Developer"
  8456. },
  8457. {
  8458. "name": "Sebastian Bergmann",
  8459. "email": "sebastian@phpunit.de",
  8460. "role": "Developer"
  8461. }
  8462. ],
  8463. "description": "Library for handling version information and constraints",
  8464. "support": {
  8465. "issues": "https://github.com/phar-io/version/issues",
  8466. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8467. },
  8468. "time": "2022-02-21T01:04:05+00:00"
  8469. },
  8470. {
  8471. "name": "phpstan/phpstan",
  8472. "version": "1.11.3",
  8473. "source": {
  8474. "type": "git",
  8475. "url": "https://github.com/phpstan/phpstan.git",
  8476. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  8477. },
  8478. "dist": {
  8479. "type": "zip",
  8480. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8481. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8482. "shasum": ""
  8483. },
  8484. "require": {
  8485. "php": "^7.2|^8.0"
  8486. },
  8487. "conflict": {
  8488. "phpstan/phpstan-shim": "*"
  8489. },
  8490. "bin": [
  8491. "phpstan",
  8492. "phpstan.phar"
  8493. ],
  8494. "type": "library",
  8495. "autoload": {
  8496. "files": [
  8497. "bootstrap.php"
  8498. ]
  8499. },
  8500. "notification-url": "https://packagist.org/downloads/",
  8501. "license": [
  8502. "MIT"
  8503. ],
  8504. "description": "PHPStan - PHP Static Analysis Tool",
  8505. "keywords": [
  8506. "dev",
  8507. "static analysis"
  8508. ],
  8509. "support": {
  8510. "docs": "https://phpstan.org/user-guide/getting-started",
  8511. "forum": "https://github.com/phpstan/phpstan/discussions",
  8512. "issues": "https://github.com/phpstan/phpstan/issues",
  8513. "security": "https://github.com/phpstan/phpstan/security/policy",
  8514. "source": "https://github.com/phpstan/phpstan-src"
  8515. },
  8516. "funding": [
  8517. {
  8518. "url": "https://github.com/ondrejmirtes",
  8519. "type": "github"
  8520. },
  8521. {
  8522. "url": "https://github.com/phpstan",
  8523. "type": "github"
  8524. }
  8525. ],
  8526. "time": "2024-05-31T13:53:37+00:00"
  8527. },
  8528. {
  8529. "name": "phpunit/php-code-coverage",
  8530. "version": "10.1.14",
  8531. "source": {
  8532. "type": "git",
  8533. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8534. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8535. },
  8536. "dist": {
  8537. "type": "zip",
  8538. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8539. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8540. "shasum": ""
  8541. },
  8542. "require": {
  8543. "ext-dom": "*",
  8544. "ext-libxml": "*",
  8545. "ext-xmlwriter": "*",
  8546. "nikic/php-parser": "^4.18 || ^5.0",
  8547. "php": ">=8.1",
  8548. "phpunit/php-file-iterator": "^4.0",
  8549. "phpunit/php-text-template": "^3.0",
  8550. "sebastian/code-unit-reverse-lookup": "^3.0",
  8551. "sebastian/complexity": "^3.0",
  8552. "sebastian/environment": "^6.0",
  8553. "sebastian/lines-of-code": "^2.0",
  8554. "sebastian/version": "^4.0",
  8555. "theseer/tokenizer": "^1.2.0"
  8556. },
  8557. "require-dev": {
  8558. "phpunit/phpunit": "^10.1"
  8559. },
  8560. "suggest": {
  8561. "ext-pcov": "PHP extension that provides line coverage",
  8562. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8563. },
  8564. "type": "library",
  8565. "extra": {
  8566. "branch-alias": {
  8567. "dev-main": "10.1-dev"
  8568. }
  8569. },
  8570. "autoload": {
  8571. "classmap": [
  8572. "src/"
  8573. ]
  8574. },
  8575. "notification-url": "https://packagist.org/downloads/",
  8576. "license": [
  8577. "BSD-3-Clause"
  8578. ],
  8579. "authors": [
  8580. {
  8581. "name": "Sebastian Bergmann",
  8582. "email": "sebastian@phpunit.de",
  8583. "role": "lead"
  8584. }
  8585. ],
  8586. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8587. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8588. "keywords": [
  8589. "coverage",
  8590. "testing",
  8591. "xunit"
  8592. ],
  8593. "support": {
  8594. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8595. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8596. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8597. },
  8598. "funding": [
  8599. {
  8600. "url": "https://github.com/sebastianbergmann",
  8601. "type": "github"
  8602. }
  8603. ],
  8604. "time": "2024-03-12T15:33:41+00:00"
  8605. },
  8606. {
  8607. "name": "phpunit/php-file-iterator",
  8608. "version": "4.1.0",
  8609. "source": {
  8610. "type": "git",
  8611. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8612. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8613. },
  8614. "dist": {
  8615. "type": "zip",
  8616. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8617. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8618. "shasum": ""
  8619. },
  8620. "require": {
  8621. "php": ">=8.1"
  8622. },
  8623. "require-dev": {
  8624. "phpunit/phpunit": "^10.0"
  8625. },
  8626. "type": "library",
  8627. "extra": {
  8628. "branch-alias": {
  8629. "dev-main": "4.0-dev"
  8630. }
  8631. },
  8632. "autoload": {
  8633. "classmap": [
  8634. "src/"
  8635. ]
  8636. },
  8637. "notification-url": "https://packagist.org/downloads/",
  8638. "license": [
  8639. "BSD-3-Clause"
  8640. ],
  8641. "authors": [
  8642. {
  8643. "name": "Sebastian Bergmann",
  8644. "email": "sebastian@phpunit.de",
  8645. "role": "lead"
  8646. }
  8647. ],
  8648. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8649. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8650. "keywords": [
  8651. "filesystem",
  8652. "iterator"
  8653. ],
  8654. "support": {
  8655. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8656. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8657. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8658. },
  8659. "funding": [
  8660. {
  8661. "url": "https://github.com/sebastianbergmann",
  8662. "type": "github"
  8663. }
  8664. ],
  8665. "time": "2023-08-31T06:24:48+00:00"
  8666. },
  8667. {
  8668. "name": "phpunit/php-invoker",
  8669. "version": "4.0.0",
  8670. "source": {
  8671. "type": "git",
  8672. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8673. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8674. },
  8675. "dist": {
  8676. "type": "zip",
  8677. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8678. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8679. "shasum": ""
  8680. },
  8681. "require": {
  8682. "php": ">=8.1"
  8683. },
  8684. "require-dev": {
  8685. "ext-pcntl": "*",
  8686. "phpunit/phpunit": "^10.0"
  8687. },
  8688. "suggest": {
  8689. "ext-pcntl": "*"
  8690. },
  8691. "type": "library",
  8692. "extra": {
  8693. "branch-alias": {
  8694. "dev-main": "4.0-dev"
  8695. }
  8696. },
  8697. "autoload": {
  8698. "classmap": [
  8699. "src/"
  8700. ]
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "BSD-3-Clause"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Sebastian Bergmann",
  8709. "email": "sebastian@phpunit.de",
  8710. "role": "lead"
  8711. }
  8712. ],
  8713. "description": "Invoke callables with a timeout",
  8714. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8715. "keywords": [
  8716. "process"
  8717. ],
  8718. "support": {
  8719. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8720. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8721. },
  8722. "funding": [
  8723. {
  8724. "url": "https://github.com/sebastianbergmann",
  8725. "type": "github"
  8726. }
  8727. ],
  8728. "time": "2023-02-03T06:56:09+00:00"
  8729. },
  8730. {
  8731. "name": "phpunit/php-text-template",
  8732. "version": "3.0.1",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8736. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8741. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8742. "shasum": ""
  8743. },
  8744. "require": {
  8745. "php": ">=8.1"
  8746. },
  8747. "require-dev": {
  8748. "phpunit/phpunit": "^10.0"
  8749. },
  8750. "type": "library",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-main": "3.0-dev"
  8754. }
  8755. },
  8756. "autoload": {
  8757. "classmap": [
  8758. "src/"
  8759. ]
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "BSD-3-Clause"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Sebastian Bergmann",
  8768. "email": "sebastian@phpunit.de",
  8769. "role": "lead"
  8770. }
  8771. ],
  8772. "description": "Simple template engine.",
  8773. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8774. "keywords": [
  8775. "template"
  8776. ],
  8777. "support": {
  8778. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8779. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8780. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://github.com/sebastianbergmann",
  8785. "type": "github"
  8786. }
  8787. ],
  8788. "time": "2023-08-31T14:07:24+00:00"
  8789. },
  8790. {
  8791. "name": "phpunit/php-timer",
  8792. "version": "6.0.0",
  8793. "source": {
  8794. "type": "git",
  8795. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8796. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8797. },
  8798. "dist": {
  8799. "type": "zip",
  8800. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8801. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8802. "shasum": ""
  8803. },
  8804. "require": {
  8805. "php": ">=8.1"
  8806. },
  8807. "require-dev": {
  8808. "phpunit/phpunit": "^10.0"
  8809. },
  8810. "type": "library",
  8811. "extra": {
  8812. "branch-alias": {
  8813. "dev-main": "6.0-dev"
  8814. }
  8815. },
  8816. "autoload": {
  8817. "classmap": [
  8818. "src/"
  8819. ]
  8820. },
  8821. "notification-url": "https://packagist.org/downloads/",
  8822. "license": [
  8823. "BSD-3-Clause"
  8824. ],
  8825. "authors": [
  8826. {
  8827. "name": "Sebastian Bergmann",
  8828. "email": "sebastian@phpunit.de",
  8829. "role": "lead"
  8830. }
  8831. ],
  8832. "description": "Utility class for timing",
  8833. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8834. "keywords": [
  8835. "timer"
  8836. ],
  8837. "support": {
  8838. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8839. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8840. },
  8841. "funding": [
  8842. {
  8843. "url": "https://github.com/sebastianbergmann",
  8844. "type": "github"
  8845. }
  8846. ],
  8847. "time": "2023-02-03T06:57:52+00:00"
  8848. },
  8849. {
  8850. "name": "phpunit/phpunit",
  8851. "version": "10.5.20",
  8852. "source": {
  8853. "type": "git",
  8854. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8855. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8856. },
  8857. "dist": {
  8858. "type": "zip",
  8859. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8860. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8861. "shasum": ""
  8862. },
  8863. "require": {
  8864. "ext-dom": "*",
  8865. "ext-json": "*",
  8866. "ext-libxml": "*",
  8867. "ext-mbstring": "*",
  8868. "ext-xml": "*",
  8869. "ext-xmlwriter": "*",
  8870. "myclabs/deep-copy": "^1.10.1",
  8871. "phar-io/manifest": "^2.0.3",
  8872. "phar-io/version": "^3.0.2",
  8873. "php": ">=8.1",
  8874. "phpunit/php-code-coverage": "^10.1.5",
  8875. "phpunit/php-file-iterator": "^4.0",
  8876. "phpunit/php-invoker": "^4.0",
  8877. "phpunit/php-text-template": "^3.0",
  8878. "phpunit/php-timer": "^6.0",
  8879. "sebastian/cli-parser": "^2.0",
  8880. "sebastian/code-unit": "^2.0",
  8881. "sebastian/comparator": "^5.0",
  8882. "sebastian/diff": "^5.0",
  8883. "sebastian/environment": "^6.0",
  8884. "sebastian/exporter": "^5.1",
  8885. "sebastian/global-state": "^6.0.1",
  8886. "sebastian/object-enumerator": "^5.0",
  8887. "sebastian/recursion-context": "^5.0",
  8888. "sebastian/type": "^4.0",
  8889. "sebastian/version": "^4.0"
  8890. },
  8891. "suggest": {
  8892. "ext-soap": "To be able to generate mocks based on WSDL files"
  8893. },
  8894. "bin": [
  8895. "phpunit"
  8896. ],
  8897. "type": "library",
  8898. "extra": {
  8899. "branch-alias": {
  8900. "dev-main": "10.5-dev"
  8901. }
  8902. },
  8903. "autoload": {
  8904. "files": [
  8905. "src/Framework/Assert/Functions.php"
  8906. ],
  8907. "classmap": [
  8908. "src/"
  8909. ]
  8910. },
  8911. "notification-url": "https://packagist.org/downloads/",
  8912. "license": [
  8913. "BSD-3-Clause"
  8914. ],
  8915. "authors": [
  8916. {
  8917. "name": "Sebastian Bergmann",
  8918. "email": "sebastian@phpunit.de",
  8919. "role": "lead"
  8920. }
  8921. ],
  8922. "description": "The PHP Unit Testing framework.",
  8923. "homepage": "https://phpunit.de/",
  8924. "keywords": [
  8925. "phpunit",
  8926. "testing",
  8927. "xunit"
  8928. ],
  8929. "support": {
  8930. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8931. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8932. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8933. },
  8934. "funding": [
  8935. {
  8936. "url": "https://phpunit.de/sponsors.html",
  8937. "type": "custom"
  8938. },
  8939. {
  8940. "url": "https://github.com/sebastianbergmann",
  8941. "type": "github"
  8942. },
  8943. {
  8944. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8945. "type": "tidelift"
  8946. }
  8947. ],
  8948. "time": "2024-04-24T06:32:35+00:00"
  8949. },
  8950. {
  8951. "name": "react/cache",
  8952. "version": "v1.2.0",
  8953. "source": {
  8954. "type": "git",
  8955. "url": "https://github.com/reactphp/cache.git",
  8956. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8957. },
  8958. "dist": {
  8959. "type": "zip",
  8960. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8961. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8962. "shasum": ""
  8963. },
  8964. "require": {
  8965. "php": ">=5.3.0",
  8966. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8967. },
  8968. "require-dev": {
  8969. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8970. },
  8971. "type": "library",
  8972. "autoload": {
  8973. "psr-4": {
  8974. "React\\Cache\\": "src/"
  8975. }
  8976. },
  8977. "notification-url": "https://packagist.org/downloads/",
  8978. "license": [
  8979. "MIT"
  8980. ],
  8981. "authors": [
  8982. {
  8983. "name": "Christian Lück",
  8984. "email": "christian@clue.engineering",
  8985. "homepage": "https://clue.engineering/"
  8986. },
  8987. {
  8988. "name": "Cees-Jan Kiewiet",
  8989. "email": "reactphp@ceesjankiewiet.nl",
  8990. "homepage": "https://wyrihaximus.net/"
  8991. },
  8992. {
  8993. "name": "Jan Sorgalla",
  8994. "email": "jsorgalla@gmail.com",
  8995. "homepage": "https://sorgalla.com/"
  8996. },
  8997. {
  8998. "name": "Chris Boden",
  8999. "email": "cboden@gmail.com",
  9000. "homepage": "https://cboden.dev/"
  9001. }
  9002. ],
  9003. "description": "Async, Promise-based cache interface for ReactPHP",
  9004. "keywords": [
  9005. "cache",
  9006. "caching",
  9007. "promise",
  9008. "reactphp"
  9009. ],
  9010. "support": {
  9011. "issues": "https://github.com/reactphp/cache/issues",
  9012. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9013. },
  9014. "funding": [
  9015. {
  9016. "url": "https://opencollective.com/reactphp",
  9017. "type": "open_collective"
  9018. }
  9019. ],
  9020. "time": "2022-11-30T15:59:55+00:00"
  9021. },
  9022. {
  9023. "name": "react/child-process",
  9024. "version": "v0.6.5",
  9025. "source": {
  9026. "type": "git",
  9027. "url": "https://github.com/reactphp/child-process.git",
  9028. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9029. },
  9030. "dist": {
  9031. "type": "zip",
  9032. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9033. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9034. "shasum": ""
  9035. },
  9036. "require": {
  9037. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9038. "php": ">=5.3.0",
  9039. "react/event-loop": "^1.2",
  9040. "react/stream": "^1.2"
  9041. },
  9042. "require-dev": {
  9043. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9044. "react/socket": "^1.8",
  9045. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9046. },
  9047. "type": "library",
  9048. "autoload": {
  9049. "psr-4": {
  9050. "React\\ChildProcess\\": "src"
  9051. }
  9052. },
  9053. "notification-url": "https://packagist.org/downloads/",
  9054. "license": [
  9055. "MIT"
  9056. ],
  9057. "authors": [
  9058. {
  9059. "name": "Christian Lück",
  9060. "email": "christian@clue.engineering",
  9061. "homepage": "https://clue.engineering/"
  9062. },
  9063. {
  9064. "name": "Cees-Jan Kiewiet",
  9065. "email": "reactphp@ceesjankiewiet.nl",
  9066. "homepage": "https://wyrihaximus.net/"
  9067. },
  9068. {
  9069. "name": "Jan Sorgalla",
  9070. "email": "jsorgalla@gmail.com",
  9071. "homepage": "https://sorgalla.com/"
  9072. },
  9073. {
  9074. "name": "Chris Boden",
  9075. "email": "cboden@gmail.com",
  9076. "homepage": "https://cboden.dev/"
  9077. }
  9078. ],
  9079. "description": "Event-driven library for executing child processes with ReactPHP.",
  9080. "keywords": [
  9081. "event-driven",
  9082. "process",
  9083. "reactphp"
  9084. ],
  9085. "support": {
  9086. "issues": "https://github.com/reactphp/child-process/issues",
  9087. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9088. },
  9089. "funding": [
  9090. {
  9091. "url": "https://github.com/WyriHaximus",
  9092. "type": "github"
  9093. },
  9094. {
  9095. "url": "https://github.com/clue",
  9096. "type": "github"
  9097. }
  9098. ],
  9099. "time": "2022-09-16T13:41:56+00:00"
  9100. },
  9101. {
  9102. "name": "react/dns",
  9103. "version": "v1.12.0",
  9104. "source": {
  9105. "type": "git",
  9106. "url": "https://github.com/reactphp/dns.git",
  9107. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9108. },
  9109. "dist": {
  9110. "type": "zip",
  9111. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9112. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9113. "shasum": ""
  9114. },
  9115. "require": {
  9116. "php": ">=5.3.0",
  9117. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9118. "react/event-loop": "^1.2",
  9119. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9120. },
  9121. "require-dev": {
  9122. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9123. "react/async": "^4 || ^3 || ^2",
  9124. "react/promise-timer": "^1.9"
  9125. },
  9126. "type": "library",
  9127. "autoload": {
  9128. "psr-4": {
  9129. "React\\Dns\\": "src/"
  9130. }
  9131. },
  9132. "notification-url": "https://packagist.org/downloads/",
  9133. "license": [
  9134. "MIT"
  9135. ],
  9136. "authors": [
  9137. {
  9138. "name": "Christian Lück",
  9139. "email": "christian@clue.engineering",
  9140. "homepage": "https://clue.engineering/"
  9141. },
  9142. {
  9143. "name": "Cees-Jan Kiewiet",
  9144. "email": "reactphp@ceesjankiewiet.nl",
  9145. "homepage": "https://wyrihaximus.net/"
  9146. },
  9147. {
  9148. "name": "Jan Sorgalla",
  9149. "email": "jsorgalla@gmail.com",
  9150. "homepage": "https://sorgalla.com/"
  9151. },
  9152. {
  9153. "name": "Chris Boden",
  9154. "email": "cboden@gmail.com",
  9155. "homepage": "https://cboden.dev/"
  9156. }
  9157. ],
  9158. "description": "Async DNS resolver for ReactPHP",
  9159. "keywords": [
  9160. "async",
  9161. "dns",
  9162. "dns-resolver",
  9163. "reactphp"
  9164. ],
  9165. "support": {
  9166. "issues": "https://github.com/reactphp/dns/issues",
  9167. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9168. },
  9169. "funding": [
  9170. {
  9171. "url": "https://opencollective.com/reactphp",
  9172. "type": "open_collective"
  9173. }
  9174. ],
  9175. "time": "2023-11-29T12:41:06+00:00"
  9176. },
  9177. {
  9178. "name": "react/event-loop",
  9179. "version": "v1.5.0",
  9180. "source": {
  9181. "type": "git",
  9182. "url": "https://github.com/reactphp/event-loop.git",
  9183. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9184. },
  9185. "dist": {
  9186. "type": "zip",
  9187. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9188. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9189. "shasum": ""
  9190. },
  9191. "require": {
  9192. "php": ">=5.3.0"
  9193. },
  9194. "require-dev": {
  9195. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9196. },
  9197. "suggest": {
  9198. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9199. },
  9200. "type": "library",
  9201. "autoload": {
  9202. "psr-4": {
  9203. "React\\EventLoop\\": "src/"
  9204. }
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "MIT"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Christian Lück",
  9213. "email": "christian@clue.engineering",
  9214. "homepage": "https://clue.engineering/"
  9215. },
  9216. {
  9217. "name": "Cees-Jan Kiewiet",
  9218. "email": "reactphp@ceesjankiewiet.nl",
  9219. "homepage": "https://wyrihaximus.net/"
  9220. },
  9221. {
  9222. "name": "Jan Sorgalla",
  9223. "email": "jsorgalla@gmail.com",
  9224. "homepage": "https://sorgalla.com/"
  9225. },
  9226. {
  9227. "name": "Chris Boden",
  9228. "email": "cboden@gmail.com",
  9229. "homepage": "https://cboden.dev/"
  9230. }
  9231. ],
  9232. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9233. "keywords": [
  9234. "asynchronous",
  9235. "event-loop"
  9236. ],
  9237. "support": {
  9238. "issues": "https://github.com/reactphp/event-loop/issues",
  9239. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://opencollective.com/reactphp",
  9244. "type": "open_collective"
  9245. }
  9246. ],
  9247. "time": "2023-11-13T13:48:05+00:00"
  9248. },
  9249. {
  9250. "name": "react/promise",
  9251. "version": "v3.2.0",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/reactphp/promise.git",
  9255. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9260. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "php": ">=7.1.0"
  9265. },
  9266. "require-dev": {
  9267. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9268. "phpunit/phpunit": "^9.6 || ^7.5"
  9269. },
  9270. "type": "library",
  9271. "autoload": {
  9272. "files": [
  9273. "src/functions_include.php"
  9274. ],
  9275. "psr-4": {
  9276. "React\\Promise\\": "src/"
  9277. }
  9278. },
  9279. "notification-url": "https://packagist.org/downloads/",
  9280. "license": [
  9281. "MIT"
  9282. ],
  9283. "authors": [
  9284. {
  9285. "name": "Jan Sorgalla",
  9286. "email": "jsorgalla@gmail.com",
  9287. "homepage": "https://sorgalla.com/"
  9288. },
  9289. {
  9290. "name": "Christian Lück",
  9291. "email": "christian@clue.engineering",
  9292. "homepage": "https://clue.engineering/"
  9293. },
  9294. {
  9295. "name": "Cees-Jan Kiewiet",
  9296. "email": "reactphp@ceesjankiewiet.nl",
  9297. "homepage": "https://wyrihaximus.net/"
  9298. },
  9299. {
  9300. "name": "Chris Boden",
  9301. "email": "cboden@gmail.com",
  9302. "homepage": "https://cboden.dev/"
  9303. }
  9304. ],
  9305. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9306. "keywords": [
  9307. "promise",
  9308. "promises"
  9309. ],
  9310. "support": {
  9311. "issues": "https://github.com/reactphp/promise/issues",
  9312. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9313. },
  9314. "funding": [
  9315. {
  9316. "url": "https://opencollective.com/reactphp",
  9317. "type": "open_collective"
  9318. }
  9319. ],
  9320. "time": "2024-05-24T10:39:05+00:00"
  9321. },
  9322. {
  9323. "name": "react/socket",
  9324. "version": "v1.15.0",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/reactphp/socket.git",
  9328. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9333. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9338. "php": ">=5.3.0",
  9339. "react/dns": "^1.11",
  9340. "react/event-loop": "^1.2",
  9341. "react/promise": "^3 || ^2.6 || ^1.2.1",
  9342. "react/stream": "^1.2"
  9343. },
  9344. "require-dev": {
  9345. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9346. "react/async": "^4 || ^3 || ^2",
  9347. "react/promise-stream": "^1.4",
  9348. "react/promise-timer": "^1.10"
  9349. },
  9350. "type": "library",
  9351. "autoload": {
  9352. "psr-4": {
  9353. "React\\Socket\\": "src/"
  9354. }
  9355. },
  9356. "notification-url": "https://packagist.org/downloads/",
  9357. "license": [
  9358. "MIT"
  9359. ],
  9360. "authors": [
  9361. {
  9362. "name": "Christian Lück",
  9363. "email": "christian@clue.engineering",
  9364. "homepage": "https://clue.engineering/"
  9365. },
  9366. {
  9367. "name": "Cees-Jan Kiewiet",
  9368. "email": "reactphp@ceesjankiewiet.nl",
  9369. "homepage": "https://wyrihaximus.net/"
  9370. },
  9371. {
  9372. "name": "Jan Sorgalla",
  9373. "email": "jsorgalla@gmail.com",
  9374. "homepage": "https://sorgalla.com/"
  9375. },
  9376. {
  9377. "name": "Chris Boden",
  9378. "email": "cboden@gmail.com",
  9379. "homepage": "https://cboden.dev/"
  9380. }
  9381. ],
  9382. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9383. "keywords": [
  9384. "Connection",
  9385. "Socket",
  9386. "async",
  9387. "reactphp",
  9388. "stream"
  9389. ],
  9390. "support": {
  9391. "issues": "https://github.com/reactphp/socket/issues",
  9392. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9393. },
  9394. "funding": [
  9395. {
  9396. "url": "https://opencollective.com/reactphp",
  9397. "type": "open_collective"
  9398. }
  9399. ],
  9400. "time": "2023-12-15T11:02:10+00:00"
  9401. },
  9402. {
  9403. "name": "react/stream",
  9404. "version": "v1.3.0",
  9405. "source": {
  9406. "type": "git",
  9407. "url": "https://github.com/reactphp/stream.git",
  9408. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  9409. },
  9410. "dist": {
  9411. "type": "zip",
  9412. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9413. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9414. "shasum": ""
  9415. },
  9416. "require": {
  9417. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9418. "php": ">=5.3.8",
  9419. "react/event-loop": "^1.2"
  9420. },
  9421. "require-dev": {
  9422. "clue/stream-filter": "~1.2",
  9423. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9424. },
  9425. "type": "library",
  9426. "autoload": {
  9427. "psr-4": {
  9428. "React\\Stream\\": "src/"
  9429. }
  9430. },
  9431. "notification-url": "https://packagist.org/downloads/",
  9432. "license": [
  9433. "MIT"
  9434. ],
  9435. "authors": [
  9436. {
  9437. "name": "Christian Lück",
  9438. "email": "christian@clue.engineering",
  9439. "homepage": "https://clue.engineering/"
  9440. },
  9441. {
  9442. "name": "Cees-Jan Kiewiet",
  9443. "email": "reactphp@ceesjankiewiet.nl",
  9444. "homepage": "https://wyrihaximus.net/"
  9445. },
  9446. {
  9447. "name": "Jan Sorgalla",
  9448. "email": "jsorgalla@gmail.com",
  9449. "homepage": "https://sorgalla.com/"
  9450. },
  9451. {
  9452. "name": "Chris Boden",
  9453. "email": "cboden@gmail.com",
  9454. "homepage": "https://cboden.dev/"
  9455. }
  9456. ],
  9457. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9458. "keywords": [
  9459. "event-driven",
  9460. "io",
  9461. "non-blocking",
  9462. "pipe",
  9463. "reactphp",
  9464. "readable",
  9465. "stream",
  9466. "writable"
  9467. ],
  9468. "support": {
  9469. "issues": "https://github.com/reactphp/stream/issues",
  9470. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  9471. },
  9472. "funding": [
  9473. {
  9474. "url": "https://opencollective.com/reactphp",
  9475. "type": "open_collective"
  9476. }
  9477. ],
  9478. "time": "2023-06-16T10:52:11+00:00"
  9479. },
  9480. {
  9481. "name": "sebastian/cli-parser",
  9482. "version": "2.0.1",
  9483. "source": {
  9484. "type": "git",
  9485. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9486. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9487. },
  9488. "dist": {
  9489. "type": "zip",
  9490. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9491. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9492. "shasum": ""
  9493. },
  9494. "require": {
  9495. "php": ">=8.1"
  9496. },
  9497. "require-dev": {
  9498. "phpunit/phpunit": "^10.0"
  9499. },
  9500. "type": "library",
  9501. "extra": {
  9502. "branch-alias": {
  9503. "dev-main": "2.0-dev"
  9504. }
  9505. },
  9506. "autoload": {
  9507. "classmap": [
  9508. "src/"
  9509. ]
  9510. },
  9511. "notification-url": "https://packagist.org/downloads/",
  9512. "license": [
  9513. "BSD-3-Clause"
  9514. ],
  9515. "authors": [
  9516. {
  9517. "name": "Sebastian Bergmann",
  9518. "email": "sebastian@phpunit.de",
  9519. "role": "lead"
  9520. }
  9521. ],
  9522. "description": "Library for parsing CLI options",
  9523. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9524. "support": {
  9525. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9526. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9527. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9528. },
  9529. "funding": [
  9530. {
  9531. "url": "https://github.com/sebastianbergmann",
  9532. "type": "github"
  9533. }
  9534. ],
  9535. "time": "2024-03-02T07:12:49+00:00"
  9536. },
  9537. {
  9538. "name": "sebastian/code-unit",
  9539. "version": "2.0.0",
  9540. "source": {
  9541. "type": "git",
  9542. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9543. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9544. },
  9545. "dist": {
  9546. "type": "zip",
  9547. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9548. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9549. "shasum": ""
  9550. },
  9551. "require": {
  9552. "php": ">=8.1"
  9553. },
  9554. "require-dev": {
  9555. "phpunit/phpunit": "^10.0"
  9556. },
  9557. "type": "library",
  9558. "extra": {
  9559. "branch-alias": {
  9560. "dev-main": "2.0-dev"
  9561. }
  9562. },
  9563. "autoload": {
  9564. "classmap": [
  9565. "src/"
  9566. ]
  9567. },
  9568. "notification-url": "https://packagist.org/downloads/",
  9569. "license": [
  9570. "BSD-3-Clause"
  9571. ],
  9572. "authors": [
  9573. {
  9574. "name": "Sebastian Bergmann",
  9575. "email": "sebastian@phpunit.de",
  9576. "role": "lead"
  9577. }
  9578. ],
  9579. "description": "Collection of value objects that represent the PHP code units",
  9580. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9581. "support": {
  9582. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9583. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9584. },
  9585. "funding": [
  9586. {
  9587. "url": "https://github.com/sebastianbergmann",
  9588. "type": "github"
  9589. }
  9590. ],
  9591. "time": "2023-02-03T06:58:43+00:00"
  9592. },
  9593. {
  9594. "name": "sebastian/code-unit-reverse-lookup",
  9595. "version": "3.0.0",
  9596. "source": {
  9597. "type": "git",
  9598. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9599. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9600. },
  9601. "dist": {
  9602. "type": "zip",
  9603. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9604. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9605. "shasum": ""
  9606. },
  9607. "require": {
  9608. "php": ">=8.1"
  9609. },
  9610. "require-dev": {
  9611. "phpunit/phpunit": "^10.0"
  9612. },
  9613. "type": "library",
  9614. "extra": {
  9615. "branch-alias": {
  9616. "dev-main": "3.0-dev"
  9617. }
  9618. },
  9619. "autoload": {
  9620. "classmap": [
  9621. "src/"
  9622. ]
  9623. },
  9624. "notification-url": "https://packagist.org/downloads/",
  9625. "license": [
  9626. "BSD-3-Clause"
  9627. ],
  9628. "authors": [
  9629. {
  9630. "name": "Sebastian Bergmann",
  9631. "email": "sebastian@phpunit.de"
  9632. }
  9633. ],
  9634. "description": "Looks up which function or method a line of code belongs to",
  9635. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9636. "support": {
  9637. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9638. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9639. },
  9640. "funding": [
  9641. {
  9642. "url": "https://github.com/sebastianbergmann",
  9643. "type": "github"
  9644. }
  9645. ],
  9646. "time": "2023-02-03T06:59:15+00:00"
  9647. },
  9648. {
  9649. "name": "sebastian/comparator",
  9650. "version": "5.0.1",
  9651. "source": {
  9652. "type": "git",
  9653. "url": "https://github.com/sebastianbergmann/comparator.git",
  9654. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9655. },
  9656. "dist": {
  9657. "type": "zip",
  9658. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9659. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9660. "shasum": ""
  9661. },
  9662. "require": {
  9663. "ext-dom": "*",
  9664. "ext-mbstring": "*",
  9665. "php": ">=8.1",
  9666. "sebastian/diff": "^5.0",
  9667. "sebastian/exporter": "^5.0"
  9668. },
  9669. "require-dev": {
  9670. "phpunit/phpunit": "^10.3"
  9671. },
  9672. "type": "library",
  9673. "extra": {
  9674. "branch-alias": {
  9675. "dev-main": "5.0-dev"
  9676. }
  9677. },
  9678. "autoload": {
  9679. "classmap": [
  9680. "src/"
  9681. ]
  9682. },
  9683. "notification-url": "https://packagist.org/downloads/",
  9684. "license": [
  9685. "BSD-3-Clause"
  9686. ],
  9687. "authors": [
  9688. {
  9689. "name": "Sebastian Bergmann",
  9690. "email": "sebastian@phpunit.de"
  9691. },
  9692. {
  9693. "name": "Jeff Welch",
  9694. "email": "whatthejeff@gmail.com"
  9695. },
  9696. {
  9697. "name": "Volker Dusch",
  9698. "email": "github@wallbash.com"
  9699. },
  9700. {
  9701. "name": "Bernhard Schussek",
  9702. "email": "bschussek@2bepublished.at"
  9703. }
  9704. ],
  9705. "description": "Provides the functionality to compare PHP values for equality",
  9706. "homepage": "https://github.com/sebastianbergmann/comparator",
  9707. "keywords": [
  9708. "comparator",
  9709. "compare",
  9710. "equality"
  9711. ],
  9712. "support": {
  9713. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9714. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9715. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9716. },
  9717. "funding": [
  9718. {
  9719. "url": "https://github.com/sebastianbergmann",
  9720. "type": "github"
  9721. }
  9722. ],
  9723. "time": "2023-08-14T13:18:12+00:00"
  9724. },
  9725. {
  9726. "name": "sebastian/complexity",
  9727. "version": "3.2.0",
  9728. "source": {
  9729. "type": "git",
  9730. "url": "https://github.com/sebastianbergmann/complexity.git",
  9731. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9732. },
  9733. "dist": {
  9734. "type": "zip",
  9735. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9736. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9737. "shasum": ""
  9738. },
  9739. "require": {
  9740. "nikic/php-parser": "^4.18 || ^5.0",
  9741. "php": ">=8.1"
  9742. },
  9743. "require-dev": {
  9744. "phpunit/phpunit": "^10.0"
  9745. },
  9746. "type": "library",
  9747. "extra": {
  9748. "branch-alias": {
  9749. "dev-main": "3.2-dev"
  9750. }
  9751. },
  9752. "autoload": {
  9753. "classmap": [
  9754. "src/"
  9755. ]
  9756. },
  9757. "notification-url": "https://packagist.org/downloads/",
  9758. "license": [
  9759. "BSD-3-Clause"
  9760. ],
  9761. "authors": [
  9762. {
  9763. "name": "Sebastian Bergmann",
  9764. "email": "sebastian@phpunit.de",
  9765. "role": "lead"
  9766. }
  9767. ],
  9768. "description": "Library for calculating the complexity of PHP code units",
  9769. "homepage": "https://github.com/sebastianbergmann/complexity",
  9770. "support": {
  9771. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9772. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9773. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9774. },
  9775. "funding": [
  9776. {
  9777. "url": "https://github.com/sebastianbergmann",
  9778. "type": "github"
  9779. }
  9780. ],
  9781. "time": "2023-12-21T08:37:17+00:00"
  9782. },
  9783. {
  9784. "name": "sebastian/diff",
  9785. "version": "5.1.1",
  9786. "source": {
  9787. "type": "git",
  9788. "url": "https://github.com/sebastianbergmann/diff.git",
  9789. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9790. },
  9791. "dist": {
  9792. "type": "zip",
  9793. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9794. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9795. "shasum": ""
  9796. },
  9797. "require": {
  9798. "php": ">=8.1"
  9799. },
  9800. "require-dev": {
  9801. "phpunit/phpunit": "^10.0",
  9802. "symfony/process": "^6.4"
  9803. },
  9804. "type": "library",
  9805. "extra": {
  9806. "branch-alias": {
  9807. "dev-main": "5.1-dev"
  9808. }
  9809. },
  9810. "autoload": {
  9811. "classmap": [
  9812. "src/"
  9813. ]
  9814. },
  9815. "notification-url": "https://packagist.org/downloads/",
  9816. "license": [
  9817. "BSD-3-Clause"
  9818. ],
  9819. "authors": [
  9820. {
  9821. "name": "Sebastian Bergmann",
  9822. "email": "sebastian@phpunit.de"
  9823. },
  9824. {
  9825. "name": "Kore Nordmann",
  9826. "email": "mail@kore-nordmann.de"
  9827. }
  9828. ],
  9829. "description": "Diff implementation",
  9830. "homepage": "https://github.com/sebastianbergmann/diff",
  9831. "keywords": [
  9832. "diff",
  9833. "udiff",
  9834. "unidiff",
  9835. "unified diff"
  9836. ],
  9837. "support": {
  9838. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9839. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9840. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9841. },
  9842. "funding": [
  9843. {
  9844. "url": "https://github.com/sebastianbergmann",
  9845. "type": "github"
  9846. }
  9847. ],
  9848. "time": "2024-03-02T07:15:17+00:00"
  9849. },
  9850. {
  9851. "name": "sebastian/environment",
  9852. "version": "6.1.0",
  9853. "source": {
  9854. "type": "git",
  9855. "url": "https://github.com/sebastianbergmann/environment.git",
  9856. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9857. },
  9858. "dist": {
  9859. "type": "zip",
  9860. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9861. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9862. "shasum": ""
  9863. },
  9864. "require": {
  9865. "php": ">=8.1"
  9866. },
  9867. "require-dev": {
  9868. "phpunit/phpunit": "^10.0"
  9869. },
  9870. "suggest": {
  9871. "ext-posix": "*"
  9872. },
  9873. "type": "library",
  9874. "extra": {
  9875. "branch-alias": {
  9876. "dev-main": "6.1-dev"
  9877. }
  9878. },
  9879. "autoload": {
  9880. "classmap": [
  9881. "src/"
  9882. ]
  9883. },
  9884. "notification-url": "https://packagist.org/downloads/",
  9885. "license": [
  9886. "BSD-3-Clause"
  9887. ],
  9888. "authors": [
  9889. {
  9890. "name": "Sebastian Bergmann",
  9891. "email": "sebastian@phpunit.de"
  9892. }
  9893. ],
  9894. "description": "Provides functionality to handle HHVM/PHP environments",
  9895. "homepage": "https://github.com/sebastianbergmann/environment",
  9896. "keywords": [
  9897. "Xdebug",
  9898. "environment",
  9899. "hhvm"
  9900. ],
  9901. "support": {
  9902. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9903. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9904. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9905. },
  9906. "funding": [
  9907. {
  9908. "url": "https://github.com/sebastianbergmann",
  9909. "type": "github"
  9910. }
  9911. ],
  9912. "time": "2024-03-23T08:47:14+00:00"
  9913. },
  9914. {
  9915. "name": "sebastian/exporter",
  9916. "version": "5.1.2",
  9917. "source": {
  9918. "type": "git",
  9919. "url": "https://github.com/sebastianbergmann/exporter.git",
  9920. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9921. },
  9922. "dist": {
  9923. "type": "zip",
  9924. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9925. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9926. "shasum": ""
  9927. },
  9928. "require": {
  9929. "ext-mbstring": "*",
  9930. "php": ">=8.1",
  9931. "sebastian/recursion-context": "^5.0"
  9932. },
  9933. "require-dev": {
  9934. "phpunit/phpunit": "^10.0"
  9935. },
  9936. "type": "library",
  9937. "extra": {
  9938. "branch-alias": {
  9939. "dev-main": "5.1-dev"
  9940. }
  9941. },
  9942. "autoload": {
  9943. "classmap": [
  9944. "src/"
  9945. ]
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "BSD-3-Clause"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "Sebastian Bergmann",
  9954. "email": "sebastian@phpunit.de"
  9955. },
  9956. {
  9957. "name": "Jeff Welch",
  9958. "email": "whatthejeff@gmail.com"
  9959. },
  9960. {
  9961. "name": "Volker Dusch",
  9962. "email": "github@wallbash.com"
  9963. },
  9964. {
  9965. "name": "Adam Harvey",
  9966. "email": "aharvey@php.net"
  9967. },
  9968. {
  9969. "name": "Bernhard Schussek",
  9970. "email": "bschussek@gmail.com"
  9971. }
  9972. ],
  9973. "description": "Provides the functionality to export PHP variables for visualization",
  9974. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9975. "keywords": [
  9976. "export",
  9977. "exporter"
  9978. ],
  9979. "support": {
  9980. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9981. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9982. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9983. },
  9984. "funding": [
  9985. {
  9986. "url": "https://github.com/sebastianbergmann",
  9987. "type": "github"
  9988. }
  9989. ],
  9990. "time": "2024-03-02T07:17:12+00:00"
  9991. },
  9992. {
  9993. "name": "sebastian/global-state",
  9994. "version": "6.0.2",
  9995. "source": {
  9996. "type": "git",
  9997. "url": "https://github.com/sebastianbergmann/global-state.git",
  9998. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9999. },
  10000. "dist": {
  10001. "type": "zip",
  10002. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10003. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10004. "shasum": ""
  10005. },
  10006. "require": {
  10007. "php": ">=8.1",
  10008. "sebastian/object-reflector": "^3.0",
  10009. "sebastian/recursion-context": "^5.0"
  10010. },
  10011. "require-dev": {
  10012. "ext-dom": "*",
  10013. "phpunit/phpunit": "^10.0"
  10014. },
  10015. "type": "library",
  10016. "extra": {
  10017. "branch-alias": {
  10018. "dev-main": "6.0-dev"
  10019. }
  10020. },
  10021. "autoload": {
  10022. "classmap": [
  10023. "src/"
  10024. ]
  10025. },
  10026. "notification-url": "https://packagist.org/downloads/",
  10027. "license": [
  10028. "BSD-3-Clause"
  10029. ],
  10030. "authors": [
  10031. {
  10032. "name": "Sebastian Bergmann",
  10033. "email": "sebastian@phpunit.de"
  10034. }
  10035. ],
  10036. "description": "Snapshotting of global state",
  10037. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10038. "keywords": [
  10039. "global state"
  10040. ],
  10041. "support": {
  10042. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10043. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10044. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10045. },
  10046. "funding": [
  10047. {
  10048. "url": "https://github.com/sebastianbergmann",
  10049. "type": "github"
  10050. }
  10051. ],
  10052. "time": "2024-03-02T07:19:19+00:00"
  10053. },
  10054. {
  10055. "name": "sebastian/lines-of-code",
  10056. "version": "2.0.2",
  10057. "source": {
  10058. "type": "git",
  10059. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10060. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10061. },
  10062. "dist": {
  10063. "type": "zip",
  10064. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10065. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10066. "shasum": ""
  10067. },
  10068. "require": {
  10069. "nikic/php-parser": "^4.18 || ^5.0",
  10070. "php": ">=8.1"
  10071. },
  10072. "require-dev": {
  10073. "phpunit/phpunit": "^10.0"
  10074. },
  10075. "type": "library",
  10076. "extra": {
  10077. "branch-alias": {
  10078. "dev-main": "2.0-dev"
  10079. }
  10080. },
  10081. "autoload": {
  10082. "classmap": [
  10083. "src/"
  10084. ]
  10085. },
  10086. "notification-url": "https://packagist.org/downloads/",
  10087. "license": [
  10088. "BSD-3-Clause"
  10089. ],
  10090. "authors": [
  10091. {
  10092. "name": "Sebastian Bergmann",
  10093. "email": "sebastian@phpunit.de",
  10094. "role": "lead"
  10095. }
  10096. ],
  10097. "description": "Library for counting the lines of code in PHP source code",
  10098. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10099. "support": {
  10100. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10101. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10102. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10103. },
  10104. "funding": [
  10105. {
  10106. "url": "https://github.com/sebastianbergmann",
  10107. "type": "github"
  10108. }
  10109. ],
  10110. "time": "2023-12-21T08:38:20+00:00"
  10111. },
  10112. {
  10113. "name": "sebastian/object-enumerator",
  10114. "version": "5.0.0",
  10115. "source": {
  10116. "type": "git",
  10117. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10118. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10119. },
  10120. "dist": {
  10121. "type": "zip",
  10122. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10123. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10124. "shasum": ""
  10125. },
  10126. "require": {
  10127. "php": ">=8.1",
  10128. "sebastian/object-reflector": "^3.0",
  10129. "sebastian/recursion-context": "^5.0"
  10130. },
  10131. "require-dev": {
  10132. "phpunit/phpunit": "^10.0"
  10133. },
  10134. "type": "library",
  10135. "extra": {
  10136. "branch-alias": {
  10137. "dev-main": "5.0-dev"
  10138. }
  10139. },
  10140. "autoload": {
  10141. "classmap": [
  10142. "src/"
  10143. ]
  10144. },
  10145. "notification-url": "https://packagist.org/downloads/",
  10146. "license": [
  10147. "BSD-3-Clause"
  10148. ],
  10149. "authors": [
  10150. {
  10151. "name": "Sebastian Bergmann",
  10152. "email": "sebastian@phpunit.de"
  10153. }
  10154. ],
  10155. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10156. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10157. "support": {
  10158. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10159. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10160. },
  10161. "funding": [
  10162. {
  10163. "url": "https://github.com/sebastianbergmann",
  10164. "type": "github"
  10165. }
  10166. ],
  10167. "time": "2023-02-03T07:08:32+00:00"
  10168. },
  10169. {
  10170. "name": "sebastian/object-reflector",
  10171. "version": "3.0.0",
  10172. "source": {
  10173. "type": "git",
  10174. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10175. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10176. },
  10177. "dist": {
  10178. "type": "zip",
  10179. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10180. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10181. "shasum": ""
  10182. },
  10183. "require": {
  10184. "php": ">=8.1"
  10185. },
  10186. "require-dev": {
  10187. "phpunit/phpunit": "^10.0"
  10188. },
  10189. "type": "library",
  10190. "extra": {
  10191. "branch-alias": {
  10192. "dev-main": "3.0-dev"
  10193. }
  10194. },
  10195. "autoload": {
  10196. "classmap": [
  10197. "src/"
  10198. ]
  10199. },
  10200. "notification-url": "https://packagist.org/downloads/",
  10201. "license": [
  10202. "BSD-3-Clause"
  10203. ],
  10204. "authors": [
  10205. {
  10206. "name": "Sebastian Bergmann",
  10207. "email": "sebastian@phpunit.de"
  10208. }
  10209. ],
  10210. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10211. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10212. "support": {
  10213. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10214. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10215. },
  10216. "funding": [
  10217. {
  10218. "url": "https://github.com/sebastianbergmann",
  10219. "type": "github"
  10220. }
  10221. ],
  10222. "time": "2023-02-03T07:06:18+00:00"
  10223. },
  10224. {
  10225. "name": "sebastian/recursion-context",
  10226. "version": "5.0.0",
  10227. "source": {
  10228. "type": "git",
  10229. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10230. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10231. },
  10232. "dist": {
  10233. "type": "zip",
  10234. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10235. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10236. "shasum": ""
  10237. },
  10238. "require": {
  10239. "php": ">=8.1"
  10240. },
  10241. "require-dev": {
  10242. "phpunit/phpunit": "^10.0"
  10243. },
  10244. "type": "library",
  10245. "extra": {
  10246. "branch-alias": {
  10247. "dev-main": "5.0-dev"
  10248. }
  10249. },
  10250. "autoload": {
  10251. "classmap": [
  10252. "src/"
  10253. ]
  10254. },
  10255. "notification-url": "https://packagist.org/downloads/",
  10256. "license": [
  10257. "BSD-3-Clause"
  10258. ],
  10259. "authors": [
  10260. {
  10261. "name": "Sebastian Bergmann",
  10262. "email": "sebastian@phpunit.de"
  10263. },
  10264. {
  10265. "name": "Jeff Welch",
  10266. "email": "whatthejeff@gmail.com"
  10267. },
  10268. {
  10269. "name": "Adam Harvey",
  10270. "email": "aharvey@php.net"
  10271. }
  10272. ],
  10273. "description": "Provides functionality to recursively process PHP variables",
  10274. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10275. "support": {
  10276. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10277. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10278. },
  10279. "funding": [
  10280. {
  10281. "url": "https://github.com/sebastianbergmann",
  10282. "type": "github"
  10283. }
  10284. ],
  10285. "time": "2023-02-03T07:05:40+00:00"
  10286. },
  10287. {
  10288. "name": "sebastian/type",
  10289. "version": "4.0.0",
  10290. "source": {
  10291. "type": "git",
  10292. "url": "https://github.com/sebastianbergmann/type.git",
  10293. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10294. },
  10295. "dist": {
  10296. "type": "zip",
  10297. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10298. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10299. "shasum": ""
  10300. },
  10301. "require": {
  10302. "php": ">=8.1"
  10303. },
  10304. "require-dev": {
  10305. "phpunit/phpunit": "^10.0"
  10306. },
  10307. "type": "library",
  10308. "extra": {
  10309. "branch-alias": {
  10310. "dev-main": "4.0-dev"
  10311. }
  10312. },
  10313. "autoload": {
  10314. "classmap": [
  10315. "src/"
  10316. ]
  10317. },
  10318. "notification-url": "https://packagist.org/downloads/",
  10319. "license": [
  10320. "BSD-3-Clause"
  10321. ],
  10322. "authors": [
  10323. {
  10324. "name": "Sebastian Bergmann",
  10325. "email": "sebastian@phpunit.de",
  10326. "role": "lead"
  10327. }
  10328. ],
  10329. "description": "Collection of value objects that represent the types of the PHP type system",
  10330. "homepage": "https://github.com/sebastianbergmann/type",
  10331. "support": {
  10332. "issues": "https://github.com/sebastianbergmann/type/issues",
  10333. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10334. },
  10335. "funding": [
  10336. {
  10337. "url": "https://github.com/sebastianbergmann",
  10338. "type": "github"
  10339. }
  10340. ],
  10341. "time": "2023-02-03T07:10:45+00:00"
  10342. },
  10343. {
  10344. "name": "sebastian/version",
  10345. "version": "4.0.1",
  10346. "source": {
  10347. "type": "git",
  10348. "url": "https://github.com/sebastianbergmann/version.git",
  10349. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10350. },
  10351. "dist": {
  10352. "type": "zip",
  10353. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10354. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10355. "shasum": ""
  10356. },
  10357. "require": {
  10358. "php": ">=8.1"
  10359. },
  10360. "type": "library",
  10361. "extra": {
  10362. "branch-alias": {
  10363. "dev-main": "4.0-dev"
  10364. }
  10365. },
  10366. "autoload": {
  10367. "classmap": [
  10368. "src/"
  10369. ]
  10370. },
  10371. "notification-url": "https://packagist.org/downloads/",
  10372. "license": [
  10373. "BSD-3-Clause"
  10374. ],
  10375. "authors": [
  10376. {
  10377. "name": "Sebastian Bergmann",
  10378. "email": "sebastian@phpunit.de",
  10379. "role": "lead"
  10380. }
  10381. ],
  10382. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10383. "homepage": "https://github.com/sebastianbergmann/version",
  10384. "support": {
  10385. "issues": "https://github.com/sebastianbergmann/version/issues",
  10386. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10387. },
  10388. "funding": [
  10389. {
  10390. "url": "https://github.com/sebastianbergmann",
  10391. "type": "github"
  10392. }
  10393. ],
  10394. "time": "2023-02-07T11:34:05+00:00"
  10395. },
  10396. {
  10397. "name": "swoole/ide-helper",
  10398. "version": "5.1.2",
  10399. "source": {
  10400. "type": "git",
  10401. "url": "https://github.com/swoole/ide-helper.git",
  10402. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  10403. },
  10404. "dist": {
  10405. "type": "zip",
  10406. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  10407. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  10408. "shasum": ""
  10409. },
  10410. "type": "library",
  10411. "notification-url": "https://packagist.org/downloads/",
  10412. "license": [
  10413. "Apache-2.0"
  10414. ],
  10415. "authors": [
  10416. {
  10417. "name": "Team Swoole",
  10418. "email": "team@swoole.com"
  10419. }
  10420. ],
  10421. "description": "IDE help files for Swoole.",
  10422. "support": {
  10423. "issues": "https://github.com/swoole/ide-helper/issues",
  10424. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  10425. },
  10426. "time": "2024-02-01T22:28:11+00:00"
  10427. },
  10428. {
  10429. "name": "symfony/event-dispatcher",
  10430. "version": "v6.4.8",
  10431. "source": {
  10432. "type": "git",
  10433. "url": "https://github.com/symfony/event-dispatcher.git",
  10434. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  10435. },
  10436. "dist": {
  10437. "type": "zip",
  10438. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  10439. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  10440. "shasum": ""
  10441. },
  10442. "require": {
  10443. "php": ">=8.1",
  10444. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10445. },
  10446. "conflict": {
  10447. "symfony/dependency-injection": "<5.4",
  10448. "symfony/service-contracts": "<2.5"
  10449. },
  10450. "provide": {
  10451. "psr/event-dispatcher-implementation": "1.0",
  10452. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10453. },
  10454. "require-dev": {
  10455. "psr/log": "^1|^2|^3",
  10456. "symfony/config": "^5.4|^6.0|^7.0",
  10457. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10458. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10459. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10460. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10461. "symfony/service-contracts": "^2.5|^3",
  10462. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10463. },
  10464. "type": "library",
  10465. "autoload": {
  10466. "psr-4": {
  10467. "Symfony\\Component\\EventDispatcher\\": ""
  10468. },
  10469. "exclude-from-classmap": [
  10470. "/Tests/"
  10471. ]
  10472. },
  10473. "notification-url": "https://packagist.org/downloads/",
  10474. "license": [
  10475. "MIT"
  10476. ],
  10477. "authors": [
  10478. {
  10479. "name": "Fabien Potencier",
  10480. "email": "fabien@symfony.com"
  10481. },
  10482. {
  10483. "name": "Symfony Community",
  10484. "homepage": "https://symfony.com/contributors"
  10485. }
  10486. ],
  10487. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10488. "homepage": "https://symfony.com",
  10489. "support": {
  10490. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10491. },
  10492. "funding": [
  10493. {
  10494. "url": "https://symfony.com/sponsor",
  10495. "type": "custom"
  10496. },
  10497. {
  10498. "url": "https://github.com/fabpot",
  10499. "type": "github"
  10500. },
  10501. {
  10502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10503. "type": "tidelift"
  10504. }
  10505. ],
  10506. "time": "2024-05-31T14:49:08+00:00"
  10507. },
  10508. {
  10509. "name": "symfony/event-dispatcher-contracts",
  10510. "version": "v3.5.0",
  10511. "source": {
  10512. "type": "git",
  10513. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10514. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10515. },
  10516. "dist": {
  10517. "type": "zip",
  10518. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10519. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10520. "shasum": ""
  10521. },
  10522. "require": {
  10523. "php": ">=8.1",
  10524. "psr/event-dispatcher": "^1"
  10525. },
  10526. "type": "library",
  10527. "extra": {
  10528. "branch-alias": {
  10529. "dev-main": "3.5-dev"
  10530. },
  10531. "thanks": {
  10532. "name": "symfony/contracts",
  10533. "url": "https://github.com/symfony/contracts"
  10534. }
  10535. },
  10536. "autoload": {
  10537. "psr-4": {
  10538. "Symfony\\Contracts\\EventDispatcher\\": ""
  10539. }
  10540. },
  10541. "notification-url": "https://packagist.org/downloads/",
  10542. "license": [
  10543. "MIT"
  10544. ],
  10545. "authors": [
  10546. {
  10547. "name": "Nicolas Grekas",
  10548. "email": "p@tchwork.com"
  10549. },
  10550. {
  10551. "name": "Symfony Community",
  10552. "homepage": "https://symfony.com/contributors"
  10553. }
  10554. ],
  10555. "description": "Generic abstractions related to dispatching event",
  10556. "homepage": "https://symfony.com",
  10557. "keywords": [
  10558. "abstractions",
  10559. "contracts",
  10560. "decoupling",
  10561. "interfaces",
  10562. "interoperability",
  10563. "standards"
  10564. ],
  10565. "support": {
  10566. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10567. },
  10568. "funding": [
  10569. {
  10570. "url": "https://symfony.com/sponsor",
  10571. "type": "custom"
  10572. },
  10573. {
  10574. "url": "https://github.com/fabpot",
  10575. "type": "github"
  10576. },
  10577. {
  10578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10579. "type": "tidelift"
  10580. }
  10581. ],
  10582. "time": "2024-04-18T09:32:20+00:00"
  10583. },
  10584. {
  10585. "name": "symfony/filesystem",
  10586. "version": "v6.4.8",
  10587. "source": {
  10588. "type": "git",
  10589. "url": "https://github.com/symfony/filesystem.git",
  10590. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10591. },
  10592. "dist": {
  10593. "type": "zip",
  10594. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10595. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10596. "shasum": ""
  10597. },
  10598. "require": {
  10599. "php": ">=8.1",
  10600. "symfony/polyfill-ctype": "~1.8",
  10601. "symfony/polyfill-mbstring": "~1.8"
  10602. },
  10603. "require-dev": {
  10604. "symfony/process": "^5.4|^6.4|^7.0"
  10605. },
  10606. "type": "library",
  10607. "autoload": {
  10608. "psr-4": {
  10609. "Symfony\\Component\\Filesystem\\": ""
  10610. },
  10611. "exclude-from-classmap": [
  10612. "/Tests/"
  10613. ]
  10614. },
  10615. "notification-url": "https://packagist.org/downloads/",
  10616. "license": [
  10617. "MIT"
  10618. ],
  10619. "authors": [
  10620. {
  10621. "name": "Fabien Potencier",
  10622. "email": "fabien@symfony.com"
  10623. },
  10624. {
  10625. "name": "Symfony Community",
  10626. "homepage": "https://symfony.com/contributors"
  10627. }
  10628. ],
  10629. "description": "Provides basic utilities for the filesystem",
  10630. "homepage": "https://symfony.com",
  10631. "support": {
  10632. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10633. },
  10634. "funding": [
  10635. {
  10636. "url": "https://symfony.com/sponsor",
  10637. "type": "custom"
  10638. },
  10639. {
  10640. "url": "https://github.com/fabpot",
  10641. "type": "github"
  10642. },
  10643. {
  10644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10645. "type": "tidelift"
  10646. }
  10647. ],
  10648. "time": "2024-05-31T14:49:08+00:00"
  10649. },
  10650. {
  10651. "name": "symfony/http-foundation",
  10652. "version": "v6.4.8",
  10653. "source": {
  10654. "type": "git",
  10655. "url": "https://github.com/symfony/http-foundation.git",
  10656. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10657. },
  10658. "dist": {
  10659. "type": "zip",
  10660. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10661. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10662. "shasum": ""
  10663. },
  10664. "require": {
  10665. "php": ">=8.1",
  10666. "symfony/deprecation-contracts": "^2.5|^3",
  10667. "symfony/polyfill-mbstring": "~1.1",
  10668. "symfony/polyfill-php83": "^1.27"
  10669. },
  10670. "conflict": {
  10671. "symfony/cache": "<6.3"
  10672. },
  10673. "require-dev": {
  10674. "doctrine/dbal": "^2.13.1|^3|^4",
  10675. "predis/predis": "^1.1|^2.0",
  10676. "symfony/cache": "^6.3|^7.0",
  10677. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10678. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10679. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10680. "symfony/mime": "^5.4|^6.0|^7.0",
  10681. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10682. },
  10683. "type": "library",
  10684. "autoload": {
  10685. "psr-4": {
  10686. "Symfony\\Component\\HttpFoundation\\": ""
  10687. },
  10688. "exclude-from-classmap": [
  10689. "/Tests/"
  10690. ]
  10691. },
  10692. "notification-url": "https://packagist.org/downloads/",
  10693. "license": [
  10694. "MIT"
  10695. ],
  10696. "authors": [
  10697. {
  10698. "name": "Fabien Potencier",
  10699. "email": "fabien@symfony.com"
  10700. },
  10701. {
  10702. "name": "Symfony Community",
  10703. "homepage": "https://symfony.com/contributors"
  10704. }
  10705. ],
  10706. "description": "Defines an object-oriented layer for the HTTP specification",
  10707. "homepage": "https://symfony.com",
  10708. "support": {
  10709. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10710. },
  10711. "funding": [
  10712. {
  10713. "url": "https://symfony.com/sponsor",
  10714. "type": "custom"
  10715. },
  10716. {
  10717. "url": "https://github.com/fabpot",
  10718. "type": "github"
  10719. },
  10720. {
  10721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10722. "type": "tidelift"
  10723. }
  10724. ],
  10725. "time": "2024-05-31T14:49:08+00:00"
  10726. },
  10727. {
  10728. "name": "symfony/options-resolver",
  10729. "version": "v6.4.8",
  10730. "source": {
  10731. "type": "git",
  10732. "url": "https://github.com/symfony/options-resolver.git",
  10733. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10734. },
  10735. "dist": {
  10736. "type": "zip",
  10737. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10738. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10739. "shasum": ""
  10740. },
  10741. "require": {
  10742. "php": ">=8.1",
  10743. "symfony/deprecation-contracts": "^2.5|^3"
  10744. },
  10745. "type": "library",
  10746. "autoload": {
  10747. "psr-4": {
  10748. "Symfony\\Component\\OptionsResolver\\": ""
  10749. },
  10750. "exclude-from-classmap": [
  10751. "/Tests/"
  10752. ]
  10753. },
  10754. "notification-url": "https://packagist.org/downloads/",
  10755. "license": [
  10756. "MIT"
  10757. ],
  10758. "authors": [
  10759. {
  10760. "name": "Fabien Potencier",
  10761. "email": "fabien@symfony.com"
  10762. },
  10763. {
  10764. "name": "Symfony Community",
  10765. "homepage": "https://symfony.com/contributors"
  10766. }
  10767. ],
  10768. "description": "Provides an improved replacement for the array_replace PHP function",
  10769. "homepage": "https://symfony.com",
  10770. "keywords": [
  10771. "config",
  10772. "configuration",
  10773. "options"
  10774. ],
  10775. "support": {
  10776. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10777. },
  10778. "funding": [
  10779. {
  10780. "url": "https://symfony.com/sponsor",
  10781. "type": "custom"
  10782. },
  10783. {
  10784. "url": "https://github.com/fabpot",
  10785. "type": "github"
  10786. },
  10787. {
  10788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10789. "type": "tidelift"
  10790. }
  10791. ],
  10792. "time": "2024-05-31T14:49:08+00:00"
  10793. },
  10794. {
  10795. "name": "symfony/polyfill-php81",
  10796. "version": "v1.29.0",
  10797. "source": {
  10798. "type": "git",
  10799. "url": "https://github.com/symfony/polyfill-php81.git",
  10800. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10801. },
  10802. "dist": {
  10803. "type": "zip",
  10804. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10805. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10806. "shasum": ""
  10807. },
  10808. "require": {
  10809. "php": ">=7.1"
  10810. },
  10811. "type": "library",
  10812. "extra": {
  10813. "thanks": {
  10814. "name": "symfony/polyfill",
  10815. "url": "https://github.com/symfony/polyfill"
  10816. }
  10817. },
  10818. "autoload": {
  10819. "files": [
  10820. "bootstrap.php"
  10821. ],
  10822. "psr-4": {
  10823. "Symfony\\Polyfill\\Php81\\": ""
  10824. },
  10825. "classmap": [
  10826. "Resources/stubs"
  10827. ]
  10828. },
  10829. "notification-url": "https://packagist.org/downloads/",
  10830. "license": [
  10831. "MIT"
  10832. ],
  10833. "authors": [
  10834. {
  10835. "name": "Nicolas Grekas",
  10836. "email": "p@tchwork.com"
  10837. },
  10838. {
  10839. "name": "Symfony Community",
  10840. "homepage": "https://symfony.com/contributors"
  10841. }
  10842. ],
  10843. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10844. "homepage": "https://symfony.com",
  10845. "keywords": [
  10846. "compatibility",
  10847. "polyfill",
  10848. "portable",
  10849. "shim"
  10850. ],
  10851. "support": {
  10852. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10853. },
  10854. "funding": [
  10855. {
  10856. "url": "https://symfony.com/sponsor",
  10857. "type": "custom"
  10858. },
  10859. {
  10860. "url": "https://github.com/fabpot",
  10861. "type": "github"
  10862. },
  10863. {
  10864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10865. "type": "tidelift"
  10866. }
  10867. ],
  10868. "time": "2024-01-29T20:11:03+00:00"
  10869. },
  10870. {
  10871. "name": "symfony/polyfill-php83",
  10872. "version": "v1.29.0",
  10873. "source": {
  10874. "type": "git",
  10875. "url": "https://github.com/symfony/polyfill-php83.git",
  10876. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10877. },
  10878. "dist": {
  10879. "type": "zip",
  10880. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10881. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10882. "shasum": ""
  10883. },
  10884. "require": {
  10885. "php": ">=7.1",
  10886. "symfony/polyfill-php80": "^1.14"
  10887. },
  10888. "type": "library",
  10889. "extra": {
  10890. "thanks": {
  10891. "name": "symfony/polyfill",
  10892. "url": "https://github.com/symfony/polyfill"
  10893. }
  10894. },
  10895. "autoload": {
  10896. "files": [
  10897. "bootstrap.php"
  10898. ],
  10899. "psr-4": {
  10900. "Symfony\\Polyfill\\Php83\\": ""
  10901. },
  10902. "classmap": [
  10903. "Resources/stubs"
  10904. ]
  10905. },
  10906. "notification-url": "https://packagist.org/downloads/",
  10907. "license": [
  10908. "MIT"
  10909. ],
  10910. "authors": [
  10911. {
  10912. "name": "Nicolas Grekas",
  10913. "email": "p@tchwork.com"
  10914. },
  10915. {
  10916. "name": "Symfony Community",
  10917. "homepage": "https://symfony.com/contributors"
  10918. }
  10919. ],
  10920. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10921. "homepage": "https://symfony.com",
  10922. "keywords": [
  10923. "compatibility",
  10924. "polyfill",
  10925. "portable",
  10926. "shim"
  10927. ],
  10928. "support": {
  10929. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10930. },
  10931. "funding": [
  10932. {
  10933. "url": "https://symfony.com/sponsor",
  10934. "type": "custom"
  10935. },
  10936. {
  10937. "url": "https://github.com/fabpot",
  10938. "type": "github"
  10939. },
  10940. {
  10941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10942. "type": "tidelift"
  10943. }
  10944. ],
  10945. "time": "2024-01-29T20:11:03+00:00"
  10946. },
  10947. {
  10948. "name": "symfony/process",
  10949. "version": "v6.4.8",
  10950. "source": {
  10951. "type": "git",
  10952. "url": "https://github.com/symfony/process.git",
  10953. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10954. },
  10955. "dist": {
  10956. "type": "zip",
  10957. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10958. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10959. "shasum": ""
  10960. },
  10961. "require": {
  10962. "php": ">=8.1"
  10963. },
  10964. "type": "library",
  10965. "autoload": {
  10966. "psr-4": {
  10967. "Symfony\\Component\\Process\\": ""
  10968. },
  10969. "exclude-from-classmap": [
  10970. "/Tests/"
  10971. ]
  10972. },
  10973. "notification-url": "https://packagist.org/downloads/",
  10974. "license": [
  10975. "MIT"
  10976. ],
  10977. "authors": [
  10978. {
  10979. "name": "Fabien Potencier",
  10980. "email": "fabien@symfony.com"
  10981. },
  10982. {
  10983. "name": "Symfony Community",
  10984. "homepage": "https://symfony.com/contributors"
  10985. }
  10986. ],
  10987. "description": "Executes commands in sub-processes",
  10988. "homepage": "https://symfony.com",
  10989. "support": {
  10990. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10991. },
  10992. "funding": [
  10993. {
  10994. "url": "https://symfony.com/sponsor",
  10995. "type": "custom"
  10996. },
  10997. {
  10998. "url": "https://github.com/fabpot",
  10999. "type": "github"
  11000. },
  11001. {
  11002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11003. "type": "tidelift"
  11004. }
  11005. ],
  11006. "time": "2024-05-31T14:49:08+00:00"
  11007. },
  11008. {
  11009. "name": "symfony/stopwatch",
  11010. "version": "v6.4.8",
  11011. "source": {
  11012. "type": "git",
  11013. "url": "https://github.com/symfony/stopwatch.git",
  11014. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  11015. },
  11016. "dist": {
  11017. "type": "zip",
  11018. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  11019. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  11020. "shasum": ""
  11021. },
  11022. "require": {
  11023. "php": ">=8.1",
  11024. "symfony/service-contracts": "^2.5|^3"
  11025. },
  11026. "type": "library",
  11027. "autoload": {
  11028. "psr-4": {
  11029. "Symfony\\Component\\Stopwatch\\": ""
  11030. },
  11031. "exclude-from-classmap": [
  11032. "/Tests/"
  11033. ]
  11034. },
  11035. "notification-url": "https://packagist.org/downloads/",
  11036. "license": [
  11037. "MIT"
  11038. ],
  11039. "authors": [
  11040. {
  11041. "name": "Fabien Potencier",
  11042. "email": "fabien@symfony.com"
  11043. },
  11044. {
  11045. "name": "Symfony Community",
  11046. "homepage": "https://symfony.com/contributors"
  11047. }
  11048. ],
  11049. "description": "Provides a way to profile code",
  11050. "homepage": "https://symfony.com",
  11051. "support": {
  11052. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  11053. },
  11054. "funding": [
  11055. {
  11056. "url": "https://symfony.com/sponsor",
  11057. "type": "custom"
  11058. },
  11059. {
  11060. "url": "https://github.com/fabpot",
  11061. "type": "github"
  11062. },
  11063. {
  11064. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11065. "type": "tidelift"
  11066. }
  11067. ],
  11068. "time": "2024-05-31T14:49:08+00:00"
  11069. },
  11070. {
  11071. "name": "theseer/tokenizer",
  11072. "version": "1.2.3",
  11073. "source": {
  11074. "type": "git",
  11075. "url": "https://github.com/theseer/tokenizer.git",
  11076. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11077. },
  11078. "dist": {
  11079. "type": "zip",
  11080. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11081. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11082. "shasum": ""
  11083. },
  11084. "require": {
  11085. "ext-dom": "*",
  11086. "ext-tokenizer": "*",
  11087. "ext-xmlwriter": "*",
  11088. "php": "^7.2 || ^8.0"
  11089. },
  11090. "type": "library",
  11091. "autoload": {
  11092. "classmap": [
  11093. "src/"
  11094. ]
  11095. },
  11096. "notification-url": "https://packagist.org/downloads/",
  11097. "license": [
  11098. "BSD-3-Clause"
  11099. ],
  11100. "authors": [
  11101. {
  11102. "name": "Arne Blankerts",
  11103. "email": "arne@blankerts.de",
  11104. "role": "Developer"
  11105. }
  11106. ],
  11107. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11108. "support": {
  11109. "issues": "https://github.com/theseer/tokenizer/issues",
  11110. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11111. },
  11112. "funding": [
  11113. {
  11114. "url": "https://github.com/theseer",
  11115. "type": "github"
  11116. }
  11117. ],
  11118. "time": "2024-03-03T12:36:25+00:00"
  11119. }
  11120. ],
  11121. "aliases": [],
  11122. "minimum-stability": "dev",
  11123. "stability-flags": {},
  11124. "prefer-stable": true,
  11125. "prefer-lowest": false,
  11126. "platform": {
  11127. "php": ">=8.1"
  11128. },
  11129. "platform-dev": {},
  11130. "plugin-api-version": "2.6.0"
  11131. }