composer.lock 363 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273
  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": "aac08200b704c6f444f313b403adcdfc",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "doctrine/annotations",
  80. "version": "2.0.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  89. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.8.0",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6",
  104. "vimeo/psalm": "^4.10"
  105. },
  106. "suggest": {
  107. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  151. },
  152. "time": "2023-02-02T22:02:53+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "graham-campbell/result-type",
  450. "version": "v1.1.2",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  454. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  459. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.2.5 || ^8.0",
  464. "phpoption/phpoption": "^1.9.2"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "GrahamCampbell\\ResultType\\": "src/"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Graham Campbell",
  482. "email": "hello@gjcampbell.co.uk",
  483. "homepage": "https://github.com/GrahamCampbell"
  484. }
  485. ],
  486. "description": "An Implementation Of The Result Type",
  487. "keywords": [
  488. "Graham Campbell",
  489. "GrahamCampbell",
  490. "Result Type",
  491. "Result-Type",
  492. "result"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  496. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  497. },
  498. "funding": [
  499. {
  500. "url": "https://github.com/GrahamCampbell",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2023-11-12T22:16:48+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/guzzle",
  512. "version": "7.8.1",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/guzzle.git",
  516. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  521. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "ext-json": "*",
  526. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  527. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  528. "php": "^7.2.5 || ^8.0",
  529. "psr/http-client": "^1.0",
  530. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  531. },
  532. "provide": {
  533. "psr/http-client-implementation": "1.0"
  534. },
  535. "require-dev": {
  536. "bamarni/composer-bin-plugin": "^1.8.2",
  537. "ext-curl": "*",
  538. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  539. "php-http/message-factory": "^1.1",
  540. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  541. "psr/log": "^1.1 || ^2.0 || ^3.0"
  542. },
  543. "suggest": {
  544. "ext-curl": "Required for CURL handler support",
  545. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  546. "psr/log": "Required for using the Log middleware"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "bamarni-bin": {
  551. "bin-links": true,
  552. "forward-command": false
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions_include.php"
  558. ],
  559. "psr-4": {
  560. "GuzzleHttp\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Graham Campbell",
  570. "email": "hello@gjcampbell.co.uk",
  571. "homepage": "https://github.com/GrahamCampbell"
  572. },
  573. {
  574. "name": "Michael Dowling",
  575. "email": "mtdowling@gmail.com",
  576. "homepage": "https://github.com/mtdowling"
  577. },
  578. {
  579. "name": "Jeremy Lindblom",
  580. "email": "jeremeamia@gmail.com",
  581. "homepage": "https://github.com/jeremeamia"
  582. },
  583. {
  584. "name": "George Mponos",
  585. "email": "gmponos@gmail.com",
  586. "homepage": "https://github.com/gmponos"
  587. },
  588. {
  589. "name": "Tobias Nyholm",
  590. "email": "tobias.nyholm@gmail.com",
  591. "homepage": "https://github.com/Nyholm"
  592. },
  593. {
  594. "name": "Márk Sági-Kazár",
  595. "email": "mark.sagikazar@gmail.com",
  596. "homepage": "https://github.com/sagikazarmark"
  597. },
  598. {
  599. "name": "Tobias Schultze",
  600. "email": "webmaster@tubo-world.de",
  601. "homepage": "https://github.com/Tobion"
  602. }
  603. ],
  604. "description": "Guzzle is a PHP HTTP client library",
  605. "keywords": [
  606. "client",
  607. "curl",
  608. "framework",
  609. "http",
  610. "http client",
  611. "psr-18",
  612. "psr-7",
  613. "rest",
  614. "web service"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/guzzle/guzzle/issues",
  618. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://github.com/GrahamCampbell",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://github.com/Nyholm",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2023-12-03T20:35:24+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/promises",
  638. "version": "2.0.2",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/promises.git",
  642. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  647. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2.5 || ^8.0"
  652. },
  653. "require-dev": {
  654. "bamarni/composer-bin-plugin": "^1.8.2",
  655. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "GuzzleHttp\\Promise\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Graham Campbell",
  676. "email": "hello@gjcampbell.co.uk",
  677. "homepage": "https://github.com/GrahamCampbell"
  678. },
  679. {
  680. "name": "Michael Dowling",
  681. "email": "mtdowling@gmail.com",
  682. "homepage": "https://github.com/mtdowling"
  683. },
  684. {
  685. "name": "Tobias Nyholm",
  686. "email": "tobias.nyholm@gmail.com",
  687. "homepage": "https://github.com/Nyholm"
  688. },
  689. {
  690. "name": "Tobias Schultze",
  691. "email": "webmaster@tubo-world.de",
  692. "homepage": "https://github.com/Tobion"
  693. }
  694. ],
  695. "description": "Guzzle promises library",
  696. "keywords": [
  697. "promise"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/guzzle/promises/issues",
  701. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://github.com/GrahamCampbell",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://github.com/Nyholm",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2023-12-03T20:19:20+00:00"
  718. },
  719. {
  720. "name": "guzzlehttp/psr7",
  721. "version": "2.6.2",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/guzzle/psr7.git",
  725. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  730. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "php": "^7.2.5 || ^8.0",
  735. "psr/http-factory": "^1.0",
  736. "psr/http-message": "^1.1 || ^2.0",
  737. "ralouphie/getallheaders": "^3.0"
  738. },
  739. "provide": {
  740. "psr/http-factory-implementation": "1.0",
  741. "psr/http-message-implementation": "1.0"
  742. },
  743. "require-dev": {
  744. "bamarni/composer-bin-plugin": "^1.8.2",
  745. "http-interop/http-factory-tests": "^0.9",
  746. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  747. },
  748. "suggest": {
  749. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "bamarni-bin": {
  754. "bin-links": true,
  755. "forward-command": false
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "GuzzleHttp\\Psr7\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "George Mponos",
  780. "email": "gmponos@gmail.com",
  781. "homepage": "https://github.com/gmponos"
  782. },
  783. {
  784. "name": "Tobias Nyholm",
  785. "email": "tobias.nyholm@gmail.com",
  786. "homepage": "https://github.com/Nyholm"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://github.com/sagikazarmark"
  792. },
  793. {
  794. "name": "Tobias Schultze",
  795. "email": "webmaster@tubo-world.de",
  796. "homepage": "https://github.com/Tobion"
  797. },
  798. {
  799. "name": "Márk Sági-Kazár",
  800. "email": "mark.sagikazar@gmail.com",
  801. "homepage": "https://sagikazarmark.hu"
  802. }
  803. ],
  804. "description": "PSR-7 message implementation that also provides common utility methods",
  805. "keywords": [
  806. "http",
  807. "message",
  808. "psr-7",
  809. "request",
  810. "response",
  811. "stream",
  812. "uri",
  813. "url"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/psr7/issues",
  817. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2023-12-03T20:05:35+00:00"
  834. },
  835. {
  836. "name": "hyperf/cache",
  837. "version": "v3.1.23",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/cache.git",
  841. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  846. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "hyperf/codec": "~3.1.0",
  851. "hyperf/collection": "~3.1.0",
  852. "hyperf/contract": "~3.1.0",
  853. "hyperf/support": "~3.1.0",
  854. "hyperf/utils": "~3.1.0",
  855. "php": ">=8.1",
  856. "psr/container": "^1.0|^2.0",
  857. "psr/simple-cache": "^1.0|^2.0|^3.0"
  858. },
  859. "suggest": {
  860. "hyperf/di": "Use cache annotations.",
  861. "hyperf/event": "Use listener to delete annotation cache."
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-master": "3.1-dev"
  867. },
  868. "hyperf": {
  869. "config": "Hyperf\\Cache\\ConfigProvider"
  870. }
  871. },
  872. "autoload": {
  873. "psr-4": {
  874. "Hyperf\\Cache\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "description": "A cache component for hyperf.",
  882. "homepage": "https://hyperf.io",
  883. "keywords": [
  884. "cache",
  885. "hyperf",
  886. "php"
  887. ],
  888. "support": {
  889. "docs": "https://hyperf.wiki",
  890. "issues": "https://github.com/hyperf/hyperf/issues",
  891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  892. "source": "https://github.com/hyperf/hyperf"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://hyperf.wiki/#/zh-cn/donate",
  897. "type": "custom"
  898. },
  899. {
  900. "url": "https://opencollective.com/hyperf",
  901. "type": "open_collective"
  902. }
  903. ],
  904. "time": "2024-05-23T03:43:58+00:00"
  905. },
  906. {
  907. "name": "hyperf/code-parser",
  908. "version": "v3.1.15",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/hyperf/code-parser.git",
  912. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  917. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "hyperf/collection": "~3.1.0",
  922. "hyperf/stringable": "~3.1.0",
  923. "hyperf/support": "~3.1.0",
  924. "php": ">=8.1"
  925. },
  926. "suggest": {
  927. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  928. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "3.1-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Hyperf\\CodeParser\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "description": "A code parser component for Hyperf.",
  946. "homepage": "https://hyperf.io",
  947. "keywords": [
  948. "code-parser",
  949. "hyperf",
  950. "php",
  951. "swoole"
  952. ],
  953. "support": {
  954. "docs": "https://hyperf.wiki",
  955. "issues": "https://github.com/hyperf/hyperf/issues",
  956. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  957. "source": "https://github.com/hyperf/hyperf"
  958. },
  959. "funding": [
  960. {
  961. "url": "https://hyperf.wiki/#/zh-cn/donate",
  962. "type": "custom"
  963. },
  964. {
  965. "url": "https://opencollective.com/hyperf",
  966. "type": "open_collective"
  967. }
  968. ],
  969. "time": "2024-03-23T11:28:51+00:00"
  970. },
  971. {
  972. "name": "hyperf/codec",
  973. "version": "v3.1.15",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/hyperf/codec.git",
  977. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  982. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "ext-json": "*",
  987. "ext-xml": "*",
  988. "hyperf/contract": "~3.1.0",
  989. "php": ">=8.1"
  990. },
  991. "suggest": {
  992. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "3.1-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Hyperf\\Codec\\": "src/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "description": "A codec component for Hyperf.",
  1010. "homepage": "https://hyperf.io",
  1011. "keywords": [
  1012. "codec",
  1013. "hyperf",
  1014. "php",
  1015. "swoole"
  1016. ],
  1017. "support": {
  1018. "docs": "https://hyperf.wiki",
  1019. "issues": "https://github.com/hyperf/hyperf/issues",
  1020. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1021. "source": "https://github.com/hyperf/hyperf"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://opencollective.com/hyperf",
  1030. "type": "open_collective"
  1031. }
  1032. ],
  1033. "time": "2024-03-23T11:28:51+00:00"
  1034. },
  1035. {
  1036. "name": "hyperf/collection",
  1037. "version": "v3.1.23.2",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/hyperf/collection.git",
  1041. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1046. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "hyperf/conditionable": "~3.1.0",
  1051. "hyperf/contract": "~3.1.0",
  1052. "hyperf/macroable": "~3.1.0",
  1053. "hyperf/stringable": "~3.1.0",
  1054. "php": ">=8.1"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "branch-alias": {
  1059. "dev-master": "3.1-dev"
  1060. }
  1061. },
  1062. "autoload": {
  1063. "files": [
  1064. "src/Functions.php"
  1065. ],
  1066. "psr-4": {
  1067. "Hyperf\\Collection\\": "src/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "description": "Hyperf Collection package which come from illuminate/collections",
  1075. "homepage": "https://hyperf.io",
  1076. "keywords": [
  1077. "collection",
  1078. "hyperf",
  1079. "php",
  1080. "swoole"
  1081. ],
  1082. "support": {
  1083. "docs": "https://hyperf.wiki",
  1084. "issues": "https://github.com/hyperf/hyperf/issues",
  1085. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1086. "source": "https://github.com/hyperf/hyperf"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1091. "type": "custom"
  1092. },
  1093. {
  1094. "url": "https://opencollective.com/hyperf",
  1095. "type": "open_collective"
  1096. }
  1097. ],
  1098. "time": "2024-05-24T08:33:42+00:00"
  1099. },
  1100. {
  1101. "name": "hyperf/command",
  1102. "version": "v3.1.24",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/hyperf/command.git",
  1106. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1111. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "hyperf/collection": "~3.1.0",
  1116. "hyperf/context": "~3.1.0",
  1117. "hyperf/contract": "~3.1.0",
  1118. "hyperf/coroutine": "~3.1.0",
  1119. "hyperf/di": "~3.1.0",
  1120. "hyperf/stringable": "~3.1.0",
  1121. "hyperf/support": "~3.1.0",
  1122. "hyperf/tappable": "~3.1.0",
  1123. "php": ">=8.1",
  1124. "psr/event-dispatcher": "^1.0",
  1125. "symfony/console": "^5.0|^6.0|^7.0"
  1126. },
  1127. "suggest": {
  1128. "hyperf/di": "Required to use annotations.",
  1129. "hyperf/event": "Required to use listeners."
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "3.1-dev"
  1135. },
  1136. "hyperf": {
  1137. "config": "Hyperf\\Command\\ConfigProvider"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Hyperf\\Command\\": "src/"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "description": "Command for hyperf",
  1150. "keywords": [
  1151. "command",
  1152. "php",
  1153. "swoole"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/hyperf/command/issues",
  1157. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1162. "type": "custom"
  1163. },
  1164. {
  1165. "url": "https://opencollective.com/hyperf",
  1166. "type": "open_collective"
  1167. }
  1168. ],
  1169. "time": "2024-05-27T12:37:07+00:00"
  1170. },
  1171. {
  1172. "name": "hyperf/conditionable",
  1173. "version": "v3.1.15",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hyperf/conditionable.git",
  1177. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1182. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=8.1"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "3.1-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "Hyperf\\Conditionable\\": "src/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1204. "homepage": "https://hyperf.io",
  1205. "keywords": [
  1206. "conditionable",
  1207. "hyperf",
  1208. "php",
  1209. "swoole"
  1210. ],
  1211. "support": {
  1212. "docs": "https://hyperf.wiki",
  1213. "issues": "https://github.com/hyperf/hyperf/issues",
  1214. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1215. "source": "https://github.com/hyperf/hyperf"
  1216. },
  1217. "funding": [
  1218. {
  1219. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1220. "type": "custom"
  1221. },
  1222. {
  1223. "url": "https://opencollective.com/hyperf",
  1224. "type": "open_collective"
  1225. }
  1226. ],
  1227. "time": "2024-03-23T11:28:51+00:00"
  1228. },
  1229. {
  1230. "name": "hyperf/config",
  1231. "version": "v3.1.15",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/hyperf/config.git",
  1235. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1240. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "hyperf/collection": "~3.1.0",
  1245. "hyperf/contract": "~3.1.0",
  1246. "hyperf/support": "~3.1.0",
  1247. "php": ">=8.1",
  1248. "psr/container": "^1.0|^2.0",
  1249. "symfony/finder": "^5.0|^6.0|^7.0"
  1250. },
  1251. "suggest": {
  1252. "hyperf/context": "Required to use config()",
  1253. "hyperf/di": "Allows using @Value annotation",
  1254. "hyperf/event": "Allows using @Value annotation",
  1255. "hyperf/framework": "Allows using @Value annotation",
  1256. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1257. },
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "3.1-dev"
  1262. },
  1263. "hyperf": {
  1264. "config": "Hyperf\\Config\\ConfigProvider"
  1265. }
  1266. },
  1267. "autoload": {
  1268. "files": [
  1269. "./src/Functions.php"
  1270. ],
  1271. "psr-4": {
  1272. "Hyperf\\Config\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "description": "An independent component that provides configuration container.",
  1280. "homepage": "https://hyperf.io",
  1281. "keywords": [
  1282. "config",
  1283. "configuration",
  1284. "hyperf",
  1285. "php",
  1286. "swoole"
  1287. ],
  1288. "support": {
  1289. "docs": "https://hyperf.wiki",
  1290. "issues": "https://github.com/hyperf/hyperf/issues",
  1291. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1292. "source": "https://github.com/hyperf/hyperf"
  1293. },
  1294. "funding": [
  1295. {
  1296. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1297. "type": "custom"
  1298. },
  1299. {
  1300. "url": "https://opencollective.com/hyperf",
  1301. "type": "open_collective"
  1302. }
  1303. ],
  1304. "time": "2024-03-23T11:28:51+00:00"
  1305. },
  1306. {
  1307. "name": "hyperf/config-center",
  1308. "version": "v3.1.15",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/hyperf/config-center.git",
  1312. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1317. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "hyperf/support": "~3.1.0",
  1322. "php": ">=8.1"
  1323. },
  1324. "suggest": {
  1325. "hyperf/process": "^2.1"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "3.1-dev"
  1331. },
  1332. "hyperf": {
  1333. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Hyperf\\ConfigCenter\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "description": "The abstraction component of config center",
  1346. "homepage": "https://hyperf.io",
  1347. "keywords": [
  1348. "config-center",
  1349. "hyperf",
  1350. "php"
  1351. ],
  1352. "support": {
  1353. "docs": "https://hyperf.wiki",
  1354. "issues": "https://github.com/hyperf/hyperf/issues",
  1355. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1356. "source": "https://github.com/hyperf/hyperf"
  1357. },
  1358. "funding": [
  1359. {
  1360. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1361. "type": "custom"
  1362. },
  1363. {
  1364. "url": "https://opencollective.com/hyperf",
  1365. "type": "open_collective"
  1366. }
  1367. ],
  1368. "time": "2024-03-23T11:28:51+00:00"
  1369. },
  1370. {
  1371. "name": "hyperf/config-nacos",
  1372. "version": "v3.1.15",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/hyperf/config-nacos.git",
  1376. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1381. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "hyperf/codec": "~3.1.0",
  1386. "hyperf/config-center": "~3.1.0",
  1387. "hyperf/contract": "~3.1.0",
  1388. "hyperf/guzzle": "~3.1.0",
  1389. "hyperf/nacos": "~3.1.0",
  1390. "hyperf/support": "~3.1.0",
  1391. "hyperf/utils": "~3.1.0",
  1392. "jetbrains/phpstorm-attributes": "^1.0",
  1393. "php": ">=8.1"
  1394. },
  1395. "suggest": {
  1396. "ext-json": "*",
  1397. "ext-simplexml": "*",
  1398. "ext-yaml": "*",
  1399. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1400. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1401. "hyperf/process": "Required to use processes. (~2.2.0)"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "3.1-dev"
  1407. },
  1408. "hyperf": {
  1409. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "psr-4": {
  1414. "Hyperf\\ConfigNacos\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "description": "A nacos adapter for config center component.",
  1422. "homepage": "https://hyperf.io",
  1423. "keywords": [
  1424. "hyperf",
  1425. "nacos",
  1426. "php",
  1427. "swoole"
  1428. ],
  1429. "support": {
  1430. "docs": "https://hyperf.wiki",
  1431. "issues": "https://github.com/hyperf/hyperf/issues",
  1432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1433. "source": "https://github.com/hyperf/hyperf"
  1434. },
  1435. "funding": [
  1436. {
  1437. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1438. "type": "custom"
  1439. },
  1440. {
  1441. "url": "https://opencollective.com/hyperf",
  1442. "type": "open_collective"
  1443. }
  1444. ],
  1445. "time": "2024-03-23T11:28:51+00:00"
  1446. },
  1447. {
  1448. "name": "hyperf/constants",
  1449. "version": "v3.1.16",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/hyperf/constants.git",
  1453. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1458. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "hyperf/di": "~3.1.0",
  1463. "hyperf/support": "~3.1.0",
  1464. "hyperf/utils": "~3.1.0",
  1465. "php": ">=8.1"
  1466. },
  1467. "suggest": {
  1468. "hyperf/translation": "Required to use translation."
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "3.1-dev"
  1474. },
  1475. "hyperf": {
  1476. "config": "Hyperf\\Constants\\ConfigProvider"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Hyperf\\Constants\\": "src/"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "description": "A constants component for hyperf.",
  1489. "homepage": "https://hyperf.io",
  1490. "keywords": [
  1491. "constants",
  1492. "hyperf",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "docs": "https://hyperf.wiki",
  1497. "issues": "https://github.com/hyperf/hyperf/issues",
  1498. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1499. "source": "https://github.com/hyperf/hyperf"
  1500. },
  1501. "funding": [
  1502. {
  1503. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://opencollective.com/hyperf",
  1508. "type": "open_collective"
  1509. }
  1510. ],
  1511. "time": "2024-03-31T11:35:28+00:00"
  1512. },
  1513. {
  1514. "name": "hyperf/consul",
  1515. "version": "v3.1.22",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/hyperf/consul.git",
  1519. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1524. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "guzzlehttp/guzzle": "^6.3|^7.0",
  1529. "php": ">=8.1"
  1530. },
  1531. "require-dev": {
  1532. "hyperf/guzzle": "~3.1.0"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "3.1-dev"
  1538. },
  1539. "hyperf": {
  1540. "config": "Hyperf\\Consul\\ConfigProvider"
  1541. }
  1542. },
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Hyperf\\Consul\\": "src/"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "description": "A Consul Client for Hyperf.",
  1553. "homepage": "https://hyperf.io",
  1554. "keywords": [
  1555. "consul",
  1556. "consul-client",
  1557. "hyperf",
  1558. "php",
  1559. "swoole"
  1560. ],
  1561. "support": {
  1562. "docs": "https://hyperf.wiki",
  1563. "issues": "https://github.com/hyperf/hyperf/issues",
  1564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1565. "source": "https://github.com/hyperf/hyperf"
  1566. },
  1567. "funding": [
  1568. {
  1569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1570. "type": "custom"
  1571. },
  1572. {
  1573. "url": "https://opencollective.com/hyperf",
  1574. "type": "open_collective"
  1575. }
  1576. ],
  1577. "time": "2024-05-15T06:42:24+00:00"
  1578. },
  1579. {
  1580. "name": "hyperf/context",
  1581. "version": "v3.1.15",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/hyperf/context.git",
  1585. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1590. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "hyperf/engine": "^2.0",
  1595. "php": ">=8.1"
  1596. },
  1597. "suggest": {
  1598. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1599. },
  1600. "type": "library",
  1601. "extra": {
  1602. "branch-alias": {
  1603. "dev-master": "3.1-dev"
  1604. }
  1605. },
  1606. "autoload": {
  1607. "psr-4": {
  1608. "Hyperf\\Context\\": "src/"
  1609. }
  1610. },
  1611. "notification-url": "https://packagist.org/downloads/",
  1612. "license": [
  1613. "MIT"
  1614. ],
  1615. "description": "A coroutine/application context library.",
  1616. "homepage": "https://hyperf.io",
  1617. "keywords": [
  1618. "Context",
  1619. "hyperf",
  1620. "php",
  1621. "swoole"
  1622. ],
  1623. "support": {
  1624. "docs": "https://hyperf.wiki",
  1625. "issues": "https://github.com/hyperf/hyperf/issues",
  1626. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1627. "source": "https://github.com/hyperf/hyperf"
  1628. },
  1629. "funding": [
  1630. {
  1631. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1632. "type": "custom"
  1633. },
  1634. {
  1635. "url": "https://opencollective.com/hyperf",
  1636. "type": "open_collective"
  1637. }
  1638. ],
  1639. "time": "2024-03-23T11:28:51+00:00"
  1640. },
  1641. {
  1642. "name": "hyperf/contract",
  1643. "version": "v3.1.15",
  1644. "source": {
  1645. "type": "git",
  1646. "url": "https://github.com/hyperf/contract.git",
  1647. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1648. },
  1649. "dist": {
  1650. "type": "zip",
  1651. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1652. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1653. "shasum": ""
  1654. },
  1655. "require": {
  1656. "php": ">=8.1"
  1657. },
  1658. "type": "library",
  1659. "extra": {
  1660. "branch-alias": {
  1661. "dev-master": "3.1-dev"
  1662. }
  1663. },
  1664. "autoload": {
  1665. "psr-4": {
  1666. "Hyperf\\Contract\\": "src/"
  1667. }
  1668. },
  1669. "notification-url": "https://packagist.org/downloads/",
  1670. "license": [
  1671. "MIT"
  1672. ],
  1673. "description": "The contracts of Hyperf.",
  1674. "homepage": "https://hyperf.io",
  1675. "keywords": [
  1676. "hyperf",
  1677. "php",
  1678. "swoole"
  1679. ],
  1680. "support": {
  1681. "docs": "https://hyperf.wiki",
  1682. "issues": "https://github.com/hyperf/hyperf/issues",
  1683. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1684. "source": "https://github.com/hyperf/hyperf"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1689. "type": "custom"
  1690. },
  1691. {
  1692. "url": "https://opencollective.com/hyperf",
  1693. "type": "open_collective"
  1694. }
  1695. ],
  1696. "time": "2024-03-23T11:28:51+00:00"
  1697. },
  1698. {
  1699. "name": "hyperf/coordinator",
  1700. "version": "v3.1.21",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/hyperf/coordinator.git",
  1704. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1709. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "hyperf/engine": "^2.0",
  1714. "php": ">=8.1"
  1715. },
  1716. "type": "library",
  1717. "extra": {
  1718. "branch-alias": {
  1719. "dev-master": "3.1-dev"
  1720. }
  1721. },
  1722. "autoload": {
  1723. "files": [
  1724. "src/Functions.php"
  1725. ],
  1726. "psr-4": {
  1727. "Hyperf\\Coordinator\\": "src/"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "description": "Hyperf Coordinator",
  1735. "homepage": "https://hyperf.io",
  1736. "keywords": [
  1737. "Coordinator",
  1738. "hyperf",
  1739. "php",
  1740. "swoole"
  1741. ],
  1742. "support": {
  1743. "docs": "https://hyperf.wiki",
  1744. "issues": "https://github.com/hyperf/hyperf/issues",
  1745. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1746. "source": "https://github.com/hyperf/hyperf"
  1747. },
  1748. "funding": [
  1749. {
  1750. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1751. "type": "custom"
  1752. },
  1753. {
  1754. "url": "https://opencollective.com/hyperf",
  1755. "type": "open_collective"
  1756. }
  1757. ],
  1758. "time": "2024-05-09T02:35:08+00:00"
  1759. },
  1760. {
  1761. "name": "hyperf/coroutine",
  1762. "version": "v3.1.15",
  1763. "source": {
  1764. "type": "git",
  1765. "url": "https://github.com/hyperf/coroutine.git",
  1766. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1767. },
  1768. "dist": {
  1769. "type": "zip",
  1770. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1771. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1772. "shasum": ""
  1773. },
  1774. "require": {
  1775. "hyperf/context": "~3.1.0",
  1776. "hyperf/contract": "~3.1.0",
  1777. "hyperf/engine": "^2.0",
  1778. "php": ">=8.1"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "branch-alias": {
  1783. "dev-master": "3.1-dev"
  1784. }
  1785. },
  1786. "autoload": {
  1787. "files": [
  1788. "src/Functions.php"
  1789. ],
  1790. "psr-4": {
  1791. "Hyperf\\Coroutine\\": "src/"
  1792. }
  1793. },
  1794. "notification-url": "https://packagist.org/downloads/",
  1795. "license": [
  1796. "MIT"
  1797. ],
  1798. "description": "Hyperf Coroutine",
  1799. "homepage": "https://hyperf.io",
  1800. "keywords": [
  1801. "coroutine",
  1802. "hyperf",
  1803. "php",
  1804. "swoole"
  1805. ],
  1806. "support": {
  1807. "docs": "https://hyperf.wiki",
  1808. "issues": "https://github.com/hyperf/hyperf/issues",
  1809. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1810. "source": "https://github.com/hyperf/hyperf"
  1811. },
  1812. "funding": [
  1813. {
  1814. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1815. "type": "custom"
  1816. },
  1817. {
  1818. "url": "https://opencollective.com/hyperf",
  1819. "type": "open_collective"
  1820. }
  1821. ],
  1822. "time": "2024-03-23T11:28:51+00:00"
  1823. },
  1824. {
  1825. "name": "hyperf/database",
  1826. "version": "v3.1.24",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://github.com/hyperf/database.git",
  1830. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1835. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1836. "shasum": ""
  1837. },
  1838. "require": {
  1839. "hyperf/code-parser": "~3.1.0",
  1840. "hyperf/collection": "~3.1.0",
  1841. "hyperf/macroable": "~3.1.0",
  1842. "hyperf/support": "~3.1.0",
  1843. "hyperf/tappable": "~3.1.0",
  1844. "hyperf/utils": "~3.1.0",
  1845. "nesbot/carbon": "^2.0",
  1846. "php": ">=8.1",
  1847. "psr/container": "^1.0|^2.0",
  1848. "psr/event-dispatcher": "^1.0"
  1849. },
  1850. "suggest": {
  1851. "doctrine/dbal": "Required to rename columns (^3.0).",
  1852. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1853. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "branch-alias": {
  1858. "dev-master": "3.1-dev"
  1859. }
  1860. },
  1861. "autoload": {
  1862. "psr-4": {
  1863. "Hyperf\\Database\\": "src/"
  1864. }
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "description": "A flexible database library.",
  1871. "homepage": "https://hyperf.io",
  1872. "keywords": [
  1873. "database",
  1874. "hyperf",
  1875. "php"
  1876. ],
  1877. "support": {
  1878. "docs": "https://hyperf.wiki",
  1879. "issues": "https://github.com/hyperf/hyperf/issues",
  1880. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1881. "source": "https://github.com/hyperf/hyperf"
  1882. },
  1883. "funding": [
  1884. {
  1885. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1886. "type": "custom"
  1887. },
  1888. {
  1889. "url": "https://opencollective.com/hyperf",
  1890. "type": "open_collective"
  1891. }
  1892. ],
  1893. "time": "2024-05-24T06:14:27+00:00"
  1894. },
  1895. {
  1896. "name": "hyperf/db-connection",
  1897. "version": "v3.1.15",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://github.com/hyperf/db-connection.git",
  1901. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  1906. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  1907. "shasum": ""
  1908. },
  1909. "require": {
  1910. "hyperf/database": "~3.1.0",
  1911. "hyperf/di": "~3.1.0",
  1912. "hyperf/framework": "~3.1.0",
  1913. "hyperf/model-listener": "~3.1.0",
  1914. "hyperf/pool": "~3.1.0",
  1915. "hyperf/support": "~3.1.0",
  1916. "hyperf/utils": "~3.1.0",
  1917. "php": ">=8.1",
  1918. "psr/container": "^1.0|^2.0"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-master": "3.1-dev"
  1924. },
  1925. "hyperf": {
  1926. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1927. }
  1928. },
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Hyperf\\DbConnection\\": "src/"
  1932. }
  1933. },
  1934. "notification-url": "https://packagist.org/downloads/",
  1935. "license": [
  1936. "MIT"
  1937. ],
  1938. "description": "A hyperf db connection handler for hyperf/database.",
  1939. "homepage": "https://hyperf.io",
  1940. "keywords": [
  1941. "Connection",
  1942. "database",
  1943. "hyperf",
  1944. "php"
  1945. ],
  1946. "support": {
  1947. "docs": "https://hyperf.wiki",
  1948. "issues": "https://github.com/hyperf/hyperf/issues",
  1949. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1950. "source": "https://github.com/hyperf/hyperf"
  1951. },
  1952. "funding": [
  1953. {
  1954. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1955. "type": "custom"
  1956. },
  1957. {
  1958. "url": "https://opencollective.com/hyperf",
  1959. "type": "open_collective"
  1960. }
  1961. ],
  1962. "time": "2024-03-23T11:28:51+00:00"
  1963. },
  1964. {
  1965. "name": "hyperf/di",
  1966. "version": "v3.1.28",
  1967. "source": {
  1968. "type": "git",
  1969. "url": "https://github.com/hyperf/di.git",
  1970. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb"
  1971. },
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://api.github.com/repos/hyperf/di/zipball/6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  1975. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  1976. "shasum": ""
  1977. },
  1978. "require": {
  1979. "doctrine/instantiator": "^1.0",
  1980. "hyperf/code-parser": "~3.1.0",
  1981. "hyperf/pipeline": "~3.1.0",
  1982. "hyperf/stdlib": "~3.1.0",
  1983. "hyperf/support": "~3.1.0",
  1984. "nikic/php-parser": "^4.1",
  1985. "php": ">=8.1",
  1986. "php-di/phpdoc-reader": "^2.2",
  1987. "psr/container": "^1.0 || ^2.0",
  1988. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  1989. "vlucas/phpdotenv": "^5.0"
  1990. },
  1991. "suggest": {
  1992. "ext-pcntl": "Required to scan annotations.",
  1993. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  1994. },
  1995. "type": "library",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-master": "3.1-dev"
  1999. },
  2000. "hyperf": {
  2001. "config": "Hyperf\\Di\\ConfigProvider"
  2002. }
  2003. },
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Hyperf\\Di\\": "src/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "description": "A DI for Hyperf.",
  2014. "homepage": "https://hyperf.io",
  2015. "keywords": [
  2016. "annotation",
  2017. "di",
  2018. "hyperf",
  2019. "php",
  2020. "swoole"
  2021. ],
  2022. "support": {
  2023. "docs": "https://hyperf.wiki",
  2024. "issues": "https://github.com/hyperf/hyperf/issues",
  2025. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2026. "source": "https://github.com/hyperf/hyperf"
  2027. },
  2028. "funding": [
  2029. {
  2030. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2031. "type": "custom"
  2032. },
  2033. {
  2034. "url": "https://opencollective.com/hyperf",
  2035. "type": "open_collective"
  2036. }
  2037. ],
  2038. "time": "2024-06-26T03:31:21+00:00"
  2039. },
  2040. {
  2041. "name": "hyperf/dispatcher",
  2042. "version": "v3.1.15",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://github.com/hyperf/dispatcher.git",
  2046. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2051. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2052. "shasum": ""
  2053. },
  2054. "require": {
  2055. "hyperf/contract": "~3.1.0",
  2056. "php": ">=8.1",
  2057. "psr/container": "^1.0|^2.0",
  2058. "psr/http-message": "^1.0|^2.0",
  2059. "psr/http-server-middleware": "^1.0"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "3.1-dev"
  2065. },
  2066. "hyperf": {
  2067. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2068. }
  2069. },
  2070. "autoload": {
  2071. "psr-4": {
  2072. "Hyperf\\Dispatcher\\": "src/"
  2073. }
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "description": "A HTTP Server for Hyperf.",
  2080. "homepage": "https://hyperf.io",
  2081. "keywords": [
  2082. "dispatcher",
  2083. "filter",
  2084. "hyperf",
  2085. "middleware",
  2086. "php",
  2087. "swoole"
  2088. ],
  2089. "support": {
  2090. "docs": "https://hyperf.wiki",
  2091. "issues": "https://github.com/hyperf/hyperf/issues",
  2092. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2093. "source": "https://github.com/hyperf/hyperf"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2098. "type": "custom"
  2099. },
  2100. {
  2101. "url": "https://opencollective.com/hyperf",
  2102. "type": "open_collective"
  2103. }
  2104. ],
  2105. "time": "2024-03-23T11:28:51+00:00"
  2106. },
  2107. {
  2108. "name": "hyperf/engine",
  2109. "version": "v2.11.0",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/hyperf/engine.git",
  2113. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2118. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2119. "shasum": ""
  2120. },
  2121. "require": {
  2122. "hyperf/engine-contract": "~1.10.0",
  2123. "php": ">=8.0"
  2124. },
  2125. "conflict": {
  2126. "ext-swoole": "<5.0"
  2127. },
  2128. "require-dev": {
  2129. "friendsofphp/php-cs-fixer": "^3.0",
  2130. "hyperf/guzzle": "^3.0",
  2131. "hyperf/http-message": "^3.0",
  2132. "mockery/mockery": "^1.5",
  2133. "phpstan/phpstan": "^1.0",
  2134. "phpunit/phpunit": "^9.4",
  2135. "swoole/ide-helper": "5.*"
  2136. },
  2137. "suggest": {
  2138. "ext-sockets": "*",
  2139. "ext-swoole": ">=5.0",
  2140. "hyperf/http-message": "Required to use ResponseEmitter.",
  2141. "psr/http-message": "Required to use WebSocket Frame."
  2142. },
  2143. "type": "library",
  2144. "extra": {
  2145. "branch-alias": {
  2146. "dev-master": "2.11-dev"
  2147. },
  2148. "hyperf": {
  2149. "config": "Hyperf\\Engine\\ConfigProvider"
  2150. }
  2151. },
  2152. "autoload": {
  2153. "files": [
  2154. "src/Functions.php"
  2155. ],
  2156. "psr-4": {
  2157. "Hyperf\\Engine\\": "src/"
  2158. }
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "MIT"
  2163. ],
  2164. "description": "Coroutine engine provided by swoole.",
  2165. "keywords": [
  2166. "engine",
  2167. "hyperf",
  2168. "php",
  2169. "swoole"
  2170. ],
  2171. "support": {
  2172. "issues": "https://github.com/hyperf/engine/issues",
  2173. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2174. },
  2175. "funding": [
  2176. {
  2177. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2178. "type": "custom"
  2179. },
  2180. {
  2181. "url": "https://opencollective.com/hyperf",
  2182. "type": "open_collective"
  2183. }
  2184. ],
  2185. "time": "2024-04-17T13:36:28+00:00"
  2186. },
  2187. {
  2188. "name": "hyperf/engine-contract",
  2189. "version": "v1.10.1",
  2190. "source": {
  2191. "type": "git",
  2192. "url": "https://github.com/hyperf/engine-contract.git",
  2193. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2194. },
  2195. "dist": {
  2196. "type": "zip",
  2197. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2198. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2199. "shasum": ""
  2200. },
  2201. "require": {
  2202. "php": ">=8.0"
  2203. },
  2204. "require-dev": {
  2205. "friendsofphp/php-cs-fixer": "^3.0",
  2206. "mockery/mockery": "^1.0",
  2207. "phpstan/phpstan": "^1.0",
  2208. "phpunit/phpunit": ">=7.0",
  2209. "psr/http-message": "^1.0",
  2210. "swoole/ide-helper": "^4.5"
  2211. },
  2212. "suggest": {
  2213. "psr/http-message": "Required to use WebSocket Frame."
  2214. },
  2215. "type": "library",
  2216. "extra": {
  2217. "branch-alias": {
  2218. "dev-master": "1.9-dev"
  2219. }
  2220. },
  2221. "autoload": {
  2222. "psr-4": {
  2223. "Hyperf\\Engine\\Contract\\": "src/"
  2224. }
  2225. },
  2226. "notification-url": "https://packagist.org/downloads/",
  2227. "license": [
  2228. "MIT"
  2229. ],
  2230. "description": "Contract for Coroutine Engine",
  2231. "keywords": [
  2232. "contract",
  2233. "coroutine",
  2234. "engine",
  2235. "hyperf",
  2236. "php"
  2237. ],
  2238. "support": {
  2239. "issues": "https://github.com/hyperf/engine-contract/issues",
  2240. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2241. },
  2242. "funding": [
  2243. {
  2244. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2245. "type": "custom"
  2246. },
  2247. {
  2248. "url": "https://opencollective.com/hyperf",
  2249. "type": "open_collective"
  2250. }
  2251. ],
  2252. "time": "2024-04-17T13:34:51+00:00"
  2253. },
  2254. {
  2255. "name": "hyperf/event",
  2256. "version": "v3.1.15",
  2257. "source": {
  2258. "type": "git",
  2259. "url": "https://github.com/hyperf/event.git",
  2260. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2261. },
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2265. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2266. "shasum": ""
  2267. },
  2268. "require": {
  2269. "hyperf/contract": "~3.1.0",
  2270. "hyperf/stdlib": "~3.1.0",
  2271. "php": ">=8.1",
  2272. "psr/event-dispatcher": "^1.0"
  2273. },
  2274. "suggest": {
  2275. "hyperf/di": "Required to use annotatioins."
  2276. },
  2277. "type": "library",
  2278. "extra": {
  2279. "branch-alias": {
  2280. "dev-master": "3.1-dev"
  2281. },
  2282. "hyperf": {
  2283. "config": "Hyperf\\Event\\ConfigProvider"
  2284. }
  2285. },
  2286. "autoload": {
  2287. "psr-4": {
  2288. "Hyperf\\Event\\": "src/"
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "description": "an event manager that implements PSR-14.",
  2296. "homepage": "https://hyperf.io",
  2297. "keywords": [
  2298. "event",
  2299. "hyperf",
  2300. "php",
  2301. "swoole"
  2302. ],
  2303. "support": {
  2304. "docs": "https://hyperf.wiki",
  2305. "issues": "https://github.com/hyperf/hyperf/issues",
  2306. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2307. "source": "https://github.com/hyperf/hyperf"
  2308. },
  2309. "funding": [
  2310. {
  2311. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2312. "type": "custom"
  2313. },
  2314. {
  2315. "url": "https://opencollective.com/hyperf",
  2316. "type": "open_collective"
  2317. }
  2318. ],
  2319. "time": "2024-03-23T11:28:51+00:00"
  2320. },
  2321. {
  2322. "name": "hyperf/exception-handler",
  2323. "version": "v3.1.22",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/hyperf/exception-handler.git",
  2327. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2332. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "hyperf/context": "~3.1.0",
  2337. "hyperf/contract": "~3.1.0",
  2338. "hyperf/dispatcher": "~3.1.0",
  2339. "hyperf/http-message": "~3.1.0",
  2340. "hyperf/stdlib": "~3.1.0",
  2341. "hyperf/support": "~3.1.0",
  2342. "php": ">=8.1",
  2343. "psr/container": "^1.0|^2.0",
  2344. "psr/http-message": "^1.0|^2.0",
  2345. "swow/psr7-plus": "^1.0"
  2346. },
  2347. "suggest": {
  2348. "hyperf/di": "Required to use #[ExceptionHandler]",
  2349. "hyperf/event": "Required to use listeners",
  2350. "hyperf/framework": "Required to use listeners",
  2351. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2352. },
  2353. "type": "library",
  2354. "extra": {
  2355. "branch-alias": {
  2356. "dev-master": "3.1-dev"
  2357. },
  2358. "hyperf": {
  2359. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2360. }
  2361. },
  2362. "autoload": {
  2363. "psr-4": {
  2364. "Hyperf\\ExceptionHandler\\": "src/"
  2365. }
  2366. },
  2367. "notification-url": "https://packagist.org/downloads/",
  2368. "license": [
  2369. "MIT"
  2370. ],
  2371. "description": "Exception handler for hyperf",
  2372. "homepage": "https://hyperf.io",
  2373. "keywords": [
  2374. "exception-handler",
  2375. "php",
  2376. "swoole"
  2377. ],
  2378. "support": {
  2379. "docs": "https://hyperf.wiki",
  2380. "issues": "https://github.com/hyperf/hyperf/issues",
  2381. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2382. "source": "https://github.com/hyperf/hyperf"
  2383. },
  2384. "funding": [
  2385. {
  2386. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2387. "type": "custom"
  2388. },
  2389. {
  2390. "url": "https://opencollective.com/hyperf",
  2391. "type": "open_collective"
  2392. }
  2393. ],
  2394. "time": "2024-05-15T07:12:41+00:00"
  2395. },
  2396. {
  2397. "name": "hyperf/framework",
  2398. "version": "v3.1.23",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/hyperf/framework.git",
  2402. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2407. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "fig/http-message-util": "^1.1.2",
  2412. "hyperf/contract": "~3.1.0",
  2413. "hyperf/coordinator": "~3.1.0",
  2414. "hyperf/coroutine": "~3.1.0",
  2415. "php": ">=8.1",
  2416. "psr/container": "^1.0|^2.0",
  2417. "psr/event-dispatcher": "^1.0",
  2418. "psr/log": "^1.0|^2.0|^3.0"
  2419. },
  2420. "suggest": {
  2421. "ext-swoole": "Required to use swoole engine.",
  2422. "hyperf/command": "Required to use Command annotation.",
  2423. "hyperf/di": "Required to use Command annotation.",
  2424. "hyperf/dispatcher": "Required to use BootApplication event.",
  2425. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2426. },
  2427. "type": "library",
  2428. "extra": {
  2429. "branch-alias": {
  2430. "dev-master": "3.1-dev"
  2431. },
  2432. "hyperf": {
  2433. "config": "Hyperf\\Framework\\ConfigProvider"
  2434. }
  2435. },
  2436. "autoload": {
  2437. "psr-4": {
  2438. "Hyperf\\Framework\\": "src/"
  2439. }
  2440. },
  2441. "notification-url": "https://packagist.org/downloads/",
  2442. "license": [
  2443. "MIT"
  2444. ],
  2445. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2446. "homepage": "https://hyperf.io",
  2447. "keywords": [
  2448. "Microservice",
  2449. "framework",
  2450. "hyperf",
  2451. "middleware",
  2452. "php",
  2453. "swoole"
  2454. ],
  2455. "support": {
  2456. "docs": "https://hyperf.wiki",
  2457. "issues": "https://github.com/hyperf/hyperf/issues",
  2458. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2459. "source": "https://github.com/hyperf/hyperf"
  2460. },
  2461. "funding": [
  2462. {
  2463. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2464. "type": "custom"
  2465. },
  2466. {
  2467. "url": "https://opencollective.com/hyperf",
  2468. "type": "open_collective"
  2469. }
  2470. ],
  2471. "time": "2024-05-21T05:43:48+00:00"
  2472. },
  2473. {
  2474. "name": "hyperf/guzzle",
  2475. "version": "v3.1.15",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/hyperf/guzzle.git",
  2479. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2484. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2485. "shasum": ""
  2486. },
  2487. "require": {
  2488. "guzzlehttp/guzzle": "^6.3|^7.0",
  2489. "php": ">=8.1",
  2490. "psr/container": "^1.0|^2.0",
  2491. "psr/http-message": "^1.0|^2.0"
  2492. },
  2493. "suggest": {
  2494. "ext-curl": "Required for CURL handler support",
  2495. "hyperf/pool": "Required to use pool handler."
  2496. },
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "3.1-dev"
  2501. },
  2502. "hyperf": {
  2503. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2504. }
  2505. },
  2506. "autoload": {
  2507. "psr-4": {
  2508. "Hyperf\\Guzzle\\": "src/"
  2509. }
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "description": "Swoole coroutine handler for guzzle",
  2516. "keywords": [
  2517. "Guzzle",
  2518. "handler",
  2519. "php",
  2520. "swoole"
  2521. ],
  2522. "support": {
  2523. "issues": "https://github.com/hyperf/guzzle/issues",
  2524. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2525. },
  2526. "funding": [
  2527. {
  2528. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2529. "type": "custom"
  2530. },
  2531. {
  2532. "url": "https://opencollective.com/hyperf",
  2533. "type": "open_collective"
  2534. }
  2535. ],
  2536. "time": "2024-03-23T11:28:51+00:00"
  2537. },
  2538. {
  2539. "name": "hyperf/http-message",
  2540. "version": "v3.1.19",
  2541. "source": {
  2542. "type": "git",
  2543. "url": "https://github.com/hyperf/http-message.git",
  2544. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2545. },
  2546. "dist": {
  2547. "type": "zip",
  2548. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2549. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2550. "shasum": ""
  2551. },
  2552. "require": {
  2553. "hyperf/codec": "~3.1.0",
  2554. "hyperf/engine": "^2.11",
  2555. "hyperf/support": "~3.1.0",
  2556. "laminas/laminas-mime": "^2.7",
  2557. "php": ">=8.1",
  2558. "psr/http-message": "^1.0|^2.0",
  2559. "swow/psr7-plus": "^1.0"
  2560. },
  2561. "suggest": {
  2562. "psr/container": "Required to replace RequestParserInterface."
  2563. },
  2564. "type": "library",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "3.1-dev"
  2568. },
  2569. "hyperf": {
  2570. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2571. }
  2572. },
  2573. "autoload": {
  2574. "psr-4": {
  2575. "Hyperf\\HttpMessage\\": "src/"
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "MIT"
  2581. ],
  2582. "description": "microservice framework base on swoole",
  2583. "keywords": [
  2584. "http-message",
  2585. "hyperf",
  2586. "php",
  2587. "swoole"
  2588. ],
  2589. "support": {
  2590. "issues": "https://github.com/hyperf/http-message/issues",
  2591. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2592. },
  2593. "funding": [
  2594. {
  2595. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2596. "type": "custom"
  2597. },
  2598. {
  2599. "url": "https://opencollective.com/hyperf",
  2600. "type": "open_collective"
  2601. }
  2602. ],
  2603. "time": "2024-04-17T13:55:51+00:00"
  2604. },
  2605. {
  2606. "name": "hyperf/http-server",
  2607. "version": "v3.1.17",
  2608. "source": {
  2609. "type": "git",
  2610. "url": "https://github.com/hyperf/http-server.git",
  2611. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2612. },
  2613. "dist": {
  2614. "type": "zip",
  2615. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2616. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2617. "shasum": ""
  2618. },
  2619. "require": {
  2620. "hyperf/codec": "~3.1.0",
  2621. "hyperf/collection": "~3.1.0",
  2622. "hyperf/context": "~3.1.0",
  2623. "hyperf/contract": "~3.1.0",
  2624. "hyperf/coroutine": "~3.1.0",
  2625. "hyperf/dispatcher": "~3.1.0",
  2626. "hyperf/event": "~3.1.0",
  2627. "hyperf/exception-handler": "~3.1.0",
  2628. "hyperf/http-message": "~3.1.0",
  2629. "hyperf/macroable": "~3.1.0",
  2630. "hyperf/serializer": "~3.1.0",
  2631. "hyperf/server": "~3.1.0",
  2632. "hyperf/stdlib": "~3.1.0",
  2633. "hyperf/support": "~3.1.0",
  2634. "nikic/fast-route": "^1.3",
  2635. "php": ">=8.1",
  2636. "psr/container": "^1.0|^2.0",
  2637. "swow/psr7-plus": "^1.0"
  2638. },
  2639. "suggest": {
  2640. "hyperf/di": "Required to use annotations."
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "branch-alias": {
  2645. "dev-master": "3.1-dev"
  2646. },
  2647. "hyperf": {
  2648. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2649. }
  2650. },
  2651. "autoload": {
  2652. "psr-4": {
  2653. "Hyperf\\HttpServer\\": "src/"
  2654. }
  2655. },
  2656. "notification-url": "https://packagist.org/downloads/",
  2657. "license": [
  2658. "MIT"
  2659. ],
  2660. "description": "A HTTP Server for Hyperf.",
  2661. "homepage": "https://hyperf.io",
  2662. "keywords": [
  2663. "http",
  2664. "http-server",
  2665. "hyperf",
  2666. "php",
  2667. "swoole"
  2668. ],
  2669. "support": {
  2670. "docs": "https://hyperf.wiki",
  2671. "issues": "https://github.com/hyperf/hyperf/issues",
  2672. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2673. "source": "https://github.com/hyperf/hyperf"
  2674. },
  2675. "funding": [
  2676. {
  2677. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2678. "type": "custom"
  2679. },
  2680. {
  2681. "url": "https://opencollective.com/hyperf",
  2682. "type": "open_collective"
  2683. }
  2684. ],
  2685. "time": "2024-04-08T07:53:54+00:00"
  2686. },
  2687. {
  2688. "name": "hyperf/json-rpc",
  2689. "version": "v3.1.23",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/hyperf/json-rpc.git",
  2693. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2698. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "hyperf/codec": "~3.1.0",
  2703. "hyperf/context": "~3.1.0",
  2704. "hyperf/contract": "~3.1.0",
  2705. "hyperf/engine": "^2.0",
  2706. "hyperf/http-message": "~3.1.0",
  2707. "hyperf/load-balancer": "~3.1.0",
  2708. "hyperf/rpc": "~3.1.0",
  2709. "hyperf/serializer": "~3.1.0",
  2710. "hyperf/support": "~3.1.0",
  2711. "hyperf/utils": "~3.1.0",
  2712. "php": ">=8.1",
  2713. "psr/container": "^1.0|^2.0",
  2714. "swow/psr7-plus": "^1.0"
  2715. },
  2716. "suggest": {
  2717. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2718. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2719. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2720. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2721. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2722. },
  2723. "type": "library",
  2724. "extra": {
  2725. "branch-alias": {
  2726. "dev-master": "3.1-dev"
  2727. },
  2728. "hyperf": {
  2729. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2730. }
  2731. },
  2732. "autoload": {
  2733. "psr-4": {
  2734. "Hyperf\\JsonRpc\\": "src/"
  2735. }
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2742. "homepage": "https://hyperf.io",
  2743. "keywords": [
  2744. "hyperf",
  2745. "json-rpc",
  2746. "php",
  2747. "swoole"
  2748. ],
  2749. "support": {
  2750. "docs": "https://hyperf.wiki",
  2751. "issues": "https://github.com/hyperf/hyperf/issues",
  2752. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2753. "source": "https://github.com/hyperf/hyperf"
  2754. },
  2755. "funding": [
  2756. {
  2757. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2758. "type": "custom"
  2759. },
  2760. {
  2761. "url": "https://opencollective.com/hyperf",
  2762. "type": "open_collective"
  2763. }
  2764. ],
  2765. "time": "2024-05-23T03:43:58+00:00"
  2766. },
  2767. {
  2768. "name": "hyperf/load-balancer",
  2769. "version": "v3.1.15",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/hyperf/load-balancer.git",
  2773. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2778. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "hyperf/coordinator": "~3.1.0",
  2783. "hyperf/coroutine": "~3.1.0",
  2784. "markrogoyski/math-php": "^2.0",
  2785. "php": ">=8.1",
  2786. "psr/log": "^1.0|^2.0|^3.0"
  2787. },
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-master": "3.1-dev"
  2792. },
  2793. "hyperf": {
  2794. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2795. }
  2796. },
  2797. "autoload": {
  2798. "psr-4": {
  2799. "Hyperf\\LoadBalancer\\": "src/"
  2800. }
  2801. },
  2802. "notification-url": "https://packagist.org/downloads/",
  2803. "license": [
  2804. "MIT"
  2805. ],
  2806. "description": "A load balancer library for Hyperf.",
  2807. "homepage": "https://hyperf.io",
  2808. "keywords": [
  2809. "hyperf",
  2810. "load-balancer",
  2811. "php",
  2812. "swoole"
  2813. ],
  2814. "support": {
  2815. "docs": "https://hyperf.wiki",
  2816. "issues": "https://github.com/hyperf/hyperf/issues",
  2817. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2818. "source": "https://github.com/hyperf/hyperf"
  2819. },
  2820. "funding": [
  2821. {
  2822. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2823. "type": "custom"
  2824. },
  2825. {
  2826. "url": "https://opencollective.com/hyperf",
  2827. "type": "open_collective"
  2828. }
  2829. ],
  2830. "time": "2024-03-23T11:28:51+00:00"
  2831. },
  2832. {
  2833. "name": "hyperf/logger",
  2834. "version": "v3.1.15",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/hyperf/logger.git",
  2838. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2843. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "hyperf/contract": "~3.1.0",
  2848. "hyperf/support": "~3.1.0",
  2849. "hyperf/utils": "~3.1.0",
  2850. "monolog/monolog": "^2.7|^3.1",
  2851. "php": ">=8.1",
  2852. "psr/container": "^1.0|^2.0",
  2853. "psr/log": "^1.0|^2.0|^3.0"
  2854. },
  2855. "type": "library",
  2856. "extra": {
  2857. "branch-alias": {
  2858. "dev-master": "3.1-dev"
  2859. },
  2860. "hyperf": {
  2861. "config": "Hyperf\\Logger\\ConfigProvider"
  2862. }
  2863. },
  2864. "autoload": {
  2865. "psr-4": {
  2866. "Hyperf\\Logger\\": "src/"
  2867. }
  2868. },
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "MIT"
  2872. ],
  2873. "description": "A logger component for hyperf.",
  2874. "homepage": "https://hyperf.io",
  2875. "keywords": [
  2876. "hyperf",
  2877. "logger",
  2878. "php"
  2879. ],
  2880. "support": {
  2881. "docs": "https://hyperf.wiki",
  2882. "issues": "https://github.com/hyperf/hyperf/issues",
  2883. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2884. "source": "https://github.com/hyperf/hyperf"
  2885. },
  2886. "funding": [
  2887. {
  2888. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2889. "type": "custom"
  2890. },
  2891. {
  2892. "url": "https://opencollective.com/hyperf",
  2893. "type": "open_collective"
  2894. }
  2895. ],
  2896. "time": "2024-03-23T11:28:51+00:00"
  2897. },
  2898. {
  2899. "name": "hyperf/macroable",
  2900. "version": "v3.1.23",
  2901. "source": {
  2902. "type": "git",
  2903. "url": "https://github.com/hyperf/macroable.git",
  2904. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  2905. },
  2906. "dist": {
  2907. "type": "zip",
  2908. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2909. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2910. "shasum": ""
  2911. },
  2912. "require": {
  2913. "php": ">=8.1"
  2914. },
  2915. "type": "library",
  2916. "extra": {
  2917. "branch-alias": {
  2918. "dev-master": "3.1-dev"
  2919. }
  2920. },
  2921. "autoload": {
  2922. "psr-4": {
  2923. "Hyperf\\Macroable\\": "src/"
  2924. }
  2925. },
  2926. "notification-url": "https://packagist.org/downloads/",
  2927. "license": [
  2928. "MIT"
  2929. ],
  2930. "description": "Hyperf Macroable package which come from illuminate/macroable",
  2931. "homepage": "https://hyperf.io",
  2932. "keywords": [
  2933. "hyperf",
  2934. "macroable",
  2935. "php",
  2936. "swoole"
  2937. ],
  2938. "support": {
  2939. "docs": "https://hyperf.wiki",
  2940. "issues": "https://github.com/hyperf/hyperf/issues",
  2941. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2942. "source": "https://github.com/hyperf/hyperf"
  2943. },
  2944. "funding": [
  2945. {
  2946. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2947. "type": "custom"
  2948. },
  2949. {
  2950. "url": "https://opencollective.com/hyperf",
  2951. "type": "open_collective"
  2952. }
  2953. ],
  2954. "time": "2024-05-20T09:55:40+00:00"
  2955. },
  2956. {
  2957. "name": "hyperf/memory",
  2958. "version": "v3.1.15",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/hyperf/memory.git",
  2962. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  2967. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "php": ">=8.1"
  2972. },
  2973. "type": "library",
  2974. "extra": {
  2975. "branch-alias": {
  2976. "dev-master": "3.1-dev"
  2977. },
  2978. "hyperf": {
  2979. "config": "Hyperf\\Memory\\ConfigProvider"
  2980. }
  2981. },
  2982. "autoload": {
  2983. "psr-4": {
  2984. "Hyperf\\Memory\\": "src/"
  2985. }
  2986. },
  2987. "notification-url": "https://packagist.org/downloads/",
  2988. "license": [
  2989. "MIT"
  2990. ],
  2991. "description": "An independent component that use to operate and manage memory.",
  2992. "homepage": "https://hyperf.io",
  2993. "keywords": [
  2994. "hyperf",
  2995. "memory",
  2996. "php",
  2997. "swoole"
  2998. ],
  2999. "support": {
  3000. "docs": "https://hyperf.wiki",
  3001. "issues": "https://github.com/hyperf/hyperf/issues",
  3002. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3003. "source": "https://github.com/hyperf/hyperf"
  3004. },
  3005. "funding": [
  3006. {
  3007. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3008. "type": "custom"
  3009. },
  3010. {
  3011. "url": "https://opencollective.com/hyperf",
  3012. "type": "open_collective"
  3013. }
  3014. ],
  3015. "time": "2024-03-23T11:28:51+00:00"
  3016. },
  3017. {
  3018. "name": "hyperf/model-listener",
  3019. "version": "v3.1.15",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/hyperf/model-listener.git",
  3023. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3028. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "hyperf/contract": "~3.1.0",
  3033. "hyperf/database": "~3.1.0",
  3034. "hyperf/di": "~3.1.0",
  3035. "hyperf/event": "~3.1.0",
  3036. "hyperf/support": "~3.1.0",
  3037. "hyperf/utils": "~3.1.0",
  3038. "php": ">=8.1",
  3039. "psr/container": "^1.0|^2.0"
  3040. },
  3041. "type": "library",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-master": "3.1-dev"
  3045. },
  3046. "hyperf": {
  3047. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3048. }
  3049. },
  3050. "autoload": {
  3051. "psr-4": {
  3052. "Hyperf\\ModelListener\\": "src/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "description": "A model listener for Hyperf.",
  3060. "homepage": "https://hyperf.io",
  3061. "keywords": [
  3062. "hyperf",
  3063. "model-listener",
  3064. "php",
  3065. "swoole"
  3066. ],
  3067. "support": {
  3068. "docs": "https://hyperf.wiki",
  3069. "issues": "https://github.com/hyperf/hyperf/issues",
  3070. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3071. "source": "https://github.com/hyperf/hyperf"
  3072. },
  3073. "funding": [
  3074. {
  3075. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3076. "type": "custom"
  3077. },
  3078. {
  3079. "url": "https://opencollective.com/hyperf",
  3080. "type": "open_collective"
  3081. }
  3082. ],
  3083. "time": "2024-03-23T11:28:51+00:00"
  3084. },
  3085. {
  3086. "name": "hyperf/nacos",
  3087. "version": "v3.1.15",
  3088. "source": {
  3089. "type": "git",
  3090. "url": "https://github.com/hyperf/nacos.git",
  3091. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3092. },
  3093. "dist": {
  3094. "type": "zip",
  3095. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3096. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3097. "shasum": ""
  3098. },
  3099. "require": {
  3100. "guzzlehttp/guzzle": "^6.5|^7.0",
  3101. "hyperf/codec": "~3.1.0",
  3102. "hyperf/contract": "~3.1.0",
  3103. "hyperf/support": "~3.1.0",
  3104. "hyperf/utils": "~3.1.0",
  3105. "jetbrains/phpstorm-attributes": "^1.0",
  3106. "php": ">=8.1"
  3107. },
  3108. "type": "library",
  3109. "extra": {
  3110. "branch-alias": {
  3111. "dev-master": "3.1-dev"
  3112. },
  3113. "hyperf": {
  3114. "config": "Hyperf\\Nacos\\ConfigProvider"
  3115. }
  3116. },
  3117. "autoload": {
  3118. "psr-4": {
  3119. "Hyperf\\Nacos\\": "src/"
  3120. }
  3121. },
  3122. "notification-url": "https://packagist.org/downloads/",
  3123. "license": [
  3124. "MIT"
  3125. ],
  3126. "description": "Nacos SDK",
  3127. "keywords": [
  3128. "hyperf",
  3129. "nacos",
  3130. "php"
  3131. ],
  3132. "support": {
  3133. "issues": "https://github.com/hyperf/nacos/issues",
  3134. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3135. },
  3136. "funding": [
  3137. {
  3138. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3139. "type": "custom"
  3140. },
  3141. {
  3142. "url": "https://opencollective.com/hyperf",
  3143. "type": "open_collective"
  3144. }
  3145. ],
  3146. "time": "2024-03-23T11:28:51+00:00"
  3147. },
  3148. {
  3149. "name": "hyperf/pipeline",
  3150. "version": "v3.1.15",
  3151. "source": {
  3152. "type": "git",
  3153. "url": "https://github.com/hyperf/pipeline.git",
  3154. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3155. },
  3156. "dist": {
  3157. "type": "zip",
  3158. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3159. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3160. "shasum": ""
  3161. },
  3162. "require": {
  3163. "php": ">=8.1",
  3164. "psr/container": "^1.0|^2.0"
  3165. },
  3166. "type": "library",
  3167. "extra": {
  3168. "branch-alias": {
  3169. "dev-master": "3.1-dev"
  3170. }
  3171. },
  3172. "autoload": {
  3173. "psr-4": {
  3174. "Hyperf\\Pipeline\\": "src/"
  3175. }
  3176. },
  3177. "notification-url": "https://packagist.org/downloads/",
  3178. "license": [
  3179. "MIT"
  3180. ],
  3181. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3182. "homepage": "https://hyperf.io",
  3183. "keywords": [
  3184. "hyperf",
  3185. "php",
  3186. "pipeline",
  3187. "swoole"
  3188. ],
  3189. "support": {
  3190. "docs": "https://hyperf.wiki",
  3191. "issues": "https://github.com/hyperf/hyperf/issues",
  3192. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3193. "source": "https://github.com/hyperf/hyperf"
  3194. },
  3195. "funding": [
  3196. {
  3197. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3198. "type": "custom"
  3199. },
  3200. {
  3201. "url": "https://opencollective.com/hyperf",
  3202. "type": "open_collective"
  3203. }
  3204. ],
  3205. "time": "2024-03-23T11:28:51+00:00"
  3206. },
  3207. {
  3208. "name": "hyperf/pool",
  3209. "version": "v3.1.15",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/hyperf/pool.git",
  3213. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3218. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "hyperf/contract": "~3.1.0",
  3223. "hyperf/support": "~3.1.0",
  3224. "hyperf/utils": "~3.1.0",
  3225. "php": ">=8.1",
  3226. "psr/container": "^1.0|^2.0"
  3227. },
  3228. "suggest": {
  3229. "psr/event-dispatcher": "Required to use events."
  3230. },
  3231. "type": "library",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-master": "3.1-dev"
  3235. },
  3236. "hyperf": {
  3237. "config": "Hyperf\\Pool\\ConfigProvider"
  3238. }
  3239. },
  3240. "autoload": {
  3241. "psr-4": {
  3242. "Hyperf\\Pool\\": "src/"
  3243. }
  3244. },
  3245. "notification-url": "https://packagist.org/downloads/",
  3246. "license": [
  3247. "MIT"
  3248. ],
  3249. "description": "An independent universal connection pool component.",
  3250. "homepage": "https://hyperf.io",
  3251. "keywords": [
  3252. "connection-pool",
  3253. "hyperf",
  3254. "php",
  3255. "swoole"
  3256. ],
  3257. "support": {
  3258. "docs": "https://hyperf.wiki",
  3259. "issues": "https://github.com/hyperf/hyperf/issues",
  3260. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3261. "source": "https://github.com/hyperf/hyperf"
  3262. },
  3263. "funding": [
  3264. {
  3265. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3266. "type": "custom"
  3267. },
  3268. {
  3269. "url": "https://opencollective.com/hyperf",
  3270. "type": "open_collective"
  3271. }
  3272. ],
  3273. "time": "2024-03-23T11:28:51+00:00"
  3274. },
  3275. {
  3276. "name": "hyperf/process",
  3277. "version": "v3.1.15",
  3278. "source": {
  3279. "type": "git",
  3280. "url": "https://github.com/hyperf/process.git",
  3281. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3282. },
  3283. "dist": {
  3284. "type": "zip",
  3285. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3286. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3287. "shasum": ""
  3288. },
  3289. "require": {
  3290. "hyperf/contract": "~3.1.0",
  3291. "hyperf/support": "~3.1.0",
  3292. "hyperf/utils": "~3.1.0",
  3293. "php": ">=8.1",
  3294. "psr/container": "^1.0|^2.0",
  3295. "psr/event-dispatcher": "^1.0"
  3296. },
  3297. "suggest": {
  3298. "hyperf/di": "Required to use annotations.",
  3299. "hyperf/event": "Required to dump the message before and after process.",
  3300. "hyperf/framework": "Required to use BootProcessListener."
  3301. },
  3302. "type": "library",
  3303. "extra": {
  3304. "branch-alias": {
  3305. "dev-master": "3.1-dev"
  3306. },
  3307. "hyperf": {
  3308. "config": "Hyperf\\Process\\ConfigProvider"
  3309. }
  3310. },
  3311. "autoload": {
  3312. "psr-4": {
  3313. "Hyperf\\Process\\": "src/"
  3314. }
  3315. },
  3316. "notification-url": "https://packagist.org/downloads/",
  3317. "license": [
  3318. "MIT"
  3319. ],
  3320. "description": "A process component for hyperf.",
  3321. "homepage": "https://hyperf.io",
  3322. "keywords": [
  3323. "hyperf",
  3324. "php",
  3325. "process"
  3326. ],
  3327. "support": {
  3328. "docs": "https://hyperf.wiki",
  3329. "issues": "https://github.com/hyperf/hyperf/issues",
  3330. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3331. "source": "https://github.com/hyperf/hyperf"
  3332. },
  3333. "funding": [
  3334. {
  3335. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3336. "type": "custom"
  3337. },
  3338. {
  3339. "url": "https://opencollective.com/hyperf",
  3340. "type": "open_collective"
  3341. }
  3342. ],
  3343. "time": "2024-03-23T11:28:51+00:00"
  3344. },
  3345. {
  3346. "name": "hyperf/redis",
  3347. "version": "v3.1.18",
  3348. "source": {
  3349. "type": "git",
  3350. "url": "https://github.com/hyperf/redis.git",
  3351. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3352. },
  3353. "dist": {
  3354. "type": "zip",
  3355. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3356. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3357. "shasum": ""
  3358. },
  3359. "require": {
  3360. "ext-redis": "^5.0|^6.0",
  3361. "hyperf/contract": "~3.1.0",
  3362. "hyperf/pool": "~3.1.0",
  3363. "hyperf/support": "~3.1.0",
  3364. "hyperf/tappable": "~3.1.0",
  3365. "hyperf/utils": "~3.1.0",
  3366. "php": ">=8.1",
  3367. "psr/container": "^1.0|^2.0"
  3368. },
  3369. "suggest": {
  3370. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3371. "hyperf/di": "Create the RedisPool via dependency injection."
  3372. },
  3373. "type": "library",
  3374. "extra": {
  3375. "branch-alias": {
  3376. "dev-master": "3.1-dev"
  3377. },
  3378. "hyperf": {
  3379. "config": "Hyperf\\Redis\\ConfigProvider"
  3380. }
  3381. },
  3382. "autoload": {
  3383. "psr-4": {
  3384. "Hyperf\\Redis\\": "src/"
  3385. }
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "MIT"
  3390. ],
  3391. "description": "A redis component for hyperf.",
  3392. "homepage": "https://hyperf.io",
  3393. "keywords": [
  3394. "hyperf",
  3395. "php",
  3396. "pool",
  3397. "redis"
  3398. ],
  3399. "support": {
  3400. "docs": "https://hyperf.wiki",
  3401. "issues": "https://github.com/hyperf/hyperf/issues",
  3402. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3403. "source": "https://github.com/hyperf/hyperf"
  3404. },
  3405. "funding": [
  3406. {
  3407. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3408. "type": "custom"
  3409. },
  3410. {
  3411. "url": "https://opencollective.com/hyperf",
  3412. "type": "open_collective"
  3413. }
  3414. ],
  3415. "time": "2024-04-11T10:18:35+00:00"
  3416. },
  3417. {
  3418. "name": "hyperf/rpc",
  3419. "version": "v3.1.15",
  3420. "source": {
  3421. "type": "git",
  3422. "url": "https://github.com/hyperf/rpc.git",
  3423. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3424. },
  3425. "dist": {
  3426. "type": "zip",
  3427. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3428. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3429. "shasum": ""
  3430. },
  3431. "require": {
  3432. "hyperf/codec": "~3.1.0",
  3433. "hyperf/contract": "~3.1.0",
  3434. "hyperf/support": "~3.1.0",
  3435. "jetbrains/phpstorm-attributes": "^1.0",
  3436. "php": ">=8.1"
  3437. },
  3438. "type": "library",
  3439. "extra": {
  3440. "branch-alias": {
  3441. "dev-master": "3.1-dev"
  3442. },
  3443. "hyperf": []
  3444. },
  3445. "autoload": {
  3446. "psr-4": {
  3447. "Hyperf\\Rpc\\": "src/"
  3448. }
  3449. },
  3450. "notification-url": "https://packagist.org/downloads/",
  3451. "license": [
  3452. "MIT"
  3453. ],
  3454. "description": "A rpc basic library for Hyperf.",
  3455. "homepage": "https://hyperf.io",
  3456. "keywords": [
  3457. "hyperf",
  3458. "php",
  3459. "rpc",
  3460. "swoole"
  3461. ],
  3462. "support": {
  3463. "docs": "https://hyperf.wiki",
  3464. "issues": "https://github.com/hyperf/hyperf/issues",
  3465. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3466. "source": "https://github.com/hyperf/hyperf"
  3467. },
  3468. "funding": [
  3469. {
  3470. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3471. "type": "custom"
  3472. },
  3473. {
  3474. "url": "https://opencollective.com/hyperf",
  3475. "type": "open_collective"
  3476. }
  3477. ],
  3478. "time": "2024-03-23T11:28:51+00:00"
  3479. },
  3480. {
  3481. "name": "hyperf/rpc-server",
  3482. "version": "v3.1.20",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/hyperf/rpc-server.git",
  3486. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3491. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3492. "shasum": ""
  3493. },
  3494. "require": {
  3495. "hyperf/http-server": "~3.1.0",
  3496. "hyperf/rpc": "~3.1.0",
  3497. "php": ">=8.1"
  3498. },
  3499. "suggest": {
  3500. "hyperf/di": "Required to use annotations."
  3501. },
  3502. "type": "library",
  3503. "extra": {
  3504. "branch-alias": {
  3505. "dev-master": "3.1-dev"
  3506. },
  3507. "hyperf": {
  3508. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3509. }
  3510. },
  3511. "autoload": {
  3512. "psr-4": {
  3513. "Hyperf\\RpcServer\\": "src/"
  3514. }
  3515. },
  3516. "notification-url": "https://packagist.org/downloads/",
  3517. "license": [
  3518. "MIT"
  3519. ],
  3520. "description": "An abstract rpc server component for Hyperf.",
  3521. "homepage": "https://hyperf.io",
  3522. "keywords": [
  3523. "hyperf",
  3524. "php",
  3525. "rpc",
  3526. "rpc-server",
  3527. "swoole"
  3528. ],
  3529. "support": {
  3530. "docs": "https://hyperf.wiki",
  3531. "issues": "https://github.com/hyperf/hyperf/issues",
  3532. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3533. "source": "https://github.com/hyperf/hyperf"
  3534. },
  3535. "funding": [
  3536. {
  3537. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3538. "type": "custom"
  3539. },
  3540. {
  3541. "url": "https://opencollective.com/hyperf",
  3542. "type": "open_collective"
  3543. }
  3544. ],
  3545. "time": "2024-04-22T01:46:29+00:00"
  3546. },
  3547. {
  3548. "name": "hyperf/serializer",
  3549. "version": "v3.1.23",
  3550. "source": {
  3551. "type": "git",
  3552. "url": "https://github.com/hyperf/serializer.git",
  3553. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3554. },
  3555. "dist": {
  3556. "type": "zip",
  3557. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3558. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3559. "shasum": ""
  3560. },
  3561. "require": {
  3562. "hyperf/contract": "~3.1.0",
  3563. "php": ">=8.1"
  3564. },
  3565. "suggest": {
  3566. "hyperf/di": "Required to use ExceptionNormalizer",
  3567. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3568. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3569. },
  3570. "type": "library",
  3571. "extra": {
  3572. "branch-alias": {
  3573. "dev-master": "3.1-dev"
  3574. },
  3575. "hyperf": {
  3576. "config": "Hyperf\\Serializer\\ConfigProvider"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "psr-4": {
  3581. "Hyperf\\Serializer\\": "src/"
  3582. }
  3583. },
  3584. "notification-url": "https://packagist.org/downloads/",
  3585. "license": [
  3586. "MIT"
  3587. ],
  3588. "description": "A serializer component for Hyperf.",
  3589. "homepage": "https://hyperf.io",
  3590. "keywords": [
  3591. "hyperf",
  3592. "php",
  3593. "swoole",
  3594. "tappable"
  3595. ],
  3596. "support": {
  3597. "docs": "https://hyperf.wiki",
  3598. "issues": "https://github.com/hyperf/hyperf/issues",
  3599. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3600. "source": "https://github.com/hyperf/hyperf"
  3601. },
  3602. "funding": [
  3603. {
  3604. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3605. "type": "custom"
  3606. },
  3607. {
  3608. "url": "https://opencollective.com/hyperf",
  3609. "type": "open_collective"
  3610. }
  3611. ],
  3612. "time": "2024-05-23T03:43:58+00:00"
  3613. },
  3614. {
  3615. "name": "hyperf/server",
  3616. "version": "v3.1.23",
  3617. "source": {
  3618. "type": "git",
  3619. "url": "https://github.com/hyperf/server.git",
  3620. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3621. },
  3622. "dist": {
  3623. "type": "zip",
  3624. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3625. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3626. "shasum": ""
  3627. },
  3628. "require": {
  3629. "hyperf/contract": "~3.1.0",
  3630. "hyperf/coordinator": "~3.1.0",
  3631. "hyperf/engine": "^2.8",
  3632. "hyperf/support": "~3.1.0",
  3633. "hyperf/tappable": "~3.1.0",
  3634. "php": ">=8.1",
  3635. "psr/container": "^1.0|^2.0",
  3636. "psr/event-dispatcher": "^1.0",
  3637. "psr/log": "^1.0|^2.0|^3.0",
  3638. "symfony/console": "^5.0|^6.0|^7.0"
  3639. },
  3640. "suggest": {
  3641. "hyperf/event": "Dump the info after server start.",
  3642. "hyperf/framework": "Dump the info after server start."
  3643. },
  3644. "type": "library",
  3645. "extra": {
  3646. "branch-alias": {
  3647. "dev-master": "3.1-dev"
  3648. },
  3649. "hyperf": {
  3650. "config": "Hyperf\\Server\\ConfigProvider"
  3651. }
  3652. },
  3653. "autoload": {
  3654. "psr-4": {
  3655. "Hyperf\\Server\\": "src/"
  3656. }
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "description": "A base server library for Hyperf.",
  3663. "homepage": "https://hyperf.io",
  3664. "keywords": [
  3665. "hyperf",
  3666. "php",
  3667. "server",
  3668. "swoole"
  3669. ],
  3670. "support": {
  3671. "docs": "https://hyperf.wiki",
  3672. "issues": "https://github.com/hyperf/hyperf/issues",
  3673. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3674. "source": "https://github.com/hyperf/hyperf"
  3675. },
  3676. "funding": [
  3677. {
  3678. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3679. "type": "custom"
  3680. },
  3681. {
  3682. "url": "https://opencollective.com/hyperf",
  3683. "type": "open_collective"
  3684. }
  3685. ],
  3686. "time": "2024-05-23T03:43:58+00:00"
  3687. },
  3688. {
  3689. "name": "hyperf/service-governance",
  3690. "version": "v3.1.15",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/hyperf/service-governance.git",
  3694. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3699. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "hyperf/contract": "~3.1.0",
  3704. "hyperf/support": "~3.1.0",
  3705. "jetbrains/phpstorm-attributes": "^1.0",
  3706. "php": ">=8.1"
  3707. },
  3708. "suggest": {
  3709. "hyperf/event": "Required to use RegisterServiceListener.",
  3710. "hyperf/framework": "Required to use RegisterServiceListener.",
  3711. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3712. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3713. },
  3714. "type": "library",
  3715. "extra": {
  3716. "branch-alias": {
  3717. "dev-master": "3.1-dev"
  3718. },
  3719. "hyperf": {
  3720. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3721. }
  3722. },
  3723. "autoload": {
  3724. "psr-4": {
  3725. "Hyperf\\ServiceGovernance\\": "src/"
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "description": "A service governance component for Hyperf.",
  3733. "homepage": "https://hyperf.io",
  3734. "keywords": [
  3735. "hyperf",
  3736. "php",
  3737. "service-governance",
  3738. "swoole"
  3739. ],
  3740. "support": {
  3741. "docs": "https://hyperf.wiki",
  3742. "issues": "https://github.com/hyperf/hyperf/issues",
  3743. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3744. "source": "https://github.com/hyperf/hyperf"
  3745. },
  3746. "funding": [
  3747. {
  3748. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3749. "type": "custom"
  3750. },
  3751. {
  3752. "url": "https://opencollective.com/hyperf",
  3753. "type": "open_collective"
  3754. }
  3755. ],
  3756. "time": "2024-03-23T11:28:51+00:00"
  3757. },
  3758. {
  3759. "name": "hyperf/service-governance-consul",
  3760. "version": "v3.1.15",
  3761. "source": {
  3762. "type": "git",
  3763. "url": "https://github.com/hyperf/service-governance-consul.git",
  3764. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3765. },
  3766. "dist": {
  3767. "type": "zip",
  3768. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3769. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3770. "shasum": ""
  3771. },
  3772. "require": {
  3773. "hyperf/consul": "~3.1.0",
  3774. "hyperf/contract": "~3.1.0",
  3775. "hyperf/service-governance": "~3.1.0",
  3776. "hyperf/support": "~3.1.0",
  3777. "hyperf/utils": "~3.1.0",
  3778. "php": ">=8.1"
  3779. },
  3780. "type": "library",
  3781. "extra": {
  3782. "branch-alias": {
  3783. "dev-master": "3.1-dev"
  3784. },
  3785. "hyperf": {
  3786. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3787. }
  3788. },
  3789. "autoload": {
  3790. "psr-4": {
  3791. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3792. }
  3793. },
  3794. "notification-url": "https://packagist.org/downloads/",
  3795. "license": [
  3796. "MIT"
  3797. ],
  3798. "description": "A consul adapter for service governance.",
  3799. "homepage": "https://hyperf.io",
  3800. "keywords": [
  3801. "consul-adapter",
  3802. "hyperf",
  3803. "php",
  3804. "service-governance",
  3805. "swoole"
  3806. ],
  3807. "support": {
  3808. "docs": "https://hyperf.wiki",
  3809. "issues": "https://github.com/hyperf/hyperf/issues",
  3810. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3811. "source": "https://github.com/hyperf/hyperf"
  3812. },
  3813. "funding": [
  3814. {
  3815. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3816. "type": "custom"
  3817. },
  3818. {
  3819. "url": "https://opencollective.com/hyperf",
  3820. "type": "open_collective"
  3821. }
  3822. ],
  3823. "time": "2024-03-23T11:28:51+00:00"
  3824. },
  3825. {
  3826. "name": "hyperf/service-governance-nacos",
  3827. "version": "v3.1.15",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3831. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3836. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "hyperf/codec": "~3.1.0",
  3841. "hyperf/contract": "~3.1.0",
  3842. "hyperf/nacos": "~3.1.0",
  3843. "hyperf/service-governance": "~3.1.0",
  3844. "hyperf/support": "~3.1.0",
  3845. "hyperf/utils": "~3.1.0",
  3846. "php": ">=8.1"
  3847. },
  3848. "type": "library",
  3849. "extra": {
  3850. "branch-alias": {
  3851. "dev-master": "3.1-dev"
  3852. },
  3853. "hyperf": {
  3854. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3855. }
  3856. },
  3857. "autoload": {
  3858. "psr-4": {
  3859. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3860. }
  3861. },
  3862. "notification-url": "https://packagist.org/downloads/",
  3863. "license": [
  3864. "MIT"
  3865. ],
  3866. "description": "A nacos adapter for service governance.",
  3867. "homepage": "https://hyperf.io",
  3868. "keywords": [
  3869. "hyperf",
  3870. "nacos-adapter",
  3871. "php",
  3872. "service-governance",
  3873. "swoole"
  3874. ],
  3875. "support": {
  3876. "docs": "https://hyperf.wiki",
  3877. "issues": "https://github.com/hyperf/hyperf/issues",
  3878. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3879. "source": "https://github.com/hyperf/hyperf"
  3880. },
  3881. "funding": [
  3882. {
  3883. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3884. "type": "custom"
  3885. },
  3886. {
  3887. "url": "https://opencollective.com/hyperf",
  3888. "type": "open_collective"
  3889. }
  3890. ],
  3891. "time": "2024-03-23T11:28:51+00:00"
  3892. },
  3893. {
  3894. "name": "hyperf/stdlib",
  3895. "version": "v3.1.15",
  3896. "source": {
  3897. "type": "git",
  3898. "url": "https://github.com/hyperf/stdlib.git",
  3899. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  3900. },
  3901. "dist": {
  3902. "type": "zip",
  3903. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  3904. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  3905. "shasum": ""
  3906. },
  3907. "require": {
  3908. "php": ">=8.1"
  3909. },
  3910. "type": "library",
  3911. "extra": {
  3912. "branch-alias": {
  3913. "dev-master": "3.1-dev"
  3914. }
  3915. },
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Hyperf\\Stdlib\\": "src/"
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "MIT"
  3924. ],
  3925. "description": "A stdlib component for Hyperf.",
  3926. "homepage": "https://hyperf.io",
  3927. "keywords": [
  3928. "hyperf",
  3929. "php",
  3930. "stdlib",
  3931. "swoole"
  3932. ],
  3933. "support": {
  3934. "docs": "https://hyperf.wiki",
  3935. "issues": "https://github.com/hyperf/hyperf/issues",
  3936. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3937. "source": "https://github.com/hyperf/hyperf"
  3938. },
  3939. "funding": [
  3940. {
  3941. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3942. "type": "custom"
  3943. },
  3944. {
  3945. "url": "https://opencollective.com/hyperf",
  3946. "type": "open_collective"
  3947. }
  3948. ],
  3949. "time": "2024-03-23T11:28:51+00:00"
  3950. },
  3951. {
  3952. "name": "hyperf/stringable",
  3953. "version": "v3.1.24",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/hyperf/stringable.git",
  3957. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  3962. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  3963. "shasum": ""
  3964. },
  3965. "require": {
  3966. "ext-mbstring": "*",
  3967. "hyperf/collection": "~3.1.0",
  3968. "hyperf/conditionable": "~3.1.0",
  3969. "hyperf/macroable": "~3.1.0",
  3970. "hyperf/tappable": "~3.1.0",
  3971. "php": ">=8.1"
  3972. },
  3973. "suggest": {
  3974. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  3975. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  3976. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  3977. },
  3978. "type": "library",
  3979. "extra": {
  3980. "branch-alias": {
  3981. "dev-master": "3.1-dev"
  3982. }
  3983. },
  3984. "autoload": {
  3985. "files": [
  3986. "src/Functions.php"
  3987. ],
  3988. "psr-4": {
  3989. "Hyperf\\Stringable\\": "src/"
  3990. }
  3991. },
  3992. "notification-url": "https://packagist.org/downloads/",
  3993. "license": [
  3994. "MIT"
  3995. ],
  3996. "description": "Hyperf Stringable package which come from illuminate/support",
  3997. "homepage": "https://hyperf.io",
  3998. "keywords": [
  3999. "hyperf",
  4000. "php",
  4001. "stringable",
  4002. "swoole"
  4003. ],
  4004. "support": {
  4005. "docs": "https://hyperf.wiki",
  4006. "issues": "https://github.com/hyperf/hyperf/issues",
  4007. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4008. "source": "https://github.com/hyperf/hyperf"
  4009. },
  4010. "funding": [
  4011. {
  4012. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4013. "type": "custom"
  4014. },
  4015. {
  4016. "url": "https://opencollective.com/hyperf",
  4017. "type": "open_collective"
  4018. }
  4019. ],
  4020. "time": "2024-05-27T03:20:24+00:00"
  4021. },
  4022. {
  4023. "name": "hyperf/support",
  4024. "version": "v3.1.15",
  4025. "source": {
  4026. "type": "git",
  4027. "url": "https://github.com/hyperf/support.git",
  4028. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4029. },
  4030. "dist": {
  4031. "type": "zip",
  4032. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4033. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4034. "shasum": ""
  4035. },
  4036. "require": {
  4037. "hyperf/collection": "~3.1.0",
  4038. "hyperf/context": "~3.1.0",
  4039. "hyperf/contract": "~3.1.0",
  4040. "hyperf/coroutine": "~3.1.0",
  4041. "hyperf/macroable": "~3.1.0",
  4042. "hyperf/stringable": "~3.1.0",
  4043. "php": ">=8.1"
  4044. },
  4045. "suggest": {
  4046. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4047. },
  4048. "type": "library",
  4049. "extra": {
  4050. "branch-alias": {
  4051. "dev-master": "3.1-dev"
  4052. }
  4053. },
  4054. "autoload": {
  4055. "files": [
  4056. "src/Functions.php"
  4057. ],
  4058. "psr-4": {
  4059. "Hyperf\\Support\\": "src/"
  4060. }
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "license": [
  4064. "MIT"
  4065. ],
  4066. "description": "A support component for Hyperf.",
  4067. "homepage": "https://hyperf.io",
  4068. "keywords": [
  4069. "hyperf",
  4070. "php",
  4071. "support",
  4072. "swoole"
  4073. ],
  4074. "support": {
  4075. "docs": "https://hyperf.wiki",
  4076. "issues": "https://github.com/hyperf/hyperf/issues",
  4077. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4078. "source": "https://github.com/hyperf/hyperf"
  4079. },
  4080. "funding": [
  4081. {
  4082. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4083. "type": "custom"
  4084. },
  4085. {
  4086. "url": "https://opencollective.com/hyperf",
  4087. "type": "open_collective"
  4088. }
  4089. ],
  4090. "time": "2024-03-23T11:28:51+00:00"
  4091. },
  4092. {
  4093. "name": "hyperf/tappable",
  4094. "version": "v3.1.15",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://github.com/hyperf/tappable.git",
  4098. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4103. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4104. "shasum": ""
  4105. },
  4106. "require": {
  4107. "php": ">=8.1"
  4108. },
  4109. "type": "library",
  4110. "extra": {
  4111. "branch-alias": {
  4112. "dev-master": "3.1-dev"
  4113. }
  4114. },
  4115. "autoload": {
  4116. "files": [
  4117. "src/Functions.php"
  4118. ],
  4119. "psr-4": {
  4120. "Hyperf\\Tappable\\": "src/"
  4121. }
  4122. },
  4123. "notification-url": "https://packagist.org/downloads/",
  4124. "license": [
  4125. "MIT"
  4126. ],
  4127. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4128. "homepage": "https://hyperf.io",
  4129. "keywords": [
  4130. "hyperf",
  4131. "php",
  4132. "swoole",
  4133. "tappable"
  4134. ],
  4135. "support": {
  4136. "docs": "https://hyperf.wiki",
  4137. "issues": "https://github.com/hyperf/hyperf/issues",
  4138. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4139. "source": "https://github.com/hyperf/hyperf"
  4140. },
  4141. "funding": [
  4142. {
  4143. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4144. "type": "custom"
  4145. },
  4146. {
  4147. "url": "https://opencollective.com/hyperf",
  4148. "type": "open_collective"
  4149. }
  4150. ],
  4151. "time": "2024-03-23T11:28:51+00:00"
  4152. },
  4153. {
  4154. "name": "hyperf/utils",
  4155. "version": "v3.1.0",
  4156. "source": {
  4157. "type": "git",
  4158. "url": "https://github.com/hyperf/utils.git",
  4159. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4160. },
  4161. "dist": {
  4162. "type": "zip",
  4163. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4164. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4165. "shasum": ""
  4166. },
  4167. "require": {
  4168. "doctrine/inflector": "^2.0",
  4169. "hyperf/code-parser": "~3.1.0",
  4170. "hyperf/codec": "~3.1.0",
  4171. "hyperf/collection": "~3.1.0",
  4172. "hyperf/context": "~3.1.0",
  4173. "hyperf/contract": "~3.1.0",
  4174. "hyperf/coordinator": "~3.1.0",
  4175. "hyperf/coroutine": "~3.1.0",
  4176. "hyperf/engine": "^2.0",
  4177. "hyperf/macroable": "~3.1.0",
  4178. "hyperf/serializer": "~3.1.0",
  4179. "hyperf/stringable": "~3.1.0",
  4180. "hyperf/support": "~3.1.0",
  4181. "php": ">=8.1"
  4182. },
  4183. "type": "library",
  4184. "extra": {
  4185. "branch-alias": {
  4186. "dev-master": "3.1-dev"
  4187. }
  4188. },
  4189. "notification-url": "https://packagist.org/downloads/",
  4190. "license": [
  4191. "MIT"
  4192. ],
  4193. "description": "A tools package that could help developer solved the problem quickly.",
  4194. "homepage": "https://hyperf.io",
  4195. "keywords": [
  4196. "hyperf",
  4197. "php",
  4198. "swoole",
  4199. "utils"
  4200. ],
  4201. "support": {
  4202. "docs": "https://hyperf.wiki",
  4203. "issues": "https://github.com/hyperf/hyperf/issues",
  4204. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4205. "source": "https://github.com/hyperf/hyperf"
  4206. },
  4207. "funding": [
  4208. {
  4209. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4210. "type": "custom"
  4211. },
  4212. {
  4213. "url": "https://opencollective.com/hyperf",
  4214. "type": "open_collective"
  4215. }
  4216. ],
  4217. "time": "2023-11-24T03:10:53+00:00"
  4218. },
  4219. {
  4220. "name": "jetbrains/phpstorm-attributes",
  4221. "version": "1.1",
  4222. "source": {
  4223. "type": "git",
  4224. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4225. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4226. },
  4227. "dist": {
  4228. "type": "zip",
  4229. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4230. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4231. "shasum": ""
  4232. },
  4233. "type": "library",
  4234. "autoload": {
  4235. "psr-4": {
  4236. "JetBrains\\PhpStorm\\": "src/"
  4237. }
  4238. },
  4239. "notification-url": "https://packagist.org/downloads/",
  4240. "license": [
  4241. "Apache-2.0"
  4242. ],
  4243. "authors": [
  4244. {
  4245. "name": "JetBrains",
  4246. "homepage": "https://www.jetbrains.com"
  4247. }
  4248. ],
  4249. "description": "PhpStorm specific attributes",
  4250. "keywords": [
  4251. "attributes",
  4252. "jetbrains",
  4253. "phpstorm"
  4254. ],
  4255. "support": {
  4256. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4257. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4258. },
  4259. "time": "2023-09-01T08:50:25+00:00"
  4260. },
  4261. {
  4262. "name": "laminas/laminas-mime",
  4263. "version": "2.12.0",
  4264. "source": {
  4265. "type": "git",
  4266. "url": "https://github.com/laminas/laminas-mime.git",
  4267. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4268. },
  4269. "dist": {
  4270. "type": "zip",
  4271. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4272. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4273. "shasum": ""
  4274. },
  4275. "require": {
  4276. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4277. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4278. },
  4279. "conflict": {
  4280. "zendframework/zend-mime": "*"
  4281. },
  4282. "require-dev": {
  4283. "laminas/laminas-coding-standard": "~2.4.0",
  4284. "laminas/laminas-mail": "^2.19.0",
  4285. "phpunit/phpunit": "~9.5.25"
  4286. },
  4287. "suggest": {
  4288. "laminas/laminas-mail": "Laminas\\Mail component"
  4289. },
  4290. "type": "library",
  4291. "autoload": {
  4292. "psr-4": {
  4293. "Laminas\\Mime\\": "src/"
  4294. }
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "BSD-3-Clause"
  4299. ],
  4300. "description": "Create and parse MIME messages and parts",
  4301. "homepage": "https://laminas.dev",
  4302. "keywords": [
  4303. "laminas",
  4304. "mime"
  4305. ],
  4306. "support": {
  4307. "chat": "https://laminas.dev/chat",
  4308. "docs": "https://docs.laminas.dev/laminas-mime/",
  4309. "forum": "https://discourse.laminas.dev",
  4310. "issues": "https://github.com/laminas/laminas-mime/issues",
  4311. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4312. "source": "https://github.com/laminas/laminas-mime"
  4313. },
  4314. "funding": [
  4315. {
  4316. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4317. "type": "community_bridge"
  4318. }
  4319. ],
  4320. "time": "2023-11-02T16:47:19+00:00"
  4321. },
  4322. {
  4323. "name": "laminas/laminas-stdlib",
  4324. "version": "3.19.0",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/laminas/laminas-stdlib.git",
  4328. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4333. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4334. "shasum": ""
  4335. },
  4336. "require": {
  4337. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4338. },
  4339. "conflict": {
  4340. "zendframework/zend-stdlib": "*"
  4341. },
  4342. "require-dev": {
  4343. "laminas/laminas-coding-standard": "^2.5",
  4344. "phpbench/phpbench": "^1.2.15",
  4345. "phpunit/phpunit": "^10.5.8",
  4346. "psalm/plugin-phpunit": "^0.18.4",
  4347. "vimeo/psalm": "^5.20.0"
  4348. },
  4349. "type": "library",
  4350. "autoload": {
  4351. "psr-4": {
  4352. "Laminas\\Stdlib\\": "src/"
  4353. }
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "BSD-3-Clause"
  4358. ],
  4359. "description": "SPL extensions, array utilities, error handlers, and more",
  4360. "homepage": "https://laminas.dev",
  4361. "keywords": [
  4362. "laminas",
  4363. "stdlib"
  4364. ],
  4365. "support": {
  4366. "chat": "https://laminas.dev/chat",
  4367. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4368. "forum": "https://discourse.laminas.dev",
  4369. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4370. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4371. "source": "https://github.com/laminas/laminas-stdlib"
  4372. },
  4373. "funding": [
  4374. {
  4375. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4376. "type": "community_bridge"
  4377. }
  4378. ],
  4379. "time": "2024-01-19T12:39:49+00:00"
  4380. },
  4381. {
  4382. "name": "markrogoyski/math-php",
  4383. "version": "v2.10.0",
  4384. "source": {
  4385. "type": "git",
  4386. "url": "https://github.com/markrogoyski/math-php.git",
  4387. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4388. },
  4389. "dist": {
  4390. "type": "zip",
  4391. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4392. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4393. "shasum": ""
  4394. },
  4395. "require": {
  4396. "ext-json": "*",
  4397. "php": ">=7.2.0"
  4398. },
  4399. "require-dev": {
  4400. "php-coveralls/php-coveralls": "^2.0",
  4401. "php-parallel-lint/php-parallel-lint": "^1.2",
  4402. "phploc/phploc": "*",
  4403. "phpmd/phpmd": "^2.6",
  4404. "phpstan/phpstan": "^1.10",
  4405. "phpunit/phpunit": "^8.5",
  4406. "squizlabs/php_codesniffer": "3.*"
  4407. },
  4408. "type": "library",
  4409. "autoload": {
  4410. "psr-4": {
  4411. "MathPHP\\": "src/"
  4412. }
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Mark Rogoyski",
  4421. "email": "mark@rogoyski.com",
  4422. "homepage": "https://github.com/markrogoyski",
  4423. "role": "Lead developer"
  4424. },
  4425. {
  4426. "name": "Kevin Nowaczyk",
  4427. "homepage": "https://github.com/Beakerboy",
  4428. "role": "Developer"
  4429. },
  4430. {
  4431. "name": "MathPHP Community of Contributors",
  4432. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4433. }
  4434. ],
  4435. "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",
  4436. "homepage": "https://github.com/markrogoyski/math-php/",
  4437. "keywords": [
  4438. "algebra",
  4439. "combinatorics",
  4440. "distributions",
  4441. "linear algebra",
  4442. "math",
  4443. "mathematics",
  4444. "matrix",
  4445. "numerical analysis",
  4446. "probability",
  4447. "regressions",
  4448. "statistics"
  4449. ],
  4450. "support": {
  4451. "issues": "https://github.com/markrogoyski/math-php/issues",
  4452. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4453. },
  4454. "time": "2024-04-17T00:09:51+00:00"
  4455. },
  4456. {
  4457. "name": "monolog/monolog",
  4458. "version": "3.6.0",
  4459. "source": {
  4460. "type": "git",
  4461. "url": "https://github.com/Seldaek/monolog.git",
  4462. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4463. },
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4467. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4468. "shasum": ""
  4469. },
  4470. "require": {
  4471. "php": ">=8.1",
  4472. "psr/log": "^2.0 || ^3.0"
  4473. },
  4474. "provide": {
  4475. "psr/log-implementation": "3.0.0"
  4476. },
  4477. "require-dev": {
  4478. "aws/aws-sdk-php": "^3.0",
  4479. "doctrine/couchdb": "~1.0@dev",
  4480. "elasticsearch/elasticsearch": "^7 || ^8",
  4481. "ext-json": "*",
  4482. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4483. "guzzlehttp/guzzle": "^7.4.5",
  4484. "guzzlehttp/psr7": "^2.2",
  4485. "mongodb/mongodb": "^1.8",
  4486. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4487. "phpstan/phpstan": "^1.9",
  4488. "phpstan/phpstan-deprecation-rules": "^1.0",
  4489. "phpstan/phpstan-strict-rules": "^1.4",
  4490. "phpunit/phpunit": "^10.5.17",
  4491. "predis/predis": "^1.1 || ^2",
  4492. "ruflin/elastica": "^7",
  4493. "symfony/mailer": "^5.4 || ^6",
  4494. "symfony/mime": "^5.4 || ^6"
  4495. },
  4496. "suggest": {
  4497. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4498. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4499. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4500. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4501. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4502. "ext-mbstring": "Allow to work properly with unicode symbols",
  4503. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4504. "ext-openssl": "Required to send log messages using SSL",
  4505. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4506. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4507. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4508. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4509. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4510. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4511. },
  4512. "type": "library",
  4513. "extra": {
  4514. "branch-alias": {
  4515. "dev-main": "3.x-dev"
  4516. }
  4517. },
  4518. "autoload": {
  4519. "psr-4": {
  4520. "Monolog\\": "src/Monolog"
  4521. }
  4522. },
  4523. "notification-url": "https://packagist.org/downloads/",
  4524. "license": [
  4525. "MIT"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "Jordi Boggiano",
  4530. "email": "j.boggiano@seld.be",
  4531. "homepage": "https://seld.be"
  4532. }
  4533. ],
  4534. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4535. "homepage": "https://github.com/Seldaek/monolog",
  4536. "keywords": [
  4537. "log",
  4538. "logging",
  4539. "psr-3"
  4540. ],
  4541. "support": {
  4542. "issues": "https://github.com/Seldaek/monolog/issues",
  4543. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4544. },
  4545. "funding": [
  4546. {
  4547. "url": "https://github.com/Seldaek",
  4548. "type": "github"
  4549. },
  4550. {
  4551. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4552. "type": "tidelift"
  4553. }
  4554. ],
  4555. "time": "2024-04-12T21:02:21+00:00"
  4556. },
  4557. {
  4558. "name": "nesbot/carbon",
  4559. "version": "2.72.5",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/briannesbitt/Carbon.git",
  4563. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4568. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4569. "shasum": ""
  4570. },
  4571. "require": {
  4572. "carbonphp/carbon-doctrine-types": "*",
  4573. "ext-json": "*",
  4574. "php": "^7.1.8 || ^8.0",
  4575. "psr/clock": "^1.0",
  4576. "symfony/polyfill-mbstring": "^1.0",
  4577. "symfony/polyfill-php80": "^1.16",
  4578. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4579. },
  4580. "provide": {
  4581. "psr/clock-implementation": "1.0"
  4582. },
  4583. "require-dev": {
  4584. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4585. "doctrine/orm": "^2.7 || ^3.0",
  4586. "friendsofphp/php-cs-fixer": "^3.0",
  4587. "kylekatarnls/multi-tester": "^2.0",
  4588. "ondrejmirtes/better-reflection": "*",
  4589. "phpmd/phpmd": "^2.9",
  4590. "phpstan/extension-installer": "^1.0",
  4591. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4592. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4593. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4594. "squizlabs/php_codesniffer": "^3.4"
  4595. },
  4596. "bin": [
  4597. "bin/carbon"
  4598. ],
  4599. "type": "library",
  4600. "extra": {
  4601. "branch-alias": {
  4602. "dev-master": "3.x-dev",
  4603. "dev-2.x": "2.x-dev"
  4604. },
  4605. "laravel": {
  4606. "providers": [
  4607. "Carbon\\Laravel\\ServiceProvider"
  4608. ]
  4609. },
  4610. "phpstan": {
  4611. "includes": [
  4612. "extension.neon"
  4613. ]
  4614. }
  4615. },
  4616. "autoload": {
  4617. "psr-4": {
  4618. "Carbon\\": "src/Carbon/"
  4619. }
  4620. },
  4621. "notification-url": "https://packagist.org/downloads/",
  4622. "license": [
  4623. "MIT"
  4624. ],
  4625. "authors": [
  4626. {
  4627. "name": "Brian Nesbitt",
  4628. "email": "brian@nesbot.com",
  4629. "homepage": "https://markido.com"
  4630. },
  4631. {
  4632. "name": "kylekatarnls",
  4633. "homepage": "https://github.com/kylekatarnls"
  4634. }
  4635. ],
  4636. "description": "An API extension for DateTime that supports 281 different languages.",
  4637. "homepage": "https://carbon.nesbot.com",
  4638. "keywords": [
  4639. "date",
  4640. "datetime",
  4641. "time"
  4642. ],
  4643. "support": {
  4644. "docs": "https://carbon.nesbot.com/docs",
  4645. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4646. "source": "https://github.com/briannesbitt/Carbon"
  4647. },
  4648. "funding": [
  4649. {
  4650. "url": "https://github.com/sponsors/kylekatarnls",
  4651. "type": "github"
  4652. },
  4653. {
  4654. "url": "https://opencollective.com/Carbon#sponsor",
  4655. "type": "opencollective"
  4656. },
  4657. {
  4658. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4659. "type": "tidelift"
  4660. }
  4661. ],
  4662. "time": "2024-06-03T19:18:41+00:00"
  4663. },
  4664. {
  4665. "name": "nikic/fast-route",
  4666. "version": "v1.3.0",
  4667. "source": {
  4668. "type": "git",
  4669. "url": "https://github.com/nikic/FastRoute.git",
  4670. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4671. },
  4672. "dist": {
  4673. "type": "zip",
  4674. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4675. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4676. "shasum": ""
  4677. },
  4678. "require": {
  4679. "php": ">=5.4.0"
  4680. },
  4681. "require-dev": {
  4682. "phpunit/phpunit": "^4.8.35|~5.7"
  4683. },
  4684. "type": "library",
  4685. "autoload": {
  4686. "files": [
  4687. "src/functions.php"
  4688. ],
  4689. "psr-4": {
  4690. "FastRoute\\": "src/"
  4691. }
  4692. },
  4693. "notification-url": "https://packagist.org/downloads/",
  4694. "license": [
  4695. "BSD-3-Clause"
  4696. ],
  4697. "authors": [
  4698. {
  4699. "name": "Nikita Popov",
  4700. "email": "nikic@php.net"
  4701. }
  4702. ],
  4703. "description": "Fast request router for PHP",
  4704. "keywords": [
  4705. "router",
  4706. "routing"
  4707. ],
  4708. "support": {
  4709. "issues": "https://github.com/nikic/FastRoute/issues",
  4710. "source": "https://github.com/nikic/FastRoute/tree/master"
  4711. },
  4712. "time": "2018-02-13T20:26:39+00:00"
  4713. },
  4714. {
  4715. "name": "nikic/php-parser",
  4716. "version": "v4.19.1",
  4717. "source": {
  4718. "type": "git",
  4719. "url": "https://github.com/nikic/PHP-Parser.git",
  4720. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  4721. },
  4722. "dist": {
  4723. "type": "zip",
  4724. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  4725. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  4726. "shasum": ""
  4727. },
  4728. "require": {
  4729. "ext-tokenizer": "*",
  4730. "php": ">=7.1"
  4731. },
  4732. "require-dev": {
  4733. "ircmaxell/php-yacc": "^0.0.7",
  4734. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4735. },
  4736. "bin": [
  4737. "bin/php-parse"
  4738. ],
  4739. "type": "library",
  4740. "extra": {
  4741. "branch-alias": {
  4742. "dev-master": "4.9-dev"
  4743. }
  4744. },
  4745. "autoload": {
  4746. "psr-4": {
  4747. "PhpParser\\": "lib/PhpParser"
  4748. }
  4749. },
  4750. "notification-url": "https://packagist.org/downloads/",
  4751. "license": [
  4752. "BSD-3-Clause"
  4753. ],
  4754. "authors": [
  4755. {
  4756. "name": "Nikita Popov"
  4757. }
  4758. ],
  4759. "description": "A PHP parser written in PHP",
  4760. "keywords": [
  4761. "parser",
  4762. "php"
  4763. ],
  4764. "support": {
  4765. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4766. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  4767. },
  4768. "time": "2024-03-17T08:10:35+00:00"
  4769. },
  4770. {
  4771. "name": "php-di/phpdoc-reader",
  4772. "version": "2.2.1",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  4776. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4781. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4782. "shasum": ""
  4783. },
  4784. "require": {
  4785. "php": ">=7.2.0"
  4786. },
  4787. "require-dev": {
  4788. "mnapoli/hard-mode": "~0.3.0",
  4789. "phpunit/phpunit": "^8.5|^9.0"
  4790. },
  4791. "type": "library",
  4792. "autoload": {
  4793. "psr-4": {
  4794. "PhpDocReader\\": "src/PhpDocReader"
  4795. }
  4796. },
  4797. "notification-url": "https://packagist.org/downloads/",
  4798. "license": [
  4799. "MIT"
  4800. ],
  4801. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  4802. "keywords": [
  4803. "phpdoc",
  4804. "reflection"
  4805. ],
  4806. "support": {
  4807. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  4808. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  4809. },
  4810. "time": "2020-10-12T12:39:22+00:00"
  4811. },
  4812. {
  4813. "name": "phpoption/phpoption",
  4814. "version": "1.9.2",
  4815. "source": {
  4816. "type": "git",
  4817. "url": "https://github.com/schmittjoh/php-option.git",
  4818. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4819. },
  4820. "dist": {
  4821. "type": "zip",
  4822. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4823. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4824. "shasum": ""
  4825. },
  4826. "require": {
  4827. "php": "^7.2.5 || ^8.0"
  4828. },
  4829. "require-dev": {
  4830. "bamarni/composer-bin-plugin": "^1.8.2",
  4831. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4832. },
  4833. "type": "library",
  4834. "extra": {
  4835. "bamarni-bin": {
  4836. "bin-links": true,
  4837. "forward-command": true
  4838. },
  4839. "branch-alias": {
  4840. "dev-master": "1.9-dev"
  4841. }
  4842. },
  4843. "autoload": {
  4844. "psr-4": {
  4845. "PhpOption\\": "src/PhpOption/"
  4846. }
  4847. },
  4848. "notification-url": "https://packagist.org/downloads/",
  4849. "license": [
  4850. "Apache-2.0"
  4851. ],
  4852. "authors": [
  4853. {
  4854. "name": "Johannes M. Schmitt",
  4855. "email": "schmittjoh@gmail.com",
  4856. "homepage": "https://github.com/schmittjoh"
  4857. },
  4858. {
  4859. "name": "Graham Campbell",
  4860. "email": "hello@gjcampbell.co.uk",
  4861. "homepage": "https://github.com/GrahamCampbell"
  4862. }
  4863. ],
  4864. "description": "Option Type for PHP",
  4865. "keywords": [
  4866. "language",
  4867. "option",
  4868. "php",
  4869. "type"
  4870. ],
  4871. "support": {
  4872. "issues": "https://github.com/schmittjoh/php-option/issues",
  4873. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4874. },
  4875. "funding": [
  4876. {
  4877. "url": "https://github.com/GrahamCampbell",
  4878. "type": "github"
  4879. },
  4880. {
  4881. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4882. "type": "tidelift"
  4883. }
  4884. ],
  4885. "time": "2023-11-12T21:59:55+00:00"
  4886. },
  4887. {
  4888. "name": "psr/cache",
  4889. "version": "3.0.0",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://github.com/php-fig/cache.git",
  4893. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4898. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4899. "shasum": ""
  4900. },
  4901. "require": {
  4902. "php": ">=8.0.0"
  4903. },
  4904. "type": "library",
  4905. "extra": {
  4906. "branch-alias": {
  4907. "dev-master": "1.0.x-dev"
  4908. }
  4909. },
  4910. "autoload": {
  4911. "psr-4": {
  4912. "Psr\\Cache\\": "src/"
  4913. }
  4914. },
  4915. "notification-url": "https://packagist.org/downloads/",
  4916. "license": [
  4917. "MIT"
  4918. ],
  4919. "authors": [
  4920. {
  4921. "name": "PHP-FIG",
  4922. "homepage": "https://www.php-fig.org/"
  4923. }
  4924. ],
  4925. "description": "Common interface for caching libraries",
  4926. "keywords": [
  4927. "cache",
  4928. "psr",
  4929. "psr-6"
  4930. ],
  4931. "support": {
  4932. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4933. },
  4934. "time": "2021-02-03T23:26:27+00:00"
  4935. },
  4936. {
  4937. "name": "psr/clock",
  4938. "version": "1.0.0",
  4939. "source": {
  4940. "type": "git",
  4941. "url": "https://github.com/php-fig/clock.git",
  4942. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4943. },
  4944. "dist": {
  4945. "type": "zip",
  4946. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4947. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4948. "shasum": ""
  4949. },
  4950. "require": {
  4951. "php": "^7.0 || ^8.0"
  4952. },
  4953. "type": "library",
  4954. "autoload": {
  4955. "psr-4": {
  4956. "Psr\\Clock\\": "src/"
  4957. }
  4958. },
  4959. "notification-url": "https://packagist.org/downloads/",
  4960. "license": [
  4961. "MIT"
  4962. ],
  4963. "authors": [
  4964. {
  4965. "name": "PHP-FIG",
  4966. "homepage": "https://www.php-fig.org/"
  4967. }
  4968. ],
  4969. "description": "Common interface for reading the clock.",
  4970. "homepage": "https://github.com/php-fig/clock",
  4971. "keywords": [
  4972. "clock",
  4973. "now",
  4974. "psr",
  4975. "psr-20",
  4976. "time"
  4977. ],
  4978. "support": {
  4979. "issues": "https://github.com/php-fig/clock/issues",
  4980. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4981. },
  4982. "time": "2022-11-25T14:36:26+00:00"
  4983. },
  4984. {
  4985. "name": "psr/container",
  4986. "version": "2.0.2",
  4987. "source": {
  4988. "type": "git",
  4989. "url": "https://github.com/php-fig/container.git",
  4990. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4991. },
  4992. "dist": {
  4993. "type": "zip",
  4994. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4995. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4996. "shasum": ""
  4997. },
  4998. "require": {
  4999. "php": ">=7.4.0"
  5000. },
  5001. "type": "library",
  5002. "extra": {
  5003. "branch-alias": {
  5004. "dev-master": "2.0.x-dev"
  5005. }
  5006. },
  5007. "autoload": {
  5008. "psr-4": {
  5009. "Psr\\Container\\": "src/"
  5010. }
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "PHP-FIG",
  5019. "homepage": "https://www.php-fig.org/"
  5020. }
  5021. ],
  5022. "description": "Common Container Interface (PHP FIG PSR-11)",
  5023. "homepage": "https://github.com/php-fig/container",
  5024. "keywords": [
  5025. "PSR-11",
  5026. "container",
  5027. "container-interface",
  5028. "container-interop",
  5029. "psr"
  5030. ],
  5031. "support": {
  5032. "issues": "https://github.com/php-fig/container/issues",
  5033. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5034. },
  5035. "time": "2021-11-05T16:47:00+00:00"
  5036. },
  5037. {
  5038. "name": "psr/event-dispatcher",
  5039. "version": "1.0.0",
  5040. "source": {
  5041. "type": "git",
  5042. "url": "https://github.com/php-fig/event-dispatcher.git",
  5043. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5044. },
  5045. "dist": {
  5046. "type": "zip",
  5047. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5048. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5049. "shasum": ""
  5050. },
  5051. "require": {
  5052. "php": ">=7.2.0"
  5053. },
  5054. "type": "library",
  5055. "extra": {
  5056. "branch-alias": {
  5057. "dev-master": "1.0.x-dev"
  5058. }
  5059. },
  5060. "autoload": {
  5061. "psr-4": {
  5062. "Psr\\EventDispatcher\\": "src/"
  5063. }
  5064. },
  5065. "notification-url": "https://packagist.org/downloads/",
  5066. "license": [
  5067. "MIT"
  5068. ],
  5069. "authors": [
  5070. {
  5071. "name": "PHP-FIG",
  5072. "homepage": "http://www.php-fig.org/"
  5073. }
  5074. ],
  5075. "description": "Standard interfaces for event handling.",
  5076. "keywords": [
  5077. "events",
  5078. "psr",
  5079. "psr-14"
  5080. ],
  5081. "support": {
  5082. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5083. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5084. },
  5085. "time": "2019-01-08T18:20:26+00:00"
  5086. },
  5087. {
  5088. "name": "psr/http-client",
  5089. "version": "1.0.3",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://github.com/php-fig/http-client.git",
  5093. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5098. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5099. "shasum": ""
  5100. },
  5101. "require": {
  5102. "php": "^7.0 || ^8.0",
  5103. "psr/http-message": "^1.0 || ^2.0"
  5104. },
  5105. "type": "library",
  5106. "extra": {
  5107. "branch-alias": {
  5108. "dev-master": "1.0.x-dev"
  5109. }
  5110. },
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Psr\\Http\\Client\\": "src/"
  5114. }
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "PHP-FIG",
  5123. "homepage": "https://www.php-fig.org/"
  5124. }
  5125. ],
  5126. "description": "Common interface for HTTP clients",
  5127. "homepage": "https://github.com/php-fig/http-client",
  5128. "keywords": [
  5129. "http",
  5130. "http-client",
  5131. "psr",
  5132. "psr-18"
  5133. ],
  5134. "support": {
  5135. "source": "https://github.com/php-fig/http-client"
  5136. },
  5137. "time": "2023-09-23T14:17:50+00:00"
  5138. },
  5139. {
  5140. "name": "psr/http-factory",
  5141. "version": "1.1.0",
  5142. "source": {
  5143. "type": "git",
  5144. "url": "https://github.com/php-fig/http-factory.git",
  5145. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5146. },
  5147. "dist": {
  5148. "type": "zip",
  5149. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5150. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5151. "shasum": ""
  5152. },
  5153. "require": {
  5154. "php": ">=7.1",
  5155. "psr/http-message": "^1.0 || ^2.0"
  5156. },
  5157. "type": "library",
  5158. "extra": {
  5159. "branch-alias": {
  5160. "dev-master": "1.0.x-dev"
  5161. }
  5162. },
  5163. "autoload": {
  5164. "psr-4": {
  5165. "Psr\\Http\\Message\\": "src/"
  5166. }
  5167. },
  5168. "notification-url": "https://packagist.org/downloads/",
  5169. "license": [
  5170. "MIT"
  5171. ],
  5172. "authors": [
  5173. {
  5174. "name": "PHP-FIG",
  5175. "homepage": "https://www.php-fig.org/"
  5176. }
  5177. ],
  5178. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5179. "keywords": [
  5180. "factory",
  5181. "http",
  5182. "message",
  5183. "psr",
  5184. "psr-17",
  5185. "psr-7",
  5186. "request",
  5187. "response"
  5188. ],
  5189. "support": {
  5190. "source": "https://github.com/php-fig/http-factory"
  5191. },
  5192. "time": "2024-04-15T12:06:14+00:00"
  5193. },
  5194. {
  5195. "name": "psr/http-message",
  5196. "version": "2.0",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/php-fig/http-message.git",
  5200. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5205. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "php": "^7.2 || ^8.0"
  5210. },
  5211. "type": "library",
  5212. "extra": {
  5213. "branch-alias": {
  5214. "dev-master": "2.0.x-dev"
  5215. }
  5216. },
  5217. "autoload": {
  5218. "psr-4": {
  5219. "Psr\\Http\\Message\\": "src/"
  5220. }
  5221. },
  5222. "notification-url": "https://packagist.org/downloads/",
  5223. "license": [
  5224. "MIT"
  5225. ],
  5226. "authors": [
  5227. {
  5228. "name": "PHP-FIG",
  5229. "homepage": "https://www.php-fig.org/"
  5230. }
  5231. ],
  5232. "description": "Common interface for HTTP messages",
  5233. "homepage": "https://github.com/php-fig/http-message",
  5234. "keywords": [
  5235. "http",
  5236. "http-message",
  5237. "psr",
  5238. "psr-7",
  5239. "request",
  5240. "response"
  5241. ],
  5242. "support": {
  5243. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5244. },
  5245. "time": "2023-04-04T09:54:51+00:00"
  5246. },
  5247. {
  5248. "name": "psr/http-server-handler",
  5249. "version": "1.0.2",
  5250. "source": {
  5251. "type": "git",
  5252. "url": "https://github.com/php-fig/http-server-handler.git",
  5253. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5254. },
  5255. "dist": {
  5256. "type": "zip",
  5257. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5258. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5259. "shasum": ""
  5260. },
  5261. "require": {
  5262. "php": ">=7.0",
  5263. "psr/http-message": "^1.0 || ^2.0"
  5264. },
  5265. "type": "library",
  5266. "extra": {
  5267. "branch-alias": {
  5268. "dev-master": "1.0.x-dev"
  5269. }
  5270. },
  5271. "autoload": {
  5272. "psr-4": {
  5273. "Psr\\Http\\Server\\": "src/"
  5274. }
  5275. },
  5276. "notification-url": "https://packagist.org/downloads/",
  5277. "license": [
  5278. "MIT"
  5279. ],
  5280. "authors": [
  5281. {
  5282. "name": "PHP-FIG",
  5283. "homepage": "https://www.php-fig.org/"
  5284. }
  5285. ],
  5286. "description": "Common interface for HTTP server-side request handler",
  5287. "keywords": [
  5288. "handler",
  5289. "http",
  5290. "http-interop",
  5291. "psr",
  5292. "psr-15",
  5293. "psr-7",
  5294. "request",
  5295. "response",
  5296. "server"
  5297. ],
  5298. "support": {
  5299. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5300. },
  5301. "time": "2023-04-10T20:06:20+00:00"
  5302. },
  5303. {
  5304. "name": "psr/http-server-middleware",
  5305. "version": "1.0.2",
  5306. "source": {
  5307. "type": "git",
  5308. "url": "https://github.com/php-fig/http-server-middleware.git",
  5309. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5310. },
  5311. "dist": {
  5312. "type": "zip",
  5313. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5314. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5315. "shasum": ""
  5316. },
  5317. "require": {
  5318. "php": ">=7.0",
  5319. "psr/http-message": "^1.0 || ^2.0",
  5320. "psr/http-server-handler": "^1.0"
  5321. },
  5322. "type": "library",
  5323. "extra": {
  5324. "branch-alias": {
  5325. "dev-master": "1.0.x-dev"
  5326. }
  5327. },
  5328. "autoload": {
  5329. "psr-4": {
  5330. "Psr\\Http\\Server\\": "src/"
  5331. }
  5332. },
  5333. "notification-url": "https://packagist.org/downloads/",
  5334. "license": [
  5335. "MIT"
  5336. ],
  5337. "authors": [
  5338. {
  5339. "name": "PHP-FIG",
  5340. "homepage": "https://www.php-fig.org/"
  5341. }
  5342. ],
  5343. "description": "Common interface for HTTP server-side middleware",
  5344. "keywords": [
  5345. "http",
  5346. "http-interop",
  5347. "middleware",
  5348. "psr",
  5349. "psr-15",
  5350. "psr-7",
  5351. "request",
  5352. "response"
  5353. ],
  5354. "support": {
  5355. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5356. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5357. },
  5358. "time": "2023-04-11T06:14:47+00:00"
  5359. },
  5360. {
  5361. "name": "psr/log",
  5362. "version": "3.0.0",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/php-fig/log.git",
  5366. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5371. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5372. "shasum": ""
  5373. },
  5374. "require": {
  5375. "php": ">=8.0.0"
  5376. },
  5377. "type": "library",
  5378. "extra": {
  5379. "branch-alias": {
  5380. "dev-master": "3.x-dev"
  5381. }
  5382. },
  5383. "autoload": {
  5384. "psr-4": {
  5385. "Psr\\Log\\": "src"
  5386. }
  5387. },
  5388. "notification-url": "https://packagist.org/downloads/",
  5389. "license": [
  5390. "MIT"
  5391. ],
  5392. "authors": [
  5393. {
  5394. "name": "PHP-FIG",
  5395. "homepage": "https://www.php-fig.org/"
  5396. }
  5397. ],
  5398. "description": "Common interface for logging libraries",
  5399. "homepage": "https://github.com/php-fig/log",
  5400. "keywords": [
  5401. "log",
  5402. "psr",
  5403. "psr-3"
  5404. ],
  5405. "support": {
  5406. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5407. },
  5408. "time": "2021-07-14T16:46:02+00:00"
  5409. },
  5410. {
  5411. "name": "psr/simple-cache",
  5412. "version": "3.0.0",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/php-fig/simple-cache.git",
  5416. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5421. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5422. "shasum": ""
  5423. },
  5424. "require": {
  5425. "php": ">=8.0.0"
  5426. },
  5427. "type": "library",
  5428. "extra": {
  5429. "branch-alias": {
  5430. "dev-master": "3.0.x-dev"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "psr-4": {
  5435. "Psr\\SimpleCache\\": "src/"
  5436. }
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "MIT"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "PHP-FIG",
  5445. "homepage": "https://www.php-fig.org/"
  5446. }
  5447. ],
  5448. "description": "Common interfaces for simple caching",
  5449. "keywords": [
  5450. "cache",
  5451. "caching",
  5452. "psr",
  5453. "psr-16",
  5454. "simple-cache"
  5455. ],
  5456. "support": {
  5457. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5458. },
  5459. "time": "2021-10-29T13:26:27+00:00"
  5460. },
  5461. {
  5462. "name": "ralouphie/getallheaders",
  5463. "version": "3.0.3",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://github.com/ralouphie/getallheaders.git",
  5467. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5472. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5473. "shasum": ""
  5474. },
  5475. "require": {
  5476. "php": ">=5.6"
  5477. },
  5478. "require-dev": {
  5479. "php-coveralls/php-coveralls": "^2.1",
  5480. "phpunit/phpunit": "^5 || ^6.5"
  5481. },
  5482. "type": "library",
  5483. "autoload": {
  5484. "files": [
  5485. "src/getallheaders.php"
  5486. ]
  5487. },
  5488. "notification-url": "https://packagist.org/downloads/",
  5489. "license": [
  5490. "MIT"
  5491. ],
  5492. "authors": [
  5493. {
  5494. "name": "Ralph Khattar",
  5495. "email": "ralph.khattar@gmail.com"
  5496. }
  5497. ],
  5498. "description": "A polyfill for getallheaders.",
  5499. "support": {
  5500. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5501. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5502. },
  5503. "time": "2019-03-08T08:55:37+00:00"
  5504. },
  5505. {
  5506. "name": "swow/psr7-plus",
  5507. "version": "v1.1.2",
  5508. "source": {
  5509. "type": "git",
  5510. "url": "https://github.com/swow/psr7-plus.git",
  5511. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5512. },
  5513. "dist": {
  5514. "type": "zip",
  5515. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5516. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5517. "shasum": ""
  5518. },
  5519. "require": {
  5520. "php": ">=8.0",
  5521. "psr/http-client": "^1.0",
  5522. "psr/http-factory": "^1.0",
  5523. "psr/http-message": "^1.1|^2.0"
  5524. },
  5525. "type": "library",
  5526. "autoload": {
  5527. "psr-4": {
  5528. "Swow\\Psr7\\Message\\": "src/Message/"
  5529. }
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "Apache-2.0"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "twose",
  5538. "email": "twosee@php.net"
  5539. }
  5540. ],
  5541. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5542. "keywords": [
  5543. "http",
  5544. "psr17",
  5545. "psr7",
  5546. "swow",
  5547. "websocket"
  5548. ],
  5549. "support": {
  5550. "issues": "https://github.com/swow/swow",
  5551. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5552. },
  5553. "time": "2023-06-15T09:18:11+00:00"
  5554. },
  5555. {
  5556. "name": "symfony/console",
  5557. "version": "v6.4.8",
  5558. "source": {
  5559. "type": "git",
  5560. "url": "https://github.com/symfony/console.git",
  5561. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5562. },
  5563. "dist": {
  5564. "type": "zip",
  5565. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5566. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5567. "shasum": ""
  5568. },
  5569. "require": {
  5570. "php": ">=8.1",
  5571. "symfony/deprecation-contracts": "^2.5|^3",
  5572. "symfony/polyfill-mbstring": "~1.0",
  5573. "symfony/service-contracts": "^2.5|^3",
  5574. "symfony/string": "^5.4|^6.0|^7.0"
  5575. },
  5576. "conflict": {
  5577. "symfony/dependency-injection": "<5.4",
  5578. "symfony/dotenv": "<5.4",
  5579. "symfony/event-dispatcher": "<5.4",
  5580. "symfony/lock": "<5.4",
  5581. "symfony/process": "<5.4"
  5582. },
  5583. "provide": {
  5584. "psr/log-implementation": "1.0|2.0|3.0"
  5585. },
  5586. "require-dev": {
  5587. "psr/log": "^1|^2|^3",
  5588. "symfony/config": "^5.4|^6.0|^7.0",
  5589. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5590. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5591. "symfony/http-foundation": "^6.4|^7.0",
  5592. "symfony/http-kernel": "^6.4|^7.0",
  5593. "symfony/lock": "^5.4|^6.0|^7.0",
  5594. "symfony/messenger": "^5.4|^6.0|^7.0",
  5595. "symfony/process": "^5.4|^6.0|^7.0",
  5596. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5597. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5598. },
  5599. "type": "library",
  5600. "autoload": {
  5601. "psr-4": {
  5602. "Symfony\\Component\\Console\\": ""
  5603. },
  5604. "exclude-from-classmap": [
  5605. "/Tests/"
  5606. ]
  5607. },
  5608. "notification-url": "https://packagist.org/downloads/",
  5609. "license": [
  5610. "MIT"
  5611. ],
  5612. "authors": [
  5613. {
  5614. "name": "Fabien Potencier",
  5615. "email": "fabien@symfony.com"
  5616. },
  5617. {
  5618. "name": "Symfony Community",
  5619. "homepage": "https://symfony.com/contributors"
  5620. }
  5621. ],
  5622. "description": "Eases the creation of beautiful and testable command line interfaces",
  5623. "homepage": "https://symfony.com",
  5624. "keywords": [
  5625. "cli",
  5626. "command-line",
  5627. "console",
  5628. "terminal"
  5629. ],
  5630. "support": {
  5631. "source": "https://github.com/symfony/console/tree/v6.4.8"
  5632. },
  5633. "funding": [
  5634. {
  5635. "url": "https://symfony.com/sponsor",
  5636. "type": "custom"
  5637. },
  5638. {
  5639. "url": "https://github.com/fabpot",
  5640. "type": "github"
  5641. },
  5642. {
  5643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5644. "type": "tidelift"
  5645. }
  5646. ],
  5647. "time": "2024-05-31T14:49:08+00:00"
  5648. },
  5649. {
  5650. "name": "symfony/deprecation-contracts",
  5651. "version": "v3.5.0",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://github.com/symfony/deprecation-contracts.git",
  5655. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5660. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5661. "shasum": ""
  5662. },
  5663. "require": {
  5664. "php": ">=8.1"
  5665. },
  5666. "type": "library",
  5667. "extra": {
  5668. "branch-alias": {
  5669. "dev-main": "3.5-dev"
  5670. },
  5671. "thanks": {
  5672. "name": "symfony/contracts",
  5673. "url": "https://github.com/symfony/contracts"
  5674. }
  5675. },
  5676. "autoload": {
  5677. "files": [
  5678. "function.php"
  5679. ]
  5680. },
  5681. "notification-url": "https://packagist.org/downloads/",
  5682. "license": [
  5683. "MIT"
  5684. ],
  5685. "authors": [
  5686. {
  5687. "name": "Nicolas Grekas",
  5688. "email": "p@tchwork.com"
  5689. },
  5690. {
  5691. "name": "Symfony Community",
  5692. "homepage": "https://symfony.com/contributors"
  5693. }
  5694. ],
  5695. "description": "A generic function and convention to trigger deprecation notices",
  5696. "homepage": "https://symfony.com",
  5697. "support": {
  5698. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5699. },
  5700. "funding": [
  5701. {
  5702. "url": "https://symfony.com/sponsor",
  5703. "type": "custom"
  5704. },
  5705. {
  5706. "url": "https://github.com/fabpot",
  5707. "type": "github"
  5708. },
  5709. {
  5710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5711. "type": "tidelift"
  5712. }
  5713. ],
  5714. "time": "2024-04-18T09:32:20+00:00"
  5715. },
  5716. {
  5717. "name": "symfony/finder",
  5718. "version": "v6.4.8",
  5719. "source": {
  5720. "type": "git",
  5721. "url": "https://github.com/symfony/finder.git",
  5722. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  5723. },
  5724. "dist": {
  5725. "type": "zip",
  5726. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  5727. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  5728. "shasum": ""
  5729. },
  5730. "require": {
  5731. "php": ">=8.1"
  5732. },
  5733. "require-dev": {
  5734. "symfony/filesystem": "^6.0|^7.0"
  5735. },
  5736. "type": "library",
  5737. "autoload": {
  5738. "psr-4": {
  5739. "Symfony\\Component\\Finder\\": ""
  5740. },
  5741. "exclude-from-classmap": [
  5742. "/Tests/"
  5743. ]
  5744. },
  5745. "notification-url": "https://packagist.org/downloads/",
  5746. "license": [
  5747. "MIT"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "Fabien Potencier",
  5752. "email": "fabien@symfony.com"
  5753. },
  5754. {
  5755. "name": "Symfony Community",
  5756. "homepage": "https://symfony.com/contributors"
  5757. }
  5758. ],
  5759. "description": "Finds files and directories via an intuitive fluent interface",
  5760. "homepage": "https://symfony.com",
  5761. "support": {
  5762. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  5763. },
  5764. "funding": [
  5765. {
  5766. "url": "https://symfony.com/sponsor",
  5767. "type": "custom"
  5768. },
  5769. {
  5770. "url": "https://github.com/fabpot",
  5771. "type": "github"
  5772. },
  5773. {
  5774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5775. "type": "tidelift"
  5776. }
  5777. ],
  5778. "time": "2024-05-31T14:49:08+00:00"
  5779. },
  5780. {
  5781. "name": "symfony/polyfill-ctype",
  5782. "version": "v1.29.0",
  5783. "source": {
  5784. "type": "git",
  5785. "url": "https://github.com/symfony/polyfill-ctype.git",
  5786. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  5787. },
  5788. "dist": {
  5789. "type": "zip",
  5790. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5791. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5792. "shasum": ""
  5793. },
  5794. "require": {
  5795. "php": ">=7.1"
  5796. },
  5797. "provide": {
  5798. "ext-ctype": "*"
  5799. },
  5800. "suggest": {
  5801. "ext-ctype": "For best performance"
  5802. },
  5803. "type": "library",
  5804. "extra": {
  5805. "thanks": {
  5806. "name": "symfony/polyfill",
  5807. "url": "https://github.com/symfony/polyfill"
  5808. }
  5809. },
  5810. "autoload": {
  5811. "files": [
  5812. "bootstrap.php"
  5813. ],
  5814. "psr-4": {
  5815. "Symfony\\Polyfill\\Ctype\\": ""
  5816. }
  5817. },
  5818. "notification-url": "https://packagist.org/downloads/",
  5819. "license": [
  5820. "MIT"
  5821. ],
  5822. "authors": [
  5823. {
  5824. "name": "Gert de Pagter",
  5825. "email": "BackEndTea@gmail.com"
  5826. },
  5827. {
  5828. "name": "Symfony Community",
  5829. "homepage": "https://symfony.com/contributors"
  5830. }
  5831. ],
  5832. "description": "Symfony polyfill for ctype functions",
  5833. "homepage": "https://symfony.com",
  5834. "keywords": [
  5835. "compatibility",
  5836. "ctype",
  5837. "polyfill",
  5838. "portable"
  5839. ],
  5840. "support": {
  5841. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  5842. },
  5843. "funding": [
  5844. {
  5845. "url": "https://symfony.com/sponsor",
  5846. "type": "custom"
  5847. },
  5848. {
  5849. "url": "https://github.com/fabpot",
  5850. "type": "github"
  5851. },
  5852. {
  5853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5854. "type": "tidelift"
  5855. }
  5856. ],
  5857. "time": "2024-01-29T20:11:03+00:00"
  5858. },
  5859. {
  5860. "name": "symfony/polyfill-intl-grapheme",
  5861. "version": "v1.29.0",
  5862. "source": {
  5863. "type": "git",
  5864. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5865. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5866. },
  5867. "dist": {
  5868. "type": "zip",
  5869. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5870. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5871. "shasum": ""
  5872. },
  5873. "require": {
  5874. "php": ">=7.1"
  5875. },
  5876. "suggest": {
  5877. "ext-intl": "For best performance"
  5878. },
  5879. "type": "library",
  5880. "extra": {
  5881. "thanks": {
  5882. "name": "symfony/polyfill",
  5883. "url": "https://github.com/symfony/polyfill"
  5884. }
  5885. },
  5886. "autoload": {
  5887. "files": [
  5888. "bootstrap.php"
  5889. ],
  5890. "psr-4": {
  5891. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5892. }
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "MIT"
  5897. ],
  5898. "authors": [
  5899. {
  5900. "name": "Nicolas Grekas",
  5901. "email": "p@tchwork.com"
  5902. },
  5903. {
  5904. "name": "Symfony Community",
  5905. "homepage": "https://symfony.com/contributors"
  5906. }
  5907. ],
  5908. "description": "Symfony polyfill for intl's grapheme_* functions",
  5909. "homepage": "https://symfony.com",
  5910. "keywords": [
  5911. "compatibility",
  5912. "grapheme",
  5913. "intl",
  5914. "polyfill",
  5915. "portable",
  5916. "shim"
  5917. ],
  5918. "support": {
  5919. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5920. },
  5921. "funding": [
  5922. {
  5923. "url": "https://symfony.com/sponsor",
  5924. "type": "custom"
  5925. },
  5926. {
  5927. "url": "https://github.com/fabpot",
  5928. "type": "github"
  5929. },
  5930. {
  5931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5932. "type": "tidelift"
  5933. }
  5934. ],
  5935. "time": "2024-01-29T20:11:03+00:00"
  5936. },
  5937. {
  5938. "name": "symfony/polyfill-intl-normalizer",
  5939. "version": "v1.29.0",
  5940. "source": {
  5941. "type": "git",
  5942. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5943. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5944. },
  5945. "dist": {
  5946. "type": "zip",
  5947. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  5948. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  5949. "shasum": ""
  5950. },
  5951. "require": {
  5952. "php": ">=7.1"
  5953. },
  5954. "suggest": {
  5955. "ext-intl": "For best performance"
  5956. },
  5957. "type": "library",
  5958. "extra": {
  5959. "thanks": {
  5960. "name": "symfony/polyfill",
  5961. "url": "https://github.com/symfony/polyfill"
  5962. }
  5963. },
  5964. "autoload": {
  5965. "files": [
  5966. "bootstrap.php"
  5967. ],
  5968. "psr-4": {
  5969. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5970. },
  5971. "classmap": [
  5972. "Resources/stubs"
  5973. ]
  5974. },
  5975. "notification-url": "https://packagist.org/downloads/",
  5976. "license": [
  5977. "MIT"
  5978. ],
  5979. "authors": [
  5980. {
  5981. "name": "Nicolas Grekas",
  5982. "email": "p@tchwork.com"
  5983. },
  5984. {
  5985. "name": "Symfony Community",
  5986. "homepage": "https://symfony.com/contributors"
  5987. }
  5988. ],
  5989. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5990. "homepage": "https://symfony.com",
  5991. "keywords": [
  5992. "compatibility",
  5993. "intl",
  5994. "normalizer",
  5995. "polyfill",
  5996. "portable",
  5997. "shim"
  5998. ],
  5999. "support": {
  6000. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6001. },
  6002. "funding": [
  6003. {
  6004. "url": "https://symfony.com/sponsor",
  6005. "type": "custom"
  6006. },
  6007. {
  6008. "url": "https://github.com/fabpot",
  6009. "type": "github"
  6010. },
  6011. {
  6012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6013. "type": "tidelift"
  6014. }
  6015. ],
  6016. "time": "2024-01-29T20:11:03+00:00"
  6017. },
  6018. {
  6019. "name": "symfony/polyfill-mbstring",
  6020. "version": "v1.29.0",
  6021. "source": {
  6022. "type": "git",
  6023. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6024. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6025. },
  6026. "dist": {
  6027. "type": "zip",
  6028. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6029. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6030. "shasum": ""
  6031. },
  6032. "require": {
  6033. "php": ">=7.1"
  6034. },
  6035. "provide": {
  6036. "ext-mbstring": "*"
  6037. },
  6038. "suggest": {
  6039. "ext-mbstring": "For best performance"
  6040. },
  6041. "type": "library",
  6042. "extra": {
  6043. "thanks": {
  6044. "name": "symfony/polyfill",
  6045. "url": "https://github.com/symfony/polyfill"
  6046. }
  6047. },
  6048. "autoload": {
  6049. "files": [
  6050. "bootstrap.php"
  6051. ],
  6052. "psr-4": {
  6053. "Symfony\\Polyfill\\Mbstring\\": ""
  6054. }
  6055. },
  6056. "notification-url": "https://packagist.org/downloads/",
  6057. "license": [
  6058. "MIT"
  6059. ],
  6060. "authors": [
  6061. {
  6062. "name": "Nicolas Grekas",
  6063. "email": "p@tchwork.com"
  6064. },
  6065. {
  6066. "name": "Symfony Community",
  6067. "homepage": "https://symfony.com/contributors"
  6068. }
  6069. ],
  6070. "description": "Symfony polyfill for the Mbstring extension",
  6071. "homepage": "https://symfony.com",
  6072. "keywords": [
  6073. "compatibility",
  6074. "mbstring",
  6075. "polyfill",
  6076. "portable",
  6077. "shim"
  6078. ],
  6079. "support": {
  6080. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6081. },
  6082. "funding": [
  6083. {
  6084. "url": "https://symfony.com/sponsor",
  6085. "type": "custom"
  6086. },
  6087. {
  6088. "url": "https://github.com/fabpot",
  6089. "type": "github"
  6090. },
  6091. {
  6092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6093. "type": "tidelift"
  6094. }
  6095. ],
  6096. "time": "2024-01-29T20:11:03+00:00"
  6097. },
  6098. {
  6099. "name": "symfony/polyfill-php80",
  6100. "version": "v1.29.0",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://github.com/symfony/polyfill-php80.git",
  6104. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6109. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6110. "shasum": ""
  6111. },
  6112. "require": {
  6113. "php": ">=7.1"
  6114. },
  6115. "type": "library",
  6116. "extra": {
  6117. "thanks": {
  6118. "name": "symfony/polyfill",
  6119. "url": "https://github.com/symfony/polyfill"
  6120. }
  6121. },
  6122. "autoload": {
  6123. "files": [
  6124. "bootstrap.php"
  6125. ],
  6126. "psr-4": {
  6127. "Symfony\\Polyfill\\Php80\\": ""
  6128. },
  6129. "classmap": [
  6130. "Resources/stubs"
  6131. ]
  6132. },
  6133. "notification-url": "https://packagist.org/downloads/",
  6134. "license": [
  6135. "MIT"
  6136. ],
  6137. "authors": [
  6138. {
  6139. "name": "Ion Bazan",
  6140. "email": "ion.bazan@gmail.com"
  6141. },
  6142. {
  6143. "name": "Nicolas Grekas",
  6144. "email": "p@tchwork.com"
  6145. },
  6146. {
  6147. "name": "Symfony Community",
  6148. "homepage": "https://symfony.com/contributors"
  6149. }
  6150. ],
  6151. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6152. "homepage": "https://symfony.com",
  6153. "keywords": [
  6154. "compatibility",
  6155. "polyfill",
  6156. "portable",
  6157. "shim"
  6158. ],
  6159. "support": {
  6160. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6161. },
  6162. "funding": [
  6163. {
  6164. "url": "https://symfony.com/sponsor",
  6165. "type": "custom"
  6166. },
  6167. {
  6168. "url": "https://github.com/fabpot",
  6169. "type": "github"
  6170. },
  6171. {
  6172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6173. "type": "tidelift"
  6174. }
  6175. ],
  6176. "time": "2024-01-29T20:11:03+00:00"
  6177. },
  6178. {
  6179. "name": "symfony/service-contracts",
  6180. "version": "v3.5.0",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://github.com/symfony/service-contracts.git",
  6184. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6189. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6190. "shasum": ""
  6191. },
  6192. "require": {
  6193. "php": ">=8.1",
  6194. "psr/container": "^1.1|^2.0",
  6195. "symfony/deprecation-contracts": "^2.5|^3"
  6196. },
  6197. "conflict": {
  6198. "ext-psr": "<1.1|>=2"
  6199. },
  6200. "type": "library",
  6201. "extra": {
  6202. "branch-alias": {
  6203. "dev-main": "3.5-dev"
  6204. },
  6205. "thanks": {
  6206. "name": "symfony/contracts",
  6207. "url": "https://github.com/symfony/contracts"
  6208. }
  6209. },
  6210. "autoload": {
  6211. "psr-4": {
  6212. "Symfony\\Contracts\\Service\\": ""
  6213. },
  6214. "exclude-from-classmap": [
  6215. "/Test/"
  6216. ]
  6217. },
  6218. "notification-url": "https://packagist.org/downloads/",
  6219. "license": [
  6220. "MIT"
  6221. ],
  6222. "authors": [
  6223. {
  6224. "name": "Nicolas Grekas",
  6225. "email": "p@tchwork.com"
  6226. },
  6227. {
  6228. "name": "Symfony Community",
  6229. "homepage": "https://symfony.com/contributors"
  6230. }
  6231. ],
  6232. "description": "Generic abstractions related to writing services",
  6233. "homepage": "https://symfony.com",
  6234. "keywords": [
  6235. "abstractions",
  6236. "contracts",
  6237. "decoupling",
  6238. "interfaces",
  6239. "interoperability",
  6240. "standards"
  6241. ],
  6242. "support": {
  6243. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6244. },
  6245. "funding": [
  6246. {
  6247. "url": "https://symfony.com/sponsor",
  6248. "type": "custom"
  6249. },
  6250. {
  6251. "url": "https://github.com/fabpot",
  6252. "type": "github"
  6253. },
  6254. {
  6255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6256. "type": "tidelift"
  6257. }
  6258. ],
  6259. "time": "2024-04-18T09:32:20+00:00"
  6260. },
  6261. {
  6262. "name": "symfony/string",
  6263. "version": "v6.4.8",
  6264. "source": {
  6265. "type": "git",
  6266. "url": "https://github.com/symfony/string.git",
  6267. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6268. },
  6269. "dist": {
  6270. "type": "zip",
  6271. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6272. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6273. "shasum": ""
  6274. },
  6275. "require": {
  6276. "php": ">=8.1",
  6277. "symfony/polyfill-ctype": "~1.8",
  6278. "symfony/polyfill-intl-grapheme": "~1.0",
  6279. "symfony/polyfill-intl-normalizer": "~1.0",
  6280. "symfony/polyfill-mbstring": "~1.0"
  6281. },
  6282. "conflict": {
  6283. "symfony/translation-contracts": "<2.5"
  6284. },
  6285. "require-dev": {
  6286. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6287. "symfony/http-client": "^5.4|^6.0|^7.0",
  6288. "symfony/intl": "^6.2|^7.0",
  6289. "symfony/translation-contracts": "^2.5|^3.0",
  6290. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6291. },
  6292. "type": "library",
  6293. "autoload": {
  6294. "files": [
  6295. "Resources/functions.php"
  6296. ],
  6297. "psr-4": {
  6298. "Symfony\\Component\\String\\": ""
  6299. },
  6300. "exclude-from-classmap": [
  6301. "/Tests/"
  6302. ]
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "MIT"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Nicolas Grekas",
  6311. "email": "p@tchwork.com"
  6312. },
  6313. {
  6314. "name": "Symfony Community",
  6315. "homepage": "https://symfony.com/contributors"
  6316. }
  6317. ],
  6318. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6319. "homepage": "https://symfony.com",
  6320. "keywords": [
  6321. "grapheme",
  6322. "i18n",
  6323. "string",
  6324. "unicode",
  6325. "utf-8",
  6326. "utf8"
  6327. ],
  6328. "support": {
  6329. "source": "https://github.com/symfony/string/tree/v6.4.8"
  6330. },
  6331. "funding": [
  6332. {
  6333. "url": "https://symfony.com/sponsor",
  6334. "type": "custom"
  6335. },
  6336. {
  6337. "url": "https://github.com/fabpot",
  6338. "type": "github"
  6339. },
  6340. {
  6341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6342. "type": "tidelift"
  6343. }
  6344. ],
  6345. "time": "2024-05-31T14:49:08+00:00"
  6346. },
  6347. {
  6348. "name": "symfony/translation",
  6349. "version": "v6.4.8",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://github.com/symfony/translation.git",
  6353. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6358. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6359. "shasum": ""
  6360. },
  6361. "require": {
  6362. "php": ">=8.1",
  6363. "symfony/deprecation-contracts": "^2.5|^3",
  6364. "symfony/polyfill-mbstring": "~1.0",
  6365. "symfony/translation-contracts": "^2.5|^3.0"
  6366. },
  6367. "conflict": {
  6368. "symfony/config": "<5.4",
  6369. "symfony/console": "<5.4",
  6370. "symfony/dependency-injection": "<5.4",
  6371. "symfony/http-client-contracts": "<2.5",
  6372. "symfony/http-kernel": "<5.4",
  6373. "symfony/service-contracts": "<2.5",
  6374. "symfony/twig-bundle": "<5.4",
  6375. "symfony/yaml": "<5.4"
  6376. },
  6377. "provide": {
  6378. "symfony/translation-implementation": "2.3|3.0"
  6379. },
  6380. "require-dev": {
  6381. "nikic/php-parser": "^4.18|^5.0",
  6382. "psr/log": "^1|^2|^3",
  6383. "symfony/config": "^5.4|^6.0|^7.0",
  6384. "symfony/console": "^5.4|^6.0|^7.0",
  6385. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6386. "symfony/finder": "^5.4|^6.0|^7.0",
  6387. "symfony/http-client-contracts": "^2.5|^3.0",
  6388. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6389. "symfony/intl": "^5.4|^6.0|^7.0",
  6390. "symfony/polyfill-intl-icu": "^1.21",
  6391. "symfony/routing": "^5.4|^6.0|^7.0",
  6392. "symfony/service-contracts": "^2.5|^3",
  6393. "symfony/yaml": "^5.4|^6.0|^7.0"
  6394. },
  6395. "type": "library",
  6396. "autoload": {
  6397. "files": [
  6398. "Resources/functions.php"
  6399. ],
  6400. "psr-4": {
  6401. "Symfony\\Component\\Translation\\": ""
  6402. },
  6403. "exclude-from-classmap": [
  6404. "/Tests/"
  6405. ]
  6406. },
  6407. "notification-url": "https://packagist.org/downloads/",
  6408. "license": [
  6409. "MIT"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Fabien Potencier",
  6414. "email": "fabien@symfony.com"
  6415. },
  6416. {
  6417. "name": "Symfony Community",
  6418. "homepage": "https://symfony.com/contributors"
  6419. }
  6420. ],
  6421. "description": "Provides tools to internationalize your application",
  6422. "homepage": "https://symfony.com",
  6423. "support": {
  6424. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6425. },
  6426. "funding": [
  6427. {
  6428. "url": "https://symfony.com/sponsor",
  6429. "type": "custom"
  6430. },
  6431. {
  6432. "url": "https://github.com/fabpot",
  6433. "type": "github"
  6434. },
  6435. {
  6436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6437. "type": "tidelift"
  6438. }
  6439. ],
  6440. "time": "2024-05-31T14:49:08+00:00"
  6441. },
  6442. {
  6443. "name": "symfony/translation-contracts",
  6444. "version": "v3.5.0",
  6445. "source": {
  6446. "type": "git",
  6447. "url": "https://github.com/symfony/translation-contracts.git",
  6448. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6449. },
  6450. "dist": {
  6451. "type": "zip",
  6452. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6453. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6454. "shasum": ""
  6455. },
  6456. "require": {
  6457. "php": ">=8.1"
  6458. },
  6459. "type": "library",
  6460. "extra": {
  6461. "branch-alias": {
  6462. "dev-main": "3.5-dev"
  6463. },
  6464. "thanks": {
  6465. "name": "symfony/contracts",
  6466. "url": "https://github.com/symfony/contracts"
  6467. }
  6468. },
  6469. "autoload": {
  6470. "psr-4": {
  6471. "Symfony\\Contracts\\Translation\\": ""
  6472. },
  6473. "exclude-from-classmap": [
  6474. "/Test/"
  6475. ]
  6476. },
  6477. "notification-url": "https://packagist.org/downloads/",
  6478. "license": [
  6479. "MIT"
  6480. ],
  6481. "authors": [
  6482. {
  6483. "name": "Nicolas Grekas",
  6484. "email": "p@tchwork.com"
  6485. },
  6486. {
  6487. "name": "Symfony Community",
  6488. "homepage": "https://symfony.com/contributors"
  6489. }
  6490. ],
  6491. "description": "Generic abstractions related to translation",
  6492. "homepage": "https://symfony.com",
  6493. "keywords": [
  6494. "abstractions",
  6495. "contracts",
  6496. "decoupling",
  6497. "interfaces",
  6498. "interoperability",
  6499. "standards"
  6500. ],
  6501. "support": {
  6502. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6503. },
  6504. "funding": [
  6505. {
  6506. "url": "https://symfony.com/sponsor",
  6507. "type": "custom"
  6508. },
  6509. {
  6510. "url": "https://github.com/fabpot",
  6511. "type": "github"
  6512. },
  6513. {
  6514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6515. "type": "tidelift"
  6516. }
  6517. ],
  6518. "time": "2024-04-18T09:32:20+00:00"
  6519. },
  6520. {
  6521. "name": "vlucas/phpdotenv",
  6522. "version": "v5.6.0",
  6523. "source": {
  6524. "type": "git",
  6525. "url": "https://github.com/vlucas/phpdotenv.git",
  6526. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6527. },
  6528. "dist": {
  6529. "type": "zip",
  6530. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6531. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6532. "shasum": ""
  6533. },
  6534. "require": {
  6535. "ext-pcre": "*",
  6536. "graham-campbell/result-type": "^1.1.2",
  6537. "php": "^7.2.5 || ^8.0",
  6538. "phpoption/phpoption": "^1.9.2",
  6539. "symfony/polyfill-ctype": "^1.24",
  6540. "symfony/polyfill-mbstring": "^1.24",
  6541. "symfony/polyfill-php80": "^1.24"
  6542. },
  6543. "require-dev": {
  6544. "bamarni/composer-bin-plugin": "^1.8.2",
  6545. "ext-filter": "*",
  6546. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6547. },
  6548. "suggest": {
  6549. "ext-filter": "Required to use the boolean validator."
  6550. },
  6551. "type": "library",
  6552. "extra": {
  6553. "bamarni-bin": {
  6554. "bin-links": true,
  6555. "forward-command": true
  6556. },
  6557. "branch-alias": {
  6558. "dev-master": "5.6-dev"
  6559. }
  6560. },
  6561. "autoload": {
  6562. "psr-4": {
  6563. "Dotenv\\": "src/"
  6564. }
  6565. },
  6566. "notification-url": "https://packagist.org/downloads/",
  6567. "license": [
  6568. "BSD-3-Clause"
  6569. ],
  6570. "authors": [
  6571. {
  6572. "name": "Graham Campbell",
  6573. "email": "hello@gjcampbell.co.uk",
  6574. "homepage": "https://github.com/GrahamCampbell"
  6575. },
  6576. {
  6577. "name": "Vance Lucas",
  6578. "email": "vance@vancelucas.com",
  6579. "homepage": "https://github.com/vlucas"
  6580. }
  6581. ],
  6582. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6583. "keywords": [
  6584. "dotenv",
  6585. "env",
  6586. "environment"
  6587. ],
  6588. "support": {
  6589. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6590. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  6591. },
  6592. "funding": [
  6593. {
  6594. "url": "https://github.com/GrahamCampbell",
  6595. "type": "github"
  6596. },
  6597. {
  6598. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6599. "type": "tidelift"
  6600. }
  6601. ],
  6602. "time": "2023-11-12T22:43:29+00:00"
  6603. }
  6604. ],
  6605. "packages-dev": [
  6606. {
  6607. "name": "clue/ndjson-react",
  6608. "version": "v1.3.0",
  6609. "source": {
  6610. "type": "git",
  6611. "url": "https://github.com/clue/reactphp-ndjson.git",
  6612. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6613. },
  6614. "dist": {
  6615. "type": "zip",
  6616. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6617. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6618. "shasum": ""
  6619. },
  6620. "require": {
  6621. "php": ">=5.3",
  6622. "react/stream": "^1.2"
  6623. },
  6624. "require-dev": {
  6625. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6626. "react/event-loop": "^1.2"
  6627. },
  6628. "type": "library",
  6629. "autoload": {
  6630. "psr-4": {
  6631. "Clue\\React\\NDJson\\": "src/"
  6632. }
  6633. },
  6634. "notification-url": "https://packagist.org/downloads/",
  6635. "license": [
  6636. "MIT"
  6637. ],
  6638. "authors": [
  6639. {
  6640. "name": "Christian Lück",
  6641. "email": "christian@clue.engineering"
  6642. }
  6643. ],
  6644. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6645. "homepage": "https://github.com/clue/reactphp-ndjson",
  6646. "keywords": [
  6647. "NDJSON",
  6648. "json",
  6649. "jsonlines",
  6650. "newline",
  6651. "reactphp",
  6652. "streaming"
  6653. ],
  6654. "support": {
  6655. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6656. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6657. },
  6658. "funding": [
  6659. {
  6660. "url": "https://clue.engineering/support",
  6661. "type": "custom"
  6662. },
  6663. {
  6664. "url": "https://github.com/clue",
  6665. "type": "github"
  6666. }
  6667. ],
  6668. "time": "2022-12-23T10:58:28+00:00"
  6669. },
  6670. {
  6671. "name": "composer/pcre",
  6672. "version": "3.1.4",
  6673. "source": {
  6674. "type": "git",
  6675. "url": "https://github.com/composer/pcre.git",
  6676. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  6677. },
  6678. "dist": {
  6679. "type": "zip",
  6680. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  6681. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  6682. "shasum": ""
  6683. },
  6684. "require": {
  6685. "php": "^7.4 || ^8.0"
  6686. },
  6687. "require-dev": {
  6688. "phpstan/phpstan": "^1.3",
  6689. "phpstan/phpstan-strict-rules": "^1.1",
  6690. "symfony/phpunit-bridge": "^5"
  6691. },
  6692. "type": "library",
  6693. "extra": {
  6694. "branch-alias": {
  6695. "dev-main": "3.x-dev"
  6696. }
  6697. },
  6698. "autoload": {
  6699. "psr-4": {
  6700. "Composer\\Pcre\\": "src"
  6701. }
  6702. },
  6703. "notification-url": "https://packagist.org/downloads/",
  6704. "license": [
  6705. "MIT"
  6706. ],
  6707. "authors": [
  6708. {
  6709. "name": "Jordi Boggiano",
  6710. "email": "j.boggiano@seld.be",
  6711. "homepage": "http://seld.be"
  6712. }
  6713. ],
  6714. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6715. "keywords": [
  6716. "PCRE",
  6717. "preg",
  6718. "regex",
  6719. "regular expression"
  6720. ],
  6721. "support": {
  6722. "issues": "https://github.com/composer/pcre/issues",
  6723. "source": "https://github.com/composer/pcre/tree/3.1.4"
  6724. },
  6725. "funding": [
  6726. {
  6727. "url": "https://packagist.com",
  6728. "type": "custom"
  6729. },
  6730. {
  6731. "url": "https://github.com/composer",
  6732. "type": "github"
  6733. },
  6734. {
  6735. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6736. "type": "tidelift"
  6737. }
  6738. ],
  6739. "time": "2024-05-27T13:40:54+00:00"
  6740. },
  6741. {
  6742. "name": "composer/semver",
  6743. "version": "3.4.0",
  6744. "source": {
  6745. "type": "git",
  6746. "url": "https://github.com/composer/semver.git",
  6747. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6748. },
  6749. "dist": {
  6750. "type": "zip",
  6751. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  6752. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  6753. "shasum": ""
  6754. },
  6755. "require": {
  6756. "php": "^5.3.2 || ^7.0 || ^8.0"
  6757. },
  6758. "require-dev": {
  6759. "phpstan/phpstan": "^1.4",
  6760. "symfony/phpunit-bridge": "^4.2 || ^5"
  6761. },
  6762. "type": "library",
  6763. "extra": {
  6764. "branch-alias": {
  6765. "dev-main": "3.x-dev"
  6766. }
  6767. },
  6768. "autoload": {
  6769. "psr-4": {
  6770. "Composer\\Semver\\": "src"
  6771. }
  6772. },
  6773. "notification-url": "https://packagist.org/downloads/",
  6774. "license": [
  6775. "MIT"
  6776. ],
  6777. "authors": [
  6778. {
  6779. "name": "Nils Adermann",
  6780. "email": "naderman@naderman.de",
  6781. "homepage": "http://www.naderman.de"
  6782. },
  6783. {
  6784. "name": "Jordi Boggiano",
  6785. "email": "j.boggiano@seld.be",
  6786. "homepage": "http://seld.be"
  6787. },
  6788. {
  6789. "name": "Rob Bast",
  6790. "email": "rob.bast@gmail.com",
  6791. "homepage": "http://robbast.nl"
  6792. }
  6793. ],
  6794. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6795. "keywords": [
  6796. "semantic",
  6797. "semver",
  6798. "validation",
  6799. "versioning"
  6800. ],
  6801. "support": {
  6802. "irc": "ircs://irc.libera.chat:6697/composer",
  6803. "issues": "https://github.com/composer/semver/issues",
  6804. "source": "https://github.com/composer/semver/tree/3.4.0"
  6805. },
  6806. "funding": [
  6807. {
  6808. "url": "https://packagist.com",
  6809. "type": "custom"
  6810. },
  6811. {
  6812. "url": "https://github.com/composer",
  6813. "type": "github"
  6814. },
  6815. {
  6816. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6817. "type": "tidelift"
  6818. }
  6819. ],
  6820. "time": "2023-08-31T09:50:34+00:00"
  6821. },
  6822. {
  6823. "name": "composer/xdebug-handler",
  6824. "version": "3.0.5",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/composer/xdebug-handler.git",
  6828. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  6833. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "composer/pcre": "^1 || ^2 || ^3",
  6838. "php": "^7.2.5 || ^8.0",
  6839. "psr/log": "^1 || ^2 || ^3"
  6840. },
  6841. "require-dev": {
  6842. "phpstan/phpstan": "^1.0",
  6843. "phpstan/phpstan-strict-rules": "^1.1",
  6844. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  6845. },
  6846. "type": "library",
  6847. "autoload": {
  6848. "psr-4": {
  6849. "Composer\\XdebugHandler\\": "src"
  6850. }
  6851. },
  6852. "notification-url": "https://packagist.org/downloads/",
  6853. "license": [
  6854. "MIT"
  6855. ],
  6856. "authors": [
  6857. {
  6858. "name": "John Stevenson",
  6859. "email": "john-stevenson@blueyonder.co.uk"
  6860. }
  6861. ],
  6862. "description": "Restarts a process without Xdebug.",
  6863. "keywords": [
  6864. "Xdebug",
  6865. "performance"
  6866. ],
  6867. "support": {
  6868. "irc": "ircs://irc.libera.chat:6697/composer",
  6869. "issues": "https://github.com/composer/xdebug-handler/issues",
  6870. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  6871. },
  6872. "funding": [
  6873. {
  6874. "url": "https://packagist.com",
  6875. "type": "custom"
  6876. },
  6877. {
  6878. "url": "https://github.com/composer",
  6879. "type": "github"
  6880. },
  6881. {
  6882. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6883. "type": "tidelift"
  6884. }
  6885. ],
  6886. "time": "2024-05-06T16:37:16+00:00"
  6887. },
  6888. {
  6889. "name": "evenement/evenement",
  6890. "version": "v3.0.2",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/igorw/evenement.git",
  6894. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6899. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6900. "shasum": ""
  6901. },
  6902. "require": {
  6903. "php": ">=7.0"
  6904. },
  6905. "require-dev": {
  6906. "phpunit/phpunit": "^9 || ^6"
  6907. },
  6908. "type": "library",
  6909. "autoload": {
  6910. "psr-4": {
  6911. "Evenement\\": "src/"
  6912. }
  6913. },
  6914. "notification-url": "https://packagist.org/downloads/",
  6915. "license": [
  6916. "MIT"
  6917. ],
  6918. "authors": [
  6919. {
  6920. "name": "Igor Wiedler",
  6921. "email": "igor@wiedler.ch"
  6922. }
  6923. ],
  6924. "description": "Événement is a very simple event dispatching library for PHP",
  6925. "keywords": [
  6926. "event-dispatcher",
  6927. "event-emitter"
  6928. ],
  6929. "support": {
  6930. "issues": "https://github.com/igorw/evenement/issues",
  6931. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  6932. },
  6933. "time": "2023-08-08T05:53:35+00:00"
  6934. },
  6935. {
  6936. "name": "fidry/cpu-core-counter",
  6937. "version": "1.1.0",
  6938. "source": {
  6939. "type": "git",
  6940. "url": "https://github.com/theofidry/cpu-core-counter.git",
  6941. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  6942. },
  6943. "dist": {
  6944. "type": "zip",
  6945. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  6946. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  6947. "shasum": ""
  6948. },
  6949. "require": {
  6950. "php": "^7.2 || ^8.0"
  6951. },
  6952. "require-dev": {
  6953. "fidry/makefile": "^0.2.0",
  6954. "fidry/php-cs-fixer-config": "^1.1.2",
  6955. "phpstan/extension-installer": "^1.2.0",
  6956. "phpstan/phpstan": "^1.9.2",
  6957. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  6958. "phpstan/phpstan-phpunit": "^1.2.2",
  6959. "phpstan/phpstan-strict-rules": "^1.4.4",
  6960. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  6961. "webmozarts/strict-phpunit": "^7.5"
  6962. },
  6963. "type": "library",
  6964. "autoload": {
  6965. "psr-4": {
  6966. "Fidry\\CpuCoreCounter\\": "src/"
  6967. }
  6968. },
  6969. "notification-url": "https://packagist.org/downloads/",
  6970. "license": [
  6971. "MIT"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Théo FIDRY",
  6976. "email": "theo.fidry@gmail.com"
  6977. }
  6978. ],
  6979. "description": "Tiny utility to get the number of CPU cores.",
  6980. "keywords": [
  6981. "CPU",
  6982. "core"
  6983. ],
  6984. "support": {
  6985. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  6986. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  6987. },
  6988. "funding": [
  6989. {
  6990. "url": "https://github.com/theofidry",
  6991. "type": "github"
  6992. }
  6993. ],
  6994. "time": "2024-02-07T09:43:46+00:00"
  6995. },
  6996. {
  6997. "name": "friendsofphp/php-cs-fixer",
  6998. "version": "v3.58.1",
  6999. "source": {
  7000. "type": "git",
  7001. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7002. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7003. },
  7004. "dist": {
  7005. "type": "zip",
  7006. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7007. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7008. "shasum": ""
  7009. },
  7010. "require": {
  7011. "clue/ndjson-react": "^1.0",
  7012. "composer/semver": "^3.4",
  7013. "composer/xdebug-handler": "^3.0.3",
  7014. "ext-filter": "*",
  7015. "ext-json": "*",
  7016. "ext-tokenizer": "*",
  7017. "fidry/cpu-core-counter": "^1.0",
  7018. "php": "^7.4 || ^8.0",
  7019. "react/child-process": "^0.6.5",
  7020. "react/event-loop": "^1.0",
  7021. "react/promise": "^2.0 || ^3.0",
  7022. "react/socket": "^1.0",
  7023. "react/stream": "^1.0",
  7024. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7025. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7026. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7027. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7028. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7029. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7030. "symfony/polyfill-mbstring": "^1.28",
  7031. "symfony/polyfill-php80": "^1.28",
  7032. "symfony/polyfill-php81": "^1.28",
  7033. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7034. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7035. },
  7036. "require-dev": {
  7037. "facile-it/paraunit": "^1.3 || ^2.0",
  7038. "infection/infection": "^0.27.11",
  7039. "justinrainbow/json-schema": "^5.2",
  7040. "keradus/cli-executor": "^2.1",
  7041. "mikey179/vfsstream": "^1.6.11",
  7042. "php-coveralls/php-coveralls": "^2.7",
  7043. "php-cs-fixer/accessible-object": "^1.1",
  7044. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7045. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7046. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7047. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7048. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7049. },
  7050. "suggest": {
  7051. "ext-dom": "For handling output formats in XML",
  7052. "ext-mbstring": "For handling non-UTF8 characters."
  7053. },
  7054. "bin": [
  7055. "php-cs-fixer"
  7056. ],
  7057. "type": "application",
  7058. "autoload": {
  7059. "psr-4": {
  7060. "PhpCsFixer\\": "src/"
  7061. }
  7062. },
  7063. "notification-url": "https://packagist.org/downloads/",
  7064. "license": [
  7065. "MIT"
  7066. ],
  7067. "authors": [
  7068. {
  7069. "name": "Fabien Potencier",
  7070. "email": "fabien@symfony.com"
  7071. },
  7072. {
  7073. "name": "Dariusz Rumiński",
  7074. "email": "dariusz.ruminski@gmail.com"
  7075. }
  7076. ],
  7077. "description": "A tool to automatically fix PHP code style",
  7078. "keywords": [
  7079. "Static code analysis",
  7080. "fixer",
  7081. "standards",
  7082. "static analysis"
  7083. ],
  7084. "support": {
  7085. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7086. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7087. },
  7088. "funding": [
  7089. {
  7090. "url": "https://github.com/keradus",
  7091. "type": "github"
  7092. }
  7093. ],
  7094. "time": "2024-05-29T16:39:07+00:00"
  7095. },
  7096. {
  7097. "name": "hamcrest/hamcrest-php",
  7098. "version": "v2.0.1",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7102. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7107. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7108. "shasum": ""
  7109. },
  7110. "require": {
  7111. "php": "^5.3|^7.0|^8.0"
  7112. },
  7113. "replace": {
  7114. "cordoval/hamcrest-php": "*",
  7115. "davedevelopment/hamcrest-php": "*",
  7116. "kodova/hamcrest-php": "*"
  7117. },
  7118. "require-dev": {
  7119. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7120. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7121. },
  7122. "type": "library",
  7123. "extra": {
  7124. "branch-alias": {
  7125. "dev-master": "2.1-dev"
  7126. }
  7127. },
  7128. "autoload": {
  7129. "classmap": [
  7130. "hamcrest"
  7131. ]
  7132. },
  7133. "notification-url": "https://packagist.org/downloads/",
  7134. "license": [
  7135. "BSD-3-Clause"
  7136. ],
  7137. "description": "This is the PHP port of Hamcrest Matchers",
  7138. "keywords": [
  7139. "test"
  7140. ],
  7141. "support": {
  7142. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7143. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7144. },
  7145. "time": "2020-07-09T08:09:16+00:00"
  7146. },
  7147. {
  7148. "name": "hyperf/devtool",
  7149. "version": "v3.1.19",
  7150. "source": {
  7151. "type": "git",
  7152. "url": "https://github.com/hyperf/devtool.git",
  7153. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7154. },
  7155. "dist": {
  7156. "type": "zip",
  7157. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7158. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7159. "shasum": ""
  7160. },
  7161. "require": {
  7162. "hyperf/code-parser": "~3.1.0",
  7163. "hyperf/command": "~3.1.0",
  7164. "hyperf/contract": "~3.1.0",
  7165. "hyperf/di": "~3.1.0",
  7166. "hyperf/support": "~3.1.0",
  7167. "hyperf/utils": "~3.1.0",
  7168. "php": ">=8.1"
  7169. },
  7170. "type": "library",
  7171. "extra": {
  7172. "branch-alias": {
  7173. "dev-master": "3.1-dev"
  7174. },
  7175. "hyperf": {
  7176. "config": "Hyperf\\Devtool\\ConfigProvider"
  7177. }
  7178. },
  7179. "autoload": {
  7180. "psr-4": {
  7181. "Hyperf\\Devtool\\": "src/"
  7182. }
  7183. },
  7184. "notification-url": "https://packagist.org/downloads/",
  7185. "license": [
  7186. "MIT"
  7187. ],
  7188. "description": "A Devtool for Hyperf.",
  7189. "homepage": "https://hyperf.io",
  7190. "keywords": [
  7191. "dev",
  7192. "devtool",
  7193. "hyperf",
  7194. "php",
  7195. "swoole"
  7196. ],
  7197. "support": {
  7198. "docs": "https://hyperf.wiki",
  7199. "issues": "https://github.com/hyperf/hyperf/issues",
  7200. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7201. "source": "https://github.com/hyperf/hyperf"
  7202. },
  7203. "funding": [
  7204. {
  7205. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7206. "type": "custom"
  7207. },
  7208. {
  7209. "url": "https://opencollective.com/hyperf",
  7210. "type": "open_collective"
  7211. }
  7212. ],
  7213. "time": "2024-04-13T06:53:08+00:00"
  7214. },
  7215. {
  7216. "name": "hyperf/testing",
  7217. "version": "v3.1.21",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://github.com/hyperf/testing.git",
  7221. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7222. },
  7223. "dist": {
  7224. "type": "zip",
  7225. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7226. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7227. "shasum": ""
  7228. },
  7229. "require": {
  7230. "hyperf/codec": "~3.1.0",
  7231. "hyperf/collection": "~3.1.0",
  7232. "hyperf/contract": "~3.1.0",
  7233. "hyperf/coroutine": "~3.1.0",
  7234. "hyperf/http-message": "~3.1.0",
  7235. "hyperf/http-server": "~3.1.0",
  7236. "hyperf/support": "~3.1.0",
  7237. "hyperf/utils": "~3.1.0",
  7238. "php": ">=8.1",
  7239. "phpunit/phpunit": "^10.0",
  7240. "psr/container": "^1.0|^2.0",
  7241. "symfony/http-foundation": "^5.4|^6.0"
  7242. },
  7243. "suggest": {
  7244. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7245. },
  7246. "bin": [
  7247. "co-phpunit"
  7248. ],
  7249. "type": "library",
  7250. "extra": {
  7251. "branch-alias": {
  7252. "dev-master": "3.1-dev"
  7253. }
  7254. },
  7255. "autoload": {
  7256. "psr-4": {
  7257. "Hyperf\\Testing\\": "src/"
  7258. }
  7259. },
  7260. "notification-url": "https://packagist.org/downloads/",
  7261. "license": [
  7262. "MIT"
  7263. ],
  7264. "description": "Testing for hyperf",
  7265. "keywords": [
  7266. "dev",
  7267. "php",
  7268. "swoole",
  7269. "testing"
  7270. ],
  7271. "support": {
  7272. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7273. },
  7274. "funding": [
  7275. {
  7276. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7277. "type": "custom"
  7278. },
  7279. {
  7280. "url": "https://opencollective.com/hyperf",
  7281. "type": "open_collective"
  7282. }
  7283. ],
  7284. "time": "2024-05-07T05:34:51+00:00"
  7285. },
  7286. {
  7287. "name": "hyperf/watcher",
  7288. "version": "v3.1.21",
  7289. "source": {
  7290. "type": "git",
  7291. "url": "https://github.com/hyperf/watcher.git",
  7292. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7293. },
  7294. "dist": {
  7295. "type": "zip",
  7296. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7297. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7298. "shasum": ""
  7299. },
  7300. "require": {
  7301. "ext-posix": "*",
  7302. "hyperf/codec": "~3.1.0",
  7303. "hyperf/command": "~3.1.0",
  7304. "hyperf/di": "~3.1.0",
  7305. "hyperf/framework": "~3.1.0",
  7306. "hyperf/support": "~3.1.0",
  7307. "php": ">=8.1"
  7308. },
  7309. "type": "library",
  7310. "extra": {
  7311. "branch-alias": {
  7312. "dev-master": "3.1-dev"
  7313. },
  7314. "hyperf": {
  7315. "config": "Hyperf\\Watcher\\ConfigProvider"
  7316. }
  7317. },
  7318. "autoload": {
  7319. "files": [
  7320. "src/Functions.php"
  7321. ],
  7322. "psr-4": {
  7323. "Hyperf\\Watcher\\": "src/"
  7324. }
  7325. },
  7326. "notification-url": "https://packagist.org/downloads/",
  7327. "license": [
  7328. "MIT"
  7329. ],
  7330. "description": "Hot reload watcher for Hyperf",
  7331. "keywords": [
  7332. "dev",
  7333. "hyperf",
  7334. "php"
  7335. ],
  7336. "support": {
  7337. "issues": "https://github.com/hyperf/watcher/issues",
  7338. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7339. },
  7340. "funding": [
  7341. {
  7342. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7343. "type": "custom"
  7344. },
  7345. {
  7346. "url": "https://opencollective.com/hyperf",
  7347. "type": "open_collective"
  7348. }
  7349. ],
  7350. "time": "2024-05-09T13:40:44+00:00"
  7351. },
  7352. {
  7353. "name": "mockery/mockery",
  7354. "version": "1.6.12",
  7355. "source": {
  7356. "type": "git",
  7357. "url": "https://github.com/mockery/mockery.git",
  7358. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7359. },
  7360. "dist": {
  7361. "type": "zip",
  7362. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7363. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7364. "shasum": ""
  7365. },
  7366. "require": {
  7367. "hamcrest/hamcrest-php": "^2.0.1",
  7368. "lib-pcre": ">=7.0",
  7369. "php": ">=7.3"
  7370. },
  7371. "conflict": {
  7372. "phpunit/phpunit": "<8.0"
  7373. },
  7374. "require-dev": {
  7375. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7376. "symplify/easy-coding-standard": "^12.1.14"
  7377. },
  7378. "type": "library",
  7379. "autoload": {
  7380. "files": [
  7381. "library/helpers.php",
  7382. "library/Mockery.php"
  7383. ],
  7384. "psr-4": {
  7385. "Mockery\\": "library/Mockery"
  7386. }
  7387. },
  7388. "notification-url": "https://packagist.org/downloads/",
  7389. "license": [
  7390. "BSD-3-Clause"
  7391. ],
  7392. "authors": [
  7393. {
  7394. "name": "Pádraic Brady",
  7395. "email": "padraic.brady@gmail.com",
  7396. "homepage": "https://github.com/padraic",
  7397. "role": "Author"
  7398. },
  7399. {
  7400. "name": "Dave Marshall",
  7401. "email": "dave.marshall@atstsolutions.co.uk",
  7402. "homepage": "https://davedevelopment.co.uk",
  7403. "role": "Developer"
  7404. },
  7405. {
  7406. "name": "Nathanael Esayeas",
  7407. "email": "nathanael.esayeas@protonmail.com",
  7408. "homepage": "https://github.com/ghostwriter",
  7409. "role": "Lead Developer"
  7410. }
  7411. ],
  7412. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7413. "homepage": "https://github.com/mockery/mockery",
  7414. "keywords": [
  7415. "BDD",
  7416. "TDD",
  7417. "library",
  7418. "mock",
  7419. "mock objects",
  7420. "mockery",
  7421. "stub",
  7422. "test",
  7423. "test double",
  7424. "testing"
  7425. ],
  7426. "support": {
  7427. "docs": "https://docs.mockery.io/",
  7428. "issues": "https://github.com/mockery/mockery/issues",
  7429. "rss": "https://github.com/mockery/mockery/releases.atom",
  7430. "security": "https://github.com/mockery/mockery/security/advisories",
  7431. "source": "https://github.com/mockery/mockery"
  7432. },
  7433. "time": "2024-05-16T03:13:13+00:00"
  7434. },
  7435. {
  7436. "name": "myclabs/deep-copy",
  7437. "version": "1.11.1",
  7438. "source": {
  7439. "type": "git",
  7440. "url": "https://github.com/myclabs/DeepCopy.git",
  7441. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7442. },
  7443. "dist": {
  7444. "type": "zip",
  7445. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7446. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7447. "shasum": ""
  7448. },
  7449. "require": {
  7450. "php": "^7.1 || ^8.0"
  7451. },
  7452. "conflict": {
  7453. "doctrine/collections": "<1.6.8",
  7454. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7455. },
  7456. "require-dev": {
  7457. "doctrine/collections": "^1.6.8",
  7458. "doctrine/common": "^2.13.3 || ^3.2.2",
  7459. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7460. },
  7461. "type": "library",
  7462. "autoload": {
  7463. "files": [
  7464. "src/DeepCopy/deep_copy.php"
  7465. ],
  7466. "psr-4": {
  7467. "DeepCopy\\": "src/DeepCopy/"
  7468. }
  7469. },
  7470. "notification-url": "https://packagist.org/downloads/",
  7471. "license": [
  7472. "MIT"
  7473. ],
  7474. "description": "Create deep copies (clones) of your objects",
  7475. "keywords": [
  7476. "clone",
  7477. "copy",
  7478. "duplicate",
  7479. "object",
  7480. "object graph"
  7481. ],
  7482. "support": {
  7483. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7484. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7485. },
  7486. "funding": [
  7487. {
  7488. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7489. "type": "tidelift"
  7490. }
  7491. ],
  7492. "time": "2023-03-08T13:26:56+00:00"
  7493. },
  7494. {
  7495. "name": "phar-io/manifest",
  7496. "version": "2.0.4",
  7497. "source": {
  7498. "type": "git",
  7499. "url": "https://github.com/phar-io/manifest.git",
  7500. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7501. },
  7502. "dist": {
  7503. "type": "zip",
  7504. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7505. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7506. "shasum": ""
  7507. },
  7508. "require": {
  7509. "ext-dom": "*",
  7510. "ext-libxml": "*",
  7511. "ext-phar": "*",
  7512. "ext-xmlwriter": "*",
  7513. "phar-io/version": "^3.0.1",
  7514. "php": "^7.2 || ^8.0"
  7515. },
  7516. "type": "library",
  7517. "extra": {
  7518. "branch-alias": {
  7519. "dev-master": "2.0.x-dev"
  7520. }
  7521. },
  7522. "autoload": {
  7523. "classmap": [
  7524. "src/"
  7525. ]
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "BSD-3-Clause"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Arne Blankerts",
  7534. "email": "arne@blankerts.de",
  7535. "role": "Developer"
  7536. },
  7537. {
  7538. "name": "Sebastian Heuer",
  7539. "email": "sebastian@phpeople.de",
  7540. "role": "Developer"
  7541. },
  7542. {
  7543. "name": "Sebastian Bergmann",
  7544. "email": "sebastian@phpunit.de",
  7545. "role": "Developer"
  7546. }
  7547. ],
  7548. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7549. "support": {
  7550. "issues": "https://github.com/phar-io/manifest/issues",
  7551. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7552. },
  7553. "funding": [
  7554. {
  7555. "url": "https://github.com/theseer",
  7556. "type": "github"
  7557. }
  7558. ],
  7559. "time": "2024-03-03T12:33:53+00:00"
  7560. },
  7561. {
  7562. "name": "phar-io/version",
  7563. "version": "3.2.1",
  7564. "source": {
  7565. "type": "git",
  7566. "url": "https://github.com/phar-io/version.git",
  7567. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7568. },
  7569. "dist": {
  7570. "type": "zip",
  7571. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7572. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7573. "shasum": ""
  7574. },
  7575. "require": {
  7576. "php": "^7.2 || ^8.0"
  7577. },
  7578. "type": "library",
  7579. "autoload": {
  7580. "classmap": [
  7581. "src/"
  7582. ]
  7583. },
  7584. "notification-url": "https://packagist.org/downloads/",
  7585. "license": [
  7586. "BSD-3-Clause"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "Arne Blankerts",
  7591. "email": "arne@blankerts.de",
  7592. "role": "Developer"
  7593. },
  7594. {
  7595. "name": "Sebastian Heuer",
  7596. "email": "sebastian@phpeople.de",
  7597. "role": "Developer"
  7598. },
  7599. {
  7600. "name": "Sebastian Bergmann",
  7601. "email": "sebastian@phpunit.de",
  7602. "role": "Developer"
  7603. }
  7604. ],
  7605. "description": "Library for handling version information and constraints",
  7606. "support": {
  7607. "issues": "https://github.com/phar-io/version/issues",
  7608. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7609. },
  7610. "time": "2022-02-21T01:04:05+00:00"
  7611. },
  7612. {
  7613. "name": "phpstan/phpstan",
  7614. "version": "1.11.3",
  7615. "source": {
  7616. "type": "git",
  7617. "url": "https://github.com/phpstan/phpstan.git",
  7618. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  7619. },
  7620. "dist": {
  7621. "type": "zip",
  7622. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7623. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7624. "shasum": ""
  7625. },
  7626. "require": {
  7627. "php": "^7.2|^8.0"
  7628. },
  7629. "conflict": {
  7630. "phpstan/phpstan-shim": "*"
  7631. },
  7632. "bin": [
  7633. "phpstan",
  7634. "phpstan.phar"
  7635. ],
  7636. "type": "library",
  7637. "autoload": {
  7638. "files": [
  7639. "bootstrap.php"
  7640. ]
  7641. },
  7642. "notification-url": "https://packagist.org/downloads/",
  7643. "license": [
  7644. "MIT"
  7645. ],
  7646. "description": "PHPStan - PHP Static Analysis Tool",
  7647. "keywords": [
  7648. "dev",
  7649. "static analysis"
  7650. ],
  7651. "support": {
  7652. "docs": "https://phpstan.org/user-guide/getting-started",
  7653. "forum": "https://github.com/phpstan/phpstan/discussions",
  7654. "issues": "https://github.com/phpstan/phpstan/issues",
  7655. "security": "https://github.com/phpstan/phpstan/security/policy",
  7656. "source": "https://github.com/phpstan/phpstan-src"
  7657. },
  7658. "funding": [
  7659. {
  7660. "url": "https://github.com/ondrejmirtes",
  7661. "type": "github"
  7662. },
  7663. {
  7664. "url": "https://github.com/phpstan",
  7665. "type": "github"
  7666. }
  7667. ],
  7668. "time": "2024-05-31T13:53:37+00:00"
  7669. },
  7670. {
  7671. "name": "phpunit/php-code-coverage",
  7672. "version": "10.1.14",
  7673. "source": {
  7674. "type": "git",
  7675. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7676. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  7677. },
  7678. "dist": {
  7679. "type": "zip",
  7680. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7681. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7682. "shasum": ""
  7683. },
  7684. "require": {
  7685. "ext-dom": "*",
  7686. "ext-libxml": "*",
  7687. "ext-xmlwriter": "*",
  7688. "nikic/php-parser": "^4.18 || ^5.0",
  7689. "php": ">=8.1",
  7690. "phpunit/php-file-iterator": "^4.0",
  7691. "phpunit/php-text-template": "^3.0",
  7692. "sebastian/code-unit-reverse-lookup": "^3.0",
  7693. "sebastian/complexity": "^3.0",
  7694. "sebastian/environment": "^6.0",
  7695. "sebastian/lines-of-code": "^2.0",
  7696. "sebastian/version": "^4.0",
  7697. "theseer/tokenizer": "^1.2.0"
  7698. },
  7699. "require-dev": {
  7700. "phpunit/phpunit": "^10.1"
  7701. },
  7702. "suggest": {
  7703. "ext-pcov": "PHP extension that provides line coverage",
  7704. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7705. },
  7706. "type": "library",
  7707. "extra": {
  7708. "branch-alias": {
  7709. "dev-main": "10.1-dev"
  7710. }
  7711. },
  7712. "autoload": {
  7713. "classmap": [
  7714. "src/"
  7715. ]
  7716. },
  7717. "notification-url": "https://packagist.org/downloads/",
  7718. "license": [
  7719. "BSD-3-Clause"
  7720. ],
  7721. "authors": [
  7722. {
  7723. "name": "Sebastian Bergmann",
  7724. "email": "sebastian@phpunit.de",
  7725. "role": "lead"
  7726. }
  7727. ],
  7728. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7729. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7730. "keywords": [
  7731. "coverage",
  7732. "testing",
  7733. "xunit"
  7734. ],
  7735. "support": {
  7736. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7737. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7738. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  7739. },
  7740. "funding": [
  7741. {
  7742. "url": "https://github.com/sebastianbergmann",
  7743. "type": "github"
  7744. }
  7745. ],
  7746. "time": "2024-03-12T15:33:41+00:00"
  7747. },
  7748. {
  7749. "name": "phpunit/php-file-iterator",
  7750. "version": "4.1.0",
  7751. "source": {
  7752. "type": "git",
  7753. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7754. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7755. },
  7756. "dist": {
  7757. "type": "zip",
  7758. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7759. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7760. "shasum": ""
  7761. },
  7762. "require": {
  7763. "php": ">=8.1"
  7764. },
  7765. "require-dev": {
  7766. "phpunit/phpunit": "^10.0"
  7767. },
  7768. "type": "library",
  7769. "extra": {
  7770. "branch-alias": {
  7771. "dev-main": "4.0-dev"
  7772. }
  7773. },
  7774. "autoload": {
  7775. "classmap": [
  7776. "src/"
  7777. ]
  7778. },
  7779. "notification-url": "https://packagist.org/downloads/",
  7780. "license": [
  7781. "BSD-3-Clause"
  7782. ],
  7783. "authors": [
  7784. {
  7785. "name": "Sebastian Bergmann",
  7786. "email": "sebastian@phpunit.de",
  7787. "role": "lead"
  7788. }
  7789. ],
  7790. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7791. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7792. "keywords": [
  7793. "filesystem",
  7794. "iterator"
  7795. ],
  7796. "support": {
  7797. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7798. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7799. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7800. },
  7801. "funding": [
  7802. {
  7803. "url": "https://github.com/sebastianbergmann",
  7804. "type": "github"
  7805. }
  7806. ],
  7807. "time": "2023-08-31T06:24:48+00:00"
  7808. },
  7809. {
  7810. "name": "phpunit/php-invoker",
  7811. "version": "4.0.0",
  7812. "source": {
  7813. "type": "git",
  7814. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7815. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7816. },
  7817. "dist": {
  7818. "type": "zip",
  7819. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7820. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7821. "shasum": ""
  7822. },
  7823. "require": {
  7824. "php": ">=8.1"
  7825. },
  7826. "require-dev": {
  7827. "ext-pcntl": "*",
  7828. "phpunit/phpunit": "^10.0"
  7829. },
  7830. "suggest": {
  7831. "ext-pcntl": "*"
  7832. },
  7833. "type": "library",
  7834. "extra": {
  7835. "branch-alias": {
  7836. "dev-main": "4.0-dev"
  7837. }
  7838. },
  7839. "autoload": {
  7840. "classmap": [
  7841. "src/"
  7842. ]
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "BSD-3-Clause"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Sebastian Bergmann",
  7851. "email": "sebastian@phpunit.de",
  7852. "role": "lead"
  7853. }
  7854. ],
  7855. "description": "Invoke callables with a timeout",
  7856. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7857. "keywords": [
  7858. "process"
  7859. ],
  7860. "support": {
  7861. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7862. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7863. },
  7864. "funding": [
  7865. {
  7866. "url": "https://github.com/sebastianbergmann",
  7867. "type": "github"
  7868. }
  7869. ],
  7870. "time": "2023-02-03T06:56:09+00:00"
  7871. },
  7872. {
  7873. "name": "phpunit/php-text-template",
  7874. "version": "3.0.1",
  7875. "source": {
  7876. "type": "git",
  7877. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7878. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7879. },
  7880. "dist": {
  7881. "type": "zip",
  7882. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7883. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7884. "shasum": ""
  7885. },
  7886. "require": {
  7887. "php": ">=8.1"
  7888. },
  7889. "require-dev": {
  7890. "phpunit/phpunit": "^10.0"
  7891. },
  7892. "type": "library",
  7893. "extra": {
  7894. "branch-alias": {
  7895. "dev-main": "3.0-dev"
  7896. }
  7897. },
  7898. "autoload": {
  7899. "classmap": [
  7900. "src/"
  7901. ]
  7902. },
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "BSD-3-Clause"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Sebastian Bergmann",
  7910. "email": "sebastian@phpunit.de",
  7911. "role": "lead"
  7912. }
  7913. ],
  7914. "description": "Simple template engine.",
  7915. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7916. "keywords": [
  7917. "template"
  7918. ],
  7919. "support": {
  7920. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7921. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7922. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  7923. },
  7924. "funding": [
  7925. {
  7926. "url": "https://github.com/sebastianbergmann",
  7927. "type": "github"
  7928. }
  7929. ],
  7930. "time": "2023-08-31T14:07:24+00:00"
  7931. },
  7932. {
  7933. "name": "phpunit/php-timer",
  7934. "version": "6.0.0",
  7935. "source": {
  7936. "type": "git",
  7937. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7938. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  7939. },
  7940. "dist": {
  7941. "type": "zip",
  7942. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7943. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7944. "shasum": ""
  7945. },
  7946. "require": {
  7947. "php": ">=8.1"
  7948. },
  7949. "require-dev": {
  7950. "phpunit/phpunit": "^10.0"
  7951. },
  7952. "type": "library",
  7953. "extra": {
  7954. "branch-alias": {
  7955. "dev-main": "6.0-dev"
  7956. }
  7957. },
  7958. "autoload": {
  7959. "classmap": [
  7960. "src/"
  7961. ]
  7962. },
  7963. "notification-url": "https://packagist.org/downloads/",
  7964. "license": [
  7965. "BSD-3-Clause"
  7966. ],
  7967. "authors": [
  7968. {
  7969. "name": "Sebastian Bergmann",
  7970. "email": "sebastian@phpunit.de",
  7971. "role": "lead"
  7972. }
  7973. ],
  7974. "description": "Utility class for timing",
  7975. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7976. "keywords": [
  7977. "timer"
  7978. ],
  7979. "support": {
  7980. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7981. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  7982. },
  7983. "funding": [
  7984. {
  7985. "url": "https://github.com/sebastianbergmann",
  7986. "type": "github"
  7987. }
  7988. ],
  7989. "time": "2023-02-03T06:57:52+00:00"
  7990. },
  7991. {
  7992. "name": "phpunit/phpunit",
  7993. "version": "10.5.20",
  7994. "source": {
  7995. "type": "git",
  7996. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7997. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  7998. },
  7999. "dist": {
  8000. "type": "zip",
  8001. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8002. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8003. "shasum": ""
  8004. },
  8005. "require": {
  8006. "ext-dom": "*",
  8007. "ext-json": "*",
  8008. "ext-libxml": "*",
  8009. "ext-mbstring": "*",
  8010. "ext-xml": "*",
  8011. "ext-xmlwriter": "*",
  8012. "myclabs/deep-copy": "^1.10.1",
  8013. "phar-io/manifest": "^2.0.3",
  8014. "phar-io/version": "^3.0.2",
  8015. "php": ">=8.1",
  8016. "phpunit/php-code-coverage": "^10.1.5",
  8017. "phpunit/php-file-iterator": "^4.0",
  8018. "phpunit/php-invoker": "^4.0",
  8019. "phpunit/php-text-template": "^3.0",
  8020. "phpunit/php-timer": "^6.0",
  8021. "sebastian/cli-parser": "^2.0",
  8022. "sebastian/code-unit": "^2.0",
  8023. "sebastian/comparator": "^5.0",
  8024. "sebastian/diff": "^5.0",
  8025. "sebastian/environment": "^6.0",
  8026. "sebastian/exporter": "^5.1",
  8027. "sebastian/global-state": "^6.0.1",
  8028. "sebastian/object-enumerator": "^5.0",
  8029. "sebastian/recursion-context": "^5.0",
  8030. "sebastian/type": "^4.0",
  8031. "sebastian/version": "^4.0"
  8032. },
  8033. "suggest": {
  8034. "ext-soap": "To be able to generate mocks based on WSDL files"
  8035. },
  8036. "bin": [
  8037. "phpunit"
  8038. ],
  8039. "type": "library",
  8040. "extra": {
  8041. "branch-alias": {
  8042. "dev-main": "10.5-dev"
  8043. }
  8044. },
  8045. "autoload": {
  8046. "files": [
  8047. "src/Framework/Assert/Functions.php"
  8048. ],
  8049. "classmap": [
  8050. "src/"
  8051. ]
  8052. },
  8053. "notification-url": "https://packagist.org/downloads/",
  8054. "license": [
  8055. "BSD-3-Clause"
  8056. ],
  8057. "authors": [
  8058. {
  8059. "name": "Sebastian Bergmann",
  8060. "email": "sebastian@phpunit.de",
  8061. "role": "lead"
  8062. }
  8063. ],
  8064. "description": "The PHP Unit Testing framework.",
  8065. "homepage": "https://phpunit.de/",
  8066. "keywords": [
  8067. "phpunit",
  8068. "testing",
  8069. "xunit"
  8070. ],
  8071. "support": {
  8072. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8073. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8074. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8075. },
  8076. "funding": [
  8077. {
  8078. "url": "https://phpunit.de/sponsors.html",
  8079. "type": "custom"
  8080. },
  8081. {
  8082. "url": "https://github.com/sebastianbergmann",
  8083. "type": "github"
  8084. },
  8085. {
  8086. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8087. "type": "tidelift"
  8088. }
  8089. ],
  8090. "time": "2024-04-24T06:32:35+00:00"
  8091. },
  8092. {
  8093. "name": "react/cache",
  8094. "version": "v1.2.0",
  8095. "source": {
  8096. "type": "git",
  8097. "url": "https://github.com/reactphp/cache.git",
  8098. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8099. },
  8100. "dist": {
  8101. "type": "zip",
  8102. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8103. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8104. "shasum": ""
  8105. },
  8106. "require": {
  8107. "php": ">=5.3.0",
  8108. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8109. },
  8110. "require-dev": {
  8111. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8112. },
  8113. "type": "library",
  8114. "autoload": {
  8115. "psr-4": {
  8116. "React\\Cache\\": "src/"
  8117. }
  8118. },
  8119. "notification-url": "https://packagist.org/downloads/",
  8120. "license": [
  8121. "MIT"
  8122. ],
  8123. "authors": [
  8124. {
  8125. "name": "Christian Lück",
  8126. "email": "christian@clue.engineering",
  8127. "homepage": "https://clue.engineering/"
  8128. },
  8129. {
  8130. "name": "Cees-Jan Kiewiet",
  8131. "email": "reactphp@ceesjankiewiet.nl",
  8132. "homepage": "https://wyrihaximus.net/"
  8133. },
  8134. {
  8135. "name": "Jan Sorgalla",
  8136. "email": "jsorgalla@gmail.com",
  8137. "homepage": "https://sorgalla.com/"
  8138. },
  8139. {
  8140. "name": "Chris Boden",
  8141. "email": "cboden@gmail.com",
  8142. "homepage": "https://cboden.dev/"
  8143. }
  8144. ],
  8145. "description": "Async, Promise-based cache interface for ReactPHP",
  8146. "keywords": [
  8147. "cache",
  8148. "caching",
  8149. "promise",
  8150. "reactphp"
  8151. ],
  8152. "support": {
  8153. "issues": "https://github.com/reactphp/cache/issues",
  8154. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8155. },
  8156. "funding": [
  8157. {
  8158. "url": "https://opencollective.com/reactphp",
  8159. "type": "open_collective"
  8160. }
  8161. ],
  8162. "time": "2022-11-30T15:59:55+00:00"
  8163. },
  8164. {
  8165. "name": "react/child-process",
  8166. "version": "v0.6.5",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/reactphp/child-process.git",
  8170. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8175. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8176. "shasum": ""
  8177. },
  8178. "require": {
  8179. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8180. "php": ">=5.3.0",
  8181. "react/event-loop": "^1.2",
  8182. "react/stream": "^1.2"
  8183. },
  8184. "require-dev": {
  8185. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8186. "react/socket": "^1.8",
  8187. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8188. },
  8189. "type": "library",
  8190. "autoload": {
  8191. "psr-4": {
  8192. "React\\ChildProcess\\": "src"
  8193. }
  8194. },
  8195. "notification-url": "https://packagist.org/downloads/",
  8196. "license": [
  8197. "MIT"
  8198. ],
  8199. "authors": [
  8200. {
  8201. "name": "Christian Lück",
  8202. "email": "christian@clue.engineering",
  8203. "homepage": "https://clue.engineering/"
  8204. },
  8205. {
  8206. "name": "Cees-Jan Kiewiet",
  8207. "email": "reactphp@ceesjankiewiet.nl",
  8208. "homepage": "https://wyrihaximus.net/"
  8209. },
  8210. {
  8211. "name": "Jan Sorgalla",
  8212. "email": "jsorgalla@gmail.com",
  8213. "homepage": "https://sorgalla.com/"
  8214. },
  8215. {
  8216. "name": "Chris Boden",
  8217. "email": "cboden@gmail.com",
  8218. "homepage": "https://cboden.dev/"
  8219. }
  8220. ],
  8221. "description": "Event-driven library for executing child processes with ReactPHP.",
  8222. "keywords": [
  8223. "event-driven",
  8224. "process",
  8225. "reactphp"
  8226. ],
  8227. "support": {
  8228. "issues": "https://github.com/reactphp/child-process/issues",
  8229. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8230. },
  8231. "funding": [
  8232. {
  8233. "url": "https://github.com/WyriHaximus",
  8234. "type": "github"
  8235. },
  8236. {
  8237. "url": "https://github.com/clue",
  8238. "type": "github"
  8239. }
  8240. ],
  8241. "time": "2022-09-16T13:41:56+00:00"
  8242. },
  8243. {
  8244. "name": "react/dns",
  8245. "version": "v1.12.0",
  8246. "source": {
  8247. "type": "git",
  8248. "url": "https://github.com/reactphp/dns.git",
  8249. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8250. },
  8251. "dist": {
  8252. "type": "zip",
  8253. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8254. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8255. "shasum": ""
  8256. },
  8257. "require": {
  8258. "php": ">=5.3.0",
  8259. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8260. "react/event-loop": "^1.2",
  8261. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8262. },
  8263. "require-dev": {
  8264. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8265. "react/async": "^4 || ^3 || ^2",
  8266. "react/promise-timer": "^1.9"
  8267. },
  8268. "type": "library",
  8269. "autoload": {
  8270. "psr-4": {
  8271. "React\\Dns\\": "src/"
  8272. }
  8273. },
  8274. "notification-url": "https://packagist.org/downloads/",
  8275. "license": [
  8276. "MIT"
  8277. ],
  8278. "authors": [
  8279. {
  8280. "name": "Christian Lück",
  8281. "email": "christian@clue.engineering",
  8282. "homepage": "https://clue.engineering/"
  8283. },
  8284. {
  8285. "name": "Cees-Jan Kiewiet",
  8286. "email": "reactphp@ceesjankiewiet.nl",
  8287. "homepage": "https://wyrihaximus.net/"
  8288. },
  8289. {
  8290. "name": "Jan Sorgalla",
  8291. "email": "jsorgalla@gmail.com",
  8292. "homepage": "https://sorgalla.com/"
  8293. },
  8294. {
  8295. "name": "Chris Boden",
  8296. "email": "cboden@gmail.com",
  8297. "homepage": "https://cboden.dev/"
  8298. }
  8299. ],
  8300. "description": "Async DNS resolver for ReactPHP",
  8301. "keywords": [
  8302. "async",
  8303. "dns",
  8304. "dns-resolver",
  8305. "reactphp"
  8306. ],
  8307. "support": {
  8308. "issues": "https://github.com/reactphp/dns/issues",
  8309. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8310. },
  8311. "funding": [
  8312. {
  8313. "url": "https://opencollective.com/reactphp",
  8314. "type": "open_collective"
  8315. }
  8316. ],
  8317. "time": "2023-11-29T12:41:06+00:00"
  8318. },
  8319. {
  8320. "name": "react/event-loop",
  8321. "version": "v1.5.0",
  8322. "source": {
  8323. "type": "git",
  8324. "url": "https://github.com/reactphp/event-loop.git",
  8325. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8326. },
  8327. "dist": {
  8328. "type": "zip",
  8329. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8330. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8331. "shasum": ""
  8332. },
  8333. "require": {
  8334. "php": ">=5.3.0"
  8335. },
  8336. "require-dev": {
  8337. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8338. },
  8339. "suggest": {
  8340. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8341. },
  8342. "type": "library",
  8343. "autoload": {
  8344. "psr-4": {
  8345. "React\\EventLoop\\": "src/"
  8346. }
  8347. },
  8348. "notification-url": "https://packagist.org/downloads/",
  8349. "license": [
  8350. "MIT"
  8351. ],
  8352. "authors": [
  8353. {
  8354. "name": "Christian Lück",
  8355. "email": "christian@clue.engineering",
  8356. "homepage": "https://clue.engineering/"
  8357. },
  8358. {
  8359. "name": "Cees-Jan Kiewiet",
  8360. "email": "reactphp@ceesjankiewiet.nl",
  8361. "homepage": "https://wyrihaximus.net/"
  8362. },
  8363. {
  8364. "name": "Jan Sorgalla",
  8365. "email": "jsorgalla@gmail.com",
  8366. "homepage": "https://sorgalla.com/"
  8367. },
  8368. {
  8369. "name": "Chris Boden",
  8370. "email": "cboden@gmail.com",
  8371. "homepage": "https://cboden.dev/"
  8372. }
  8373. ],
  8374. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8375. "keywords": [
  8376. "asynchronous",
  8377. "event-loop"
  8378. ],
  8379. "support": {
  8380. "issues": "https://github.com/reactphp/event-loop/issues",
  8381. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8382. },
  8383. "funding": [
  8384. {
  8385. "url": "https://opencollective.com/reactphp",
  8386. "type": "open_collective"
  8387. }
  8388. ],
  8389. "time": "2023-11-13T13:48:05+00:00"
  8390. },
  8391. {
  8392. "name": "react/promise",
  8393. "version": "v3.2.0",
  8394. "source": {
  8395. "type": "git",
  8396. "url": "https://github.com/reactphp/promise.git",
  8397. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8398. },
  8399. "dist": {
  8400. "type": "zip",
  8401. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8402. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8403. "shasum": ""
  8404. },
  8405. "require": {
  8406. "php": ">=7.1.0"
  8407. },
  8408. "require-dev": {
  8409. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8410. "phpunit/phpunit": "^9.6 || ^7.5"
  8411. },
  8412. "type": "library",
  8413. "autoload": {
  8414. "files": [
  8415. "src/functions_include.php"
  8416. ],
  8417. "psr-4": {
  8418. "React\\Promise\\": "src/"
  8419. }
  8420. },
  8421. "notification-url": "https://packagist.org/downloads/",
  8422. "license": [
  8423. "MIT"
  8424. ],
  8425. "authors": [
  8426. {
  8427. "name": "Jan Sorgalla",
  8428. "email": "jsorgalla@gmail.com",
  8429. "homepage": "https://sorgalla.com/"
  8430. },
  8431. {
  8432. "name": "Christian Lück",
  8433. "email": "christian@clue.engineering",
  8434. "homepage": "https://clue.engineering/"
  8435. },
  8436. {
  8437. "name": "Cees-Jan Kiewiet",
  8438. "email": "reactphp@ceesjankiewiet.nl",
  8439. "homepage": "https://wyrihaximus.net/"
  8440. },
  8441. {
  8442. "name": "Chris Boden",
  8443. "email": "cboden@gmail.com",
  8444. "homepage": "https://cboden.dev/"
  8445. }
  8446. ],
  8447. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8448. "keywords": [
  8449. "promise",
  8450. "promises"
  8451. ],
  8452. "support": {
  8453. "issues": "https://github.com/reactphp/promise/issues",
  8454. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8455. },
  8456. "funding": [
  8457. {
  8458. "url": "https://opencollective.com/reactphp",
  8459. "type": "open_collective"
  8460. }
  8461. ],
  8462. "time": "2024-05-24T10:39:05+00:00"
  8463. },
  8464. {
  8465. "name": "react/socket",
  8466. "version": "v1.15.0",
  8467. "source": {
  8468. "type": "git",
  8469. "url": "https://github.com/reactphp/socket.git",
  8470. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8471. },
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8475. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8476. "shasum": ""
  8477. },
  8478. "require": {
  8479. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8480. "php": ">=5.3.0",
  8481. "react/dns": "^1.11",
  8482. "react/event-loop": "^1.2",
  8483. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8484. "react/stream": "^1.2"
  8485. },
  8486. "require-dev": {
  8487. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8488. "react/async": "^4 || ^3 || ^2",
  8489. "react/promise-stream": "^1.4",
  8490. "react/promise-timer": "^1.10"
  8491. },
  8492. "type": "library",
  8493. "autoload": {
  8494. "psr-4": {
  8495. "React\\Socket\\": "src/"
  8496. }
  8497. },
  8498. "notification-url": "https://packagist.org/downloads/",
  8499. "license": [
  8500. "MIT"
  8501. ],
  8502. "authors": [
  8503. {
  8504. "name": "Christian Lück",
  8505. "email": "christian@clue.engineering",
  8506. "homepage": "https://clue.engineering/"
  8507. },
  8508. {
  8509. "name": "Cees-Jan Kiewiet",
  8510. "email": "reactphp@ceesjankiewiet.nl",
  8511. "homepage": "https://wyrihaximus.net/"
  8512. },
  8513. {
  8514. "name": "Jan Sorgalla",
  8515. "email": "jsorgalla@gmail.com",
  8516. "homepage": "https://sorgalla.com/"
  8517. },
  8518. {
  8519. "name": "Chris Boden",
  8520. "email": "cboden@gmail.com",
  8521. "homepage": "https://cboden.dev/"
  8522. }
  8523. ],
  8524. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8525. "keywords": [
  8526. "Connection",
  8527. "Socket",
  8528. "async",
  8529. "reactphp",
  8530. "stream"
  8531. ],
  8532. "support": {
  8533. "issues": "https://github.com/reactphp/socket/issues",
  8534. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  8535. },
  8536. "funding": [
  8537. {
  8538. "url": "https://opencollective.com/reactphp",
  8539. "type": "open_collective"
  8540. }
  8541. ],
  8542. "time": "2023-12-15T11:02:10+00:00"
  8543. },
  8544. {
  8545. "name": "react/stream",
  8546. "version": "v1.3.0",
  8547. "source": {
  8548. "type": "git",
  8549. "url": "https://github.com/reactphp/stream.git",
  8550. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  8551. },
  8552. "dist": {
  8553. "type": "zip",
  8554. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8555. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8556. "shasum": ""
  8557. },
  8558. "require": {
  8559. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8560. "php": ">=5.3.8",
  8561. "react/event-loop": "^1.2"
  8562. },
  8563. "require-dev": {
  8564. "clue/stream-filter": "~1.2",
  8565. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8566. },
  8567. "type": "library",
  8568. "autoload": {
  8569. "psr-4": {
  8570. "React\\Stream\\": "src/"
  8571. }
  8572. },
  8573. "notification-url": "https://packagist.org/downloads/",
  8574. "license": [
  8575. "MIT"
  8576. ],
  8577. "authors": [
  8578. {
  8579. "name": "Christian Lück",
  8580. "email": "christian@clue.engineering",
  8581. "homepage": "https://clue.engineering/"
  8582. },
  8583. {
  8584. "name": "Cees-Jan Kiewiet",
  8585. "email": "reactphp@ceesjankiewiet.nl",
  8586. "homepage": "https://wyrihaximus.net/"
  8587. },
  8588. {
  8589. "name": "Jan Sorgalla",
  8590. "email": "jsorgalla@gmail.com",
  8591. "homepage": "https://sorgalla.com/"
  8592. },
  8593. {
  8594. "name": "Chris Boden",
  8595. "email": "cboden@gmail.com",
  8596. "homepage": "https://cboden.dev/"
  8597. }
  8598. ],
  8599. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8600. "keywords": [
  8601. "event-driven",
  8602. "io",
  8603. "non-blocking",
  8604. "pipe",
  8605. "reactphp",
  8606. "readable",
  8607. "stream",
  8608. "writable"
  8609. ],
  8610. "support": {
  8611. "issues": "https://github.com/reactphp/stream/issues",
  8612. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  8613. },
  8614. "funding": [
  8615. {
  8616. "url": "https://opencollective.com/reactphp",
  8617. "type": "open_collective"
  8618. }
  8619. ],
  8620. "time": "2023-06-16T10:52:11+00:00"
  8621. },
  8622. {
  8623. "name": "sebastian/cli-parser",
  8624. "version": "2.0.1",
  8625. "source": {
  8626. "type": "git",
  8627. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8628. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8629. },
  8630. "dist": {
  8631. "type": "zip",
  8632. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8633. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8634. "shasum": ""
  8635. },
  8636. "require": {
  8637. "php": ">=8.1"
  8638. },
  8639. "require-dev": {
  8640. "phpunit/phpunit": "^10.0"
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-main": "2.0-dev"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "classmap": [
  8650. "src/"
  8651. ]
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "BSD-3-Clause"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Sebastian Bergmann",
  8660. "email": "sebastian@phpunit.de",
  8661. "role": "lead"
  8662. }
  8663. ],
  8664. "description": "Library for parsing CLI options",
  8665. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8666. "support": {
  8667. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8668. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8669. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8670. },
  8671. "funding": [
  8672. {
  8673. "url": "https://github.com/sebastianbergmann",
  8674. "type": "github"
  8675. }
  8676. ],
  8677. "time": "2024-03-02T07:12:49+00:00"
  8678. },
  8679. {
  8680. "name": "sebastian/code-unit",
  8681. "version": "2.0.0",
  8682. "source": {
  8683. "type": "git",
  8684. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8685. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8686. },
  8687. "dist": {
  8688. "type": "zip",
  8689. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8690. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8691. "shasum": ""
  8692. },
  8693. "require": {
  8694. "php": ">=8.1"
  8695. },
  8696. "require-dev": {
  8697. "phpunit/phpunit": "^10.0"
  8698. },
  8699. "type": "library",
  8700. "extra": {
  8701. "branch-alias": {
  8702. "dev-main": "2.0-dev"
  8703. }
  8704. },
  8705. "autoload": {
  8706. "classmap": [
  8707. "src/"
  8708. ]
  8709. },
  8710. "notification-url": "https://packagist.org/downloads/",
  8711. "license": [
  8712. "BSD-3-Clause"
  8713. ],
  8714. "authors": [
  8715. {
  8716. "name": "Sebastian Bergmann",
  8717. "email": "sebastian@phpunit.de",
  8718. "role": "lead"
  8719. }
  8720. ],
  8721. "description": "Collection of value objects that represent the PHP code units",
  8722. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8723. "support": {
  8724. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8725. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8726. },
  8727. "funding": [
  8728. {
  8729. "url": "https://github.com/sebastianbergmann",
  8730. "type": "github"
  8731. }
  8732. ],
  8733. "time": "2023-02-03T06:58:43+00:00"
  8734. },
  8735. {
  8736. "name": "sebastian/code-unit-reverse-lookup",
  8737. "version": "3.0.0",
  8738. "source": {
  8739. "type": "git",
  8740. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8741. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8742. },
  8743. "dist": {
  8744. "type": "zip",
  8745. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8746. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8747. "shasum": ""
  8748. },
  8749. "require": {
  8750. "php": ">=8.1"
  8751. },
  8752. "require-dev": {
  8753. "phpunit/phpunit": "^10.0"
  8754. },
  8755. "type": "library",
  8756. "extra": {
  8757. "branch-alias": {
  8758. "dev-main": "3.0-dev"
  8759. }
  8760. },
  8761. "autoload": {
  8762. "classmap": [
  8763. "src/"
  8764. ]
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "BSD-3-Clause"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Sebastian Bergmann",
  8773. "email": "sebastian@phpunit.de"
  8774. }
  8775. ],
  8776. "description": "Looks up which function or method a line of code belongs to",
  8777. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8778. "support": {
  8779. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8780. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://github.com/sebastianbergmann",
  8785. "type": "github"
  8786. }
  8787. ],
  8788. "time": "2023-02-03T06:59:15+00:00"
  8789. },
  8790. {
  8791. "name": "sebastian/comparator",
  8792. "version": "5.0.1",
  8793. "source": {
  8794. "type": "git",
  8795. "url": "https://github.com/sebastianbergmann/comparator.git",
  8796. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  8797. },
  8798. "dist": {
  8799. "type": "zip",
  8800. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  8801. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  8802. "shasum": ""
  8803. },
  8804. "require": {
  8805. "ext-dom": "*",
  8806. "ext-mbstring": "*",
  8807. "php": ">=8.1",
  8808. "sebastian/diff": "^5.0",
  8809. "sebastian/exporter": "^5.0"
  8810. },
  8811. "require-dev": {
  8812. "phpunit/phpunit": "^10.3"
  8813. },
  8814. "type": "library",
  8815. "extra": {
  8816. "branch-alias": {
  8817. "dev-main": "5.0-dev"
  8818. }
  8819. },
  8820. "autoload": {
  8821. "classmap": [
  8822. "src/"
  8823. ]
  8824. },
  8825. "notification-url": "https://packagist.org/downloads/",
  8826. "license": [
  8827. "BSD-3-Clause"
  8828. ],
  8829. "authors": [
  8830. {
  8831. "name": "Sebastian Bergmann",
  8832. "email": "sebastian@phpunit.de"
  8833. },
  8834. {
  8835. "name": "Jeff Welch",
  8836. "email": "whatthejeff@gmail.com"
  8837. },
  8838. {
  8839. "name": "Volker Dusch",
  8840. "email": "github@wallbash.com"
  8841. },
  8842. {
  8843. "name": "Bernhard Schussek",
  8844. "email": "bschussek@2bepublished.at"
  8845. }
  8846. ],
  8847. "description": "Provides the functionality to compare PHP values for equality",
  8848. "homepage": "https://github.com/sebastianbergmann/comparator",
  8849. "keywords": [
  8850. "comparator",
  8851. "compare",
  8852. "equality"
  8853. ],
  8854. "support": {
  8855. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8856. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8857. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  8858. },
  8859. "funding": [
  8860. {
  8861. "url": "https://github.com/sebastianbergmann",
  8862. "type": "github"
  8863. }
  8864. ],
  8865. "time": "2023-08-14T13:18:12+00:00"
  8866. },
  8867. {
  8868. "name": "sebastian/complexity",
  8869. "version": "3.2.0",
  8870. "source": {
  8871. "type": "git",
  8872. "url": "https://github.com/sebastianbergmann/complexity.git",
  8873. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8874. },
  8875. "dist": {
  8876. "type": "zip",
  8877. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8878. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8879. "shasum": ""
  8880. },
  8881. "require": {
  8882. "nikic/php-parser": "^4.18 || ^5.0",
  8883. "php": ">=8.1"
  8884. },
  8885. "require-dev": {
  8886. "phpunit/phpunit": "^10.0"
  8887. },
  8888. "type": "library",
  8889. "extra": {
  8890. "branch-alias": {
  8891. "dev-main": "3.2-dev"
  8892. }
  8893. },
  8894. "autoload": {
  8895. "classmap": [
  8896. "src/"
  8897. ]
  8898. },
  8899. "notification-url": "https://packagist.org/downloads/",
  8900. "license": [
  8901. "BSD-3-Clause"
  8902. ],
  8903. "authors": [
  8904. {
  8905. "name": "Sebastian Bergmann",
  8906. "email": "sebastian@phpunit.de",
  8907. "role": "lead"
  8908. }
  8909. ],
  8910. "description": "Library for calculating the complexity of PHP code units",
  8911. "homepage": "https://github.com/sebastianbergmann/complexity",
  8912. "support": {
  8913. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8914. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8915. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8916. },
  8917. "funding": [
  8918. {
  8919. "url": "https://github.com/sebastianbergmann",
  8920. "type": "github"
  8921. }
  8922. ],
  8923. "time": "2023-12-21T08:37:17+00:00"
  8924. },
  8925. {
  8926. "name": "sebastian/diff",
  8927. "version": "5.1.1",
  8928. "source": {
  8929. "type": "git",
  8930. "url": "https://github.com/sebastianbergmann/diff.git",
  8931. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  8932. },
  8933. "dist": {
  8934. "type": "zip",
  8935. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8936. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8937. "shasum": ""
  8938. },
  8939. "require": {
  8940. "php": ">=8.1"
  8941. },
  8942. "require-dev": {
  8943. "phpunit/phpunit": "^10.0",
  8944. "symfony/process": "^6.4"
  8945. },
  8946. "type": "library",
  8947. "extra": {
  8948. "branch-alias": {
  8949. "dev-main": "5.1-dev"
  8950. }
  8951. },
  8952. "autoload": {
  8953. "classmap": [
  8954. "src/"
  8955. ]
  8956. },
  8957. "notification-url": "https://packagist.org/downloads/",
  8958. "license": [
  8959. "BSD-3-Clause"
  8960. ],
  8961. "authors": [
  8962. {
  8963. "name": "Sebastian Bergmann",
  8964. "email": "sebastian@phpunit.de"
  8965. },
  8966. {
  8967. "name": "Kore Nordmann",
  8968. "email": "mail@kore-nordmann.de"
  8969. }
  8970. ],
  8971. "description": "Diff implementation",
  8972. "homepage": "https://github.com/sebastianbergmann/diff",
  8973. "keywords": [
  8974. "diff",
  8975. "udiff",
  8976. "unidiff",
  8977. "unified diff"
  8978. ],
  8979. "support": {
  8980. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8981. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8982. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  8983. },
  8984. "funding": [
  8985. {
  8986. "url": "https://github.com/sebastianbergmann",
  8987. "type": "github"
  8988. }
  8989. ],
  8990. "time": "2024-03-02T07:15:17+00:00"
  8991. },
  8992. {
  8993. "name": "sebastian/environment",
  8994. "version": "6.1.0",
  8995. "source": {
  8996. "type": "git",
  8997. "url": "https://github.com/sebastianbergmann/environment.git",
  8998. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  8999. },
  9000. "dist": {
  9001. "type": "zip",
  9002. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9003. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9004. "shasum": ""
  9005. },
  9006. "require": {
  9007. "php": ">=8.1"
  9008. },
  9009. "require-dev": {
  9010. "phpunit/phpunit": "^10.0"
  9011. },
  9012. "suggest": {
  9013. "ext-posix": "*"
  9014. },
  9015. "type": "library",
  9016. "extra": {
  9017. "branch-alias": {
  9018. "dev-main": "6.1-dev"
  9019. }
  9020. },
  9021. "autoload": {
  9022. "classmap": [
  9023. "src/"
  9024. ]
  9025. },
  9026. "notification-url": "https://packagist.org/downloads/",
  9027. "license": [
  9028. "BSD-3-Clause"
  9029. ],
  9030. "authors": [
  9031. {
  9032. "name": "Sebastian Bergmann",
  9033. "email": "sebastian@phpunit.de"
  9034. }
  9035. ],
  9036. "description": "Provides functionality to handle HHVM/PHP environments",
  9037. "homepage": "https://github.com/sebastianbergmann/environment",
  9038. "keywords": [
  9039. "Xdebug",
  9040. "environment",
  9041. "hhvm"
  9042. ],
  9043. "support": {
  9044. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9045. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9046. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9047. },
  9048. "funding": [
  9049. {
  9050. "url": "https://github.com/sebastianbergmann",
  9051. "type": "github"
  9052. }
  9053. ],
  9054. "time": "2024-03-23T08:47:14+00:00"
  9055. },
  9056. {
  9057. "name": "sebastian/exporter",
  9058. "version": "5.1.2",
  9059. "source": {
  9060. "type": "git",
  9061. "url": "https://github.com/sebastianbergmann/exporter.git",
  9062. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9063. },
  9064. "dist": {
  9065. "type": "zip",
  9066. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9067. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9068. "shasum": ""
  9069. },
  9070. "require": {
  9071. "ext-mbstring": "*",
  9072. "php": ">=8.1",
  9073. "sebastian/recursion-context": "^5.0"
  9074. },
  9075. "require-dev": {
  9076. "phpunit/phpunit": "^10.0"
  9077. },
  9078. "type": "library",
  9079. "extra": {
  9080. "branch-alias": {
  9081. "dev-main": "5.1-dev"
  9082. }
  9083. },
  9084. "autoload": {
  9085. "classmap": [
  9086. "src/"
  9087. ]
  9088. },
  9089. "notification-url": "https://packagist.org/downloads/",
  9090. "license": [
  9091. "BSD-3-Clause"
  9092. ],
  9093. "authors": [
  9094. {
  9095. "name": "Sebastian Bergmann",
  9096. "email": "sebastian@phpunit.de"
  9097. },
  9098. {
  9099. "name": "Jeff Welch",
  9100. "email": "whatthejeff@gmail.com"
  9101. },
  9102. {
  9103. "name": "Volker Dusch",
  9104. "email": "github@wallbash.com"
  9105. },
  9106. {
  9107. "name": "Adam Harvey",
  9108. "email": "aharvey@php.net"
  9109. },
  9110. {
  9111. "name": "Bernhard Schussek",
  9112. "email": "bschussek@gmail.com"
  9113. }
  9114. ],
  9115. "description": "Provides the functionality to export PHP variables for visualization",
  9116. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9117. "keywords": [
  9118. "export",
  9119. "exporter"
  9120. ],
  9121. "support": {
  9122. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9123. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9124. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9125. },
  9126. "funding": [
  9127. {
  9128. "url": "https://github.com/sebastianbergmann",
  9129. "type": "github"
  9130. }
  9131. ],
  9132. "time": "2024-03-02T07:17:12+00:00"
  9133. },
  9134. {
  9135. "name": "sebastian/global-state",
  9136. "version": "6.0.2",
  9137. "source": {
  9138. "type": "git",
  9139. "url": "https://github.com/sebastianbergmann/global-state.git",
  9140. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9141. },
  9142. "dist": {
  9143. "type": "zip",
  9144. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9145. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9146. "shasum": ""
  9147. },
  9148. "require": {
  9149. "php": ">=8.1",
  9150. "sebastian/object-reflector": "^3.0",
  9151. "sebastian/recursion-context": "^5.0"
  9152. },
  9153. "require-dev": {
  9154. "ext-dom": "*",
  9155. "phpunit/phpunit": "^10.0"
  9156. },
  9157. "type": "library",
  9158. "extra": {
  9159. "branch-alias": {
  9160. "dev-main": "6.0-dev"
  9161. }
  9162. },
  9163. "autoload": {
  9164. "classmap": [
  9165. "src/"
  9166. ]
  9167. },
  9168. "notification-url": "https://packagist.org/downloads/",
  9169. "license": [
  9170. "BSD-3-Clause"
  9171. ],
  9172. "authors": [
  9173. {
  9174. "name": "Sebastian Bergmann",
  9175. "email": "sebastian@phpunit.de"
  9176. }
  9177. ],
  9178. "description": "Snapshotting of global state",
  9179. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9180. "keywords": [
  9181. "global state"
  9182. ],
  9183. "support": {
  9184. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9185. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9186. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9187. },
  9188. "funding": [
  9189. {
  9190. "url": "https://github.com/sebastianbergmann",
  9191. "type": "github"
  9192. }
  9193. ],
  9194. "time": "2024-03-02T07:19:19+00:00"
  9195. },
  9196. {
  9197. "name": "sebastian/lines-of-code",
  9198. "version": "2.0.2",
  9199. "source": {
  9200. "type": "git",
  9201. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9202. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9203. },
  9204. "dist": {
  9205. "type": "zip",
  9206. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9207. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9208. "shasum": ""
  9209. },
  9210. "require": {
  9211. "nikic/php-parser": "^4.18 || ^5.0",
  9212. "php": ">=8.1"
  9213. },
  9214. "require-dev": {
  9215. "phpunit/phpunit": "^10.0"
  9216. },
  9217. "type": "library",
  9218. "extra": {
  9219. "branch-alias": {
  9220. "dev-main": "2.0-dev"
  9221. }
  9222. },
  9223. "autoload": {
  9224. "classmap": [
  9225. "src/"
  9226. ]
  9227. },
  9228. "notification-url": "https://packagist.org/downloads/",
  9229. "license": [
  9230. "BSD-3-Clause"
  9231. ],
  9232. "authors": [
  9233. {
  9234. "name": "Sebastian Bergmann",
  9235. "email": "sebastian@phpunit.de",
  9236. "role": "lead"
  9237. }
  9238. ],
  9239. "description": "Library for counting the lines of code in PHP source code",
  9240. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9241. "support": {
  9242. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9243. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9244. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9245. },
  9246. "funding": [
  9247. {
  9248. "url": "https://github.com/sebastianbergmann",
  9249. "type": "github"
  9250. }
  9251. ],
  9252. "time": "2023-12-21T08:38:20+00:00"
  9253. },
  9254. {
  9255. "name": "sebastian/object-enumerator",
  9256. "version": "5.0.0",
  9257. "source": {
  9258. "type": "git",
  9259. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9260. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9261. },
  9262. "dist": {
  9263. "type": "zip",
  9264. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9265. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9266. "shasum": ""
  9267. },
  9268. "require": {
  9269. "php": ">=8.1",
  9270. "sebastian/object-reflector": "^3.0",
  9271. "sebastian/recursion-context": "^5.0"
  9272. },
  9273. "require-dev": {
  9274. "phpunit/phpunit": "^10.0"
  9275. },
  9276. "type": "library",
  9277. "extra": {
  9278. "branch-alias": {
  9279. "dev-main": "5.0-dev"
  9280. }
  9281. },
  9282. "autoload": {
  9283. "classmap": [
  9284. "src/"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "BSD-3-Clause"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Sebastian Bergmann",
  9294. "email": "sebastian@phpunit.de"
  9295. }
  9296. ],
  9297. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9298. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9299. "support": {
  9300. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9301. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9302. },
  9303. "funding": [
  9304. {
  9305. "url": "https://github.com/sebastianbergmann",
  9306. "type": "github"
  9307. }
  9308. ],
  9309. "time": "2023-02-03T07:08:32+00:00"
  9310. },
  9311. {
  9312. "name": "sebastian/object-reflector",
  9313. "version": "3.0.0",
  9314. "source": {
  9315. "type": "git",
  9316. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9317. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9318. },
  9319. "dist": {
  9320. "type": "zip",
  9321. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9322. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9323. "shasum": ""
  9324. },
  9325. "require": {
  9326. "php": ">=8.1"
  9327. },
  9328. "require-dev": {
  9329. "phpunit/phpunit": "^10.0"
  9330. },
  9331. "type": "library",
  9332. "extra": {
  9333. "branch-alias": {
  9334. "dev-main": "3.0-dev"
  9335. }
  9336. },
  9337. "autoload": {
  9338. "classmap": [
  9339. "src/"
  9340. ]
  9341. },
  9342. "notification-url": "https://packagist.org/downloads/",
  9343. "license": [
  9344. "BSD-3-Clause"
  9345. ],
  9346. "authors": [
  9347. {
  9348. "name": "Sebastian Bergmann",
  9349. "email": "sebastian@phpunit.de"
  9350. }
  9351. ],
  9352. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9353. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9354. "support": {
  9355. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9356. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9357. },
  9358. "funding": [
  9359. {
  9360. "url": "https://github.com/sebastianbergmann",
  9361. "type": "github"
  9362. }
  9363. ],
  9364. "time": "2023-02-03T07:06:18+00:00"
  9365. },
  9366. {
  9367. "name": "sebastian/recursion-context",
  9368. "version": "5.0.0",
  9369. "source": {
  9370. "type": "git",
  9371. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9372. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9373. },
  9374. "dist": {
  9375. "type": "zip",
  9376. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9377. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9378. "shasum": ""
  9379. },
  9380. "require": {
  9381. "php": ">=8.1"
  9382. },
  9383. "require-dev": {
  9384. "phpunit/phpunit": "^10.0"
  9385. },
  9386. "type": "library",
  9387. "extra": {
  9388. "branch-alias": {
  9389. "dev-main": "5.0-dev"
  9390. }
  9391. },
  9392. "autoload": {
  9393. "classmap": [
  9394. "src/"
  9395. ]
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "BSD-3-Clause"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Sebastian Bergmann",
  9404. "email": "sebastian@phpunit.de"
  9405. },
  9406. {
  9407. "name": "Jeff Welch",
  9408. "email": "whatthejeff@gmail.com"
  9409. },
  9410. {
  9411. "name": "Adam Harvey",
  9412. "email": "aharvey@php.net"
  9413. }
  9414. ],
  9415. "description": "Provides functionality to recursively process PHP variables",
  9416. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9417. "support": {
  9418. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9419. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9420. },
  9421. "funding": [
  9422. {
  9423. "url": "https://github.com/sebastianbergmann",
  9424. "type": "github"
  9425. }
  9426. ],
  9427. "time": "2023-02-03T07:05:40+00:00"
  9428. },
  9429. {
  9430. "name": "sebastian/type",
  9431. "version": "4.0.0",
  9432. "source": {
  9433. "type": "git",
  9434. "url": "https://github.com/sebastianbergmann/type.git",
  9435. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9436. },
  9437. "dist": {
  9438. "type": "zip",
  9439. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9440. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9441. "shasum": ""
  9442. },
  9443. "require": {
  9444. "php": ">=8.1"
  9445. },
  9446. "require-dev": {
  9447. "phpunit/phpunit": "^10.0"
  9448. },
  9449. "type": "library",
  9450. "extra": {
  9451. "branch-alias": {
  9452. "dev-main": "4.0-dev"
  9453. }
  9454. },
  9455. "autoload": {
  9456. "classmap": [
  9457. "src/"
  9458. ]
  9459. },
  9460. "notification-url": "https://packagist.org/downloads/",
  9461. "license": [
  9462. "BSD-3-Clause"
  9463. ],
  9464. "authors": [
  9465. {
  9466. "name": "Sebastian Bergmann",
  9467. "email": "sebastian@phpunit.de",
  9468. "role": "lead"
  9469. }
  9470. ],
  9471. "description": "Collection of value objects that represent the types of the PHP type system",
  9472. "homepage": "https://github.com/sebastianbergmann/type",
  9473. "support": {
  9474. "issues": "https://github.com/sebastianbergmann/type/issues",
  9475. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9476. },
  9477. "funding": [
  9478. {
  9479. "url": "https://github.com/sebastianbergmann",
  9480. "type": "github"
  9481. }
  9482. ],
  9483. "time": "2023-02-03T07:10:45+00:00"
  9484. },
  9485. {
  9486. "name": "sebastian/version",
  9487. "version": "4.0.1",
  9488. "source": {
  9489. "type": "git",
  9490. "url": "https://github.com/sebastianbergmann/version.git",
  9491. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9492. },
  9493. "dist": {
  9494. "type": "zip",
  9495. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9496. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9497. "shasum": ""
  9498. },
  9499. "require": {
  9500. "php": ">=8.1"
  9501. },
  9502. "type": "library",
  9503. "extra": {
  9504. "branch-alias": {
  9505. "dev-main": "4.0-dev"
  9506. }
  9507. },
  9508. "autoload": {
  9509. "classmap": [
  9510. "src/"
  9511. ]
  9512. },
  9513. "notification-url": "https://packagist.org/downloads/",
  9514. "license": [
  9515. "BSD-3-Clause"
  9516. ],
  9517. "authors": [
  9518. {
  9519. "name": "Sebastian Bergmann",
  9520. "email": "sebastian@phpunit.de",
  9521. "role": "lead"
  9522. }
  9523. ],
  9524. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9525. "homepage": "https://github.com/sebastianbergmann/version",
  9526. "support": {
  9527. "issues": "https://github.com/sebastianbergmann/version/issues",
  9528. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9529. },
  9530. "funding": [
  9531. {
  9532. "url": "https://github.com/sebastianbergmann",
  9533. "type": "github"
  9534. }
  9535. ],
  9536. "time": "2023-02-07T11:34:05+00:00"
  9537. },
  9538. {
  9539. "name": "swoole/ide-helper",
  9540. "version": "5.1.2",
  9541. "source": {
  9542. "type": "git",
  9543. "url": "https://github.com/swoole/ide-helper.git",
  9544. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  9545. },
  9546. "dist": {
  9547. "type": "zip",
  9548. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  9549. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  9550. "shasum": ""
  9551. },
  9552. "type": "library",
  9553. "notification-url": "https://packagist.org/downloads/",
  9554. "license": [
  9555. "Apache-2.0"
  9556. ],
  9557. "authors": [
  9558. {
  9559. "name": "Team Swoole",
  9560. "email": "team@swoole.com"
  9561. }
  9562. ],
  9563. "description": "IDE help files for Swoole.",
  9564. "support": {
  9565. "issues": "https://github.com/swoole/ide-helper/issues",
  9566. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  9567. },
  9568. "time": "2024-02-01T22:28:11+00:00"
  9569. },
  9570. {
  9571. "name": "symfony/event-dispatcher",
  9572. "version": "v6.4.8",
  9573. "source": {
  9574. "type": "git",
  9575. "url": "https://github.com/symfony/event-dispatcher.git",
  9576. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  9577. },
  9578. "dist": {
  9579. "type": "zip",
  9580. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  9581. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  9582. "shasum": ""
  9583. },
  9584. "require": {
  9585. "php": ">=8.1",
  9586. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9587. },
  9588. "conflict": {
  9589. "symfony/dependency-injection": "<5.4",
  9590. "symfony/service-contracts": "<2.5"
  9591. },
  9592. "provide": {
  9593. "psr/event-dispatcher-implementation": "1.0",
  9594. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9595. },
  9596. "require-dev": {
  9597. "psr/log": "^1|^2|^3",
  9598. "symfony/config": "^5.4|^6.0|^7.0",
  9599. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9600. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9601. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9602. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9603. "symfony/service-contracts": "^2.5|^3",
  9604. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9605. },
  9606. "type": "library",
  9607. "autoload": {
  9608. "psr-4": {
  9609. "Symfony\\Component\\EventDispatcher\\": ""
  9610. },
  9611. "exclude-from-classmap": [
  9612. "/Tests/"
  9613. ]
  9614. },
  9615. "notification-url": "https://packagist.org/downloads/",
  9616. "license": [
  9617. "MIT"
  9618. ],
  9619. "authors": [
  9620. {
  9621. "name": "Fabien Potencier",
  9622. "email": "fabien@symfony.com"
  9623. },
  9624. {
  9625. "name": "Symfony Community",
  9626. "homepage": "https://symfony.com/contributors"
  9627. }
  9628. ],
  9629. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9630. "homepage": "https://symfony.com",
  9631. "support": {
  9632. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  9633. },
  9634. "funding": [
  9635. {
  9636. "url": "https://symfony.com/sponsor",
  9637. "type": "custom"
  9638. },
  9639. {
  9640. "url": "https://github.com/fabpot",
  9641. "type": "github"
  9642. },
  9643. {
  9644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9645. "type": "tidelift"
  9646. }
  9647. ],
  9648. "time": "2024-05-31T14:49:08+00:00"
  9649. },
  9650. {
  9651. "name": "symfony/event-dispatcher-contracts",
  9652. "version": "v3.5.0",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9656. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  9661. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "php": ">=8.1",
  9666. "psr/event-dispatcher": "^1"
  9667. },
  9668. "type": "library",
  9669. "extra": {
  9670. "branch-alias": {
  9671. "dev-main": "3.5-dev"
  9672. },
  9673. "thanks": {
  9674. "name": "symfony/contracts",
  9675. "url": "https://github.com/symfony/contracts"
  9676. }
  9677. },
  9678. "autoload": {
  9679. "psr-4": {
  9680. "Symfony\\Contracts\\EventDispatcher\\": ""
  9681. }
  9682. },
  9683. "notification-url": "https://packagist.org/downloads/",
  9684. "license": [
  9685. "MIT"
  9686. ],
  9687. "authors": [
  9688. {
  9689. "name": "Nicolas Grekas",
  9690. "email": "p@tchwork.com"
  9691. },
  9692. {
  9693. "name": "Symfony Community",
  9694. "homepage": "https://symfony.com/contributors"
  9695. }
  9696. ],
  9697. "description": "Generic abstractions related to dispatching event",
  9698. "homepage": "https://symfony.com",
  9699. "keywords": [
  9700. "abstractions",
  9701. "contracts",
  9702. "decoupling",
  9703. "interfaces",
  9704. "interoperability",
  9705. "standards"
  9706. ],
  9707. "support": {
  9708. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  9709. },
  9710. "funding": [
  9711. {
  9712. "url": "https://symfony.com/sponsor",
  9713. "type": "custom"
  9714. },
  9715. {
  9716. "url": "https://github.com/fabpot",
  9717. "type": "github"
  9718. },
  9719. {
  9720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9721. "type": "tidelift"
  9722. }
  9723. ],
  9724. "time": "2024-04-18T09:32:20+00:00"
  9725. },
  9726. {
  9727. "name": "symfony/filesystem",
  9728. "version": "v6.4.8",
  9729. "source": {
  9730. "type": "git",
  9731. "url": "https://github.com/symfony/filesystem.git",
  9732. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  9733. },
  9734. "dist": {
  9735. "type": "zip",
  9736. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  9737. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  9738. "shasum": ""
  9739. },
  9740. "require": {
  9741. "php": ">=8.1",
  9742. "symfony/polyfill-ctype": "~1.8",
  9743. "symfony/polyfill-mbstring": "~1.8"
  9744. },
  9745. "require-dev": {
  9746. "symfony/process": "^5.4|^6.4|^7.0"
  9747. },
  9748. "type": "library",
  9749. "autoload": {
  9750. "psr-4": {
  9751. "Symfony\\Component\\Filesystem\\": ""
  9752. },
  9753. "exclude-from-classmap": [
  9754. "/Tests/"
  9755. ]
  9756. },
  9757. "notification-url": "https://packagist.org/downloads/",
  9758. "license": [
  9759. "MIT"
  9760. ],
  9761. "authors": [
  9762. {
  9763. "name": "Fabien Potencier",
  9764. "email": "fabien@symfony.com"
  9765. },
  9766. {
  9767. "name": "Symfony Community",
  9768. "homepage": "https://symfony.com/contributors"
  9769. }
  9770. ],
  9771. "description": "Provides basic utilities for the filesystem",
  9772. "homepage": "https://symfony.com",
  9773. "support": {
  9774. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  9775. },
  9776. "funding": [
  9777. {
  9778. "url": "https://symfony.com/sponsor",
  9779. "type": "custom"
  9780. },
  9781. {
  9782. "url": "https://github.com/fabpot",
  9783. "type": "github"
  9784. },
  9785. {
  9786. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9787. "type": "tidelift"
  9788. }
  9789. ],
  9790. "time": "2024-05-31T14:49:08+00:00"
  9791. },
  9792. {
  9793. "name": "symfony/http-foundation",
  9794. "version": "v6.4.8",
  9795. "source": {
  9796. "type": "git",
  9797. "url": "https://github.com/symfony/http-foundation.git",
  9798. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  9799. },
  9800. "dist": {
  9801. "type": "zip",
  9802. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  9803. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  9804. "shasum": ""
  9805. },
  9806. "require": {
  9807. "php": ">=8.1",
  9808. "symfony/deprecation-contracts": "^2.5|^3",
  9809. "symfony/polyfill-mbstring": "~1.1",
  9810. "symfony/polyfill-php83": "^1.27"
  9811. },
  9812. "conflict": {
  9813. "symfony/cache": "<6.3"
  9814. },
  9815. "require-dev": {
  9816. "doctrine/dbal": "^2.13.1|^3|^4",
  9817. "predis/predis": "^1.1|^2.0",
  9818. "symfony/cache": "^6.3|^7.0",
  9819. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9820. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9821. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  9822. "symfony/mime": "^5.4|^6.0|^7.0",
  9823. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  9824. },
  9825. "type": "library",
  9826. "autoload": {
  9827. "psr-4": {
  9828. "Symfony\\Component\\HttpFoundation\\": ""
  9829. },
  9830. "exclude-from-classmap": [
  9831. "/Tests/"
  9832. ]
  9833. },
  9834. "notification-url": "https://packagist.org/downloads/",
  9835. "license": [
  9836. "MIT"
  9837. ],
  9838. "authors": [
  9839. {
  9840. "name": "Fabien Potencier",
  9841. "email": "fabien@symfony.com"
  9842. },
  9843. {
  9844. "name": "Symfony Community",
  9845. "homepage": "https://symfony.com/contributors"
  9846. }
  9847. ],
  9848. "description": "Defines an object-oriented layer for the HTTP specification",
  9849. "homepage": "https://symfony.com",
  9850. "support": {
  9851. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  9852. },
  9853. "funding": [
  9854. {
  9855. "url": "https://symfony.com/sponsor",
  9856. "type": "custom"
  9857. },
  9858. {
  9859. "url": "https://github.com/fabpot",
  9860. "type": "github"
  9861. },
  9862. {
  9863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9864. "type": "tidelift"
  9865. }
  9866. ],
  9867. "time": "2024-05-31T14:49:08+00:00"
  9868. },
  9869. {
  9870. "name": "symfony/options-resolver",
  9871. "version": "v6.4.8",
  9872. "source": {
  9873. "type": "git",
  9874. "url": "https://github.com/symfony/options-resolver.git",
  9875. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  9876. },
  9877. "dist": {
  9878. "type": "zip",
  9879. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  9880. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  9881. "shasum": ""
  9882. },
  9883. "require": {
  9884. "php": ">=8.1",
  9885. "symfony/deprecation-contracts": "^2.5|^3"
  9886. },
  9887. "type": "library",
  9888. "autoload": {
  9889. "psr-4": {
  9890. "Symfony\\Component\\OptionsResolver\\": ""
  9891. },
  9892. "exclude-from-classmap": [
  9893. "/Tests/"
  9894. ]
  9895. },
  9896. "notification-url": "https://packagist.org/downloads/",
  9897. "license": [
  9898. "MIT"
  9899. ],
  9900. "authors": [
  9901. {
  9902. "name": "Fabien Potencier",
  9903. "email": "fabien@symfony.com"
  9904. },
  9905. {
  9906. "name": "Symfony Community",
  9907. "homepage": "https://symfony.com/contributors"
  9908. }
  9909. ],
  9910. "description": "Provides an improved replacement for the array_replace PHP function",
  9911. "homepage": "https://symfony.com",
  9912. "keywords": [
  9913. "config",
  9914. "configuration",
  9915. "options"
  9916. ],
  9917. "support": {
  9918. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  9919. },
  9920. "funding": [
  9921. {
  9922. "url": "https://symfony.com/sponsor",
  9923. "type": "custom"
  9924. },
  9925. {
  9926. "url": "https://github.com/fabpot",
  9927. "type": "github"
  9928. },
  9929. {
  9930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9931. "type": "tidelift"
  9932. }
  9933. ],
  9934. "time": "2024-05-31T14:49:08+00:00"
  9935. },
  9936. {
  9937. "name": "symfony/polyfill-php81",
  9938. "version": "v1.29.0",
  9939. "source": {
  9940. "type": "git",
  9941. "url": "https://github.com/symfony/polyfill-php81.git",
  9942. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  9943. },
  9944. "dist": {
  9945. "type": "zip",
  9946. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  9947. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  9948. "shasum": ""
  9949. },
  9950. "require": {
  9951. "php": ">=7.1"
  9952. },
  9953. "type": "library",
  9954. "extra": {
  9955. "thanks": {
  9956. "name": "symfony/polyfill",
  9957. "url": "https://github.com/symfony/polyfill"
  9958. }
  9959. },
  9960. "autoload": {
  9961. "files": [
  9962. "bootstrap.php"
  9963. ],
  9964. "psr-4": {
  9965. "Symfony\\Polyfill\\Php81\\": ""
  9966. },
  9967. "classmap": [
  9968. "Resources/stubs"
  9969. ]
  9970. },
  9971. "notification-url": "https://packagist.org/downloads/",
  9972. "license": [
  9973. "MIT"
  9974. ],
  9975. "authors": [
  9976. {
  9977. "name": "Nicolas Grekas",
  9978. "email": "p@tchwork.com"
  9979. },
  9980. {
  9981. "name": "Symfony Community",
  9982. "homepage": "https://symfony.com/contributors"
  9983. }
  9984. ],
  9985. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9986. "homepage": "https://symfony.com",
  9987. "keywords": [
  9988. "compatibility",
  9989. "polyfill",
  9990. "portable",
  9991. "shim"
  9992. ],
  9993. "support": {
  9994. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  9995. },
  9996. "funding": [
  9997. {
  9998. "url": "https://symfony.com/sponsor",
  9999. "type": "custom"
  10000. },
  10001. {
  10002. "url": "https://github.com/fabpot",
  10003. "type": "github"
  10004. },
  10005. {
  10006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10007. "type": "tidelift"
  10008. }
  10009. ],
  10010. "time": "2024-01-29T20:11:03+00:00"
  10011. },
  10012. {
  10013. "name": "symfony/polyfill-php83",
  10014. "version": "v1.29.0",
  10015. "source": {
  10016. "type": "git",
  10017. "url": "https://github.com/symfony/polyfill-php83.git",
  10018. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10019. },
  10020. "dist": {
  10021. "type": "zip",
  10022. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10023. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10024. "shasum": ""
  10025. },
  10026. "require": {
  10027. "php": ">=7.1",
  10028. "symfony/polyfill-php80": "^1.14"
  10029. },
  10030. "type": "library",
  10031. "extra": {
  10032. "thanks": {
  10033. "name": "symfony/polyfill",
  10034. "url": "https://github.com/symfony/polyfill"
  10035. }
  10036. },
  10037. "autoload": {
  10038. "files": [
  10039. "bootstrap.php"
  10040. ],
  10041. "psr-4": {
  10042. "Symfony\\Polyfill\\Php83\\": ""
  10043. },
  10044. "classmap": [
  10045. "Resources/stubs"
  10046. ]
  10047. },
  10048. "notification-url": "https://packagist.org/downloads/",
  10049. "license": [
  10050. "MIT"
  10051. ],
  10052. "authors": [
  10053. {
  10054. "name": "Nicolas Grekas",
  10055. "email": "p@tchwork.com"
  10056. },
  10057. {
  10058. "name": "Symfony Community",
  10059. "homepage": "https://symfony.com/contributors"
  10060. }
  10061. ],
  10062. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10063. "homepage": "https://symfony.com",
  10064. "keywords": [
  10065. "compatibility",
  10066. "polyfill",
  10067. "portable",
  10068. "shim"
  10069. ],
  10070. "support": {
  10071. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10072. },
  10073. "funding": [
  10074. {
  10075. "url": "https://symfony.com/sponsor",
  10076. "type": "custom"
  10077. },
  10078. {
  10079. "url": "https://github.com/fabpot",
  10080. "type": "github"
  10081. },
  10082. {
  10083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10084. "type": "tidelift"
  10085. }
  10086. ],
  10087. "time": "2024-01-29T20:11:03+00:00"
  10088. },
  10089. {
  10090. "name": "symfony/process",
  10091. "version": "v6.4.8",
  10092. "source": {
  10093. "type": "git",
  10094. "url": "https://github.com/symfony/process.git",
  10095. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10096. },
  10097. "dist": {
  10098. "type": "zip",
  10099. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10100. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10101. "shasum": ""
  10102. },
  10103. "require": {
  10104. "php": ">=8.1"
  10105. },
  10106. "type": "library",
  10107. "autoload": {
  10108. "psr-4": {
  10109. "Symfony\\Component\\Process\\": ""
  10110. },
  10111. "exclude-from-classmap": [
  10112. "/Tests/"
  10113. ]
  10114. },
  10115. "notification-url": "https://packagist.org/downloads/",
  10116. "license": [
  10117. "MIT"
  10118. ],
  10119. "authors": [
  10120. {
  10121. "name": "Fabien Potencier",
  10122. "email": "fabien@symfony.com"
  10123. },
  10124. {
  10125. "name": "Symfony Community",
  10126. "homepage": "https://symfony.com/contributors"
  10127. }
  10128. ],
  10129. "description": "Executes commands in sub-processes",
  10130. "homepage": "https://symfony.com",
  10131. "support": {
  10132. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10133. },
  10134. "funding": [
  10135. {
  10136. "url": "https://symfony.com/sponsor",
  10137. "type": "custom"
  10138. },
  10139. {
  10140. "url": "https://github.com/fabpot",
  10141. "type": "github"
  10142. },
  10143. {
  10144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10145. "type": "tidelift"
  10146. }
  10147. ],
  10148. "time": "2024-05-31T14:49:08+00:00"
  10149. },
  10150. {
  10151. "name": "symfony/stopwatch",
  10152. "version": "v6.4.8",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/symfony/stopwatch.git",
  10156. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10161. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10162. "shasum": ""
  10163. },
  10164. "require": {
  10165. "php": ">=8.1",
  10166. "symfony/service-contracts": "^2.5|^3"
  10167. },
  10168. "type": "library",
  10169. "autoload": {
  10170. "psr-4": {
  10171. "Symfony\\Component\\Stopwatch\\": ""
  10172. },
  10173. "exclude-from-classmap": [
  10174. "/Tests/"
  10175. ]
  10176. },
  10177. "notification-url": "https://packagist.org/downloads/",
  10178. "license": [
  10179. "MIT"
  10180. ],
  10181. "authors": [
  10182. {
  10183. "name": "Fabien Potencier",
  10184. "email": "fabien@symfony.com"
  10185. },
  10186. {
  10187. "name": "Symfony Community",
  10188. "homepage": "https://symfony.com/contributors"
  10189. }
  10190. ],
  10191. "description": "Provides a way to profile code",
  10192. "homepage": "https://symfony.com",
  10193. "support": {
  10194. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10195. },
  10196. "funding": [
  10197. {
  10198. "url": "https://symfony.com/sponsor",
  10199. "type": "custom"
  10200. },
  10201. {
  10202. "url": "https://github.com/fabpot",
  10203. "type": "github"
  10204. },
  10205. {
  10206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10207. "type": "tidelift"
  10208. }
  10209. ],
  10210. "time": "2024-05-31T14:49:08+00:00"
  10211. },
  10212. {
  10213. "name": "theseer/tokenizer",
  10214. "version": "1.2.3",
  10215. "source": {
  10216. "type": "git",
  10217. "url": "https://github.com/theseer/tokenizer.git",
  10218. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10219. },
  10220. "dist": {
  10221. "type": "zip",
  10222. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10223. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10224. "shasum": ""
  10225. },
  10226. "require": {
  10227. "ext-dom": "*",
  10228. "ext-tokenizer": "*",
  10229. "ext-xmlwriter": "*",
  10230. "php": "^7.2 || ^8.0"
  10231. },
  10232. "type": "library",
  10233. "autoload": {
  10234. "classmap": [
  10235. "src/"
  10236. ]
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "BSD-3-Clause"
  10241. ],
  10242. "authors": [
  10243. {
  10244. "name": "Arne Blankerts",
  10245. "email": "arne@blankerts.de",
  10246. "role": "Developer"
  10247. }
  10248. ],
  10249. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10250. "support": {
  10251. "issues": "https://github.com/theseer/tokenizer/issues",
  10252. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10253. },
  10254. "funding": [
  10255. {
  10256. "url": "https://github.com/theseer",
  10257. "type": "github"
  10258. }
  10259. ],
  10260. "time": "2024-03-03T12:36:25+00:00"
  10261. }
  10262. ],
  10263. "aliases": [],
  10264. "minimum-stability": "dev",
  10265. "stability-flags": [],
  10266. "prefer-stable": true,
  10267. "prefer-lowest": false,
  10268. "platform": {
  10269. "php": ">=8.1"
  10270. },
  10271. "platform-dev": [],
  10272. "plugin-api-version": "2.6.0"
  10273. }