composer.lock 397 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203
  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": "6b9f543cda6751d2d957153d112192e9",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.12.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  20. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "^2.2",
  28. "phpunit/phpunit": "^10.1",
  29. "vimeo/psalm": "5.16.0"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Brick\\Math\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "description": "Arbitrary-precision arithmetic library",
  42. "keywords": [
  43. "Arbitrary-precision",
  44. "BigInteger",
  45. "BigRational",
  46. "arithmetic",
  47. "bigdecimal",
  48. "bignum",
  49. "bignumber",
  50. "brick",
  51. "decimal",
  52. "integer",
  53. "math",
  54. "mathematics",
  55. "rational"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/brick/math/issues",
  59. "source": "https://github.com/brick/math/tree/0.12.1"
  60. },
  61. "funding": [
  62. {
  63. "url": "https://github.com/BenMorel",
  64. "type": "github"
  65. }
  66. ],
  67. "time": "2023-11-29T23:19:16+00:00"
  68. },
  69. {
  70. "name": "carbonphp/carbon-doctrine-types",
  71. "version": "3.2.0",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  75. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  80. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": "^8.1"
  85. },
  86. "conflict": {
  87. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  88. },
  89. "require-dev": {
  90. "doctrine/dbal": "^4.0.0",
  91. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  92. "phpunit/phpunit": "^10.3"
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "psr-4": {
  97. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "KyleKatarn",
  107. "email": "kylekatarnls@gmail.com"
  108. }
  109. ],
  110. "description": "Types to use Carbon in Doctrine",
  111. "keywords": [
  112. "carbon",
  113. "date",
  114. "datetime",
  115. "doctrine",
  116. "time"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  120. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/kylekatarnls",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://opencollective.com/Carbon",
  129. "type": "open_collective"
  130. },
  131. {
  132. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  133. "type": "tidelift"
  134. }
  135. ],
  136. "time": "2024-02-09T16:56:22+00:00"
  137. },
  138. {
  139. "name": "doctrine/annotations",
  140. "version": "2.0.1",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/doctrine/annotations.git",
  144. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  149. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "doctrine/lexer": "^2 || ^3",
  154. "ext-tokenizer": "*",
  155. "php": "^7.2 || ^8.0",
  156. "psr/cache": "^1 || ^2 || ^3"
  157. },
  158. "require-dev": {
  159. "doctrine/cache": "^2.0",
  160. "doctrine/coding-standard": "^10",
  161. "phpstan/phpstan": "^1.8.0",
  162. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  163. "symfony/cache": "^5.4 || ^6",
  164. "vimeo/psalm": "^4.10"
  165. },
  166. "suggest": {
  167. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  168. },
  169. "type": "library",
  170. "autoload": {
  171. "psr-4": {
  172. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "Guilherme Blanco",
  182. "email": "guilhermeblanco@gmail.com"
  183. },
  184. {
  185. "name": "Roman Borschel",
  186. "email": "roman@code-factory.org"
  187. },
  188. {
  189. "name": "Benjamin Eberlei",
  190. "email": "kontakt@beberlei.de"
  191. },
  192. {
  193. "name": "Jonathan Wage",
  194. "email": "jonwage@gmail.com"
  195. },
  196. {
  197. "name": "Johannes Schmitt",
  198. "email": "schmittjoh@gmail.com"
  199. }
  200. ],
  201. "description": "Docblock Annotations Parser",
  202. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  203. "keywords": [
  204. "annotations",
  205. "docblock",
  206. "parser"
  207. ],
  208. "support": {
  209. "issues": "https://github.com/doctrine/annotations/issues",
  210. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  211. },
  212. "time": "2023-02-02T22:02:53+00:00"
  213. },
  214. {
  215. "name": "doctrine/inflector",
  216. "version": "2.0.10",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/doctrine/inflector.git",
  220. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  225. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "php": "^7.2 || ^8.0"
  230. },
  231. "require-dev": {
  232. "doctrine/coding-standard": "^11.0",
  233. "phpstan/phpstan": "^1.8",
  234. "phpstan/phpstan-phpunit": "^1.1",
  235. "phpstan/phpstan-strict-rules": "^1.3",
  236. "phpunit/phpunit": "^8.5 || ^9.5",
  237. "vimeo/psalm": "^4.25 || ^5.4"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Guilherme Blanco",
  252. "email": "guilhermeblanco@gmail.com"
  253. },
  254. {
  255. "name": "Roman Borschel",
  256. "email": "roman@code-factory.org"
  257. },
  258. {
  259. "name": "Benjamin Eberlei",
  260. "email": "kontakt@beberlei.de"
  261. },
  262. {
  263. "name": "Jonathan Wage",
  264. "email": "jonwage@gmail.com"
  265. },
  266. {
  267. "name": "Johannes Schmitt",
  268. "email": "schmittjoh@gmail.com"
  269. }
  270. ],
  271. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  272. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  273. "keywords": [
  274. "inflection",
  275. "inflector",
  276. "lowercase",
  277. "manipulation",
  278. "php",
  279. "plural",
  280. "singular",
  281. "strings",
  282. "uppercase",
  283. "words"
  284. ],
  285. "support": {
  286. "issues": "https://github.com/doctrine/inflector/issues",
  287. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  288. },
  289. "funding": [
  290. {
  291. "url": "https://www.doctrine-project.org/sponsorship.html",
  292. "type": "custom"
  293. },
  294. {
  295. "url": "https://www.patreon.com/phpdoctrine",
  296. "type": "patreon"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "time": "2024-02-18T20:23:39+00:00"
  304. },
  305. {
  306. "name": "doctrine/instantiator",
  307. "version": "1.5.0",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/doctrine/instantiator.git",
  311. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  316. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^7.1 || ^8.0"
  321. },
  322. "require-dev": {
  323. "doctrine/coding-standard": "^9 || ^11",
  324. "ext-pdo": "*",
  325. "ext-phar": "*",
  326. "phpbench/phpbench": "^0.16 || ^1",
  327. "phpstan/phpstan": "^1.4",
  328. "phpstan/phpstan-phpunit": "^1",
  329. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  330. "vimeo/psalm": "^4.30 || ^5.4"
  331. },
  332. "type": "library",
  333. "autoload": {
  334. "psr-4": {
  335. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  336. }
  337. },
  338. "notification-url": "https://packagist.org/downloads/",
  339. "license": [
  340. "MIT"
  341. ],
  342. "authors": [
  343. {
  344. "name": "Marco Pivetta",
  345. "email": "ocramius@gmail.com",
  346. "homepage": "https://ocramius.github.io/"
  347. }
  348. ],
  349. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  350. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  351. "keywords": [
  352. "constructor",
  353. "instantiate"
  354. ],
  355. "support": {
  356. "issues": "https://github.com/doctrine/instantiator/issues",
  357. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  358. },
  359. "funding": [
  360. {
  361. "url": "https://www.doctrine-project.org/sponsorship.html",
  362. "type": "custom"
  363. },
  364. {
  365. "url": "https://www.patreon.com/phpdoctrine",
  366. "type": "patreon"
  367. },
  368. {
  369. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  370. "type": "tidelift"
  371. }
  372. ],
  373. "time": "2022-12-30T00:15:36+00:00"
  374. },
  375. {
  376. "name": "doctrine/lexer",
  377. "version": "3.0.1",
  378. "source": {
  379. "type": "git",
  380. "url": "https://github.com/doctrine/lexer.git",
  381. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  382. },
  383. "dist": {
  384. "type": "zip",
  385. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  386. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  387. "shasum": ""
  388. },
  389. "require": {
  390. "php": "^8.1"
  391. },
  392. "require-dev": {
  393. "doctrine/coding-standard": "^12",
  394. "phpstan/phpstan": "^1.10",
  395. "phpunit/phpunit": "^10.5",
  396. "psalm/plugin-phpunit": "^0.18.3",
  397. "vimeo/psalm": "^5.21"
  398. },
  399. "type": "library",
  400. "autoload": {
  401. "psr-4": {
  402. "Doctrine\\Common\\Lexer\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Guilherme Blanco",
  412. "email": "guilhermeblanco@gmail.com"
  413. },
  414. {
  415. "name": "Roman Borschel",
  416. "email": "roman@code-factory.org"
  417. },
  418. {
  419. "name": "Johannes Schmitt",
  420. "email": "schmittjoh@gmail.com"
  421. }
  422. ],
  423. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  424. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  425. "keywords": [
  426. "annotations",
  427. "docblock",
  428. "lexer",
  429. "parser",
  430. "php"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/doctrine/lexer/issues",
  434. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://www.doctrine-project.org/sponsorship.html",
  439. "type": "custom"
  440. },
  441. {
  442. "url": "https://www.patreon.com/phpdoctrine",
  443. "type": "patreon"
  444. },
  445. {
  446. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  447. "type": "tidelift"
  448. }
  449. ],
  450. "time": "2024-02-05T11:56:58+00:00"
  451. },
  452. {
  453. "name": "fig/http-message-util",
  454. "version": "1.1.5",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/php-fig/http-message-util.git",
  458. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  463. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": "^5.3 || ^7.0 || ^8.0"
  468. },
  469. "suggest": {
  470. "psr/http-message": "The package containing the PSR-7 interfaces"
  471. },
  472. "type": "library",
  473. "extra": {
  474. "branch-alias": {
  475. "dev-master": "1.1.x-dev"
  476. }
  477. },
  478. "autoload": {
  479. "psr-4": {
  480. "Fig\\Http\\Message\\": "src/"
  481. }
  482. },
  483. "notification-url": "https://packagist.org/downloads/",
  484. "license": [
  485. "MIT"
  486. ],
  487. "authors": [
  488. {
  489. "name": "PHP-FIG",
  490. "homepage": "https://www.php-fig.org/"
  491. }
  492. ],
  493. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  494. "keywords": [
  495. "http",
  496. "http-message",
  497. "psr",
  498. "psr-7",
  499. "request",
  500. "response"
  501. ],
  502. "support": {
  503. "issues": "https://github.com/php-fig/http-message-util/issues",
  504. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  505. },
  506. "time": "2020-11-24T22:02:12+00:00"
  507. },
  508. {
  509. "name": "graham-campbell/result-type",
  510. "version": "v1.1.2",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  514. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  519. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  520. "shasum": ""
  521. },
  522. "require": {
  523. "php": "^7.2.5 || ^8.0",
  524. "phpoption/phpoption": "^1.9.2"
  525. },
  526. "require-dev": {
  527. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  528. },
  529. "type": "library",
  530. "autoload": {
  531. "psr-4": {
  532. "GrahamCampbell\\ResultType\\": "src/"
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "Graham Campbell",
  542. "email": "hello@gjcampbell.co.uk",
  543. "homepage": "https://github.com/GrahamCampbell"
  544. }
  545. ],
  546. "description": "An Implementation Of The Result Type",
  547. "keywords": [
  548. "Graham Campbell",
  549. "GrahamCampbell",
  550. "Result Type",
  551. "Result-Type",
  552. "result"
  553. ],
  554. "support": {
  555. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  556. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  557. },
  558. "funding": [
  559. {
  560. "url": "https://github.com/GrahamCampbell",
  561. "type": "github"
  562. },
  563. {
  564. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  565. "type": "tidelift"
  566. }
  567. ],
  568. "time": "2023-11-12T22:16:48+00:00"
  569. },
  570. {
  571. "name": "guzzlehttp/guzzle",
  572. "version": "7.8.1",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/guzzle/guzzle.git",
  576. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  581. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "ext-json": "*",
  586. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  587. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  588. "php": "^7.2.5 || ^8.0",
  589. "psr/http-client": "^1.0",
  590. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  591. },
  592. "provide": {
  593. "psr/http-client-implementation": "1.0"
  594. },
  595. "require-dev": {
  596. "bamarni/composer-bin-plugin": "^1.8.2",
  597. "ext-curl": "*",
  598. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  599. "php-http/message-factory": "^1.1",
  600. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  601. "psr/log": "^1.1 || ^2.0 || ^3.0"
  602. },
  603. "suggest": {
  604. "ext-curl": "Required for CURL handler support",
  605. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  606. "psr/log": "Required for using the Log middleware"
  607. },
  608. "type": "library",
  609. "extra": {
  610. "bamarni-bin": {
  611. "bin-links": true,
  612. "forward-command": false
  613. }
  614. },
  615. "autoload": {
  616. "files": [
  617. "src/functions_include.php"
  618. ],
  619. "psr-4": {
  620. "GuzzleHttp\\": "src/"
  621. }
  622. },
  623. "notification-url": "https://packagist.org/downloads/",
  624. "license": [
  625. "MIT"
  626. ],
  627. "authors": [
  628. {
  629. "name": "Graham Campbell",
  630. "email": "hello@gjcampbell.co.uk",
  631. "homepage": "https://github.com/GrahamCampbell"
  632. },
  633. {
  634. "name": "Michael Dowling",
  635. "email": "mtdowling@gmail.com",
  636. "homepage": "https://github.com/mtdowling"
  637. },
  638. {
  639. "name": "Jeremy Lindblom",
  640. "email": "jeremeamia@gmail.com",
  641. "homepage": "https://github.com/jeremeamia"
  642. },
  643. {
  644. "name": "George Mponos",
  645. "email": "gmponos@gmail.com",
  646. "homepage": "https://github.com/gmponos"
  647. },
  648. {
  649. "name": "Tobias Nyholm",
  650. "email": "tobias.nyholm@gmail.com",
  651. "homepage": "https://github.com/Nyholm"
  652. },
  653. {
  654. "name": "Márk Sági-Kazár",
  655. "email": "mark.sagikazar@gmail.com",
  656. "homepage": "https://github.com/sagikazarmark"
  657. },
  658. {
  659. "name": "Tobias Schultze",
  660. "email": "webmaster@tubo-world.de",
  661. "homepage": "https://github.com/Tobion"
  662. }
  663. ],
  664. "description": "Guzzle is a PHP HTTP client library",
  665. "keywords": [
  666. "client",
  667. "curl",
  668. "framework",
  669. "http",
  670. "http client",
  671. "psr-18",
  672. "psr-7",
  673. "rest",
  674. "web service"
  675. ],
  676. "support": {
  677. "issues": "https://github.com/guzzle/guzzle/issues",
  678. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  679. },
  680. "funding": [
  681. {
  682. "url": "https://github.com/GrahamCampbell",
  683. "type": "github"
  684. },
  685. {
  686. "url": "https://github.com/Nyholm",
  687. "type": "github"
  688. },
  689. {
  690. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  691. "type": "tidelift"
  692. }
  693. ],
  694. "time": "2023-12-03T20:35:24+00:00"
  695. },
  696. {
  697. "name": "guzzlehttp/promises",
  698. "version": "2.0.2",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/guzzle/promises.git",
  702. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  707. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  708. "shasum": ""
  709. },
  710. "require": {
  711. "php": "^7.2.5 || ^8.0"
  712. },
  713. "require-dev": {
  714. "bamarni/composer-bin-plugin": "^1.8.2",
  715. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  716. },
  717. "type": "library",
  718. "extra": {
  719. "bamarni-bin": {
  720. "bin-links": true,
  721. "forward-command": false
  722. }
  723. },
  724. "autoload": {
  725. "psr-4": {
  726. "GuzzleHttp\\Promise\\": "src/"
  727. }
  728. },
  729. "notification-url": "https://packagist.org/downloads/",
  730. "license": [
  731. "MIT"
  732. ],
  733. "authors": [
  734. {
  735. "name": "Graham Campbell",
  736. "email": "hello@gjcampbell.co.uk",
  737. "homepage": "https://github.com/GrahamCampbell"
  738. },
  739. {
  740. "name": "Michael Dowling",
  741. "email": "mtdowling@gmail.com",
  742. "homepage": "https://github.com/mtdowling"
  743. },
  744. {
  745. "name": "Tobias Nyholm",
  746. "email": "tobias.nyholm@gmail.com",
  747. "homepage": "https://github.com/Nyholm"
  748. },
  749. {
  750. "name": "Tobias Schultze",
  751. "email": "webmaster@tubo-world.de",
  752. "homepage": "https://github.com/Tobion"
  753. }
  754. ],
  755. "description": "Guzzle promises library",
  756. "keywords": [
  757. "promise"
  758. ],
  759. "support": {
  760. "issues": "https://github.com/guzzle/promises/issues",
  761. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  762. },
  763. "funding": [
  764. {
  765. "url": "https://github.com/GrahamCampbell",
  766. "type": "github"
  767. },
  768. {
  769. "url": "https://github.com/Nyholm",
  770. "type": "github"
  771. },
  772. {
  773. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  774. "type": "tidelift"
  775. }
  776. ],
  777. "time": "2023-12-03T20:19:20+00:00"
  778. },
  779. {
  780. "name": "guzzlehttp/psr7",
  781. "version": "2.6.2",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/guzzle/psr7.git",
  785. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  790. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "php": "^7.2.5 || ^8.0",
  795. "psr/http-factory": "^1.0",
  796. "psr/http-message": "^1.1 || ^2.0",
  797. "ralouphie/getallheaders": "^3.0"
  798. },
  799. "provide": {
  800. "psr/http-factory-implementation": "1.0",
  801. "psr/http-message-implementation": "1.0"
  802. },
  803. "require-dev": {
  804. "bamarni/composer-bin-plugin": "^1.8.2",
  805. "http-interop/http-factory-tests": "^0.9",
  806. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  807. },
  808. "suggest": {
  809. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  810. },
  811. "type": "library",
  812. "extra": {
  813. "bamarni-bin": {
  814. "bin-links": true,
  815. "forward-command": false
  816. }
  817. },
  818. "autoload": {
  819. "psr-4": {
  820. "GuzzleHttp\\Psr7\\": "src/"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "Graham Campbell",
  830. "email": "hello@gjcampbell.co.uk",
  831. "homepage": "https://github.com/GrahamCampbell"
  832. },
  833. {
  834. "name": "Michael Dowling",
  835. "email": "mtdowling@gmail.com",
  836. "homepage": "https://github.com/mtdowling"
  837. },
  838. {
  839. "name": "George Mponos",
  840. "email": "gmponos@gmail.com",
  841. "homepage": "https://github.com/gmponos"
  842. },
  843. {
  844. "name": "Tobias Nyholm",
  845. "email": "tobias.nyholm@gmail.com",
  846. "homepage": "https://github.com/Nyholm"
  847. },
  848. {
  849. "name": "Márk Sági-Kazár",
  850. "email": "mark.sagikazar@gmail.com",
  851. "homepage": "https://github.com/sagikazarmark"
  852. },
  853. {
  854. "name": "Tobias Schultze",
  855. "email": "webmaster@tubo-world.de",
  856. "homepage": "https://github.com/Tobion"
  857. },
  858. {
  859. "name": "Márk Sági-Kazár",
  860. "email": "mark.sagikazar@gmail.com",
  861. "homepage": "https://sagikazarmark.hu"
  862. }
  863. ],
  864. "description": "PSR-7 message implementation that also provides common utility methods",
  865. "keywords": [
  866. "http",
  867. "message",
  868. "psr-7",
  869. "request",
  870. "response",
  871. "stream",
  872. "uri",
  873. "url"
  874. ],
  875. "support": {
  876. "issues": "https://github.com/guzzle/psr7/issues",
  877. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  878. },
  879. "funding": [
  880. {
  881. "url": "https://github.com/GrahamCampbell",
  882. "type": "github"
  883. },
  884. {
  885. "url": "https://github.com/Nyholm",
  886. "type": "github"
  887. },
  888. {
  889. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  890. "type": "tidelift"
  891. }
  892. ],
  893. "time": "2023-12-03T20:05:35+00:00"
  894. },
  895. {
  896. "name": "hyperf/amqp",
  897. "version": "v3.1.28",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/hyperf/amqp.git",
  901. "reference": "c96e294e99e68113ed3e237db8f976308ee42ba7"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/hyperf/amqp/zipball/c96e294e99e68113ed3e237db8f976308ee42ba7",
  906. "reference": "c96e294e99e68113ed3e237db8f976308ee42ba7",
  907. "shasum": ""
  908. },
  909. "require": {
  910. "doctrine/instantiator": "^1.2.0",
  911. "hyperf/codec": "~3.1.0",
  912. "hyperf/contract": "~3.1.0",
  913. "hyperf/coroutine": "~3.1.0",
  914. "hyperf/pool": "~3.1.0",
  915. "hyperf/process": "~3.1.0",
  916. "hyperf/support": "~3.1.0",
  917. "hyperf/utils": "~3.1.0",
  918. "php": ">=8.1",
  919. "php-amqplib/php-amqplib": "^3.5",
  920. "psr/container": "^1.0 || ^2.0",
  921. "psr/event-dispatcher": "^1.0",
  922. "psr/log": "^1.0 || ^2.0 || ^3.0"
  923. },
  924. "suggest": {
  925. "hyperf/di": "Required to use annotations.",
  926. "hyperf/event": "Declare queue and start consumers automatically."
  927. },
  928. "type": "library",
  929. "extra": {
  930. "branch-alias": {
  931. "dev-master": "3.1-dev"
  932. },
  933. "hyperf": {
  934. "config": "Hyperf\\Amqp\\ConfigProvider"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "Hyperf\\Amqp\\": "src/"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "description": "A amqplib for hyperf.",
  947. "homepage": "https://hyperf.io",
  948. "keywords": [
  949. "AMQP",
  950. "hyperf",
  951. "php"
  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-06-24T01:53:39+00:00"
  970. },
  971. {
  972. "name": "hyperf/cache",
  973. "version": "v3.1.23",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/hyperf/cache.git",
  977. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  982. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "hyperf/codec": "~3.1.0",
  987. "hyperf/collection": "~3.1.0",
  988. "hyperf/contract": "~3.1.0",
  989. "hyperf/support": "~3.1.0",
  990. "hyperf/utils": "~3.1.0",
  991. "php": ">=8.1",
  992. "psr/container": "^1.0|^2.0",
  993. "psr/simple-cache": "^1.0|^2.0|^3.0"
  994. },
  995. "suggest": {
  996. "hyperf/di": "Use cache annotations.",
  997. "hyperf/event": "Use listener to delete annotation cache."
  998. },
  999. "type": "library",
  1000. "extra": {
  1001. "branch-alias": {
  1002. "dev-master": "3.1-dev"
  1003. },
  1004. "hyperf": {
  1005. "config": "Hyperf\\Cache\\ConfigProvider"
  1006. }
  1007. },
  1008. "autoload": {
  1009. "psr-4": {
  1010. "Hyperf\\Cache\\": "src/"
  1011. }
  1012. },
  1013. "notification-url": "https://packagist.org/downloads/",
  1014. "license": [
  1015. "MIT"
  1016. ],
  1017. "description": "A cache component for hyperf.",
  1018. "homepage": "https://hyperf.io",
  1019. "keywords": [
  1020. "cache",
  1021. "hyperf",
  1022. "php"
  1023. ],
  1024. "support": {
  1025. "docs": "https://hyperf.wiki",
  1026. "issues": "https://github.com/hyperf/hyperf/issues",
  1027. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1028. "source": "https://github.com/hyperf/hyperf"
  1029. },
  1030. "funding": [
  1031. {
  1032. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1033. "type": "custom"
  1034. },
  1035. {
  1036. "url": "https://opencollective.com/hyperf",
  1037. "type": "open_collective"
  1038. }
  1039. ],
  1040. "time": "2024-05-23T03:43:58+00:00"
  1041. },
  1042. {
  1043. "name": "hyperf/code-parser",
  1044. "version": "v3.1.15",
  1045. "source": {
  1046. "type": "git",
  1047. "url": "https://github.com/hyperf/code-parser.git",
  1048. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1049. },
  1050. "dist": {
  1051. "type": "zip",
  1052. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1053. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1054. "shasum": ""
  1055. },
  1056. "require": {
  1057. "hyperf/collection": "~3.1.0",
  1058. "hyperf/stringable": "~3.1.0",
  1059. "hyperf/support": "~3.1.0",
  1060. "php": ">=8.1"
  1061. },
  1062. "suggest": {
  1063. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1064. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1065. },
  1066. "type": "library",
  1067. "extra": {
  1068. "branch-alias": {
  1069. "dev-master": "3.1-dev"
  1070. }
  1071. },
  1072. "autoload": {
  1073. "psr-4": {
  1074. "Hyperf\\CodeParser\\": "src/"
  1075. }
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "MIT"
  1080. ],
  1081. "description": "A code parser component for Hyperf.",
  1082. "homepage": "https://hyperf.io",
  1083. "keywords": [
  1084. "code-parser",
  1085. "hyperf",
  1086. "php",
  1087. "swoole"
  1088. ],
  1089. "support": {
  1090. "docs": "https://hyperf.wiki",
  1091. "issues": "https://github.com/hyperf/hyperf/issues",
  1092. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1093. "source": "https://github.com/hyperf/hyperf"
  1094. },
  1095. "funding": [
  1096. {
  1097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1098. "type": "custom"
  1099. },
  1100. {
  1101. "url": "https://opencollective.com/hyperf",
  1102. "type": "open_collective"
  1103. }
  1104. ],
  1105. "time": "2024-03-23T11:28:51+00:00"
  1106. },
  1107. {
  1108. "name": "hyperf/codec",
  1109. "version": "v3.1.15",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/hyperf/codec.git",
  1113. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1118. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "ext-json": "*",
  1123. "ext-xml": "*",
  1124. "hyperf/contract": "~3.1.0",
  1125. "php": ">=8.1"
  1126. },
  1127. "suggest": {
  1128. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1129. },
  1130. "type": "library",
  1131. "extra": {
  1132. "branch-alias": {
  1133. "dev-master": "3.1-dev"
  1134. }
  1135. },
  1136. "autoload": {
  1137. "psr-4": {
  1138. "Hyperf\\Codec\\": "src/"
  1139. }
  1140. },
  1141. "notification-url": "https://packagist.org/downloads/",
  1142. "license": [
  1143. "MIT"
  1144. ],
  1145. "description": "A codec component for Hyperf.",
  1146. "homepage": "https://hyperf.io",
  1147. "keywords": [
  1148. "codec",
  1149. "hyperf",
  1150. "php",
  1151. "swoole"
  1152. ],
  1153. "support": {
  1154. "docs": "https://hyperf.wiki",
  1155. "issues": "https://github.com/hyperf/hyperf/issues",
  1156. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1157. "source": "https://github.com/hyperf/hyperf"
  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-03-23T11:28:51+00:00"
  1170. },
  1171. {
  1172. "name": "hyperf/collection",
  1173. "version": "v3.1.23.2",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hyperf/collection.git",
  1177. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1182. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "hyperf/conditionable": "~3.1.0",
  1187. "hyperf/contract": "~3.1.0",
  1188. "hyperf/macroable": "~3.1.0",
  1189. "hyperf/stringable": "~3.1.0",
  1190. "php": ">=8.1"
  1191. },
  1192. "type": "library",
  1193. "extra": {
  1194. "branch-alias": {
  1195. "dev-master": "3.1-dev"
  1196. }
  1197. },
  1198. "autoload": {
  1199. "files": [
  1200. "src/Functions.php"
  1201. ],
  1202. "psr-4": {
  1203. "Hyperf\\Collection\\": "src/"
  1204. }
  1205. },
  1206. "notification-url": "https://packagist.org/downloads/",
  1207. "license": [
  1208. "MIT"
  1209. ],
  1210. "description": "Hyperf Collection package which come from illuminate/collections",
  1211. "homepage": "https://hyperf.io",
  1212. "keywords": [
  1213. "collection",
  1214. "hyperf",
  1215. "php",
  1216. "swoole"
  1217. ],
  1218. "support": {
  1219. "docs": "https://hyperf.wiki",
  1220. "issues": "https://github.com/hyperf/hyperf/issues",
  1221. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1222. "source": "https://github.com/hyperf/hyperf"
  1223. },
  1224. "funding": [
  1225. {
  1226. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1227. "type": "custom"
  1228. },
  1229. {
  1230. "url": "https://opencollective.com/hyperf",
  1231. "type": "open_collective"
  1232. }
  1233. ],
  1234. "time": "2024-05-24T08:33:42+00:00"
  1235. },
  1236. {
  1237. "name": "hyperf/command",
  1238. "version": "v3.1.24",
  1239. "source": {
  1240. "type": "git",
  1241. "url": "https://github.com/hyperf/command.git",
  1242. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1243. },
  1244. "dist": {
  1245. "type": "zip",
  1246. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1247. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1248. "shasum": ""
  1249. },
  1250. "require": {
  1251. "hyperf/collection": "~3.1.0",
  1252. "hyperf/context": "~3.1.0",
  1253. "hyperf/contract": "~3.1.0",
  1254. "hyperf/coroutine": "~3.1.0",
  1255. "hyperf/di": "~3.1.0",
  1256. "hyperf/stringable": "~3.1.0",
  1257. "hyperf/support": "~3.1.0",
  1258. "hyperf/tappable": "~3.1.0",
  1259. "php": ">=8.1",
  1260. "psr/event-dispatcher": "^1.0",
  1261. "symfony/console": "^5.0|^6.0|^7.0"
  1262. },
  1263. "suggest": {
  1264. "hyperf/di": "Required to use annotations.",
  1265. "hyperf/event": "Required to use listeners."
  1266. },
  1267. "type": "library",
  1268. "extra": {
  1269. "branch-alias": {
  1270. "dev-master": "3.1-dev"
  1271. },
  1272. "hyperf": {
  1273. "config": "Hyperf\\Command\\ConfigProvider"
  1274. }
  1275. },
  1276. "autoload": {
  1277. "psr-4": {
  1278. "Hyperf\\Command\\": "src/"
  1279. }
  1280. },
  1281. "notification-url": "https://packagist.org/downloads/",
  1282. "license": [
  1283. "MIT"
  1284. ],
  1285. "description": "Command for hyperf",
  1286. "keywords": [
  1287. "command",
  1288. "php",
  1289. "swoole"
  1290. ],
  1291. "support": {
  1292. "issues": "https://github.com/hyperf/command/issues",
  1293. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1294. },
  1295. "funding": [
  1296. {
  1297. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1298. "type": "custom"
  1299. },
  1300. {
  1301. "url": "https://opencollective.com/hyperf",
  1302. "type": "open_collective"
  1303. }
  1304. ],
  1305. "time": "2024-05-27T12:37:07+00:00"
  1306. },
  1307. {
  1308. "name": "hyperf/conditionable",
  1309. "version": "v3.1.15",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/hyperf/conditionable.git",
  1313. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1318. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "php": ">=8.1"
  1323. },
  1324. "type": "library",
  1325. "extra": {
  1326. "branch-alias": {
  1327. "dev-master": "3.1-dev"
  1328. }
  1329. },
  1330. "autoload": {
  1331. "psr-4": {
  1332. "Hyperf\\Conditionable\\": "src/"
  1333. }
  1334. },
  1335. "notification-url": "https://packagist.org/downloads/",
  1336. "license": [
  1337. "MIT"
  1338. ],
  1339. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1340. "homepage": "https://hyperf.io",
  1341. "keywords": [
  1342. "conditionable",
  1343. "hyperf",
  1344. "php",
  1345. "swoole"
  1346. ],
  1347. "support": {
  1348. "docs": "https://hyperf.wiki",
  1349. "issues": "https://github.com/hyperf/hyperf/issues",
  1350. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1351. "source": "https://github.com/hyperf/hyperf"
  1352. },
  1353. "funding": [
  1354. {
  1355. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1356. "type": "custom"
  1357. },
  1358. {
  1359. "url": "https://opencollective.com/hyperf",
  1360. "type": "open_collective"
  1361. }
  1362. ],
  1363. "time": "2024-03-23T11:28:51+00:00"
  1364. },
  1365. {
  1366. "name": "hyperf/config",
  1367. "version": "v3.1.15",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/hyperf/config.git",
  1371. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1376. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "hyperf/collection": "~3.1.0",
  1381. "hyperf/contract": "~3.1.0",
  1382. "hyperf/support": "~3.1.0",
  1383. "php": ">=8.1",
  1384. "psr/container": "^1.0|^2.0",
  1385. "symfony/finder": "^5.0|^6.0|^7.0"
  1386. },
  1387. "suggest": {
  1388. "hyperf/context": "Required to use config()",
  1389. "hyperf/di": "Allows using @Value annotation",
  1390. "hyperf/event": "Allows using @Value annotation",
  1391. "hyperf/framework": "Allows using @Value annotation",
  1392. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1393. },
  1394. "type": "library",
  1395. "extra": {
  1396. "branch-alias": {
  1397. "dev-master": "3.1-dev"
  1398. },
  1399. "hyperf": {
  1400. "config": "Hyperf\\Config\\ConfigProvider"
  1401. }
  1402. },
  1403. "autoload": {
  1404. "files": [
  1405. "./src/Functions.php"
  1406. ],
  1407. "psr-4": {
  1408. "Hyperf\\Config\\": "src/"
  1409. }
  1410. },
  1411. "notification-url": "https://packagist.org/downloads/",
  1412. "license": [
  1413. "MIT"
  1414. ],
  1415. "description": "An independent component that provides configuration container.",
  1416. "homepage": "https://hyperf.io",
  1417. "keywords": [
  1418. "config",
  1419. "configuration",
  1420. "hyperf",
  1421. "php",
  1422. "swoole"
  1423. ],
  1424. "support": {
  1425. "docs": "https://hyperf.wiki",
  1426. "issues": "https://github.com/hyperf/hyperf/issues",
  1427. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1428. "source": "https://github.com/hyperf/hyperf"
  1429. },
  1430. "funding": [
  1431. {
  1432. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1433. "type": "custom"
  1434. },
  1435. {
  1436. "url": "https://opencollective.com/hyperf",
  1437. "type": "open_collective"
  1438. }
  1439. ],
  1440. "time": "2024-03-23T11:28:51+00:00"
  1441. },
  1442. {
  1443. "name": "hyperf/config-center",
  1444. "version": "v3.1.15",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/hyperf/config-center.git",
  1448. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1453. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "hyperf/support": "~3.1.0",
  1458. "php": ">=8.1"
  1459. },
  1460. "suggest": {
  1461. "hyperf/process": "^2.1"
  1462. },
  1463. "type": "library",
  1464. "extra": {
  1465. "branch-alias": {
  1466. "dev-master": "3.1-dev"
  1467. },
  1468. "hyperf": {
  1469. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1470. }
  1471. },
  1472. "autoload": {
  1473. "psr-4": {
  1474. "Hyperf\\ConfigCenter\\": "src/"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "MIT"
  1480. ],
  1481. "description": "The abstraction component of config center",
  1482. "homepage": "https://hyperf.io",
  1483. "keywords": [
  1484. "config-center",
  1485. "hyperf",
  1486. "php"
  1487. ],
  1488. "support": {
  1489. "docs": "https://hyperf.wiki",
  1490. "issues": "https://github.com/hyperf/hyperf/issues",
  1491. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1492. "source": "https://github.com/hyperf/hyperf"
  1493. },
  1494. "funding": [
  1495. {
  1496. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1497. "type": "custom"
  1498. },
  1499. {
  1500. "url": "https://opencollective.com/hyperf",
  1501. "type": "open_collective"
  1502. }
  1503. ],
  1504. "time": "2024-03-23T11:28:51+00:00"
  1505. },
  1506. {
  1507. "name": "hyperf/config-nacos",
  1508. "version": "v3.1.15",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/hyperf/config-nacos.git",
  1512. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1517. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "hyperf/codec": "~3.1.0",
  1522. "hyperf/config-center": "~3.1.0",
  1523. "hyperf/contract": "~3.1.0",
  1524. "hyperf/guzzle": "~3.1.0",
  1525. "hyperf/nacos": "~3.1.0",
  1526. "hyperf/support": "~3.1.0",
  1527. "hyperf/utils": "~3.1.0",
  1528. "jetbrains/phpstorm-attributes": "^1.0",
  1529. "php": ">=8.1"
  1530. },
  1531. "suggest": {
  1532. "ext-json": "*",
  1533. "ext-simplexml": "*",
  1534. "ext-yaml": "*",
  1535. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1536. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1537. "hyperf/process": "Required to use processes. (~2.2.0)"
  1538. },
  1539. "type": "library",
  1540. "extra": {
  1541. "branch-alias": {
  1542. "dev-master": "3.1-dev"
  1543. },
  1544. "hyperf": {
  1545. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1546. }
  1547. },
  1548. "autoload": {
  1549. "psr-4": {
  1550. "Hyperf\\ConfigNacos\\": "src/"
  1551. }
  1552. },
  1553. "notification-url": "https://packagist.org/downloads/",
  1554. "license": [
  1555. "MIT"
  1556. ],
  1557. "description": "A nacos adapter for config center component.",
  1558. "homepage": "https://hyperf.io",
  1559. "keywords": [
  1560. "hyperf",
  1561. "nacos",
  1562. "php",
  1563. "swoole"
  1564. ],
  1565. "support": {
  1566. "docs": "https://hyperf.wiki",
  1567. "issues": "https://github.com/hyperf/hyperf/issues",
  1568. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1569. "source": "https://github.com/hyperf/hyperf"
  1570. },
  1571. "funding": [
  1572. {
  1573. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1574. "type": "custom"
  1575. },
  1576. {
  1577. "url": "https://opencollective.com/hyperf",
  1578. "type": "open_collective"
  1579. }
  1580. ],
  1581. "time": "2024-03-23T11:28:51+00:00"
  1582. },
  1583. {
  1584. "name": "hyperf/constants",
  1585. "version": "v3.1.16",
  1586. "source": {
  1587. "type": "git",
  1588. "url": "https://github.com/hyperf/constants.git",
  1589. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1590. },
  1591. "dist": {
  1592. "type": "zip",
  1593. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1594. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1595. "shasum": ""
  1596. },
  1597. "require": {
  1598. "hyperf/di": "~3.1.0",
  1599. "hyperf/support": "~3.1.0",
  1600. "hyperf/utils": "~3.1.0",
  1601. "php": ">=8.1"
  1602. },
  1603. "suggest": {
  1604. "hyperf/translation": "Required to use translation."
  1605. },
  1606. "type": "library",
  1607. "extra": {
  1608. "branch-alias": {
  1609. "dev-master": "3.1-dev"
  1610. },
  1611. "hyperf": {
  1612. "config": "Hyperf\\Constants\\ConfigProvider"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "psr-4": {
  1617. "Hyperf\\Constants\\": "src/"
  1618. }
  1619. },
  1620. "notification-url": "https://packagist.org/downloads/",
  1621. "license": [
  1622. "MIT"
  1623. ],
  1624. "description": "A constants component for hyperf.",
  1625. "homepage": "https://hyperf.io",
  1626. "keywords": [
  1627. "constants",
  1628. "hyperf",
  1629. "php"
  1630. ],
  1631. "support": {
  1632. "docs": "https://hyperf.wiki",
  1633. "issues": "https://github.com/hyperf/hyperf/issues",
  1634. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1635. "source": "https://github.com/hyperf/hyperf"
  1636. },
  1637. "funding": [
  1638. {
  1639. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1640. "type": "custom"
  1641. },
  1642. {
  1643. "url": "https://opencollective.com/hyperf",
  1644. "type": "open_collective"
  1645. }
  1646. ],
  1647. "time": "2024-03-31T11:35:28+00:00"
  1648. },
  1649. {
  1650. "name": "hyperf/consul",
  1651. "version": "v3.1.22",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/hyperf/consul.git",
  1655. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1660. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1661. "shasum": ""
  1662. },
  1663. "require": {
  1664. "guzzlehttp/guzzle": "^6.3|^7.0",
  1665. "php": ">=8.1"
  1666. },
  1667. "require-dev": {
  1668. "hyperf/guzzle": "~3.1.0"
  1669. },
  1670. "type": "library",
  1671. "extra": {
  1672. "branch-alias": {
  1673. "dev-master": "3.1-dev"
  1674. },
  1675. "hyperf": {
  1676. "config": "Hyperf\\Consul\\ConfigProvider"
  1677. }
  1678. },
  1679. "autoload": {
  1680. "psr-4": {
  1681. "Hyperf\\Consul\\": "src/"
  1682. }
  1683. },
  1684. "notification-url": "https://packagist.org/downloads/",
  1685. "license": [
  1686. "MIT"
  1687. ],
  1688. "description": "A Consul Client for Hyperf.",
  1689. "homepage": "https://hyperf.io",
  1690. "keywords": [
  1691. "consul",
  1692. "consul-client",
  1693. "hyperf",
  1694. "php",
  1695. "swoole"
  1696. ],
  1697. "support": {
  1698. "docs": "https://hyperf.wiki",
  1699. "issues": "https://github.com/hyperf/hyperf/issues",
  1700. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1701. "source": "https://github.com/hyperf/hyperf"
  1702. },
  1703. "funding": [
  1704. {
  1705. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1706. "type": "custom"
  1707. },
  1708. {
  1709. "url": "https://opencollective.com/hyperf",
  1710. "type": "open_collective"
  1711. }
  1712. ],
  1713. "time": "2024-05-15T06:42:24+00:00"
  1714. },
  1715. {
  1716. "name": "hyperf/context",
  1717. "version": "v3.1.15",
  1718. "source": {
  1719. "type": "git",
  1720. "url": "https://github.com/hyperf/context.git",
  1721. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1722. },
  1723. "dist": {
  1724. "type": "zip",
  1725. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1726. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1727. "shasum": ""
  1728. },
  1729. "require": {
  1730. "hyperf/engine": "^2.0",
  1731. "php": ">=8.1"
  1732. },
  1733. "suggest": {
  1734. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1735. },
  1736. "type": "library",
  1737. "extra": {
  1738. "branch-alias": {
  1739. "dev-master": "3.1-dev"
  1740. }
  1741. },
  1742. "autoload": {
  1743. "psr-4": {
  1744. "Hyperf\\Context\\": "src/"
  1745. }
  1746. },
  1747. "notification-url": "https://packagist.org/downloads/",
  1748. "license": [
  1749. "MIT"
  1750. ],
  1751. "description": "A coroutine/application context library.",
  1752. "homepage": "https://hyperf.io",
  1753. "keywords": [
  1754. "Context",
  1755. "hyperf",
  1756. "php",
  1757. "swoole"
  1758. ],
  1759. "support": {
  1760. "docs": "https://hyperf.wiki",
  1761. "issues": "https://github.com/hyperf/hyperf/issues",
  1762. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1763. "source": "https://github.com/hyperf/hyperf"
  1764. },
  1765. "funding": [
  1766. {
  1767. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1768. "type": "custom"
  1769. },
  1770. {
  1771. "url": "https://opencollective.com/hyperf",
  1772. "type": "open_collective"
  1773. }
  1774. ],
  1775. "time": "2024-03-23T11:28:51+00:00"
  1776. },
  1777. {
  1778. "name": "hyperf/contract",
  1779. "version": "v3.1.15",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://github.com/hyperf/contract.git",
  1783. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1788. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1789. "shasum": ""
  1790. },
  1791. "require": {
  1792. "php": ">=8.1"
  1793. },
  1794. "type": "library",
  1795. "extra": {
  1796. "branch-alias": {
  1797. "dev-master": "3.1-dev"
  1798. }
  1799. },
  1800. "autoload": {
  1801. "psr-4": {
  1802. "Hyperf\\Contract\\": "src/"
  1803. }
  1804. },
  1805. "notification-url": "https://packagist.org/downloads/",
  1806. "license": [
  1807. "MIT"
  1808. ],
  1809. "description": "The contracts of Hyperf.",
  1810. "homepage": "https://hyperf.io",
  1811. "keywords": [
  1812. "hyperf",
  1813. "php",
  1814. "swoole"
  1815. ],
  1816. "support": {
  1817. "docs": "https://hyperf.wiki",
  1818. "issues": "https://github.com/hyperf/hyperf/issues",
  1819. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1820. "source": "https://github.com/hyperf/hyperf"
  1821. },
  1822. "funding": [
  1823. {
  1824. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1825. "type": "custom"
  1826. },
  1827. {
  1828. "url": "https://opencollective.com/hyperf",
  1829. "type": "open_collective"
  1830. }
  1831. ],
  1832. "time": "2024-03-23T11:28:51+00:00"
  1833. },
  1834. {
  1835. "name": "hyperf/coordinator",
  1836. "version": "v3.1.21",
  1837. "source": {
  1838. "type": "git",
  1839. "url": "https://github.com/hyperf/coordinator.git",
  1840. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1841. },
  1842. "dist": {
  1843. "type": "zip",
  1844. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1845. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1846. "shasum": ""
  1847. },
  1848. "require": {
  1849. "hyperf/engine": "^2.0",
  1850. "php": ">=8.1"
  1851. },
  1852. "type": "library",
  1853. "extra": {
  1854. "branch-alias": {
  1855. "dev-master": "3.1-dev"
  1856. }
  1857. },
  1858. "autoload": {
  1859. "files": [
  1860. "src/Functions.php"
  1861. ],
  1862. "psr-4": {
  1863. "Hyperf\\Coordinator\\": "src/"
  1864. }
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "description": "Hyperf Coordinator",
  1871. "homepage": "https://hyperf.io",
  1872. "keywords": [
  1873. "Coordinator",
  1874. "hyperf",
  1875. "php",
  1876. "swoole"
  1877. ],
  1878. "support": {
  1879. "docs": "https://hyperf.wiki",
  1880. "issues": "https://github.com/hyperf/hyperf/issues",
  1881. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1882. "source": "https://github.com/hyperf/hyperf"
  1883. },
  1884. "funding": [
  1885. {
  1886. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1887. "type": "custom"
  1888. },
  1889. {
  1890. "url": "https://opencollective.com/hyperf",
  1891. "type": "open_collective"
  1892. }
  1893. ],
  1894. "time": "2024-05-09T02:35:08+00:00"
  1895. },
  1896. {
  1897. "name": "hyperf/coroutine",
  1898. "version": "v3.1.15",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/hyperf/coroutine.git",
  1902. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1907. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "hyperf/context": "~3.1.0",
  1912. "hyperf/contract": "~3.1.0",
  1913. "hyperf/engine": "^2.0",
  1914. "php": ">=8.1"
  1915. },
  1916. "type": "library",
  1917. "extra": {
  1918. "branch-alias": {
  1919. "dev-master": "3.1-dev"
  1920. }
  1921. },
  1922. "autoload": {
  1923. "files": [
  1924. "src/Functions.php"
  1925. ],
  1926. "psr-4": {
  1927. "Hyperf\\Coroutine\\": "src/"
  1928. }
  1929. },
  1930. "notification-url": "https://packagist.org/downloads/",
  1931. "license": [
  1932. "MIT"
  1933. ],
  1934. "description": "Hyperf Coroutine",
  1935. "homepage": "https://hyperf.io",
  1936. "keywords": [
  1937. "coroutine",
  1938. "hyperf",
  1939. "php",
  1940. "swoole"
  1941. ],
  1942. "support": {
  1943. "docs": "https://hyperf.wiki",
  1944. "issues": "https://github.com/hyperf/hyperf/issues",
  1945. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1946. "source": "https://github.com/hyperf/hyperf"
  1947. },
  1948. "funding": [
  1949. {
  1950. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1951. "type": "custom"
  1952. },
  1953. {
  1954. "url": "https://opencollective.com/hyperf",
  1955. "type": "open_collective"
  1956. }
  1957. ],
  1958. "time": "2024-03-23T11:28:51+00:00"
  1959. },
  1960. {
  1961. "name": "hyperf/database",
  1962. "version": "v3.1.24",
  1963. "source": {
  1964. "type": "git",
  1965. "url": "https://github.com/hyperf/database.git",
  1966. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1967. },
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1971. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1972. "shasum": ""
  1973. },
  1974. "require": {
  1975. "hyperf/code-parser": "~3.1.0",
  1976. "hyperf/collection": "~3.1.0",
  1977. "hyperf/macroable": "~3.1.0",
  1978. "hyperf/support": "~3.1.0",
  1979. "hyperf/tappable": "~3.1.0",
  1980. "hyperf/utils": "~3.1.0",
  1981. "nesbot/carbon": "^2.0",
  1982. "php": ">=8.1",
  1983. "psr/container": "^1.0|^2.0",
  1984. "psr/event-dispatcher": "^1.0"
  1985. },
  1986. "suggest": {
  1987. "doctrine/dbal": "Required to rename columns (^3.0).",
  1988. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1989. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1990. },
  1991. "type": "library",
  1992. "extra": {
  1993. "branch-alias": {
  1994. "dev-master": "3.1-dev"
  1995. }
  1996. },
  1997. "autoload": {
  1998. "psr-4": {
  1999. "Hyperf\\Database\\": "src/"
  2000. }
  2001. },
  2002. "notification-url": "https://packagist.org/downloads/",
  2003. "license": [
  2004. "MIT"
  2005. ],
  2006. "description": "A flexible database library.",
  2007. "homepage": "https://hyperf.io",
  2008. "keywords": [
  2009. "database",
  2010. "hyperf",
  2011. "php"
  2012. ],
  2013. "support": {
  2014. "docs": "https://hyperf.wiki",
  2015. "issues": "https://github.com/hyperf/hyperf/issues",
  2016. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2017. "source": "https://github.com/hyperf/hyperf"
  2018. },
  2019. "funding": [
  2020. {
  2021. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2022. "type": "custom"
  2023. },
  2024. {
  2025. "url": "https://opencollective.com/hyperf",
  2026. "type": "open_collective"
  2027. }
  2028. ],
  2029. "time": "2024-05-24T06:14:27+00:00"
  2030. },
  2031. {
  2032. "name": "hyperf/db-connection",
  2033. "version": "v3.1.15",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://github.com/hyperf/db-connection.git",
  2037. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2042. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2043. "shasum": ""
  2044. },
  2045. "require": {
  2046. "hyperf/database": "~3.1.0",
  2047. "hyperf/di": "~3.1.0",
  2048. "hyperf/framework": "~3.1.0",
  2049. "hyperf/model-listener": "~3.1.0",
  2050. "hyperf/pool": "~3.1.0",
  2051. "hyperf/support": "~3.1.0",
  2052. "hyperf/utils": "~3.1.0",
  2053. "php": ">=8.1",
  2054. "psr/container": "^1.0|^2.0"
  2055. },
  2056. "type": "library",
  2057. "extra": {
  2058. "branch-alias": {
  2059. "dev-master": "3.1-dev"
  2060. },
  2061. "hyperf": {
  2062. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2063. }
  2064. },
  2065. "autoload": {
  2066. "psr-4": {
  2067. "Hyperf\\DbConnection\\": "src/"
  2068. }
  2069. },
  2070. "notification-url": "https://packagist.org/downloads/",
  2071. "license": [
  2072. "MIT"
  2073. ],
  2074. "description": "A hyperf db connection handler for hyperf/database.",
  2075. "homepage": "https://hyperf.io",
  2076. "keywords": [
  2077. "Connection",
  2078. "database",
  2079. "hyperf",
  2080. "php"
  2081. ],
  2082. "support": {
  2083. "docs": "https://hyperf.wiki",
  2084. "issues": "https://github.com/hyperf/hyperf/issues",
  2085. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2086. "source": "https://github.com/hyperf/hyperf"
  2087. },
  2088. "funding": [
  2089. {
  2090. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2091. "type": "custom"
  2092. },
  2093. {
  2094. "url": "https://opencollective.com/hyperf",
  2095. "type": "open_collective"
  2096. }
  2097. ],
  2098. "time": "2024-03-23T11:28:51+00:00"
  2099. },
  2100. {
  2101. "name": "hyperf/di",
  2102. "version": "v3.1.15",
  2103. "source": {
  2104. "type": "git",
  2105. "url": "https://github.com/hyperf/di.git",
  2106. "reference": "681120f158739bde07dc5c761e11be56e8d07109"
  2107. },
  2108. "dist": {
  2109. "type": "zip",
  2110. "url": "https://api.github.com/repos/hyperf/di/zipball/681120f158739bde07dc5c761e11be56e8d07109",
  2111. "reference": "681120f158739bde07dc5c761e11be56e8d07109",
  2112. "shasum": "",
  2113. "mirrors": [
  2114. {
  2115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2116. "preferred": true
  2117. }
  2118. ]
  2119. },
  2120. "require": {
  2121. "doctrine/instantiator": "^1.0",
  2122. "hyperf/code-parser": "~3.1.0",
  2123. "hyperf/pipeline": "~3.1.0",
  2124. "hyperf/stdlib": "~3.1.0",
  2125. "hyperf/support": "~3.1.0",
  2126. "nikic/php-parser": "^4.1",
  2127. "php": ">=8.1",
  2128. "php-di/phpdoc-reader": "^2.2",
  2129. "psr/container": "^1.0|^2.0",
  2130. "symfony/finder": "^5.0|^6.0|^7.0",
  2131. "vlucas/phpdotenv": "^5.0"
  2132. },
  2133. "suggest": {
  2134. "ext-pcntl": "Required to scan annotations.",
  2135. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2136. },
  2137. "type": "library",
  2138. "extra": {
  2139. "branch-alias": {
  2140. "dev-master": "3.1-dev"
  2141. },
  2142. "hyperf": {
  2143. "config": "Hyperf\\Di\\ConfigProvider"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "psr-4": {
  2148. "Hyperf\\Di\\": "src/"
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "description": "A DI for Hyperf.",
  2156. "homepage": "https://hyperf.io",
  2157. "keywords": [
  2158. "annotation",
  2159. "di",
  2160. "hyperf",
  2161. "php",
  2162. "swoole"
  2163. ],
  2164. "support": {
  2165. "docs": "https://hyperf.wiki",
  2166. "issues": "https://github.com/hyperf/hyperf/issues",
  2167. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2168. "source": "https://github.com/hyperf/hyperf"
  2169. },
  2170. "funding": [
  2171. {
  2172. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2173. "type": "custom"
  2174. },
  2175. {
  2176. "url": "https://opencollective.com/hyperf",
  2177. "type": "open_collective"
  2178. }
  2179. ],
  2180. "time": "2024-03-23T11:28:51+00:00"
  2181. },
  2182. {
  2183. "name": "hyperf/dispatcher",
  2184. "version": "v3.1.15",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/hyperf/dispatcher.git",
  2188. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2193. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "hyperf/contract": "~3.1.0",
  2198. "php": ">=8.1",
  2199. "psr/container": "^1.0|^2.0",
  2200. "psr/http-message": "^1.0|^2.0",
  2201. "psr/http-server-middleware": "^1.0"
  2202. },
  2203. "type": "library",
  2204. "extra": {
  2205. "branch-alias": {
  2206. "dev-master": "3.1-dev"
  2207. },
  2208. "hyperf": {
  2209. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2210. }
  2211. },
  2212. "autoload": {
  2213. "psr-4": {
  2214. "Hyperf\\Dispatcher\\": "src/"
  2215. }
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "MIT"
  2220. ],
  2221. "description": "A HTTP Server for Hyperf.",
  2222. "homepage": "https://hyperf.io",
  2223. "keywords": [
  2224. "dispatcher",
  2225. "filter",
  2226. "hyperf",
  2227. "middleware",
  2228. "php",
  2229. "swoole"
  2230. ],
  2231. "support": {
  2232. "docs": "https://hyperf.wiki",
  2233. "issues": "https://github.com/hyperf/hyperf/issues",
  2234. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2235. "source": "https://github.com/hyperf/hyperf"
  2236. },
  2237. "funding": [
  2238. {
  2239. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2240. "type": "custom"
  2241. },
  2242. {
  2243. "url": "https://opencollective.com/hyperf",
  2244. "type": "open_collective"
  2245. }
  2246. ],
  2247. "time": "2024-03-23T11:28:51+00:00"
  2248. },
  2249. {
  2250. "name": "hyperf/engine",
  2251. "version": "v2.11.0",
  2252. "source": {
  2253. "type": "git",
  2254. "url": "https://github.com/hyperf/engine.git",
  2255. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2256. },
  2257. "dist": {
  2258. "type": "zip",
  2259. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2260. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2261. "shasum": ""
  2262. },
  2263. "require": {
  2264. "hyperf/engine-contract": "~1.10.0",
  2265. "php": ">=8.0"
  2266. },
  2267. "conflict": {
  2268. "ext-swoole": "<5.0"
  2269. },
  2270. "require-dev": {
  2271. "friendsofphp/php-cs-fixer": "^3.0",
  2272. "hyperf/guzzle": "^3.0",
  2273. "hyperf/http-message": "^3.0",
  2274. "mockery/mockery": "^1.5",
  2275. "phpstan/phpstan": "^1.0",
  2276. "phpunit/phpunit": "^9.4",
  2277. "swoole/ide-helper": "5.*"
  2278. },
  2279. "suggest": {
  2280. "ext-sockets": "*",
  2281. "ext-swoole": ">=5.0",
  2282. "hyperf/http-message": "Required to use ResponseEmitter.",
  2283. "psr/http-message": "Required to use WebSocket Frame."
  2284. },
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-master": "2.11-dev"
  2289. },
  2290. "hyperf": {
  2291. "config": "Hyperf\\Engine\\ConfigProvider"
  2292. }
  2293. },
  2294. "autoload": {
  2295. "files": [
  2296. "src/Functions.php"
  2297. ],
  2298. "psr-4": {
  2299. "Hyperf\\Engine\\": "src/"
  2300. }
  2301. },
  2302. "notification-url": "https://packagist.org/downloads/",
  2303. "license": [
  2304. "MIT"
  2305. ],
  2306. "description": "Coroutine engine provided by swoole.",
  2307. "keywords": [
  2308. "engine",
  2309. "hyperf",
  2310. "php",
  2311. "swoole"
  2312. ],
  2313. "support": {
  2314. "issues": "https://github.com/hyperf/engine/issues",
  2315. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2316. },
  2317. "funding": [
  2318. {
  2319. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2320. "type": "custom"
  2321. },
  2322. {
  2323. "url": "https://opencollective.com/hyperf",
  2324. "type": "open_collective"
  2325. }
  2326. ],
  2327. "time": "2024-04-17T13:36:28+00:00"
  2328. },
  2329. {
  2330. "name": "hyperf/engine-contract",
  2331. "version": "v1.10.1",
  2332. "source": {
  2333. "type": "git",
  2334. "url": "https://github.com/hyperf/engine-contract.git",
  2335. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2336. },
  2337. "dist": {
  2338. "type": "zip",
  2339. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2340. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2341. "shasum": ""
  2342. },
  2343. "require": {
  2344. "php": ">=8.0"
  2345. },
  2346. "require-dev": {
  2347. "friendsofphp/php-cs-fixer": "^3.0",
  2348. "mockery/mockery": "^1.0",
  2349. "phpstan/phpstan": "^1.0",
  2350. "phpunit/phpunit": ">=7.0",
  2351. "psr/http-message": "^1.0",
  2352. "swoole/ide-helper": "^4.5"
  2353. },
  2354. "suggest": {
  2355. "psr/http-message": "Required to use WebSocket Frame."
  2356. },
  2357. "type": "library",
  2358. "extra": {
  2359. "branch-alias": {
  2360. "dev-master": "1.9-dev"
  2361. }
  2362. },
  2363. "autoload": {
  2364. "psr-4": {
  2365. "Hyperf\\Engine\\Contract\\": "src/"
  2366. }
  2367. },
  2368. "notification-url": "https://packagist.org/downloads/",
  2369. "license": [
  2370. "MIT"
  2371. ],
  2372. "description": "Contract for Coroutine Engine",
  2373. "keywords": [
  2374. "contract",
  2375. "coroutine",
  2376. "engine",
  2377. "hyperf",
  2378. "php"
  2379. ],
  2380. "support": {
  2381. "issues": "https://github.com/hyperf/engine-contract/issues",
  2382. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  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-04-17T13:34:51+00:00"
  2395. },
  2396. {
  2397. "name": "hyperf/event",
  2398. "version": "v3.1.15",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/hyperf/event.git",
  2402. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2407. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "hyperf/contract": "~3.1.0",
  2412. "hyperf/stdlib": "~3.1.0",
  2413. "php": ">=8.1",
  2414. "psr/event-dispatcher": "^1.0"
  2415. },
  2416. "suggest": {
  2417. "hyperf/di": "Required to use annotatioins."
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "branch-alias": {
  2422. "dev-master": "3.1-dev"
  2423. },
  2424. "hyperf": {
  2425. "config": "Hyperf\\Event\\ConfigProvider"
  2426. }
  2427. },
  2428. "autoload": {
  2429. "psr-4": {
  2430. "Hyperf\\Event\\": "src/"
  2431. }
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "MIT"
  2436. ],
  2437. "description": "an event manager that implements PSR-14.",
  2438. "homepage": "https://hyperf.io",
  2439. "keywords": [
  2440. "event",
  2441. "hyperf",
  2442. "php",
  2443. "swoole"
  2444. ],
  2445. "support": {
  2446. "docs": "https://hyperf.wiki",
  2447. "issues": "https://github.com/hyperf/hyperf/issues",
  2448. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2449. "source": "https://github.com/hyperf/hyperf"
  2450. },
  2451. "funding": [
  2452. {
  2453. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2454. "type": "custom"
  2455. },
  2456. {
  2457. "url": "https://opencollective.com/hyperf",
  2458. "type": "open_collective"
  2459. }
  2460. ],
  2461. "time": "2024-03-23T11:28:51+00:00"
  2462. },
  2463. {
  2464. "name": "hyperf/exception-handler",
  2465. "version": "v3.1.22",
  2466. "source": {
  2467. "type": "git",
  2468. "url": "https://github.com/hyperf/exception-handler.git",
  2469. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2470. },
  2471. "dist": {
  2472. "type": "zip",
  2473. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2474. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2475. "shasum": ""
  2476. },
  2477. "require": {
  2478. "hyperf/context": "~3.1.0",
  2479. "hyperf/contract": "~3.1.0",
  2480. "hyperf/dispatcher": "~3.1.0",
  2481. "hyperf/http-message": "~3.1.0",
  2482. "hyperf/stdlib": "~3.1.0",
  2483. "hyperf/support": "~3.1.0",
  2484. "php": ">=8.1",
  2485. "psr/container": "^1.0|^2.0",
  2486. "psr/http-message": "^1.0|^2.0",
  2487. "swow/psr7-plus": "^1.0"
  2488. },
  2489. "suggest": {
  2490. "hyperf/di": "Required to use #[ExceptionHandler]",
  2491. "hyperf/event": "Required to use listeners",
  2492. "hyperf/framework": "Required to use listeners",
  2493. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2494. },
  2495. "type": "library",
  2496. "extra": {
  2497. "branch-alias": {
  2498. "dev-master": "3.1-dev"
  2499. },
  2500. "hyperf": {
  2501. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2502. }
  2503. },
  2504. "autoload": {
  2505. "psr-4": {
  2506. "Hyperf\\ExceptionHandler\\": "src/"
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "MIT"
  2512. ],
  2513. "description": "Exception handler for hyperf",
  2514. "homepage": "https://hyperf.io",
  2515. "keywords": [
  2516. "exception-handler",
  2517. "php",
  2518. "swoole"
  2519. ],
  2520. "support": {
  2521. "docs": "https://hyperf.wiki",
  2522. "issues": "https://github.com/hyperf/hyperf/issues",
  2523. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2524. "source": "https://github.com/hyperf/hyperf"
  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-05-15T07:12:41+00:00"
  2537. },
  2538. {
  2539. "name": "hyperf/framework",
  2540. "version": "v3.1.23",
  2541. "source": {
  2542. "type": "git",
  2543. "url": "https://github.com/hyperf/framework.git",
  2544. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2545. },
  2546. "dist": {
  2547. "type": "zip",
  2548. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2549. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2550. "shasum": ""
  2551. },
  2552. "require": {
  2553. "fig/http-message-util": "^1.1.2",
  2554. "hyperf/contract": "~3.1.0",
  2555. "hyperf/coordinator": "~3.1.0",
  2556. "hyperf/coroutine": "~3.1.0",
  2557. "php": ">=8.1",
  2558. "psr/container": "^1.0|^2.0",
  2559. "psr/event-dispatcher": "^1.0",
  2560. "psr/log": "^1.0|^2.0|^3.0"
  2561. },
  2562. "suggest": {
  2563. "ext-swoole": "Required to use swoole engine.",
  2564. "hyperf/command": "Required to use Command annotation.",
  2565. "hyperf/di": "Required to use Command annotation.",
  2566. "hyperf/dispatcher": "Required to use BootApplication event.",
  2567. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "3.1-dev"
  2573. },
  2574. "hyperf": {
  2575. "config": "Hyperf\\Framework\\ConfigProvider"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "psr-4": {
  2580. "Hyperf\\Framework\\": "src/"
  2581. }
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2588. "homepage": "https://hyperf.io",
  2589. "keywords": [
  2590. "Microservice",
  2591. "framework",
  2592. "hyperf",
  2593. "middleware",
  2594. "php",
  2595. "swoole"
  2596. ],
  2597. "support": {
  2598. "docs": "https://hyperf.wiki",
  2599. "issues": "https://github.com/hyperf/hyperf/issues",
  2600. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2601. "source": "https://github.com/hyperf/hyperf"
  2602. },
  2603. "funding": [
  2604. {
  2605. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2606. "type": "custom"
  2607. },
  2608. {
  2609. "url": "https://opencollective.com/hyperf",
  2610. "type": "open_collective"
  2611. }
  2612. ],
  2613. "time": "2024-05-21T05:43:48+00:00"
  2614. },
  2615. {
  2616. "name": "hyperf/guzzle",
  2617. "version": "v3.1.15",
  2618. "source": {
  2619. "type": "git",
  2620. "url": "https://github.com/hyperf/guzzle.git",
  2621. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2622. },
  2623. "dist": {
  2624. "type": "zip",
  2625. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2626. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2627. "shasum": ""
  2628. },
  2629. "require": {
  2630. "guzzlehttp/guzzle": "^6.3|^7.0",
  2631. "php": ">=8.1",
  2632. "psr/container": "^1.0|^2.0",
  2633. "psr/http-message": "^1.0|^2.0"
  2634. },
  2635. "suggest": {
  2636. "ext-curl": "Required for CURL handler support",
  2637. "hyperf/pool": "Required to use pool handler."
  2638. },
  2639. "type": "library",
  2640. "extra": {
  2641. "branch-alias": {
  2642. "dev-master": "3.1-dev"
  2643. },
  2644. "hyperf": {
  2645. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Hyperf\\Guzzle\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "description": "Swoole coroutine handler for guzzle",
  2658. "keywords": [
  2659. "Guzzle",
  2660. "handler",
  2661. "php",
  2662. "swoole"
  2663. ],
  2664. "support": {
  2665. "issues": "https://github.com/hyperf/guzzle/issues",
  2666. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2667. },
  2668. "funding": [
  2669. {
  2670. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2671. "type": "custom"
  2672. },
  2673. {
  2674. "url": "https://opencollective.com/hyperf",
  2675. "type": "open_collective"
  2676. }
  2677. ],
  2678. "time": "2024-03-23T11:28:51+00:00"
  2679. },
  2680. {
  2681. "name": "hyperf/http-message",
  2682. "version": "v3.1.19",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/hyperf/http-message.git",
  2686. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2691. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "hyperf/codec": "~3.1.0",
  2696. "hyperf/engine": "^2.11",
  2697. "hyperf/support": "~3.1.0",
  2698. "laminas/laminas-mime": "^2.7",
  2699. "php": ">=8.1",
  2700. "psr/http-message": "^1.0|^2.0",
  2701. "swow/psr7-plus": "^1.0"
  2702. },
  2703. "suggest": {
  2704. "psr/container": "Required to replace RequestParserInterface."
  2705. },
  2706. "type": "library",
  2707. "extra": {
  2708. "branch-alias": {
  2709. "dev-master": "3.1-dev"
  2710. },
  2711. "hyperf": {
  2712. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2713. }
  2714. },
  2715. "autoload": {
  2716. "psr-4": {
  2717. "Hyperf\\HttpMessage\\": "src/"
  2718. }
  2719. },
  2720. "notification-url": "https://packagist.org/downloads/",
  2721. "license": [
  2722. "MIT"
  2723. ],
  2724. "description": "microservice framework base on swoole",
  2725. "keywords": [
  2726. "http-message",
  2727. "hyperf",
  2728. "php",
  2729. "swoole"
  2730. ],
  2731. "support": {
  2732. "issues": "https://github.com/hyperf/http-message/issues",
  2733. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2734. },
  2735. "funding": [
  2736. {
  2737. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2738. "type": "custom"
  2739. },
  2740. {
  2741. "url": "https://opencollective.com/hyperf",
  2742. "type": "open_collective"
  2743. }
  2744. ],
  2745. "time": "2024-04-17T13:55:51+00:00"
  2746. },
  2747. {
  2748. "name": "hyperf/http-server",
  2749. "version": "v3.1.17",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/hyperf/http-server.git",
  2753. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2758. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "hyperf/codec": "~3.1.0",
  2763. "hyperf/collection": "~3.1.0",
  2764. "hyperf/context": "~3.1.0",
  2765. "hyperf/contract": "~3.1.0",
  2766. "hyperf/coroutine": "~3.1.0",
  2767. "hyperf/dispatcher": "~3.1.0",
  2768. "hyperf/event": "~3.1.0",
  2769. "hyperf/exception-handler": "~3.1.0",
  2770. "hyperf/http-message": "~3.1.0",
  2771. "hyperf/macroable": "~3.1.0",
  2772. "hyperf/serializer": "~3.1.0",
  2773. "hyperf/server": "~3.1.0",
  2774. "hyperf/stdlib": "~3.1.0",
  2775. "hyperf/support": "~3.1.0",
  2776. "nikic/fast-route": "^1.3",
  2777. "php": ">=8.1",
  2778. "psr/container": "^1.0|^2.0",
  2779. "swow/psr7-plus": "^1.0"
  2780. },
  2781. "suggest": {
  2782. "hyperf/di": "Required to use annotations."
  2783. },
  2784. "type": "library",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-master": "3.1-dev"
  2788. },
  2789. "hyperf": {
  2790. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2791. }
  2792. },
  2793. "autoload": {
  2794. "psr-4": {
  2795. "Hyperf\\HttpServer\\": "src/"
  2796. }
  2797. },
  2798. "notification-url": "https://packagist.org/downloads/",
  2799. "license": [
  2800. "MIT"
  2801. ],
  2802. "description": "A HTTP Server for Hyperf.",
  2803. "homepage": "https://hyperf.io",
  2804. "keywords": [
  2805. "http",
  2806. "http-server",
  2807. "hyperf",
  2808. "php",
  2809. "swoole"
  2810. ],
  2811. "support": {
  2812. "docs": "https://hyperf.wiki",
  2813. "issues": "https://github.com/hyperf/hyperf/issues",
  2814. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2815. "source": "https://github.com/hyperf/hyperf"
  2816. },
  2817. "funding": [
  2818. {
  2819. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2820. "type": "custom"
  2821. },
  2822. {
  2823. "url": "https://opencollective.com/hyperf",
  2824. "type": "open_collective"
  2825. }
  2826. ],
  2827. "time": "2024-04-08T07:53:54+00:00"
  2828. },
  2829. {
  2830. "name": "hyperf/json-rpc",
  2831. "version": "v3.1.23",
  2832. "source": {
  2833. "type": "git",
  2834. "url": "https://github.com/hyperf/json-rpc.git",
  2835. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2836. },
  2837. "dist": {
  2838. "type": "zip",
  2839. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2840. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2841. "shasum": ""
  2842. },
  2843. "require": {
  2844. "hyperf/codec": "~3.1.0",
  2845. "hyperf/context": "~3.1.0",
  2846. "hyperf/contract": "~3.1.0",
  2847. "hyperf/engine": "^2.0",
  2848. "hyperf/http-message": "~3.1.0",
  2849. "hyperf/load-balancer": "~3.1.0",
  2850. "hyperf/rpc": "~3.1.0",
  2851. "hyperf/serializer": "~3.1.0",
  2852. "hyperf/support": "~3.1.0",
  2853. "hyperf/utils": "~3.1.0",
  2854. "php": ">=8.1",
  2855. "psr/container": "^1.0|^2.0",
  2856. "swow/psr7-plus": "^1.0"
  2857. },
  2858. "suggest": {
  2859. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2860. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2861. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2862. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2863. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2864. },
  2865. "type": "library",
  2866. "extra": {
  2867. "branch-alias": {
  2868. "dev-master": "3.1-dev"
  2869. },
  2870. "hyperf": {
  2871. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2872. }
  2873. },
  2874. "autoload": {
  2875. "psr-4": {
  2876. "Hyperf\\JsonRpc\\": "src/"
  2877. }
  2878. },
  2879. "notification-url": "https://packagist.org/downloads/",
  2880. "license": [
  2881. "MIT"
  2882. ],
  2883. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2884. "homepage": "https://hyperf.io",
  2885. "keywords": [
  2886. "hyperf",
  2887. "json-rpc",
  2888. "php",
  2889. "swoole"
  2890. ],
  2891. "support": {
  2892. "docs": "https://hyperf.wiki",
  2893. "issues": "https://github.com/hyperf/hyperf/issues",
  2894. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2895. "source": "https://github.com/hyperf/hyperf"
  2896. },
  2897. "funding": [
  2898. {
  2899. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2900. "type": "custom"
  2901. },
  2902. {
  2903. "url": "https://opencollective.com/hyperf",
  2904. "type": "open_collective"
  2905. }
  2906. ],
  2907. "time": "2024-05-23T03:43:58+00:00"
  2908. },
  2909. {
  2910. "name": "hyperf/load-balancer",
  2911. "version": "v3.1.15",
  2912. "source": {
  2913. "type": "git",
  2914. "url": "https://github.com/hyperf/load-balancer.git",
  2915. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2916. },
  2917. "dist": {
  2918. "type": "zip",
  2919. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2920. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2921. "shasum": ""
  2922. },
  2923. "require": {
  2924. "hyperf/coordinator": "~3.1.0",
  2925. "hyperf/coroutine": "~3.1.0",
  2926. "markrogoyski/math-php": "^2.0",
  2927. "php": ">=8.1",
  2928. "psr/log": "^1.0|^2.0|^3.0"
  2929. },
  2930. "type": "library",
  2931. "extra": {
  2932. "branch-alias": {
  2933. "dev-master": "3.1-dev"
  2934. },
  2935. "hyperf": {
  2936. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Hyperf\\LoadBalancer\\": "src/"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "description": "A load balancer library for Hyperf.",
  2949. "homepage": "https://hyperf.io",
  2950. "keywords": [
  2951. "hyperf",
  2952. "load-balancer",
  2953. "php",
  2954. "swoole"
  2955. ],
  2956. "support": {
  2957. "docs": "https://hyperf.wiki",
  2958. "issues": "https://github.com/hyperf/hyperf/issues",
  2959. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2960. "source": "https://github.com/hyperf/hyperf"
  2961. },
  2962. "funding": [
  2963. {
  2964. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2965. "type": "custom"
  2966. },
  2967. {
  2968. "url": "https://opencollective.com/hyperf",
  2969. "type": "open_collective"
  2970. }
  2971. ],
  2972. "time": "2024-03-23T11:28:51+00:00"
  2973. },
  2974. {
  2975. "name": "hyperf/logger",
  2976. "version": "v3.1.15",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/hyperf/logger.git",
  2980. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2985. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "hyperf/contract": "~3.1.0",
  2990. "hyperf/support": "~3.1.0",
  2991. "hyperf/utils": "~3.1.0",
  2992. "monolog/monolog": "^2.7|^3.1",
  2993. "php": ">=8.1",
  2994. "psr/container": "^1.0|^2.0",
  2995. "psr/log": "^1.0|^2.0|^3.0"
  2996. },
  2997. "type": "library",
  2998. "extra": {
  2999. "branch-alias": {
  3000. "dev-master": "3.1-dev"
  3001. },
  3002. "hyperf": {
  3003. "config": "Hyperf\\Logger\\ConfigProvider"
  3004. }
  3005. },
  3006. "autoload": {
  3007. "psr-4": {
  3008. "Hyperf\\Logger\\": "src/"
  3009. }
  3010. },
  3011. "notification-url": "https://packagist.org/downloads/",
  3012. "license": [
  3013. "MIT"
  3014. ],
  3015. "description": "A logger component for hyperf.",
  3016. "homepage": "https://hyperf.io",
  3017. "keywords": [
  3018. "hyperf",
  3019. "logger",
  3020. "php"
  3021. ],
  3022. "support": {
  3023. "docs": "https://hyperf.wiki",
  3024. "issues": "https://github.com/hyperf/hyperf/issues",
  3025. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3026. "source": "https://github.com/hyperf/hyperf"
  3027. },
  3028. "funding": [
  3029. {
  3030. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3031. "type": "custom"
  3032. },
  3033. {
  3034. "url": "https://opencollective.com/hyperf",
  3035. "type": "open_collective"
  3036. }
  3037. ],
  3038. "time": "2024-03-23T11:28:51+00:00"
  3039. },
  3040. {
  3041. "name": "hyperf/macroable",
  3042. "version": "v3.1.23",
  3043. "source": {
  3044. "type": "git",
  3045. "url": "https://github.com/hyperf/macroable.git",
  3046. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3047. },
  3048. "dist": {
  3049. "type": "zip",
  3050. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3051. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3052. "shasum": ""
  3053. },
  3054. "require": {
  3055. "php": ">=8.1"
  3056. },
  3057. "type": "library",
  3058. "extra": {
  3059. "branch-alias": {
  3060. "dev-master": "3.1-dev"
  3061. }
  3062. },
  3063. "autoload": {
  3064. "psr-4": {
  3065. "Hyperf\\Macroable\\": "src/"
  3066. }
  3067. },
  3068. "notification-url": "https://packagist.org/downloads/",
  3069. "license": [
  3070. "MIT"
  3071. ],
  3072. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3073. "homepage": "https://hyperf.io",
  3074. "keywords": [
  3075. "hyperf",
  3076. "macroable",
  3077. "php",
  3078. "swoole"
  3079. ],
  3080. "support": {
  3081. "docs": "https://hyperf.wiki",
  3082. "issues": "https://github.com/hyperf/hyperf/issues",
  3083. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3084. "source": "https://github.com/hyperf/hyperf"
  3085. },
  3086. "funding": [
  3087. {
  3088. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3089. "type": "custom"
  3090. },
  3091. {
  3092. "url": "https://opencollective.com/hyperf",
  3093. "type": "open_collective"
  3094. }
  3095. ],
  3096. "time": "2024-05-20T09:55:40+00:00"
  3097. },
  3098. {
  3099. "name": "hyperf/memory",
  3100. "version": "v3.1.15",
  3101. "source": {
  3102. "type": "git",
  3103. "url": "https://github.com/hyperf/memory.git",
  3104. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3105. },
  3106. "dist": {
  3107. "type": "zip",
  3108. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3109. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3110. "shasum": ""
  3111. },
  3112. "require": {
  3113. "php": ">=8.1"
  3114. },
  3115. "type": "library",
  3116. "extra": {
  3117. "branch-alias": {
  3118. "dev-master": "3.1-dev"
  3119. },
  3120. "hyperf": {
  3121. "config": "Hyperf\\Memory\\ConfigProvider"
  3122. }
  3123. },
  3124. "autoload": {
  3125. "psr-4": {
  3126. "Hyperf\\Memory\\": "src/"
  3127. }
  3128. },
  3129. "notification-url": "https://packagist.org/downloads/",
  3130. "license": [
  3131. "MIT"
  3132. ],
  3133. "description": "An independent component that use to operate and manage memory.",
  3134. "homepage": "https://hyperf.io",
  3135. "keywords": [
  3136. "hyperf",
  3137. "memory",
  3138. "php",
  3139. "swoole"
  3140. ],
  3141. "support": {
  3142. "docs": "https://hyperf.wiki",
  3143. "issues": "https://github.com/hyperf/hyperf/issues",
  3144. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3145. "source": "https://github.com/hyperf/hyperf"
  3146. },
  3147. "funding": [
  3148. {
  3149. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3150. "type": "custom"
  3151. },
  3152. {
  3153. "url": "https://opencollective.com/hyperf",
  3154. "type": "open_collective"
  3155. }
  3156. ],
  3157. "time": "2024-03-23T11:28:51+00:00"
  3158. },
  3159. {
  3160. "name": "hyperf/model-listener",
  3161. "version": "v3.1.15",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/hyperf/model-listener.git",
  3165. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3170. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3171. "shasum": ""
  3172. },
  3173. "require": {
  3174. "hyperf/contract": "~3.1.0",
  3175. "hyperf/database": "~3.1.0",
  3176. "hyperf/di": "~3.1.0",
  3177. "hyperf/event": "~3.1.0",
  3178. "hyperf/support": "~3.1.0",
  3179. "hyperf/utils": "~3.1.0",
  3180. "php": ">=8.1",
  3181. "psr/container": "^1.0|^2.0"
  3182. },
  3183. "type": "library",
  3184. "extra": {
  3185. "branch-alias": {
  3186. "dev-master": "3.1-dev"
  3187. },
  3188. "hyperf": {
  3189. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3190. }
  3191. },
  3192. "autoload": {
  3193. "psr-4": {
  3194. "Hyperf\\ModelListener\\": "src/"
  3195. }
  3196. },
  3197. "notification-url": "https://packagist.org/downloads/",
  3198. "license": [
  3199. "MIT"
  3200. ],
  3201. "description": "A model listener for Hyperf.",
  3202. "homepage": "https://hyperf.io",
  3203. "keywords": [
  3204. "hyperf",
  3205. "model-listener",
  3206. "php",
  3207. "swoole"
  3208. ],
  3209. "support": {
  3210. "docs": "https://hyperf.wiki",
  3211. "issues": "https://github.com/hyperf/hyperf/issues",
  3212. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3213. "source": "https://github.com/hyperf/hyperf"
  3214. },
  3215. "funding": [
  3216. {
  3217. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3218. "type": "custom"
  3219. },
  3220. {
  3221. "url": "https://opencollective.com/hyperf",
  3222. "type": "open_collective"
  3223. }
  3224. ],
  3225. "time": "2024-03-23T11:28:51+00:00"
  3226. },
  3227. {
  3228. "name": "hyperf/nacos",
  3229. "version": "v3.1.15",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/hyperf/nacos.git",
  3233. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3238. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3239. "shasum": ""
  3240. },
  3241. "require": {
  3242. "guzzlehttp/guzzle": "^6.5|^7.0",
  3243. "hyperf/codec": "~3.1.0",
  3244. "hyperf/contract": "~3.1.0",
  3245. "hyperf/support": "~3.1.0",
  3246. "hyperf/utils": "~3.1.0",
  3247. "jetbrains/phpstorm-attributes": "^1.0",
  3248. "php": ">=8.1"
  3249. },
  3250. "type": "library",
  3251. "extra": {
  3252. "branch-alias": {
  3253. "dev-master": "3.1-dev"
  3254. },
  3255. "hyperf": {
  3256. "config": "Hyperf\\Nacos\\ConfigProvider"
  3257. }
  3258. },
  3259. "autoload": {
  3260. "psr-4": {
  3261. "Hyperf\\Nacos\\": "src/"
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "MIT"
  3267. ],
  3268. "description": "Nacos SDK",
  3269. "keywords": [
  3270. "hyperf",
  3271. "nacos",
  3272. "php"
  3273. ],
  3274. "support": {
  3275. "issues": "https://github.com/hyperf/nacos/issues",
  3276. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3277. },
  3278. "funding": [
  3279. {
  3280. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3281. "type": "custom"
  3282. },
  3283. {
  3284. "url": "https://opencollective.com/hyperf",
  3285. "type": "open_collective"
  3286. }
  3287. ],
  3288. "time": "2024-03-23T11:28:51+00:00"
  3289. },
  3290. {
  3291. "name": "hyperf/paginator",
  3292. "version": "v3.1.42",
  3293. "source": {
  3294. "type": "git",
  3295. "url": "https://github.com/hyperf/paginator.git",
  3296. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3297. },
  3298. "dist": {
  3299. "type": "zip",
  3300. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3301. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3302. "shasum": ""
  3303. },
  3304. "require": {
  3305. "hyperf/contract": "~3.1.0",
  3306. "hyperf/support": "~3.1.0",
  3307. "hyperf/utils": "~3.1.0",
  3308. "php": ">=8.1"
  3309. },
  3310. "suggest": {
  3311. "hyperf/event": "Reqiured to use PageResolverListener.",
  3312. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3313. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3314. },
  3315. "type": "library",
  3316. "extra": {
  3317. "branch-alias": {
  3318. "dev-master": "3.1-dev"
  3319. },
  3320. "hyperf": {
  3321. "config": "Hyperf\\Paginator\\ConfigProvider"
  3322. }
  3323. },
  3324. "autoload": {
  3325. "psr-4": {
  3326. "Hyperf\\Paginator\\": "src/"
  3327. }
  3328. },
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "MIT"
  3332. ],
  3333. "description": "A paginator component for hyperf.",
  3334. "homepage": "https://hyperf.io",
  3335. "keywords": [
  3336. "hyperf",
  3337. "paginator",
  3338. "php"
  3339. ],
  3340. "support": {
  3341. "docs": "https://hyperf.wiki",
  3342. "issues": "https://github.com/hyperf/hyperf/issues",
  3343. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3344. "source": "https://github.com/hyperf/hyperf"
  3345. },
  3346. "funding": [
  3347. {
  3348. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3349. "type": "custom"
  3350. },
  3351. {
  3352. "url": "https://opencollective.com/hyperf",
  3353. "type": "open_collective"
  3354. }
  3355. ],
  3356. "time": "2024-09-25T02:54:12+00:00"
  3357. },
  3358. {
  3359. "name": "hyperf/pipeline",
  3360. "version": "v3.1.15",
  3361. "source": {
  3362. "type": "git",
  3363. "url": "https://github.com/hyperf/pipeline.git",
  3364. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3365. },
  3366. "dist": {
  3367. "type": "zip",
  3368. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3369. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3370. "shasum": ""
  3371. },
  3372. "require": {
  3373. "php": ">=8.1",
  3374. "psr/container": "^1.0|^2.0"
  3375. },
  3376. "type": "library",
  3377. "extra": {
  3378. "branch-alias": {
  3379. "dev-master": "3.1-dev"
  3380. }
  3381. },
  3382. "autoload": {
  3383. "psr-4": {
  3384. "Hyperf\\Pipeline\\": "src/"
  3385. }
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "MIT"
  3390. ],
  3391. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3392. "homepage": "https://hyperf.io",
  3393. "keywords": [
  3394. "hyperf",
  3395. "php",
  3396. "pipeline",
  3397. "swoole"
  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-03-23T11:28:51+00:00"
  3416. },
  3417. {
  3418. "name": "hyperf/pool",
  3419. "version": "v3.1.15",
  3420. "source": {
  3421. "type": "git",
  3422. "url": "https://github.com/hyperf/pool.git",
  3423. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3424. },
  3425. "dist": {
  3426. "type": "zip",
  3427. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3428. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3429. "shasum": ""
  3430. },
  3431. "require": {
  3432. "hyperf/contract": "~3.1.0",
  3433. "hyperf/support": "~3.1.0",
  3434. "hyperf/utils": "~3.1.0",
  3435. "php": ">=8.1",
  3436. "psr/container": "^1.0|^2.0"
  3437. },
  3438. "suggest": {
  3439. "psr/event-dispatcher": "Required to use events."
  3440. },
  3441. "type": "library",
  3442. "extra": {
  3443. "branch-alias": {
  3444. "dev-master": "3.1-dev"
  3445. },
  3446. "hyperf": {
  3447. "config": "Hyperf\\Pool\\ConfigProvider"
  3448. }
  3449. },
  3450. "autoload": {
  3451. "psr-4": {
  3452. "Hyperf\\Pool\\": "src/"
  3453. }
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "description": "An independent universal connection pool component.",
  3460. "homepage": "https://hyperf.io",
  3461. "keywords": [
  3462. "connection-pool",
  3463. "hyperf",
  3464. "php",
  3465. "swoole"
  3466. ],
  3467. "support": {
  3468. "docs": "https://hyperf.wiki",
  3469. "issues": "https://github.com/hyperf/hyperf/issues",
  3470. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3471. "source": "https://github.com/hyperf/hyperf"
  3472. },
  3473. "funding": [
  3474. {
  3475. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3476. "type": "custom"
  3477. },
  3478. {
  3479. "url": "https://opencollective.com/hyperf",
  3480. "type": "open_collective"
  3481. }
  3482. ],
  3483. "time": "2024-03-23T11:28:51+00:00"
  3484. },
  3485. {
  3486. "name": "hyperf/process",
  3487. "version": "v3.1.15",
  3488. "source": {
  3489. "type": "git",
  3490. "url": "https://github.com/hyperf/process.git",
  3491. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3492. },
  3493. "dist": {
  3494. "type": "zip",
  3495. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3496. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3497. "shasum": ""
  3498. },
  3499. "require": {
  3500. "hyperf/contract": "~3.1.0",
  3501. "hyperf/support": "~3.1.0",
  3502. "hyperf/utils": "~3.1.0",
  3503. "php": ">=8.1",
  3504. "psr/container": "^1.0|^2.0",
  3505. "psr/event-dispatcher": "^1.0"
  3506. },
  3507. "suggest": {
  3508. "hyperf/di": "Required to use annotations.",
  3509. "hyperf/event": "Required to dump the message before and after process.",
  3510. "hyperf/framework": "Required to use BootProcessListener."
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "branch-alias": {
  3515. "dev-master": "3.1-dev"
  3516. },
  3517. "hyperf": {
  3518. "config": "Hyperf\\Process\\ConfigProvider"
  3519. }
  3520. },
  3521. "autoload": {
  3522. "psr-4": {
  3523. "Hyperf\\Process\\": "src/"
  3524. }
  3525. },
  3526. "notification-url": "https://packagist.org/downloads/",
  3527. "license": [
  3528. "MIT"
  3529. ],
  3530. "description": "A process component for hyperf.",
  3531. "homepage": "https://hyperf.io",
  3532. "keywords": [
  3533. "hyperf",
  3534. "php",
  3535. "process"
  3536. ],
  3537. "support": {
  3538. "docs": "https://hyperf.wiki",
  3539. "issues": "https://github.com/hyperf/hyperf/issues",
  3540. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3541. "source": "https://github.com/hyperf/hyperf"
  3542. },
  3543. "funding": [
  3544. {
  3545. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3546. "type": "custom"
  3547. },
  3548. {
  3549. "url": "https://opencollective.com/hyperf",
  3550. "type": "open_collective"
  3551. }
  3552. ],
  3553. "time": "2024-03-23T11:28:51+00:00"
  3554. },
  3555. {
  3556. "name": "hyperf/redis",
  3557. "version": "v3.1.27",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/hyperf/redis.git",
  3561. "reference": "535f5f107b6d531b56fabe017a5f544cc53fc194"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/hyperf/redis/zipball/535f5f107b6d531b56fabe017a5f544cc53fc194",
  3566. "reference": "535f5f107b6d531b56fabe017a5f544cc53fc194",
  3567. "shasum": "",
  3568. "mirrors": [
  3569. {
  3570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3571. "preferred": true
  3572. }
  3573. ]
  3574. },
  3575. "require": {
  3576. "ext-redis": "^5.0 || ^6.0",
  3577. "hyperf/contract": "~3.1.0",
  3578. "hyperf/pool": "~3.1.0",
  3579. "hyperf/support": "~3.1.0",
  3580. "hyperf/tappable": "~3.1.0",
  3581. "hyperf/utils": "~3.1.0",
  3582. "php": ">=8.1",
  3583. "psr/container": "^1.0 || ^2.0"
  3584. },
  3585. "suggest": {
  3586. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3587. "hyperf/di": "Create the RedisPool via dependency injection."
  3588. },
  3589. "type": "library",
  3590. "extra": {
  3591. "branch-alias": {
  3592. "dev-master": "3.1-dev"
  3593. },
  3594. "hyperf": {
  3595. "config": "Hyperf\\Redis\\ConfigProvider"
  3596. }
  3597. },
  3598. "autoload": {
  3599. "psr-4": {
  3600. "Hyperf\\Redis\\": "src/"
  3601. }
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "MIT"
  3606. ],
  3607. "description": "A redis component for hyperf.",
  3608. "homepage": "https://hyperf.io",
  3609. "keywords": [
  3610. "hyperf",
  3611. "php",
  3612. "pool",
  3613. "redis"
  3614. ],
  3615. "support": {
  3616. "docs": "https://hyperf.wiki",
  3617. "issues": "https://github.com/hyperf/hyperf/issues",
  3618. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3619. "source": "https://github.com/hyperf/hyperf"
  3620. },
  3621. "funding": [
  3622. {
  3623. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3624. "type": "custom"
  3625. },
  3626. {
  3627. "url": "https://opencollective.com/hyperf",
  3628. "type": "open_collective"
  3629. }
  3630. ],
  3631. "time": "2024-06-17T01:51:06+00:00"
  3632. },
  3633. {
  3634. "name": "hyperf/rpc",
  3635. "version": "v3.1.15",
  3636. "source": {
  3637. "type": "git",
  3638. "url": "https://github.com/hyperf/rpc.git",
  3639. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3640. },
  3641. "dist": {
  3642. "type": "zip",
  3643. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3644. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3645. "shasum": ""
  3646. },
  3647. "require": {
  3648. "hyperf/codec": "~3.1.0",
  3649. "hyperf/contract": "~3.1.0",
  3650. "hyperf/support": "~3.1.0",
  3651. "jetbrains/phpstorm-attributes": "^1.0",
  3652. "php": ">=8.1"
  3653. },
  3654. "type": "library",
  3655. "extra": {
  3656. "branch-alias": {
  3657. "dev-master": "3.1-dev"
  3658. },
  3659. "hyperf": []
  3660. },
  3661. "autoload": {
  3662. "psr-4": {
  3663. "Hyperf\\Rpc\\": "src/"
  3664. }
  3665. },
  3666. "notification-url": "https://packagist.org/downloads/",
  3667. "license": [
  3668. "MIT"
  3669. ],
  3670. "description": "A rpc basic library for Hyperf.",
  3671. "homepage": "https://hyperf.io",
  3672. "keywords": [
  3673. "hyperf",
  3674. "php",
  3675. "rpc",
  3676. "swoole"
  3677. ],
  3678. "support": {
  3679. "docs": "https://hyperf.wiki",
  3680. "issues": "https://github.com/hyperf/hyperf/issues",
  3681. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3682. "source": "https://github.com/hyperf/hyperf"
  3683. },
  3684. "funding": [
  3685. {
  3686. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3687. "type": "custom"
  3688. },
  3689. {
  3690. "url": "https://opencollective.com/hyperf",
  3691. "type": "open_collective"
  3692. }
  3693. ],
  3694. "time": "2024-03-23T11:28:51+00:00"
  3695. },
  3696. {
  3697. "name": "hyperf/rpc-server",
  3698. "version": "v3.1.20",
  3699. "source": {
  3700. "type": "git",
  3701. "url": "https://github.com/hyperf/rpc-server.git",
  3702. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3703. },
  3704. "dist": {
  3705. "type": "zip",
  3706. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3707. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3708. "shasum": ""
  3709. },
  3710. "require": {
  3711. "hyperf/http-server": "~3.1.0",
  3712. "hyperf/rpc": "~3.1.0",
  3713. "php": ">=8.1"
  3714. },
  3715. "suggest": {
  3716. "hyperf/di": "Required to use annotations."
  3717. },
  3718. "type": "library",
  3719. "extra": {
  3720. "branch-alias": {
  3721. "dev-master": "3.1-dev"
  3722. },
  3723. "hyperf": {
  3724. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3725. }
  3726. },
  3727. "autoload": {
  3728. "psr-4": {
  3729. "Hyperf\\RpcServer\\": "src/"
  3730. }
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "MIT"
  3735. ],
  3736. "description": "An abstract rpc server component for Hyperf.",
  3737. "homepage": "https://hyperf.io",
  3738. "keywords": [
  3739. "hyperf",
  3740. "php",
  3741. "rpc",
  3742. "rpc-server",
  3743. "swoole"
  3744. ],
  3745. "support": {
  3746. "docs": "https://hyperf.wiki",
  3747. "issues": "https://github.com/hyperf/hyperf/issues",
  3748. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3749. "source": "https://github.com/hyperf/hyperf"
  3750. },
  3751. "funding": [
  3752. {
  3753. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3754. "type": "custom"
  3755. },
  3756. {
  3757. "url": "https://opencollective.com/hyperf",
  3758. "type": "open_collective"
  3759. }
  3760. ],
  3761. "time": "2024-04-22T01:46:29+00:00"
  3762. },
  3763. {
  3764. "name": "hyperf/serializer",
  3765. "version": "v3.1.23",
  3766. "source": {
  3767. "type": "git",
  3768. "url": "https://github.com/hyperf/serializer.git",
  3769. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3770. },
  3771. "dist": {
  3772. "type": "zip",
  3773. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3774. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3775. "shasum": ""
  3776. },
  3777. "require": {
  3778. "hyperf/contract": "~3.1.0",
  3779. "php": ">=8.1"
  3780. },
  3781. "suggest": {
  3782. "hyperf/di": "Required to use ExceptionNormalizer",
  3783. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3784. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3785. },
  3786. "type": "library",
  3787. "extra": {
  3788. "branch-alias": {
  3789. "dev-master": "3.1-dev"
  3790. },
  3791. "hyperf": {
  3792. "config": "Hyperf\\Serializer\\ConfigProvider"
  3793. }
  3794. },
  3795. "autoload": {
  3796. "psr-4": {
  3797. "Hyperf\\Serializer\\": "src/"
  3798. }
  3799. },
  3800. "notification-url": "https://packagist.org/downloads/",
  3801. "license": [
  3802. "MIT"
  3803. ],
  3804. "description": "A serializer component for Hyperf.",
  3805. "homepage": "https://hyperf.io",
  3806. "keywords": [
  3807. "hyperf",
  3808. "php",
  3809. "swoole",
  3810. "tappable"
  3811. ],
  3812. "support": {
  3813. "docs": "https://hyperf.wiki",
  3814. "issues": "https://github.com/hyperf/hyperf/issues",
  3815. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3816. "source": "https://github.com/hyperf/hyperf"
  3817. },
  3818. "funding": [
  3819. {
  3820. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3821. "type": "custom"
  3822. },
  3823. {
  3824. "url": "https://opencollective.com/hyperf",
  3825. "type": "open_collective"
  3826. }
  3827. ],
  3828. "time": "2024-05-23T03:43:58+00:00"
  3829. },
  3830. {
  3831. "name": "hyperf/server",
  3832. "version": "v3.1.23",
  3833. "source": {
  3834. "type": "git",
  3835. "url": "https://github.com/hyperf/server.git",
  3836. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3837. },
  3838. "dist": {
  3839. "type": "zip",
  3840. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3841. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3842. "shasum": ""
  3843. },
  3844. "require": {
  3845. "hyperf/contract": "~3.1.0",
  3846. "hyperf/coordinator": "~3.1.0",
  3847. "hyperf/engine": "^2.8",
  3848. "hyperf/support": "~3.1.0",
  3849. "hyperf/tappable": "~3.1.0",
  3850. "php": ">=8.1",
  3851. "psr/container": "^1.0|^2.0",
  3852. "psr/event-dispatcher": "^1.0",
  3853. "psr/log": "^1.0|^2.0|^3.0",
  3854. "symfony/console": "^5.0|^6.0|^7.0"
  3855. },
  3856. "suggest": {
  3857. "hyperf/event": "Dump the info after server start.",
  3858. "hyperf/framework": "Dump the info after server start."
  3859. },
  3860. "type": "library",
  3861. "extra": {
  3862. "branch-alias": {
  3863. "dev-master": "3.1-dev"
  3864. },
  3865. "hyperf": {
  3866. "config": "Hyperf\\Server\\ConfigProvider"
  3867. }
  3868. },
  3869. "autoload": {
  3870. "psr-4": {
  3871. "Hyperf\\Server\\": "src/"
  3872. }
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "description": "A base server library for Hyperf.",
  3879. "homepage": "https://hyperf.io",
  3880. "keywords": [
  3881. "hyperf",
  3882. "php",
  3883. "server",
  3884. "swoole"
  3885. ],
  3886. "support": {
  3887. "docs": "https://hyperf.wiki",
  3888. "issues": "https://github.com/hyperf/hyperf/issues",
  3889. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3890. "source": "https://github.com/hyperf/hyperf"
  3891. },
  3892. "funding": [
  3893. {
  3894. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3895. "type": "custom"
  3896. },
  3897. {
  3898. "url": "https://opencollective.com/hyperf",
  3899. "type": "open_collective"
  3900. }
  3901. ],
  3902. "time": "2024-05-23T03:43:58+00:00"
  3903. },
  3904. {
  3905. "name": "hyperf/service-governance",
  3906. "version": "v3.1.15",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/hyperf/service-governance.git",
  3910. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3915. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3916. "shasum": ""
  3917. },
  3918. "require": {
  3919. "hyperf/contract": "~3.1.0",
  3920. "hyperf/support": "~3.1.0",
  3921. "jetbrains/phpstorm-attributes": "^1.0",
  3922. "php": ">=8.1"
  3923. },
  3924. "suggest": {
  3925. "hyperf/event": "Required to use RegisterServiceListener.",
  3926. "hyperf/framework": "Required to use RegisterServiceListener.",
  3927. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3928. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3929. },
  3930. "type": "library",
  3931. "extra": {
  3932. "branch-alias": {
  3933. "dev-master": "3.1-dev"
  3934. },
  3935. "hyperf": {
  3936. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3937. }
  3938. },
  3939. "autoload": {
  3940. "psr-4": {
  3941. "Hyperf\\ServiceGovernance\\": "src/"
  3942. }
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "description": "A service governance component for Hyperf.",
  3949. "homepage": "https://hyperf.io",
  3950. "keywords": [
  3951. "hyperf",
  3952. "php",
  3953. "service-governance",
  3954. "swoole"
  3955. ],
  3956. "support": {
  3957. "docs": "https://hyperf.wiki",
  3958. "issues": "https://github.com/hyperf/hyperf/issues",
  3959. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3960. "source": "https://github.com/hyperf/hyperf"
  3961. },
  3962. "funding": [
  3963. {
  3964. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3965. "type": "custom"
  3966. },
  3967. {
  3968. "url": "https://opencollective.com/hyperf",
  3969. "type": "open_collective"
  3970. }
  3971. ],
  3972. "time": "2024-03-23T11:28:51+00:00"
  3973. },
  3974. {
  3975. "name": "hyperf/service-governance-consul",
  3976. "version": "v3.1.15",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://github.com/hyperf/service-governance-consul.git",
  3980. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3985. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3986. "shasum": ""
  3987. },
  3988. "require": {
  3989. "hyperf/consul": "~3.1.0",
  3990. "hyperf/contract": "~3.1.0",
  3991. "hyperf/service-governance": "~3.1.0",
  3992. "hyperf/support": "~3.1.0",
  3993. "hyperf/utils": "~3.1.0",
  3994. "php": ">=8.1"
  3995. },
  3996. "type": "library",
  3997. "extra": {
  3998. "branch-alias": {
  3999. "dev-master": "3.1-dev"
  4000. },
  4001. "hyperf": {
  4002. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4003. }
  4004. },
  4005. "autoload": {
  4006. "psr-4": {
  4007. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4008. }
  4009. },
  4010. "notification-url": "https://packagist.org/downloads/",
  4011. "license": [
  4012. "MIT"
  4013. ],
  4014. "description": "A consul adapter for service governance.",
  4015. "homepage": "https://hyperf.io",
  4016. "keywords": [
  4017. "consul-adapter",
  4018. "hyperf",
  4019. "php",
  4020. "service-governance",
  4021. "swoole"
  4022. ],
  4023. "support": {
  4024. "docs": "https://hyperf.wiki",
  4025. "issues": "https://github.com/hyperf/hyperf/issues",
  4026. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4027. "source": "https://github.com/hyperf/hyperf"
  4028. },
  4029. "funding": [
  4030. {
  4031. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4032. "type": "custom"
  4033. },
  4034. {
  4035. "url": "https://opencollective.com/hyperf",
  4036. "type": "open_collective"
  4037. }
  4038. ],
  4039. "time": "2024-03-23T11:28:51+00:00"
  4040. },
  4041. {
  4042. "name": "hyperf/service-governance-nacos",
  4043. "version": "v3.1.15",
  4044. "source": {
  4045. "type": "git",
  4046. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4047. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4048. },
  4049. "dist": {
  4050. "type": "zip",
  4051. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4052. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4053. "shasum": ""
  4054. },
  4055. "require": {
  4056. "hyperf/codec": "~3.1.0",
  4057. "hyperf/contract": "~3.1.0",
  4058. "hyperf/nacos": "~3.1.0",
  4059. "hyperf/service-governance": "~3.1.0",
  4060. "hyperf/support": "~3.1.0",
  4061. "hyperf/utils": "~3.1.0",
  4062. "php": ">=8.1"
  4063. },
  4064. "type": "library",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-master": "3.1-dev"
  4068. },
  4069. "hyperf": {
  4070. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4071. }
  4072. },
  4073. "autoload": {
  4074. "psr-4": {
  4075. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4076. }
  4077. },
  4078. "notification-url": "https://packagist.org/downloads/",
  4079. "license": [
  4080. "MIT"
  4081. ],
  4082. "description": "A nacos adapter for service governance.",
  4083. "homepage": "https://hyperf.io",
  4084. "keywords": [
  4085. "hyperf",
  4086. "nacos-adapter",
  4087. "php",
  4088. "service-governance",
  4089. "swoole"
  4090. ],
  4091. "support": {
  4092. "docs": "https://hyperf.wiki",
  4093. "issues": "https://github.com/hyperf/hyperf/issues",
  4094. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4095. "source": "https://github.com/hyperf/hyperf"
  4096. },
  4097. "funding": [
  4098. {
  4099. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4100. "type": "custom"
  4101. },
  4102. {
  4103. "url": "https://opencollective.com/hyperf",
  4104. "type": "open_collective"
  4105. }
  4106. ],
  4107. "time": "2024-03-23T11:28:51+00:00"
  4108. },
  4109. {
  4110. "name": "hyperf/snowflake",
  4111. "version": "v3.1.15",
  4112. "source": {
  4113. "type": "git",
  4114. "url": "https://github.com/hyperf/snowflake.git",
  4115. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f"
  4116. },
  4117. "dist": {
  4118. "type": "zip",
  4119. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/a77b0d4c9215ef257781967a11334d2b9366390f",
  4120. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f",
  4121. "shasum": "",
  4122. "mirrors": [
  4123. {
  4124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4125. "preferred": true
  4126. }
  4127. ]
  4128. },
  4129. "require": {
  4130. "hyperf/contract": "~3.1.0",
  4131. "php": ">=8.1"
  4132. },
  4133. "suggest": {
  4134. "hyperf/config": "Required to read snowflake config.",
  4135. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4136. "psr/container": "Required to use MetaGeneratorFactory."
  4137. },
  4138. "type": "library",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-master": "3.1-dev"
  4142. },
  4143. "hyperf": {
  4144. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4145. }
  4146. },
  4147. "autoload": {
  4148. "psr-4": {
  4149. "Hyperf\\Snowflake\\": "src/"
  4150. }
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "MIT"
  4155. ],
  4156. "description": "A snowflake library",
  4157. "homepage": "https://hyperf.io",
  4158. "keywords": [
  4159. "php",
  4160. "snowflake"
  4161. ],
  4162. "support": {
  4163. "docs": "https://hyperf.wiki",
  4164. "issues": "https://github.com/hyperf/hyperf/issues",
  4165. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4166. "source": "https://github.com/hyperf/hyperf"
  4167. },
  4168. "funding": [
  4169. {
  4170. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4171. "type": "custom"
  4172. },
  4173. {
  4174. "url": "https://opencollective.com/hyperf",
  4175. "type": "open_collective"
  4176. }
  4177. ],
  4178. "time": "2024-03-23T11:28:51+00:00"
  4179. },
  4180. {
  4181. "name": "hyperf/socketio-server",
  4182. "version": "v3.1.27",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://github.com/hyperf/socketio-server.git",
  4186. "reference": "e0fbb6ee8e3defc47ab7591170235fad28367ee5"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://api.github.com/repos/hyperf/socketio-server/zipball/e0fbb6ee8e3defc47ab7591170235fad28367ee5",
  4191. "reference": "e0fbb6ee8e3defc47ab7591170235fad28367ee5",
  4192. "shasum": ""
  4193. },
  4194. "require": {
  4195. "ext-json": "*",
  4196. "ext-redis": "*",
  4197. "hyperf/codec": "~3.1.0",
  4198. "hyperf/collection": "~3.1.0",
  4199. "hyperf/di": "~3.1.0",
  4200. "hyperf/redis": "~3.1.0",
  4201. "hyperf/websocket-server": "~3.1.0",
  4202. "php": ">=8.1",
  4203. "psr/container": "^1.0 || ^2.0"
  4204. },
  4205. "conflict": {
  4206. "mix/redis-subscriber": "<3.0.4"
  4207. },
  4208. "suggest": {
  4209. "hyperf/command": "Required to use RemoveRedisGarbage command",
  4210. "hyperf/nsq": "Required to use RedisNsqAdapter",
  4211. "hyperf/session": "Required to use session",
  4212. "mix/redis-subscriber": "Suggest to use RedisAdapter (^3.0.4)"
  4213. },
  4214. "type": "library",
  4215. "extra": {
  4216. "branch-alias": {
  4217. "dev-master": "3.1-dev"
  4218. },
  4219. "hyperf": {
  4220. "config": "Hyperf\\SocketIOServer\\ConfigProvider"
  4221. }
  4222. },
  4223. "autoload": {
  4224. "psr-4": {
  4225. "Hyperf\\SocketIOServer\\": "src/"
  4226. }
  4227. },
  4228. "notification-url": "https://packagist.org/downloads/",
  4229. "license": [
  4230. "MIT"
  4231. ],
  4232. "description": "Socket.io implementation for hyperf",
  4233. "keywords": [
  4234. "hyperf",
  4235. "php"
  4236. ],
  4237. "support": {
  4238. "issues": "https://github.com/hyperf/socketio-server/issues",
  4239. "source": "https://github.com/hyperf/socketio-server/tree/v3.1.27"
  4240. },
  4241. "funding": [
  4242. {
  4243. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4244. "type": "custom"
  4245. },
  4246. {
  4247. "url": "https://opencollective.com/hyperf",
  4248. "type": "open_collective"
  4249. }
  4250. ],
  4251. "time": "2024-06-17T01:51:06+00:00"
  4252. },
  4253. {
  4254. "name": "hyperf/stdlib",
  4255. "version": "v3.1.15",
  4256. "source": {
  4257. "type": "git",
  4258. "url": "https://github.com/hyperf/stdlib.git",
  4259. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4260. },
  4261. "dist": {
  4262. "type": "zip",
  4263. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4264. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4265. "shasum": ""
  4266. },
  4267. "require": {
  4268. "php": ">=8.1"
  4269. },
  4270. "type": "library",
  4271. "extra": {
  4272. "branch-alias": {
  4273. "dev-master": "3.1-dev"
  4274. }
  4275. },
  4276. "autoload": {
  4277. "psr-4": {
  4278. "Hyperf\\Stdlib\\": "src/"
  4279. }
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "description": "A stdlib component for Hyperf.",
  4286. "homepage": "https://hyperf.io",
  4287. "keywords": [
  4288. "hyperf",
  4289. "php",
  4290. "stdlib",
  4291. "swoole"
  4292. ],
  4293. "support": {
  4294. "docs": "https://hyperf.wiki",
  4295. "issues": "https://github.com/hyperf/hyperf/issues",
  4296. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4297. "source": "https://github.com/hyperf/hyperf"
  4298. },
  4299. "funding": [
  4300. {
  4301. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4302. "type": "custom"
  4303. },
  4304. {
  4305. "url": "https://opencollective.com/hyperf",
  4306. "type": "open_collective"
  4307. }
  4308. ],
  4309. "time": "2024-03-23T11:28:51+00:00"
  4310. },
  4311. {
  4312. "name": "hyperf/stringable",
  4313. "version": "v3.1.24",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/hyperf/stringable.git",
  4317. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4322. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "ext-mbstring": "*",
  4327. "hyperf/collection": "~3.1.0",
  4328. "hyperf/conditionable": "~3.1.0",
  4329. "hyperf/macroable": "~3.1.0",
  4330. "hyperf/tappable": "~3.1.0",
  4331. "php": ">=8.1"
  4332. },
  4333. "suggest": {
  4334. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4335. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4336. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4337. },
  4338. "type": "library",
  4339. "extra": {
  4340. "branch-alias": {
  4341. "dev-master": "3.1-dev"
  4342. }
  4343. },
  4344. "autoload": {
  4345. "files": [
  4346. "src/Functions.php"
  4347. ],
  4348. "psr-4": {
  4349. "Hyperf\\Stringable\\": "src/"
  4350. }
  4351. },
  4352. "notification-url": "https://packagist.org/downloads/",
  4353. "license": [
  4354. "MIT"
  4355. ],
  4356. "description": "Hyperf Stringable package which come from illuminate/support",
  4357. "homepage": "https://hyperf.io",
  4358. "keywords": [
  4359. "hyperf",
  4360. "php",
  4361. "stringable",
  4362. "swoole"
  4363. ],
  4364. "support": {
  4365. "docs": "https://hyperf.wiki",
  4366. "issues": "https://github.com/hyperf/hyperf/issues",
  4367. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4368. "source": "https://github.com/hyperf/hyperf"
  4369. },
  4370. "funding": [
  4371. {
  4372. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4373. "type": "custom"
  4374. },
  4375. {
  4376. "url": "https://opencollective.com/hyperf",
  4377. "type": "open_collective"
  4378. }
  4379. ],
  4380. "time": "2024-05-27T03:20:24+00:00"
  4381. },
  4382. {
  4383. "name": "hyperf/support",
  4384. "version": "v3.1.15",
  4385. "source": {
  4386. "type": "git",
  4387. "url": "https://github.com/hyperf/support.git",
  4388. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4389. },
  4390. "dist": {
  4391. "type": "zip",
  4392. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4393. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4394. "shasum": ""
  4395. },
  4396. "require": {
  4397. "hyperf/collection": "~3.1.0",
  4398. "hyperf/context": "~3.1.0",
  4399. "hyperf/contract": "~3.1.0",
  4400. "hyperf/coroutine": "~3.1.0",
  4401. "hyperf/macroable": "~3.1.0",
  4402. "hyperf/stringable": "~3.1.0",
  4403. "php": ">=8.1"
  4404. },
  4405. "suggest": {
  4406. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4407. },
  4408. "type": "library",
  4409. "extra": {
  4410. "branch-alias": {
  4411. "dev-master": "3.1-dev"
  4412. }
  4413. },
  4414. "autoload": {
  4415. "files": [
  4416. "src/Functions.php"
  4417. ],
  4418. "psr-4": {
  4419. "Hyperf\\Support\\": "src/"
  4420. }
  4421. },
  4422. "notification-url": "https://packagist.org/downloads/",
  4423. "license": [
  4424. "MIT"
  4425. ],
  4426. "description": "A support component for Hyperf.",
  4427. "homepage": "https://hyperf.io",
  4428. "keywords": [
  4429. "hyperf",
  4430. "php",
  4431. "support",
  4432. "swoole"
  4433. ],
  4434. "support": {
  4435. "docs": "https://hyperf.wiki",
  4436. "issues": "https://github.com/hyperf/hyperf/issues",
  4437. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4438. "source": "https://github.com/hyperf/hyperf"
  4439. },
  4440. "funding": [
  4441. {
  4442. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4443. "type": "custom"
  4444. },
  4445. {
  4446. "url": "https://opencollective.com/hyperf",
  4447. "type": "open_collective"
  4448. }
  4449. ],
  4450. "time": "2024-03-23T11:28:51+00:00"
  4451. },
  4452. {
  4453. "name": "hyperf/tappable",
  4454. "version": "v3.1.15",
  4455. "source": {
  4456. "type": "git",
  4457. "url": "https://github.com/hyperf/tappable.git",
  4458. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4459. },
  4460. "dist": {
  4461. "type": "zip",
  4462. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4463. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4464. "shasum": ""
  4465. },
  4466. "require": {
  4467. "php": ">=8.1"
  4468. },
  4469. "type": "library",
  4470. "extra": {
  4471. "branch-alias": {
  4472. "dev-master": "3.1-dev"
  4473. }
  4474. },
  4475. "autoload": {
  4476. "files": [
  4477. "src/Functions.php"
  4478. ],
  4479. "psr-4": {
  4480. "Hyperf\\Tappable\\": "src/"
  4481. }
  4482. },
  4483. "notification-url": "https://packagist.org/downloads/",
  4484. "license": [
  4485. "MIT"
  4486. ],
  4487. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4488. "homepage": "https://hyperf.io",
  4489. "keywords": [
  4490. "hyperf",
  4491. "php",
  4492. "swoole",
  4493. "tappable"
  4494. ],
  4495. "support": {
  4496. "docs": "https://hyperf.wiki",
  4497. "issues": "https://github.com/hyperf/hyperf/issues",
  4498. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4499. "source": "https://github.com/hyperf/hyperf"
  4500. },
  4501. "funding": [
  4502. {
  4503. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4504. "type": "custom"
  4505. },
  4506. {
  4507. "url": "https://opencollective.com/hyperf",
  4508. "type": "open_collective"
  4509. }
  4510. ],
  4511. "time": "2024-03-23T11:28:51+00:00"
  4512. },
  4513. {
  4514. "name": "hyperf/utils",
  4515. "version": "v3.1.27",
  4516. "source": {
  4517. "type": "git",
  4518. "url": "https://github.com/hyperf/utils.git",
  4519. "reference": "05cbe18451813d843df419eabdf6c69843796f20"
  4520. },
  4521. "dist": {
  4522. "type": "zip",
  4523. "url": "https://api.github.com/repos/hyperf/utils/zipball/05cbe18451813d843df419eabdf6c69843796f20",
  4524. "reference": "05cbe18451813d843df419eabdf6c69843796f20",
  4525. "shasum": "",
  4526. "mirrors": [
  4527. {
  4528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4529. "preferred": true
  4530. }
  4531. ]
  4532. },
  4533. "require": {
  4534. "doctrine/inflector": "^2.0",
  4535. "hyperf/code-parser": "~3.1.0",
  4536. "hyperf/codec": "~3.1.0",
  4537. "hyperf/collection": "~3.1.0",
  4538. "hyperf/context": "~3.1.0",
  4539. "hyperf/contract": "~3.1.0",
  4540. "hyperf/coordinator": "~3.1.0",
  4541. "hyperf/coroutine": "~3.1.0",
  4542. "hyperf/engine": "^2.0",
  4543. "hyperf/macroable": "~3.1.0",
  4544. "hyperf/serializer": "~3.1.0",
  4545. "hyperf/stringable": "~3.1.0",
  4546. "hyperf/support": "~3.1.0",
  4547. "php": ">=8.1"
  4548. },
  4549. "type": "library",
  4550. "extra": {
  4551. "branch-alias": {
  4552. "dev-master": "3.1-dev"
  4553. }
  4554. },
  4555. "notification-url": "https://packagist.org/downloads/",
  4556. "license": [
  4557. "MIT"
  4558. ],
  4559. "description": "A tools package that could help developer solved the problem quickly.",
  4560. "homepage": "https://hyperf.io",
  4561. "keywords": [
  4562. "hyperf",
  4563. "php",
  4564. "swoole",
  4565. "utils"
  4566. ],
  4567. "support": {
  4568. "docs": "https://hyperf.wiki",
  4569. "issues": "https://github.com/hyperf/hyperf/issues",
  4570. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4571. "source": "https://github.com/hyperf/hyperf"
  4572. },
  4573. "funding": [
  4574. {
  4575. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4576. "type": "custom"
  4577. },
  4578. {
  4579. "url": "https://opencollective.com/hyperf",
  4580. "type": "open_collective"
  4581. }
  4582. ],
  4583. "time": "2024-06-17T01:51:06+00:00"
  4584. },
  4585. {
  4586. "name": "hyperf/websocket-server",
  4587. "version": "v3.1.16",
  4588. "source": {
  4589. "type": "git",
  4590. "url": "https://github.com/hyperf/websocket-server.git",
  4591. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4"
  4592. },
  4593. "dist": {
  4594. "type": "zip",
  4595. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/b4b0903ff87a1763941c014bf755b352663d73d4",
  4596. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4",
  4597. "shasum": "",
  4598. "mirrors": [
  4599. {
  4600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4601. "preferred": true
  4602. }
  4603. ]
  4604. },
  4605. "require": {
  4606. "hyperf/collection": "~3.1.0",
  4607. "hyperf/contract": "~3.1.0",
  4608. "hyperf/exception-handler": "~3.1.0",
  4609. "hyperf/http-server": "~3.1.0",
  4610. "hyperf/support": "~3.1.0",
  4611. "hyperf/utils": "~3.1.0",
  4612. "php": ">=8.1",
  4613. "psr/container": "^1.0|^2.0",
  4614. "psr/event-dispatcher": "^1.0"
  4615. },
  4616. "type": "library",
  4617. "extra": {
  4618. "branch-alias": {
  4619. "dev-master": "3.1-dev"
  4620. },
  4621. "hyperf": {
  4622. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4623. }
  4624. },
  4625. "autoload": {
  4626. "psr-4": {
  4627. "Hyperf\\WebSocketServer\\": "src/"
  4628. }
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "description": "A websocket server library for Hyperf.",
  4635. "homepage": "https://hyperf.io",
  4636. "keywords": [
  4637. "hyperf",
  4638. "php",
  4639. "swoole",
  4640. "websocket"
  4641. ],
  4642. "support": {
  4643. "docs": "https://hyperf.wiki",
  4644. "issues": "https://github.com/hyperf/hyperf/issues",
  4645. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4646. "source": "https://github.com/hyperf/hyperf"
  4647. },
  4648. "funding": [
  4649. {
  4650. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4651. "type": "custom"
  4652. },
  4653. {
  4654. "url": "https://opencollective.com/hyperf",
  4655. "type": "open_collective"
  4656. }
  4657. ],
  4658. "time": "2024-04-02T02:40:09+00:00"
  4659. },
  4660. {
  4661. "name": "jetbrains/phpstorm-attributes",
  4662. "version": "1.1",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4666. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4671. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4672. "shasum": ""
  4673. },
  4674. "type": "library",
  4675. "autoload": {
  4676. "psr-4": {
  4677. "JetBrains\\PhpStorm\\": "src/"
  4678. }
  4679. },
  4680. "notification-url": "https://packagist.org/downloads/",
  4681. "license": [
  4682. "Apache-2.0"
  4683. ],
  4684. "authors": [
  4685. {
  4686. "name": "JetBrains",
  4687. "homepage": "https://www.jetbrains.com"
  4688. }
  4689. ],
  4690. "description": "PhpStorm specific attributes",
  4691. "keywords": [
  4692. "attributes",
  4693. "jetbrains",
  4694. "phpstorm"
  4695. ],
  4696. "support": {
  4697. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4698. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4699. },
  4700. "time": "2023-09-01T08:50:25+00:00"
  4701. },
  4702. {
  4703. "name": "laminas/laminas-mime",
  4704. "version": "2.12.0",
  4705. "source": {
  4706. "type": "git",
  4707. "url": "https://github.com/laminas/laminas-mime.git",
  4708. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4709. },
  4710. "dist": {
  4711. "type": "zip",
  4712. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4713. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4714. "shasum": ""
  4715. },
  4716. "require": {
  4717. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4718. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4719. },
  4720. "conflict": {
  4721. "zendframework/zend-mime": "*"
  4722. },
  4723. "require-dev": {
  4724. "laminas/laminas-coding-standard": "~2.4.0",
  4725. "laminas/laminas-mail": "^2.19.0",
  4726. "phpunit/phpunit": "~9.5.25"
  4727. },
  4728. "suggest": {
  4729. "laminas/laminas-mail": "Laminas\\Mail component"
  4730. },
  4731. "type": "library",
  4732. "autoload": {
  4733. "psr-4": {
  4734. "Laminas\\Mime\\": "src/"
  4735. }
  4736. },
  4737. "notification-url": "https://packagist.org/downloads/",
  4738. "license": [
  4739. "BSD-3-Clause"
  4740. ],
  4741. "description": "Create and parse MIME messages and parts",
  4742. "homepage": "https://laminas.dev",
  4743. "keywords": [
  4744. "laminas",
  4745. "mime"
  4746. ],
  4747. "support": {
  4748. "chat": "https://laminas.dev/chat",
  4749. "docs": "https://docs.laminas.dev/laminas-mime/",
  4750. "forum": "https://discourse.laminas.dev",
  4751. "issues": "https://github.com/laminas/laminas-mime/issues",
  4752. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4753. "source": "https://github.com/laminas/laminas-mime"
  4754. },
  4755. "funding": [
  4756. {
  4757. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4758. "type": "community_bridge"
  4759. }
  4760. ],
  4761. "time": "2023-11-02T16:47:19+00:00"
  4762. },
  4763. {
  4764. "name": "laminas/laminas-stdlib",
  4765. "version": "3.19.0",
  4766. "source": {
  4767. "type": "git",
  4768. "url": "https://github.com/laminas/laminas-stdlib.git",
  4769. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4770. },
  4771. "dist": {
  4772. "type": "zip",
  4773. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4774. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4775. "shasum": ""
  4776. },
  4777. "require": {
  4778. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4779. },
  4780. "conflict": {
  4781. "zendframework/zend-stdlib": "*"
  4782. },
  4783. "require-dev": {
  4784. "laminas/laminas-coding-standard": "^2.5",
  4785. "phpbench/phpbench": "^1.2.15",
  4786. "phpunit/phpunit": "^10.5.8",
  4787. "psalm/plugin-phpunit": "^0.18.4",
  4788. "vimeo/psalm": "^5.20.0"
  4789. },
  4790. "type": "library",
  4791. "autoload": {
  4792. "psr-4": {
  4793. "Laminas\\Stdlib\\": "src/"
  4794. }
  4795. },
  4796. "notification-url": "https://packagist.org/downloads/",
  4797. "license": [
  4798. "BSD-3-Clause"
  4799. ],
  4800. "description": "SPL extensions, array utilities, error handlers, and more",
  4801. "homepage": "https://laminas.dev",
  4802. "keywords": [
  4803. "laminas",
  4804. "stdlib"
  4805. ],
  4806. "support": {
  4807. "chat": "https://laminas.dev/chat",
  4808. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4809. "forum": "https://discourse.laminas.dev",
  4810. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4811. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4812. "source": "https://github.com/laminas/laminas-stdlib"
  4813. },
  4814. "funding": [
  4815. {
  4816. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4817. "type": "community_bridge"
  4818. }
  4819. ],
  4820. "time": "2024-01-19T12:39:49+00:00"
  4821. },
  4822. {
  4823. "name": "markrogoyski/math-php",
  4824. "version": "v2.10.0",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://github.com/markrogoyski/math-php.git",
  4828. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4833. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4834. "shasum": ""
  4835. },
  4836. "require": {
  4837. "ext-json": "*",
  4838. "php": ">=7.2.0"
  4839. },
  4840. "require-dev": {
  4841. "php-coveralls/php-coveralls": "^2.0",
  4842. "php-parallel-lint/php-parallel-lint": "^1.2",
  4843. "phploc/phploc": "*",
  4844. "phpmd/phpmd": "^2.6",
  4845. "phpstan/phpstan": "^1.10",
  4846. "phpunit/phpunit": "^8.5",
  4847. "squizlabs/php_codesniffer": "3.*"
  4848. },
  4849. "type": "library",
  4850. "autoload": {
  4851. "psr-4": {
  4852. "MathPHP\\": "src/"
  4853. }
  4854. },
  4855. "notification-url": "https://packagist.org/downloads/",
  4856. "license": [
  4857. "MIT"
  4858. ],
  4859. "authors": [
  4860. {
  4861. "name": "Mark Rogoyski",
  4862. "email": "mark@rogoyski.com",
  4863. "homepage": "https://github.com/markrogoyski",
  4864. "role": "Lead developer"
  4865. },
  4866. {
  4867. "name": "Kevin Nowaczyk",
  4868. "homepage": "https://github.com/Beakerboy",
  4869. "role": "Developer"
  4870. },
  4871. {
  4872. "name": "MathPHP Community of Contributors",
  4873. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4874. }
  4875. ],
  4876. "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",
  4877. "homepage": "https://github.com/markrogoyski/math-php/",
  4878. "keywords": [
  4879. "algebra",
  4880. "combinatorics",
  4881. "distributions",
  4882. "linear algebra",
  4883. "math",
  4884. "mathematics",
  4885. "matrix",
  4886. "numerical analysis",
  4887. "probability",
  4888. "regressions",
  4889. "statistics"
  4890. ],
  4891. "support": {
  4892. "issues": "https://github.com/markrogoyski/math-php/issues",
  4893. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4894. },
  4895. "time": "2024-04-17T00:09:51+00:00"
  4896. },
  4897. {
  4898. "name": "monolog/monolog",
  4899. "version": "3.6.0",
  4900. "source": {
  4901. "type": "git",
  4902. "url": "https://github.com/Seldaek/monolog.git",
  4903. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4904. },
  4905. "dist": {
  4906. "type": "zip",
  4907. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4908. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4909. "shasum": ""
  4910. },
  4911. "require": {
  4912. "php": ">=8.1",
  4913. "psr/log": "^2.0 || ^3.0"
  4914. },
  4915. "provide": {
  4916. "psr/log-implementation": "3.0.0"
  4917. },
  4918. "require-dev": {
  4919. "aws/aws-sdk-php": "^3.0",
  4920. "doctrine/couchdb": "~1.0@dev",
  4921. "elasticsearch/elasticsearch": "^7 || ^8",
  4922. "ext-json": "*",
  4923. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4924. "guzzlehttp/guzzle": "^7.4.5",
  4925. "guzzlehttp/psr7": "^2.2",
  4926. "mongodb/mongodb": "^1.8",
  4927. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4928. "phpstan/phpstan": "^1.9",
  4929. "phpstan/phpstan-deprecation-rules": "^1.0",
  4930. "phpstan/phpstan-strict-rules": "^1.4",
  4931. "phpunit/phpunit": "^10.5.17",
  4932. "predis/predis": "^1.1 || ^2",
  4933. "ruflin/elastica": "^7",
  4934. "symfony/mailer": "^5.4 || ^6",
  4935. "symfony/mime": "^5.4 || ^6"
  4936. },
  4937. "suggest": {
  4938. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4939. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4940. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4941. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4942. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4943. "ext-mbstring": "Allow to work properly with unicode symbols",
  4944. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4945. "ext-openssl": "Required to send log messages using SSL",
  4946. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4947. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4948. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4949. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4950. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4951. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4952. },
  4953. "type": "library",
  4954. "extra": {
  4955. "branch-alias": {
  4956. "dev-main": "3.x-dev"
  4957. }
  4958. },
  4959. "autoload": {
  4960. "psr-4": {
  4961. "Monolog\\": "src/Monolog"
  4962. }
  4963. },
  4964. "notification-url": "https://packagist.org/downloads/",
  4965. "license": [
  4966. "MIT"
  4967. ],
  4968. "authors": [
  4969. {
  4970. "name": "Jordi Boggiano",
  4971. "email": "j.boggiano@seld.be",
  4972. "homepage": "https://seld.be"
  4973. }
  4974. ],
  4975. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4976. "homepage": "https://github.com/Seldaek/monolog",
  4977. "keywords": [
  4978. "log",
  4979. "logging",
  4980. "psr-3"
  4981. ],
  4982. "support": {
  4983. "issues": "https://github.com/Seldaek/monolog/issues",
  4984. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4985. },
  4986. "funding": [
  4987. {
  4988. "url": "https://github.com/Seldaek",
  4989. "type": "github"
  4990. },
  4991. {
  4992. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4993. "type": "tidelift"
  4994. }
  4995. ],
  4996. "time": "2024-04-12T21:02:21+00:00"
  4997. },
  4998. {
  4999. "name": "nesbot/carbon",
  5000. "version": "2.72.5",
  5001. "source": {
  5002. "type": "git",
  5003. "url": "https://github.com/briannesbitt/Carbon.git",
  5004. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5005. },
  5006. "dist": {
  5007. "type": "zip",
  5008. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5009. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5010. "shasum": ""
  5011. },
  5012. "require": {
  5013. "carbonphp/carbon-doctrine-types": "*",
  5014. "ext-json": "*",
  5015. "php": "^7.1.8 || ^8.0",
  5016. "psr/clock": "^1.0",
  5017. "symfony/polyfill-mbstring": "^1.0",
  5018. "symfony/polyfill-php80": "^1.16",
  5019. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5020. },
  5021. "provide": {
  5022. "psr/clock-implementation": "1.0"
  5023. },
  5024. "require-dev": {
  5025. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5026. "doctrine/orm": "^2.7 || ^3.0",
  5027. "friendsofphp/php-cs-fixer": "^3.0",
  5028. "kylekatarnls/multi-tester": "^2.0",
  5029. "ondrejmirtes/better-reflection": "*",
  5030. "phpmd/phpmd": "^2.9",
  5031. "phpstan/extension-installer": "^1.0",
  5032. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5033. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5034. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5035. "squizlabs/php_codesniffer": "^3.4"
  5036. },
  5037. "bin": [
  5038. "bin/carbon"
  5039. ],
  5040. "type": "library",
  5041. "extra": {
  5042. "branch-alias": {
  5043. "dev-master": "3.x-dev",
  5044. "dev-2.x": "2.x-dev"
  5045. },
  5046. "laravel": {
  5047. "providers": [
  5048. "Carbon\\Laravel\\ServiceProvider"
  5049. ]
  5050. },
  5051. "phpstan": {
  5052. "includes": [
  5053. "extension.neon"
  5054. ]
  5055. }
  5056. },
  5057. "autoload": {
  5058. "psr-4": {
  5059. "Carbon\\": "src/Carbon/"
  5060. }
  5061. },
  5062. "notification-url": "https://packagist.org/downloads/",
  5063. "license": [
  5064. "MIT"
  5065. ],
  5066. "authors": [
  5067. {
  5068. "name": "Brian Nesbitt",
  5069. "email": "brian@nesbot.com",
  5070. "homepage": "https://markido.com"
  5071. },
  5072. {
  5073. "name": "kylekatarnls",
  5074. "homepage": "https://github.com/kylekatarnls"
  5075. }
  5076. ],
  5077. "description": "An API extension for DateTime that supports 281 different languages.",
  5078. "homepage": "https://carbon.nesbot.com",
  5079. "keywords": [
  5080. "date",
  5081. "datetime",
  5082. "time"
  5083. ],
  5084. "support": {
  5085. "docs": "https://carbon.nesbot.com/docs",
  5086. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5087. "source": "https://github.com/briannesbitt/Carbon"
  5088. },
  5089. "funding": [
  5090. {
  5091. "url": "https://github.com/sponsors/kylekatarnls",
  5092. "type": "github"
  5093. },
  5094. {
  5095. "url": "https://opencollective.com/Carbon#sponsor",
  5096. "type": "opencollective"
  5097. },
  5098. {
  5099. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5100. "type": "tidelift"
  5101. }
  5102. ],
  5103. "time": "2024-06-03T19:18:41+00:00"
  5104. },
  5105. {
  5106. "name": "nikic/fast-route",
  5107. "version": "v1.3.0",
  5108. "source": {
  5109. "type": "git",
  5110. "url": "https://github.com/nikic/FastRoute.git",
  5111. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5112. },
  5113. "dist": {
  5114. "type": "zip",
  5115. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5116. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5117. "shasum": ""
  5118. },
  5119. "require": {
  5120. "php": ">=5.4.0"
  5121. },
  5122. "require-dev": {
  5123. "phpunit/phpunit": "^4.8.35|~5.7"
  5124. },
  5125. "type": "library",
  5126. "autoload": {
  5127. "files": [
  5128. "src/functions.php"
  5129. ],
  5130. "psr-4": {
  5131. "FastRoute\\": "src/"
  5132. }
  5133. },
  5134. "notification-url": "https://packagist.org/downloads/",
  5135. "license": [
  5136. "BSD-3-Clause"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Nikita Popov",
  5141. "email": "nikic@php.net"
  5142. }
  5143. ],
  5144. "description": "Fast request router for PHP",
  5145. "keywords": [
  5146. "router",
  5147. "routing"
  5148. ],
  5149. "support": {
  5150. "issues": "https://github.com/nikic/FastRoute/issues",
  5151. "source": "https://github.com/nikic/FastRoute/tree/master"
  5152. },
  5153. "time": "2018-02-13T20:26:39+00:00"
  5154. },
  5155. {
  5156. "name": "nikic/php-parser",
  5157. "version": "v4.19.1",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/nikic/PHP-Parser.git",
  5161. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5166. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5167. "shasum": ""
  5168. },
  5169. "require": {
  5170. "ext-tokenizer": "*",
  5171. "php": ">=7.1"
  5172. },
  5173. "require-dev": {
  5174. "ircmaxell/php-yacc": "^0.0.7",
  5175. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5176. },
  5177. "bin": [
  5178. "bin/php-parse"
  5179. ],
  5180. "type": "library",
  5181. "extra": {
  5182. "branch-alias": {
  5183. "dev-master": "4.9-dev"
  5184. }
  5185. },
  5186. "autoload": {
  5187. "psr-4": {
  5188. "PhpParser\\": "lib/PhpParser"
  5189. }
  5190. },
  5191. "notification-url": "https://packagist.org/downloads/",
  5192. "license": [
  5193. "BSD-3-Clause"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Nikita Popov"
  5198. }
  5199. ],
  5200. "description": "A PHP parser written in PHP",
  5201. "keywords": [
  5202. "parser",
  5203. "php"
  5204. ],
  5205. "support": {
  5206. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5207. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5208. },
  5209. "time": "2024-03-17T08:10:35+00:00"
  5210. },
  5211. {
  5212. "name": "paragonie/constant_time_encoding",
  5213. "version": "v3.0.0",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5217. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5222. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5223. "shasum": ""
  5224. },
  5225. "require": {
  5226. "php": "^8"
  5227. },
  5228. "require-dev": {
  5229. "phpunit/phpunit": "^9",
  5230. "vimeo/psalm": "^4|^5"
  5231. },
  5232. "type": "library",
  5233. "autoload": {
  5234. "psr-4": {
  5235. "ParagonIE\\ConstantTime\\": "src/"
  5236. }
  5237. },
  5238. "notification-url": "https://packagist.org/downloads/",
  5239. "license": [
  5240. "MIT"
  5241. ],
  5242. "authors": [
  5243. {
  5244. "name": "Paragon Initiative Enterprises",
  5245. "email": "security@paragonie.com",
  5246. "homepage": "https://paragonie.com",
  5247. "role": "Maintainer"
  5248. },
  5249. {
  5250. "name": "Steve 'Sc00bz' Thomas",
  5251. "email": "steve@tobtu.com",
  5252. "homepage": "https://www.tobtu.com",
  5253. "role": "Original Developer"
  5254. }
  5255. ],
  5256. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5257. "keywords": [
  5258. "base16",
  5259. "base32",
  5260. "base32_decode",
  5261. "base32_encode",
  5262. "base64",
  5263. "base64_decode",
  5264. "base64_encode",
  5265. "bin2hex",
  5266. "encoding",
  5267. "hex",
  5268. "hex2bin",
  5269. "rfc4648"
  5270. ],
  5271. "support": {
  5272. "email": "info@paragonie.com",
  5273. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5274. "source": "https://github.com/paragonie/constant_time_encoding"
  5275. },
  5276. "time": "2024-05-08T12:36:18+00:00"
  5277. },
  5278. {
  5279. "name": "paragonie/random_compat",
  5280. "version": "v9.99.100",
  5281. "source": {
  5282. "type": "git",
  5283. "url": "https://github.com/paragonie/random_compat.git",
  5284. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5285. },
  5286. "dist": {
  5287. "type": "zip",
  5288. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5289. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5290. "shasum": ""
  5291. },
  5292. "require": {
  5293. "php": ">= 7"
  5294. },
  5295. "require-dev": {
  5296. "phpunit/phpunit": "4.*|5.*",
  5297. "vimeo/psalm": "^1"
  5298. },
  5299. "suggest": {
  5300. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5301. },
  5302. "type": "library",
  5303. "notification-url": "https://packagist.org/downloads/",
  5304. "license": [
  5305. "MIT"
  5306. ],
  5307. "authors": [
  5308. {
  5309. "name": "Paragon Initiative Enterprises",
  5310. "email": "security@paragonie.com",
  5311. "homepage": "https://paragonie.com"
  5312. }
  5313. ],
  5314. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5315. "keywords": [
  5316. "csprng",
  5317. "polyfill",
  5318. "pseudorandom",
  5319. "random"
  5320. ],
  5321. "support": {
  5322. "email": "info@paragonie.com",
  5323. "issues": "https://github.com/paragonie/random_compat/issues",
  5324. "source": "https://github.com/paragonie/random_compat"
  5325. },
  5326. "time": "2020-10-15T08:29:30+00:00"
  5327. },
  5328. {
  5329. "name": "php-amqplib/php-amqplib",
  5330. "version": "v3.7.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5334. "reference": "91fd00e74cd2eea624fd50a321d926b1c124bb99"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/91fd00e74cd2eea624fd50a321d926b1c124bb99",
  5339. "reference": "91fd00e74cd2eea624fd50a321d926b1c124bb99",
  5340. "shasum": ""
  5341. },
  5342. "require": {
  5343. "ext-mbstring": "*",
  5344. "ext-sockets": "*",
  5345. "php": "^7.2||^8.0",
  5346. "phpseclib/phpseclib": "^2.0|^3.0"
  5347. },
  5348. "conflict": {
  5349. "php": "7.4.0 - 7.4.1"
  5350. },
  5351. "replace": {
  5352. "videlalvaro/php-amqplib": "self.version"
  5353. },
  5354. "require-dev": {
  5355. "ext-curl": "*",
  5356. "nategood/httpful": "^0.2.20",
  5357. "phpunit/phpunit": "^7.5|^9.5",
  5358. "squizlabs/php_codesniffer": "^3.6"
  5359. },
  5360. "type": "library",
  5361. "extra": {
  5362. "branch-alias": {
  5363. "dev-master": "3.0-dev"
  5364. }
  5365. },
  5366. "autoload": {
  5367. "psr-4": {
  5368. "PhpAmqpLib\\": "PhpAmqpLib/"
  5369. }
  5370. },
  5371. "notification-url": "https://packagist.org/downloads/",
  5372. "license": [
  5373. "LGPL-2.1-or-later"
  5374. ],
  5375. "authors": [
  5376. {
  5377. "name": "Alvaro Videla",
  5378. "role": "Original Maintainer"
  5379. },
  5380. {
  5381. "name": "Raúl Araya",
  5382. "email": "nubeiro@gmail.com",
  5383. "role": "Maintainer"
  5384. },
  5385. {
  5386. "name": "Luke Bakken",
  5387. "email": "luke@bakken.io",
  5388. "role": "Maintainer"
  5389. },
  5390. {
  5391. "name": "Ramūnas Dronga",
  5392. "email": "github@ramuno.lt",
  5393. "role": "Maintainer"
  5394. }
  5395. ],
  5396. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5397. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5398. "keywords": [
  5399. "message",
  5400. "queue",
  5401. "rabbitmq"
  5402. ],
  5403. "support": {
  5404. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5405. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.0"
  5406. },
  5407. "time": "2024-07-09T21:10:28+00:00"
  5408. },
  5409. {
  5410. "name": "php-di/phpdoc-reader",
  5411. "version": "2.2.1",
  5412. "source": {
  5413. "type": "git",
  5414. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5415. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5416. },
  5417. "dist": {
  5418. "type": "zip",
  5419. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5420. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5421. "shasum": ""
  5422. },
  5423. "require": {
  5424. "php": ">=7.2.0"
  5425. },
  5426. "require-dev": {
  5427. "mnapoli/hard-mode": "~0.3.0",
  5428. "phpunit/phpunit": "^8.5|^9.0"
  5429. },
  5430. "type": "library",
  5431. "autoload": {
  5432. "psr-4": {
  5433. "PhpDocReader\\": "src/PhpDocReader"
  5434. }
  5435. },
  5436. "notification-url": "https://packagist.org/downloads/",
  5437. "license": [
  5438. "MIT"
  5439. ],
  5440. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5441. "keywords": [
  5442. "phpdoc",
  5443. "reflection"
  5444. ],
  5445. "support": {
  5446. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5447. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5448. },
  5449. "time": "2020-10-12T12:39:22+00:00"
  5450. },
  5451. {
  5452. "name": "phpoption/phpoption",
  5453. "version": "1.9.2",
  5454. "source": {
  5455. "type": "git",
  5456. "url": "https://github.com/schmittjoh/php-option.git",
  5457. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5458. },
  5459. "dist": {
  5460. "type": "zip",
  5461. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5462. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5463. "shasum": ""
  5464. },
  5465. "require": {
  5466. "php": "^7.2.5 || ^8.0"
  5467. },
  5468. "require-dev": {
  5469. "bamarni/composer-bin-plugin": "^1.8.2",
  5470. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5471. },
  5472. "type": "library",
  5473. "extra": {
  5474. "bamarni-bin": {
  5475. "bin-links": true,
  5476. "forward-command": true
  5477. },
  5478. "branch-alias": {
  5479. "dev-master": "1.9-dev"
  5480. }
  5481. },
  5482. "autoload": {
  5483. "psr-4": {
  5484. "PhpOption\\": "src/PhpOption/"
  5485. }
  5486. },
  5487. "notification-url": "https://packagist.org/downloads/",
  5488. "license": [
  5489. "Apache-2.0"
  5490. ],
  5491. "authors": [
  5492. {
  5493. "name": "Johannes M. Schmitt",
  5494. "email": "schmittjoh@gmail.com",
  5495. "homepage": "https://github.com/schmittjoh"
  5496. },
  5497. {
  5498. "name": "Graham Campbell",
  5499. "email": "hello@gjcampbell.co.uk",
  5500. "homepage": "https://github.com/GrahamCampbell"
  5501. }
  5502. ],
  5503. "description": "Option Type for PHP",
  5504. "keywords": [
  5505. "language",
  5506. "option",
  5507. "php",
  5508. "type"
  5509. ],
  5510. "support": {
  5511. "issues": "https://github.com/schmittjoh/php-option/issues",
  5512. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5513. },
  5514. "funding": [
  5515. {
  5516. "url": "https://github.com/GrahamCampbell",
  5517. "type": "github"
  5518. },
  5519. {
  5520. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5521. "type": "tidelift"
  5522. }
  5523. ],
  5524. "time": "2023-11-12T21:59:55+00:00"
  5525. },
  5526. {
  5527. "name": "phpseclib/phpseclib",
  5528. "version": "3.0.41",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://github.com/phpseclib/phpseclib.git",
  5532. "reference": "621c73f7dcb310b61de34d1da4c4204e8ace6ceb"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/621c73f7dcb310b61de34d1da4c4204e8ace6ceb",
  5537. "reference": "621c73f7dcb310b61de34d1da4c4204e8ace6ceb",
  5538. "shasum": ""
  5539. },
  5540. "require": {
  5541. "paragonie/constant_time_encoding": "^1|^2|^3",
  5542. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5543. "php": ">=5.6.1"
  5544. },
  5545. "require-dev": {
  5546. "phpunit/phpunit": "*"
  5547. },
  5548. "suggest": {
  5549. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5550. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5551. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5552. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5553. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5554. },
  5555. "type": "library",
  5556. "autoload": {
  5557. "files": [
  5558. "phpseclib/bootstrap.php"
  5559. ],
  5560. "psr-4": {
  5561. "phpseclib3\\": "phpseclib/"
  5562. }
  5563. },
  5564. "notification-url": "https://packagist.org/downloads/",
  5565. "license": [
  5566. "MIT"
  5567. ],
  5568. "authors": [
  5569. {
  5570. "name": "Jim Wigginton",
  5571. "email": "terrafrost@php.net",
  5572. "role": "Lead Developer"
  5573. },
  5574. {
  5575. "name": "Patrick Monnerat",
  5576. "email": "pm@datasphere.ch",
  5577. "role": "Developer"
  5578. },
  5579. {
  5580. "name": "Andreas Fischer",
  5581. "email": "bantu@phpbb.com",
  5582. "role": "Developer"
  5583. },
  5584. {
  5585. "name": "Hans-Jürgen Petrich",
  5586. "email": "petrich@tronic-media.com",
  5587. "role": "Developer"
  5588. },
  5589. {
  5590. "name": "Graham Campbell",
  5591. "email": "graham@alt-three.com",
  5592. "role": "Developer"
  5593. }
  5594. ],
  5595. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5596. "homepage": "http://phpseclib.sourceforge.net",
  5597. "keywords": [
  5598. "BigInteger",
  5599. "aes",
  5600. "asn.1",
  5601. "asn1",
  5602. "blowfish",
  5603. "crypto",
  5604. "cryptography",
  5605. "encryption",
  5606. "rsa",
  5607. "security",
  5608. "sftp",
  5609. "signature",
  5610. "signing",
  5611. "ssh",
  5612. "twofish",
  5613. "x.509",
  5614. "x509"
  5615. ],
  5616. "support": {
  5617. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5618. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.41"
  5619. },
  5620. "funding": [
  5621. {
  5622. "url": "https://github.com/terrafrost",
  5623. "type": "github"
  5624. },
  5625. {
  5626. "url": "https://www.patreon.com/phpseclib",
  5627. "type": "patreon"
  5628. },
  5629. {
  5630. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5631. "type": "tidelift"
  5632. }
  5633. ],
  5634. "time": "2024-08-12T00:13:54+00:00"
  5635. },
  5636. {
  5637. "name": "psr/cache",
  5638. "version": "3.0.0",
  5639. "source": {
  5640. "type": "git",
  5641. "url": "https://github.com/php-fig/cache.git",
  5642. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5643. },
  5644. "dist": {
  5645. "type": "zip",
  5646. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5647. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5648. "shasum": ""
  5649. },
  5650. "require": {
  5651. "php": ">=8.0.0"
  5652. },
  5653. "type": "library",
  5654. "extra": {
  5655. "branch-alias": {
  5656. "dev-master": "1.0.x-dev"
  5657. }
  5658. },
  5659. "autoload": {
  5660. "psr-4": {
  5661. "Psr\\Cache\\": "src/"
  5662. }
  5663. },
  5664. "notification-url": "https://packagist.org/downloads/",
  5665. "license": [
  5666. "MIT"
  5667. ],
  5668. "authors": [
  5669. {
  5670. "name": "PHP-FIG",
  5671. "homepage": "https://www.php-fig.org/"
  5672. }
  5673. ],
  5674. "description": "Common interface for caching libraries",
  5675. "keywords": [
  5676. "cache",
  5677. "psr",
  5678. "psr-6"
  5679. ],
  5680. "support": {
  5681. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5682. },
  5683. "time": "2021-02-03T23:26:27+00:00"
  5684. },
  5685. {
  5686. "name": "psr/clock",
  5687. "version": "1.0.0",
  5688. "source": {
  5689. "type": "git",
  5690. "url": "https://github.com/php-fig/clock.git",
  5691. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5692. },
  5693. "dist": {
  5694. "type": "zip",
  5695. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5696. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5697. "shasum": ""
  5698. },
  5699. "require": {
  5700. "php": "^7.0 || ^8.0"
  5701. },
  5702. "type": "library",
  5703. "autoload": {
  5704. "psr-4": {
  5705. "Psr\\Clock\\": "src/"
  5706. }
  5707. },
  5708. "notification-url": "https://packagist.org/downloads/",
  5709. "license": [
  5710. "MIT"
  5711. ],
  5712. "authors": [
  5713. {
  5714. "name": "PHP-FIG",
  5715. "homepage": "https://www.php-fig.org/"
  5716. }
  5717. ],
  5718. "description": "Common interface for reading the clock.",
  5719. "homepage": "https://github.com/php-fig/clock",
  5720. "keywords": [
  5721. "clock",
  5722. "now",
  5723. "psr",
  5724. "psr-20",
  5725. "time"
  5726. ],
  5727. "support": {
  5728. "issues": "https://github.com/php-fig/clock/issues",
  5729. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5730. },
  5731. "time": "2022-11-25T14:36:26+00:00"
  5732. },
  5733. {
  5734. "name": "psr/container",
  5735. "version": "2.0.2",
  5736. "source": {
  5737. "type": "git",
  5738. "url": "https://github.com/php-fig/container.git",
  5739. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5740. },
  5741. "dist": {
  5742. "type": "zip",
  5743. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5744. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5745. "shasum": ""
  5746. },
  5747. "require": {
  5748. "php": ">=7.4.0"
  5749. },
  5750. "type": "library",
  5751. "extra": {
  5752. "branch-alias": {
  5753. "dev-master": "2.0.x-dev"
  5754. }
  5755. },
  5756. "autoload": {
  5757. "psr-4": {
  5758. "Psr\\Container\\": "src/"
  5759. }
  5760. },
  5761. "notification-url": "https://packagist.org/downloads/",
  5762. "license": [
  5763. "MIT"
  5764. ],
  5765. "authors": [
  5766. {
  5767. "name": "PHP-FIG",
  5768. "homepage": "https://www.php-fig.org/"
  5769. }
  5770. ],
  5771. "description": "Common Container Interface (PHP FIG PSR-11)",
  5772. "homepage": "https://github.com/php-fig/container",
  5773. "keywords": [
  5774. "PSR-11",
  5775. "container",
  5776. "container-interface",
  5777. "container-interop",
  5778. "psr"
  5779. ],
  5780. "support": {
  5781. "issues": "https://github.com/php-fig/container/issues",
  5782. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5783. },
  5784. "time": "2021-11-05T16:47:00+00:00"
  5785. },
  5786. {
  5787. "name": "psr/event-dispatcher",
  5788. "version": "1.0.0",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/php-fig/event-dispatcher.git",
  5792. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5797. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5798. "shasum": ""
  5799. },
  5800. "require": {
  5801. "php": ">=7.2.0"
  5802. },
  5803. "type": "library",
  5804. "extra": {
  5805. "branch-alias": {
  5806. "dev-master": "1.0.x-dev"
  5807. }
  5808. },
  5809. "autoload": {
  5810. "psr-4": {
  5811. "Psr\\EventDispatcher\\": "src/"
  5812. }
  5813. },
  5814. "notification-url": "https://packagist.org/downloads/",
  5815. "license": [
  5816. "MIT"
  5817. ],
  5818. "authors": [
  5819. {
  5820. "name": "PHP-FIG",
  5821. "homepage": "http://www.php-fig.org/"
  5822. }
  5823. ],
  5824. "description": "Standard interfaces for event handling.",
  5825. "keywords": [
  5826. "events",
  5827. "psr",
  5828. "psr-14"
  5829. ],
  5830. "support": {
  5831. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5832. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5833. },
  5834. "time": "2019-01-08T18:20:26+00:00"
  5835. },
  5836. {
  5837. "name": "psr/http-client",
  5838. "version": "1.0.3",
  5839. "source": {
  5840. "type": "git",
  5841. "url": "https://github.com/php-fig/http-client.git",
  5842. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5843. },
  5844. "dist": {
  5845. "type": "zip",
  5846. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5847. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5848. "shasum": ""
  5849. },
  5850. "require": {
  5851. "php": "^7.0 || ^8.0",
  5852. "psr/http-message": "^1.0 || ^2.0"
  5853. },
  5854. "type": "library",
  5855. "extra": {
  5856. "branch-alias": {
  5857. "dev-master": "1.0.x-dev"
  5858. }
  5859. },
  5860. "autoload": {
  5861. "psr-4": {
  5862. "Psr\\Http\\Client\\": "src/"
  5863. }
  5864. },
  5865. "notification-url": "https://packagist.org/downloads/",
  5866. "license": [
  5867. "MIT"
  5868. ],
  5869. "authors": [
  5870. {
  5871. "name": "PHP-FIG",
  5872. "homepage": "https://www.php-fig.org/"
  5873. }
  5874. ],
  5875. "description": "Common interface for HTTP clients",
  5876. "homepage": "https://github.com/php-fig/http-client",
  5877. "keywords": [
  5878. "http",
  5879. "http-client",
  5880. "psr",
  5881. "psr-18"
  5882. ],
  5883. "support": {
  5884. "source": "https://github.com/php-fig/http-client"
  5885. },
  5886. "time": "2023-09-23T14:17:50+00:00"
  5887. },
  5888. {
  5889. "name": "psr/http-factory",
  5890. "version": "1.1.0",
  5891. "source": {
  5892. "type": "git",
  5893. "url": "https://github.com/php-fig/http-factory.git",
  5894. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5895. },
  5896. "dist": {
  5897. "type": "zip",
  5898. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5899. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5900. "shasum": ""
  5901. },
  5902. "require": {
  5903. "php": ">=7.1",
  5904. "psr/http-message": "^1.0 || ^2.0"
  5905. },
  5906. "type": "library",
  5907. "extra": {
  5908. "branch-alias": {
  5909. "dev-master": "1.0.x-dev"
  5910. }
  5911. },
  5912. "autoload": {
  5913. "psr-4": {
  5914. "Psr\\Http\\Message\\": "src/"
  5915. }
  5916. },
  5917. "notification-url": "https://packagist.org/downloads/",
  5918. "license": [
  5919. "MIT"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "PHP-FIG",
  5924. "homepage": "https://www.php-fig.org/"
  5925. }
  5926. ],
  5927. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5928. "keywords": [
  5929. "factory",
  5930. "http",
  5931. "message",
  5932. "psr",
  5933. "psr-17",
  5934. "psr-7",
  5935. "request",
  5936. "response"
  5937. ],
  5938. "support": {
  5939. "source": "https://github.com/php-fig/http-factory"
  5940. },
  5941. "time": "2024-04-15T12:06:14+00:00"
  5942. },
  5943. {
  5944. "name": "psr/http-message",
  5945. "version": "2.0",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://github.com/php-fig/http-message.git",
  5949. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5954. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5955. "shasum": ""
  5956. },
  5957. "require": {
  5958. "php": "^7.2 || ^8.0"
  5959. },
  5960. "type": "library",
  5961. "extra": {
  5962. "branch-alias": {
  5963. "dev-master": "2.0.x-dev"
  5964. }
  5965. },
  5966. "autoload": {
  5967. "psr-4": {
  5968. "Psr\\Http\\Message\\": "src/"
  5969. }
  5970. },
  5971. "notification-url": "https://packagist.org/downloads/",
  5972. "license": [
  5973. "MIT"
  5974. ],
  5975. "authors": [
  5976. {
  5977. "name": "PHP-FIG",
  5978. "homepage": "https://www.php-fig.org/"
  5979. }
  5980. ],
  5981. "description": "Common interface for HTTP messages",
  5982. "homepage": "https://github.com/php-fig/http-message",
  5983. "keywords": [
  5984. "http",
  5985. "http-message",
  5986. "psr",
  5987. "psr-7",
  5988. "request",
  5989. "response"
  5990. ],
  5991. "support": {
  5992. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5993. },
  5994. "time": "2023-04-04T09:54:51+00:00"
  5995. },
  5996. {
  5997. "name": "psr/http-server-handler",
  5998. "version": "1.0.2",
  5999. "source": {
  6000. "type": "git",
  6001. "url": "https://github.com/php-fig/http-server-handler.git",
  6002. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6003. },
  6004. "dist": {
  6005. "type": "zip",
  6006. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6007. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6008. "shasum": ""
  6009. },
  6010. "require": {
  6011. "php": ">=7.0",
  6012. "psr/http-message": "^1.0 || ^2.0"
  6013. },
  6014. "type": "library",
  6015. "extra": {
  6016. "branch-alias": {
  6017. "dev-master": "1.0.x-dev"
  6018. }
  6019. },
  6020. "autoload": {
  6021. "psr-4": {
  6022. "Psr\\Http\\Server\\": "src/"
  6023. }
  6024. },
  6025. "notification-url": "https://packagist.org/downloads/",
  6026. "license": [
  6027. "MIT"
  6028. ],
  6029. "authors": [
  6030. {
  6031. "name": "PHP-FIG",
  6032. "homepage": "https://www.php-fig.org/"
  6033. }
  6034. ],
  6035. "description": "Common interface for HTTP server-side request handler",
  6036. "keywords": [
  6037. "handler",
  6038. "http",
  6039. "http-interop",
  6040. "psr",
  6041. "psr-15",
  6042. "psr-7",
  6043. "request",
  6044. "response",
  6045. "server"
  6046. ],
  6047. "support": {
  6048. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6049. },
  6050. "time": "2023-04-10T20:06:20+00:00"
  6051. },
  6052. {
  6053. "name": "psr/http-server-middleware",
  6054. "version": "1.0.2",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://github.com/php-fig/http-server-middleware.git",
  6058. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6063. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6064. "shasum": ""
  6065. },
  6066. "require": {
  6067. "php": ">=7.0",
  6068. "psr/http-message": "^1.0 || ^2.0",
  6069. "psr/http-server-handler": "^1.0"
  6070. },
  6071. "type": "library",
  6072. "extra": {
  6073. "branch-alias": {
  6074. "dev-master": "1.0.x-dev"
  6075. }
  6076. },
  6077. "autoload": {
  6078. "psr-4": {
  6079. "Psr\\Http\\Server\\": "src/"
  6080. }
  6081. },
  6082. "notification-url": "https://packagist.org/downloads/",
  6083. "license": [
  6084. "MIT"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "PHP-FIG",
  6089. "homepage": "https://www.php-fig.org/"
  6090. }
  6091. ],
  6092. "description": "Common interface for HTTP server-side middleware",
  6093. "keywords": [
  6094. "http",
  6095. "http-interop",
  6096. "middleware",
  6097. "psr",
  6098. "psr-15",
  6099. "psr-7",
  6100. "request",
  6101. "response"
  6102. ],
  6103. "support": {
  6104. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6105. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6106. },
  6107. "time": "2023-04-11T06:14:47+00:00"
  6108. },
  6109. {
  6110. "name": "psr/log",
  6111. "version": "3.0.0",
  6112. "source": {
  6113. "type": "git",
  6114. "url": "https://github.com/php-fig/log.git",
  6115. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6116. },
  6117. "dist": {
  6118. "type": "zip",
  6119. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6120. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6121. "shasum": ""
  6122. },
  6123. "require": {
  6124. "php": ">=8.0.0"
  6125. },
  6126. "type": "library",
  6127. "extra": {
  6128. "branch-alias": {
  6129. "dev-master": "3.x-dev"
  6130. }
  6131. },
  6132. "autoload": {
  6133. "psr-4": {
  6134. "Psr\\Log\\": "src"
  6135. }
  6136. },
  6137. "notification-url": "https://packagist.org/downloads/",
  6138. "license": [
  6139. "MIT"
  6140. ],
  6141. "authors": [
  6142. {
  6143. "name": "PHP-FIG",
  6144. "homepage": "https://www.php-fig.org/"
  6145. }
  6146. ],
  6147. "description": "Common interface for logging libraries",
  6148. "homepage": "https://github.com/php-fig/log",
  6149. "keywords": [
  6150. "log",
  6151. "psr",
  6152. "psr-3"
  6153. ],
  6154. "support": {
  6155. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6156. },
  6157. "time": "2021-07-14T16:46:02+00:00"
  6158. },
  6159. {
  6160. "name": "psr/simple-cache",
  6161. "version": "3.0.0",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://github.com/php-fig/simple-cache.git",
  6165. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6170. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6171. "shasum": ""
  6172. },
  6173. "require": {
  6174. "php": ">=8.0.0"
  6175. },
  6176. "type": "library",
  6177. "extra": {
  6178. "branch-alias": {
  6179. "dev-master": "3.0.x-dev"
  6180. }
  6181. },
  6182. "autoload": {
  6183. "psr-4": {
  6184. "Psr\\SimpleCache\\": "src/"
  6185. }
  6186. },
  6187. "notification-url": "https://packagist.org/downloads/",
  6188. "license": [
  6189. "MIT"
  6190. ],
  6191. "authors": [
  6192. {
  6193. "name": "PHP-FIG",
  6194. "homepage": "https://www.php-fig.org/"
  6195. }
  6196. ],
  6197. "description": "Common interfaces for simple caching",
  6198. "keywords": [
  6199. "cache",
  6200. "caching",
  6201. "psr",
  6202. "psr-16",
  6203. "simple-cache"
  6204. ],
  6205. "support": {
  6206. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6207. },
  6208. "time": "2021-10-29T13:26:27+00:00"
  6209. },
  6210. {
  6211. "name": "ralouphie/getallheaders",
  6212. "version": "3.0.3",
  6213. "source": {
  6214. "type": "git",
  6215. "url": "https://github.com/ralouphie/getallheaders.git",
  6216. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6217. },
  6218. "dist": {
  6219. "type": "zip",
  6220. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6221. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6222. "shasum": ""
  6223. },
  6224. "require": {
  6225. "php": ">=5.6"
  6226. },
  6227. "require-dev": {
  6228. "php-coveralls/php-coveralls": "^2.1",
  6229. "phpunit/phpunit": "^5 || ^6.5"
  6230. },
  6231. "type": "library",
  6232. "autoload": {
  6233. "files": [
  6234. "src/getallheaders.php"
  6235. ]
  6236. },
  6237. "notification-url": "https://packagist.org/downloads/",
  6238. "license": [
  6239. "MIT"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Ralph Khattar",
  6244. "email": "ralph.khattar@gmail.com"
  6245. }
  6246. ],
  6247. "description": "A polyfill for getallheaders.",
  6248. "support": {
  6249. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6250. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6251. },
  6252. "time": "2019-03-08T08:55:37+00:00"
  6253. },
  6254. {
  6255. "name": "ramsey/collection",
  6256. "version": "2.0.0",
  6257. "source": {
  6258. "type": "git",
  6259. "url": "https://github.com/ramsey/collection.git",
  6260. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6261. },
  6262. "dist": {
  6263. "type": "zip",
  6264. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6265. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6266. "shasum": ""
  6267. },
  6268. "require": {
  6269. "php": "^8.1"
  6270. },
  6271. "require-dev": {
  6272. "captainhook/plugin-composer": "^5.3",
  6273. "ergebnis/composer-normalize": "^2.28.3",
  6274. "fakerphp/faker": "^1.21",
  6275. "hamcrest/hamcrest-php": "^2.0",
  6276. "jangregor/phpstan-prophecy": "^1.0",
  6277. "mockery/mockery": "^1.5",
  6278. "php-parallel-lint/php-console-highlighter": "^1.0",
  6279. "php-parallel-lint/php-parallel-lint": "^1.3",
  6280. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6281. "phpspec/prophecy-phpunit": "^2.0",
  6282. "phpstan/extension-installer": "^1.2",
  6283. "phpstan/phpstan": "^1.9",
  6284. "phpstan/phpstan-mockery": "^1.1",
  6285. "phpstan/phpstan-phpunit": "^1.3",
  6286. "phpunit/phpunit": "^9.5",
  6287. "psalm/plugin-mockery": "^1.1",
  6288. "psalm/plugin-phpunit": "^0.18.4",
  6289. "ramsey/coding-standard": "^2.0.3",
  6290. "ramsey/conventional-commits": "^1.3",
  6291. "vimeo/psalm": "^5.4"
  6292. },
  6293. "type": "library",
  6294. "extra": {
  6295. "captainhook": {
  6296. "force-install": true
  6297. },
  6298. "ramsey/conventional-commits": {
  6299. "configFile": "conventional-commits.json"
  6300. }
  6301. },
  6302. "autoload": {
  6303. "psr-4": {
  6304. "Ramsey\\Collection\\": "src/"
  6305. }
  6306. },
  6307. "notification-url": "https://packagist.org/downloads/",
  6308. "license": [
  6309. "MIT"
  6310. ],
  6311. "authors": [
  6312. {
  6313. "name": "Ben Ramsey",
  6314. "email": "ben@benramsey.com",
  6315. "homepage": "https://benramsey.com"
  6316. }
  6317. ],
  6318. "description": "A PHP library for representing and manipulating collections.",
  6319. "keywords": [
  6320. "array",
  6321. "collection",
  6322. "hash",
  6323. "map",
  6324. "queue",
  6325. "set"
  6326. ],
  6327. "support": {
  6328. "issues": "https://github.com/ramsey/collection/issues",
  6329. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6330. },
  6331. "funding": [
  6332. {
  6333. "url": "https://github.com/ramsey",
  6334. "type": "github"
  6335. },
  6336. {
  6337. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6338. "type": "tidelift"
  6339. }
  6340. ],
  6341. "time": "2022-12-31T21:50:55+00:00"
  6342. },
  6343. {
  6344. "name": "ramsey/uuid",
  6345. "version": "4.7.6",
  6346. "source": {
  6347. "type": "git",
  6348. "url": "https://github.com/ramsey/uuid.git",
  6349. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6350. },
  6351. "dist": {
  6352. "type": "zip",
  6353. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6354. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6355. "shasum": ""
  6356. },
  6357. "require": {
  6358. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6359. "ext-json": "*",
  6360. "php": "^8.0",
  6361. "ramsey/collection": "^1.2 || ^2.0"
  6362. },
  6363. "replace": {
  6364. "rhumsaa/uuid": "self.version"
  6365. },
  6366. "require-dev": {
  6367. "captainhook/captainhook": "^5.10",
  6368. "captainhook/plugin-composer": "^5.3",
  6369. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6370. "doctrine/annotations": "^1.8",
  6371. "ergebnis/composer-normalize": "^2.15",
  6372. "mockery/mockery": "^1.3",
  6373. "paragonie/random-lib": "^2",
  6374. "php-mock/php-mock": "^2.2",
  6375. "php-mock/php-mock-mockery": "^1.3",
  6376. "php-parallel-lint/php-parallel-lint": "^1.1",
  6377. "phpbench/phpbench": "^1.0",
  6378. "phpstan/extension-installer": "^1.1",
  6379. "phpstan/phpstan": "^1.8",
  6380. "phpstan/phpstan-mockery": "^1.1",
  6381. "phpstan/phpstan-phpunit": "^1.1",
  6382. "phpunit/phpunit": "^8.5 || ^9",
  6383. "ramsey/composer-repl": "^1.4",
  6384. "slevomat/coding-standard": "^8.4",
  6385. "squizlabs/php_codesniffer": "^3.5",
  6386. "vimeo/psalm": "^4.9"
  6387. },
  6388. "suggest": {
  6389. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6390. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6391. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6392. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6393. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6394. },
  6395. "type": "library",
  6396. "extra": {
  6397. "captainhook": {
  6398. "force-install": true
  6399. }
  6400. },
  6401. "autoload": {
  6402. "files": [
  6403. "src/functions.php"
  6404. ],
  6405. "psr-4": {
  6406. "Ramsey\\Uuid\\": "src/"
  6407. }
  6408. },
  6409. "notification-url": "https://packagist.org/downloads/",
  6410. "license": [
  6411. "MIT"
  6412. ],
  6413. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6414. "keywords": [
  6415. "guid",
  6416. "identifier",
  6417. "uuid"
  6418. ],
  6419. "support": {
  6420. "issues": "https://github.com/ramsey/uuid/issues",
  6421. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6422. },
  6423. "funding": [
  6424. {
  6425. "url": "https://github.com/ramsey",
  6426. "type": "github"
  6427. },
  6428. {
  6429. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6430. "type": "tidelift"
  6431. }
  6432. ],
  6433. "time": "2024-04-27T21:32:50+00:00"
  6434. },
  6435. {
  6436. "name": "swow/psr7-plus",
  6437. "version": "v1.1.2",
  6438. "source": {
  6439. "type": "git",
  6440. "url": "https://github.com/swow/psr7-plus.git",
  6441. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6442. },
  6443. "dist": {
  6444. "type": "zip",
  6445. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6446. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6447. "shasum": ""
  6448. },
  6449. "require": {
  6450. "php": ">=8.0",
  6451. "psr/http-client": "^1.0",
  6452. "psr/http-factory": "^1.0",
  6453. "psr/http-message": "^1.1|^2.0"
  6454. },
  6455. "type": "library",
  6456. "autoload": {
  6457. "psr-4": {
  6458. "Swow\\Psr7\\Message\\": "src/Message/"
  6459. }
  6460. },
  6461. "notification-url": "https://packagist.org/downloads/",
  6462. "license": [
  6463. "Apache-2.0"
  6464. ],
  6465. "authors": [
  6466. {
  6467. "name": "twose",
  6468. "email": "twosee@php.net"
  6469. }
  6470. ],
  6471. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6472. "keywords": [
  6473. "http",
  6474. "psr17",
  6475. "psr7",
  6476. "swow",
  6477. "websocket"
  6478. ],
  6479. "support": {
  6480. "issues": "https://github.com/swow/swow",
  6481. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6482. },
  6483. "time": "2023-06-15T09:18:11+00:00"
  6484. },
  6485. {
  6486. "name": "symfony/console",
  6487. "version": "v6.4.8",
  6488. "source": {
  6489. "type": "git",
  6490. "url": "https://github.com/symfony/console.git",
  6491. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  6492. },
  6493. "dist": {
  6494. "type": "zip",
  6495. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6496. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6497. "shasum": ""
  6498. },
  6499. "require": {
  6500. "php": ">=8.1",
  6501. "symfony/deprecation-contracts": "^2.5|^3",
  6502. "symfony/polyfill-mbstring": "~1.0",
  6503. "symfony/service-contracts": "^2.5|^3",
  6504. "symfony/string": "^5.4|^6.0|^7.0"
  6505. },
  6506. "conflict": {
  6507. "symfony/dependency-injection": "<5.4",
  6508. "symfony/dotenv": "<5.4",
  6509. "symfony/event-dispatcher": "<5.4",
  6510. "symfony/lock": "<5.4",
  6511. "symfony/process": "<5.4"
  6512. },
  6513. "provide": {
  6514. "psr/log-implementation": "1.0|2.0|3.0"
  6515. },
  6516. "require-dev": {
  6517. "psr/log": "^1|^2|^3",
  6518. "symfony/config": "^5.4|^6.0|^7.0",
  6519. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6520. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6521. "symfony/http-foundation": "^6.4|^7.0",
  6522. "symfony/http-kernel": "^6.4|^7.0",
  6523. "symfony/lock": "^5.4|^6.0|^7.0",
  6524. "symfony/messenger": "^5.4|^6.0|^7.0",
  6525. "symfony/process": "^5.4|^6.0|^7.0",
  6526. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6527. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6528. },
  6529. "type": "library",
  6530. "autoload": {
  6531. "psr-4": {
  6532. "Symfony\\Component\\Console\\": ""
  6533. },
  6534. "exclude-from-classmap": [
  6535. "/Tests/"
  6536. ]
  6537. },
  6538. "notification-url": "https://packagist.org/downloads/",
  6539. "license": [
  6540. "MIT"
  6541. ],
  6542. "authors": [
  6543. {
  6544. "name": "Fabien Potencier",
  6545. "email": "fabien@symfony.com"
  6546. },
  6547. {
  6548. "name": "Symfony Community",
  6549. "homepage": "https://symfony.com/contributors"
  6550. }
  6551. ],
  6552. "description": "Eases the creation of beautiful and testable command line interfaces",
  6553. "homepage": "https://symfony.com",
  6554. "keywords": [
  6555. "cli",
  6556. "command-line",
  6557. "console",
  6558. "terminal"
  6559. ],
  6560. "support": {
  6561. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6562. },
  6563. "funding": [
  6564. {
  6565. "url": "https://symfony.com/sponsor",
  6566. "type": "custom"
  6567. },
  6568. {
  6569. "url": "https://github.com/fabpot",
  6570. "type": "github"
  6571. },
  6572. {
  6573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6574. "type": "tidelift"
  6575. }
  6576. ],
  6577. "time": "2024-05-31T14:49:08+00:00"
  6578. },
  6579. {
  6580. "name": "symfony/deprecation-contracts",
  6581. "version": "v3.5.0",
  6582. "source": {
  6583. "type": "git",
  6584. "url": "https://github.com/symfony/deprecation-contracts.git",
  6585. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6586. },
  6587. "dist": {
  6588. "type": "zip",
  6589. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6590. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6591. "shasum": ""
  6592. },
  6593. "require": {
  6594. "php": ">=8.1"
  6595. },
  6596. "type": "library",
  6597. "extra": {
  6598. "branch-alias": {
  6599. "dev-main": "3.5-dev"
  6600. },
  6601. "thanks": {
  6602. "name": "symfony/contracts",
  6603. "url": "https://github.com/symfony/contracts"
  6604. }
  6605. },
  6606. "autoload": {
  6607. "files": [
  6608. "function.php"
  6609. ]
  6610. },
  6611. "notification-url": "https://packagist.org/downloads/",
  6612. "license": [
  6613. "MIT"
  6614. ],
  6615. "authors": [
  6616. {
  6617. "name": "Nicolas Grekas",
  6618. "email": "p@tchwork.com"
  6619. },
  6620. {
  6621. "name": "Symfony Community",
  6622. "homepage": "https://symfony.com/contributors"
  6623. }
  6624. ],
  6625. "description": "A generic function and convention to trigger deprecation notices",
  6626. "homepage": "https://symfony.com",
  6627. "support": {
  6628. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6629. },
  6630. "funding": [
  6631. {
  6632. "url": "https://symfony.com/sponsor",
  6633. "type": "custom"
  6634. },
  6635. {
  6636. "url": "https://github.com/fabpot",
  6637. "type": "github"
  6638. },
  6639. {
  6640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6641. "type": "tidelift"
  6642. }
  6643. ],
  6644. "time": "2024-04-18T09:32:20+00:00"
  6645. },
  6646. {
  6647. "name": "symfony/finder",
  6648. "version": "v6.4.8",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://github.com/symfony/finder.git",
  6652. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6657. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6658. "shasum": ""
  6659. },
  6660. "require": {
  6661. "php": ">=8.1"
  6662. },
  6663. "require-dev": {
  6664. "symfony/filesystem": "^6.0|^7.0"
  6665. },
  6666. "type": "library",
  6667. "autoload": {
  6668. "psr-4": {
  6669. "Symfony\\Component\\Finder\\": ""
  6670. },
  6671. "exclude-from-classmap": [
  6672. "/Tests/"
  6673. ]
  6674. },
  6675. "notification-url": "https://packagist.org/downloads/",
  6676. "license": [
  6677. "MIT"
  6678. ],
  6679. "authors": [
  6680. {
  6681. "name": "Fabien Potencier",
  6682. "email": "fabien@symfony.com"
  6683. },
  6684. {
  6685. "name": "Symfony Community",
  6686. "homepage": "https://symfony.com/contributors"
  6687. }
  6688. ],
  6689. "description": "Finds files and directories via an intuitive fluent interface",
  6690. "homepage": "https://symfony.com",
  6691. "support": {
  6692. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6693. },
  6694. "funding": [
  6695. {
  6696. "url": "https://symfony.com/sponsor",
  6697. "type": "custom"
  6698. },
  6699. {
  6700. "url": "https://github.com/fabpot",
  6701. "type": "github"
  6702. },
  6703. {
  6704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6705. "type": "tidelift"
  6706. }
  6707. ],
  6708. "time": "2024-05-31T14:49:08+00:00"
  6709. },
  6710. {
  6711. "name": "symfony/polyfill-ctype",
  6712. "version": "v1.29.0",
  6713. "source": {
  6714. "type": "git",
  6715. "url": "https://github.com/symfony/polyfill-ctype.git",
  6716. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6717. },
  6718. "dist": {
  6719. "type": "zip",
  6720. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6721. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6722. "shasum": ""
  6723. },
  6724. "require": {
  6725. "php": ">=7.1"
  6726. },
  6727. "provide": {
  6728. "ext-ctype": "*"
  6729. },
  6730. "suggest": {
  6731. "ext-ctype": "For best performance"
  6732. },
  6733. "type": "library",
  6734. "extra": {
  6735. "thanks": {
  6736. "name": "symfony/polyfill",
  6737. "url": "https://github.com/symfony/polyfill"
  6738. }
  6739. },
  6740. "autoload": {
  6741. "files": [
  6742. "bootstrap.php"
  6743. ],
  6744. "psr-4": {
  6745. "Symfony\\Polyfill\\Ctype\\": ""
  6746. }
  6747. },
  6748. "notification-url": "https://packagist.org/downloads/",
  6749. "license": [
  6750. "MIT"
  6751. ],
  6752. "authors": [
  6753. {
  6754. "name": "Gert de Pagter",
  6755. "email": "BackEndTea@gmail.com"
  6756. },
  6757. {
  6758. "name": "Symfony Community",
  6759. "homepage": "https://symfony.com/contributors"
  6760. }
  6761. ],
  6762. "description": "Symfony polyfill for ctype functions",
  6763. "homepage": "https://symfony.com",
  6764. "keywords": [
  6765. "compatibility",
  6766. "ctype",
  6767. "polyfill",
  6768. "portable"
  6769. ],
  6770. "support": {
  6771. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6772. },
  6773. "funding": [
  6774. {
  6775. "url": "https://symfony.com/sponsor",
  6776. "type": "custom"
  6777. },
  6778. {
  6779. "url": "https://github.com/fabpot",
  6780. "type": "github"
  6781. },
  6782. {
  6783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6784. "type": "tidelift"
  6785. }
  6786. ],
  6787. "time": "2024-01-29T20:11:03+00:00"
  6788. },
  6789. {
  6790. "name": "symfony/polyfill-intl-grapheme",
  6791. "version": "v1.29.0",
  6792. "source": {
  6793. "type": "git",
  6794. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6795. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6796. },
  6797. "dist": {
  6798. "type": "zip",
  6799. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6800. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6801. "shasum": ""
  6802. },
  6803. "require": {
  6804. "php": ">=7.1"
  6805. },
  6806. "suggest": {
  6807. "ext-intl": "For best performance"
  6808. },
  6809. "type": "library",
  6810. "extra": {
  6811. "thanks": {
  6812. "name": "symfony/polyfill",
  6813. "url": "https://github.com/symfony/polyfill"
  6814. }
  6815. },
  6816. "autoload": {
  6817. "files": [
  6818. "bootstrap.php"
  6819. ],
  6820. "psr-4": {
  6821. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6822. }
  6823. },
  6824. "notification-url": "https://packagist.org/downloads/",
  6825. "license": [
  6826. "MIT"
  6827. ],
  6828. "authors": [
  6829. {
  6830. "name": "Nicolas Grekas",
  6831. "email": "p@tchwork.com"
  6832. },
  6833. {
  6834. "name": "Symfony Community",
  6835. "homepage": "https://symfony.com/contributors"
  6836. }
  6837. ],
  6838. "description": "Symfony polyfill for intl's grapheme_* functions",
  6839. "homepage": "https://symfony.com",
  6840. "keywords": [
  6841. "compatibility",
  6842. "grapheme",
  6843. "intl",
  6844. "polyfill",
  6845. "portable",
  6846. "shim"
  6847. ],
  6848. "support": {
  6849. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6850. },
  6851. "funding": [
  6852. {
  6853. "url": "https://symfony.com/sponsor",
  6854. "type": "custom"
  6855. },
  6856. {
  6857. "url": "https://github.com/fabpot",
  6858. "type": "github"
  6859. },
  6860. {
  6861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6862. "type": "tidelift"
  6863. }
  6864. ],
  6865. "time": "2024-01-29T20:11:03+00:00"
  6866. },
  6867. {
  6868. "name": "symfony/polyfill-intl-normalizer",
  6869. "version": "v1.29.0",
  6870. "source": {
  6871. "type": "git",
  6872. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6873. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6874. },
  6875. "dist": {
  6876. "type": "zip",
  6877. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6878. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6879. "shasum": ""
  6880. },
  6881. "require": {
  6882. "php": ">=7.1"
  6883. },
  6884. "suggest": {
  6885. "ext-intl": "For best performance"
  6886. },
  6887. "type": "library",
  6888. "extra": {
  6889. "thanks": {
  6890. "name": "symfony/polyfill",
  6891. "url": "https://github.com/symfony/polyfill"
  6892. }
  6893. },
  6894. "autoload": {
  6895. "files": [
  6896. "bootstrap.php"
  6897. ],
  6898. "psr-4": {
  6899. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6900. },
  6901. "classmap": [
  6902. "Resources/stubs"
  6903. ]
  6904. },
  6905. "notification-url": "https://packagist.org/downloads/",
  6906. "license": [
  6907. "MIT"
  6908. ],
  6909. "authors": [
  6910. {
  6911. "name": "Nicolas Grekas",
  6912. "email": "p@tchwork.com"
  6913. },
  6914. {
  6915. "name": "Symfony Community",
  6916. "homepage": "https://symfony.com/contributors"
  6917. }
  6918. ],
  6919. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6920. "homepage": "https://symfony.com",
  6921. "keywords": [
  6922. "compatibility",
  6923. "intl",
  6924. "normalizer",
  6925. "polyfill",
  6926. "portable",
  6927. "shim"
  6928. ],
  6929. "support": {
  6930. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6931. },
  6932. "funding": [
  6933. {
  6934. "url": "https://symfony.com/sponsor",
  6935. "type": "custom"
  6936. },
  6937. {
  6938. "url": "https://github.com/fabpot",
  6939. "type": "github"
  6940. },
  6941. {
  6942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6943. "type": "tidelift"
  6944. }
  6945. ],
  6946. "time": "2024-01-29T20:11:03+00:00"
  6947. },
  6948. {
  6949. "name": "symfony/polyfill-mbstring",
  6950. "version": "v1.29.0",
  6951. "source": {
  6952. "type": "git",
  6953. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6954. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6955. },
  6956. "dist": {
  6957. "type": "zip",
  6958. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6959. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6960. "shasum": ""
  6961. },
  6962. "require": {
  6963. "php": ">=7.1"
  6964. },
  6965. "provide": {
  6966. "ext-mbstring": "*"
  6967. },
  6968. "suggest": {
  6969. "ext-mbstring": "For best performance"
  6970. },
  6971. "type": "library",
  6972. "extra": {
  6973. "thanks": {
  6974. "name": "symfony/polyfill",
  6975. "url": "https://github.com/symfony/polyfill"
  6976. }
  6977. },
  6978. "autoload": {
  6979. "files": [
  6980. "bootstrap.php"
  6981. ],
  6982. "psr-4": {
  6983. "Symfony\\Polyfill\\Mbstring\\": ""
  6984. }
  6985. },
  6986. "notification-url": "https://packagist.org/downloads/",
  6987. "license": [
  6988. "MIT"
  6989. ],
  6990. "authors": [
  6991. {
  6992. "name": "Nicolas Grekas",
  6993. "email": "p@tchwork.com"
  6994. },
  6995. {
  6996. "name": "Symfony Community",
  6997. "homepage": "https://symfony.com/contributors"
  6998. }
  6999. ],
  7000. "description": "Symfony polyfill for the Mbstring extension",
  7001. "homepage": "https://symfony.com",
  7002. "keywords": [
  7003. "compatibility",
  7004. "mbstring",
  7005. "polyfill",
  7006. "portable",
  7007. "shim"
  7008. ],
  7009. "support": {
  7010. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  7011. },
  7012. "funding": [
  7013. {
  7014. "url": "https://symfony.com/sponsor",
  7015. "type": "custom"
  7016. },
  7017. {
  7018. "url": "https://github.com/fabpot",
  7019. "type": "github"
  7020. },
  7021. {
  7022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7023. "type": "tidelift"
  7024. }
  7025. ],
  7026. "time": "2024-01-29T20:11:03+00:00"
  7027. },
  7028. {
  7029. "name": "symfony/polyfill-php80",
  7030. "version": "v1.29.0",
  7031. "source": {
  7032. "type": "git",
  7033. "url": "https://github.com/symfony/polyfill-php80.git",
  7034. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7035. },
  7036. "dist": {
  7037. "type": "zip",
  7038. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7039. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7040. "shasum": ""
  7041. },
  7042. "require": {
  7043. "php": ">=7.1"
  7044. },
  7045. "type": "library",
  7046. "extra": {
  7047. "thanks": {
  7048. "name": "symfony/polyfill",
  7049. "url": "https://github.com/symfony/polyfill"
  7050. }
  7051. },
  7052. "autoload": {
  7053. "files": [
  7054. "bootstrap.php"
  7055. ],
  7056. "psr-4": {
  7057. "Symfony\\Polyfill\\Php80\\": ""
  7058. },
  7059. "classmap": [
  7060. "Resources/stubs"
  7061. ]
  7062. },
  7063. "notification-url": "https://packagist.org/downloads/",
  7064. "license": [
  7065. "MIT"
  7066. ],
  7067. "authors": [
  7068. {
  7069. "name": "Ion Bazan",
  7070. "email": "ion.bazan@gmail.com"
  7071. },
  7072. {
  7073. "name": "Nicolas Grekas",
  7074. "email": "p@tchwork.com"
  7075. },
  7076. {
  7077. "name": "Symfony Community",
  7078. "homepage": "https://symfony.com/contributors"
  7079. }
  7080. ],
  7081. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7082. "homepage": "https://symfony.com",
  7083. "keywords": [
  7084. "compatibility",
  7085. "polyfill",
  7086. "portable",
  7087. "shim"
  7088. ],
  7089. "support": {
  7090. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7091. },
  7092. "funding": [
  7093. {
  7094. "url": "https://symfony.com/sponsor",
  7095. "type": "custom"
  7096. },
  7097. {
  7098. "url": "https://github.com/fabpot",
  7099. "type": "github"
  7100. },
  7101. {
  7102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7103. "type": "tidelift"
  7104. }
  7105. ],
  7106. "time": "2024-01-29T20:11:03+00:00"
  7107. },
  7108. {
  7109. "name": "symfony/service-contracts",
  7110. "version": "v3.5.0",
  7111. "source": {
  7112. "type": "git",
  7113. "url": "https://github.com/symfony/service-contracts.git",
  7114. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7115. },
  7116. "dist": {
  7117. "type": "zip",
  7118. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7119. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7120. "shasum": ""
  7121. },
  7122. "require": {
  7123. "php": ">=8.1",
  7124. "psr/container": "^1.1|^2.0",
  7125. "symfony/deprecation-contracts": "^2.5|^3"
  7126. },
  7127. "conflict": {
  7128. "ext-psr": "<1.1|>=2"
  7129. },
  7130. "type": "library",
  7131. "extra": {
  7132. "branch-alias": {
  7133. "dev-main": "3.5-dev"
  7134. },
  7135. "thanks": {
  7136. "name": "symfony/contracts",
  7137. "url": "https://github.com/symfony/contracts"
  7138. }
  7139. },
  7140. "autoload": {
  7141. "psr-4": {
  7142. "Symfony\\Contracts\\Service\\": ""
  7143. },
  7144. "exclude-from-classmap": [
  7145. "/Test/"
  7146. ]
  7147. },
  7148. "notification-url": "https://packagist.org/downloads/",
  7149. "license": [
  7150. "MIT"
  7151. ],
  7152. "authors": [
  7153. {
  7154. "name": "Nicolas Grekas",
  7155. "email": "p@tchwork.com"
  7156. },
  7157. {
  7158. "name": "Symfony Community",
  7159. "homepage": "https://symfony.com/contributors"
  7160. }
  7161. ],
  7162. "description": "Generic abstractions related to writing services",
  7163. "homepage": "https://symfony.com",
  7164. "keywords": [
  7165. "abstractions",
  7166. "contracts",
  7167. "decoupling",
  7168. "interfaces",
  7169. "interoperability",
  7170. "standards"
  7171. ],
  7172. "support": {
  7173. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7174. },
  7175. "funding": [
  7176. {
  7177. "url": "https://symfony.com/sponsor",
  7178. "type": "custom"
  7179. },
  7180. {
  7181. "url": "https://github.com/fabpot",
  7182. "type": "github"
  7183. },
  7184. {
  7185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7186. "type": "tidelift"
  7187. }
  7188. ],
  7189. "time": "2024-04-18T09:32:20+00:00"
  7190. },
  7191. {
  7192. "name": "symfony/string",
  7193. "version": "v6.4.8",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/symfony/string.git",
  7197. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7202. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "php": ">=8.1",
  7207. "symfony/polyfill-ctype": "~1.8",
  7208. "symfony/polyfill-intl-grapheme": "~1.0",
  7209. "symfony/polyfill-intl-normalizer": "~1.0",
  7210. "symfony/polyfill-mbstring": "~1.0"
  7211. },
  7212. "conflict": {
  7213. "symfony/translation-contracts": "<2.5"
  7214. },
  7215. "require-dev": {
  7216. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7217. "symfony/http-client": "^5.4|^6.0|^7.0",
  7218. "symfony/intl": "^6.2|^7.0",
  7219. "symfony/translation-contracts": "^2.5|^3.0",
  7220. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7221. },
  7222. "type": "library",
  7223. "autoload": {
  7224. "files": [
  7225. "Resources/functions.php"
  7226. ],
  7227. "psr-4": {
  7228. "Symfony\\Component\\String\\": ""
  7229. },
  7230. "exclude-from-classmap": [
  7231. "/Tests/"
  7232. ]
  7233. },
  7234. "notification-url": "https://packagist.org/downloads/",
  7235. "license": [
  7236. "MIT"
  7237. ],
  7238. "authors": [
  7239. {
  7240. "name": "Nicolas Grekas",
  7241. "email": "p@tchwork.com"
  7242. },
  7243. {
  7244. "name": "Symfony Community",
  7245. "homepage": "https://symfony.com/contributors"
  7246. }
  7247. ],
  7248. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7249. "homepage": "https://symfony.com",
  7250. "keywords": [
  7251. "grapheme",
  7252. "i18n",
  7253. "string",
  7254. "unicode",
  7255. "utf-8",
  7256. "utf8"
  7257. ],
  7258. "support": {
  7259. "source": "https://github.com/symfony/string/tree/v6.4.8"
  7260. },
  7261. "funding": [
  7262. {
  7263. "url": "https://symfony.com/sponsor",
  7264. "type": "custom"
  7265. },
  7266. {
  7267. "url": "https://github.com/fabpot",
  7268. "type": "github"
  7269. },
  7270. {
  7271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7272. "type": "tidelift"
  7273. }
  7274. ],
  7275. "time": "2024-05-31T14:49:08+00:00"
  7276. },
  7277. {
  7278. "name": "symfony/translation",
  7279. "version": "v6.4.8",
  7280. "source": {
  7281. "type": "git",
  7282. "url": "https://github.com/symfony/translation.git",
  7283. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7284. },
  7285. "dist": {
  7286. "type": "zip",
  7287. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7288. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7289. "shasum": ""
  7290. },
  7291. "require": {
  7292. "php": ">=8.1",
  7293. "symfony/deprecation-contracts": "^2.5|^3",
  7294. "symfony/polyfill-mbstring": "~1.0",
  7295. "symfony/translation-contracts": "^2.5|^3.0"
  7296. },
  7297. "conflict": {
  7298. "symfony/config": "<5.4",
  7299. "symfony/console": "<5.4",
  7300. "symfony/dependency-injection": "<5.4",
  7301. "symfony/http-client-contracts": "<2.5",
  7302. "symfony/http-kernel": "<5.4",
  7303. "symfony/service-contracts": "<2.5",
  7304. "symfony/twig-bundle": "<5.4",
  7305. "symfony/yaml": "<5.4"
  7306. },
  7307. "provide": {
  7308. "symfony/translation-implementation": "2.3|3.0"
  7309. },
  7310. "require-dev": {
  7311. "nikic/php-parser": "^4.18|^5.0",
  7312. "psr/log": "^1|^2|^3",
  7313. "symfony/config": "^5.4|^6.0|^7.0",
  7314. "symfony/console": "^5.4|^6.0|^7.0",
  7315. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7316. "symfony/finder": "^5.4|^6.0|^7.0",
  7317. "symfony/http-client-contracts": "^2.5|^3.0",
  7318. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7319. "symfony/intl": "^5.4|^6.0|^7.0",
  7320. "symfony/polyfill-intl-icu": "^1.21",
  7321. "symfony/routing": "^5.4|^6.0|^7.0",
  7322. "symfony/service-contracts": "^2.5|^3",
  7323. "symfony/yaml": "^5.4|^6.0|^7.0"
  7324. },
  7325. "type": "library",
  7326. "autoload": {
  7327. "files": [
  7328. "Resources/functions.php"
  7329. ],
  7330. "psr-4": {
  7331. "Symfony\\Component\\Translation\\": ""
  7332. },
  7333. "exclude-from-classmap": [
  7334. "/Tests/"
  7335. ]
  7336. },
  7337. "notification-url": "https://packagist.org/downloads/",
  7338. "license": [
  7339. "MIT"
  7340. ],
  7341. "authors": [
  7342. {
  7343. "name": "Fabien Potencier",
  7344. "email": "fabien@symfony.com"
  7345. },
  7346. {
  7347. "name": "Symfony Community",
  7348. "homepage": "https://symfony.com/contributors"
  7349. }
  7350. ],
  7351. "description": "Provides tools to internationalize your application",
  7352. "homepage": "https://symfony.com",
  7353. "support": {
  7354. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7355. },
  7356. "funding": [
  7357. {
  7358. "url": "https://symfony.com/sponsor",
  7359. "type": "custom"
  7360. },
  7361. {
  7362. "url": "https://github.com/fabpot",
  7363. "type": "github"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2024-05-31T14:49:08+00:00"
  7371. },
  7372. {
  7373. "name": "symfony/translation-contracts",
  7374. "version": "v3.5.0",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/symfony/translation-contracts.git",
  7378. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7383. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7384. "shasum": ""
  7385. },
  7386. "require": {
  7387. "php": ">=8.1"
  7388. },
  7389. "type": "library",
  7390. "extra": {
  7391. "branch-alias": {
  7392. "dev-main": "3.5-dev"
  7393. },
  7394. "thanks": {
  7395. "name": "symfony/contracts",
  7396. "url": "https://github.com/symfony/contracts"
  7397. }
  7398. },
  7399. "autoload": {
  7400. "psr-4": {
  7401. "Symfony\\Contracts\\Translation\\": ""
  7402. },
  7403. "exclude-from-classmap": [
  7404. "/Test/"
  7405. ]
  7406. },
  7407. "notification-url": "https://packagist.org/downloads/",
  7408. "license": [
  7409. "MIT"
  7410. ],
  7411. "authors": [
  7412. {
  7413. "name": "Nicolas Grekas",
  7414. "email": "p@tchwork.com"
  7415. },
  7416. {
  7417. "name": "Symfony Community",
  7418. "homepage": "https://symfony.com/contributors"
  7419. }
  7420. ],
  7421. "description": "Generic abstractions related to translation",
  7422. "homepage": "https://symfony.com",
  7423. "keywords": [
  7424. "abstractions",
  7425. "contracts",
  7426. "decoupling",
  7427. "interfaces",
  7428. "interoperability",
  7429. "standards"
  7430. ],
  7431. "support": {
  7432. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7433. },
  7434. "funding": [
  7435. {
  7436. "url": "https://symfony.com/sponsor",
  7437. "type": "custom"
  7438. },
  7439. {
  7440. "url": "https://github.com/fabpot",
  7441. "type": "github"
  7442. },
  7443. {
  7444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7445. "type": "tidelift"
  7446. }
  7447. ],
  7448. "time": "2024-04-18T09:32:20+00:00"
  7449. },
  7450. {
  7451. "name": "vlucas/phpdotenv",
  7452. "version": "v5.6.0",
  7453. "source": {
  7454. "type": "git",
  7455. "url": "https://github.com/vlucas/phpdotenv.git",
  7456. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7457. },
  7458. "dist": {
  7459. "type": "zip",
  7460. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7461. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7462. "shasum": ""
  7463. },
  7464. "require": {
  7465. "ext-pcre": "*",
  7466. "graham-campbell/result-type": "^1.1.2",
  7467. "php": "^7.2.5 || ^8.0",
  7468. "phpoption/phpoption": "^1.9.2",
  7469. "symfony/polyfill-ctype": "^1.24",
  7470. "symfony/polyfill-mbstring": "^1.24",
  7471. "symfony/polyfill-php80": "^1.24"
  7472. },
  7473. "require-dev": {
  7474. "bamarni/composer-bin-plugin": "^1.8.2",
  7475. "ext-filter": "*",
  7476. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7477. },
  7478. "suggest": {
  7479. "ext-filter": "Required to use the boolean validator."
  7480. },
  7481. "type": "library",
  7482. "extra": {
  7483. "bamarni-bin": {
  7484. "bin-links": true,
  7485. "forward-command": true
  7486. },
  7487. "branch-alias": {
  7488. "dev-master": "5.6-dev"
  7489. }
  7490. },
  7491. "autoload": {
  7492. "psr-4": {
  7493. "Dotenv\\": "src/"
  7494. }
  7495. },
  7496. "notification-url": "https://packagist.org/downloads/",
  7497. "license": [
  7498. "BSD-3-Clause"
  7499. ],
  7500. "authors": [
  7501. {
  7502. "name": "Graham Campbell",
  7503. "email": "hello@gjcampbell.co.uk",
  7504. "homepage": "https://github.com/GrahamCampbell"
  7505. },
  7506. {
  7507. "name": "Vance Lucas",
  7508. "email": "vance@vancelucas.com",
  7509. "homepage": "https://github.com/vlucas"
  7510. }
  7511. ],
  7512. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7513. "keywords": [
  7514. "dotenv",
  7515. "env",
  7516. "environment"
  7517. ],
  7518. "support": {
  7519. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7520. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7521. },
  7522. "funding": [
  7523. {
  7524. "url": "https://github.com/GrahamCampbell",
  7525. "type": "github"
  7526. },
  7527. {
  7528. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7529. "type": "tidelift"
  7530. }
  7531. ],
  7532. "time": "2023-11-12T22:43:29+00:00"
  7533. }
  7534. ],
  7535. "packages-dev": [
  7536. {
  7537. "name": "clue/ndjson-react",
  7538. "version": "v1.3.0",
  7539. "source": {
  7540. "type": "git",
  7541. "url": "https://github.com/clue/reactphp-ndjson.git",
  7542. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7543. },
  7544. "dist": {
  7545. "type": "zip",
  7546. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7547. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7548. "shasum": ""
  7549. },
  7550. "require": {
  7551. "php": ">=5.3",
  7552. "react/stream": "^1.2"
  7553. },
  7554. "require-dev": {
  7555. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7556. "react/event-loop": "^1.2"
  7557. },
  7558. "type": "library",
  7559. "autoload": {
  7560. "psr-4": {
  7561. "Clue\\React\\NDJson\\": "src/"
  7562. }
  7563. },
  7564. "notification-url": "https://packagist.org/downloads/",
  7565. "license": [
  7566. "MIT"
  7567. ],
  7568. "authors": [
  7569. {
  7570. "name": "Christian Lück",
  7571. "email": "christian@clue.engineering"
  7572. }
  7573. ],
  7574. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7575. "homepage": "https://github.com/clue/reactphp-ndjson",
  7576. "keywords": [
  7577. "NDJSON",
  7578. "json",
  7579. "jsonlines",
  7580. "newline",
  7581. "reactphp",
  7582. "streaming"
  7583. ],
  7584. "support": {
  7585. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7586. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7587. },
  7588. "funding": [
  7589. {
  7590. "url": "https://clue.engineering/support",
  7591. "type": "custom"
  7592. },
  7593. {
  7594. "url": "https://github.com/clue",
  7595. "type": "github"
  7596. }
  7597. ],
  7598. "time": "2022-12-23T10:58:28+00:00"
  7599. },
  7600. {
  7601. "name": "composer/pcre",
  7602. "version": "3.1.4",
  7603. "source": {
  7604. "type": "git",
  7605. "url": "https://github.com/composer/pcre.git",
  7606. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7607. },
  7608. "dist": {
  7609. "type": "zip",
  7610. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7611. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7612. "shasum": ""
  7613. },
  7614. "require": {
  7615. "php": "^7.4 || ^8.0"
  7616. },
  7617. "require-dev": {
  7618. "phpstan/phpstan": "^1.3",
  7619. "phpstan/phpstan-strict-rules": "^1.1",
  7620. "symfony/phpunit-bridge": "^5"
  7621. },
  7622. "type": "library",
  7623. "extra": {
  7624. "branch-alias": {
  7625. "dev-main": "3.x-dev"
  7626. }
  7627. },
  7628. "autoload": {
  7629. "psr-4": {
  7630. "Composer\\Pcre\\": "src"
  7631. }
  7632. },
  7633. "notification-url": "https://packagist.org/downloads/",
  7634. "license": [
  7635. "MIT"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Jordi Boggiano",
  7640. "email": "j.boggiano@seld.be",
  7641. "homepage": "http://seld.be"
  7642. }
  7643. ],
  7644. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7645. "keywords": [
  7646. "PCRE",
  7647. "preg",
  7648. "regex",
  7649. "regular expression"
  7650. ],
  7651. "support": {
  7652. "issues": "https://github.com/composer/pcre/issues",
  7653. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7654. },
  7655. "funding": [
  7656. {
  7657. "url": "https://packagist.com",
  7658. "type": "custom"
  7659. },
  7660. {
  7661. "url": "https://github.com/composer",
  7662. "type": "github"
  7663. },
  7664. {
  7665. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7666. "type": "tidelift"
  7667. }
  7668. ],
  7669. "time": "2024-05-27T13:40:54+00:00"
  7670. },
  7671. {
  7672. "name": "composer/semver",
  7673. "version": "3.4.0",
  7674. "source": {
  7675. "type": "git",
  7676. "url": "https://github.com/composer/semver.git",
  7677. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7678. },
  7679. "dist": {
  7680. "type": "zip",
  7681. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7682. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7683. "shasum": ""
  7684. },
  7685. "require": {
  7686. "php": "^5.3.2 || ^7.0 || ^8.0"
  7687. },
  7688. "require-dev": {
  7689. "phpstan/phpstan": "^1.4",
  7690. "symfony/phpunit-bridge": "^4.2 || ^5"
  7691. },
  7692. "type": "library",
  7693. "extra": {
  7694. "branch-alias": {
  7695. "dev-main": "3.x-dev"
  7696. }
  7697. },
  7698. "autoload": {
  7699. "psr-4": {
  7700. "Composer\\Semver\\": "src"
  7701. }
  7702. },
  7703. "notification-url": "https://packagist.org/downloads/",
  7704. "license": [
  7705. "MIT"
  7706. ],
  7707. "authors": [
  7708. {
  7709. "name": "Nils Adermann",
  7710. "email": "naderman@naderman.de",
  7711. "homepage": "http://www.naderman.de"
  7712. },
  7713. {
  7714. "name": "Jordi Boggiano",
  7715. "email": "j.boggiano@seld.be",
  7716. "homepage": "http://seld.be"
  7717. },
  7718. {
  7719. "name": "Rob Bast",
  7720. "email": "rob.bast@gmail.com",
  7721. "homepage": "http://robbast.nl"
  7722. }
  7723. ],
  7724. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7725. "keywords": [
  7726. "semantic",
  7727. "semver",
  7728. "validation",
  7729. "versioning"
  7730. ],
  7731. "support": {
  7732. "irc": "ircs://irc.libera.chat:6697/composer",
  7733. "issues": "https://github.com/composer/semver/issues",
  7734. "source": "https://github.com/composer/semver/tree/3.4.0"
  7735. },
  7736. "funding": [
  7737. {
  7738. "url": "https://packagist.com",
  7739. "type": "custom"
  7740. },
  7741. {
  7742. "url": "https://github.com/composer",
  7743. "type": "github"
  7744. },
  7745. {
  7746. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7747. "type": "tidelift"
  7748. }
  7749. ],
  7750. "time": "2023-08-31T09:50:34+00:00"
  7751. },
  7752. {
  7753. "name": "composer/xdebug-handler",
  7754. "version": "3.0.5",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/composer/xdebug-handler.git",
  7758. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7763. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "composer/pcre": "^1 || ^2 || ^3",
  7768. "php": "^7.2.5 || ^8.0",
  7769. "psr/log": "^1 || ^2 || ^3"
  7770. },
  7771. "require-dev": {
  7772. "phpstan/phpstan": "^1.0",
  7773. "phpstan/phpstan-strict-rules": "^1.1",
  7774. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7775. },
  7776. "type": "library",
  7777. "autoload": {
  7778. "psr-4": {
  7779. "Composer\\XdebugHandler\\": "src"
  7780. }
  7781. },
  7782. "notification-url": "https://packagist.org/downloads/",
  7783. "license": [
  7784. "MIT"
  7785. ],
  7786. "authors": [
  7787. {
  7788. "name": "John Stevenson",
  7789. "email": "john-stevenson@blueyonder.co.uk"
  7790. }
  7791. ],
  7792. "description": "Restarts a process without Xdebug.",
  7793. "keywords": [
  7794. "Xdebug",
  7795. "performance"
  7796. ],
  7797. "support": {
  7798. "irc": "ircs://irc.libera.chat:6697/composer",
  7799. "issues": "https://github.com/composer/xdebug-handler/issues",
  7800. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7801. },
  7802. "funding": [
  7803. {
  7804. "url": "https://packagist.com",
  7805. "type": "custom"
  7806. },
  7807. {
  7808. "url": "https://github.com/composer",
  7809. "type": "github"
  7810. },
  7811. {
  7812. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7813. "type": "tidelift"
  7814. }
  7815. ],
  7816. "time": "2024-05-06T16:37:16+00:00"
  7817. },
  7818. {
  7819. "name": "evenement/evenement",
  7820. "version": "v3.0.2",
  7821. "source": {
  7822. "type": "git",
  7823. "url": "https://github.com/igorw/evenement.git",
  7824. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7825. },
  7826. "dist": {
  7827. "type": "zip",
  7828. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7829. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7830. "shasum": ""
  7831. },
  7832. "require": {
  7833. "php": ">=7.0"
  7834. },
  7835. "require-dev": {
  7836. "phpunit/phpunit": "^9 || ^6"
  7837. },
  7838. "type": "library",
  7839. "autoload": {
  7840. "psr-4": {
  7841. "Evenement\\": "src/"
  7842. }
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "MIT"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Igor Wiedler",
  7851. "email": "igor@wiedler.ch"
  7852. }
  7853. ],
  7854. "description": "Événement is a very simple event dispatching library for PHP",
  7855. "keywords": [
  7856. "event-dispatcher",
  7857. "event-emitter"
  7858. ],
  7859. "support": {
  7860. "issues": "https://github.com/igorw/evenement/issues",
  7861. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7862. },
  7863. "time": "2023-08-08T05:53:35+00:00"
  7864. },
  7865. {
  7866. "name": "fidry/cpu-core-counter",
  7867. "version": "1.1.0",
  7868. "source": {
  7869. "type": "git",
  7870. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7871. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7872. },
  7873. "dist": {
  7874. "type": "zip",
  7875. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7876. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7877. "shasum": ""
  7878. },
  7879. "require": {
  7880. "php": "^7.2 || ^8.0"
  7881. },
  7882. "require-dev": {
  7883. "fidry/makefile": "^0.2.0",
  7884. "fidry/php-cs-fixer-config": "^1.1.2",
  7885. "phpstan/extension-installer": "^1.2.0",
  7886. "phpstan/phpstan": "^1.9.2",
  7887. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7888. "phpstan/phpstan-phpunit": "^1.2.2",
  7889. "phpstan/phpstan-strict-rules": "^1.4.4",
  7890. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7891. "webmozarts/strict-phpunit": "^7.5"
  7892. },
  7893. "type": "library",
  7894. "autoload": {
  7895. "psr-4": {
  7896. "Fidry\\CpuCoreCounter\\": "src/"
  7897. }
  7898. },
  7899. "notification-url": "https://packagist.org/downloads/",
  7900. "license": [
  7901. "MIT"
  7902. ],
  7903. "authors": [
  7904. {
  7905. "name": "Théo FIDRY",
  7906. "email": "theo.fidry@gmail.com"
  7907. }
  7908. ],
  7909. "description": "Tiny utility to get the number of CPU cores.",
  7910. "keywords": [
  7911. "CPU",
  7912. "core"
  7913. ],
  7914. "support": {
  7915. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7916. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7917. },
  7918. "funding": [
  7919. {
  7920. "url": "https://github.com/theofidry",
  7921. "type": "github"
  7922. }
  7923. ],
  7924. "time": "2024-02-07T09:43:46+00:00"
  7925. },
  7926. {
  7927. "name": "friendsofphp/php-cs-fixer",
  7928. "version": "v3.58.1",
  7929. "source": {
  7930. "type": "git",
  7931. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7932. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7933. },
  7934. "dist": {
  7935. "type": "zip",
  7936. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7937. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7938. "shasum": ""
  7939. },
  7940. "require": {
  7941. "clue/ndjson-react": "^1.0",
  7942. "composer/semver": "^3.4",
  7943. "composer/xdebug-handler": "^3.0.3",
  7944. "ext-filter": "*",
  7945. "ext-json": "*",
  7946. "ext-tokenizer": "*",
  7947. "fidry/cpu-core-counter": "^1.0",
  7948. "php": "^7.4 || ^8.0",
  7949. "react/child-process": "^0.6.5",
  7950. "react/event-loop": "^1.0",
  7951. "react/promise": "^2.0 || ^3.0",
  7952. "react/socket": "^1.0",
  7953. "react/stream": "^1.0",
  7954. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7955. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7956. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7957. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7958. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7959. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7960. "symfony/polyfill-mbstring": "^1.28",
  7961. "symfony/polyfill-php80": "^1.28",
  7962. "symfony/polyfill-php81": "^1.28",
  7963. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7964. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7965. },
  7966. "require-dev": {
  7967. "facile-it/paraunit": "^1.3 || ^2.0",
  7968. "infection/infection": "^0.27.11",
  7969. "justinrainbow/json-schema": "^5.2",
  7970. "keradus/cli-executor": "^2.1",
  7971. "mikey179/vfsstream": "^1.6.11",
  7972. "php-coveralls/php-coveralls": "^2.7",
  7973. "php-cs-fixer/accessible-object": "^1.1",
  7974. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7975. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7976. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7977. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7978. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7979. },
  7980. "suggest": {
  7981. "ext-dom": "For handling output formats in XML",
  7982. "ext-mbstring": "For handling non-UTF8 characters."
  7983. },
  7984. "bin": [
  7985. "php-cs-fixer"
  7986. ],
  7987. "type": "application",
  7988. "autoload": {
  7989. "psr-4": {
  7990. "PhpCsFixer\\": "src/"
  7991. }
  7992. },
  7993. "notification-url": "https://packagist.org/downloads/",
  7994. "license": [
  7995. "MIT"
  7996. ],
  7997. "authors": [
  7998. {
  7999. "name": "Fabien Potencier",
  8000. "email": "fabien@symfony.com"
  8001. },
  8002. {
  8003. "name": "Dariusz Rumiński",
  8004. "email": "dariusz.ruminski@gmail.com"
  8005. }
  8006. ],
  8007. "description": "A tool to automatically fix PHP code style",
  8008. "keywords": [
  8009. "Static code analysis",
  8010. "fixer",
  8011. "standards",
  8012. "static analysis"
  8013. ],
  8014. "support": {
  8015. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8016. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  8017. },
  8018. "funding": [
  8019. {
  8020. "url": "https://github.com/keradus",
  8021. "type": "github"
  8022. }
  8023. ],
  8024. "time": "2024-05-29T16:39:07+00:00"
  8025. },
  8026. {
  8027. "name": "hamcrest/hamcrest-php",
  8028. "version": "v2.0.1",
  8029. "source": {
  8030. "type": "git",
  8031. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8032. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8033. },
  8034. "dist": {
  8035. "type": "zip",
  8036. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8037. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8038. "shasum": ""
  8039. },
  8040. "require": {
  8041. "php": "^5.3|^7.0|^8.0"
  8042. },
  8043. "replace": {
  8044. "cordoval/hamcrest-php": "*",
  8045. "davedevelopment/hamcrest-php": "*",
  8046. "kodova/hamcrest-php": "*"
  8047. },
  8048. "require-dev": {
  8049. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8050. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8051. },
  8052. "type": "library",
  8053. "extra": {
  8054. "branch-alias": {
  8055. "dev-master": "2.1-dev"
  8056. }
  8057. },
  8058. "autoload": {
  8059. "classmap": [
  8060. "hamcrest"
  8061. ]
  8062. },
  8063. "notification-url": "https://packagist.org/downloads/",
  8064. "license": [
  8065. "BSD-3-Clause"
  8066. ],
  8067. "description": "This is the PHP port of Hamcrest Matchers",
  8068. "keywords": [
  8069. "test"
  8070. ],
  8071. "support": {
  8072. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8073. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8074. },
  8075. "time": "2020-07-09T08:09:16+00:00"
  8076. },
  8077. {
  8078. "name": "hyperf/devtool",
  8079. "version": "v3.1.19",
  8080. "source": {
  8081. "type": "git",
  8082. "url": "https://github.com/hyperf/devtool.git",
  8083. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  8084. },
  8085. "dist": {
  8086. "type": "zip",
  8087. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8088. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8089. "shasum": ""
  8090. },
  8091. "require": {
  8092. "hyperf/code-parser": "~3.1.0",
  8093. "hyperf/command": "~3.1.0",
  8094. "hyperf/contract": "~3.1.0",
  8095. "hyperf/di": "~3.1.0",
  8096. "hyperf/support": "~3.1.0",
  8097. "hyperf/utils": "~3.1.0",
  8098. "php": ">=8.1"
  8099. },
  8100. "type": "library",
  8101. "extra": {
  8102. "branch-alias": {
  8103. "dev-master": "3.1-dev"
  8104. },
  8105. "hyperf": {
  8106. "config": "Hyperf\\Devtool\\ConfigProvider"
  8107. }
  8108. },
  8109. "autoload": {
  8110. "psr-4": {
  8111. "Hyperf\\Devtool\\": "src/"
  8112. }
  8113. },
  8114. "notification-url": "https://packagist.org/downloads/",
  8115. "license": [
  8116. "MIT"
  8117. ],
  8118. "description": "A Devtool for Hyperf.",
  8119. "homepage": "https://hyperf.io",
  8120. "keywords": [
  8121. "dev",
  8122. "devtool",
  8123. "hyperf",
  8124. "php",
  8125. "swoole"
  8126. ],
  8127. "support": {
  8128. "docs": "https://hyperf.wiki",
  8129. "issues": "https://github.com/hyperf/hyperf/issues",
  8130. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8131. "source": "https://github.com/hyperf/hyperf"
  8132. },
  8133. "funding": [
  8134. {
  8135. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8136. "type": "custom"
  8137. },
  8138. {
  8139. "url": "https://opencollective.com/hyperf",
  8140. "type": "open_collective"
  8141. }
  8142. ],
  8143. "time": "2024-04-13T06:53:08+00:00"
  8144. },
  8145. {
  8146. "name": "hyperf/testing",
  8147. "version": "v3.1.21",
  8148. "source": {
  8149. "type": "git",
  8150. "url": "https://github.com/hyperf/testing.git",
  8151. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  8152. },
  8153. "dist": {
  8154. "type": "zip",
  8155. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8156. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8157. "shasum": ""
  8158. },
  8159. "require": {
  8160. "hyperf/codec": "~3.1.0",
  8161. "hyperf/collection": "~3.1.0",
  8162. "hyperf/contract": "~3.1.0",
  8163. "hyperf/coroutine": "~3.1.0",
  8164. "hyperf/http-message": "~3.1.0",
  8165. "hyperf/http-server": "~3.1.0",
  8166. "hyperf/support": "~3.1.0",
  8167. "hyperf/utils": "~3.1.0",
  8168. "php": ">=8.1",
  8169. "phpunit/phpunit": "^10.0",
  8170. "psr/container": "^1.0|^2.0",
  8171. "symfony/http-foundation": "^5.4|^6.0"
  8172. },
  8173. "suggest": {
  8174. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8175. },
  8176. "bin": [
  8177. "co-phpunit"
  8178. ],
  8179. "type": "library",
  8180. "extra": {
  8181. "branch-alias": {
  8182. "dev-master": "3.1-dev"
  8183. }
  8184. },
  8185. "autoload": {
  8186. "psr-4": {
  8187. "Hyperf\\Testing\\": "src/"
  8188. }
  8189. },
  8190. "notification-url": "https://packagist.org/downloads/",
  8191. "license": [
  8192. "MIT"
  8193. ],
  8194. "description": "Testing for hyperf",
  8195. "keywords": [
  8196. "dev",
  8197. "php",
  8198. "swoole",
  8199. "testing"
  8200. ],
  8201. "support": {
  8202. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  8203. },
  8204. "funding": [
  8205. {
  8206. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8207. "type": "custom"
  8208. },
  8209. {
  8210. "url": "https://opencollective.com/hyperf",
  8211. "type": "open_collective"
  8212. }
  8213. ],
  8214. "time": "2024-05-07T05:34:51+00:00"
  8215. },
  8216. {
  8217. "name": "hyperf/watcher",
  8218. "version": "v3.1.21",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/hyperf/watcher.git",
  8222. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8227. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8228. "shasum": ""
  8229. },
  8230. "require": {
  8231. "ext-posix": "*",
  8232. "hyperf/codec": "~3.1.0",
  8233. "hyperf/command": "~3.1.0",
  8234. "hyperf/di": "~3.1.0",
  8235. "hyperf/framework": "~3.1.0",
  8236. "hyperf/support": "~3.1.0",
  8237. "php": ">=8.1"
  8238. },
  8239. "type": "library",
  8240. "extra": {
  8241. "branch-alias": {
  8242. "dev-master": "3.1-dev"
  8243. },
  8244. "hyperf": {
  8245. "config": "Hyperf\\Watcher\\ConfigProvider"
  8246. }
  8247. },
  8248. "autoload": {
  8249. "files": [
  8250. "src/Functions.php"
  8251. ],
  8252. "psr-4": {
  8253. "Hyperf\\Watcher\\": "src/"
  8254. }
  8255. },
  8256. "notification-url": "https://packagist.org/downloads/",
  8257. "license": [
  8258. "MIT"
  8259. ],
  8260. "description": "Hot reload watcher for Hyperf",
  8261. "keywords": [
  8262. "dev",
  8263. "hyperf",
  8264. "php"
  8265. ],
  8266. "support": {
  8267. "issues": "https://github.com/hyperf/watcher/issues",
  8268. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  8269. },
  8270. "funding": [
  8271. {
  8272. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8273. "type": "custom"
  8274. },
  8275. {
  8276. "url": "https://opencollective.com/hyperf",
  8277. "type": "open_collective"
  8278. }
  8279. ],
  8280. "time": "2024-05-09T13:40:44+00:00"
  8281. },
  8282. {
  8283. "name": "mockery/mockery",
  8284. "version": "1.6.12",
  8285. "source": {
  8286. "type": "git",
  8287. "url": "https://github.com/mockery/mockery.git",
  8288. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8289. },
  8290. "dist": {
  8291. "type": "zip",
  8292. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8293. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8294. "shasum": ""
  8295. },
  8296. "require": {
  8297. "hamcrest/hamcrest-php": "^2.0.1",
  8298. "lib-pcre": ">=7.0",
  8299. "php": ">=7.3"
  8300. },
  8301. "conflict": {
  8302. "phpunit/phpunit": "<8.0"
  8303. },
  8304. "require-dev": {
  8305. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8306. "symplify/easy-coding-standard": "^12.1.14"
  8307. },
  8308. "type": "library",
  8309. "autoload": {
  8310. "files": [
  8311. "library/helpers.php",
  8312. "library/Mockery.php"
  8313. ],
  8314. "psr-4": {
  8315. "Mockery\\": "library/Mockery"
  8316. }
  8317. },
  8318. "notification-url": "https://packagist.org/downloads/",
  8319. "license": [
  8320. "BSD-3-Clause"
  8321. ],
  8322. "authors": [
  8323. {
  8324. "name": "Pádraic Brady",
  8325. "email": "padraic.brady@gmail.com",
  8326. "homepage": "https://github.com/padraic",
  8327. "role": "Author"
  8328. },
  8329. {
  8330. "name": "Dave Marshall",
  8331. "email": "dave.marshall@atstsolutions.co.uk",
  8332. "homepage": "https://davedevelopment.co.uk",
  8333. "role": "Developer"
  8334. },
  8335. {
  8336. "name": "Nathanael Esayeas",
  8337. "email": "nathanael.esayeas@protonmail.com",
  8338. "homepage": "https://github.com/ghostwriter",
  8339. "role": "Lead Developer"
  8340. }
  8341. ],
  8342. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8343. "homepage": "https://github.com/mockery/mockery",
  8344. "keywords": [
  8345. "BDD",
  8346. "TDD",
  8347. "library",
  8348. "mock",
  8349. "mock objects",
  8350. "mockery",
  8351. "stub",
  8352. "test",
  8353. "test double",
  8354. "testing"
  8355. ],
  8356. "support": {
  8357. "docs": "https://docs.mockery.io/",
  8358. "issues": "https://github.com/mockery/mockery/issues",
  8359. "rss": "https://github.com/mockery/mockery/releases.atom",
  8360. "security": "https://github.com/mockery/mockery/security/advisories",
  8361. "source": "https://github.com/mockery/mockery"
  8362. },
  8363. "time": "2024-05-16T03:13:13+00:00"
  8364. },
  8365. {
  8366. "name": "myclabs/deep-copy",
  8367. "version": "1.11.1",
  8368. "source": {
  8369. "type": "git",
  8370. "url": "https://github.com/myclabs/DeepCopy.git",
  8371. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8372. },
  8373. "dist": {
  8374. "type": "zip",
  8375. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8376. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8377. "shasum": ""
  8378. },
  8379. "require": {
  8380. "php": "^7.1 || ^8.0"
  8381. },
  8382. "conflict": {
  8383. "doctrine/collections": "<1.6.8",
  8384. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8385. },
  8386. "require-dev": {
  8387. "doctrine/collections": "^1.6.8",
  8388. "doctrine/common": "^2.13.3 || ^3.2.2",
  8389. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8390. },
  8391. "type": "library",
  8392. "autoload": {
  8393. "files": [
  8394. "src/DeepCopy/deep_copy.php"
  8395. ],
  8396. "psr-4": {
  8397. "DeepCopy\\": "src/DeepCopy/"
  8398. }
  8399. },
  8400. "notification-url": "https://packagist.org/downloads/",
  8401. "license": [
  8402. "MIT"
  8403. ],
  8404. "description": "Create deep copies (clones) of your objects",
  8405. "keywords": [
  8406. "clone",
  8407. "copy",
  8408. "duplicate",
  8409. "object",
  8410. "object graph"
  8411. ],
  8412. "support": {
  8413. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8414. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8415. },
  8416. "funding": [
  8417. {
  8418. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8419. "type": "tidelift"
  8420. }
  8421. ],
  8422. "time": "2023-03-08T13:26:56+00:00"
  8423. },
  8424. {
  8425. "name": "phar-io/manifest",
  8426. "version": "2.0.4",
  8427. "source": {
  8428. "type": "git",
  8429. "url": "https://github.com/phar-io/manifest.git",
  8430. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8431. },
  8432. "dist": {
  8433. "type": "zip",
  8434. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8435. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8436. "shasum": ""
  8437. },
  8438. "require": {
  8439. "ext-dom": "*",
  8440. "ext-libxml": "*",
  8441. "ext-phar": "*",
  8442. "ext-xmlwriter": "*",
  8443. "phar-io/version": "^3.0.1",
  8444. "php": "^7.2 || ^8.0"
  8445. },
  8446. "type": "library",
  8447. "extra": {
  8448. "branch-alias": {
  8449. "dev-master": "2.0.x-dev"
  8450. }
  8451. },
  8452. "autoload": {
  8453. "classmap": [
  8454. "src/"
  8455. ]
  8456. },
  8457. "notification-url": "https://packagist.org/downloads/",
  8458. "license": [
  8459. "BSD-3-Clause"
  8460. ],
  8461. "authors": [
  8462. {
  8463. "name": "Arne Blankerts",
  8464. "email": "arne@blankerts.de",
  8465. "role": "Developer"
  8466. },
  8467. {
  8468. "name": "Sebastian Heuer",
  8469. "email": "sebastian@phpeople.de",
  8470. "role": "Developer"
  8471. },
  8472. {
  8473. "name": "Sebastian Bergmann",
  8474. "email": "sebastian@phpunit.de",
  8475. "role": "Developer"
  8476. }
  8477. ],
  8478. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8479. "support": {
  8480. "issues": "https://github.com/phar-io/manifest/issues",
  8481. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8482. },
  8483. "funding": [
  8484. {
  8485. "url": "https://github.com/theseer",
  8486. "type": "github"
  8487. }
  8488. ],
  8489. "time": "2024-03-03T12:33:53+00:00"
  8490. },
  8491. {
  8492. "name": "phar-io/version",
  8493. "version": "3.2.1",
  8494. "source": {
  8495. "type": "git",
  8496. "url": "https://github.com/phar-io/version.git",
  8497. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8498. },
  8499. "dist": {
  8500. "type": "zip",
  8501. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8502. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8503. "shasum": ""
  8504. },
  8505. "require": {
  8506. "php": "^7.2 || ^8.0"
  8507. },
  8508. "type": "library",
  8509. "autoload": {
  8510. "classmap": [
  8511. "src/"
  8512. ]
  8513. },
  8514. "notification-url": "https://packagist.org/downloads/",
  8515. "license": [
  8516. "BSD-3-Clause"
  8517. ],
  8518. "authors": [
  8519. {
  8520. "name": "Arne Blankerts",
  8521. "email": "arne@blankerts.de",
  8522. "role": "Developer"
  8523. },
  8524. {
  8525. "name": "Sebastian Heuer",
  8526. "email": "sebastian@phpeople.de",
  8527. "role": "Developer"
  8528. },
  8529. {
  8530. "name": "Sebastian Bergmann",
  8531. "email": "sebastian@phpunit.de",
  8532. "role": "Developer"
  8533. }
  8534. ],
  8535. "description": "Library for handling version information and constraints",
  8536. "support": {
  8537. "issues": "https://github.com/phar-io/version/issues",
  8538. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8539. },
  8540. "time": "2022-02-21T01:04:05+00:00"
  8541. },
  8542. {
  8543. "name": "phpstan/phpstan",
  8544. "version": "1.11.3",
  8545. "source": {
  8546. "type": "git",
  8547. "url": "https://github.com/phpstan/phpstan.git",
  8548. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  8549. },
  8550. "dist": {
  8551. "type": "zip",
  8552. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8553. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8554. "shasum": ""
  8555. },
  8556. "require": {
  8557. "php": "^7.2|^8.0"
  8558. },
  8559. "conflict": {
  8560. "phpstan/phpstan-shim": "*"
  8561. },
  8562. "bin": [
  8563. "phpstan",
  8564. "phpstan.phar"
  8565. ],
  8566. "type": "library",
  8567. "autoload": {
  8568. "files": [
  8569. "bootstrap.php"
  8570. ]
  8571. },
  8572. "notification-url": "https://packagist.org/downloads/",
  8573. "license": [
  8574. "MIT"
  8575. ],
  8576. "description": "PHPStan - PHP Static Analysis Tool",
  8577. "keywords": [
  8578. "dev",
  8579. "static analysis"
  8580. ],
  8581. "support": {
  8582. "docs": "https://phpstan.org/user-guide/getting-started",
  8583. "forum": "https://github.com/phpstan/phpstan/discussions",
  8584. "issues": "https://github.com/phpstan/phpstan/issues",
  8585. "security": "https://github.com/phpstan/phpstan/security/policy",
  8586. "source": "https://github.com/phpstan/phpstan-src"
  8587. },
  8588. "funding": [
  8589. {
  8590. "url": "https://github.com/ondrejmirtes",
  8591. "type": "github"
  8592. },
  8593. {
  8594. "url": "https://github.com/phpstan",
  8595. "type": "github"
  8596. }
  8597. ],
  8598. "time": "2024-05-31T13:53:37+00:00"
  8599. },
  8600. {
  8601. "name": "phpunit/php-code-coverage",
  8602. "version": "10.1.14",
  8603. "source": {
  8604. "type": "git",
  8605. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8606. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8607. },
  8608. "dist": {
  8609. "type": "zip",
  8610. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8611. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8612. "shasum": ""
  8613. },
  8614. "require": {
  8615. "ext-dom": "*",
  8616. "ext-libxml": "*",
  8617. "ext-xmlwriter": "*",
  8618. "nikic/php-parser": "^4.18 || ^5.0",
  8619. "php": ">=8.1",
  8620. "phpunit/php-file-iterator": "^4.0",
  8621. "phpunit/php-text-template": "^3.0",
  8622. "sebastian/code-unit-reverse-lookup": "^3.0",
  8623. "sebastian/complexity": "^3.0",
  8624. "sebastian/environment": "^6.0",
  8625. "sebastian/lines-of-code": "^2.0",
  8626. "sebastian/version": "^4.0",
  8627. "theseer/tokenizer": "^1.2.0"
  8628. },
  8629. "require-dev": {
  8630. "phpunit/phpunit": "^10.1"
  8631. },
  8632. "suggest": {
  8633. "ext-pcov": "PHP extension that provides line coverage",
  8634. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8635. },
  8636. "type": "library",
  8637. "extra": {
  8638. "branch-alias": {
  8639. "dev-main": "10.1-dev"
  8640. }
  8641. },
  8642. "autoload": {
  8643. "classmap": [
  8644. "src/"
  8645. ]
  8646. },
  8647. "notification-url": "https://packagist.org/downloads/",
  8648. "license": [
  8649. "BSD-3-Clause"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "Sebastian Bergmann",
  8654. "email": "sebastian@phpunit.de",
  8655. "role": "lead"
  8656. }
  8657. ],
  8658. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8659. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8660. "keywords": [
  8661. "coverage",
  8662. "testing",
  8663. "xunit"
  8664. ],
  8665. "support": {
  8666. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8667. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8668. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8669. },
  8670. "funding": [
  8671. {
  8672. "url": "https://github.com/sebastianbergmann",
  8673. "type": "github"
  8674. }
  8675. ],
  8676. "time": "2024-03-12T15:33:41+00:00"
  8677. },
  8678. {
  8679. "name": "phpunit/php-file-iterator",
  8680. "version": "4.1.0",
  8681. "source": {
  8682. "type": "git",
  8683. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8684. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8685. },
  8686. "dist": {
  8687. "type": "zip",
  8688. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8689. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8690. "shasum": ""
  8691. },
  8692. "require": {
  8693. "php": ">=8.1"
  8694. },
  8695. "require-dev": {
  8696. "phpunit/phpunit": "^10.0"
  8697. },
  8698. "type": "library",
  8699. "extra": {
  8700. "branch-alias": {
  8701. "dev-main": "4.0-dev"
  8702. }
  8703. },
  8704. "autoload": {
  8705. "classmap": [
  8706. "src/"
  8707. ]
  8708. },
  8709. "notification-url": "https://packagist.org/downloads/",
  8710. "license": [
  8711. "BSD-3-Clause"
  8712. ],
  8713. "authors": [
  8714. {
  8715. "name": "Sebastian Bergmann",
  8716. "email": "sebastian@phpunit.de",
  8717. "role": "lead"
  8718. }
  8719. ],
  8720. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8721. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8722. "keywords": [
  8723. "filesystem",
  8724. "iterator"
  8725. ],
  8726. "support": {
  8727. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8728. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8729. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8730. },
  8731. "funding": [
  8732. {
  8733. "url": "https://github.com/sebastianbergmann",
  8734. "type": "github"
  8735. }
  8736. ],
  8737. "time": "2023-08-31T06:24:48+00:00"
  8738. },
  8739. {
  8740. "name": "phpunit/php-invoker",
  8741. "version": "4.0.0",
  8742. "source": {
  8743. "type": "git",
  8744. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8745. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8746. },
  8747. "dist": {
  8748. "type": "zip",
  8749. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8750. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8751. "shasum": ""
  8752. },
  8753. "require": {
  8754. "php": ">=8.1"
  8755. },
  8756. "require-dev": {
  8757. "ext-pcntl": "*",
  8758. "phpunit/phpunit": "^10.0"
  8759. },
  8760. "suggest": {
  8761. "ext-pcntl": "*"
  8762. },
  8763. "type": "library",
  8764. "extra": {
  8765. "branch-alias": {
  8766. "dev-main": "4.0-dev"
  8767. }
  8768. },
  8769. "autoload": {
  8770. "classmap": [
  8771. "src/"
  8772. ]
  8773. },
  8774. "notification-url": "https://packagist.org/downloads/",
  8775. "license": [
  8776. "BSD-3-Clause"
  8777. ],
  8778. "authors": [
  8779. {
  8780. "name": "Sebastian Bergmann",
  8781. "email": "sebastian@phpunit.de",
  8782. "role": "lead"
  8783. }
  8784. ],
  8785. "description": "Invoke callables with a timeout",
  8786. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8787. "keywords": [
  8788. "process"
  8789. ],
  8790. "support": {
  8791. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8792. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8793. },
  8794. "funding": [
  8795. {
  8796. "url": "https://github.com/sebastianbergmann",
  8797. "type": "github"
  8798. }
  8799. ],
  8800. "time": "2023-02-03T06:56:09+00:00"
  8801. },
  8802. {
  8803. "name": "phpunit/php-text-template",
  8804. "version": "3.0.1",
  8805. "source": {
  8806. "type": "git",
  8807. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8808. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8809. },
  8810. "dist": {
  8811. "type": "zip",
  8812. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8813. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8814. "shasum": ""
  8815. },
  8816. "require": {
  8817. "php": ">=8.1"
  8818. },
  8819. "require-dev": {
  8820. "phpunit/phpunit": "^10.0"
  8821. },
  8822. "type": "library",
  8823. "extra": {
  8824. "branch-alias": {
  8825. "dev-main": "3.0-dev"
  8826. }
  8827. },
  8828. "autoload": {
  8829. "classmap": [
  8830. "src/"
  8831. ]
  8832. },
  8833. "notification-url": "https://packagist.org/downloads/",
  8834. "license": [
  8835. "BSD-3-Clause"
  8836. ],
  8837. "authors": [
  8838. {
  8839. "name": "Sebastian Bergmann",
  8840. "email": "sebastian@phpunit.de",
  8841. "role": "lead"
  8842. }
  8843. ],
  8844. "description": "Simple template engine.",
  8845. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8846. "keywords": [
  8847. "template"
  8848. ],
  8849. "support": {
  8850. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8851. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8852. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8853. },
  8854. "funding": [
  8855. {
  8856. "url": "https://github.com/sebastianbergmann",
  8857. "type": "github"
  8858. }
  8859. ],
  8860. "time": "2023-08-31T14:07:24+00:00"
  8861. },
  8862. {
  8863. "name": "phpunit/php-timer",
  8864. "version": "6.0.0",
  8865. "source": {
  8866. "type": "git",
  8867. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8868. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8869. },
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8873. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "php": ">=8.1"
  8878. },
  8879. "require-dev": {
  8880. "phpunit/phpunit": "^10.0"
  8881. },
  8882. "type": "library",
  8883. "extra": {
  8884. "branch-alias": {
  8885. "dev-main": "6.0-dev"
  8886. }
  8887. },
  8888. "autoload": {
  8889. "classmap": [
  8890. "src/"
  8891. ]
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "BSD-3-Clause"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Sebastian Bergmann",
  8900. "email": "sebastian@phpunit.de",
  8901. "role": "lead"
  8902. }
  8903. ],
  8904. "description": "Utility class for timing",
  8905. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8906. "keywords": [
  8907. "timer"
  8908. ],
  8909. "support": {
  8910. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8911. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8912. },
  8913. "funding": [
  8914. {
  8915. "url": "https://github.com/sebastianbergmann",
  8916. "type": "github"
  8917. }
  8918. ],
  8919. "time": "2023-02-03T06:57:52+00:00"
  8920. },
  8921. {
  8922. "name": "phpunit/phpunit",
  8923. "version": "10.5.20",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8927. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8932. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8933. "shasum": ""
  8934. },
  8935. "require": {
  8936. "ext-dom": "*",
  8937. "ext-json": "*",
  8938. "ext-libxml": "*",
  8939. "ext-mbstring": "*",
  8940. "ext-xml": "*",
  8941. "ext-xmlwriter": "*",
  8942. "myclabs/deep-copy": "^1.10.1",
  8943. "phar-io/manifest": "^2.0.3",
  8944. "phar-io/version": "^3.0.2",
  8945. "php": ">=8.1",
  8946. "phpunit/php-code-coverage": "^10.1.5",
  8947. "phpunit/php-file-iterator": "^4.0",
  8948. "phpunit/php-invoker": "^4.0",
  8949. "phpunit/php-text-template": "^3.0",
  8950. "phpunit/php-timer": "^6.0",
  8951. "sebastian/cli-parser": "^2.0",
  8952. "sebastian/code-unit": "^2.0",
  8953. "sebastian/comparator": "^5.0",
  8954. "sebastian/diff": "^5.0",
  8955. "sebastian/environment": "^6.0",
  8956. "sebastian/exporter": "^5.1",
  8957. "sebastian/global-state": "^6.0.1",
  8958. "sebastian/object-enumerator": "^5.0",
  8959. "sebastian/recursion-context": "^5.0",
  8960. "sebastian/type": "^4.0",
  8961. "sebastian/version": "^4.0"
  8962. },
  8963. "suggest": {
  8964. "ext-soap": "To be able to generate mocks based on WSDL files"
  8965. },
  8966. "bin": [
  8967. "phpunit"
  8968. ],
  8969. "type": "library",
  8970. "extra": {
  8971. "branch-alias": {
  8972. "dev-main": "10.5-dev"
  8973. }
  8974. },
  8975. "autoload": {
  8976. "files": [
  8977. "src/Framework/Assert/Functions.php"
  8978. ],
  8979. "classmap": [
  8980. "src/"
  8981. ]
  8982. },
  8983. "notification-url": "https://packagist.org/downloads/",
  8984. "license": [
  8985. "BSD-3-Clause"
  8986. ],
  8987. "authors": [
  8988. {
  8989. "name": "Sebastian Bergmann",
  8990. "email": "sebastian@phpunit.de",
  8991. "role": "lead"
  8992. }
  8993. ],
  8994. "description": "The PHP Unit Testing framework.",
  8995. "homepage": "https://phpunit.de/",
  8996. "keywords": [
  8997. "phpunit",
  8998. "testing",
  8999. "xunit"
  9000. ],
  9001. "support": {
  9002. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9003. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9004. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  9005. },
  9006. "funding": [
  9007. {
  9008. "url": "https://phpunit.de/sponsors.html",
  9009. "type": "custom"
  9010. },
  9011. {
  9012. "url": "https://github.com/sebastianbergmann",
  9013. "type": "github"
  9014. },
  9015. {
  9016. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9017. "type": "tidelift"
  9018. }
  9019. ],
  9020. "time": "2024-04-24T06:32:35+00:00"
  9021. },
  9022. {
  9023. "name": "react/cache",
  9024. "version": "v1.2.0",
  9025. "source": {
  9026. "type": "git",
  9027. "url": "https://github.com/reactphp/cache.git",
  9028. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9029. },
  9030. "dist": {
  9031. "type": "zip",
  9032. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9033. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9034. "shasum": ""
  9035. },
  9036. "require": {
  9037. "php": ">=5.3.0",
  9038. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9039. },
  9040. "require-dev": {
  9041. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9042. },
  9043. "type": "library",
  9044. "autoload": {
  9045. "psr-4": {
  9046. "React\\Cache\\": "src/"
  9047. }
  9048. },
  9049. "notification-url": "https://packagist.org/downloads/",
  9050. "license": [
  9051. "MIT"
  9052. ],
  9053. "authors": [
  9054. {
  9055. "name": "Christian Lück",
  9056. "email": "christian@clue.engineering",
  9057. "homepage": "https://clue.engineering/"
  9058. },
  9059. {
  9060. "name": "Cees-Jan Kiewiet",
  9061. "email": "reactphp@ceesjankiewiet.nl",
  9062. "homepage": "https://wyrihaximus.net/"
  9063. },
  9064. {
  9065. "name": "Jan Sorgalla",
  9066. "email": "jsorgalla@gmail.com",
  9067. "homepage": "https://sorgalla.com/"
  9068. },
  9069. {
  9070. "name": "Chris Boden",
  9071. "email": "cboden@gmail.com",
  9072. "homepage": "https://cboden.dev/"
  9073. }
  9074. ],
  9075. "description": "Async, Promise-based cache interface for ReactPHP",
  9076. "keywords": [
  9077. "cache",
  9078. "caching",
  9079. "promise",
  9080. "reactphp"
  9081. ],
  9082. "support": {
  9083. "issues": "https://github.com/reactphp/cache/issues",
  9084. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9085. },
  9086. "funding": [
  9087. {
  9088. "url": "https://opencollective.com/reactphp",
  9089. "type": "open_collective"
  9090. }
  9091. ],
  9092. "time": "2022-11-30T15:59:55+00:00"
  9093. },
  9094. {
  9095. "name": "react/child-process",
  9096. "version": "v0.6.5",
  9097. "source": {
  9098. "type": "git",
  9099. "url": "https://github.com/reactphp/child-process.git",
  9100. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9101. },
  9102. "dist": {
  9103. "type": "zip",
  9104. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9105. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9106. "shasum": ""
  9107. },
  9108. "require": {
  9109. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9110. "php": ">=5.3.0",
  9111. "react/event-loop": "^1.2",
  9112. "react/stream": "^1.2"
  9113. },
  9114. "require-dev": {
  9115. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9116. "react/socket": "^1.8",
  9117. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9118. },
  9119. "type": "library",
  9120. "autoload": {
  9121. "psr-4": {
  9122. "React\\ChildProcess\\": "src"
  9123. }
  9124. },
  9125. "notification-url": "https://packagist.org/downloads/",
  9126. "license": [
  9127. "MIT"
  9128. ],
  9129. "authors": [
  9130. {
  9131. "name": "Christian Lück",
  9132. "email": "christian@clue.engineering",
  9133. "homepage": "https://clue.engineering/"
  9134. },
  9135. {
  9136. "name": "Cees-Jan Kiewiet",
  9137. "email": "reactphp@ceesjankiewiet.nl",
  9138. "homepage": "https://wyrihaximus.net/"
  9139. },
  9140. {
  9141. "name": "Jan Sorgalla",
  9142. "email": "jsorgalla@gmail.com",
  9143. "homepage": "https://sorgalla.com/"
  9144. },
  9145. {
  9146. "name": "Chris Boden",
  9147. "email": "cboden@gmail.com",
  9148. "homepage": "https://cboden.dev/"
  9149. }
  9150. ],
  9151. "description": "Event-driven library for executing child processes with ReactPHP.",
  9152. "keywords": [
  9153. "event-driven",
  9154. "process",
  9155. "reactphp"
  9156. ],
  9157. "support": {
  9158. "issues": "https://github.com/reactphp/child-process/issues",
  9159. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9160. },
  9161. "funding": [
  9162. {
  9163. "url": "https://github.com/WyriHaximus",
  9164. "type": "github"
  9165. },
  9166. {
  9167. "url": "https://github.com/clue",
  9168. "type": "github"
  9169. }
  9170. ],
  9171. "time": "2022-09-16T13:41:56+00:00"
  9172. },
  9173. {
  9174. "name": "react/dns",
  9175. "version": "v1.12.0",
  9176. "source": {
  9177. "type": "git",
  9178. "url": "https://github.com/reactphp/dns.git",
  9179. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9180. },
  9181. "dist": {
  9182. "type": "zip",
  9183. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9184. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9185. "shasum": ""
  9186. },
  9187. "require": {
  9188. "php": ">=5.3.0",
  9189. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9190. "react/event-loop": "^1.2",
  9191. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9192. },
  9193. "require-dev": {
  9194. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9195. "react/async": "^4 || ^3 || ^2",
  9196. "react/promise-timer": "^1.9"
  9197. },
  9198. "type": "library",
  9199. "autoload": {
  9200. "psr-4": {
  9201. "React\\Dns\\": "src/"
  9202. }
  9203. },
  9204. "notification-url": "https://packagist.org/downloads/",
  9205. "license": [
  9206. "MIT"
  9207. ],
  9208. "authors": [
  9209. {
  9210. "name": "Christian Lück",
  9211. "email": "christian@clue.engineering",
  9212. "homepage": "https://clue.engineering/"
  9213. },
  9214. {
  9215. "name": "Cees-Jan Kiewiet",
  9216. "email": "reactphp@ceesjankiewiet.nl",
  9217. "homepage": "https://wyrihaximus.net/"
  9218. },
  9219. {
  9220. "name": "Jan Sorgalla",
  9221. "email": "jsorgalla@gmail.com",
  9222. "homepage": "https://sorgalla.com/"
  9223. },
  9224. {
  9225. "name": "Chris Boden",
  9226. "email": "cboden@gmail.com",
  9227. "homepage": "https://cboden.dev/"
  9228. }
  9229. ],
  9230. "description": "Async DNS resolver for ReactPHP",
  9231. "keywords": [
  9232. "async",
  9233. "dns",
  9234. "dns-resolver",
  9235. "reactphp"
  9236. ],
  9237. "support": {
  9238. "issues": "https://github.com/reactphp/dns/issues",
  9239. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://opencollective.com/reactphp",
  9244. "type": "open_collective"
  9245. }
  9246. ],
  9247. "time": "2023-11-29T12:41:06+00:00"
  9248. },
  9249. {
  9250. "name": "react/event-loop",
  9251. "version": "v1.5.0",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/reactphp/event-loop.git",
  9255. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9260. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "php": ">=5.3.0"
  9265. },
  9266. "require-dev": {
  9267. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9268. },
  9269. "suggest": {
  9270. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9271. },
  9272. "type": "library",
  9273. "autoload": {
  9274. "psr-4": {
  9275. "React\\EventLoop\\": "src/"
  9276. }
  9277. },
  9278. "notification-url": "https://packagist.org/downloads/",
  9279. "license": [
  9280. "MIT"
  9281. ],
  9282. "authors": [
  9283. {
  9284. "name": "Christian Lück",
  9285. "email": "christian@clue.engineering",
  9286. "homepage": "https://clue.engineering/"
  9287. },
  9288. {
  9289. "name": "Cees-Jan Kiewiet",
  9290. "email": "reactphp@ceesjankiewiet.nl",
  9291. "homepage": "https://wyrihaximus.net/"
  9292. },
  9293. {
  9294. "name": "Jan Sorgalla",
  9295. "email": "jsorgalla@gmail.com",
  9296. "homepage": "https://sorgalla.com/"
  9297. },
  9298. {
  9299. "name": "Chris Boden",
  9300. "email": "cboden@gmail.com",
  9301. "homepage": "https://cboden.dev/"
  9302. }
  9303. ],
  9304. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9305. "keywords": [
  9306. "asynchronous",
  9307. "event-loop"
  9308. ],
  9309. "support": {
  9310. "issues": "https://github.com/reactphp/event-loop/issues",
  9311. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9312. },
  9313. "funding": [
  9314. {
  9315. "url": "https://opencollective.com/reactphp",
  9316. "type": "open_collective"
  9317. }
  9318. ],
  9319. "time": "2023-11-13T13:48:05+00:00"
  9320. },
  9321. {
  9322. "name": "react/promise",
  9323. "version": "v3.2.0",
  9324. "source": {
  9325. "type": "git",
  9326. "url": "https://github.com/reactphp/promise.git",
  9327. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9328. },
  9329. "dist": {
  9330. "type": "zip",
  9331. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9332. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9333. "shasum": ""
  9334. },
  9335. "require": {
  9336. "php": ">=7.1.0"
  9337. },
  9338. "require-dev": {
  9339. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9340. "phpunit/phpunit": "^9.6 || ^7.5"
  9341. },
  9342. "type": "library",
  9343. "autoload": {
  9344. "files": [
  9345. "src/functions_include.php"
  9346. ],
  9347. "psr-4": {
  9348. "React\\Promise\\": "src/"
  9349. }
  9350. },
  9351. "notification-url": "https://packagist.org/downloads/",
  9352. "license": [
  9353. "MIT"
  9354. ],
  9355. "authors": [
  9356. {
  9357. "name": "Jan Sorgalla",
  9358. "email": "jsorgalla@gmail.com",
  9359. "homepage": "https://sorgalla.com/"
  9360. },
  9361. {
  9362. "name": "Christian Lück",
  9363. "email": "christian@clue.engineering",
  9364. "homepage": "https://clue.engineering/"
  9365. },
  9366. {
  9367. "name": "Cees-Jan Kiewiet",
  9368. "email": "reactphp@ceesjankiewiet.nl",
  9369. "homepage": "https://wyrihaximus.net/"
  9370. },
  9371. {
  9372. "name": "Chris Boden",
  9373. "email": "cboden@gmail.com",
  9374. "homepage": "https://cboden.dev/"
  9375. }
  9376. ],
  9377. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9378. "keywords": [
  9379. "promise",
  9380. "promises"
  9381. ],
  9382. "support": {
  9383. "issues": "https://github.com/reactphp/promise/issues",
  9384. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9385. },
  9386. "funding": [
  9387. {
  9388. "url": "https://opencollective.com/reactphp",
  9389. "type": "open_collective"
  9390. }
  9391. ],
  9392. "time": "2024-05-24T10:39:05+00:00"
  9393. },
  9394. {
  9395. "name": "react/socket",
  9396. "version": "v1.15.0",
  9397. "source": {
  9398. "type": "git",
  9399. "url": "https://github.com/reactphp/socket.git",
  9400. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9401. },
  9402. "dist": {
  9403. "type": "zip",
  9404. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9405. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9406. "shasum": ""
  9407. },
  9408. "require": {
  9409. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9410. "php": ">=5.3.0",
  9411. "react/dns": "^1.11",
  9412. "react/event-loop": "^1.2",
  9413. "react/promise": "^3 || ^2.6 || ^1.2.1",
  9414. "react/stream": "^1.2"
  9415. },
  9416. "require-dev": {
  9417. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9418. "react/async": "^4 || ^3 || ^2",
  9419. "react/promise-stream": "^1.4",
  9420. "react/promise-timer": "^1.10"
  9421. },
  9422. "type": "library",
  9423. "autoload": {
  9424. "psr-4": {
  9425. "React\\Socket\\": "src/"
  9426. }
  9427. },
  9428. "notification-url": "https://packagist.org/downloads/",
  9429. "license": [
  9430. "MIT"
  9431. ],
  9432. "authors": [
  9433. {
  9434. "name": "Christian Lück",
  9435. "email": "christian@clue.engineering",
  9436. "homepage": "https://clue.engineering/"
  9437. },
  9438. {
  9439. "name": "Cees-Jan Kiewiet",
  9440. "email": "reactphp@ceesjankiewiet.nl",
  9441. "homepage": "https://wyrihaximus.net/"
  9442. },
  9443. {
  9444. "name": "Jan Sorgalla",
  9445. "email": "jsorgalla@gmail.com",
  9446. "homepage": "https://sorgalla.com/"
  9447. },
  9448. {
  9449. "name": "Chris Boden",
  9450. "email": "cboden@gmail.com",
  9451. "homepage": "https://cboden.dev/"
  9452. }
  9453. ],
  9454. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9455. "keywords": [
  9456. "Connection",
  9457. "Socket",
  9458. "async",
  9459. "reactphp",
  9460. "stream"
  9461. ],
  9462. "support": {
  9463. "issues": "https://github.com/reactphp/socket/issues",
  9464. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9465. },
  9466. "funding": [
  9467. {
  9468. "url": "https://opencollective.com/reactphp",
  9469. "type": "open_collective"
  9470. }
  9471. ],
  9472. "time": "2023-12-15T11:02:10+00:00"
  9473. },
  9474. {
  9475. "name": "react/stream",
  9476. "version": "v1.3.0",
  9477. "source": {
  9478. "type": "git",
  9479. "url": "https://github.com/reactphp/stream.git",
  9480. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  9481. },
  9482. "dist": {
  9483. "type": "zip",
  9484. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9485. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9486. "shasum": ""
  9487. },
  9488. "require": {
  9489. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9490. "php": ">=5.3.8",
  9491. "react/event-loop": "^1.2"
  9492. },
  9493. "require-dev": {
  9494. "clue/stream-filter": "~1.2",
  9495. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9496. },
  9497. "type": "library",
  9498. "autoload": {
  9499. "psr-4": {
  9500. "React\\Stream\\": "src/"
  9501. }
  9502. },
  9503. "notification-url": "https://packagist.org/downloads/",
  9504. "license": [
  9505. "MIT"
  9506. ],
  9507. "authors": [
  9508. {
  9509. "name": "Christian Lück",
  9510. "email": "christian@clue.engineering",
  9511. "homepage": "https://clue.engineering/"
  9512. },
  9513. {
  9514. "name": "Cees-Jan Kiewiet",
  9515. "email": "reactphp@ceesjankiewiet.nl",
  9516. "homepage": "https://wyrihaximus.net/"
  9517. },
  9518. {
  9519. "name": "Jan Sorgalla",
  9520. "email": "jsorgalla@gmail.com",
  9521. "homepage": "https://sorgalla.com/"
  9522. },
  9523. {
  9524. "name": "Chris Boden",
  9525. "email": "cboden@gmail.com",
  9526. "homepage": "https://cboden.dev/"
  9527. }
  9528. ],
  9529. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9530. "keywords": [
  9531. "event-driven",
  9532. "io",
  9533. "non-blocking",
  9534. "pipe",
  9535. "reactphp",
  9536. "readable",
  9537. "stream",
  9538. "writable"
  9539. ],
  9540. "support": {
  9541. "issues": "https://github.com/reactphp/stream/issues",
  9542. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  9543. },
  9544. "funding": [
  9545. {
  9546. "url": "https://opencollective.com/reactphp",
  9547. "type": "open_collective"
  9548. }
  9549. ],
  9550. "time": "2023-06-16T10:52:11+00:00"
  9551. },
  9552. {
  9553. "name": "sebastian/cli-parser",
  9554. "version": "2.0.1",
  9555. "source": {
  9556. "type": "git",
  9557. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9558. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9559. },
  9560. "dist": {
  9561. "type": "zip",
  9562. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9563. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9564. "shasum": ""
  9565. },
  9566. "require": {
  9567. "php": ">=8.1"
  9568. },
  9569. "require-dev": {
  9570. "phpunit/phpunit": "^10.0"
  9571. },
  9572. "type": "library",
  9573. "extra": {
  9574. "branch-alias": {
  9575. "dev-main": "2.0-dev"
  9576. }
  9577. },
  9578. "autoload": {
  9579. "classmap": [
  9580. "src/"
  9581. ]
  9582. },
  9583. "notification-url": "https://packagist.org/downloads/",
  9584. "license": [
  9585. "BSD-3-Clause"
  9586. ],
  9587. "authors": [
  9588. {
  9589. "name": "Sebastian Bergmann",
  9590. "email": "sebastian@phpunit.de",
  9591. "role": "lead"
  9592. }
  9593. ],
  9594. "description": "Library for parsing CLI options",
  9595. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9596. "support": {
  9597. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9598. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9599. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9600. },
  9601. "funding": [
  9602. {
  9603. "url": "https://github.com/sebastianbergmann",
  9604. "type": "github"
  9605. }
  9606. ],
  9607. "time": "2024-03-02T07:12:49+00:00"
  9608. },
  9609. {
  9610. "name": "sebastian/code-unit",
  9611. "version": "2.0.0",
  9612. "source": {
  9613. "type": "git",
  9614. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9615. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9616. },
  9617. "dist": {
  9618. "type": "zip",
  9619. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9620. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9621. "shasum": ""
  9622. },
  9623. "require": {
  9624. "php": ">=8.1"
  9625. },
  9626. "require-dev": {
  9627. "phpunit/phpunit": "^10.0"
  9628. },
  9629. "type": "library",
  9630. "extra": {
  9631. "branch-alias": {
  9632. "dev-main": "2.0-dev"
  9633. }
  9634. },
  9635. "autoload": {
  9636. "classmap": [
  9637. "src/"
  9638. ]
  9639. },
  9640. "notification-url": "https://packagist.org/downloads/",
  9641. "license": [
  9642. "BSD-3-Clause"
  9643. ],
  9644. "authors": [
  9645. {
  9646. "name": "Sebastian Bergmann",
  9647. "email": "sebastian@phpunit.de",
  9648. "role": "lead"
  9649. }
  9650. ],
  9651. "description": "Collection of value objects that represent the PHP code units",
  9652. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9653. "support": {
  9654. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9655. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9656. },
  9657. "funding": [
  9658. {
  9659. "url": "https://github.com/sebastianbergmann",
  9660. "type": "github"
  9661. }
  9662. ],
  9663. "time": "2023-02-03T06:58:43+00:00"
  9664. },
  9665. {
  9666. "name": "sebastian/code-unit-reverse-lookup",
  9667. "version": "3.0.0",
  9668. "source": {
  9669. "type": "git",
  9670. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9671. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9672. },
  9673. "dist": {
  9674. "type": "zip",
  9675. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9676. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9677. "shasum": ""
  9678. },
  9679. "require": {
  9680. "php": ">=8.1"
  9681. },
  9682. "require-dev": {
  9683. "phpunit/phpunit": "^10.0"
  9684. },
  9685. "type": "library",
  9686. "extra": {
  9687. "branch-alias": {
  9688. "dev-main": "3.0-dev"
  9689. }
  9690. },
  9691. "autoload": {
  9692. "classmap": [
  9693. "src/"
  9694. ]
  9695. },
  9696. "notification-url": "https://packagist.org/downloads/",
  9697. "license": [
  9698. "BSD-3-Clause"
  9699. ],
  9700. "authors": [
  9701. {
  9702. "name": "Sebastian Bergmann",
  9703. "email": "sebastian@phpunit.de"
  9704. }
  9705. ],
  9706. "description": "Looks up which function or method a line of code belongs to",
  9707. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9708. "support": {
  9709. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9710. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9711. },
  9712. "funding": [
  9713. {
  9714. "url": "https://github.com/sebastianbergmann",
  9715. "type": "github"
  9716. }
  9717. ],
  9718. "time": "2023-02-03T06:59:15+00:00"
  9719. },
  9720. {
  9721. "name": "sebastian/comparator",
  9722. "version": "5.0.1",
  9723. "source": {
  9724. "type": "git",
  9725. "url": "https://github.com/sebastianbergmann/comparator.git",
  9726. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9727. },
  9728. "dist": {
  9729. "type": "zip",
  9730. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9731. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9732. "shasum": ""
  9733. },
  9734. "require": {
  9735. "ext-dom": "*",
  9736. "ext-mbstring": "*",
  9737. "php": ">=8.1",
  9738. "sebastian/diff": "^5.0",
  9739. "sebastian/exporter": "^5.0"
  9740. },
  9741. "require-dev": {
  9742. "phpunit/phpunit": "^10.3"
  9743. },
  9744. "type": "library",
  9745. "extra": {
  9746. "branch-alias": {
  9747. "dev-main": "5.0-dev"
  9748. }
  9749. },
  9750. "autoload": {
  9751. "classmap": [
  9752. "src/"
  9753. ]
  9754. },
  9755. "notification-url": "https://packagist.org/downloads/",
  9756. "license": [
  9757. "BSD-3-Clause"
  9758. ],
  9759. "authors": [
  9760. {
  9761. "name": "Sebastian Bergmann",
  9762. "email": "sebastian@phpunit.de"
  9763. },
  9764. {
  9765. "name": "Jeff Welch",
  9766. "email": "whatthejeff@gmail.com"
  9767. },
  9768. {
  9769. "name": "Volker Dusch",
  9770. "email": "github@wallbash.com"
  9771. },
  9772. {
  9773. "name": "Bernhard Schussek",
  9774. "email": "bschussek@2bepublished.at"
  9775. }
  9776. ],
  9777. "description": "Provides the functionality to compare PHP values for equality",
  9778. "homepage": "https://github.com/sebastianbergmann/comparator",
  9779. "keywords": [
  9780. "comparator",
  9781. "compare",
  9782. "equality"
  9783. ],
  9784. "support": {
  9785. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9786. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9787. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9788. },
  9789. "funding": [
  9790. {
  9791. "url": "https://github.com/sebastianbergmann",
  9792. "type": "github"
  9793. }
  9794. ],
  9795. "time": "2023-08-14T13:18:12+00:00"
  9796. },
  9797. {
  9798. "name": "sebastian/complexity",
  9799. "version": "3.2.0",
  9800. "source": {
  9801. "type": "git",
  9802. "url": "https://github.com/sebastianbergmann/complexity.git",
  9803. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9804. },
  9805. "dist": {
  9806. "type": "zip",
  9807. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9808. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9809. "shasum": ""
  9810. },
  9811. "require": {
  9812. "nikic/php-parser": "^4.18 || ^5.0",
  9813. "php": ">=8.1"
  9814. },
  9815. "require-dev": {
  9816. "phpunit/phpunit": "^10.0"
  9817. },
  9818. "type": "library",
  9819. "extra": {
  9820. "branch-alias": {
  9821. "dev-main": "3.2-dev"
  9822. }
  9823. },
  9824. "autoload": {
  9825. "classmap": [
  9826. "src/"
  9827. ]
  9828. },
  9829. "notification-url": "https://packagist.org/downloads/",
  9830. "license": [
  9831. "BSD-3-Clause"
  9832. ],
  9833. "authors": [
  9834. {
  9835. "name": "Sebastian Bergmann",
  9836. "email": "sebastian@phpunit.de",
  9837. "role": "lead"
  9838. }
  9839. ],
  9840. "description": "Library for calculating the complexity of PHP code units",
  9841. "homepage": "https://github.com/sebastianbergmann/complexity",
  9842. "support": {
  9843. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9844. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9845. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9846. },
  9847. "funding": [
  9848. {
  9849. "url": "https://github.com/sebastianbergmann",
  9850. "type": "github"
  9851. }
  9852. ],
  9853. "time": "2023-12-21T08:37:17+00:00"
  9854. },
  9855. {
  9856. "name": "sebastian/diff",
  9857. "version": "5.1.1",
  9858. "source": {
  9859. "type": "git",
  9860. "url": "https://github.com/sebastianbergmann/diff.git",
  9861. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9862. },
  9863. "dist": {
  9864. "type": "zip",
  9865. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9866. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9867. "shasum": ""
  9868. },
  9869. "require": {
  9870. "php": ">=8.1"
  9871. },
  9872. "require-dev": {
  9873. "phpunit/phpunit": "^10.0",
  9874. "symfony/process": "^6.4"
  9875. },
  9876. "type": "library",
  9877. "extra": {
  9878. "branch-alias": {
  9879. "dev-main": "5.1-dev"
  9880. }
  9881. },
  9882. "autoload": {
  9883. "classmap": [
  9884. "src/"
  9885. ]
  9886. },
  9887. "notification-url": "https://packagist.org/downloads/",
  9888. "license": [
  9889. "BSD-3-Clause"
  9890. ],
  9891. "authors": [
  9892. {
  9893. "name": "Sebastian Bergmann",
  9894. "email": "sebastian@phpunit.de"
  9895. },
  9896. {
  9897. "name": "Kore Nordmann",
  9898. "email": "mail@kore-nordmann.de"
  9899. }
  9900. ],
  9901. "description": "Diff implementation",
  9902. "homepage": "https://github.com/sebastianbergmann/diff",
  9903. "keywords": [
  9904. "diff",
  9905. "udiff",
  9906. "unidiff",
  9907. "unified diff"
  9908. ],
  9909. "support": {
  9910. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9911. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9912. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9913. },
  9914. "funding": [
  9915. {
  9916. "url": "https://github.com/sebastianbergmann",
  9917. "type": "github"
  9918. }
  9919. ],
  9920. "time": "2024-03-02T07:15:17+00:00"
  9921. },
  9922. {
  9923. "name": "sebastian/environment",
  9924. "version": "6.1.0",
  9925. "source": {
  9926. "type": "git",
  9927. "url": "https://github.com/sebastianbergmann/environment.git",
  9928. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9929. },
  9930. "dist": {
  9931. "type": "zip",
  9932. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9933. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9934. "shasum": ""
  9935. },
  9936. "require": {
  9937. "php": ">=8.1"
  9938. },
  9939. "require-dev": {
  9940. "phpunit/phpunit": "^10.0"
  9941. },
  9942. "suggest": {
  9943. "ext-posix": "*"
  9944. },
  9945. "type": "library",
  9946. "extra": {
  9947. "branch-alias": {
  9948. "dev-main": "6.1-dev"
  9949. }
  9950. },
  9951. "autoload": {
  9952. "classmap": [
  9953. "src/"
  9954. ]
  9955. },
  9956. "notification-url": "https://packagist.org/downloads/",
  9957. "license": [
  9958. "BSD-3-Clause"
  9959. ],
  9960. "authors": [
  9961. {
  9962. "name": "Sebastian Bergmann",
  9963. "email": "sebastian@phpunit.de"
  9964. }
  9965. ],
  9966. "description": "Provides functionality to handle HHVM/PHP environments",
  9967. "homepage": "https://github.com/sebastianbergmann/environment",
  9968. "keywords": [
  9969. "Xdebug",
  9970. "environment",
  9971. "hhvm"
  9972. ],
  9973. "support": {
  9974. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9975. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9976. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9977. },
  9978. "funding": [
  9979. {
  9980. "url": "https://github.com/sebastianbergmann",
  9981. "type": "github"
  9982. }
  9983. ],
  9984. "time": "2024-03-23T08:47:14+00:00"
  9985. },
  9986. {
  9987. "name": "sebastian/exporter",
  9988. "version": "5.1.2",
  9989. "source": {
  9990. "type": "git",
  9991. "url": "https://github.com/sebastianbergmann/exporter.git",
  9992. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9993. },
  9994. "dist": {
  9995. "type": "zip",
  9996. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9997. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9998. "shasum": ""
  9999. },
  10000. "require": {
  10001. "ext-mbstring": "*",
  10002. "php": ">=8.1",
  10003. "sebastian/recursion-context": "^5.0"
  10004. },
  10005. "require-dev": {
  10006. "phpunit/phpunit": "^10.0"
  10007. },
  10008. "type": "library",
  10009. "extra": {
  10010. "branch-alias": {
  10011. "dev-main": "5.1-dev"
  10012. }
  10013. },
  10014. "autoload": {
  10015. "classmap": [
  10016. "src/"
  10017. ]
  10018. },
  10019. "notification-url": "https://packagist.org/downloads/",
  10020. "license": [
  10021. "BSD-3-Clause"
  10022. ],
  10023. "authors": [
  10024. {
  10025. "name": "Sebastian Bergmann",
  10026. "email": "sebastian@phpunit.de"
  10027. },
  10028. {
  10029. "name": "Jeff Welch",
  10030. "email": "whatthejeff@gmail.com"
  10031. },
  10032. {
  10033. "name": "Volker Dusch",
  10034. "email": "github@wallbash.com"
  10035. },
  10036. {
  10037. "name": "Adam Harvey",
  10038. "email": "aharvey@php.net"
  10039. },
  10040. {
  10041. "name": "Bernhard Schussek",
  10042. "email": "bschussek@gmail.com"
  10043. }
  10044. ],
  10045. "description": "Provides the functionality to export PHP variables for visualization",
  10046. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10047. "keywords": [
  10048. "export",
  10049. "exporter"
  10050. ],
  10051. "support": {
  10052. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10053. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10054. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10055. },
  10056. "funding": [
  10057. {
  10058. "url": "https://github.com/sebastianbergmann",
  10059. "type": "github"
  10060. }
  10061. ],
  10062. "time": "2024-03-02T07:17:12+00:00"
  10063. },
  10064. {
  10065. "name": "sebastian/global-state",
  10066. "version": "6.0.2",
  10067. "source": {
  10068. "type": "git",
  10069. "url": "https://github.com/sebastianbergmann/global-state.git",
  10070. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10071. },
  10072. "dist": {
  10073. "type": "zip",
  10074. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10075. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10076. "shasum": ""
  10077. },
  10078. "require": {
  10079. "php": ">=8.1",
  10080. "sebastian/object-reflector": "^3.0",
  10081. "sebastian/recursion-context": "^5.0"
  10082. },
  10083. "require-dev": {
  10084. "ext-dom": "*",
  10085. "phpunit/phpunit": "^10.0"
  10086. },
  10087. "type": "library",
  10088. "extra": {
  10089. "branch-alias": {
  10090. "dev-main": "6.0-dev"
  10091. }
  10092. },
  10093. "autoload": {
  10094. "classmap": [
  10095. "src/"
  10096. ]
  10097. },
  10098. "notification-url": "https://packagist.org/downloads/",
  10099. "license": [
  10100. "BSD-3-Clause"
  10101. ],
  10102. "authors": [
  10103. {
  10104. "name": "Sebastian Bergmann",
  10105. "email": "sebastian@phpunit.de"
  10106. }
  10107. ],
  10108. "description": "Snapshotting of global state",
  10109. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10110. "keywords": [
  10111. "global state"
  10112. ],
  10113. "support": {
  10114. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10115. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10116. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10117. },
  10118. "funding": [
  10119. {
  10120. "url": "https://github.com/sebastianbergmann",
  10121. "type": "github"
  10122. }
  10123. ],
  10124. "time": "2024-03-02T07:19:19+00:00"
  10125. },
  10126. {
  10127. "name": "sebastian/lines-of-code",
  10128. "version": "2.0.2",
  10129. "source": {
  10130. "type": "git",
  10131. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10132. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10133. },
  10134. "dist": {
  10135. "type": "zip",
  10136. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10137. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10138. "shasum": ""
  10139. },
  10140. "require": {
  10141. "nikic/php-parser": "^4.18 || ^5.0",
  10142. "php": ">=8.1"
  10143. },
  10144. "require-dev": {
  10145. "phpunit/phpunit": "^10.0"
  10146. },
  10147. "type": "library",
  10148. "extra": {
  10149. "branch-alias": {
  10150. "dev-main": "2.0-dev"
  10151. }
  10152. },
  10153. "autoload": {
  10154. "classmap": [
  10155. "src/"
  10156. ]
  10157. },
  10158. "notification-url": "https://packagist.org/downloads/",
  10159. "license": [
  10160. "BSD-3-Clause"
  10161. ],
  10162. "authors": [
  10163. {
  10164. "name": "Sebastian Bergmann",
  10165. "email": "sebastian@phpunit.de",
  10166. "role": "lead"
  10167. }
  10168. ],
  10169. "description": "Library for counting the lines of code in PHP source code",
  10170. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10171. "support": {
  10172. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10173. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10174. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10175. },
  10176. "funding": [
  10177. {
  10178. "url": "https://github.com/sebastianbergmann",
  10179. "type": "github"
  10180. }
  10181. ],
  10182. "time": "2023-12-21T08:38:20+00:00"
  10183. },
  10184. {
  10185. "name": "sebastian/object-enumerator",
  10186. "version": "5.0.0",
  10187. "source": {
  10188. "type": "git",
  10189. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10190. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10191. },
  10192. "dist": {
  10193. "type": "zip",
  10194. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10195. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10196. "shasum": ""
  10197. },
  10198. "require": {
  10199. "php": ">=8.1",
  10200. "sebastian/object-reflector": "^3.0",
  10201. "sebastian/recursion-context": "^5.0"
  10202. },
  10203. "require-dev": {
  10204. "phpunit/phpunit": "^10.0"
  10205. },
  10206. "type": "library",
  10207. "extra": {
  10208. "branch-alias": {
  10209. "dev-main": "5.0-dev"
  10210. }
  10211. },
  10212. "autoload": {
  10213. "classmap": [
  10214. "src/"
  10215. ]
  10216. },
  10217. "notification-url": "https://packagist.org/downloads/",
  10218. "license": [
  10219. "BSD-3-Clause"
  10220. ],
  10221. "authors": [
  10222. {
  10223. "name": "Sebastian Bergmann",
  10224. "email": "sebastian@phpunit.de"
  10225. }
  10226. ],
  10227. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10228. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10229. "support": {
  10230. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10231. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10232. },
  10233. "funding": [
  10234. {
  10235. "url": "https://github.com/sebastianbergmann",
  10236. "type": "github"
  10237. }
  10238. ],
  10239. "time": "2023-02-03T07:08:32+00:00"
  10240. },
  10241. {
  10242. "name": "sebastian/object-reflector",
  10243. "version": "3.0.0",
  10244. "source": {
  10245. "type": "git",
  10246. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10247. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10248. },
  10249. "dist": {
  10250. "type": "zip",
  10251. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10252. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10253. "shasum": ""
  10254. },
  10255. "require": {
  10256. "php": ">=8.1"
  10257. },
  10258. "require-dev": {
  10259. "phpunit/phpunit": "^10.0"
  10260. },
  10261. "type": "library",
  10262. "extra": {
  10263. "branch-alias": {
  10264. "dev-main": "3.0-dev"
  10265. }
  10266. },
  10267. "autoload": {
  10268. "classmap": [
  10269. "src/"
  10270. ]
  10271. },
  10272. "notification-url": "https://packagist.org/downloads/",
  10273. "license": [
  10274. "BSD-3-Clause"
  10275. ],
  10276. "authors": [
  10277. {
  10278. "name": "Sebastian Bergmann",
  10279. "email": "sebastian@phpunit.de"
  10280. }
  10281. ],
  10282. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10283. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10284. "support": {
  10285. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10286. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10287. },
  10288. "funding": [
  10289. {
  10290. "url": "https://github.com/sebastianbergmann",
  10291. "type": "github"
  10292. }
  10293. ],
  10294. "time": "2023-02-03T07:06:18+00:00"
  10295. },
  10296. {
  10297. "name": "sebastian/recursion-context",
  10298. "version": "5.0.0",
  10299. "source": {
  10300. "type": "git",
  10301. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10302. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10303. },
  10304. "dist": {
  10305. "type": "zip",
  10306. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10307. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10308. "shasum": ""
  10309. },
  10310. "require": {
  10311. "php": ">=8.1"
  10312. },
  10313. "require-dev": {
  10314. "phpunit/phpunit": "^10.0"
  10315. },
  10316. "type": "library",
  10317. "extra": {
  10318. "branch-alias": {
  10319. "dev-main": "5.0-dev"
  10320. }
  10321. },
  10322. "autoload": {
  10323. "classmap": [
  10324. "src/"
  10325. ]
  10326. },
  10327. "notification-url": "https://packagist.org/downloads/",
  10328. "license": [
  10329. "BSD-3-Clause"
  10330. ],
  10331. "authors": [
  10332. {
  10333. "name": "Sebastian Bergmann",
  10334. "email": "sebastian@phpunit.de"
  10335. },
  10336. {
  10337. "name": "Jeff Welch",
  10338. "email": "whatthejeff@gmail.com"
  10339. },
  10340. {
  10341. "name": "Adam Harvey",
  10342. "email": "aharvey@php.net"
  10343. }
  10344. ],
  10345. "description": "Provides functionality to recursively process PHP variables",
  10346. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10347. "support": {
  10348. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10349. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10350. },
  10351. "funding": [
  10352. {
  10353. "url": "https://github.com/sebastianbergmann",
  10354. "type": "github"
  10355. }
  10356. ],
  10357. "time": "2023-02-03T07:05:40+00:00"
  10358. },
  10359. {
  10360. "name": "sebastian/type",
  10361. "version": "4.0.0",
  10362. "source": {
  10363. "type": "git",
  10364. "url": "https://github.com/sebastianbergmann/type.git",
  10365. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10366. },
  10367. "dist": {
  10368. "type": "zip",
  10369. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10370. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10371. "shasum": ""
  10372. },
  10373. "require": {
  10374. "php": ">=8.1"
  10375. },
  10376. "require-dev": {
  10377. "phpunit/phpunit": "^10.0"
  10378. },
  10379. "type": "library",
  10380. "extra": {
  10381. "branch-alias": {
  10382. "dev-main": "4.0-dev"
  10383. }
  10384. },
  10385. "autoload": {
  10386. "classmap": [
  10387. "src/"
  10388. ]
  10389. },
  10390. "notification-url": "https://packagist.org/downloads/",
  10391. "license": [
  10392. "BSD-3-Clause"
  10393. ],
  10394. "authors": [
  10395. {
  10396. "name": "Sebastian Bergmann",
  10397. "email": "sebastian@phpunit.de",
  10398. "role": "lead"
  10399. }
  10400. ],
  10401. "description": "Collection of value objects that represent the types of the PHP type system",
  10402. "homepage": "https://github.com/sebastianbergmann/type",
  10403. "support": {
  10404. "issues": "https://github.com/sebastianbergmann/type/issues",
  10405. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10406. },
  10407. "funding": [
  10408. {
  10409. "url": "https://github.com/sebastianbergmann",
  10410. "type": "github"
  10411. }
  10412. ],
  10413. "time": "2023-02-03T07:10:45+00:00"
  10414. },
  10415. {
  10416. "name": "sebastian/version",
  10417. "version": "4.0.1",
  10418. "source": {
  10419. "type": "git",
  10420. "url": "https://github.com/sebastianbergmann/version.git",
  10421. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10422. },
  10423. "dist": {
  10424. "type": "zip",
  10425. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10426. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10427. "shasum": ""
  10428. },
  10429. "require": {
  10430. "php": ">=8.1"
  10431. },
  10432. "type": "library",
  10433. "extra": {
  10434. "branch-alias": {
  10435. "dev-main": "4.0-dev"
  10436. }
  10437. },
  10438. "autoload": {
  10439. "classmap": [
  10440. "src/"
  10441. ]
  10442. },
  10443. "notification-url": "https://packagist.org/downloads/",
  10444. "license": [
  10445. "BSD-3-Clause"
  10446. ],
  10447. "authors": [
  10448. {
  10449. "name": "Sebastian Bergmann",
  10450. "email": "sebastian@phpunit.de",
  10451. "role": "lead"
  10452. }
  10453. ],
  10454. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10455. "homepage": "https://github.com/sebastianbergmann/version",
  10456. "support": {
  10457. "issues": "https://github.com/sebastianbergmann/version/issues",
  10458. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10459. },
  10460. "funding": [
  10461. {
  10462. "url": "https://github.com/sebastianbergmann",
  10463. "type": "github"
  10464. }
  10465. ],
  10466. "time": "2023-02-07T11:34:05+00:00"
  10467. },
  10468. {
  10469. "name": "swoole/ide-helper",
  10470. "version": "5.1.2",
  10471. "source": {
  10472. "type": "git",
  10473. "url": "https://github.com/swoole/ide-helper.git",
  10474. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  10475. },
  10476. "dist": {
  10477. "type": "zip",
  10478. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  10479. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  10480. "shasum": ""
  10481. },
  10482. "type": "library",
  10483. "notification-url": "https://packagist.org/downloads/",
  10484. "license": [
  10485. "Apache-2.0"
  10486. ],
  10487. "authors": [
  10488. {
  10489. "name": "Team Swoole",
  10490. "email": "team@swoole.com"
  10491. }
  10492. ],
  10493. "description": "IDE help files for Swoole.",
  10494. "support": {
  10495. "issues": "https://github.com/swoole/ide-helper/issues",
  10496. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  10497. },
  10498. "time": "2024-02-01T22:28:11+00:00"
  10499. },
  10500. {
  10501. "name": "symfony/event-dispatcher",
  10502. "version": "v6.4.8",
  10503. "source": {
  10504. "type": "git",
  10505. "url": "https://github.com/symfony/event-dispatcher.git",
  10506. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  10507. },
  10508. "dist": {
  10509. "type": "zip",
  10510. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  10511. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  10512. "shasum": ""
  10513. },
  10514. "require": {
  10515. "php": ">=8.1",
  10516. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10517. },
  10518. "conflict": {
  10519. "symfony/dependency-injection": "<5.4",
  10520. "symfony/service-contracts": "<2.5"
  10521. },
  10522. "provide": {
  10523. "psr/event-dispatcher-implementation": "1.0",
  10524. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10525. },
  10526. "require-dev": {
  10527. "psr/log": "^1|^2|^3",
  10528. "symfony/config": "^5.4|^6.0|^7.0",
  10529. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10530. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10531. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10532. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10533. "symfony/service-contracts": "^2.5|^3",
  10534. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10535. },
  10536. "type": "library",
  10537. "autoload": {
  10538. "psr-4": {
  10539. "Symfony\\Component\\EventDispatcher\\": ""
  10540. },
  10541. "exclude-from-classmap": [
  10542. "/Tests/"
  10543. ]
  10544. },
  10545. "notification-url": "https://packagist.org/downloads/",
  10546. "license": [
  10547. "MIT"
  10548. ],
  10549. "authors": [
  10550. {
  10551. "name": "Fabien Potencier",
  10552. "email": "fabien@symfony.com"
  10553. },
  10554. {
  10555. "name": "Symfony Community",
  10556. "homepage": "https://symfony.com/contributors"
  10557. }
  10558. ],
  10559. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10560. "homepage": "https://symfony.com",
  10561. "support": {
  10562. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10563. },
  10564. "funding": [
  10565. {
  10566. "url": "https://symfony.com/sponsor",
  10567. "type": "custom"
  10568. },
  10569. {
  10570. "url": "https://github.com/fabpot",
  10571. "type": "github"
  10572. },
  10573. {
  10574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10575. "type": "tidelift"
  10576. }
  10577. ],
  10578. "time": "2024-05-31T14:49:08+00:00"
  10579. },
  10580. {
  10581. "name": "symfony/event-dispatcher-contracts",
  10582. "version": "v3.5.0",
  10583. "source": {
  10584. "type": "git",
  10585. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10586. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10587. },
  10588. "dist": {
  10589. "type": "zip",
  10590. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10591. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10592. "shasum": ""
  10593. },
  10594. "require": {
  10595. "php": ">=8.1",
  10596. "psr/event-dispatcher": "^1"
  10597. },
  10598. "type": "library",
  10599. "extra": {
  10600. "branch-alias": {
  10601. "dev-main": "3.5-dev"
  10602. },
  10603. "thanks": {
  10604. "name": "symfony/contracts",
  10605. "url": "https://github.com/symfony/contracts"
  10606. }
  10607. },
  10608. "autoload": {
  10609. "psr-4": {
  10610. "Symfony\\Contracts\\EventDispatcher\\": ""
  10611. }
  10612. },
  10613. "notification-url": "https://packagist.org/downloads/",
  10614. "license": [
  10615. "MIT"
  10616. ],
  10617. "authors": [
  10618. {
  10619. "name": "Nicolas Grekas",
  10620. "email": "p@tchwork.com"
  10621. },
  10622. {
  10623. "name": "Symfony Community",
  10624. "homepage": "https://symfony.com/contributors"
  10625. }
  10626. ],
  10627. "description": "Generic abstractions related to dispatching event",
  10628. "homepage": "https://symfony.com",
  10629. "keywords": [
  10630. "abstractions",
  10631. "contracts",
  10632. "decoupling",
  10633. "interfaces",
  10634. "interoperability",
  10635. "standards"
  10636. ],
  10637. "support": {
  10638. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10639. },
  10640. "funding": [
  10641. {
  10642. "url": "https://symfony.com/sponsor",
  10643. "type": "custom"
  10644. },
  10645. {
  10646. "url": "https://github.com/fabpot",
  10647. "type": "github"
  10648. },
  10649. {
  10650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10651. "type": "tidelift"
  10652. }
  10653. ],
  10654. "time": "2024-04-18T09:32:20+00:00"
  10655. },
  10656. {
  10657. "name": "symfony/filesystem",
  10658. "version": "v6.4.8",
  10659. "source": {
  10660. "type": "git",
  10661. "url": "https://github.com/symfony/filesystem.git",
  10662. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10663. },
  10664. "dist": {
  10665. "type": "zip",
  10666. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10667. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10668. "shasum": ""
  10669. },
  10670. "require": {
  10671. "php": ">=8.1",
  10672. "symfony/polyfill-ctype": "~1.8",
  10673. "symfony/polyfill-mbstring": "~1.8"
  10674. },
  10675. "require-dev": {
  10676. "symfony/process": "^5.4|^6.4|^7.0"
  10677. },
  10678. "type": "library",
  10679. "autoload": {
  10680. "psr-4": {
  10681. "Symfony\\Component\\Filesystem\\": ""
  10682. },
  10683. "exclude-from-classmap": [
  10684. "/Tests/"
  10685. ]
  10686. },
  10687. "notification-url": "https://packagist.org/downloads/",
  10688. "license": [
  10689. "MIT"
  10690. ],
  10691. "authors": [
  10692. {
  10693. "name": "Fabien Potencier",
  10694. "email": "fabien@symfony.com"
  10695. },
  10696. {
  10697. "name": "Symfony Community",
  10698. "homepage": "https://symfony.com/contributors"
  10699. }
  10700. ],
  10701. "description": "Provides basic utilities for the filesystem",
  10702. "homepage": "https://symfony.com",
  10703. "support": {
  10704. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10705. },
  10706. "funding": [
  10707. {
  10708. "url": "https://symfony.com/sponsor",
  10709. "type": "custom"
  10710. },
  10711. {
  10712. "url": "https://github.com/fabpot",
  10713. "type": "github"
  10714. },
  10715. {
  10716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10717. "type": "tidelift"
  10718. }
  10719. ],
  10720. "time": "2024-05-31T14:49:08+00:00"
  10721. },
  10722. {
  10723. "name": "symfony/http-foundation",
  10724. "version": "v6.4.8",
  10725. "source": {
  10726. "type": "git",
  10727. "url": "https://github.com/symfony/http-foundation.git",
  10728. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10729. },
  10730. "dist": {
  10731. "type": "zip",
  10732. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10733. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10734. "shasum": ""
  10735. },
  10736. "require": {
  10737. "php": ">=8.1",
  10738. "symfony/deprecation-contracts": "^2.5|^3",
  10739. "symfony/polyfill-mbstring": "~1.1",
  10740. "symfony/polyfill-php83": "^1.27"
  10741. },
  10742. "conflict": {
  10743. "symfony/cache": "<6.3"
  10744. },
  10745. "require-dev": {
  10746. "doctrine/dbal": "^2.13.1|^3|^4",
  10747. "predis/predis": "^1.1|^2.0",
  10748. "symfony/cache": "^6.3|^7.0",
  10749. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10750. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10751. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10752. "symfony/mime": "^5.4|^6.0|^7.0",
  10753. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10754. },
  10755. "type": "library",
  10756. "autoload": {
  10757. "psr-4": {
  10758. "Symfony\\Component\\HttpFoundation\\": ""
  10759. },
  10760. "exclude-from-classmap": [
  10761. "/Tests/"
  10762. ]
  10763. },
  10764. "notification-url": "https://packagist.org/downloads/",
  10765. "license": [
  10766. "MIT"
  10767. ],
  10768. "authors": [
  10769. {
  10770. "name": "Fabien Potencier",
  10771. "email": "fabien@symfony.com"
  10772. },
  10773. {
  10774. "name": "Symfony Community",
  10775. "homepage": "https://symfony.com/contributors"
  10776. }
  10777. ],
  10778. "description": "Defines an object-oriented layer for the HTTP specification",
  10779. "homepage": "https://symfony.com",
  10780. "support": {
  10781. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10782. },
  10783. "funding": [
  10784. {
  10785. "url": "https://symfony.com/sponsor",
  10786. "type": "custom"
  10787. },
  10788. {
  10789. "url": "https://github.com/fabpot",
  10790. "type": "github"
  10791. },
  10792. {
  10793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10794. "type": "tidelift"
  10795. }
  10796. ],
  10797. "time": "2024-05-31T14:49:08+00:00"
  10798. },
  10799. {
  10800. "name": "symfony/options-resolver",
  10801. "version": "v6.4.8",
  10802. "source": {
  10803. "type": "git",
  10804. "url": "https://github.com/symfony/options-resolver.git",
  10805. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10806. },
  10807. "dist": {
  10808. "type": "zip",
  10809. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10810. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10811. "shasum": ""
  10812. },
  10813. "require": {
  10814. "php": ">=8.1",
  10815. "symfony/deprecation-contracts": "^2.5|^3"
  10816. },
  10817. "type": "library",
  10818. "autoload": {
  10819. "psr-4": {
  10820. "Symfony\\Component\\OptionsResolver\\": ""
  10821. },
  10822. "exclude-from-classmap": [
  10823. "/Tests/"
  10824. ]
  10825. },
  10826. "notification-url": "https://packagist.org/downloads/",
  10827. "license": [
  10828. "MIT"
  10829. ],
  10830. "authors": [
  10831. {
  10832. "name": "Fabien Potencier",
  10833. "email": "fabien@symfony.com"
  10834. },
  10835. {
  10836. "name": "Symfony Community",
  10837. "homepage": "https://symfony.com/contributors"
  10838. }
  10839. ],
  10840. "description": "Provides an improved replacement for the array_replace PHP function",
  10841. "homepage": "https://symfony.com",
  10842. "keywords": [
  10843. "config",
  10844. "configuration",
  10845. "options"
  10846. ],
  10847. "support": {
  10848. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10849. },
  10850. "funding": [
  10851. {
  10852. "url": "https://symfony.com/sponsor",
  10853. "type": "custom"
  10854. },
  10855. {
  10856. "url": "https://github.com/fabpot",
  10857. "type": "github"
  10858. },
  10859. {
  10860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10861. "type": "tidelift"
  10862. }
  10863. ],
  10864. "time": "2024-05-31T14:49:08+00:00"
  10865. },
  10866. {
  10867. "name": "symfony/polyfill-php81",
  10868. "version": "v1.29.0",
  10869. "source": {
  10870. "type": "git",
  10871. "url": "https://github.com/symfony/polyfill-php81.git",
  10872. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10873. },
  10874. "dist": {
  10875. "type": "zip",
  10876. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10877. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10878. "shasum": ""
  10879. },
  10880. "require": {
  10881. "php": ">=7.1"
  10882. },
  10883. "type": "library",
  10884. "extra": {
  10885. "thanks": {
  10886. "name": "symfony/polyfill",
  10887. "url": "https://github.com/symfony/polyfill"
  10888. }
  10889. },
  10890. "autoload": {
  10891. "files": [
  10892. "bootstrap.php"
  10893. ],
  10894. "psr-4": {
  10895. "Symfony\\Polyfill\\Php81\\": ""
  10896. },
  10897. "classmap": [
  10898. "Resources/stubs"
  10899. ]
  10900. },
  10901. "notification-url": "https://packagist.org/downloads/",
  10902. "license": [
  10903. "MIT"
  10904. ],
  10905. "authors": [
  10906. {
  10907. "name": "Nicolas Grekas",
  10908. "email": "p@tchwork.com"
  10909. },
  10910. {
  10911. "name": "Symfony Community",
  10912. "homepage": "https://symfony.com/contributors"
  10913. }
  10914. ],
  10915. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10916. "homepage": "https://symfony.com",
  10917. "keywords": [
  10918. "compatibility",
  10919. "polyfill",
  10920. "portable",
  10921. "shim"
  10922. ],
  10923. "support": {
  10924. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10925. },
  10926. "funding": [
  10927. {
  10928. "url": "https://symfony.com/sponsor",
  10929. "type": "custom"
  10930. },
  10931. {
  10932. "url": "https://github.com/fabpot",
  10933. "type": "github"
  10934. },
  10935. {
  10936. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10937. "type": "tidelift"
  10938. }
  10939. ],
  10940. "time": "2024-01-29T20:11:03+00:00"
  10941. },
  10942. {
  10943. "name": "symfony/polyfill-php83",
  10944. "version": "v1.29.0",
  10945. "source": {
  10946. "type": "git",
  10947. "url": "https://github.com/symfony/polyfill-php83.git",
  10948. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10949. },
  10950. "dist": {
  10951. "type": "zip",
  10952. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10953. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10954. "shasum": ""
  10955. },
  10956. "require": {
  10957. "php": ">=7.1",
  10958. "symfony/polyfill-php80": "^1.14"
  10959. },
  10960. "type": "library",
  10961. "extra": {
  10962. "thanks": {
  10963. "name": "symfony/polyfill",
  10964. "url": "https://github.com/symfony/polyfill"
  10965. }
  10966. },
  10967. "autoload": {
  10968. "files": [
  10969. "bootstrap.php"
  10970. ],
  10971. "psr-4": {
  10972. "Symfony\\Polyfill\\Php83\\": ""
  10973. },
  10974. "classmap": [
  10975. "Resources/stubs"
  10976. ]
  10977. },
  10978. "notification-url": "https://packagist.org/downloads/",
  10979. "license": [
  10980. "MIT"
  10981. ],
  10982. "authors": [
  10983. {
  10984. "name": "Nicolas Grekas",
  10985. "email": "p@tchwork.com"
  10986. },
  10987. {
  10988. "name": "Symfony Community",
  10989. "homepage": "https://symfony.com/contributors"
  10990. }
  10991. ],
  10992. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10993. "homepage": "https://symfony.com",
  10994. "keywords": [
  10995. "compatibility",
  10996. "polyfill",
  10997. "portable",
  10998. "shim"
  10999. ],
  11000. "support": {
  11001. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  11002. },
  11003. "funding": [
  11004. {
  11005. "url": "https://symfony.com/sponsor",
  11006. "type": "custom"
  11007. },
  11008. {
  11009. "url": "https://github.com/fabpot",
  11010. "type": "github"
  11011. },
  11012. {
  11013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11014. "type": "tidelift"
  11015. }
  11016. ],
  11017. "time": "2024-01-29T20:11:03+00:00"
  11018. },
  11019. {
  11020. "name": "symfony/process",
  11021. "version": "v6.4.8",
  11022. "source": {
  11023. "type": "git",
  11024. "url": "https://github.com/symfony/process.git",
  11025. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  11026. },
  11027. "dist": {
  11028. "type": "zip",
  11029. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  11030. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  11031. "shasum": ""
  11032. },
  11033. "require": {
  11034. "php": ">=8.1"
  11035. },
  11036. "type": "library",
  11037. "autoload": {
  11038. "psr-4": {
  11039. "Symfony\\Component\\Process\\": ""
  11040. },
  11041. "exclude-from-classmap": [
  11042. "/Tests/"
  11043. ]
  11044. },
  11045. "notification-url": "https://packagist.org/downloads/",
  11046. "license": [
  11047. "MIT"
  11048. ],
  11049. "authors": [
  11050. {
  11051. "name": "Fabien Potencier",
  11052. "email": "fabien@symfony.com"
  11053. },
  11054. {
  11055. "name": "Symfony Community",
  11056. "homepage": "https://symfony.com/contributors"
  11057. }
  11058. ],
  11059. "description": "Executes commands in sub-processes",
  11060. "homepage": "https://symfony.com",
  11061. "support": {
  11062. "source": "https://github.com/symfony/process/tree/v6.4.8"
  11063. },
  11064. "funding": [
  11065. {
  11066. "url": "https://symfony.com/sponsor",
  11067. "type": "custom"
  11068. },
  11069. {
  11070. "url": "https://github.com/fabpot",
  11071. "type": "github"
  11072. },
  11073. {
  11074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11075. "type": "tidelift"
  11076. }
  11077. ],
  11078. "time": "2024-05-31T14:49:08+00:00"
  11079. },
  11080. {
  11081. "name": "symfony/stopwatch",
  11082. "version": "v6.4.8",
  11083. "source": {
  11084. "type": "git",
  11085. "url": "https://github.com/symfony/stopwatch.git",
  11086. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  11087. },
  11088. "dist": {
  11089. "type": "zip",
  11090. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  11091. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  11092. "shasum": ""
  11093. },
  11094. "require": {
  11095. "php": ">=8.1",
  11096. "symfony/service-contracts": "^2.5|^3"
  11097. },
  11098. "type": "library",
  11099. "autoload": {
  11100. "psr-4": {
  11101. "Symfony\\Component\\Stopwatch\\": ""
  11102. },
  11103. "exclude-from-classmap": [
  11104. "/Tests/"
  11105. ]
  11106. },
  11107. "notification-url": "https://packagist.org/downloads/",
  11108. "license": [
  11109. "MIT"
  11110. ],
  11111. "authors": [
  11112. {
  11113. "name": "Fabien Potencier",
  11114. "email": "fabien@symfony.com"
  11115. },
  11116. {
  11117. "name": "Symfony Community",
  11118. "homepage": "https://symfony.com/contributors"
  11119. }
  11120. ],
  11121. "description": "Provides a way to profile code",
  11122. "homepage": "https://symfony.com",
  11123. "support": {
  11124. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  11125. },
  11126. "funding": [
  11127. {
  11128. "url": "https://symfony.com/sponsor",
  11129. "type": "custom"
  11130. },
  11131. {
  11132. "url": "https://github.com/fabpot",
  11133. "type": "github"
  11134. },
  11135. {
  11136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11137. "type": "tidelift"
  11138. }
  11139. ],
  11140. "time": "2024-05-31T14:49:08+00:00"
  11141. },
  11142. {
  11143. "name": "theseer/tokenizer",
  11144. "version": "1.2.3",
  11145. "source": {
  11146. "type": "git",
  11147. "url": "https://github.com/theseer/tokenizer.git",
  11148. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11149. },
  11150. "dist": {
  11151. "type": "zip",
  11152. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11153. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11154. "shasum": ""
  11155. },
  11156. "require": {
  11157. "ext-dom": "*",
  11158. "ext-tokenizer": "*",
  11159. "ext-xmlwriter": "*",
  11160. "php": "^7.2 || ^8.0"
  11161. },
  11162. "type": "library",
  11163. "autoload": {
  11164. "classmap": [
  11165. "src/"
  11166. ]
  11167. },
  11168. "notification-url": "https://packagist.org/downloads/",
  11169. "license": [
  11170. "BSD-3-Clause"
  11171. ],
  11172. "authors": [
  11173. {
  11174. "name": "Arne Blankerts",
  11175. "email": "arne@blankerts.de",
  11176. "role": "Developer"
  11177. }
  11178. ],
  11179. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11180. "support": {
  11181. "issues": "https://github.com/theseer/tokenizer/issues",
  11182. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11183. },
  11184. "funding": [
  11185. {
  11186. "url": "https://github.com/theseer",
  11187. "type": "github"
  11188. }
  11189. ],
  11190. "time": "2024-03-03T12:36:25+00:00"
  11191. }
  11192. ],
  11193. "aliases": [],
  11194. "minimum-stability": "dev",
  11195. "stability-flags": [],
  11196. "prefer-stable": true,
  11197. "prefer-lowest": false,
  11198. "platform": {
  11199. "php": ">=8.1"
  11200. },
  11201. "platform-dev": [],
  11202. "plugin-api-version": "2.6.0"
  11203. }